Version 1.11.15.
[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-12 19:46+0200\n"
11 "PO-Revision-Date: 2011-04-01 15:39+0000\n"
12 "Last-Translator: yurchor <yurchor@ukr.net>\n"
13 "Language-Team: Ukrainian <trans-uk@lists.fedoraproject.org>\n"
14 "Language: uk\n"
15 "MIME-Version: 1.0\n"
16 "Content-Type: text/plain; charset=UTF-8\n"
17 "Content-Transfer-Encoding: 8bit\n"
18 "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
19 "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n"
20
21 #. type: =head1
22 #: ../src/guestfs.pod:3 ../fish/guestfish.pod:3
23 #: ../test-tool/libguestfs-test-tool.pod:3 ../fuse/guestmount.pod:3
24 #: ../tools/virt-win-reg.pl:35 ../tools/virt-list-filesystems.pl:30
25 #: ../tools/virt-tar.pl:31 ../tools/virt-make-fs.pl:35
26 #: ../tools/virt-list-partitions.pl:30
27 msgid "NAME"
28 msgstr "НАЗВА"
29
30 #. type: textblock
31 #: ../src/guestfs.pod:5
32 msgid "guestfs - Library for accessing and modifying virtual machine images"
33 msgstr ""
34 "guestfs — бібліотека для доступу та внесення змін до образів віртуальних "
35 "машин"
36
37 #. type: =head1
38 #: ../src/guestfs.pod:7 ../fish/guestfish.pod:7
39 #: ../test-tool/libguestfs-test-tool.pod:7 ../fuse/guestmount.pod:7
40 #: ../tools/virt-win-reg.pl:39 ../tools/virt-list-filesystems.pl:34
41 #: ../tools/virt-tar.pl:35 ../tools/virt-make-fs.pl:39
42 #: ../tools/virt-list-partitions.pl:34
43 msgid "SYNOPSIS"
44 msgstr "КОРОТКИЙ ОПИС"
45
46 #. type: verbatim
47 #: ../src/guestfs.pod:9
48 #, no-wrap
49 msgid ""
50 " #include <guestfs.h>\n"
51 " \n"
52 msgstr ""
53 " #include <guestfs.h>\n"
54 " \n"
55
56 #. type: verbatim
57 #: ../src/guestfs.pod:11
58 #, no-wrap
59 msgid ""
60 " guestfs_h *g = guestfs_create ();\n"
61 " guestfs_add_drive (g, \"guest.img\");\n"
62 " guestfs_launch (g);\n"
63 " guestfs_mount (g, \"/dev/sda1\", \"/\");\n"
64 " guestfs_touch (g, \"/hello\");\n"
65 " guestfs_umount (g, \"/\");\n"
66 " guestfs_close (g);\n"
67 "\n"
68 msgstr ""
69 " guestfs_h *g = guestfs_create ();\n"
70 " guestfs_add_drive (g, \"guest.img\");\n"
71 " guestfs_launch (g);\n"
72 " guestfs_mount (g, \"/dev/sda1\", \"/\");\n"
73 " guestfs_touch (g, \"/hello\");\n"
74 " guestfs_umount (g, \"/\");\n"
75 " guestfs_close (g);\n"
76 "\n"
77
78 #. type: verbatim
79 #: ../src/guestfs.pod:19
80 #, no-wrap
81 msgid ""
82 " cc prog.c -o prog -lguestfs\n"
83 "or:\n"
84 " cc prog.c -o prog `pkg-config libguestfs --cflags --libs`\n"
85 "\n"
86 msgstr ""
87 " cc prog.c -o prog -lguestfs\n"
88 "або:\n"
89 " cc prog.c -o prog `pkg-config libguestfs --cflags --libs`\n"
90 "\n"
91
92 #. type: =head1
93 #: ../src/guestfs.pod:23 ../fish/guestfish.pod:30
94 #: ../test-tool/libguestfs-test-tool.pod:11 ../fuse/guestmount.pod:20
95 #: ../tools/virt-win-reg.pl:63 ../tools/virt-list-filesystems.pl:40
96 #: ../tools/virt-tar.pl:77 ../tools/virt-make-fs.pl:47
97 #: ../tools/virt-list-partitions.pl:40
98 msgid "DESCRIPTION"
99 msgstr "ОПИС"
100
101 #. type: textblock
102 #: ../src/guestfs.pod:25
103 msgid ""
104 "Libguestfs is a library for accessing and modifying guest disk images.  "
105 "Amongst the things this is good for: making batch configuration changes to "
106 "guests, getting disk used/free statistics (see also: virt-df), migrating "
107 "between virtualization systems (see also: virt-p2v), performing partial "
108 "backups, performing partial guest clones, cloning guests and changing "
109 "registry/UUID/hostname info, and much else besides."
110 msgstr ""
111
112 #. type: textblock
113 #: ../src/guestfs.pod:33
114 msgid ""
115 "Libguestfs uses Linux kernel and qemu code, and can access any type of guest "
116 "filesystem that Linux and qemu can, including but not limited to: ext2/3/4, "
117 "btrfs, FAT and NTFS, LVM, many different disk partition schemes, qcow, "
118 "qcow2, vmdk."
119 msgstr ""
120
121 #. type: textblock
122 #: ../src/guestfs.pod:38
123 msgid ""
124 "Libguestfs provides ways to enumerate guest storage (eg. partitions, LVs, "
125 "what filesystem is in each LV, etc.).  It can also run commands in the "
126 "context of the guest.  Also you can access filesystems over FUSE."
127 msgstr ""
128
129 #. type: textblock
130 #: ../src/guestfs.pod:43
131 msgid ""
132 "Libguestfs is a library that can be linked with C and C++ management "
133 "programs (or management programs written in OCaml, Perl, Python, Ruby, Java, "
134 "PHP, Haskell or C#).  You can also use it from shell scripts or the command "
135 "line."
136 msgstr ""
137
138 #. type: textblock
139 #: ../src/guestfs.pod:48
140 msgid ""
141 "You don't need to be root to use libguestfs, although obviously you do need "
142 "enough permissions to access the disk images."
143 msgstr ""
144
145 #. type: textblock
146 #: ../src/guestfs.pod:51
147 msgid ""
148 "Libguestfs is a large API because it can do many things.  For a gentle "
149 "introduction, please read the L</API OVERVIEW> section next."
150 msgstr ""
151
152 #. type: textblock
153 #: ../src/guestfs.pod:54
154 msgid ""
155 "There are also some example programs in the L<guestfs-examples(3)> manual "
156 "page."
157 msgstr ""
158
159 #. type: =head1
160 #: ../src/guestfs.pod:57
161 msgid "API OVERVIEW"
162 msgstr "ОГЛЯД API"
163
164 #. type: textblock
165 #: ../src/guestfs.pod:59
166 msgid ""
167 "This section provides a gentler overview of the libguestfs API.  We also try "
168 "to group API calls together, where that may not be obvious from reading "
169 "about the individual calls in the main section of this manual."
170 msgstr ""
171
172 #. type: =head2
173 #: ../src/guestfs.pod:64
174 msgid "HANDLES"
175 msgstr "ОБРОБНИКИ"
176
177 #. type: textblock
178 #: ../src/guestfs.pod:66
179 msgid ""
180 "Before you can use libguestfs calls, you have to create a handle.  Then you "
181 "must add at least one disk image to the handle, followed by launching the "
182 "handle, then performing whatever operations you want, and finally closing "
183 "the handle.  By convention we use the single letter C<g> for the name of the "
184 "handle variable, although of course you can use any name you want."
185 msgstr ""
186
187 #. type: textblock
188 #: ../src/guestfs.pod:73
189 msgid "The general structure of all libguestfs-using programs looks like this:"
190 msgstr ""
191
192 #. type: verbatim
193 #: ../src/guestfs.pod:76
194 #, no-wrap
195 msgid ""
196 " guestfs_h *g = guestfs_create ();\n"
197 " \n"
198 msgstr ""
199 " guestfs_h *g = guestfs_create ();\n"
200 " \n"
201
202 #. type: verbatim
203 #: ../src/guestfs.pod:78
204 #, no-wrap
205 msgid ""
206 " /* Call guestfs_add_drive additional times if there are\n"
207 "  * multiple disk images.\n"
208 "  */\n"
209 " guestfs_add_drive (g, \"guest.img\");\n"
210 " \n"
211 msgstr ""
212
213 #. type: verbatim
214 #: ../src/guestfs.pod:83
215 #, no-wrap
216 msgid ""
217 " /* Most manipulation calls won't work until you've launched\n"
218 "  * the handle 'g'.  You have to do this _after_ adding drives\n"
219 "  * and _before_ other commands.\n"
220 "  */\n"
221 " guestfs_launch (g);\n"
222 " \n"
223 msgstr ""
224
225 #. type: verbatim
226 #: ../src/guestfs.pod:89
227 #, no-wrap
228 msgid ""
229 " /* Now you can examine what partitions, LVs etc are available.\n"
230 "  */\n"
231 " char **partitions = guestfs_list_partitions (g);\n"
232 " char **logvols = guestfs_lvs (g);\n"
233 " \n"
234 msgstr ""
235
236 #. type: verbatim
237 #: ../src/guestfs.pod:94
238 #, no-wrap
239 msgid ""
240 " /* To access a filesystem in the image, you must mount it.\n"
241 "  */\n"
242 " guestfs_mount (g, \"/dev/sda1\", \"/\");\n"
243 " \n"
244 msgstr ""
245 " /* Щоб отримати доступ до файлової системи на образі, вам слід його змонтувати.\n"
246 "  */\n"
247 " guestfs_mount (g, \"/dev/sda1\", \"/\");\n"
248 " \n"
249
250 #. type: verbatim
251 #: ../src/guestfs.pod:98
252 #, fuzzy, no-wrap
253 #| msgid ""
254 #| " /* Now you can perform filesystem actions on the guest\n"
255 #| "  * disk image.\n"
256 #| "  */\n"
257 #| " guestfs_touch (g, \"/hello\");\n"
258 #| "\n"
259 msgid ""
260 " /* Now you can perform filesystem actions on the guest\n"
261 "  * disk image.\n"
262 "  */\n"
263 " guestfs_touch (g, \"/hello\");\n"
264 " \n"
265 msgstr ""
266 " /* Тепер ви можете виконувати дії з файловою системою на\n"
267 "  * образі диска операційної системи.\n"
268 "  */\n"
269 " guestfs_touch (g, \"/hello\");\n"
270 "\n"
271
272 #. type: verbatim
273 #: ../src/guestfs.pod:103
274 #, no-wrap
275 msgid ""
276 " /* This is only needed for libguestfs < 1.5.24.  Since then\n"
277 "  * it is done automatically when you close the handle.  See\n"
278 "  * discussion of autosync in this page.\n"
279 "  */\n"
280 " guestfs_sync (g);\n"
281 " \n"
282 msgstr ""
283
284 #. type: verbatim
285 #: ../src/guestfs.pod:109
286 #, no-wrap
287 msgid ""
288 " /* Close the handle 'g'. */\n"
289 " guestfs_close (g);\n"
290 "\n"
291 msgstr ""
292
293 #. type: textblock
294 #: ../src/guestfs.pod:112
295 msgid ""
296 "The code above doesn't include any error checking.  In real code you should "
297 "check return values carefully for errors.  In general all functions that "
298 "return integers return C<-1> on error, and all functions that return "
299 "pointers return C<NULL> on error.  See section L</ERROR HANDLING> below for "
300 "how to handle errors, and consult the documentation for each function call "
301 "below to see precisely how they return error indications.  See L<guestfs-"
302 "examples(3)> for fully worked examples."
303 msgstr ""
304
305 #. type: =head2
306 #: ../src/guestfs.pod:121
307 msgid "DISK IMAGES"
308 msgstr ""
309
310 #. type: textblock
311 #: ../src/guestfs.pod:123
312 msgid ""
313 "The image filename (C<\"guest.img\"> in the example above) could be a disk "
314 "image from a virtual machine, a L<dd(1)> copy of a physical hard disk, an "
315 "actual block device, or simply an empty file of zeroes that you have created "
316 "through L<posix_fallocate(3)>.  Libguestfs lets you do useful things to all "
317 "of these."
318 msgstr ""
319
320 #. type: textblock
321 #: ../src/guestfs.pod:129
322 msgid ""
323 "The call you should use in modern code for adding drives is L</"
324 "guestfs_add_drive_opts>.  To add a disk image, allowing writes, and "
325 "specifying that the format is raw, do:"
326 msgstr ""
327
328 #. type: verbatim
329 #: ../src/guestfs.pod:133
330 #, no-wrap
331 msgid ""
332 " guestfs_add_drive_opts (g, filename,\n"
333 "                         GUESTFS_ADD_DRIVE_OPTS_FORMAT, \"raw\",\n"
334 "                         -1);\n"
335 "\n"
336 msgstr ""
337
338 #. type: textblock
339 #: ../src/guestfs.pod:137
340 msgid "You can add a disk read-only using:"
341 msgstr ""
342
343 #. type: verbatim
344 #: ../src/guestfs.pod:139
345 #, no-wrap
346 msgid ""
347 " guestfs_add_drive_opts (g, filename,\n"
348 "                         GUESTFS_ADD_DRIVE_OPTS_FORMAT, \"raw\",\n"
349 "                         GUESTFS_ADD_DRIVE_OPTS_READONLY, 1,\n"
350 "                         -1);\n"
351 "\n"
352 msgstr ""
353
354 #. type: textblock
355 #: ../src/guestfs.pod:144
356 msgid ""
357 "or by calling the older function L</guestfs_add_drive_ro>.  In either case "
358 "libguestfs won't modify the file."
359 msgstr ""
360
361 #. type: textblock
362 #: ../src/guestfs.pod:147
363 msgid ""
364 "Be extremely cautious if the disk image is in use, eg. if it is being used "
365 "by a virtual machine.  Adding it read-write will almost certainly cause disk "
366 "corruption, but adding it read-only is safe."
367 msgstr ""
368
369 #. type: textblock
370 #: ../src/guestfs.pod:151
371 msgid ""
372 "You must add at least one disk image, and you may add multiple disk images.  "
373 "In the API, the disk images are usually referred to as C</dev/sda> (for the "
374 "first one you added), C</dev/sdb> (for the second one you added), etc."
375 msgstr ""
376
377 #. type: textblock
378 #: ../src/guestfs.pod:156
379 msgid ""
380 "Once L</guestfs_launch> has been called you cannot add any more images.  You "
381 "can call L</guestfs_list_devices> to get a list of the device names, in the "
382 "order that you added them.  See also L</BLOCK DEVICE NAMING> below."
383 msgstr ""
384
385 #. type: =head2
386 #: ../src/guestfs.pod:161
387 msgid "MOUNTING"
388 msgstr "МОНТУВАННЯ"
389
390 #. type: textblock
391 #: ../src/guestfs.pod:163
392 msgid ""
393 "Before you can read or write files, create directories and so on in a disk "
394 "image that contains filesystems, you have to mount those filesystems using "
395 "L</guestfs_mount_options> or L</guestfs_mount_ro>.  If you already know that "
396 "a disk image contains (for example) one partition with a filesystem on that "
397 "partition, then you can mount it directly:"
398 msgstr ""
399
400 #. type: verbatim
401 #: ../src/guestfs.pod:170
402 #, no-wrap
403 msgid ""
404 " guestfs_mount_options (g, \"\", \"/dev/sda1\", \"/\");\n"
405 "\n"
406 msgstr ""
407
408 #. type: textblock
409 #: ../src/guestfs.pod:172
410 msgid ""
411 "where C</dev/sda1> means literally the first partition (C<1>) of the first "
412 "disk image that we added (C</dev/sda>).  If the disk contains Linux LVM2 "
413 "logical volumes you could refer to those instead (eg. C</dev/VG/LV>).  Note "
414 "that these are libguestfs virtual devices, and are nothing to do with host "
415 "devices."
416 msgstr ""
417
418 #. type: textblock
419 #: ../src/guestfs.pod:178
420 msgid ""
421 "If you are given a disk image and you don't know what it contains then you "
422 "have to find out.  Libguestfs can do that too: use L</"
423 "guestfs_list_partitions> and L</guestfs_lvs> to list possible partitions and "
424 "LVs, and either try mounting each to see what is mountable, or else examine "
425 "them with L</guestfs_vfs_type> or L</guestfs_file>.  To list just "
426 "filesystems, use L</guestfs_list_filesystems>."
427 msgstr ""
428
429 #. type: textblock
430 #: ../src/guestfs.pod:186
431 msgid ""
432 "Libguestfs also has a set of APIs for inspection of unknown disk images (see "
433 "L</INSPECTION> below).  But you might find it easier to look at higher level "
434 "programs built on top of libguestfs, in particular L<virt-inspector(1)>."
435 msgstr ""
436
437 #. type: textblock
438 #: ../src/guestfs.pod:191
439 msgid ""
440 "To mount a filesystem read-only, use L</guestfs_mount_ro>.  There are "
441 "several other variations of the C<guestfs_mount_*> call."
442 msgstr ""
443
444 #. type: =head2
445 #: ../src/guestfs.pod:194
446 msgid "FILESYSTEM ACCESS AND MODIFICATION"
447 msgstr ""
448
449 #. type: textblock
450 #: ../src/guestfs.pod:196
451 msgid ""
452 "The majority of the libguestfs API consists of fairly low-level calls for "
453 "accessing and modifying the files, directories, symlinks etc on mounted "
454 "filesystems.  There are over a hundred such calls which you can find listed "
455 "in detail below in this man page, and we don't even pretend to cover them "
456 "all in this overview."
457 msgstr ""
458
459 #. type: textblock
460 #: ../src/guestfs.pod:202
461 msgid ""
462 "Specify filenames as full paths, starting with C<\"/\"> and including the "
463 "mount point."
464 msgstr ""
465
466 #. type: textblock
467 #: ../src/guestfs.pod:205
468 msgid ""
469 "For example, if you mounted a filesystem at C<\"/\"> and you want to read "
470 "the file called C<\"etc/passwd\"> then you could do:"
471 msgstr ""
472
473 #. type: verbatim
474 #: ../src/guestfs.pod:208
475 #, no-wrap
476 msgid ""
477 " char *data = guestfs_cat (g, \"/etc/passwd\");\n"
478 "\n"
479 msgstr ""
480
481 #. type: textblock
482 #: ../src/guestfs.pod:210
483 msgid ""
484 "This would return C<data> as a newly allocated buffer containing the full "
485 "content of that file (with some conditions: see also L</DOWNLOADING> below), "
486 "or C<NULL> if there was an error."
487 msgstr ""
488
489 #. type: textblock
490 #: ../src/guestfs.pod:214
491 msgid ""
492 "As another example, to create a top-level directory on that filesystem "
493 "called C<\"var\"> you would do:"
494 msgstr ""
495
496 #. type: verbatim
497 #: ../src/guestfs.pod:217
498 #, no-wrap
499 msgid ""
500 " guestfs_mkdir (g, \"/var\");\n"
501 "\n"
502 msgstr ""
503
504 #. type: textblock
505 #: ../src/guestfs.pod:219
506 msgid "To create a symlink you could do:"
507 msgstr ""
508
509 #. type: verbatim
510 #: ../src/guestfs.pod:221
511 #, no-wrap
512 msgid ""
513 " guestfs_ln_s (g, \"/etc/init.d/portmap\",\n"
514 "               \"/etc/rc3.d/S30portmap\");\n"
515 "\n"
516 msgstr ""
517
518 #. type: textblock
519 #: ../src/guestfs.pod:224
520 msgid ""
521 "Libguestfs will reject attempts to use relative paths and there is no "
522 "concept of a current working directory."
523 msgstr ""
524
525 #. type: textblock
526 #: ../src/guestfs.pod:227
527 msgid ""
528 "Libguestfs can return errors in many situations: for example if the "
529 "filesystem isn't writable, or if a file or directory that you requested "
530 "doesn't exist.  If you are using the C API (documented here)  you have to "
531 "check for those error conditions after each call.  (Other language bindings "
532 "turn these errors into exceptions)."
533 msgstr ""
534
535 #. type: textblock
536 #: ../src/guestfs.pod:233
537 msgid ""
538 "File writes are affected by the per-handle umask, set by calling L</"
539 "guestfs_umask> and defaulting to 022.  See L</UMASK>."
540 msgstr ""
541
542 #. type: =head2
543 #: ../src/guestfs.pod:236
544 msgid "PARTITIONING"
545 msgstr "ПОДІЛ НА РОЗДІЛИ"
546
547 #. type: textblock
548 #: ../src/guestfs.pod:238
549 msgid ""
550 "Libguestfs contains API calls to read, create and modify partition tables on "
551 "disk images."
552 msgstr ""
553
554 #. type: textblock
555 #: ../src/guestfs.pod:241
556 msgid ""
557 "In the common case where you want to create a single partition covering the "
558 "whole disk, you should use the L</guestfs_part_disk> call:"
559 msgstr ""
560
561 #. type: verbatim
562 #: ../src/guestfs.pod:245
563 #, no-wrap
564 msgid ""
565 " const char *parttype = \"mbr\";\n"
566 " if (disk_is_larger_than_2TB)\n"
567 "   parttype = \"gpt\";\n"
568 " guestfs_part_disk (g, \"/dev/sda\", parttype);\n"
569 "\n"
570 msgstr ""
571
572 #. type: textblock
573 #: ../src/guestfs.pod:250
574 msgid ""
575 "Obviously this effectively wipes anything that was on that disk image before."
576 msgstr ""
577
578 #. type: =head2
579 #: ../src/guestfs.pod:253
580 msgid "LVM2"
581 msgstr "LVM2"
582
583 #. type: textblock
584 #: ../src/guestfs.pod:255
585 msgid ""
586 "Libguestfs provides access to a large part of the LVM2 API, such as L</"
587 "guestfs_lvcreate> and L</guestfs_vgremove>.  It won't make much sense unless "
588 "you familiarize yourself with the concepts of physical volumes, volume "
589 "groups and logical volumes."
590 msgstr ""
591
592 #. type: textblock
593 #: ../src/guestfs.pod:260
594 msgid ""
595 "This author strongly recommends reading the LVM HOWTO, online at L<http://"
596 "tldp.org/HOWTO/LVM-HOWTO/>."
597 msgstr ""
598
599 #. type: =head2
600 #: ../src/guestfs.pod:263
601 msgid "DOWNLOADING"
602 msgstr ""
603
604 #. type: textblock
605 #: ../src/guestfs.pod:265
606 msgid ""
607 "Use L</guestfs_cat> to download small, text only files.  This call is "
608 "limited to files which are less than 2 MB and which cannot contain any ASCII "
609 "NUL (C<\\0>) characters.  However the API is very simple to use."
610 msgstr ""
611
612 #. type: textblock
613 #: ../src/guestfs.pod:269
614 msgid ""
615 "L</guestfs_read_file> can be used to read files which contain arbitrary 8 "
616 "bit data, since it returns a (pointer, size) pair.  However it is still "
617 "limited to \"small\" files, less than 2 MB."
618 msgstr ""
619
620 #. type: textblock
621 #: ../src/guestfs.pod:273
622 msgid ""
623 "L</guestfs_download> can be used to download any file, with no limits on "
624 "content or size (even files larger than 4 GB)."
625 msgstr ""
626
627 #. type: textblock
628 #: ../src/guestfs.pod:276
629 msgid ""
630 "To download multiple files, see L</guestfs_tar_out> and L</guestfs_tgz_out>."
631 msgstr ""
632
633 #. type: =head2
634 #: ../src/guestfs.pod:279
635 msgid "UPLOADING"
636 msgstr "ВИВАНТАЖЕННЯ"
637
638 #. type: textblock
639 #: ../src/guestfs.pod:281
640 msgid ""
641 "It's often the case that you want to write a file or files to the disk image."
642 msgstr ""
643
644 #. type: textblock
645 #: ../src/guestfs.pod:284
646 msgid ""
647 "To write a small file with fixed content, use L</guestfs_write>.  To create "
648 "a file of all zeroes, use L</guestfs_truncate_size> (sparse) or L</"
649 "guestfs_fallocate64> (with all disk blocks allocated).  There are a variety "
650 "of other functions for creating test files, for example L</guestfs_fill> and "
651 "L</guestfs_fill_pattern>."
652 msgstr ""
653
654 #. type: textblock
655 #: ../src/guestfs.pod:290
656 msgid ""
657 "To upload a single file, use L</guestfs_upload>.  This call has no limits on "
658 "file content or size (even files larger than 4 GB)."
659 msgstr ""
660
661 #. type: textblock
662 #: ../src/guestfs.pod:293
663 msgid ""
664 "To upload multiple files, see L</guestfs_tar_in> and L</guestfs_tgz_in>."
665 msgstr ""
666
667 #. type: textblock
668 #: ../src/guestfs.pod:295
669 msgid ""
670 "However the fastest way to upload I<large numbers of arbitrary files> is to "
671 "turn them into a squashfs or CD ISO (see L<mksquashfs(8)> and L<mkisofs(8)"
672 ">), then attach this using L</guestfs_add_drive_ro>.  If you add the drive "
673 "in a predictable way (eg. adding it last after all other drives) then you "
674 "can get the device name from L</guestfs_list_devices> and mount it directly "
675 "using L</guestfs_mount_ro>.  Note that squashfs images are sometimes non-"
676 "portable between kernel versions, and they don't support labels or UUIDs.  "
677 "If you want to pre-build an image or you need to mount it using a label or "
678 "UUID, use an ISO image instead."
679 msgstr ""
680
681 #. type: =head2
682 #: ../src/guestfs.pod:306
683 msgid "COPYING"
684 msgstr "КОПІЮВАННЯ"
685
686 #. type: textblock
687 #: ../src/guestfs.pod:308
688 msgid ""
689 "There are various different commands for copying between files and devices "
690 "and in and out of the guest filesystem.  These are summarised in the table "
691 "below."
692 msgstr ""
693
694 #. type: =item
695 #: ../src/guestfs.pod:314
696 msgid "B<file> to B<file>"
697 msgstr ""
698
699 #. type: textblock
700 #: ../src/guestfs.pod:316
701 msgid ""
702 "Use L</guestfs_cp> to copy a single file, or L</guestfs_cp_a> to copy "
703 "directories recursively."
704 msgstr ""
705
706 #. type: =item
707 #: ../src/guestfs.pod:319
708 msgid "B<file or device> to B<file or device>"
709 msgstr ""
710
711 #. type: textblock
712 #: ../src/guestfs.pod:321
713 msgid ""
714 "Use L</guestfs_dd> which efficiently uses L<dd(1)> to copy between files and "
715 "devices in the guest."
716 msgstr ""
717
718 #. type: textblock
719 #: ../src/guestfs.pod:324
720 msgid "Example: duplicate the contents of an LV:"
721 msgstr ""
722
723 #. type: verbatim
724 #: ../src/guestfs.pod:326
725 #, no-wrap
726 msgid ""
727 " guestfs_dd (g, \"/dev/VG/Original\", \"/dev/VG/Copy\");\n"
728 "\n"
729 msgstr ""
730
731 #. type: textblock
732 #: ../src/guestfs.pod:328
733 msgid ""
734 "The destination (C</dev/VG/Copy>) must be at least as large as the source "
735 "(C</dev/VG/Original>).  To copy less than the whole source device, use L</"
736 "guestfs_copy_size>."
737 msgstr ""
738
739 #. type: =item
740 #: ../src/guestfs.pod:332
741 msgid "B<file on the host> to B<file or device>"
742 msgstr ""
743
744 #. type: textblock
745 #: ../src/guestfs.pod:334
746 msgid "Use L</guestfs_upload>.  See L</UPLOADING> above."
747 msgstr ""
748
749 #. type: =item
750 #: ../src/guestfs.pod:336
751 msgid "B<file or device> to B<file on the host>"
752 msgstr ""
753
754 #. type: textblock
755 #: ../src/guestfs.pod:338
756 msgid "Use L</guestfs_download>.  See L</DOWNLOADING> above."
757 msgstr ""
758
759 #. type: =head2
760 #: ../src/guestfs.pod:342
761 msgid "UPLOADING AND DOWNLOADING TO PIPES AND FILE DESCRIPTORS"
762 msgstr ""
763
764 #. type: textblock
765 #: ../src/guestfs.pod:344
766 msgid ""
767 "Calls like L</guestfs_upload>, L</guestfs_download>, L</guestfs_tar_in>, L</"
768 "guestfs_tar_out> etc appear to only take filenames as arguments, so it "
769 "appears you can only upload and download to files.  However many Un*x-like "
770 "hosts let you use the special device files C</dev/stdin>, C</dev/stdout>, C</"
771 "dev/stderr> and C</dev/fd/N> to read and write from stdin, stdout, stderr, "
772 "and arbitrary file descriptor N."
773 msgstr ""
774
775 #. type: textblock
776 #: ../src/guestfs.pod:352
777 msgid "For example, L<virt-cat(1)> writes its output to stdout by doing:"
778 msgstr ""
779
780 #. type: verbatim
781 #: ../src/guestfs.pod:355
782 #, no-wrap
783 msgid ""
784 " guestfs_download (g, filename, \"/dev/stdout\");\n"
785 "\n"
786 msgstr ""
787
788 #. type: textblock
789 #: ../src/guestfs.pod:357
790 msgid "and you can write tar output to a file descriptor C<fd> by doing:"
791 msgstr ""
792
793 #. type: verbatim
794 #: ../src/guestfs.pod:359
795 #, no-wrap
796 msgid ""
797 " char devfd[64];\n"
798 " snprintf (devfd, sizeof devfd, \"/dev/fd/%d\", fd);\n"
799 " guestfs_tar_out (g, \"/\", devfd);\n"
800 "\n"
801 msgstr ""
802
803 #. type: =head2
804 #: ../src/guestfs.pod:363
805 msgid "LISTING FILES"
806 msgstr ""
807
808 #. type: textblock
809 #: ../src/guestfs.pod:365
810 msgid ""
811 "L</guestfs_ll> is just designed for humans to read (mainly when using the "
812 "L<guestfish(1)>-equivalent command C<ll>)."
813 msgstr ""
814
815 #. type: textblock
816 #: ../src/guestfs.pod:368
817 msgid ""
818 "L</guestfs_ls> is a quick way to get a list of files in a directory from "
819 "programs, as a flat list of strings."
820 msgstr ""
821
822 #. type: textblock
823 #: ../src/guestfs.pod:371
824 msgid ""
825 "L</guestfs_readdir> is a programmatic way to get a list of files in a "
826 "directory, plus additional information about each one.  It is more "
827 "equivalent to using the L<readdir(3)> call on a local filesystem."
828 msgstr ""
829
830 #. type: textblock
831 #: ../src/guestfs.pod:375
832 msgid ""
833 "L</guestfs_find> and L</guestfs_find0> can be used to recursively list files."
834 msgstr ""
835
836 #. type: =head2
837 #: ../src/guestfs.pod:378
838 msgid "RUNNING COMMANDS"
839 msgstr ""
840
841 #. type: textblock
842 #: ../src/guestfs.pod:380
843 msgid ""
844 "Although libguestfs is primarily an API for manipulating files inside guest "
845 "images, we also provide some limited facilities for running commands inside "
846 "guests."
847 msgstr ""
848
849 #. type: textblock
850 #: ../src/guestfs.pod:384
851 msgid "There are many limitations to this:"
852 msgstr ""
853
854 #. type: =item
855 #: ../src/guestfs.pod:388 ../src/guestfs.pod:393 ../src/guestfs.pod:398
856 #: ../src/guestfs.pod:402 ../src/guestfs.pod:407 ../src/guestfs.pod:411
857 #: ../src/guestfs.pod:416 ../src/guestfs.pod:421 ../src/guestfs.pod:1064
858 #: ../src/guestfs.pod:1068 ../src/guestfs.pod:1072 ../src/guestfs.pod:1077
859 #: ../src/guestfs.pod:1085 ../src/guestfs.pod:1104 ../src/guestfs.pod:1112
860 #: ../src/guestfs.pod:1134 ../src/guestfs.pod:1138 ../src/guestfs.pod:1142
861 #: ../src/guestfs.pod:1146 ../src/guestfs.pod:1150 ../src/guestfs.pod:1154
862 #: ../src/guestfs.pod:1643 ../src/guestfs.pod:1648 ../src/guestfs.pod:1652
863 #: ../src/guestfs.pod:1754 ../src/guestfs.pod:1759 ../src/guestfs.pod:1763
864 #: ../src/guestfs.pod:1773 ../src/guestfs.pod:2008 ../src/guestfs.pod:2013
865 #: ../src/guestfs.pod:2019 ../src/guestfs.pod:2027 ../src/guestfs.pod:2381
866 #: ../src/guestfs.pod:2387 ../src/guestfs.pod:2392 ../src/guestfs.pod:2398
867 #: ../src/guestfs.pod:2972 ../src/guestfs.pod:2976 ../src/guestfs.pod:2980
868 #: ../src/guestfs.pod:2984 ../src/guestfs-actions.pod:15
869 #: ../src/guestfs-actions.pod:22 ../src/guestfs-actions.pod:583
870 #: ../src/guestfs-actions.pod:591 ../src/guestfs-actions.pod:598
871 #: ../src/guestfs-actions.pod:605 ../src/guestfs-actions.pod:1603
872 #: ../src/guestfs-actions.pod:1607 ../src/guestfs-actions.pod:1611
873 #: ../src/guestfs-actions.pod:1615 ../src/guestfs-actions.pod:1623
874 #: ../src/guestfs-actions.pod:1627 ../src/guestfs-actions.pod:1631
875 #: ../src/guestfs-actions.pod:1641 ../src/guestfs-actions.pod:1645
876 #: ../src/guestfs-actions.pod:1649 ../src/guestfs-actions.pod:1787
877 #: ../src/guestfs-actions.pod:1791 ../src/guestfs-actions.pod:1796
878 #: ../src/guestfs-actions.pod:1801 ../src/guestfs-actions.pod:1862
879 #: ../src/guestfs-actions.pod:1866 ../src/guestfs-actions.pod:1871
880 #: ../src/guestfs-actions.pod:2789 ../src/guestfs-actions.pod:2795
881 #: ../src/guestfs-actions.pod:2803 ../src/guestfs-actions.pod:2810
882 #: ../src/guestfs-actions.pod:2817 ../fish/guestfish.pod:445
883 #: ../fish/guestfish.pod:449 ../fish/guestfish.pod:453
884 #: ../fish/guestfish.pod:457 ../fish/guestfish-actions.pod:13
885 #: ../fish/guestfish-actions.pod:20 ../fish/guestfish-actions.pod:385
886 #: ../fish/guestfish-actions.pod:393 ../fish/guestfish-actions.pod:400
887 #: ../fish/guestfish-actions.pod:407 ../fish/guestfish-actions.pod:1074
888 #: ../fish/guestfish-actions.pod:1078 ../fish/guestfish-actions.pod:1082
889 #: ../fish/guestfish-actions.pod:1086 ../fish/guestfish-actions.pod:1094
890 #: ../fish/guestfish-actions.pod:1098 ../fish/guestfish-actions.pod:1102
891 #: ../fish/guestfish-actions.pod:1112 ../fish/guestfish-actions.pod:1116
892 #: ../fish/guestfish-actions.pod:1120 ../fish/guestfish-actions.pod:1210
893 #: ../fish/guestfish-actions.pod:1214 ../fish/guestfish-actions.pod:1219
894 #: ../fish/guestfish-actions.pod:1224 ../fish/guestfish-actions.pod:1266
895 #: ../fish/guestfish-actions.pod:1270 ../fish/guestfish-actions.pod:1275
896 #: ../fish/guestfish-actions.pod:1902 ../fish/guestfish-actions.pod:1908
897 #: ../fish/guestfish-actions.pod:1916 ../fish/guestfish-actions.pod:1923
898 #: ../fish/guestfish-actions.pod:1930 ../tools/virt-win-reg.pl:195
899 #: ../tools/virt-win-reg.pl:200 ../tools/virt-win-reg.pl:206
900 #: ../tools/virt-win-reg.pl:708 ../tools/virt-win-reg.pl:714
901 #: ../tools/virt-win-reg.pl:720
902 msgid "*"
903 msgstr ""
904
905 #. type: textblock
906 #: ../src/guestfs.pod:390
907 msgid ""
908 "The kernel version that the command runs under will be different from what "
909 "it expects."
910 msgstr ""
911
912 #. type: textblock
913 #: ../src/guestfs.pod:395
914 msgid ""
915 "If the command needs to communicate with daemons, then most likely they "
916 "won't be running."
917 msgstr ""
918
919 #. type: textblock
920 #: ../src/guestfs.pod:400
921 msgid "The command will be running in limited memory."
922 msgstr ""
923
924 #. type: textblock
925 #: ../src/guestfs.pod:404
926 msgid ""
927 "The network may not be available unless you enable it (see L</"
928 "guestfs_set_network>)."
929 msgstr ""
930
931 #. type: textblock
932 #: ../src/guestfs.pod:409
933 msgid "Only supports Linux guests (not Windows, BSD, etc)."
934 msgstr ""
935
936 #. type: textblock
937 #: ../src/guestfs.pod:413
938 msgid ""
939 "Architecture limitations (eg. won't work for a PPC guest on an X86 host)."
940 msgstr ""
941
942 #. type: textblock
943 #: ../src/guestfs.pod:418
944 msgid ""
945 "For SELinux guests, you may need to enable SELinux and load policy first.  "
946 "See L</SELINUX> in this manpage."
947 msgstr ""
948
949 #. type: textblock
950 #: ../src/guestfs.pod:423
951 msgid ""
952 "I<Security:> It is not safe to run commands from untrusted, possibly "
953 "malicious guests.  These commands may attempt to exploit your program by "
954 "sending unexpected output.  They could also try to exploit the Linux kernel "
955 "or qemu provided by the libguestfs appliance.  They could use the network "
956 "provided by the libguestfs appliance to bypass ordinary network partitions "
957 "and firewalls.  They could use the elevated privileges or different SELinux "
958 "context of your program to their advantage."
959 msgstr ""
960
961 #. type: textblock
962 #: ../src/guestfs.pod:432
963 msgid ""
964 "A secure alternative is to use libguestfs to install a \"firstboot\" script "
965 "(a script which runs when the guest next boots normally), and to have this "
966 "script run the commands you want in the normal context of the running guest, "
967 "network security and so on.  For information about other security issues, "
968 "see L</SECURITY>."
969 msgstr ""
970
971 #. type: textblock
972 #: ../src/guestfs.pod:440
973 msgid ""
974 "The two main API calls to run commands are L</guestfs_command> and L</"
975 "guestfs_sh> (there are also variations)."
976 msgstr ""
977
978 #. type: textblock
979 #: ../src/guestfs.pod:443
980 msgid ""
981 "The difference is that L</guestfs_sh> runs commands using the shell, so any "
982 "shell globs, redirections, etc will work."
983 msgstr ""
984
985 #. type: =head2
986 #: ../src/guestfs.pod:446
987 msgid "CONFIGURATION FILES"
988 msgstr "ФАЙЛИ НАЛАШТУВАННЯ"
989
990 #. type: textblock
991 #: ../src/guestfs.pod:448
992 msgid ""
993 "To read and write configuration files in Linux guest filesystems, we "
994 "strongly recommend using Augeas.  For example, Augeas understands how to "
995 "read and write, say, a Linux shadow password file or X.org configuration "
996 "file, and so avoids you having to write that code."
997 msgstr ""
998
999 #. type: textblock
1000 #: ../src/guestfs.pod:453
1001 msgid ""
1002 "The main Augeas calls are bound through the C<guestfs_aug_*> APIs.  We don't "
1003 "document Augeas itself here because there is excellent documentation on the "
1004 "L<http://augeas.net/> website."
1005 msgstr ""
1006
1007 #. type: textblock
1008 #: ../src/guestfs.pod:457
1009 msgid ""
1010 "If you don't want to use Augeas (you fool!) then try calling L</"
1011 "guestfs_read_lines> to get the file as a list of lines which you can iterate "
1012 "over."
1013 msgstr ""
1014
1015 #. type: =head2
1016 #: ../src/guestfs.pod:461
1017 msgid "SELINUX"
1018 msgstr "SELINUX"
1019
1020 #. type: textblock
1021 #: ../src/guestfs.pod:463
1022 msgid ""
1023 "We support SELinux guests.  To ensure that labeling happens correctly in "
1024 "SELinux guests, you need to enable SELinux and load the guest's policy:"
1025 msgstr ""
1026
1027 #. type: =item
1028 #: ../src/guestfs.pod:469 ../src/guestfs.pod:1257 ../src/guestfs.pod:1395
1029 #: ../src/guestfs.pod:2426
1030 msgid "1."
1031 msgstr ""
1032
1033 #. type: textblock
1034 #: ../src/guestfs.pod:471
1035 msgid "Before launching, do:"
1036 msgstr ""
1037
1038 #. type: verbatim
1039 #: ../src/guestfs.pod:473
1040 #, no-wrap
1041 msgid ""
1042 " guestfs_set_selinux (g, 1);\n"
1043 "\n"
1044 msgstr ""
1045
1046 #. type: =item
1047 #: ../src/guestfs.pod:475 ../src/guestfs.pod:1261 ../src/guestfs.pod:1399
1048 #: ../src/guestfs.pod:2451
1049 msgid "2."
1050 msgstr ""
1051
1052 #. type: textblock
1053 #: ../src/guestfs.pod:477
1054 msgid ""
1055 "After mounting the guest's filesystem(s), load the policy.  This is best "
1056 "done by running the L<load_policy(8)> command in the guest itself:"
1057 msgstr ""
1058
1059 #. type: verbatim
1060 #: ../src/guestfs.pod:481
1061 #, no-wrap
1062 msgid ""
1063 " guestfs_sh (g, \"/usr/sbin/load_policy\");\n"
1064 "\n"
1065 msgstr ""
1066
1067 #. type: textblock
1068 #: ../src/guestfs.pod:483
1069 msgid ""
1070 "(Older versions of C<load_policy> require you to specify the name of the "
1071 "policy file)."
1072 msgstr ""
1073
1074 #. type: =item
1075 #: ../src/guestfs.pod:486 ../src/guestfs.pod:1405
1076 msgid "3."
1077 msgstr ""
1078
1079 #. type: textblock
1080 #: ../src/guestfs.pod:488
1081 msgid ""
1082 "Optionally, set the security context for the API.  The correct security "
1083 "context to use can only be known by inspecting the guest.  As an example:"
1084 msgstr ""
1085
1086 #. type: verbatim
1087 #: ../src/guestfs.pod:492
1088 #, no-wrap
1089 msgid ""
1090 " guestfs_setcon (g, \"unconfined_u:unconfined_r:unconfined_t:s0\");\n"
1091 "\n"
1092 msgstr ""
1093
1094 #. type: textblock
1095 #: ../src/guestfs.pod:496
1096 msgid "This will work for running commands and editing existing files."
1097 msgstr ""
1098
1099 #. type: textblock
1100 #: ../src/guestfs.pod:498
1101 msgid ""
1102 "When new files are created, you may need to label them explicitly, for "
1103 "example by running the external command C<restorecon pathname>."
1104 msgstr ""
1105
1106 #. type: =head2
1107 #: ../src/guestfs.pod:502
1108 msgid "UMASK"
1109 msgstr ""
1110
1111 #. type: textblock
1112 #: ../src/guestfs.pod:504
1113 msgid ""
1114 "Certain calls are affected by the current file mode creation mask (the "
1115 "\"umask\").  In particular ones which create files or directories, such as "
1116 "L</guestfs_touch>, L</guestfs_mknod> or L</guestfs_mkdir>.  This affects "
1117 "either the default mode that the file is created with or modifies the mode "
1118 "that you supply."
1119 msgstr ""
1120
1121 #. type: textblock
1122 #: ../src/guestfs.pod:510
1123 msgid ""
1124 "The default umask is C<022>, so files are created with modes such as C<0644> "
1125 "and directories with C<0755>."
1126 msgstr ""
1127
1128 #. type: textblock
1129 #: ../src/guestfs.pod:513
1130 msgid ""
1131 "There are two ways to avoid being affected by umask.  Either set umask to 0 "
1132 "(call C<guestfs_umask (g, 0)> early after launching).  Or call L</"
1133 "guestfs_chmod> after creating each file or directory."
1134 msgstr ""
1135
1136 #. type: textblock
1137 #: ../src/guestfs.pod:517
1138 msgid "For more information about umask, see L<umask(2)>."
1139 msgstr ""
1140
1141 #. type: =head1
1142 #: ../src/guestfs.pod:519 ../fish/guestfish.pod:767
1143 msgid "ENCRYPTED DISKS"
1144 msgstr ""
1145
1146 #. type: textblock
1147 #: ../src/guestfs.pod:521
1148 msgid ""
1149 "Libguestfs allows you to access Linux guests which have been encrypted using "
1150 "whole disk encryption that conforms to the Linux Unified Key Setup (LUKS) "
1151 "standard.  This includes nearly all whole disk encryption systems used by "
1152 "modern Linux guests."
1153 msgstr ""
1154
1155 #. type: textblock
1156 #: ../src/guestfs.pod:527
1157 msgid ""
1158 "Use L</guestfs_vfs_type> to identify LUKS-encrypted block devices (it "
1159 "returns the string C<crypto_LUKS>)."
1160 msgstr ""
1161
1162 #. type: textblock
1163 #: ../src/guestfs.pod:530
1164 msgid ""
1165 "Then open these devices by calling L</guestfs_luks_open>.  Obviously you "
1166 "will require the passphrase!"
1167 msgstr ""
1168
1169 #. type: textblock
1170 #: ../src/guestfs.pod:533
1171 msgid ""
1172 "Opening a LUKS device creates a new device mapper device called C</dev/"
1173 "mapper/mapname> (where C<mapname> is the string you supply to L</"
1174 "guestfs_luks_open>).  Reads and writes to this mapper device are decrypted "
1175 "from and encrypted to the underlying block device respectively."
1176 msgstr ""
1177
1178 #. type: textblock
1179 #: ../src/guestfs.pod:539
1180 msgid ""
1181 "LVM volume groups on the device can be made visible by calling L</"
1182 "guestfs_vgscan> followed by L</guestfs_vg_activate_all>.  The logical volume"
1183 "(s) can now be mounted in the usual way."
1184 msgstr ""
1185
1186 #. type: textblock
1187 #: ../src/guestfs.pod:543
1188 msgid ""
1189 "Use the reverse process to close a LUKS device.  Unmount any logical volumes "
1190 "on it, deactivate the volume groups by caling C<guestfs_vg_activate (g, 0, "
1191 "[\"/dev/VG\"])>.  Then close the mapper device by calling L</"
1192 "guestfs_luks_close> on the C</dev/mapper/mapname> device (I<not> the "
1193 "underlying encrypted block device)."
1194 msgstr ""
1195
1196 #. type: =head2
1197 #: ../src/guestfs.pod:550
1198 msgid "INSPECTION"
1199 msgstr "ПЕРЕВІРКА"
1200
1201 #. type: textblock
1202 #: ../src/guestfs.pod:552
1203 msgid ""
1204 "Libguestfs has APIs for inspecting an unknown disk image to find out if it "
1205 "contains operating systems, an install CD or a live CD.  (These APIs used to "
1206 "be in a separate Perl-only library called L<Sys::Guestfs::Lib(3)> but since "
1207 "version 1.5.3 the most frequently used part of this library has been "
1208 "rewritten in C and moved into the core code)."
1209 msgstr ""
1210
1211 #. type: textblock
1212 #: ../src/guestfs.pod:559
1213 msgid ""
1214 "Add all disks belonging to the unknown virtual machine and call L</"
1215 "guestfs_launch> in the usual way."
1216 msgstr ""
1217
1218 #. type: textblock
1219 #: ../src/guestfs.pod:562
1220 msgid ""
1221 "Then call L</guestfs_inspect_os>.  This function uses other libguestfs calls "
1222 "and certain heuristics, and returns a list of operating systems that were "
1223 "found.  An empty list means none were found.  A single element is the root "
1224 "filesystem of the operating system.  For dual- or multi-boot guests, "
1225 "multiple roots can be returned, each one corresponding to a separate "
1226 "operating system.  (Multi-boot virtual machines are extremely rare in the "
1227 "world of virtualization, but since this scenario can happen, we have built "
1228 "libguestfs to deal with it.)"
1229 msgstr ""
1230
1231 #. type: textblock
1232 #: ../src/guestfs.pod:571
1233 msgid ""
1234 "For each root, you can then call various C<guestfs_inspect_get_*> functions "
1235 "to get additional details about that operating system.  For example, call L</"
1236 "guestfs_inspect_get_type> to return the string C<windows> or C<linux> for "
1237 "Windows and Linux-based operating systems respectively."
1238 msgstr ""
1239
1240 #. type: textblock
1241 #: ../src/guestfs.pod:577
1242 msgid ""
1243 "Un*x-like and Linux-based operating systems usually consist of several "
1244 "filesystems which are mounted at boot time (for example, a separate boot "
1245 "partition mounted on C</boot>).  The inspection rules are able to detect how "
1246 "filesystems correspond to mount points.  Call "
1247 "C<guestfs_inspect_get_mountpoints> to get this mapping.  It might return a "
1248 "hash table like this example:"
1249 msgstr ""
1250
1251 #. type: verbatim
1252 #: ../src/guestfs.pod:584
1253 #, no-wrap
1254 msgid ""
1255 " /boot => /dev/sda1\n"
1256 " /     => /dev/vg_guest/lv_root\n"
1257 " /usr  => /dev/vg_guest/lv_usr\n"
1258 "\n"
1259 msgstr ""
1260
1261 #. type: textblock
1262 #: ../src/guestfs.pod:588
1263 msgid ""
1264 "The caller can then make calls to L</guestfs_mount_options> to mount the "
1265 "filesystems as suggested."
1266 msgstr ""
1267
1268 #. type: textblock
1269 #: ../src/guestfs.pod:591
1270 msgid ""
1271 "Be careful to mount filesystems in the right order (eg. C</> before C</"
1272 "usr>).  Sorting the keys of the hash by length, shortest first, should work."
1273 msgstr ""
1274
1275 #. type: textblock
1276 #: ../src/guestfs.pod:595
1277 msgid ""
1278 "Inspection currently only works for some common operating systems.  "
1279 "Contributors are welcome to send patches for other operating systems that we "
1280 "currently cannot detect."
1281 msgstr ""
1282
1283 #. type: textblock
1284 #: ../src/guestfs.pod:599
1285 msgid ""
1286 "Encrypted disks must be opened before inspection.  See L</ENCRYPTED DISKS> "
1287 "for more details.  The L</guestfs_inspect_os> function just ignores any "
1288 "encrypted devices."
1289 msgstr ""
1290
1291 #. type: textblock
1292 #: ../src/guestfs.pod:603
1293 msgid ""
1294 "A note on the implementation: The call L</guestfs_inspect_os> performs "
1295 "inspection and caches the results in the guest handle.  Subsequent calls to "
1296 "C<guestfs_inspect_get_*> return this cached information, but I<do not> re-"
1297 "read the disks.  If you change the content of the guest disks, you can redo "
1298 "inspection by calling L</guestfs_inspect_os> again.  (L</"
1299 "guestfs_inspect_list_applications> works a little differently from the other "
1300 "calls and does read the disks.  See documentation for that function for "
1301 "details)."
1302 msgstr ""
1303
1304 #. type: =head3
1305 #: ../src/guestfs.pod:612
1306 msgid "INSPECTING INSTALL DISKS"
1307 msgstr ""
1308
1309 #. type: textblock
1310 #: ../src/guestfs.pod:614
1311 msgid ""
1312 "Libguestfs (since 1.9.4) can detect some install disks, install CDs, live "
1313 "CDs and more."
1314 msgstr ""
1315
1316 #. type: textblock
1317 #: ../src/guestfs.pod:617
1318 msgid ""
1319 "Call L</guestfs_inspect_get_format> to return the format of the operating "
1320 "system, which currently can be C<installed> (a regular operating system) or "
1321 "C<installer> (some sort of install disk)."
1322 msgstr ""
1323
1324 #. type: textblock
1325 #: ../src/guestfs.pod:621
1326 msgid ""
1327 "Further information is available about the operating system that can be "
1328 "installed using the regular inspection APIs like L</"
1329 "guestfs_inspect_get_product_name>, L</guestfs_inspect_get_major_version> etc."
1330 msgstr ""
1331
1332 #. type: textblock
1333 #: ../src/guestfs.pod:626
1334 msgid ""
1335 "Some additional information specific to installer disks is also available "
1336 "from the L</guestfs_inspect_is_live>, L</guestfs_inspect_is_netinst> and L</"
1337 "guestfs_inspect_is_multipart> calls."
1338 msgstr ""
1339
1340 #. type: =head2
1341 #: ../src/guestfs.pod:631
1342 msgid "SPECIAL CONSIDERATIONS FOR WINDOWS GUESTS"
1343 msgstr ""
1344
1345 #. type: textblock
1346 #: ../src/guestfs.pod:633
1347 msgid ""
1348 "Libguestfs can mount NTFS partitions.  It does this using the L<http://www."
1349 "ntfs-3g.org/> driver."
1350 msgstr ""
1351
1352 #. type: =head3
1353 #: ../src/guestfs.pod:636
1354 msgid "DRIVE LETTERS AND PATHS"
1355 msgstr ""
1356
1357 #. type: textblock
1358 #: ../src/guestfs.pod:638
1359 msgid ""
1360 "DOS and Windows still use drive letters, and the filesystems are always "
1361 "treated as case insensitive by Windows itself, and therefore you might find "
1362 "a Windows configuration file referring to a path like C<c:\\windows"
1363 "\\system32>.  When the filesystem is mounted in libguestfs, that directory "
1364 "might be referred to as C</WINDOWS/System32>."
1365 msgstr ""
1366
1367 #. type: textblock
1368 #: ../src/guestfs.pod:644
1369 msgid ""
1370 "Drive letter mappings can be found using inspection (see L</INSPECTION> and "
1371 "L</guestfs_inspect_get_drive_mappings>)"
1372 msgstr ""
1373
1374 #. type: textblock
1375 #: ../src/guestfs.pod:647
1376 msgid ""
1377 "Dealing with separator characters (backslash vs forward slash) is outside "
1378 "the scope of libguestfs, but usually a simple character replacement will "
1379 "work."
1380 msgstr ""
1381
1382 #. type: textblock
1383 #: ../src/guestfs.pod:651
1384 msgid ""
1385 "To resolve the case insensitivity of paths, call L</"
1386 "guestfs_case_sensitive_path>."
1387 msgstr ""
1388
1389 #. type: =head3
1390 #: ../src/guestfs.pod:654
1391 msgid "ACCESSING THE WINDOWS REGISTRY"
1392 msgstr ""
1393
1394 #. type: textblock
1395 #: ../src/guestfs.pod:656
1396 msgid ""
1397 "Libguestfs also provides some help for decoding Windows Registry \"hive\" "
1398 "files, through the library C<hivex> which is part of the libguestfs project "
1399 "although ships as a separate tarball.  You have to locate and download the "
1400 "hive file(s) yourself, and then pass them to C<hivex> functions.  See also "
1401 "the programs L<hivexml(1)>, L<hivexsh(1)>, L<hivexregedit(1)> and L<virt-win-"
1402 "reg(1)> for more help on this issue."
1403 msgstr ""
1404
1405 #. type: =head3
1406 #: ../src/guestfs.pod:664
1407 msgid "SYMLINKS ON NTFS-3G FILESYSTEMS"
1408 msgstr ""
1409
1410 #. type: textblock
1411 #: ../src/guestfs.pod:666
1412 msgid ""
1413 "Ntfs-3g tries to rewrite \"Junction Points\" and NTFS \"symbolic links\" to "
1414 "provide something which looks like a Linux symlink.  The way it tries to do "
1415 "the rewriting is described here:"
1416 msgstr ""
1417
1418 #. type: textblock
1419 #: ../src/guestfs.pod:670
1420 msgid ""
1421 "L<http://www.tuxera.com/community/ntfs-3g-advanced/junction-points-and-"
1422 "symbolic-links/>"
1423 msgstr ""
1424 "L<http://www.tuxera.com/community/ntfs-3g-advanced/junction-points-and-"
1425 "symbolic-links/>"
1426
1427 #. type: textblock
1428 #: ../src/guestfs.pod:672
1429 msgid ""
1430 "The essential problem is that ntfs-3g simply does not have enough "
1431 "information to do a correct job.  NTFS links can contain drive letters and "
1432 "references to external device GUIDs that ntfs-3g has no way of resolving.  "
1433 "It is almost certainly the case that libguestfs callers should ignore what "
1434 "ntfs-3g does (ie. don't use L</guestfs_readlink> on NTFS volumes)."
1435 msgstr ""
1436
1437 #. type: textblock
1438 #: ../src/guestfs.pod:679
1439 msgid ""
1440 "Instead if you encounter a symbolic link on an ntfs-3g filesystem, use L</"
1441 "guestfs_lgetxattr> to read the C<system.ntfs_reparse_data> extended "
1442 "attribute, and read the raw reparse data from that (you can find the format "
1443 "documented in various places around the web)."
1444 msgstr ""
1445
1446 #. type: =head3
1447 #: ../src/guestfs.pod:684
1448 msgid "EXTENDED ATTRIBUTES ON NTFS-3G FILESYSTEMS"
1449 msgstr ""
1450
1451 #. type: textblock
1452 #: ../src/guestfs.pod:686
1453 msgid ""
1454 "There are other useful extended attributes that can be read from ntfs-3g "
1455 "filesystems (using L</guestfs_getxattr>).  See:"
1456 msgstr ""
1457
1458 #. type: textblock
1459 #: ../src/guestfs.pod:689
1460 msgid ""
1461 "L<http://www.tuxera.com/community/ntfs-3g-advanced/extended-attributes/>"
1462 msgstr ""
1463 "L<http://www.tuxera.com/community/ntfs-3g-advanced/extended-attributes/>"
1464
1465 #. type: =head2
1466 #: ../src/guestfs.pod:691
1467 msgid "USING LIBGUESTFS WITH OTHER PROGRAMMING LANGUAGES"
1468 msgstr ""
1469
1470 #. type: textblock
1471 #: ../src/guestfs.pod:693
1472 msgid ""
1473 "Although we don't want to discourage you from using the C API, we will "
1474 "mention here that the same API is also available in other languages."
1475 msgstr ""
1476
1477 #. type: textblock
1478 #: ../src/guestfs.pod:696
1479 msgid ""
1480 "The API is broadly identical in all supported languages.  This means that "
1481 "the C call C<guestfs_add_drive_ro(g,file)> is C<$g-E<gt>add_drive_ro($file)> "
1482 "in Perl, C<g.add_drive_ro(file)> in Python, and C<g#add_drive_ro file> in "
1483 "OCaml.  In other words, a straightforward, predictable isomorphism between "
1484 "each language."
1485 msgstr ""
1486
1487 #. type: textblock
1488 #: ../src/guestfs.pod:702
1489 msgid ""
1490 "Error messages are automatically transformed into exceptions if the language "
1491 "supports it."
1492 msgstr ""
1493
1494 #. type: textblock
1495 #: ../src/guestfs.pod:705
1496 msgid ""
1497 "We don't try to \"object orientify\" parts of the API in OO languages, "
1498 "although contributors are welcome to write higher level APIs above what we "
1499 "provide in their favourite languages if they wish."
1500 msgstr ""
1501
1502 #. type: =item
1503 #: ../src/guestfs.pod:711
1504 msgid "B<C++>"
1505 msgstr "B<C++>"
1506
1507 #. type: textblock
1508 #: ../src/guestfs.pod:713
1509 msgid ""
1510 "You can use the I<guestfs.h> header file from C++ programs.  The C++ API is "
1511 "identical to the C API.  C++ classes and exceptions are not used."
1512 msgstr ""
1513
1514 #. type: =item
1515 #: ../src/guestfs.pod:717
1516 msgid "B<C#>"
1517 msgstr "B<C#>"
1518
1519 #. type: textblock
1520 #: ../src/guestfs.pod:719
1521 msgid ""
1522 "The C# bindings are highly experimental.  Please read the warnings at the "
1523 "top of C<csharp/Libguestfs.cs>."
1524 msgstr ""
1525
1526 #. type: =item
1527 #: ../src/guestfs.pod:722
1528 msgid "B<Haskell>"
1529 msgstr "B<Haskell>"
1530
1531 #. type: textblock
1532 #: ../src/guestfs.pod:724
1533 msgid ""
1534 "This is the only language binding that is working but incomplete.  Only "
1535 "calls which return simple integers have been bound in Haskell, and we are "
1536 "looking for help to complete this binding."
1537 msgstr ""
1538
1539 #. type: =item
1540 #: ../src/guestfs.pod:728
1541 msgid "B<Java>"
1542 msgstr "B<Java>"
1543
1544 #. type: textblock
1545 #: ../src/guestfs.pod:730
1546 msgid ""
1547 "Full documentation is contained in the Javadoc which is distributed with "
1548 "libguestfs."
1549 msgstr ""
1550
1551 #. type: =item
1552 #: ../src/guestfs.pod:733
1553 msgid "B<OCaml>"
1554 msgstr "B<OCaml>"
1555
1556 #. type: textblock
1557 #: ../src/guestfs.pod:735
1558 msgid "See L<guestfs-ocaml(3)>."
1559 msgstr "Див. L<guestfs-ocaml(3)>."
1560
1561 #. type: =item
1562 #: ../src/guestfs.pod:737
1563 msgid "B<Perl>"
1564 msgstr "B<Perl>"
1565
1566 #. type: textblock
1567 #: ../src/guestfs.pod:739
1568 msgid "See L<guestfs-perl(3)> and L<Sys::Guestfs(3)>."
1569 msgstr "Див. L<guestfs-perl(3)> та L<Sys::Guestfs(3)>."
1570
1571 #. type: =item
1572 #: ../src/guestfs.pod:741
1573 msgid "B<PHP>"
1574 msgstr "B<PHP>"
1575
1576 #. type: textblock
1577 #: ../src/guestfs.pod:743
1578 msgid ""
1579 "For documentation see C<README-PHP> supplied with libguestfs sources or in "
1580 "the php-libguestfs package for your distribution."
1581 msgstr ""
1582
1583 #. type: textblock
1584 #: ../src/guestfs.pod:746
1585 msgid "The PHP binding only works correctly on 64 bit machines."
1586 msgstr ""
1587
1588 #. type: =item
1589 #: ../src/guestfs.pod:748
1590 msgid "B<Python>"
1591 msgstr "B<Python>"
1592
1593 #. type: textblock
1594 #: ../src/guestfs.pod:750
1595 msgid "See L<guestfs-python(3)>."
1596 msgstr "Див. L<guestfs-python(3)>."
1597
1598 #. type: =item
1599 #: ../src/guestfs.pod:752
1600 msgid "B<Ruby>"
1601 msgstr "B<Ruby>"
1602
1603 #. type: textblock
1604 #: ../src/guestfs.pod:754
1605 msgid "See L<guestfs-ruby(3)>."
1606 msgstr "Див. L<guestfs-ruby(3)>."
1607
1608 #. type: =item
1609 #: ../src/guestfs.pod:756
1610 msgid "B<shell scripts>"
1611 msgstr "B<скрипти оболонки>"
1612
1613 #. type: textblock
1614 #: ../src/guestfs.pod:758
1615 msgid "See L<guestfish(1)>."
1616 msgstr "Див. L<guestfish(1)>."
1617
1618 #. type: =head2
1619 #: ../src/guestfs.pod:762
1620 msgid "LIBGUESTFS GOTCHAS"
1621 msgstr ""
1622
1623 #. type: textblock
1624 #: ../src/guestfs.pod:764
1625 msgid ""
1626 "L<http://en.wikipedia.org/wiki/Gotcha_(programming)>: \"A feature of a "
1627 "system [...] that works in the way it is documented but is counterintuitive "
1628 "and almost invites mistakes.\""
1629 msgstr ""
1630
1631 #. type: textblock
1632 #: ../src/guestfs.pod:768
1633 msgid ""
1634 "Since we developed libguestfs and the associated tools, there are several "
1635 "things we would have designed differently, but are now stuck with for "
1636 "backwards compatibility or other reasons.  If there is ever a libguestfs 2.0 "
1637 "release, you can expect these to change.  Beware of them."
1638 msgstr ""
1639
1640 #. type: =item
1641 #: ../src/guestfs.pod:776
1642 msgid "Autosync / forgetting to sync."
1643 msgstr ""
1644
1645 #. type: textblock
1646 #: ../src/guestfs.pod:778
1647 msgid ""
1648 "I<Update:> Autosync is enabled by default for all API users starting from "
1649 "libguestfs 1.5.24.  This section only applies to older versions."
1650 msgstr ""
1651
1652 #. type: textblock
1653 #: ../src/guestfs.pod:781
1654 msgid ""
1655 "When modifying a filesystem from C or another language, you B<must> unmount "
1656 "all filesystems and call L</guestfs_sync> explicitly before you close the "
1657 "libguestfs handle.  You can also call:"
1658 msgstr ""
1659
1660 #. type: verbatim
1661 #: ../src/guestfs.pod:785
1662 #, no-wrap
1663 msgid ""
1664 " guestfs_set_autosync (g, 1);\n"
1665 "\n"
1666 msgstr ""
1667
1668 #. type: textblock
1669 #: ../src/guestfs.pod:787
1670 msgid ""
1671 "to have the unmount/sync done automatically for you when the handle 'g' is "
1672 "closed.  (This feature is called \"autosync\", L</guestfs_set_autosync> q.v.)"
1673 msgstr ""
1674
1675 #. type: textblock
1676 #: ../src/guestfs.pod:791
1677 msgid ""
1678 "If you forget to do this, then it is entirely possible that your changes "
1679 "won't be written out, or will be partially written, or (very rarely) that "
1680 "you'll get disk corruption."
1681 msgstr ""
1682
1683 #. type: textblock
1684 #: ../src/guestfs.pod:795
1685 msgid ""
1686 "Note that in L<guestfish(3)> autosync is the default.  So quick and dirty "
1687 "guestfish scripts that forget to sync will work just fine, which can make "
1688 "this very puzzling if you are trying to debug a problem."
1689 msgstr ""
1690
1691 #. type: =item
1692 #: ../src/guestfs.pod:799
1693 msgid "Mount option C<-o sync> should not be the default."
1694 msgstr ""
1695
1696 #. type: textblock
1697 #: ../src/guestfs.pod:801
1698 msgid ""
1699 "If you use L</guestfs_mount>, then C<-o sync,noatime> are added implicitly.  "
1700 "However C<-o sync> does not add any reliability benefit, but does have a "
1701 "very large performance impact."
1702 msgstr ""
1703
1704 #. type: textblock
1705 #: ../src/guestfs.pod:805
1706 msgid ""
1707 "The work around is to use L</guestfs_mount_options> and set the mount "
1708 "options that you actually want to use."
1709 msgstr ""
1710
1711 #. type: =item
1712 #: ../src/guestfs.pod:808
1713 msgid "Read-only should be the default."
1714 msgstr ""
1715
1716 #. type: textblock
1717 #: ../src/guestfs.pod:810
1718 msgid ""
1719 "In L<guestfish(3)>, I<--ro> should be the default, and you should have to "
1720 "specify I<--rw> if you want to make changes to the image."
1721 msgstr ""
1722
1723 #. type: textblock
1724 #: ../src/guestfs.pod:813
1725 msgid "This would reduce the potential to corrupt live VM images."
1726 msgstr ""
1727
1728 #. type: textblock
1729 #: ../src/guestfs.pod:815
1730 msgid ""
1731 "Note that many filesystems change the disk when you just mount and unmount, "
1732 "even if you didn't perform any writes.  You need to use L</"
1733 "guestfs_add_drive_ro> to guarantee that the disk is not changed."
1734 msgstr ""
1735
1736 #. type: =item
1737 #: ../src/guestfs.pod:819
1738 msgid "guestfish command line is hard to use."
1739 msgstr ""
1740
1741 #. type: textblock
1742 #: ../src/guestfs.pod:821
1743 msgid ""
1744 "C<guestfish disk.img> doesn't do what people expect (open C<disk.img> for "
1745 "examination).  It tries to run a guestfish command C<disk.img> which doesn't "
1746 "exist, so it fails.  In earlier versions of guestfish the error message was "
1747 "also unintuitive, but we have corrected this since.  Like the Bourne shell, "
1748 "we should have used C<guestfish -c command> to run commands."
1749 msgstr ""
1750
1751 #. type: =item
1752 #: ../src/guestfs.pod:828
1753 msgid "guestfish megabyte modifiers don't work right on all commands"
1754 msgstr ""
1755
1756 #. type: textblock
1757 #: ../src/guestfs.pod:830
1758 msgid ""
1759 "In recent guestfish you can use C<1M> to mean 1 megabyte (and similarly for "
1760 "other modifiers).  What guestfish actually does is to multiply the number "
1761 "part by the modifier part and pass the result to the C API.  However this "
1762 "doesn't work for a few APIs which aren't expecting bytes, but are already "
1763 "expecting some other unit (eg. megabytes)."
1764 msgstr ""
1765
1766 #. type: textblock
1767 #: ../src/guestfs.pod:837
1768 msgid "The most common is L</guestfs_lvcreate>.  The guestfish command:"
1769 msgstr ""
1770
1771 #. type: verbatim
1772 #: ../src/guestfs.pod:839
1773 #, no-wrap
1774 msgid ""
1775 " lvcreate LV VG 100M\n"
1776 "\n"
1777 msgstr ""
1778
1779 #. type: textblock
1780 #: ../src/guestfs.pod:841
1781 msgid ""
1782 "does not do what you might expect.  Instead because L</guestfs_lvcreate> is "
1783 "already expecting megabytes, this tries to create a 100 I<terabyte> (100 "
1784 "megabytes * megabytes) logical volume.  The error message you get from this "
1785 "is also a little obscure."
1786 msgstr ""
1787
1788 #. type: textblock
1789 #: ../src/guestfs.pod:846
1790 msgid ""
1791 "This could be fixed in the generator by specially marking parameters and "
1792 "return values which take bytes or other units."
1793 msgstr ""
1794
1795 #. type: =item
1796 #: ../src/guestfs.pod:849
1797 msgid "Ambiguity between devices and paths"
1798 msgstr ""
1799
1800 #. type: textblock
1801 #: ../src/guestfs.pod:851
1802 msgid ""
1803 "There is a subtle ambiguity in the API between a device name (eg. C</dev/"
1804 "sdb2>) and a similar pathname.  A file might just happen to be called "
1805 "C<sdb2> in the directory C</dev> (consider some non-Unix VM image)."
1806 msgstr ""
1807
1808 #. type: textblock
1809 #: ../src/guestfs.pod:856
1810 msgid ""
1811 "In the current API we usually resolve this ambiguity by having two separate "
1812 "calls, for example L</guestfs_checksum> and L</guestfs_checksum_device>.  "
1813 "Some API calls are ambiguous and (incorrectly) resolve the problem by "
1814 "detecting if the path supplied begins with C</dev/>."
1815 msgstr ""
1816
1817 #. type: textblock
1818 #: ../src/guestfs.pod:862
1819 msgid ""
1820 "To avoid both the ambiguity and the need to duplicate some calls, we could "
1821 "make paths/devices into structured names.  One way to do this would be to "
1822 "use a notation like grub (C<hd(0,0)>), although nobody really likes this "
1823 "aspect of grub.  Another way would be to use a structured type, equivalent "
1824 "to this OCaml type:"
1825 msgstr ""
1826
1827 #. type: verbatim
1828 #: ../src/guestfs.pod:868
1829 #, no-wrap
1830 msgid ""
1831 " type path = Path of string | Device of int | Partition of int * int\n"
1832 "\n"
1833 msgstr ""
1834
1835 #. type: textblock
1836 #: ../src/guestfs.pod:870
1837 msgid "which would allow you to pass arguments like:"
1838 msgstr ""
1839
1840 #. type: verbatim
1841 #: ../src/guestfs.pod:872
1842 #, no-wrap
1843 msgid ""
1844 " Path \"/foo/bar\"\n"
1845 " Device 1            (* /dev/sdb, or perhaps /dev/sda *)\n"
1846 " Partition (1, 2)    (* /dev/sdb2 (or is it /dev/sda2 or /dev/sdb3?) *)\n"
1847 " Path \"/dev/sdb2\"    (* not a device *)\n"
1848 "\n"
1849 msgstr ""
1850
1851 #. type: textblock
1852 #: ../src/guestfs.pod:877
1853 msgid ""
1854 "As you can see there are still problems to resolve even with this "
1855 "representation.  Also consider how it might work in guestfish."
1856 msgstr ""
1857
1858 #. type: =head2
1859 #: ../src/guestfs.pod:882
1860 msgid "KEYS AND PASSPHRASES"
1861 msgstr ""
1862
1863 #. type: textblock
1864 #: ../src/guestfs.pod:884
1865 msgid ""
1866 "Certain libguestfs calls take a parameter that contains sensitive key "
1867 "material, passed in as a C string."
1868 msgstr ""
1869
1870 #. type: textblock
1871 #: ../src/guestfs.pod:887
1872 msgid ""
1873 "In the future we would hope to change the libguestfs implementation so that "
1874 "keys are L<mlock(2)>-ed into physical RAM, and thus can never end up in "
1875 "swap.  However this is I<not> done at the moment, because of the complexity "
1876 "of such an implementation."
1877 msgstr ""
1878
1879 #. type: textblock
1880 #: ../src/guestfs.pod:892
1881 msgid ""
1882 "Therefore you should be aware that any key parameter you pass to libguestfs "
1883 "might end up being written out to the swap partition.  If this is a concern, "
1884 "scrub the swap partition or don't use libguestfs on encrypted devices."
1885 msgstr ""
1886
1887 #. type: =head2
1888 #: ../src/guestfs.pod:897
1889 msgid "MULTIPLE HANDLES AND MULTIPLE THREADS"
1890 msgstr ""
1891
1892 #. type: textblock
1893 #: ../src/guestfs.pod:899
1894 msgid ""
1895 "All high-level libguestfs actions are synchronous.  If you want to use "
1896 "libguestfs asynchronously then you must create a thread."
1897 msgstr ""
1898
1899 #. type: textblock
1900 #: ../src/guestfs.pod:902
1901 msgid ""
1902 "Only use the handle from a single thread.  Either use the handle exclusively "
1903 "from one thread, or provide your own mutex so that two threads cannot issue "
1904 "calls on the same handle at the same time."
1905 msgstr ""
1906
1907 #. type: textblock
1908 #: ../src/guestfs.pod:906
1909 msgid ""
1910 "See the graphical program guestfs-browser for one possible architecture for "
1911 "multithreaded programs using libvirt and libguestfs."
1912 msgstr ""
1913
1914 #. type: =head2
1915 #: ../src/guestfs.pod:909
1916 msgid "PATH"
1917 msgstr "ШЛЯХ"
1918
1919 #. type: textblock
1920 #: ../src/guestfs.pod:911
1921 msgid ""
1922 "Libguestfs needs a supermin appliance, which it finds by looking along an "
1923 "internal path."
1924 msgstr ""
1925
1926 #. type: textblock
1927 #: ../src/guestfs.pod:914
1928 msgid ""
1929 "By default it looks for these in the directory C<$libdir/guestfs> (eg. C</"
1930 "usr/local/lib/guestfs> or C</usr/lib64/guestfs>)."
1931 msgstr ""
1932
1933 #. type: textblock
1934 #: ../src/guestfs.pod:917
1935 msgid ""
1936 "Use L</guestfs_set_path> or set the environment variable L</LIBGUESTFS_PATH> "
1937 "to change the directories that libguestfs will search in.  The value is a "
1938 "colon-separated list of paths.  The current directory is I<not> searched "
1939 "unless the path contains an empty element or C<.>.  For example "
1940 "C<LIBGUESTFS_PATH=:/usr/lib/guestfs> would search the current directory and "
1941 "then C</usr/lib/guestfs>."
1942 msgstr ""
1943
1944 #. type: =head2
1945 #: ../src/guestfs.pod:924
1946 msgid "QEMU WRAPPERS"
1947 msgstr ""
1948
1949 #. type: textblock
1950 #: ../src/guestfs.pod:926
1951 msgid ""
1952 "If you want to compile your own qemu, run qemu from a non-standard location, "
1953 "or pass extra arguments to qemu, then you can write a shell-script wrapper "
1954 "around qemu."
1955 msgstr ""
1956
1957 #. type: textblock
1958 #: ../src/guestfs.pod:930
1959 msgid ""
1960 "There is one important rule to remember: you I<must C<exec qemu>> as the "
1961 "last command in the shell script (so that qemu replaces the shell and "
1962 "becomes the direct child of the libguestfs-using program).  If you don't do "
1963 "this, then the qemu process won't be cleaned up correctly."
1964 msgstr ""
1965
1966 #. type: textblock
1967 #: ../src/guestfs.pod:935
1968 msgid ""
1969 "Here is an example of a wrapper, where I have built my own copy of qemu from "
1970 "source:"
1971 msgstr ""
1972
1973 #. type: verbatim
1974 #: ../src/guestfs.pod:938
1975 #, no-wrap
1976 msgid ""
1977 " #!/bin/sh -\n"
1978 " qemudir=/home/rjones/d/qemu\n"
1979 " exec $qemudir/x86_64-softmmu/qemu-system-x86_64 -L $qemudir/pc-bios \"$@\"\n"
1980 "\n"
1981 msgstr ""
1982
1983 #. type: textblock
1984 #: ../src/guestfs.pod:942
1985 msgid ""
1986 "Save this script as C</tmp/qemu.wrapper> (or wherever), C<chmod +x>, and "
1987 "then use it by setting the LIBGUESTFS_QEMU environment variable.  For "
1988 "example:"
1989 msgstr ""
1990
1991 #. type: verbatim
1992 #: ../src/guestfs.pod:946
1993 #, no-wrap
1994 msgid ""
1995 " LIBGUESTFS_QEMU=/tmp/qemu.wrapper guestfish\n"
1996 "\n"
1997 msgstr ""
1998
1999 #. type: textblock
2000 #: ../src/guestfs.pod:948
2001 msgid ""
2002 "Note that libguestfs also calls qemu with the -help and -version options in "
2003 "order to determine features."
2004 msgstr ""
2005
2006 #. type: =head2
2007 #: ../src/guestfs.pod:951
2008 msgid "ATTACHING TO RUNNING DAEMONS"
2009 msgstr ""
2010
2011 #. type: textblock
2012 #: ../src/guestfs.pod:953
2013 msgid ""
2014 "I<Note (1):> This is B<highly experimental> and has a tendency to eat "
2015 "babies.  Use with caution."
2016 msgstr ""
2017
2018 #. type: textblock
2019 #: ../src/guestfs.pod:956
2020 msgid ""
2021 "I<Note (2):> This section explains how to attach to a running daemon from a "
2022 "low level perspective.  For most users, simply using virt tools such as "
2023 "L<guestfish(1)> with the I<--live> option will \"just work\"."
2024 msgstr ""
2025
2026 #. type: =head3
2027 #: ../src/guestfs.pod:960
2028 msgid "Using guestfs_set_attach_method"
2029 msgstr ""
2030
2031 #. type: textblock
2032 #: ../src/guestfs.pod:962
2033 msgid ""
2034 "By calling L</guestfs_set_attach_method> you can change how the library "
2035 "connects to the C<guestfsd> daemon in L</guestfs_launch> (read L</"
2036 "ARCHITECTURE> for some background)."
2037 msgstr ""
2038
2039 #. type: textblock
2040 #: ../src/guestfs.pod:966
2041 msgid ""
2042 "The normal attach method is C<appliance>, where a small appliance is created "
2043 "containing the daemon, and then the library connects to this."
2044 msgstr ""
2045
2046 #. type: textblock
2047 #: ../src/guestfs.pod:969
2048 msgid ""
2049 "Setting attach method to C<unix:I<path>> (where I<path> is the path of a "
2050 "Unix domain socket) causes L</guestfs_launch> to connect to an existing "
2051 "daemon over the Unix domain socket."
2052 msgstr ""
2053
2054 #. type: textblock
2055 #: ../src/guestfs.pod:973
2056 msgid ""
2057 "The normal use for this is to connect to a running virtual machine that "
2058 "contains a C<guestfsd> daemon, and send commands so you can read and write "
2059 "files inside the live virtual machine."
2060 msgstr ""
2061
2062 #. type: =head3
2063 #: ../src/guestfs.pod:977
2064 msgid "Using guestfs_add_domain with live flag"
2065 msgstr ""
2066
2067 #. type: textblock
2068 #: ../src/guestfs.pod:979
2069 msgid ""
2070 "L</guestfs_add_domain> provides some help for getting the correct attach "
2071 "method.  If you pass the C<live> option to this function, then (if the "
2072 "virtual machine is running) it will examine the libvirt XML looking for a "
2073 "virtio-serial channel to connect to:"
2074 msgstr ""
2075
2076 #. type: verbatim
2077 #: ../src/guestfs.pod:985
2078 #, no-wrap
2079 msgid ""
2080 " <domain>\n"
2081 "   ...\n"
2082 "   <devices>\n"
2083 "     ...\n"
2084 "     <channel type='unix'>\n"
2085 "       <source mode='bind' path='/path/to/socket'/>\n"
2086 "       <target type='virtio' name='org.libguestfs.channel.0'/>\n"
2087 "     </channel>\n"
2088 "     ...\n"
2089 "   </devices>\n"
2090 " </domain>\n"
2091 "\n"
2092 msgstr ""
2093
2094 #. type: textblock
2095 #: ../src/guestfs.pod:997
2096 msgid ""
2097 "L</guestfs_add_domain> extracts C</path/to/socket> and sets the attach "
2098 "method to C<unix:/path/to/socket>."
2099 msgstr ""
2100
2101 #. type: textblock
2102 #: ../src/guestfs.pod:1000
2103 msgid ""
2104 "Some of the libguestfs tools (including guestfish) support a I<--live> "
2105 "option which is passed through to L</guestfs_add_domain> thus allowing you "
2106 "to attach to and modify live virtual machines."
2107 msgstr ""
2108
2109 #. type: textblock
2110 #: ../src/guestfs.pod:1004
2111 msgid ""
2112 "The virtual machine needs to have been set up beforehand so that it has the "
2113 "virtio-serial channel and so that guestfsd is running inside it."
2114 msgstr ""
2115
2116 #. type: =head2
2117 #: ../src/guestfs.pod:1008
2118 msgid "ABI GUARANTEE"
2119 msgstr ""
2120
2121 #. type: textblock
2122 #: ../src/guestfs.pod:1010
2123 msgid ""
2124 "We guarantee the libguestfs ABI (binary interface), for public, high-level "
2125 "actions as outlined in this section.  Although we will deprecate some "
2126 "actions, for example if they get replaced by newer calls, we will keep the "
2127 "old actions forever.  This allows you the developer to program in confidence "
2128 "against the libguestfs API."
2129 msgstr ""
2130
2131 #. type: =head2
2132 #: ../src/guestfs.pod:1016
2133 msgid "BLOCK DEVICE NAMING"
2134 msgstr ""
2135
2136 #. type: textblock
2137 #: ../src/guestfs.pod:1018
2138 msgid ""
2139 "In the kernel there is now quite a profusion of schemata for naming block "
2140 "devices (in this context, by I<block device> I mean a physical or virtual "
2141 "hard drive).  The original Linux IDE driver used names starting with C</dev/"
2142 "hd*>.  SCSI devices have historically used a different naming scheme, C</dev/"
2143 "sd*>.  When the Linux kernel I<libata> driver became a popular replacement "
2144 "for the old IDE driver (particularly for SATA devices) those devices also "
2145 "used the C</dev/sd*> scheme.  Additionally we now have virtual machines with "
2146 "paravirtualized drivers.  This has created several different naming systems, "
2147 "such as C</dev/vd*> for virtio disks and C</dev/xvd*> for Xen PV disks."
2148 msgstr ""
2149
2150 #. type: textblock
2151 #: ../src/guestfs.pod:1030
2152 msgid ""
2153 "As discussed above, libguestfs uses a qemu appliance running an embedded "
2154 "Linux kernel to access block devices.  We can run a variety of appliances "
2155 "based on a variety of Linux kernels."
2156 msgstr ""
2157
2158 #. type: textblock
2159 #: ../src/guestfs.pod:1034
2160 msgid ""
2161 "This causes a problem for libguestfs because many API calls use device or "
2162 "partition names.  Working scripts and the recipe (example) scripts that we "
2163 "make available over the internet could fail if the naming scheme changes."
2164 msgstr ""
2165
2166 #. type: textblock
2167 #: ../src/guestfs.pod:1039
2168 msgid ""
2169 "Therefore libguestfs defines C</dev/sd*> as the I<standard naming scheme>.  "
2170 "Internally C</dev/sd*> names are translated, if necessary, to other names as "
2171 "required.  For example, under RHEL 5 which uses the C</dev/hd*> scheme, any "
2172 "device parameter C</dev/sda2> is translated to C</dev/hda2> transparently."
2173 msgstr ""
2174
2175 #. type: textblock
2176 #: ../src/guestfs.pod:1045
2177 msgid ""
2178 "Note that this I<only> applies to parameters.  The L</guestfs_list_devices>, "
2179 "L</guestfs_list_partitions> and similar calls return the true names of the "
2180 "devices and partitions as known to the appliance."
2181 msgstr ""
2182
2183 #. type: =head3
2184 #: ../src/guestfs.pod:1050
2185 msgid "ALGORITHM FOR BLOCK DEVICE NAME TRANSLATION"
2186 msgstr ""
2187
2188 #. type: textblock
2189 #: ../src/guestfs.pod:1052
2190 msgid ""
2191 "Usually this translation is transparent.  However in some (very rare)  cases "
2192 "you may need to know the exact algorithm.  Such cases include where you use "
2193 "L</guestfs_config> to add a mixture of virtio and IDE devices to the qemu-"
2194 "based appliance, so have a mixture of C</dev/sd*> and C</dev/vd*> devices."
2195 msgstr ""
2196
2197 #. type: textblock
2198 #: ../src/guestfs.pod:1058
2199 msgid ""
2200 "The algorithm is applied only to I<parameters> which are known to be either "
2201 "device or partition names.  Return values from functions such as L</"
2202 "guestfs_list_devices> are never changed."
2203 msgstr ""
2204
2205 #. type: textblock
2206 #: ../src/guestfs.pod:1066
2207 msgid "Is the string a parameter which is a device or partition name?"
2208 msgstr ""
2209
2210 #. type: textblock
2211 #: ../src/guestfs.pod:1070
2212 msgid "Does the string begin with C</dev/sd>?"
2213 msgstr ""
2214
2215 #. type: textblock
2216 #: ../src/guestfs.pod:1074
2217 msgid ""
2218 "Does the named device exist? If so, we use that device.  However if I<not> "
2219 "then we continue with this algorithm."
2220 msgstr ""
2221
2222 #. type: textblock
2223 #: ../src/guestfs.pod:1079
2224 msgid "Replace initial C</dev/sd> string with C</dev/hd>."
2225 msgstr ""
2226
2227 #. type: textblock
2228 #: ../src/guestfs.pod:1081
2229 msgid "For example, change C</dev/sda2> to C</dev/hda2>."
2230 msgstr ""
2231
2232 #. type: textblock
2233 #: ../src/guestfs.pod:1083
2234 msgid "If that named device exists, use it.  If not, continue."
2235 msgstr ""
2236
2237 #. type: textblock
2238 #: ../src/guestfs.pod:1087
2239 msgid "Replace initial C</dev/sd> string with C</dev/vd>."
2240 msgstr ""
2241
2242 #. type: textblock
2243 #: ../src/guestfs.pod:1089
2244 msgid "If that named device exists, use it.  If not, return an error."
2245 msgstr ""
2246
2247 #. type: =head3
2248 #: ../src/guestfs.pod:1093
2249 msgid "PORTABILITY CONCERNS WITH BLOCK DEVICE NAMING"
2250 msgstr ""
2251
2252 #. type: textblock
2253 #: ../src/guestfs.pod:1095
2254 msgid ""
2255 "Although the standard naming scheme and automatic translation is useful for "
2256 "simple programs and guestfish scripts, for larger programs it is best not to "
2257 "rely on this mechanism."
2258 msgstr ""
2259
2260 #. type: textblock
2261 #: ../src/guestfs.pod:1099
2262 msgid ""
2263 "Where possible for maximum future portability programs using libguestfs "
2264 "should use these future-proof techniques:"
2265 msgstr ""
2266
2267 #. type: textblock
2268 #: ../src/guestfs.pod:1106
2269 msgid ""
2270 "Use L</guestfs_list_devices> or L</guestfs_list_partitions> to list actual "
2271 "device names, and then use those names directly."
2272 msgstr ""
2273
2274 #. type: textblock
2275 #: ../src/guestfs.pod:1109
2276 msgid ""
2277 "Since those device names exist by definition, they will never be translated."
2278 msgstr ""
2279
2280 #. type: textblock
2281 #: ../src/guestfs.pod:1114
2282 msgid ""
2283 "Use higher level ways to identify filesystems, such as LVM names, UUIDs and "
2284 "filesystem labels."
2285 msgstr ""
2286
2287 #. type: =head1
2288 #: ../src/guestfs.pod:1119
2289 msgid "SECURITY"
2290 msgstr "БЕЗПЕКА"
2291
2292 #. type: textblock
2293 #: ../src/guestfs.pod:1121
2294 msgid ""
2295 "This section discusses security implications of using libguestfs, "
2296 "particularly with untrusted or malicious guests or disk images."
2297 msgstr ""
2298
2299 #. type: =head2
2300 #: ../src/guestfs.pod:1124
2301 msgid "GENERAL SECURITY CONSIDERATIONS"
2302 msgstr ""
2303
2304 #. type: textblock
2305 #: ../src/guestfs.pod:1126
2306 msgid ""
2307 "Be careful with any files or data that you download from a guest (by "
2308 "\"download\" we mean not just the L</guestfs_download> command but any "
2309 "command that reads files, filenames, directories or anything else from a "
2310 "disk image).  An attacker could manipulate the data to fool your program "
2311 "into doing the wrong thing.  Consider cases such as:"
2312 msgstr ""
2313
2314 #. type: textblock
2315 #: ../src/guestfs.pod:1136
2316 msgid "the data (file etc) not being present"
2317 msgstr ""
2318
2319 #. type: textblock
2320 #: ../src/guestfs.pod:1140
2321 msgid "being present but empty"
2322 msgstr ""
2323
2324 #. type: textblock
2325 #: ../src/guestfs.pod:1144
2326 msgid "being much larger than normal"
2327 msgstr ""
2328
2329 #. type: textblock
2330 #: ../src/guestfs.pod:1148
2331 msgid "containing arbitrary 8 bit data"
2332 msgstr ""
2333
2334 #. type: textblock
2335 #: ../src/guestfs.pod:1152
2336 msgid "being in an unexpected character encoding"
2337 msgstr ""
2338
2339 #. type: textblock
2340 #: ../src/guestfs.pod:1156
2341 msgid "containing homoglyphs."
2342 msgstr ""
2343
2344 #. type: =head2
2345 #: ../src/guestfs.pod:1160
2346 msgid "SECURITY OF MOUNTING FILESYSTEMS"
2347 msgstr ""
2348
2349 #. type: textblock
2350 #: ../src/guestfs.pod:1162
2351 msgid ""
2352 "When you mount a filesystem under Linux, mistakes in the kernel filesystem "
2353 "(VFS) module can sometimes be escalated into exploits by deliberately "
2354 "creating a malicious, malformed filesystem.  These exploits are very severe "
2355 "for two reasons.  Firstly there are very many filesystem drivers in the "
2356 "kernel, and many of them are infrequently used and not much developer "
2357 "attention has been paid to the code.  Linux userspace helps potential "
2358 "crackers by detecting the filesystem type and automatically choosing the "
2359 "right VFS driver, even if that filesystem type is obscure or unexpected for "
2360 "the administrator.  Secondly, a kernel-level exploit is like a local root "
2361 "exploit (worse in some ways), giving immediate and total access to the "
2362 "system right down to the hardware level."
2363 msgstr ""
2364
2365 #. type: textblock
2366 #: ../src/guestfs.pod:1175
2367 msgid ""
2368 "That explains why you should never mount a filesystem from an untrusted "
2369 "guest on your host kernel.  How about libguestfs? We run a Linux kernel "
2370 "inside a qemu virtual machine, usually running as a non-root user.  The "
2371 "attacker would need to write a filesystem which first exploited the kernel, "
2372 "and then exploited either qemu virtualization (eg. a faulty qemu driver) or "
2373 "the libguestfs protocol, and finally to be as serious as the host kernel "
2374 "exploit it would need to escalate its privileges to root.  This multi-step "
2375 "escalation, performed by a static piece of data, is thought to be extremely "
2376 "hard to do, although we never say 'never' about security issues."
2377 msgstr ""
2378
2379 #. type: textblock
2380 #: ../src/guestfs.pod:1186
2381 msgid ""
2382 "In any case callers can reduce the attack surface by forcing the filesystem "
2383 "type when mounting (use L</guestfs_mount_vfs>)."
2384 msgstr ""
2385
2386 #. type: =head2
2387 #: ../src/guestfs.pod:1189
2388 msgid "PROTOCOL SECURITY"
2389 msgstr ""
2390
2391 #. type: textblock
2392 #: ../src/guestfs.pod:1191
2393 msgid ""
2394 "The protocol is designed to be secure, being based on RFC 4506 (XDR)  with a "
2395 "defined upper message size.  However a program that uses libguestfs must "
2396 "also take care - for example you can write a program that downloads a binary "
2397 "from a disk image and executes it locally, and no amount of protocol "
2398 "security will save you from the consequences."
2399 msgstr ""
2400
2401 #. type: =head2
2402 #: ../src/guestfs.pod:1197
2403 msgid "INSPECTION SECURITY"
2404 msgstr ""
2405
2406 #. type: textblock
2407 #: ../src/guestfs.pod:1199
2408 msgid ""
2409 "Parts of the inspection API (see L</INSPECTION>) return untrusted strings "
2410 "directly from the guest, and these could contain any 8 bit data.  Callers "
2411 "should be careful to escape these before printing them to a structured file "
2412 "(for example, use HTML escaping if creating a web page)."
2413 msgstr ""
2414
2415 #. type: textblock
2416 #: ../src/guestfs.pod:1205
2417 msgid ""
2418 "Guest configuration may be altered in unusual ways by the administrator of "
2419 "the virtual machine, and may not reflect reality (particularly for untrusted "
2420 "or actively malicious guests).  For example we parse the hostname from "
2421 "configuration files like C</etc/sysconfig/network> that we find in the "
2422 "guest, but the guest administrator can easily manipulate these files to "
2423 "provide the wrong hostname."
2424 msgstr ""
2425
2426 #. type: textblock
2427 #: ../src/guestfs.pod:1213
2428 msgid ""
2429 "The inspection API parses guest configuration using two external libraries: "
2430 "Augeas (Linux configuration) and hivex (Windows Registry).  Both are "
2431 "designed to be robust in the face of malicious data, although denial of "
2432 "service attacks are still possible, for example with oversized configuration "
2433 "files."
2434 msgstr ""
2435
2436 #. type: =head2
2437 #: ../src/guestfs.pod:1219
2438 msgid "RUNNING UNTRUSTED GUEST COMMANDS"
2439 msgstr ""
2440
2441 #. type: textblock
2442 #: ../src/guestfs.pod:1221
2443 msgid ""
2444 "Be very cautious about running commands from the guest.  By running a "
2445 "command in the guest, you are giving CPU time to a binary that you do not "
2446 "control, under the same user account as the library, albeit wrapped in qemu "
2447 "virtualization.  More information and alternatives can be found in the "
2448 "section L</RUNNING COMMANDS>."
2449 msgstr ""
2450
2451 #. type: =head2
2452 #: ../src/guestfs.pod:1227
2453 msgid "CVE-2010-3851"
2454 msgstr "CVE-2010-3851"
2455
2456 #. type: textblock
2457 #: ../src/guestfs.pod:1229
2458 msgid "https://bugzilla.redhat.com/642934"
2459 msgstr "https://bugzilla.redhat.com/642934"
2460
2461 #. type: textblock
2462 #: ../src/guestfs.pod:1231
2463 msgid ""
2464 "This security bug concerns the automatic disk format detection that qemu "
2465 "does on disk images."
2466 msgstr ""
2467
2468 #. type: textblock
2469 #: ../src/guestfs.pod:1234
2470 msgid ""
2471 "A raw disk image is just the raw bytes, there is no header.  Other disk "
2472 "images like qcow2 contain a special header.  Qemu deals with this by looking "
2473 "for one of the known headers, and if none is found then assuming the disk "
2474 "image must be raw."
2475 msgstr ""
2476
2477 #. type: textblock
2478 #: ../src/guestfs.pod:1239
2479 msgid ""
2480 "This allows a guest which has been given a raw disk image to write some "
2481 "other header.  At next boot (or when the disk image is accessed by "
2482 "libguestfs) qemu would do autodetection and think the disk image format was, "
2483 "say, qcow2 based on the header written by the guest."
2484 msgstr ""
2485
2486 #. type: textblock
2487 #: ../src/guestfs.pod:1244
2488 msgid ""
2489 "This in itself would not be a problem, but qcow2 offers many features, one "
2490 "of which is to allow a disk image to refer to another image (called the "
2491 "\"backing disk\").  It does this by placing the path to the backing disk "
2492 "into the qcow2 header.  This path is not validated and could point to any "
2493 "host file (eg. \"/etc/passwd\").  The backing disk is then exposed through "
2494 "\"holes\" in the qcow2 disk image, which of course is completely under the "
2495 "control of the attacker."
2496 msgstr ""
2497
2498 #. type: textblock
2499 #: ../src/guestfs.pod:1252
2500 msgid ""
2501 "In libguestfs this is rather hard to exploit except under two circumstances:"
2502 msgstr ""
2503
2504 #. type: textblock
2505 #: ../src/guestfs.pod:1259
2506 msgid "You have enabled the network or have opened the disk in write mode."
2507 msgstr ""
2508
2509 #. type: textblock
2510 #: ../src/guestfs.pod:1263
2511 msgid ""
2512 "You are also running untrusted code from the guest (see L</RUNNING "
2513 "COMMANDS>)."
2514 msgstr ""
2515
2516 #. type: textblock
2517 #: ../src/guestfs.pod:1268
2518 msgid ""
2519 "The way to avoid this is to specify the expected disk format when adding "
2520 "disks (the optional C<format> option to L</guestfs_add_drive_opts>).  You "
2521 "should always do this if the disk is raw format, and it's a good idea for "
2522 "other cases too."
2523 msgstr ""
2524
2525 #. type: textblock
2526 #: ../src/guestfs.pod:1273
2527 msgid ""
2528 "For disks added from libvirt using calls like L</guestfs_add_domain>, the "
2529 "format is fetched from libvirt and passed through."
2530 msgstr ""
2531
2532 #. type: textblock
2533 #: ../src/guestfs.pod:1276
2534 msgid ""
2535 "For libguestfs tools, use the I<--format> command line parameter as "
2536 "appropriate."
2537 msgstr ""
2538
2539 #. type: =head1
2540 #: ../src/guestfs.pod:1279
2541 msgid "CONNECTION MANAGEMENT"
2542 msgstr ""
2543
2544 #. type: =head2
2545 #: ../src/guestfs.pod:1281
2546 msgid "guestfs_h *"
2547 msgstr ""
2548
2549 #. type: textblock
2550 #: ../src/guestfs.pod:1283
2551 msgid ""
2552 "C<guestfs_h> is the opaque type representing a connection handle.  Create a "
2553 "handle by calling L</guestfs_create>.  Call L</guestfs_close> to free the "
2554 "handle and release all resources used."
2555 msgstr ""
2556
2557 #. type: textblock
2558 #: ../src/guestfs.pod:1287
2559 msgid ""
2560 "For information on using multiple handles and threads, see the section L</"
2561 "MULTIPLE HANDLES AND MULTIPLE THREADS> above."
2562 msgstr ""
2563
2564 #. type: =head2
2565 #: ../src/guestfs.pod:1290
2566 msgid "guestfs_create"
2567 msgstr ""
2568
2569 #. type: verbatim
2570 #: ../src/guestfs.pod:1292
2571 #, no-wrap
2572 msgid ""
2573 " guestfs_h *guestfs_create (void);\n"
2574 "\n"
2575 msgstr ""
2576
2577 #. type: textblock
2578 #: ../src/guestfs.pod:1294
2579 msgid "Create a connection handle."
2580 msgstr ""
2581
2582 #. type: textblock
2583 #: ../src/guestfs.pod:1296
2584 msgid ""
2585 "On success this returns a non-NULL pointer to a handle.  On error it returns "
2586 "NULL."
2587 msgstr ""
2588
2589 #. type: textblock
2590 #: ../src/guestfs.pod:1299
2591 msgid ""
2592 "You have to \"configure\" the handle after creating it.  This includes "
2593 "calling L</guestfs_add_drive_opts> (or one of the equivalent calls) on the "
2594 "handle at least once."
2595 msgstr ""
2596
2597 #. type: textblock
2598 #: ../src/guestfs.pod:1303
2599 msgid "After configuring the handle, you have to call L</guestfs_launch>."
2600 msgstr ""
2601
2602 #. type: textblock
2603 #: ../src/guestfs.pod:1305
2604 msgid ""
2605 "You may also want to configure error handling for the handle.  See the L</"
2606 "ERROR HANDLING> section below."
2607 msgstr ""
2608
2609 #. type: =head2
2610 #: ../src/guestfs.pod:1308
2611 msgid "guestfs_close"
2612 msgstr ""
2613
2614 #. type: verbatim
2615 #: ../src/guestfs.pod:1310
2616 #, no-wrap
2617 msgid ""
2618 " void guestfs_close (guestfs_h *g);\n"
2619 "\n"
2620 msgstr ""
2621
2622 #. type: textblock
2623 #: ../src/guestfs.pod:1312
2624 msgid "This closes the connection handle and frees up all resources used."
2625 msgstr ""
2626
2627 #. type: textblock
2628 #: ../src/guestfs.pod:1314
2629 msgid ""
2630 "If autosync was set on the handle and the handle was launched, then this "
2631 "implicitly calls various functions to unmount filesystems and sync the "
2632 "disk.  See L</guestfs_set_autosync> for more details."
2633 msgstr ""
2634
2635 #. type: textblock
2636 #: ../src/guestfs.pod:1318
2637 msgid "If a close callback was set on the handle, then it is called."
2638 msgstr ""
2639
2640 #. type: =head1
2641 #: ../src/guestfs.pod:1320
2642 msgid "ERROR HANDLING"
2643 msgstr "ОБРОБКА ПОМИЛОК"
2644
2645 #. type: textblock
2646 #: ../src/guestfs.pod:1322
2647 msgid ""
2648 "API functions can return errors.  For example, almost all functions that "
2649 "return C<int> will return C<-1> to indicate an error."
2650 msgstr ""
2651
2652 #. type: textblock
2653 #: ../src/guestfs.pod:1325
2654 msgid ""
2655 "Additional information is available for errors: an error message string and "
2656 "optionally an error number (errno) if the thing that failed was a system "
2657 "call."
2658 msgstr ""
2659
2660 #. type: textblock
2661 #: ../src/guestfs.pod:1329
2662 msgid ""
2663 "You can get at the additional information about the last error on the handle "
2664 "by calling L</guestfs_last_error>, L</guestfs_last_errno>, and/or by setting "
2665 "up an error handler with L</guestfs_set_error_handler>."
2666 msgstr ""
2667
2668 #. type: textblock
2669 #: ../src/guestfs.pod:1334
2670 msgid ""
2671 "When the handle is created, a default error handler is installed which "
2672 "prints the error message string to C<stderr>.  For small short-running "
2673 "command line programs it is sufficient to do:"
2674 msgstr ""
2675
2676 #. type: verbatim
2677 #: ../src/guestfs.pod:1338
2678 #, no-wrap
2679 msgid ""
2680 " if (guestfs_launch (g) == -1)\n"
2681 "   exit (EXIT_FAILURE);\n"
2682 "\n"
2683 msgstr ""
2684
2685 #. type: textblock
2686 #: ../src/guestfs.pod:1341
2687 msgid ""
2688 "since the default error handler will ensure that an error message has been "
2689 "printed to C<stderr> before the program exits."
2690 msgstr ""
2691
2692 #. type: textblock
2693 #: ../src/guestfs.pod:1344
2694 msgid ""
2695 "For other programs the caller will almost certainly want to install an "
2696 "alternate error handler or do error handling in-line like this:"
2697 msgstr ""
2698
2699 #. type: verbatim
2700 #: ../src/guestfs.pod:1347
2701 #, no-wrap
2702 msgid ""
2703 " g = guestfs_create ();\n"
2704 " \n"
2705 msgstr ""
2706
2707 #. type: verbatim
2708 #: ../src/guestfs.pod:1349
2709 #, no-wrap
2710 msgid ""
2711 " /* This disables the default behaviour of printing errors\n"
2712 "    on stderr. */\n"
2713 " guestfs_set_error_handler (g, NULL, NULL);\n"
2714 " \n"
2715 msgstr ""
2716
2717 #. type: verbatim
2718 #: ../src/guestfs.pod:1353
2719 #, no-wrap
2720 msgid ""
2721 " if (guestfs_launch (g) == -1) {\n"
2722 "   /* Examine the error message and print it etc. */\n"
2723 "   char *msg = guestfs_last_error (g);\n"
2724 "   int errnum = guestfs_last_errno (g);\n"
2725 "   fprintf (stderr, \"%s\\n\", msg);\n"
2726 "   /* ... */\n"
2727 "  }\n"
2728 "\n"
2729 msgstr ""
2730
2731 #. type: textblock
2732 #: ../src/guestfs.pod:1361
2733 msgid ""
2734 "Out of memory errors are handled differently.  The default action is to call "
2735 "L<abort(3)>.  If this is undesirable, then you can set a handler using L</"
2736 "guestfs_set_out_of_memory_handler>."
2737 msgstr ""
2738
2739 #. type: textblock
2740 #: ../src/guestfs.pod:1365
2741 msgid ""
2742 "L</guestfs_create> returns C<NULL> if the handle cannot be created, and "
2743 "because there is no handle if this happens there is no way to get additional "
2744 "error information.  However L</guestfs_create> is supposed to be a "
2745 "lightweight operation which can only fail because of insufficient memory (it "
2746 "returns NULL in this case)."
2747 msgstr ""
2748
2749 #. type: =head2
2750 #: ../src/guestfs.pod:1371
2751 msgid "guestfs_last_error"
2752 msgstr ""
2753
2754 #. type: verbatim
2755 #: ../src/guestfs.pod:1373
2756 #, no-wrap
2757 msgid ""
2758 " const char *guestfs_last_error (guestfs_h *g);\n"
2759 "\n"
2760 msgstr ""
2761
2762 #. type: textblock
2763 #: ../src/guestfs.pod:1375
2764 msgid ""
2765 "This returns the last error message that happened on C<g>.  If there has not "
2766 "been an error since the handle was created, then this returns C<NULL>."
2767 msgstr ""
2768
2769 #. type: textblock
2770 #: ../src/guestfs.pod:1379
2771 msgid ""
2772 "The lifetime of the returned string is until the next error occurs, or L</"
2773 "guestfs_close> is called."
2774 msgstr ""
2775
2776 #. type: =head2
2777 #: ../src/guestfs.pod:1382
2778 msgid "guestfs_last_errno"
2779 msgstr ""
2780
2781 #. type: verbatim
2782 #: ../src/guestfs.pod:1384
2783 #, no-wrap
2784 msgid ""
2785 " int guestfs_last_errno (guestfs_h *g);\n"
2786 "\n"
2787 msgstr ""
2788
2789 #. type: textblock
2790 #: ../src/guestfs.pod:1386
2791 msgid "This returns the last error number (errno) that happened on C<g>."
2792 msgstr ""
2793
2794 #. type: textblock
2795 #: ../src/guestfs.pod:1388
2796 msgid "If successful, an errno integer not equal to zero is returned."
2797 msgstr ""
2798
2799 #. type: textblock
2800 #: ../src/guestfs.pod:1390
2801 msgid ""
2802 "If no error, this returns 0.  This call can return 0 in three situations:"
2803 msgstr ""
2804
2805 #. type: textblock
2806 #: ../src/guestfs.pod:1397
2807 msgid "There has not been any error on the handle."
2808 msgstr ""
2809
2810 #. type: textblock
2811 #: ../src/guestfs.pod:1401
2812 msgid ""
2813 "There has been an error but the errno was meaningless.  This corresponds to "
2814 "the case where the error did not come from a failed system call, but for "
2815 "some other reason."
2816 msgstr ""
2817
2818 #. type: textblock
2819 #: ../src/guestfs.pod:1407
2820 msgid ""
2821 "There was an error from a failed system call, but for some reason the errno "
2822 "was not captured and returned.  This usually indicates a bug in libguestfs."
2823 msgstr ""
2824
2825 #. type: textblock
2826 #: ../src/guestfs.pod:1413
2827 msgid ""
2828 "Libguestfs tries to convert the errno from inside the applicance into a "
2829 "corresponding errno for the caller (not entirely trivial: the appliance "
2830 "might be running a completely different operating system from the library "
2831 "and error numbers are not standardized across Un*xen).  If this could not be "
2832 "done, then the error is translated to C<EINVAL>.  In practice this should "
2833 "only happen in very rare circumstances."
2834 msgstr ""
2835
2836 #. type: =head2
2837 #: ../src/guestfs.pod:1421
2838 msgid "guestfs_set_error_handler"
2839 msgstr ""
2840
2841 #. type: verbatim
2842 #: ../src/guestfs.pod:1423
2843 #, no-wrap
2844 msgid ""
2845 " typedef void (*guestfs_error_handler_cb) (guestfs_h *g,\n"
2846 "                                           void *opaque,\n"
2847 "                                           const char *msg);\n"
2848 " void guestfs_set_error_handler (guestfs_h *g,\n"
2849 "                                 guestfs_error_handler_cb cb,\n"
2850 "                                 void *opaque);\n"
2851 "\n"
2852 msgstr ""
2853
2854 #. type: textblock
2855 #: ../src/guestfs.pod:1430
2856 msgid ""
2857 "The callback C<cb> will be called if there is an error.  The parameters "
2858 "passed to the callback are an opaque data pointer and the error message "
2859 "string."
2860 msgstr ""
2861
2862 #. type: textblock
2863 #: ../src/guestfs.pod:1434
2864 msgid ""
2865 "C<errno> is not passed to the callback.  To get that the callback must call "
2866 "L</guestfs_last_errno>."
2867 msgstr ""
2868
2869 #. type: textblock
2870 #: ../src/guestfs.pod:1437
2871 msgid ""
2872 "Note that the message string C<msg> is freed as soon as the callback "
2873 "function returns, so if you want to stash it somewhere you must make your "
2874 "own copy."
2875 msgstr ""
2876
2877 #. type: textblock
2878 #: ../src/guestfs.pod:1441
2879 msgid "The default handler prints messages on C<stderr>."
2880 msgstr ""
2881
2882 #. type: textblock
2883 #: ../src/guestfs.pod:1443
2884 msgid "If you set C<cb> to C<NULL> then I<no> handler is called."
2885 msgstr ""
2886
2887 #. type: =head2
2888 #: ../src/guestfs.pod:1445
2889 msgid "guestfs_get_error_handler"
2890 msgstr ""
2891
2892 #. type: verbatim
2893 #: ../src/guestfs.pod:1447
2894 #, no-wrap
2895 msgid ""
2896 " guestfs_error_handler_cb guestfs_get_error_handler (guestfs_h *g,\n"
2897 "                                                     void **opaque_rtn);\n"
2898 "\n"
2899 msgstr ""
2900
2901 #. type: textblock
2902 #: ../src/guestfs.pod:1450
2903 msgid "Returns the current error handler callback."
2904 msgstr ""
2905
2906 #. type: =head2
2907 #: ../src/guestfs.pod:1452
2908 msgid "guestfs_set_out_of_memory_handler"
2909 msgstr ""
2910
2911 #. type: verbatim
2912 #: ../src/guestfs.pod:1454
2913 #, no-wrap
2914 msgid ""
2915 " typedef void (*guestfs_abort_cb) (void);\n"
2916 " int guestfs_set_out_of_memory_handler (guestfs_h *g,\n"
2917 "                                        guestfs_abort_cb);\n"
2918 "\n"
2919 msgstr ""
2920
2921 #. type: textblock
2922 #: ../src/guestfs.pod:1458
2923 msgid ""
2924 "The callback C<cb> will be called if there is an out of memory situation.  "
2925 "I<Note this callback must not return>."
2926 msgstr ""
2927
2928 #. type: textblock
2929 #: ../src/guestfs.pod:1461
2930 msgid "The default is to call L<abort(3)>."
2931 msgstr ""
2932
2933 #. type: textblock
2934 #: ../src/guestfs.pod:1463
2935 msgid ""
2936 "You cannot set C<cb> to C<NULL>.  You can't ignore out of memory situations."
2937 msgstr ""
2938
2939 #. type: =head2
2940 #: ../src/guestfs.pod:1466
2941 msgid "guestfs_get_out_of_memory_handler"
2942 msgstr ""
2943
2944 #. type: verbatim
2945 #: ../src/guestfs.pod:1468
2946 #, no-wrap
2947 msgid ""
2948 " guestfs_abort_fn guestfs_get_out_of_memory_handler (guestfs_h *g);\n"
2949 "\n"
2950 msgstr ""
2951
2952 #. type: textblock
2953 #: ../src/guestfs.pod:1470
2954 msgid "This returns the current out of memory handler."
2955 msgstr ""
2956
2957 #. type: =head1
2958 #: ../src/guestfs.pod:1472
2959 msgid "API CALLS"
2960 msgstr ""
2961
2962 #. type: textblock
2963 #: ../src/guestfs.pod:1474 ../fish/guestfish.pod:1010
2964 msgid "@ACTIONS@"
2965 msgstr "@ACTIONS@"
2966
2967 #. type: =head1
2968 #: ../src/guestfs.pod:1476
2969 msgid "STRUCTURES"
2970 msgstr "СТРУКТУРИ"
2971
2972 #. type: textblock
2973 #: ../src/guestfs.pod:1478
2974 msgid "@STRUCTS@"
2975 msgstr "@STRUCTS@"
2976
2977 #. type: =head1
2978 #: ../src/guestfs.pod:1480
2979 msgid "AVAILABILITY"
2980 msgstr ""
2981
2982 #. type: =head2
2983 #: ../src/guestfs.pod:1482
2984 msgid "GROUPS OF FUNCTIONALITY IN THE APPLIANCE"
2985 msgstr ""
2986
2987 #. type: textblock
2988 #: ../src/guestfs.pod:1484
2989 msgid ""
2990 "Using L</guestfs_available> you can test availability of the following "
2991 "groups of functions.  This test queries the appliance to see if the "
2992 "appliance you are currently using supports the functionality."
2993 msgstr ""
2994
2995 #. type: textblock
2996 #: ../src/guestfs.pod:1489
2997 msgid "@AVAILABILITY@"
2998 msgstr ""
2999
3000 #. type: =head2
3001 #: ../src/guestfs.pod:1491
3002 msgid "GUESTFISH supported COMMAND"
3003 msgstr ""
3004
3005 #. type: textblock
3006 #: ../src/guestfs.pod:1493
3007 msgid ""
3008 "In L<guestfish(3)> there is a handy interactive command C<supported> which "
3009 "prints out the available groups and whether they are supported by this build "
3010 "of libguestfs.  Note however that you have to do C<run> first."
3011 msgstr ""
3012
3013 #. type: =head2
3014 #: ../src/guestfs.pod:1498
3015 msgid "SINGLE CALLS AT COMPILE TIME"
3016 msgstr ""
3017
3018 #. type: textblock
3019 #: ../src/guestfs.pod:1500
3020 msgid ""
3021 "Since version 1.5.8, C<E<lt>guestfs.hE<gt>> defines symbols for each C API "
3022 "function, such as:"
3023 msgstr ""
3024
3025 #. type: verbatim
3026 #: ../src/guestfs.pod:1503
3027 #, no-wrap
3028 msgid ""
3029 " #define LIBGUESTFS_HAVE_DD 1\n"
3030 "\n"
3031 msgstr ""
3032
3033 #. type: textblock
3034 #: ../src/guestfs.pod:1505
3035 msgid "if L</guestfs_dd> is available."
3036 msgstr ""
3037
3038 #. type: textblock
3039 #: ../src/guestfs.pod:1507
3040 msgid ""
3041 "Before version 1.5.8, if you needed to test whether a single libguestfs "
3042 "function is available at compile time, we recommended using build tools such "
3043 "as autoconf or cmake.  For example in autotools you could use:"
3044 msgstr ""
3045
3046 #. type: verbatim
3047 #: ../src/guestfs.pod:1512
3048 #, no-wrap
3049 msgid ""
3050 " AC_CHECK_LIB([guestfs],[guestfs_create])\n"
3051 " AC_CHECK_FUNCS([guestfs_dd])\n"
3052 "\n"
3053 msgstr ""
3054
3055 #. type: textblock
3056 #: ../src/guestfs.pod:1515
3057 msgid ""
3058 "which would result in C<HAVE_GUESTFS_DD> being either defined or not defined "
3059 "in your program."
3060 msgstr ""
3061
3062 #. type: =head2
3063 #: ../src/guestfs.pod:1518
3064 msgid "SINGLE CALLS AT RUN TIME"
3065 msgstr ""
3066
3067 #. type: textblock
3068 #: ../src/guestfs.pod:1520
3069 msgid ""
3070 "Testing at compile time doesn't guarantee that a function really exists in "
3071 "the library.  The reason is that you might be dynamically linked against a "
3072 "previous I<libguestfs.so> (dynamic library)  which doesn't have the call.  "
3073 "This situation unfortunately results in a segmentation fault, which is a "
3074 "shortcoming of the C dynamic linking system itself."
3075 msgstr ""
3076
3077 #. type: textblock
3078 #: ../src/guestfs.pod:1527
3079 msgid ""
3080 "You can use L<dlopen(3)> to test if a function is available at run time, as "
3081 "in this example program (note that you still need the compile time check as "
3082 "well):"
3083 msgstr ""
3084
3085 #. type: verbatim
3086 #: ../src/guestfs.pod:1531
3087 #, no-wrap
3088 msgid ""
3089 " #include <stdio.h>\n"
3090 " #include <stdlib.h>\n"
3091 " #include <unistd.h>\n"
3092 " #include <dlfcn.h>\n"
3093 " #include <guestfs.h>\n"
3094 " \n"
3095 msgstr ""
3096
3097 #. type: verbatim
3098 #: ../src/guestfs.pod:1537
3099 #, no-wrap
3100 msgid ""
3101 " main ()\n"
3102 " {\n"
3103 " #ifdef LIBGUESTFS_HAVE_DD\n"
3104 "   void *dl;\n"
3105 "   int has_function;\n"
3106 " \n"
3107 msgstr ""
3108
3109 #. type: verbatim
3110 #: ../src/guestfs.pod:1543
3111 #, no-wrap
3112 msgid ""
3113 "   /* Test if the function guestfs_dd is really available. */\n"
3114 "   dl = dlopen (NULL, RTLD_LAZY);\n"
3115 "   if (!dl) {\n"
3116 "     fprintf (stderr, \"dlopen: %s\\n\", dlerror ());\n"
3117 "     exit (EXIT_FAILURE);\n"
3118 "   }\n"
3119 "   has_function = dlsym (dl, \"guestfs_dd\") != NULL;\n"
3120 "   dlclose (dl);\n"
3121 " \n"
3122 msgstr ""
3123
3124 #. type: verbatim
3125 #: ../src/guestfs.pod:1552
3126 #, no-wrap
3127 msgid ""
3128 "   if (!has_function)\n"
3129 "     printf (\"this libguestfs.so does NOT have guestfs_dd function\\n\");\n"
3130 "   else {\n"
3131 "     printf (\"this libguestfs.so has guestfs_dd function\\n\");\n"
3132 "     /* Now it's safe to call\n"
3133 "     guestfs_dd (g, \"foo\", \"bar\");\n"
3134 "     */\n"
3135 "   }\n"
3136 " #else\n"
3137 "   printf (\"guestfs_dd function was not found at compile time\\n\");\n"
3138 " #endif\n"
3139 "  }\n"
3140 "\n"
3141 msgstr ""
3142
3143 #. type: textblock
3144 #: ../src/guestfs.pod:1565
3145 msgid ""
3146 "You may think the above is an awful lot of hassle, and it is.  There are "
3147 "other ways outside of the C linking system to ensure that this kind of "
3148 "incompatibility never arises, such as using package versioning:"
3149 msgstr ""
3150
3151 #. type: verbatim
3152 #: ../src/guestfs.pod:1570
3153 #, no-wrap
3154 msgid ""
3155 " Requires: libguestfs >= 1.0.80\n"
3156 "\n"
3157 msgstr ""
3158
3159 #. type: =head1
3160 #: ../src/guestfs.pod:1572
3161 msgid "CALLS WITH OPTIONAL ARGUMENTS"
3162 msgstr ""
3163
3164 #. type: textblock
3165 #: ../src/guestfs.pod:1574
3166 msgid ""
3167 "A recent feature of the API is the introduction of calls which take optional "
3168 "arguments.  In C these are declared 3 ways.  The main way is as a call which "
3169 "takes variable arguments (ie. C<...>), as in this example:"
3170 msgstr ""
3171
3172 #. type: verbatim
3173 #: ../src/guestfs.pod:1579
3174 #, no-wrap
3175 msgid ""
3176 " int guestfs_add_drive_opts (guestfs_h *g, const char *filename, ...);\n"
3177 "\n"
3178 msgstr ""
3179
3180 #. type: textblock
3181 #: ../src/guestfs.pod:1581
3182 msgid ""
3183 "Call this with a list of optional arguments, terminated by C<-1>.  So to "
3184 "call with no optional arguments specified:"
3185 msgstr ""
3186
3187 #. type: verbatim
3188 #: ../src/guestfs.pod:1584
3189 #, no-wrap
3190 msgid ""
3191 " guestfs_add_drive_opts (g, filename, -1);\n"
3192 "\n"
3193 msgstr ""
3194
3195 #. type: textblock
3196 #: ../src/guestfs.pod:1586
3197 msgid "With a single optional argument:"
3198 msgstr ""
3199
3200 #. type: verbatim
3201 #: ../src/guestfs.pod:1588
3202 #, no-wrap
3203 msgid ""
3204 " guestfs_add_drive_opts (g, filename,\n"
3205 "                         GUESTFS_ADD_DRIVE_OPTS_FORMAT, \"qcow2\",\n"
3206 "                         -1);\n"
3207 "\n"
3208 msgstr ""
3209
3210 #. type: textblock
3211 #: ../src/guestfs.pod:1592
3212 msgid "With two:"
3213 msgstr ""
3214
3215 #. type: verbatim
3216 #: ../src/guestfs.pod:1594
3217 #, no-wrap
3218 msgid ""
3219 " guestfs_add_drive_opts (g, filename,\n"
3220 "                         GUESTFS_ADD_DRIVE_OPTS_FORMAT, \"qcow2\",\n"
3221 "                         GUESTFS_ADD_DRIVE_OPTS_READONLY, 1,\n"
3222 "                         -1);\n"
3223 "\n"
3224 msgstr ""
3225
3226 #. type: textblock
3227 #: ../src/guestfs.pod:1599
3228 msgid ""
3229 "and so forth.  Don't forget the terminating C<-1> otherwise Bad Things will "
3230 "happen!"
3231 msgstr ""
3232
3233 #. type: =head2
3234 #: ../src/guestfs.pod:1602
3235 msgid "USING va_list FOR OPTIONAL ARGUMENTS"
3236 msgstr ""
3237
3238 #. type: textblock
3239 #: ../src/guestfs.pod:1604
3240 msgid ""
3241 "The second variant has the same name with the suffix C<_va>, which works the "
3242 "same way but takes a C<va_list>.  See the C manual for details.  For the "
3243 "example function, this is declared:"
3244 msgstr ""
3245
3246 #. type: verbatim
3247 #: ../src/guestfs.pod:1608
3248 #, no-wrap
3249 msgid ""
3250 " int guestfs_add_drive_opts_va (guestfs_h *g, const char *filename,\n"
3251 "                                va_list args);\n"
3252 "\n"
3253 msgstr ""
3254
3255 #. type: =head2
3256 #: ../src/guestfs.pod:1611
3257 msgid "CONSTRUCTING OPTIONAL ARGUMENTS"
3258 msgstr ""
3259
3260 #. type: textblock
3261 #: ../src/guestfs.pod:1613
3262 msgid ""
3263 "The third variant is useful where you need to construct these calls.  You "
3264 "pass in a structure where you fill in the optional fields.  The structure "
3265 "has a bitmask as the first element which you must set to indicate which "
3266 "fields you have filled in.  For our example function the structure and call "
3267 "are declared:"
3268 msgstr ""
3269
3270 #. type: verbatim
3271 #: ../src/guestfs.pod:1619
3272 #, no-wrap
3273 msgid ""
3274 " struct guestfs_add_drive_opts_argv {\n"
3275 "   uint64_t bitmask;\n"
3276 "   int readonly;\n"
3277 "   const char *format;\n"
3278 "   /* ... */\n"
3279 " };\n"
3280 " int guestfs_add_drive_opts_argv (guestfs_h *g, const char *filename,\n"
3281 "              const struct guestfs_add_drive_opts_argv *optargs);\n"
3282 "\n"
3283 msgstr ""
3284
3285 #. type: textblock
3286 #: ../src/guestfs.pod:1628
3287 msgid "You could call it like this:"
3288 msgstr ""
3289
3290 #. type: verbatim
3291 #: ../src/guestfs.pod:1630
3292 #, no-wrap
3293 msgid ""
3294 " struct guestfs_add_drive_opts_argv optargs = {\n"
3295 "   .bitmask = GUESTFS_ADD_DRIVE_OPTS_READONLY_BITMASK |\n"
3296 "              GUESTFS_ADD_DRIVE_OPTS_FORMAT_BITMASK,\n"
3297 "   .readonly = 1,\n"
3298 "   .format = \"qcow2\"\n"
3299 " };\n"
3300 " \n"
3301 msgstr ""
3302
3303 #. type: verbatim
3304 #: ../src/guestfs.pod:1637
3305 #, no-wrap
3306 msgid ""
3307 " guestfs_add_drive_opts_argv (g, filename, &optargs);\n"
3308 "\n"
3309 msgstr ""
3310
3311 #. type: textblock
3312 #: ../src/guestfs.pod:1639 ../src/guestfs-actions.pod:11
3313 #: ../src/guestfs-actions.pod:1858 ../src/guestfs-actions.pod:2785
3314 #: ../fish/guestfish-actions.pod:9 ../fish/guestfish-actions.pod:1262
3315 #: ../fish/guestfish-actions.pod:1898 ../tools/virt-win-reg.pl:704
3316 msgid "Notes:"
3317 msgstr "Нотатки:"
3318
3319 #. type: textblock
3320 #: ../src/guestfs.pod:1645
3321 msgid "The C<_BITMASK> suffix on each option name when specifying the bitmask."
3322 msgstr ""
3323
3324 #. type: textblock
3325 #: ../src/guestfs.pod:1650
3326 msgid "You do not need to fill in all fields of the structure."
3327 msgstr ""
3328
3329 #. type: textblock
3330 #: ../src/guestfs.pod:1654
3331 msgid ""
3332 "There must be a one-to-one correspondence between fields of the structure "
3333 "that are filled in, and bits set in the bitmask."
3334 msgstr ""
3335
3336 #. type: =head2
3337 #: ../src/guestfs.pod:1659
3338 msgid "OPTIONAL ARGUMENTS IN OTHER LANGUAGES"
3339 msgstr ""
3340
3341 #. type: textblock
3342 #: ../src/guestfs.pod:1661
3343 msgid ""
3344 "In other languages, optional arguments are expressed in the way that is "
3345 "natural for that language.  We refer you to the language-specific "
3346 "documentation for more details on that."
3347 msgstr ""
3348
3349 #. type: textblock
3350 #: ../src/guestfs.pod:1665
3351 msgid "For guestfish, see L<guestfish(1)/OPTIONAL ARGUMENTS>."
3352 msgstr ""
3353
3354 #. type: =head2
3355 #: ../src/guestfs.pod:1667
3356 msgid "SETTING CALLBACKS TO HANDLE EVENTS"
3357 msgstr ""
3358
3359 #. type: textblock
3360 #: ../src/guestfs.pod:1669
3361 msgid ""
3362 "B<Note:> This section documents the generic event mechanism introduced in "
3363 "libguestfs 1.10, which you should use in new code if possible.  The old "
3364 "functions C<guestfs_set_log_message_callback>, "
3365 "C<guestfs_set_subprocess_quit_callback>, "
3366 "C<guestfs_set_launch_done_callback>, C<guestfs_set_close_callback> and "
3367 "C<guestfs_set_progress_callback> are no longer documented in this manual "
3368 "page.  Because of the ABI guarantee, the old functions continue to work."
3369 msgstr ""
3370
3371 #. type: textblock
3372 #: ../src/guestfs.pod:1678
3373 msgid ""
3374 "Handles generate events when certain things happen, such as log messages "
3375 "being generated, progress messages during long-running operations, or the "
3376 "handle being closed.  The API calls described below let you register a "
3377 "callback to be called when events happen.  You can register multiple "
3378 "callbacks (for the same, different or overlapping sets of events), and "
3379 "individually remove callbacks.  If callbacks are not removed, then they "
3380 "remain in force until the handle is closed."
3381 msgstr ""
3382
3383 #. type: textblock
3384 #: ../src/guestfs.pod:1686
3385 msgid ""
3386 "In the current implementation, events are only generated synchronously: that "
3387 "means that events (and hence callbacks) can only happen while you are in the "
3388 "middle of making another libguestfs call.  The callback is called in the "
3389 "same thread."
3390 msgstr ""
3391
3392 #. type: textblock
3393 #: ../src/guestfs.pod:1691
3394 msgid ""
3395 "Events may contain a payload, usually nothing (void), an array of 64 bit "
3396 "unsigned integers, or a message buffer.  Payloads are discussed later on."
3397 msgstr ""
3398
3399 #. type: =head3
3400 #: ../src/guestfs.pod:1695
3401 msgid "CLASSES OF EVENTS"
3402 msgstr ""
3403
3404 #. type: =item
3405 #: ../src/guestfs.pod:1699
3406 msgid "GUESTFS_EVENT_CLOSE (payload type: void)"
3407 msgstr ""
3408
3409 #. type: textblock
3410 #: ../src/guestfs.pod:1702
3411 msgid ""
3412 "The callback function will be called while the handle is being closed "
3413 "(synchronously from L</guestfs_close>)."
3414 msgstr ""
3415
3416 #. type: textblock
3417 #: ../src/guestfs.pod:1705
3418 msgid ""
3419 "Note that libguestfs installs an L<atexit(3)> handler to try to clean up "
3420 "handles that are open when the program exits.  This means that this callback "
3421 "might be called indirectly from L<exit(3)>, which can cause unexpected "
3422 "problems in higher-level languages (eg. if your HLL interpreter has already "
3423 "been cleaned up by the time this is called, and if your callback then jumps "
3424 "into some HLL function)."
3425 msgstr ""
3426
3427 #. type: textblock
3428 #: ../src/guestfs.pod:1712
3429 msgid ""
3430 "If no callback is registered: the handle is closed without any callback "
3431 "being invoked."
3432 msgstr ""
3433
3434 #. type: =item
3435 #: ../src/guestfs.pod:1715
3436 msgid "GUESTFS_EVENT_SUBPROCESS_QUIT (payload type: void)"
3437 msgstr ""
3438
3439 #. type: textblock
3440 #: ../src/guestfs.pod:1718
3441 msgid ""
3442 "The callback function will be called when the child process quits, either "
3443 "asynchronously or if killed by L</guestfs_kill_subprocess>.  (This "
3444 "corresponds to a transition from any state to the CONFIG state)."
3445 msgstr ""
3446
3447 #. type: textblock
3448 #: ../src/guestfs.pod:1722 ../src/guestfs.pod:1731
3449 msgid "If no callback is registered: the event is ignored."
3450 msgstr ""
3451
3452 #. type: =item
3453 #: ../src/guestfs.pod:1724
3454 msgid "GUESTFS_EVENT_LAUNCH_DONE (payload type: void)"
3455 msgstr ""
3456
3457 #. type: textblock
3458 #: ../src/guestfs.pod:1727
3459 msgid ""
3460 "The callback function will be called when the child process becomes ready "
3461 "first time after it has been launched.  (This corresponds to a transition "
3462 "from LAUNCHING to the READY state)."
3463 msgstr ""
3464
3465 #. type: =item
3466 #: ../src/guestfs.pod:1733
3467 msgid "GUESTFS_EVENT_PROGRESS (payload type: array of 4 x uint64_t)"
3468 msgstr ""
3469
3470 #. type: textblock
3471 #: ../src/guestfs.pod:1736
3472 msgid ""
3473 "Some long-running operations can generate progress messages.  If this "
3474 "callback is registered, then it will be called each time a progress message "
3475 "is generated (usually two seconds after the operation started, and three "
3476 "times per second thereafter until it completes, although the frequency may "
3477 "change in future versions)."
3478 msgstr ""
3479
3480 #. type: textblock
3481 #: ../src/guestfs.pod:1742
3482 msgid ""
3483 "The callback receives in the payload four unsigned 64 bit numbers which are "
3484 "(in order): C<proc_nr>, C<serial>, C<position>, C<total>."
3485 msgstr ""
3486
3487 #. type: textblock
3488 #: ../src/guestfs.pod:1745
3489 msgid ""
3490 "The units of C<total> are not defined, although for some operations C<total> "
3491 "may relate in some way to the amount of data to be transferred (eg. in bytes "
3492 "or megabytes), and C<position> may be the portion which has been transferred."
3493 msgstr ""
3494
3495 #. type: textblock
3496 #: ../src/guestfs.pod:1750
3497 msgid "The only defined and stable parts of the API are:"
3498 msgstr ""
3499
3500 #. type: textblock
3501 #: ../src/guestfs.pod:1756
3502 msgid ""
3503 "The callback can display to the user some type of progress bar or indicator "
3504 "which shows the ratio of C<position>:C<total>."
3505 msgstr ""
3506
3507 #. type: textblock
3508 #: ../src/guestfs.pod:1761
3509 msgid "0 E<lt>= C<position> E<lt>= C<total>"
3510 msgstr ""
3511
3512 #. type: textblock
3513 #: ../src/guestfs.pod:1765
3514 msgid ""
3515 "If any progress notification is sent during a call, then a final progress "
3516 "notification is always sent when C<position> = C<total> (I<unless> the call "
3517 "fails with an error)."
3518 msgstr ""
3519
3520 #. type: textblock
3521 #: ../src/guestfs.pod:1769
3522 msgid ""
3523 "This is to simplify caller code, so callers can easily set the progress "
3524 "indicator to \"100%\" at the end of the operation, without requiring special "
3525 "code to detect this case."
3526 msgstr ""
3527
3528 #. type: textblock
3529 #: ../src/guestfs.pod:1775
3530 msgid ""
3531 "For some calls we are unable to estimate the progress of the call, but we "
3532 "can still generate progress messages to indicate activity.  This is known as "
3533 "\"pulse mode\", and is directly supported by certain progress bar "
3534 "implementations (eg. GtkProgressBar)."
3535 msgstr ""
3536
3537 #. type: textblock
3538 #: ../src/guestfs.pod:1780
3539 msgid ""
3540 "For these calls, zero or more progress messages are generated with "
3541 "C<position = 0> and C<total = 1>, followed by a final message with "
3542 "C<position = total = 1>."
3543 msgstr ""
3544
3545 #. type: textblock
3546 #: ../src/guestfs.pod:1784
3547 msgid ""
3548 "As noted above, if the call fails with an error then the final message may "
3549 "not be generated."
3550 msgstr ""
3551
3552 #. type: textblock
3553 #: ../src/guestfs.pod:1789
3554 msgid ""
3555 "The callback also receives the procedure number (C<proc_nr>) and serial "
3556 "number (C<serial>) of the call.  These are only useful for debugging "
3557 "protocol issues, and the callback can normally ignore them.  The callback "
3558 "may want to print these numbers in error messages or debugging messages."
3559 msgstr ""
3560
3561 #. type: textblock
3562 #: ../src/guestfs.pod:1795
3563 msgid "If no callback is registered: progress messages are discarded."
3564 msgstr ""
3565
3566 #. type: =item
3567 #: ../src/guestfs.pod:1797
3568 msgid "GUESTFS_EVENT_APPLIANCE (payload type: message buffer)"
3569 msgstr ""
3570
3571 #. type: textblock
3572 #: ../src/guestfs.pod:1800
3573 msgid ""
3574 "The callback function is called whenever a log message is generated by qemu, "
3575 "the appliance kernel, guestfsd (daemon), or utility programs."
3576 msgstr ""
3577
3578 #. type: textblock
3579 #: ../src/guestfs.pod:1803
3580 msgid ""
3581 "If the verbose flag (L</guestfs_set_verbose>) is set before launch (L</"
3582 "guestfs_launch>) then additional debug messages are generated."
3583 msgstr ""
3584
3585 #. type: textblock
3586 #: ../src/guestfs.pod:1806 ../src/guestfs.pod:1820
3587 msgid ""
3588 "If no callback is registered: the messages are discarded unless the verbose "
3589 "flag is set in which case they are sent to stderr.  You can override the "
3590 "printing of verbose messages to stderr by setting up a callback."
3591 msgstr ""
3592
3593 #. type: =item
3594 #: ../src/guestfs.pod:1811
3595 msgid "GUESTFS_EVENT_LIBRARY (payload type: message buffer)"
3596 msgstr ""
3597
3598 #. type: textblock
3599 #: ../src/guestfs.pod:1814
3600 msgid ""
3601 "The callback function is called whenever a log message is generated by the "
3602 "library part of libguestfs."
3603 msgstr ""
3604
3605 #. type: textblock
3606 #: ../src/guestfs.pod:1817
3607 msgid ""
3608 "If the verbose flag (L</guestfs_set_verbose>) is set then additional debug "
3609 "messages are generated."
3610 msgstr ""
3611
3612 #. type: =item
3613 #: ../src/guestfs.pod:1825
3614 msgid "GUESTFS_EVENT_TRACE (payload type: message buffer)"
3615 msgstr ""
3616
3617 #. type: textblock
3618 #: ../src/guestfs.pod:1828
3619 msgid ""
3620 "The callback function is called whenever a trace message is generated.  This "
3621 "only applies if the trace flag (L</guestfs_set_trace>) is set."
3622 msgstr ""
3623
3624 #. type: textblock
3625 #: ../src/guestfs.pod:1831
3626 msgid ""
3627 "If no callback is registered: the messages are sent to stderr.  You can "
3628 "override the printing of trace messages to stderr by setting up a callback."
3629 msgstr ""
3630
3631 #. type: =head3
3632 #: ../src/guestfs.pod:1837
3633 msgid "guestfs_set_event_callback"
3634 msgstr ""
3635
3636 #. type: verbatim
3637 #: ../src/guestfs.pod:1839
3638 #, no-wrap
3639 msgid ""
3640 " int guestfs_set_event_callback (guestfs_h *g,\n"
3641 "                                 guestfs_event_callback cb,\n"
3642 "                                 uint64_t event_bitmask,\n"
3643 "                                 int flags,\n"
3644 "                                 void *opaque);\n"
3645 "\n"
3646 msgstr ""
3647
3648 #. type: textblock
3649 #: ../src/guestfs.pod:1845
3650 msgid ""
3651 "This function registers a callback (C<cb>) for all event classes in the "
3652 "C<event_bitmask>."
3653 msgstr ""
3654
3655 #. type: textblock
3656 #: ../src/guestfs.pod:1848
3657 msgid ""
3658 "For example, to register for all log message events, you could call this "
3659 "function with the bitmask C<GUESTFS_EVENT_APPLIANCE|GUESTFS_EVENT_LIBRARY>.  "
3660 "To register a single callback for all possible classes of events, use "
3661 "C<GUESTFS_EVENT_ALL>."
3662 msgstr ""
3663
3664 #. type: textblock
3665 #: ../src/guestfs.pod:1854
3666 msgid "C<flags> should always be passed as 0."
3667 msgstr ""
3668
3669 #. type: textblock
3670 #: ../src/guestfs.pod:1856
3671 msgid ""
3672 "C<opaque> is an opaque pointer which is passed to the callback.  You can use "
3673 "it for any purpose."
3674 msgstr ""
3675
3676 #. type: textblock
3677 #: ../src/guestfs.pod:1859
3678 msgid ""
3679 "The return value is the event handle (an integer) which you can use to "
3680 "delete the callback (see below)."
3681 msgstr ""
3682
3683 #. type: textblock
3684 #: ../src/guestfs.pod:1862
3685 msgid ""
3686 "If there is an error, this function returns C<-1>, and sets the error in the "
3687 "handle in the usual way (see L</guestfs_last_error> etc.)"
3688 msgstr ""
3689
3690 #. type: textblock
3691 #: ../src/guestfs.pod:1865
3692 msgid ""
3693 "Callbacks remain in effect until they are deleted, or until the handle is "
3694 "closed."
3695 msgstr ""
3696
3697 #. type: textblock
3698 #: ../src/guestfs.pod:1868
3699 msgid ""
3700 "In the case where multiple callbacks are registered for a particular event "
3701 "class, all of the callbacks are called.  The order in which multiple "
3702 "callbacks are called is not defined."
3703 msgstr ""
3704
3705 #. type: =head3
3706 #: ../src/guestfs.pod:1872
3707 msgid "guestfs_delete_event_callback"
3708 msgstr ""
3709
3710 #. type: verbatim
3711 #: ../src/guestfs.pod:1874
3712 #, no-wrap
3713 msgid ""
3714 " void guestfs_delete_event_callback (guestfs_h *g, int event_handle);\n"
3715 "\n"
3716 msgstr ""
3717
3718 #. type: textblock
3719 #: ../src/guestfs.pod:1876
3720 msgid ""
3721 "Delete a callback that was previously registered.  C<event_handle> should be "
3722 "the integer that was returned by a previous call to "
3723 "C<guestfs_set_event_callback> on the same handle."
3724 msgstr ""
3725
3726 #. type: =head3
3727 #: ../src/guestfs.pod:1880
3728 msgid "guestfs_event_callback"
3729 msgstr ""
3730
3731 #. type: verbatim
3732 #: ../src/guestfs.pod:1882
3733 #, no-wrap
3734 msgid ""
3735 " typedef void (*guestfs_event_callback) (\n"
3736 "                  guestfs_h *g,\n"
3737 "                  void *opaque,\n"
3738 "                  uint64_t event,\n"
3739 "                  int event_handle,\n"
3740 "                  int flags,\n"
3741 "                  const char *buf, size_t buf_len,\n"
3742 "                  const uint64_t *array, size_t array_len);\n"
3743 "\n"
3744 msgstr ""
3745
3746 #. type: textblock
3747 #: ../src/guestfs.pod:1891
3748 msgid ""
3749 "This is the type of the event callback function that you have to provide."
3750 msgstr ""
3751
3752 #. type: textblock
3753 #: ../src/guestfs.pod:1894
3754 msgid ""
3755 "The basic parameters are: the handle (C<g>), the opaque user pointer "
3756 "(C<opaque>), the event class (eg. C<GUESTFS_EVENT_PROGRESS>), the event "
3757 "handle, and C<flags> which in the current API you should ignore."
3758 msgstr ""
3759
3760 #. type: textblock
3761 #: ../src/guestfs.pod:1898
3762 msgid ""
3763 "The remaining parameters contain the event payload (if any).  Each event may "
3764 "contain a payload, which usually relates to the event class, but for future "
3765 "proofing your code should be written to handle any payload for any event "
3766 "class."
3767 msgstr ""
3768
3769 #. type: textblock
3770 #: ../src/guestfs.pod:1903
3771 msgid ""
3772 "C<buf> and C<buf_len> contain a message buffer (if C<buf_len == 0>, then "
3773 "there is no message buffer).  Note that this message buffer can contain "
3774 "arbitrary 8 bit data, including NUL bytes."
3775 msgstr ""
3776
3777 #. type: textblock
3778 #: ../src/guestfs.pod:1907
3779 msgid ""
3780 "C<array> and C<array_len> is an array of 64 bit unsigned integers.  At the "
3781 "moment this is only used for progress messages."
3782 msgstr ""
3783
3784 #. type: =head3
3785 #: ../src/guestfs.pod:1910
3786 msgid "EXAMPLE: CAPTURING LOG MESSAGES"
3787 msgstr ""
3788
3789 #. type: textblock
3790 #: ../src/guestfs.pod:1912
3791 msgid ""
3792 "One motivation for the generic event API was to allow GUI programs to "
3793 "capture debug and other messages.  In libguestfs E<le> 1.8 these were sent "
3794 "unconditionally to C<stderr>."
3795 msgstr ""
3796
3797 #. type: textblock
3798 #: ../src/guestfs.pod:1916
3799 msgid ""
3800 "Events associated with log messages are: C<GUESTFS_EVENT_LIBRARY>, "
3801 "C<GUESTFS_EVENT_APPLIANCE> and C<GUESTFS_EVENT_TRACE>.  (Note that error "
3802 "messages are not events; you must capture error messages separately)."
3803 msgstr ""
3804
3805 #. type: textblock
3806 #: ../src/guestfs.pod:1921
3807 msgid ""
3808 "Programs have to set up a callback to capture the classes of events of "
3809 "interest:"
3810 msgstr ""
3811
3812 #. type: verbatim
3813 #: ../src/guestfs.pod:1924
3814 #, no-wrap
3815 msgid ""
3816 " int eh =\n"
3817 "   guestfs_set_event_callback\n"
3818 "     (g, message_callback,\n"
3819 "      GUESTFS_EVENT_LIBRARY|GUESTFS_EVENT_APPLIANCE|\n"
3820 "      GUESTFS_EVENT_TRACE,\n"
3821 "      0, NULL) == -1)\n"
3822 " if (eh == -1) {\n"
3823 "   // handle error in the usual way\n"
3824 " }\n"
3825 "\n"
3826 msgstr ""
3827
3828 #. type: textblock
3829 #: ../src/guestfs.pod:1934
3830 msgid ""
3831 "The callback can then direct messages to the appropriate place.  In this "
3832 "example, messages are directed to syslog:"
3833 msgstr ""
3834
3835 #. type: verbatim
3836 #: ../src/guestfs.pod:1937
3837 #, no-wrap
3838 msgid ""
3839 " static void\n"
3840 " message_callback (\n"
3841 "         guestfs_h *g,\n"
3842 "         void *opaque,\n"
3843 "         uint64_t event,\n"
3844 "         int event_handle,\n"
3845 "         int flags,\n"
3846 "         const char *buf, size_t buf_len,\n"
3847 "         const uint64_t *array, size_t array_len)\n"
3848 " {\n"
3849 "   const int priority = LOG_USER|LOG_INFO;\n"
3850 "   if (buf_len > 0)\n"
3851 "     syslog (priority, \"event 0x%lx: %s\", event, buf);\n"
3852 " }\n"
3853 "\n"
3854 msgstr ""
3855
3856 #. type: =head1
3857 #: ../src/guestfs.pod:1952
3858 msgid "PRIVATE DATA AREA"
3859 msgstr ""
3860
3861 #. type: textblock
3862 #: ../src/guestfs.pod:1954
3863 msgid ""
3864 "You can attach named pieces of private data to the libguestfs handle, fetch "
3865 "them by name, and walk over them, for the lifetime of the handle.  This is "
3866 "called the private data area and is only available from the C API."
3867 msgstr ""
3868
3869 #. type: textblock
3870 #: ../src/guestfs.pod:1959
3871 msgid "To attach a named piece of data, use the following call:"
3872 msgstr ""
3873
3874 #. type: verbatim
3875 #: ../src/guestfs.pod:1961
3876 #, no-wrap
3877 msgid ""
3878 " void guestfs_set_private (guestfs_h *g, const char *key, void *data);\n"
3879 "\n"
3880 msgstr ""
3881
3882 #. type: textblock
3883 #: ../src/guestfs.pod:1963
3884 msgid ""
3885 "C<key> is the name to associate with this data, and C<data> is an arbitrary "
3886 "pointer (which can be C<NULL>).  Any previous item with the same key is "
3887 "overwritten."
3888 msgstr ""
3889
3890 #. type: textblock
3891 #: ../src/guestfs.pod:1967
3892 msgid ""
3893 "You can use any C<key> you want, but your key should I<not> start with an "
3894 "underscore character.  Keys beginning with an underscore character are "
3895 "reserved for internal libguestfs purposes (eg. for implementing language "
3896 "bindings).  It is recommended that you prefix the key with some unique "
3897 "string to avoid collisions with other users."
3898 msgstr ""
3899
3900 #. type: textblock
3901 #: ../src/guestfs.pod:1973
3902 msgid "To retrieve the pointer, use:"
3903 msgstr ""
3904
3905 #. type: verbatim
3906 #: ../src/guestfs.pod:1975
3907 #, no-wrap
3908 msgid ""
3909 " void *guestfs_get_private (guestfs_h *g, const char *key);\n"
3910 "\n"
3911 msgstr ""
3912
3913 #. type: textblock
3914 #: ../src/guestfs.pod:1977
3915 msgid ""
3916 "This function returns C<NULL> if either no data is found associated with "
3917 "C<key>, or if the user previously set the C<key>'s C<data> pointer to "
3918 "C<NULL>."
3919 msgstr ""
3920
3921 #. type: textblock
3922 #: ../src/guestfs.pod:1981
3923 msgid ""
3924 "Libguestfs does not try to look at or interpret the C<data> pointer in any "
3925 "way.  As far as libguestfs is concerned, it need not be a valid pointer at "
3926 "all.  In particular, libguestfs does I<not> try to free the data when the "
3927 "handle is closed.  If the data must be freed, then the caller must either "
3928 "free it before calling L</guestfs_close> or must set up a close callback to "
3929 "do it (see L</GUESTFS_EVENT_CLOSE>)."
3930 msgstr ""
3931
3932 #. type: textblock
3933 #: ../src/guestfs.pod:1988
3934 msgid "To walk over all entries, use these two functions:"
3935 msgstr ""
3936
3937 #. type: verbatim
3938 #: ../src/guestfs.pod:1990
3939 #, no-wrap
3940 msgid ""
3941 " void *guestfs_first_private (guestfs_h *g, const char **key_rtn);\n"
3942 "\n"
3943 msgstr ""
3944
3945 #. type: verbatim
3946 #: ../src/guestfs.pod:1992
3947 #, no-wrap
3948 msgid ""
3949 " void *guestfs_next_private (guestfs_h *g, const char **key_rtn);\n"
3950 "\n"
3951 msgstr ""
3952
3953 #. type: textblock
3954 #: ../src/guestfs.pod:1994
3955 msgid ""
3956 "C<guestfs_first_private> returns the first key, pointer pair (\"first\" does "
3957 "not have any particular meaning -- keys are not returned in any defined "
3958 "order).  A pointer to the key is returned in C<*key_rtn> and the "
3959 "corresponding data pointer is returned from the function.  C<NULL> is "
3960 "returned if there are no keys stored in the handle."
3961 msgstr ""
3962
3963 #. type: textblock
3964 #: ../src/guestfs.pod:2000
3965 msgid ""
3966 "C<guestfs_next_private> returns the next key, pointer pair.  The return "
3967 "value of this function is also C<NULL> is there are no further entries to "
3968 "return."
3969 msgstr ""
3970
3971 #. type: textblock
3972 #: ../src/guestfs.pod:2004
3973 msgid "Notes about walking over entries:"
3974 msgstr ""
3975
3976 #. type: textblock
3977 #: ../src/guestfs.pod:2010
3978 msgid ""
3979 "You must not call C<guestfs_set_private> while walking over the entries."
3980 msgstr ""
3981
3982 #. type: textblock
3983 #: ../src/guestfs.pod:2015
3984 msgid ""
3985 "The handle maintains an internal iterator which is reset when you call "
3986 "C<guestfs_first_private>.  This internal iterator is invalidated when you "
3987 "call C<guestfs_set_private>."
3988 msgstr ""
3989
3990 #. type: textblock
3991 #: ../src/guestfs.pod:2021
3992 msgid "If you have set the data pointer associated with a key to C<NULL>, ie:"
3993 msgstr ""
3994
3995 #. type: verbatim
3996 #: ../src/guestfs.pod:2023
3997 #, no-wrap
3998 msgid ""
3999 " guestfs_set_private (g, key, NULL);\n"
4000 "\n"
4001 msgstr ""
4002
4003 #. type: textblock
4004 #: ../src/guestfs.pod:2025
4005 msgid "then that C<key> is not returned when walking."
4006 msgstr ""
4007
4008 #. type: textblock
4009 #: ../src/guestfs.pod:2029
4010 msgid ""
4011 "C<*key_rtn> is only valid until the next call to C<guestfs_first_private>, "
4012 "C<guestfs_next_private> or C<guestfs_set_private>."
4013 msgstr ""
4014
4015 #. type: textblock
4016 #: ../src/guestfs.pod:2035
4017 msgid ""
4018 "The following example code shows how to print all keys and data pointers "
4019 "that are associated with the handle C<g>:"
4020 msgstr ""
4021
4022 #. type: verbatim
4023 #: ../src/guestfs.pod:2038
4024 #, no-wrap
4025 msgid ""
4026 " const char *key;\n"
4027 " void *data = guestfs_first_private (g, &key);\n"
4028 " while (data != NULL)\n"
4029 "   {\n"
4030 "     printf (\"key = %s, data = %p\\n\", key, data);\n"
4031 "     data = guestfs_next_private (g, &key);\n"
4032 "   }\n"
4033 "\n"
4034 msgstr ""
4035
4036 #. type: textblock
4037 #: ../src/guestfs.pod:2046
4038 msgid ""
4039 "More commonly you are only interested in keys that begin with an application-"
4040 "specific prefix C<foo_>.  Modify the loop like so:"
4041 msgstr ""
4042
4043 #. type: verbatim
4044 #: ../src/guestfs.pod:2049
4045 #, no-wrap
4046 msgid ""
4047 " const char *key;\n"
4048 " void *data = guestfs_first_private (g, &key);\n"
4049 " while (data != NULL)\n"
4050 "   {\n"
4051 "     if (strncmp (key, \"foo_\", strlen (\"foo_\")) == 0)\n"
4052 "       printf (\"key = %s, data = %p\\n\", key, data);\n"
4053 "     data = guestfs_next_private (g, &key);\n"
4054 "   }\n"
4055 "\n"
4056 msgstr ""
4057
4058 #. type: textblock
4059 #: ../src/guestfs.pod:2058
4060 msgid ""
4061 "If you need to modify keys while walking, then you have to jump back to the "
4062 "beginning of the loop.  For example, to delete all keys prefixed with "
4063 "C<foo_>:"
4064 msgstr ""
4065
4066 #. type: verbatim
4067 #: ../src/guestfs.pod:2062
4068 #, no-wrap
4069 msgid ""
4070 "  const char *key;\n"
4071 "  void *data;\n"
4072 " again:\n"
4073 "  data = guestfs_first_private (g, &key);\n"
4074 "  while (data != NULL)\n"
4075 "    {\n"
4076 "      if (strncmp (key, \"foo_\", strlen (\"foo_\")) == 0)\n"
4077 "        {\n"
4078 "          guestfs_set_private (g, key, NULL);\n"
4079 "          /* note that 'key' pointer is now invalid, and so is\n"
4080 "             the internal iterator */\n"
4081 "          goto again;\n"
4082 "        }\n"
4083 "      data = guestfs_next_private (g, &key);\n"
4084 "    }\n"
4085 "\n"
4086 msgstr ""
4087
4088 #. type: textblock
4089 #: ../src/guestfs.pod:2078
4090 msgid ""
4091 "Note that the above loop is guaranteed to terminate because the keys are "
4092 "being deleted, but other manipulations of keys within the loop might not "
4093 "terminate unless you also maintain an indication of which keys have been "
4094 "visited."
4095 msgstr ""
4096
4097 #. type: =end
4098 #: ../src/guestfs.pod:2083 ../src/guestfs.pod:2088
4099 msgid "html"
4100 msgstr "html"
4101
4102 #. type: textblock
4103 #: ../src/guestfs.pod:2085
4104 msgid ""
4105 "<!-- old anchor for the next section --> <a name="
4106 "\"state_machine_and_low_level_event_api\"/>"
4107 msgstr ""
4108 "<!-- old anchor for the next section --> <a name="
4109 "\"state_machine_and_low_level_event_api\"/>"
4110
4111 #. type: =head1
4112 #: ../src/guestfs.pod:2090
4113 msgid "ARCHITECTURE"
4114 msgstr "АРХІТЕКТУРА"
4115
4116 #. type: textblock
4117 #: ../src/guestfs.pod:2092
4118 msgid ""
4119 "Internally, libguestfs is implemented by running an appliance (a special "
4120 "type of small virtual machine) using L<qemu(1)>.  Qemu runs as a child "
4121 "process of the main program."
4122 msgstr ""
4123
4124 #. type: verbatim
4125 #: ../src/guestfs.pod:2096
4126 #, no-wrap
4127 msgid ""
4128 "  ___________________\n"
4129 " /                   \\\n"
4130 " | main program      |\n"
4131 " |                   |\n"
4132 " |                   |           child process / appliance\n"
4133 " |                   |           __________________________\n"
4134 " |                   |          / qemu                     \\\n"
4135 " +-------------------+   RPC    |      +-----------------+ |\n"
4136 " | libguestfs     <--------------------> guestfsd        | |\n"
4137 " |                   |          |      +-----------------+ |\n"
4138 " \\___________________/          |      | Linux kernel    | |\n"
4139 "                                |      +--^--------------+ |\n"
4140 "                                \\_________|________________/\n"
4141 "                                          |\n"
4142 "                                   _______v______\n"
4143 "                                  /              \\\n"
4144 "                                  | Device or    |\n"
4145 "                                  | disk image   |\n"
4146 "                                  \\______________/\n"
4147 "\n"
4148 msgstr ""
4149
4150 #. type: textblock
4151 #: ../src/guestfs.pod:2116
4152 msgid ""
4153 "The library, linked to the main program, creates the child process and hence "
4154 "the appliance in the L</guestfs_launch> function."
4155 msgstr ""
4156
4157 #. type: textblock
4158 #: ../src/guestfs.pod:2119
4159 msgid ""
4160 "Inside the appliance is a Linux kernel and a complete stack of userspace "
4161 "tools (such as LVM and ext2 programs) and a small controlling daemon called "
4162 "L</guestfsd>.  The library talks to L</guestfsd> using remote procedure "
4163 "calls (RPC).  There is a mostly one-to-one correspondence between libguestfs "
4164 "API calls and RPC calls to the daemon.  Lastly the disk image(s) are "
4165 "attached to the qemu process which translates device access by the "
4166 "appliance's Linux kernel into accesses to the image."
4167 msgstr ""
4168
4169 #. type: textblock
4170 #: ../src/guestfs.pod:2128
4171 msgid ""
4172 "A common misunderstanding is that the appliance \"is\" the virtual machine.  "
4173 "Although the disk image you are attached to might also be used by some "
4174 "virtual machine, libguestfs doesn't know or care about this.  (But you will "
4175 "care if both libguestfs's qemu process and your virtual machine are trying "
4176 "to update the disk image at the same time, since these usually results in "
4177 "massive disk corruption)."
4178 msgstr ""
4179
4180 #. type: =head1
4181 #: ../src/guestfs.pod:2135
4182 msgid "STATE MACHINE"
4183 msgstr "СКІНЧЕННИЙ АВТОМАТ"
4184
4185 #. type: textblock
4186 #: ../src/guestfs.pod:2137
4187 msgid "libguestfs uses a state machine to model the child process:"
4188 msgstr ""
4189
4190 #. type: verbatim
4191 #: ../src/guestfs.pod:2139
4192 #, no-wrap
4193 msgid ""
4194 "                         |\n"
4195 "                    guestfs_create\n"
4196 "                         |\n"
4197 "                         |\n"
4198 "                     ____V_____\n"
4199 "                    /          \\\n"
4200 "                    |  CONFIG  |\n"
4201 "                    \\__________/\n"
4202 "                     ^ ^   ^  \\\n"
4203 "                    /  |    \\  \\ guestfs_launch\n"
4204 "                   /   |    _\\__V______\n"
4205 "                  /    |   /           \\\n"
4206 "                 /     |   | LAUNCHING |\n"
4207 "                /      |   \\___________/\n"
4208 "               /       |       /\n"
4209 "              /        |  guestfs_launch\n"
4210 "             /         |     /\n"
4211 "    ______  /        __|____V\n"
4212 "   /      \\ ------> /        \\\n"
4213 "   | BUSY |         | READY  |\n"
4214 "   \\______/ <------ \\________/\n"
4215 "\n"
4216 msgstr ""
4217
4218 #. type: textblock
4219 #: ../src/guestfs.pod:2161
4220 msgid ""
4221 "The normal transitions are (1) CONFIG (when the handle is created, but there "
4222 "is no child process), (2) LAUNCHING (when the child process is booting up), "
4223 "(3) alternating between READY and BUSY as commands are issued to, and "
4224 "carried out by, the child process."
4225 msgstr ""
4226
4227 #. type: textblock
4228 #: ../src/guestfs.pod:2166
4229 msgid ""
4230 "The guest may be killed by L</guestfs_kill_subprocess>, or may die "
4231 "asynchronously at any time (eg. due to some internal error), and that causes "
4232 "the state to transition back to CONFIG."
4233 msgstr ""
4234
4235 #. type: textblock
4236 #: ../src/guestfs.pod:2170
4237 msgid ""
4238 "Configuration commands for qemu such as L</guestfs_add_drive> can only be "
4239 "issued when in the CONFIG state."
4240 msgstr ""
4241
4242 #. type: textblock
4243 #: ../src/guestfs.pod:2173
4244 msgid ""
4245 "The API offers one call that goes from CONFIG through LAUNCHING to READY.  "
4246 "L</guestfs_launch> blocks until the child process is READY to accept "
4247 "commands (or until some failure or timeout).  L</guestfs_launch> internally "
4248 "moves the state from CONFIG to LAUNCHING while it is running."
4249 msgstr ""
4250
4251 #. type: textblock
4252 #: ../src/guestfs.pod:2179
4253 msgid ""
4254 "API actions such as L</guestfs_mount> can only be issued when in the READY "
4255 "state.  These API calls block waiting for the command to be carried out (ie. "
4256 "the state to transition to BUSY and then back to READY).  There are no non-"
4257 "blocking versions, and no way to issue more than one command per handle at "
4258 "the same time."
4259 msgstr ""
4260
4261 #. type: textblock
4262 #: ../src/guestfs.pod:2185
4263 msgid ""
4264 "Finally, the child process sends asynchronous messages back to the main "
4265 "program, such as kernel log messages.  You can register a callback to "
4266 "receive these messages."
4267 msgstr ""
4268
4269 #. type: =head1
4270 #: ../src/guestfs.pod:2189
4271 msgid "INTERNALS"
4272 msgstr ""
4273
4274 #. type: =head2
4275 #: ../src/guestfs.pod:2191
4276 msgid "COMMUNICATION PROTOCOL"
4277 msgstr ""
4278
4279 #. type: textblock
4280 #: ../src/guestfs.pod:2193
4281 msgid ""
4282 "Don't rely on using this protocol directly.  This section documents how it "
4283 "currently works, but it may change at any time."
4284 msgstr ""
4285
4286 #. type: textblock
4287 #: ../src/guestfs.pod:2196
4288 msgid ""
4289 "The protocol used to talk between the library and the daemon running inside "
4290 "the qemu virtual machine is a simple RPC mechanism built on top of XDR (RFC "
4291 "1014, RFC 1832, RFC 4506)."
4292 msgstr ""
4293
4294 #. type: textblock
4295 #: ../src/guestfs.pod:2200
4296 msgid ""
4297 "The detailed format of structures is in C<src/guestfs_protocol.x> (note: "
4298 "this file is automatically generated)."
4299 msgstr ""
4300
4301 #. type: textblock
4302 #: ../src/guestfs.pod:2203
4303 msgid ""
4304 "There are two broad cases, ordinary functions that don't have any C<FileIn> "
4305 "and C<FileOut> parameters, which are handled with very simple request/reply "
4306 "messages.  Then there are functions that have any C<FileIn> or C<FileOut> "
4307 "parameters, which use the same request and reply messages, but they may also "
4308 "be followed by files sent using a chunked encoding."
4309 msgstr ""
4310
4311 #. type: =head3
4312 #: ../src/guestfs.pod:2210
4313 msgid "ORDINARY FUNCTIONS (NO FILEIN/FILEOUT PARAMS)"
4314 msgstr ""
4315
4316 #. type: textblock
4317 #: ../src/guestfs.pod:2212
4318 msgid "For ordinary functions, the request message is:"
4319 msgstr ""
4320
4321 #. type: verbatim
4322 #: ../src/guestfs.pod:2214
4323 #, no-wrap
4324 msgid ""
4325 " total length (header + arguments,\n"
4326 "      but not including the length word itself)\n"
4327 " struct guestfs_message_header (encoded as XDR)\n"
4328 " struct guestfs_<foo>_args (encoded as XDR)\n"
4329 "\n"
4330 msgstr ""
4331
4332 #. type: textblock
4333 #: ../src/guestfs.pod:2219
4334 msgid ""
4335 "The total length field allows the daemon to allocate a fixed size buffer "
4336 "into which it slurps the rest of the message.  As a result, the total length "
4337 "is limited to C<GUESTFS_MESSAGE_MAX> bytes (currently 4MB), which means the "
4338 "effective size of any request is limited to somewhere under this size."
4339 msgstr ""
4340
4341 #. type: textblock
4342 #: ../src/guestfs.pod:2225
4343 msgid ""
4344 "Note also that many functions don't take any arguments, in which case the "
4345 "C<guestfs_I<foo>_args> is completely omitted."
4346 msgstr ""
4347
4348 #. type: textblock
4349 #: ../src/guestfs.pod:2228
4350 msgid ""
4351 "The header contains the procedure number (C<guestfs_proc>) which is how the "
4352 "receiver knows what type of args structure to expect, or none at all."
4353 msgstr ""
4354
4355 #. type: textblock
4356 #: ../src/guestfs.pod:2232
4357 msgid ""
4358 "For functions that take optional arguments, the optional arguments are "
4359 "encoded in the C<guestfs_I<foo>_args> structure in the same way as ordinary "
4360 "arguments.  A bitmask in the header indicates which optional arguments are "
4361 "meaningful.  The bitmask is also checked to see if it contains bits set "
4362 "which the daemon does not know about (eg. if more optional arguments were "
4363 "added in a later version of the library), and this causes the call to be "
4364 "rejected."
4365 msgstr ""
4366
4367 #. type: textblock
4368 #: ../src/guestfs.pod:2240
4369 msgid "The reply message for ordinary functions is:"
4370 msgstr ""
4371
4372 #. type: verbatim
4373 #: ../src/guestfs.pod:2242
4374 #, no-wrap
4375 msgid ""
4376 " total length (header + ret,\n"
4377 "      but not including the length word itself)\n"
4378 " struct guestfs_message_header (encoded as XDR)\n"
4379 " struct guestfs_<foo>_ret (encoded as XDR)\n"
4380 "\n"
4381 msgstr ""
4382
4383 #. type: textblock
4384 #: ../src/guestfs.pod:2247
4385 msgid ""
4386 "As above the C<guestfs_I<foo>_ret> structure may be completely omitted for "
4387 "functions that return no formal return values."
4388 msgstr ""
4389
4390 #. type: textblock
4391 #: ../src/guestfs.pod:2250
4392 msgid ""
4393 "As above the total length of the reply is limited to C<GUESTFS_MESSAGE_MAX>."
4394 msgstr ""
4395
4396 #. type: textblock
4397 #: ../src/guestfs.pod:2253
4398 msgid ""
4399 "In the case of an error, a flag is set in the header, and the reply message "
4400 "is slightly changed:"
4401 msgstr ""
4402
4403 #. type: verbatim
4404 #: ../src/guestfs.pod:2256
4405 #, no-wrap
4406 msgid ""
4407 " total length (header + error,\n"
4408 "      but not including the length word itself)\n"
4409 " struct guestfs_message_header (encoded as XDR)\n"
4410 " struct guestfs_message_error (encoded as XDR)\n"
4411 "\n"
4412 msgstr ""
4413
4414 #. type: textblock
4415 #: ../src/guestfs.pod:2261
4416 msgid ""
4417 "The C<guestfs_message_error> structure contains the error message as a "
4418 "string."
4419 msgstr ""
4420
4421 #. type: =head3
4422 #: ../src/guestfs.pod:2264
4423 msgid "FUNCTIONS THAT HAVE FILEIN PARAMETERS"
4424 msgstr ""
4425
4426 #. type: textblock
4427 #: ../src/guestfs.pod:2266
4428 msgid ""
4429 "A C<FileIn> parameter indicates that we transfer a file I<into> the guest.  "
4430 "The normal request message is sent (see above).  However this is followed by "
4431 "a sequence of file chunks."
4432 msgstr ""
4433
4434 #. type: verbatim
4435 #: ../src/guestfs.pod:2270
4436 #, no-wrap
4437 msgid ""
4438 " total length (header + arguments,\n"
4439 "      but not including the length word itself,\n"
4440 "      and not including the chunks)\n"
4441 " struct guestfs_message_header (encoded as XDR)\n"
4442 " struct guestfs_<foo>_args (encoded as XDR)\n"
4443 " sequence of chunks for FileIn param #0\n"
4444 " sequence of chunks for FileIn param #1 etc.\n"
4445 "\n"
4446 msgstr ""
4447
4448 #. type: textblock
4449 #: ../src/guestfs.pod:2278
4450 msgid "The \"sequence of chunks\" is:"
4451 msgstr ""
4452
4453 #. type: verbatim
4454 #: ../src/guestfs.pod:2280
4455 #, no-wrap
4456 msgid ""
4457 " length of chunk (not including length word itself)\n"
4458 " struct guestfs_chunk (encoded as XDR)\n"
4459 " length of chunk\n"
4460 " struct guestfs_chunk (encoded as XDR)\n"
4461 "   ...\n"
4462 " length of chunk\n"
4463 " struct guestfs_chunk (with data.data_len == 0)\n"
4464 "\n"
4465 msgstr ""
4466
4467 #. type: textblock
4468 #: ../src/guestfs.pod:2288
4469 msgid ""
4470 "The final chunk has the C<data_len> field set to zero.  Additionally a flag "
4471 "is set in the final chunk to indicate either successful completion or early "
4472 "cancellation."
4473 msgstr ""
4474
4475 #. type: textblock
4476 #: ../src/guestfs.pod:2292
4477 msgid ""
4478 "At time of writing there are no functions that have more than one FileIn "
4479 "parameter.  However this is (theoretically) supported, by sending the "
4480 "sequence of chunks for each FileIn parameter one after another (from left to "
4481 "right)."
4482 msgstr ""
4483
4484 #. type: textblock
4485 #: ../src/guestfs.pod:2297
4486 msgid ""
4487 "Both the library (sender) I<and> the daemon (receiver) may cancel the "
4488 "transfer.  The library does this by sending a chunk with a special flag set "
4489 "to indicate cancellation.  When the daemon sees this, it cancels the whole "
4490 "RPC, does I<not> send any reply, and goes back to reading the next request."
4491 msgstr ""
4492
4493 #. type: textblock
4494 #: ../src/guestfs.pod:2303
4495 msgid ""
4496 "The daemon may also cancel.  It does this by writing a special word "
4497 "C<GUESTFS_CANCEL_FLAG> to the socket.  The library listens for this during "
4498 "the transfer, and if it gets it, it will cancel the transfer (it sends a "
4499 "cancel chunk).  The special word is chosen so that even if cancellation "
4500 "happens right at the end of the transfer (after the library has finished "
4501 "writing and has started listening for the reply), the \"spurious\" cancel "
4502 "flag will not be confused with the reply message."
4503 msgstr ""
4504
4505 #. type: textblock
4506 #: ../src/guestfs.pod:2312
4507 msgid ""
4508 "This protocol allows the transfer of arbitrary sized files (no 32 bit "
4509 "limit), and also files where the size is not known in advance (eg. from "
4510 "pipes or sockets).  However the chunks are rather small "
4511 "(C<GUESTFS_MAX_CHUNK_SIZE>), so that neither the library nor the daemon need "
4512 "to keep much in memory."
4513 msgstr ""
4514
4515 #. type: =head3
4516 #: ../src/guestfs.pod:2318
4517 msgid "FUNCTIONS THAT HAVE FILEOUT PARAMETERS"
4518 msgstr ""
4519
4520 #. type: textblock
4521 #: ../src/guestfs.pod:2320
4522 msgid ""
4523 "The protocol for FileOut parameters is exactly the same as for FileIn "
4524 "parameters, but with the roles of daemon and library reversed."
4525 msgstr ""
4526
4527 #. type: verbatim
4528 #: ../src/guestfs.pod:2323
4529 #, no-wrap
4530 msgid ""
4531 " total length (header + ret,\n"
4532 "      but not including the length word itself,\n"
4533 "      and not including the chunks)\n"
4534 " struct guestfs_message_header (encoded as XDR)\n"
4535 " struct guestfs_<foo>_ret (encoded as XDR)\n"
4536 " sequence of chunks for FileOut param #0\n"
4537 " sequence of chunks for FileOut param #1 etc.\n"
4538 "\n"
4539 msgstr ""
4540
4541 #. type: =head3
4542 #: ../src/guestfs.pod:2331
4543 msgid "INITIAL MESSAGE"
4544 msgstr ""
4545
4546 #. type: textblock
4547 #: ../src/guestfs.pod:2333
4548 msgid ""
4549 "When the daemon launches it sends an initial word (C<GUESTFS_LAUNCH_FLAG>) "
4550 "which indicates that the guest and daemon is alive.  This is what L</"
4551 "guestfs_launch> waits for."
4552 msgstr ""
4553
4554 #. type: =head3
4555 #: ../src/guestfs.pod:2337
4556 msgid "PROGRESS NOTIFICATION MESSAGES"
4557 msgstr ""
4558
4559 #. type: textblock
4560 #: ../src/guestfs.pod:2339
4561 msgid ""
4562 "The daemon may send progress notification messages at any time.  These are "
4563 "distinguished by the normal length word being replaced by "
4564 "C<GUESTFS_PROGRESS_FLAG>, followed by a fixed size progress message."
4565 msgstr ""
4566
4567 #. type: textblock
4568 #: ../src/guestfs.pod:2343
4569 msgid ""
4570 "The library turns them into progress callbacks (see L</"
4571 "GUESTFS_EVENT_PROGRESS>) if there is a callback registered, or discards them "
4572 "if not."
4573 msgstr ""
4574
4575 #. type: textblock
4576 #: ../src/guestfs.pod:2347
4577 msgid ""
4578 "The daemon self-limits the frequency of progress messages it sends (see "
4579 "C<daemon/proto.c:notify_progress>).  Not all calls generate progress "
4580 "messages."
4581 msgstr ""
4582
4583 #. type: =head1
4584 #: ../src/guestfs.pod:2351
4585 msgid "LIBGUESTFS VERSION NUMBERS"
4586 msgstr ""
4587
4588 #. type: textblock
4589 #: ../src/guestfs.pod:2353
4590 msgid ""
4591 "Since April 2010, libguestfs has started to make separate development and "
4592 "stable releases, along with corresponding branches in our git repository.  "
4593 "These separate releases can be identified by version number:"
4594 msgstr ""
4595
4596 #. type: verbatim
4597 #: ../src/guestfs.pod:2358
4598 #, no-wrap
4599 msgid ""
4600 "                 even numbers for stable: 1.2.x, 1.4.x, ...\n"
4601 "       .-------- odd numbers for development: 1.3.x, 1.5.x, ...\n"
4602 "       |\n"
4603 "       v\n"
4604 " 1  .  3  .  5\n"
4605 " ^           ^\n"
4606 " |           |\n"
4607 " |           `-------- sub-version\n"
4608 " |\n"
4609 " `------ always '1' because we don't change the ABI\n"
4610 "\n"
4611 msgstr ""
4612
4613 #. type: textblock
4614 #: ../src/guestfs.pod:2369
4615 msgid "Thus \"1.3.5\" is the 5th update to the development branch \"1.3\"."
4616 msgstr ""
4617
4618 #. type: textblock
4619 #: ../src/guestfs.pod:2371
4620 msgid ""
4621 "As time passes we cherry pick fixes from the development branch and backport "
4622 "those into the stable branch, the effect being that the stable branch should "
4623 "get more stable and less buggy over time.  So the stable releases are ideal "
4624 "for people who don't need new features but would just like the software to "
4625 "work."
4626 msgstr ""
4627
4628 #. type: textblock
4629 #: ../src/guestfs.pod:2377
4630 msgid "Our criteria for backporting changes are:"
4631 msgstr ""
4632
4633 #. type: textblock
4634 #: ../src/guestfs.pod:2383
4635 msgid ""
4636 "Documentation changes which don't affect any code are backported unless the "
4637 "documentation refers to a future feature which is not in stable."
4638 msgstr ""
4639
4640 #. type: textblock
4641 #: ../src/guestfs.pod:2389
4642 msgid ""
4643 "Bug fixes which are not controversial, fix obvious problems, and have been "
4644 "well tested are backported."
4645 msgstr ""
4646
4647 #. type: textblock
4648 #: ../src/guestfs.pod:2394
4649 msgid ""
4650 "Simple rearrangements of code which shouldn't affect how it works get "
4651 "backported.  This is so that the code in the two branches doesn't get too "
4652 "far out of step, allowing us to backport future fixes more easily."
4653 msgstr ""
4654
4655 #. type: textblock
4656 #: ../src/guestfs.pod:2400
4657 msgid ""
4658 "We I<don't> backport new features, new APIs, new tools etc, except in one "
4659 "exceptional case: the new feature is required in order to implement an "
4660 "important bug fix."
4661 msgstr ""
4662
4663 #. type: textblock
4664 #: ../src/guestfs.pod:2406
4665 msgid ""
4666 "A new stable branch starts when we think the new features in development are "
4667 "substantial and compelling enough over the current stable branch to warrant "
4668 "it.  When that happens we create new stable and development versions 1.N.0 "
4669 "and 1.(N+1).0 [N is even].  The new dot-oh release won't necessarily be so "
4670 "stable at this point, but by backporting fixes from development, that branch "
4671 "will stabilize over time."
4672 msgstr ""
4673
4674 #. type: =head1
4675 #: ../src/guestfs.pod:2414
4676 msgid "EXTENDING LIBGUESTFS"
4677 msgstr ""
4678
4679 #. type: =head2
4680 #: ../src/guestfs.pod:2416
4681 msgid "ADDING A NEW API ACTION"
4682 msgstr ""
4683
4684 #. type: textblock
4685 #: ../src/guestfs.pod:2418
4686 msgid ""
4687 "Large amounts of boilerplate code in libguestfs (RPC, bindings, "
4688 "documentation) are generated, and this makes it easy to extend the "
4689 "libguestfs API."
4690 msgstr ""
4691
4692 #. type: textblock
4693 #: ../src/guestfs.pod:2422
4694 msgid "To add a new API action there are two changes:"
4695 msgstr ""
4696
4697 #. type: textblock
4698 #: ../src/guestfs.pod:2428
4699 msgid ""
4700 "You need to add a description of the call (name, parameters, return type, "
4701 "tests, documentation) to C<generator/generator_actions.ml>."
4702 msgstr ""
4703
4704 #. type: textblock
4705 #: ../src/guestfs.pod:2431
4706 msgid ""
4707 "There are two sorts of API action, depending on whether the call goes "
4708 "through to the daemon in the appliance, or is serviced entirely by the "
4709 "library (see L</ARCHITECTURE> above).  L</guestfs_sync> is an example of the "
4710 "former, since the sync is done in the appliance.  L</guestfs_set_trace> is "
4711 "an example of the latter, since a trace flag is maintained in the handle and "
4712 "all tracing is done on the library side."
4713 msgstr ""
4714
4715 #. type: textblock
4716 #: ../src/guestfs.pod:2439
4717 msgid ""
4718 "Most new actions are of the first type, and get added to the "
4719 "C<daemon_functions> list.  Each function has a unique procedure number used "
4720 "in the RPC protocol which is assigned to that action when we publish "
4721 "libguestfs and cannot be reused.  Take the latest procedure number and "
4722 "increment it."
4723 msgstr ""
4724
4725 #. type: textblock
4726 #: ../src/guestfs.pod:2445
4727 msgid ""
4728 "For library-only actions of the second type, add to the "
4729 "C<non_daemon_functions> list.  Since these functions are serviced by the "
4730 "library and do not travel over the RPC mechanism to the daemon, these "
4731 "functions do not need a procedure number, and so the procedure number is set "
4732 "to C<-1>."
4733 msgstr ""
4734
4735 #. type: textblock
4736 #: ../src/guestfs.pod:2453
4737 msgid "Implement the action (in C):"
4738 msgstr ""
4739
4740 #. type: textblock
4741 #: ../src/guestfs.pod:2455
4742 msgid ""
4743 "For daemon actions, implement the function C<do_E<lt>nameE<gt>> in the "
4744 "C<daemon/> directory."
4745 msgstr ""
4746
4747 #. type: textblock
4748 #: ../src/guestfs.pod:2458
4749 msgid ""
4750 "For library actions, implement the function C<guestfs__E<lt>nameE<gt>> "
4751 "(note: double underscore) in the C<src/> directory."
4752 msgstr ""
4753
4754 #. type: textblock
4755 #: ../src/guestfs.pod:2461
4756 msgid "In either case, use another function as an example of what to do."
4757 msgstr ""
4758
4759 #. type: textblock
4760 #: ../src/guestfs.pod:2465
4761 msgid "After making these changes, use C<make> to compile."
4762 msgstr ""
4763
4764 #. type: textblock
4765 #: ../src/guestfs.pod:2467
4766 msgid ""
4767 "Note that you don't need to implement the RPC, language bindings, manual "
4768 "pages or anything else.  It's all automatically generated from the OCaml "
4769 "description."
4770 msgstr ""
4771
4772 #. type: =head2
4773 #: ../src/guestfs.pod:2471
4774 msgid "ADDING TESTS FOR AN API ACTION"
4775 msgstr ""
4776
4777 #. type: textblock
4778 #: ../src/guestfs.pod:2473
4779 msgid ""
4780 "You can supply zero or as many tests as you want per API call.  The tests "
4781 "can either be added as part of the API description (C<generator/"
4782 "generator_actions.ml>), or in some rarer cases you may want to drop a script "
4783 "into C<regressions/>.  Note that adding a script to C<regressions/> is "
4784 "slower, so if possible use the first method."
4785 msgstr ""
4786
4787 #. type: textblock
4788 #: ../src/guestfs.pod:2479
4789 msgid ""
4790 "The following describes the test environment used when you add an API test "
4791 "in C<generator_actions.ml>."
4792 msgstr ""
4793
4794 #. type: textblock
4795 #: ../src/guestfs.pod:2482
4796 msgid "The test environment has 4 block devices:"
4797 msgstr ""
4798
4799 #. type: =item
4800 #: ../src/guestfs.pod:2486
4801 msgid "C</dev/sda> 500MB"
4802 msgstr ""
4803
4804 #. type: textblock
4805 #: ../src/guestfs.pod:2488
4806 msgid "General block device for testing."
4807 msgstr ""
4808
4809 #. type: =item
4810 #: ../src/guestfs.pod:2490
4811 msgid "C</dev/sdb> 50MB"
4812 msgstr ""
4813
4814 #. type: textblock
4815 #: ../src/guestfs.pod:2492
4816 msgid ""
4817 "C</dev/sdb1> is an ext2 filesystem used for testing filesystem write "
4818 "operations."
4819 msgstr ""
4820
4821 #. type: =item
4822 #: ../src/guestfs.pod:2495
4823 msgid "C</dev/sdc> 10MB"
4824 msgstr ""
4825
4826 #. type: textblock
4827 #: ../src/guestfs.pod:2497
4828 msgid "Used in a few tests where two block devices are needed."
4829 msgstr ""
4830
4831 #. type: =item
4832 #: ../src/guestfs.pod:2499
4833 msgid "C</dev/sdd>"
4834 msgstr "C</dev/sdd>"
4835
4836 #. type: textblock
4837 #: ../src/guestfs.pod:2501
4838 msgid "ISO with fixed content (see C<images/test.iso>)."
4839 msgstr ""
4840
4841 #. type: textblock
4842 #: ../src/guestfs.pod:2505
4843 msgid ""
4844 "To be able to run the tests in a reasonable amount of time, the libguestfs "
4845 "appliance and block devices are reused between tests.  So don't try testing "
4846 "L</guestfs_kill_subprocess> :-x"
4847 msgstr ""
4848
4849 #. type: textblock
4850 #: ../src/guestfs.pod:2509
4851 msgid ""
4852 "Each test starts with an initial scenario, selected using one of the "
4853 "C<Init*> expressions, described in C<generator/generator_types.ml>.  These "
4854 "initialize the disks mentioned above in a particular way as documented in "
4855 "C<generator_types.ml>.  You should not assume anything about the previous "
4856 "contents of other disks that are not initialized."
4857 msgstr ""
4858
4859 #. type: textblock
4860 #: ../src/guestfs.pod:2515
4861 msgid ""
4862 "You can add a prerequisite clause to any individual test.  This is a run-"
4863 "time check, which, if it fails, causes the test to be skipped.  Useful if "
4864 "testing a command which might not work on all variations of libguestfs "
4865 "builds.  A test that has prerequisite of C<Always> means to run "
4866 "unconditionally."
4867 msgstr ""
4868
4869 #. type: textblock
4870 #: ../src/guestfs.pod:2521
4871 msgid ""
4872 "In addition, packagers can skip individual tests by setting environment "
4873 "variables before running C<make check>."
4874 msgstr ""
4875
4876 #. type: verbatim
4877 #: ../src/guestfs.pod:2524
4878 #, no-wrap
4879 msgid ""
4880 " SKIP_TEST_<CMD>_<NUM>=1\n"
4881 "\n"
4882 msgstr ""
4883
4884 #. type: textblock
4885 #: ../src/guestfs.pod:2526
4886 msgid "eg: C<SKIP_TEST_COMMAND_3=1> skips test #3 of L</guestfs_command>."
4887 msgstr ""
4888
4889 #. type: textblock
4890 #: ../src/guestfs.pod:2528
4891 msgid "or:"
4892 msgstr "або:"
4893
4894 #. type: verbatim
4895 #: ../src/guestfs.pod:2530
4896 #, no-wrap
4897 msgid ""
4898 " SKIP_TEST_<CMD>=1\n"
4899 "\n"
4900 msgstr ""
4901
4902 #. type: textblock
4903 #: ../src/guestfs.pod:2532
4904 msgid "eg: C<SKIP_TEST_ZEROFREE=1> skips all L</guestfs_zerofree> tests."
4905 msgstr ""
4906
4907 #. type: textblock
4908 #: ../src/guestfs.pod:2534
4909 msgid "Packagers can run only certain tests by setting for example:"
4910 msgstr ""
4911
4912 #. type: verbatim
4913 #: ../src/guestfs.pod:2536
4914 #, no-wrap
4915 msgid ""
4916 " TEST_ONLY=\"vfs_type zerofree\"\n"
4917 "\n"
4918 msgstr ""
4919
4920 #. type: textblock
4921 #: ../src/guestfs.pod:2538
4922 msgid ""
4923 "See C<capitests/tests.c> for more details of how these environment variables "
4924 "work."
4925 msgstr ""
4926
4927 #. type: =head2
4928 #: ../src/guestfs.pod:2541
4929 msgid "DEBUGGING NEW API ACTIONS"
4930 msgstr ""
4931
4932 #. type: textblock
4933 #: ../src/guestfs.pod:2543
4934 msgid "Test new actions work before submitting them."
4935 msgstr ""
4936
4937 #. type: textblock
4938 #: ../src/guestfs.pod:2545
4939 msgid "You can use guestfish to try out new commands."
4940 msgstr ""
4941
4942 #. type: textblock
4943 #: ../src/guestfs.pod:2547
4944 msgid ""
4945 "Debugging the daemon is a problem because it runs inside a minimal "
4946 "environment.  However you can fprintf messages in the daemon to stderr, and "
4947 "they will show up if you use C<guestfish -v>."
4948 msgstr ""
4949
4950 #. type: =head2
4951 #: ../src/guestfs.pod:2551
4952 msgid "FORMATTING CODE AND OTHER CONVENTIONS"
4953 msgstr ""
4954
4955 #. type: textblock
4956 #: ../src/guestfs.pod:2553
4957 msgid ""
4958 "Our C source code generally adheres to some basic code-formatting "
4959 "conventions.  The existing code base is not totally consistent on this "
4960 "front, but we do prefer that contributed code be formatted similarly.  In "
4961 "short, use spaces-not-TABs for indentation, use 2 spaces for each "
4962 "indentation level, and other than that, follow the K&R style."
4963 msgstr ""
4964
4965 #. type: textblock
4966 #: ../src/guestfs.pod:2559
4967 msgid ""
4968 "If you use Emacs, add the following to one of one of your start-up files (e."
4969 "g., ~/.emacs), to help ensure that you get indentation right:"
4970 msgstr ""
4971
4972 #. type: verbatim
4973 #: ../src/guestfs.pod:2562
4974 #, no-wrap
4975 msgid ""
4976 " ;;; In libguestfs, indent with spaces everywhere (not TABs).\n"
4977 " ;;; Exceptions: Makefile and ChangeLog modes.\n"
4978 " (add-hook 'find-file-hook\n"
4979 "     '(lambda () (if (and buffer-file-name\n"
4980 "                          (string-match \"/libguestfs\\\\>\"\n"
4981 "                              (buffer-file-name))\n"
4982 "                          (not (string-equal mode-name \"Change Log\"))\n"
4983 "                          (not (string-equal mode-name \"Makefile\")))\n"
4984 "                     (setq indent-tabs-mode nil))))\n"
4985 " \n"
4986 msgstr ""
4987
4988 #. type: verbatim
4989 #: ../src/guestfs.pod:2572
4990 #, no-wrap
4991 msgid ""
4992 " ;;; When editing C sources in libguestfs, use this style.\n"
4993 " (defun libguestfs-c-mode ()\n"
4994 "   \"C mode with adjusted defaults for use with libguestfs.\"\n"
4995 "   (interactive)\n"
4996 "   (c-set-style \"K&R\")\n"
4997 "   (setq c-indent-level 2)\n"
4998 "   (setq c-basic-offset 2))\n"
4999 " (add-hook 'c-mode-hook\n"
5000 "           '(lambda () (if (string-match \"/libguestfs\\\\>\"\n"
5001 "                               (buffer-file-name))\n"
5002 "                           (libguestfs-c-mode))))\n"
5003 "\n"
5004 msgstr ""
5005
5006 #. type: textblock
5007 #: ../src/guestfs.pod:2584
5008 msgid "Enable warnings when compiling (and fix any problems this finds):"
5009 msgstr ""
5010
5011 #. type: verbatim
5012 #: ../src/guestfs.pod:2587
5013 #, no-wrap
5014 msgid ""
5015 " ./configure --enable-gcc-warnings\n"
5016 "\n"
5017 msgstr ""
5018
5019 #. type: textblock
5020 #: ../src/guestfs.pod:2589
5021 msgid "Useful targets are:"
5022 msgstr ""
5023
5024 #. type: verbatim
5025 #: ../src/guestfs.pod:2591
5026 #, no-wrap
5027 msgid ""
5028 " make syntax-check  # checks the syntax of the C code\n"
5029 " make check         # runs the test suite\n"
5030 "\n"
5031 msgstr ""
5032
5033 #. type: =head2
5034 #: ../src/guestfs.pod:2594
5035 msgid "DAEMON CUSTOM PRINTF FORMATTERS"
5036 msgstr ""
5037
5038 #. type: textblock
5039 #: ../src/guestfs.pod:2596
5040 msgid ""
5041 "In the daemon code we have created custom printf formatters C<%Q> and C<%R>, "
5042 "which are used to do shell quoting."
5043 msgstr ""
5044
5045 #. type: =item
5046 #: ../src/guestfs.pod:2601
5047 msgid "%Q"
5048 msgstr "%Q"
5049
5050 #. type: textblock
5051 #: ../src/guestfs.pod:2603
5052 msgid ""
5053 "Simple shell quoted string.  Any spaces or other shell characters are "
5054 "escaped for you."
5055 msgstr ""
5056
5057 #. type: =item
5058 #: ../src/guestfs.pod:2606
5059 msgid "%R"
5060 msgstr "%R"
5061
5062 #. type: textblock
5063 #: ../src/guestfs.pod:2608
5064 msgid ""
5065 "Same as C<%Q> except the string is treated as a path which is prefixed by "
5066 "the sysroot."
5067 msgstr ""
5068
5069 #. type: textblock
5070 #: ../src/guestfs.pod:2613 ../fish/guestfish.pod:242 ../fish/guestfish.pod:615
5071 msgid "For example:"
5072 msgstr "Приклад:"
5073
5074 #. type: verbatim
5075 #: ../src/guestfs.pod:2615
5076 #, no-wrap
5077 msgid ""
5078 " asprintf (&cmd, \"cat %R\", path);\n"
5079 "\n"
5080 msgstr ""
5081
5082 #. type: textblock
5083 #: ../src/guestfs.pod:2617
5084 msgid "would produce C<cat /sysroot/some\\ path\\ with\\ spaces>"
5085 msgstr ""
5086
5087 #. type: textblock
5088 #: ../src/guestfs.pod:2619
5089 msgid ""
5090 "I<Note:> Do I<not> use these when you are passing parameters to the C<command"
5091 "{,r,v,rv}()> functions.  These parameters do NOT need to be quoted because "
5092 "they are not passed via the shell (instead, straight to exec).  You probably "
5093 "want to use the C<sysroot_path()> function however."
5094 msgstr ""
5095
5096 #. type: =head2
5097 #: ../src/guestfs.pod:2625
5098 msgid "SUBMITTING YOUR NEW API ACTIONS"
5099 msgstr ""
5100
5101 #. type: textblock
5102 #: ../src/guestfs.pod:2627
5103 msgid ""
5104 "Submit patches to the mailing list: L<http://www.redhat.com/mailman/listinfo/"
5105 "libguestfs> and CC to L<rjones@redhat.com>."
5106 msgstr ""
5107
5108 #. type: =head2
5109 #: ../src/guestfs.pod:2631
5110 msgid "INTERNATIONALIZATION (I18N) SUPPORT"
5111 msgstr ""
5112
5113 #. type: textblock
5114 #: ../src/guestfs.pod:2633
5115 msgid "We support i18n (gettext anyhow) in the library."
5116 msgstr ""
5117
5118 #. type: textblock
5119 #: ../src/guestfs.pod:2635
5120 msgid ""
5121 "However many messages come from the daemon, and we don't translate those at "
5122 "the moment.  One reason is that the appliance generally has all locale files "
5123 "removed from it, because they take up a lot of space.  So we'd have to readd "
5124 "some of those, as well as copying our PO files into the appliance."
5125 msgstr ""
5126
5127 #. type: textblock
5128 #: ../src/guestfs.pod:2641
5129 msgid ""
5130 "Debugging messages are never translated, since they are intended for the "
5131 "programmers."
5132 msgstr ""
5133
5134 #. type: =head2
5135 #: ../src/guestfs.pod:2644
5136 msgid "SOURCE CODE SUBDIRECTORIES"
5137 msgstr ""
5138
5139 #. type: =item
5140 #: ../src/guestfs.pod:2648 ../src/guestfs-actions.pod:6102
5141 #: ../fish/guestfish-actions.pod:4041
5142 msgid "C<appliance>"
5143 msgstr "C<appliance>"
5144
5145 #. type: textblock
5146 #: ../src/guestfs.pod:2650
5147 msgid "The libguestfs appliance, build scripts and so on."
5148 msgstr ""
5149
5150 #. type: =item
5151 #: ../src/guestfs.pod:2652
5152 msgid "C<capitests>"
5153 msgstr "C<capitests>"
5154
5155 #. type: textblock
5156 #: ../src/guestfs.pod:2654
5157 msgid "Automated tests of the C API."
5158 msgstr ""
5159
5160 #. type: =item
5161 #: ../src/guestfs.pod:2656
5162 msgid "C<cat>"
5163 msgstr "C<cat>"
5164
5165 #. type: textblock
5166 #: ../src/guestfs.pod:2658
5167 msgid ""
5168 "The L<virt-cat(1)>, L<virt-filesystems(1)> and L<virt-ls(1)> commands and "
5169 "documentation."
5170 msgstr ""
5171
5172 #. type: =item
5173 #: ../src/guestfs.pod:2661
5174 #, fuzzy
5175 #| msgid "C<cat>"
5176 msgid "C<caution>"
5177 msgstr "C<cat>"
5178
5179 #. type: textblock
5180 #: ../src/guestfs.pod:2663
5181 msgid ""
5182 "Safety and liveness tests of components that libguestfs depends upon (not of "
5183 "libguestfs itself).  Mainly this is for qemu and the kernel."
5184 msgstr ""
5185
5186 #. type: =item
5187 #: ../src/guestfs.pod:2666
5188 msgid "C<contrib>"
5189 msgstr "C<contrib>"
5190
5191 #. type: textblock
5192 #: ../src/guestfs.pod:2668
5193 msgid "Outside contributions, experimental parts."
5194 msgstr ""
5195
5196 #. type: =item
5197 #: ../src/guestfs.pod:2670
5198 msgid "C<daemon>"
5199 msgstr "C<daemon>"
5200
5201 #. type: textblock
5202 #: ../src/guestfs.pod:2672
5203 msgid ""
5204 "The daemon that runs inside the libguestfs appliance and carries out actions."
5205 msgstr ""
5206
5207 #. type: =item
5208 #: ../src/guestfs.pod:2675
5209 msgid "C<df>"
5210 msgstr "C<df>"
5211
5212 #. type: textblock
5213 #: ../src/guestfs.pod:2677
5214 msgid "L<virt-df(1)> command and documentation."
5215 msgstr ""
5216
5217 #. type: =item
5218 #: ../src/guestfs.pod:2679
5219 msgid "C<edit>"
5220 msgstr ""
5221
5222 #. type: textblock
5223 #: ../src/guestfs.pod:2681
5224 msgid "L<virt-edit(1)> command and documentation."
5225 msgstr ""
5226
5227 #. type: =item
5228 #: ../src/guestfs.pod:2683
5229 msgid "C<examples>"
5230 msgstr "C<examples>"
5231
5232 #. type: textblock
5233 #: ../src/guestfs.pod:2685
5234 msgid "C API example code."
5235 msgstr "Код прикладів використання програмного інтерфейсу мовою C."
5236
5237 #. type: =item
5238 #: ../src/guestfs.pod:2687
5239 msgid "C<fish>"
5240 msgstr "C<fish>"
5241
5242 #. type: textblock
5243 #: ../src/guestfs.pod:2689
5244 msgid ""
5245 "L<guestfish(1)>, the command-line shell, and various shell scripts built on "
5246 "top such as L<virt-copy-in(1)>, L<virt-copy-out(1)>, L<virt-tar-in(1)>, "
5247 "L<virt-tar-out(1)>."
5248 msgstr ""
5249
5250 #. type: =item
5251 #: ../src/guestfs.pod:2693
5252 msgid "C<fuse>"
5253 msgstr "C<fuse>"
5254
5255 #. type: textblock
5256 #: ../src/guestfs.pod:2695
5257 msgid ""
5258 "L<guestmount(1)>, FUSE (userspace filesystem) built on top of libguestfs."
5259 msgstr ""
5260
5261 #. type: =item
5262 #: ../src/guestfs.pod:2697
5263 msgid "C<generator>"
5264 msgstr "C<generator>"
5265
5266 #. type: textblock
5267 #: ../src/guestfs.pod:2699
5268 msgid ""
5269 "The crucially important generator, used to automatically generate large "
5270 "amounts of boilerplate C code for things like RPC and bindings."
5271 msgstr ""
5272
5273 #. type: =item
5274 #: ../src/guestfs.pod:2702
5275 msgid "C<images>"
5276 msgstr "C<images>"
5277
5278 #. type: textblock
5279 #: ../src/guestfs.pod:2704
5280 msgid "Files used by the test suite."
5281 msgstr ""
5282
5283 #. type: textblock
5284 #: ../src/guestfs.pod:2706
5285 msgid "Some \"phony\" guest images which we test against."
5286 msgstr ""
5287
5288 #. type: =item
5289 #: ../src/guestfs.pod:2708
5290 msgid "C<inspector>"
5291 msgstr "C<inspector>"
5292
5293 #. type: textblock
5294 #: ../src/guestfs.pod:2710
5295 msgid "L<virt-inspector(1)>, the virtual machine image inspector."
5296 msgstr ""
5297
5298 #. type: =item
5299 #: ../src/guestfs.pod:2712
5300 msgid "C<logo>"
5301 msgstr "C<logo>"
5302
5303 #. type: textblock
5304 #: ../src/guestfs.pod:2714
5305 msgid "Logo used on the website.  The fish is called Arthur by the way."
5306 msgstr ""
5307
5308 #. type: =item
5309 #: ../src/guestfs.pod:2716
5310 msgid "C<m4>"
5311 msgstr "C<m4>"
5312
5313 #. type: textblock
5314 #: ../src/guestfs.pod:2718
5315 msgid "M4 macros used by autoconf."
5316 msgstr ""
5317
5318 #. type: =item
5319 #: ../src/guestfs.pod:2720
5320 msgid "C<po>"
5321 msgstr "C<po>"
5322
5323 #. type: textblock
5324 #: ../src/guestfs.pod:2722
5325 msgid "Translations of simple gettext strings."
5326 msgstr "Переклади простих рядків gettext."
5327
5328 #. type: =item
5329 #: ../src/guestfs.pod:2724
5330 msgid "C<po-docs>"
5331 msgstr "C<po-docs>"
5332
5333 #. type: textblock
5334 #: ../src/guestfs.pod:2726
5335 msgid ""
5336 "The build infrastructure and PO files for translations of manpages and POD "
5337 "files.  Eventually this will be combined with the C<po> directory, but that "
5338 "is rather complicated."
5339 msgstr ""
5340
5341 #. type: =item
5342 #: ../src/guestfs.pod:2730
5343 msgid "C<regressions>"
5344 msgstr "C<regressions>"
5345
5346 #. type: textblock
5347 #: ../src/guestfs.pod:2732
5348 msgid "Regression tests."
5349 msgstr "Тести на регресії."
5350
5351 #. type: =item
5352 #: ../src/guestfs.pod:2734
5353 msgid "C<rescue>"
5354 msgstr "C<rescue>"
5355
5356 #. type: textblock
5357 #: ../src/guestfs.pod:2736
5358 msgid "L<virt-rescue(1)> command and documentation."
5359 msgstr ""
5360
5361 #. type: =item
5362 #: ../src/guestfs.pod:2738
5363 msgid "C<src>"
5364 msgstr "C<src>"
5365
5366 #. type: textblock
5367 #: ../src/guestfs.pod:2740
5368 msgid "Source code to the C library."
5369 msgstr ""
5370
5371 #. type: =item
5372 #: ../src/guestfs.pod:2742
5373 msgid "C<tools>"
5374 msgstr "C<tools>"
5375
5376 #. type: textblock
5377 #: ../src/guestfs.pod:2744
5378 msgid "Command line tools written in Perl (L<virt-resize(1)> and many others)."
5379 msgstr ""
5380
5381 #. type: =item
5382 #: ../src/guestfs.pod:2746
5383 msgid "C<test-tool>"
5384 msgstr "C<test-tool>"
5385
5386 #. type: textblock
5387 #: ../src/guestfs.pod:2748
5388 msgid ""
5389 "Test tool for end users to test if their qemu/kernel combination will work "
5390 "with libguestfs."
5391 msgstr ""
5392
5393 #. type: =item
5394 #: ../src/guestfs.pod:2751
5395 msgid "C<csharp>"
5396 msgstr "C<csharp>"
5397
5398 #. type: =item
5399 #: ../src/guestfs.pod:2753
5400 msgid "C<haskell>"
5401 msgstr "C<haskell>"
5402
5403 #. type: =item
5404 #: ../src/guestfs.pod:2755
5405 msgid "C<java>"
5406 msgstr "C<java>"
5407
5408 #. type: =item
5409 #: ../src/guestfs.pod:2757
5410 msgid "C<ocaml>"
5411 msgstr "C<ocaml>"
5412
5413 #. type: =item
5414 #: ../src/guestfs.pod:2759
5415 msgid "C<php>"
5416 msgstr "C<php>"
5417
5418 #. type: =item
5419 #: ../src/guestfs.pod:2761
5420 msgid "C<perl>"
5421 msgstr "C<perl>"
5422
5423 #. type: =item
5424 #: ../src/guestfs.pod:2763
5425 msgid "C<python>"
5426 msgstr "C<python>"
5427
5428 #. type: =item
5429 #: ../src/guestfs.pod:2765
5430 msgid "C<ruby>"
5431 msgstr "C<ruby>"
5432
5433 #. type: textblock
5434 #: ../src/guestfs.pod:2767
5435 msgid "Language bindings."
5436 msgstr "Прив’язки до мов програмування."
5437
5438 #. type: =head1
5439 #: ../src/guestfs.pod:2771
5440 msgid "LIMITS"
5441 msgstr ""
5442
5443 #. type: =head2
5444 #: ../src/guestfs.pod:2773
5445 msgid "PROTOCOL LIMITS"
5446 msgstr ""
5447
5448 #. type: textblock
5449 #: ../src/guestfs.pod:2775
5450 msgid ""
5451 "Internally libguestfs uses a message-based protocol to pass API calls and "
5452 "their responses to and from a small \"appliance\" (see L</INTERNALS> for "
5453 "plenty more detail about this).  The maximum message size used by the "
5454 "protocol is slightly less than 4 MB.  For some API calls you may need to be "
5455 "aware of this limit.  The API calls which may be affected are individually "
5456 "documented, with a link back to this section of the documentation."
5457 msgstr ""
5458
5459 #. type: textblock
5460 #: ../src/guestfs.pod:2783
5461 msgid ""
5462 "A simple call such as L</guestfs_cat> returns its result (the file data) in "
5463 "a simple string.  Because this string is at some point internally encoded as "
5464 "a message, the maximum size that it can return is slightly under 4 MB.  If "
5465 "the requested file is larger than this then you will get an error."
5466 msgstr ""
5467
5468 #. type: textblock
5469 #: ../src/guestfs.pod:2789
5470 msgid ""
5471 "In order to transfer large files into and out of the guest filesystem, you "
5472 "need to use particular calls that support this.  The sections L</UPLOADING> "
5473 "and L</DOWNLOADING> document how to do this."
5474 msgstr ""
5475
5476 #. type: textblock
5477 #: ../src/guestfs.pod:2793
5478 msgid ""
5479 "You might also consider mounting the disk image using our FUSE filesystem "
5480 "support (L<guestmount(1)>)."
5481 msgstr ""
5482
5483 #. type: =head2
5484 #: ../src/guestfs.pod:2796
5485 msgid "MAXIMUM NUMBER OF DISKS"
5486 msgstr ""
5487
5488 #. type: textblock
5489 #: ../src/guestfs.pod:2798
5490 msgid "When using virtio disks (the default) the current limit is B<25> disks."
5491 msgstr ""
5492
5493 #. type: textblock
5494 #: ../src/guestfs.pod:2801
5495 msgid ""
5496 "Virtio itself consumes 1 virtual PCI slot per disk, and PCI is limited to 31 "
5497 "slots.  However febootstrap only understands disks with names C</dev/vda> "
5498 "through C</dev/vdz> (26 letters) and it reserves one disk for its own "
5499 "purposes."
5500 msgstr ""
5501
5502 #. type: textblock
5503 #: ../src/guestfs.pod:2806
5504 msgid ""
5505 "We are working to substantially raise this limit in future versions but it "
5506 "requires complex changes to qemu."
5507 msgstr ""
5508
5509 #. type: textblock
5510 #: ../src/guestfs.pod:2809
5511 msgid ""
5512 "In future versions of libguestfs it should also be possible to \"hot plug\" "
5513 "disks (add and remove disks after calling L</guestfs_launch>).  This also "
5514 "requires changes to qemu."
5515 msgstr ""
5516
5517 #. type: =head2
5518 #: ../src/guestfs.pod:2813
5519 msgid "MAXIMUM NUMBER OF PARTITIONS PER DISK"
5520 msgstr ""
5521
5522 #. type: textblock
5523 #: ../src/guestfs.pod:2815
5524 msgid "Virtio limits the maximum number of partitions per disk to B<15>."
5525 msgstr ""
5526
5527 #. type: textblock
5528 #: ../src/guestfs.pod:2817
5529 msgid ""
5530 "This is because it reserves 4 bits for the minor device number (thus C</dev/"
5531 "vda>, and C</dev/vda1> through C</dev/vda15>)."
5532 msgstr ""
5533
5534 #. type: textblock
5535 #: ../src/guestfs.pod:2820
5536 msgid ""
5537 "If you attach a disk with more than 15 partitions, the extra partitions are "
5538 "ignored by libguestfs."
5539 msgstr ""
5540
5541 #. type: =head2
5542 #: ../src/guestfs.pod:2823
5543 msgid "MAXIMUM SIZE OF A DISK"
5544 msgstr ""
5545
5546 #. type: textblock
5547 #: ../src/guestfs.pod:2825
5548 msgid "Probably the limit is between 2**63-1 and 2**64-1 bytes."
5549 msgstr ""
5550
5551 #. type: textblock
5552 #: ../src/guestfs.pod:2827
5553 msgid ""
5554 "We have tested block devices up to 1 exabyte (2**60 or "
5555 "1,152,921,504,606,846,976 bytes) using sparse files backed by an XFS host "
5556 "filesystem."
5557 msgstr ""
5558
5559 #. type: textblock
5560 #: ../src/guestfs.pod:2831
5561 msgid ""
5562 "Although libguestfs probably does not impose any limit, the underlying host "
5563 "storage will.  If you store disk images on a host ext4 filesystem, then the "
5564 "maximum size will be limited by the maximum ext4 file size (currently 16 "
5565 "TB).  If you store disk images as host logical volumes then you are limited "
5566 "by the maximum size of an LV."
5567 msgstr ""
5568
5569 #. type: textblock
5570 #: ../src/guestfs.pod:2837
5571 msgid ""
5572 "For the hugest disk image files, we recommend using XFS on the host for "
5573 "storage."
5574 msgstr ""
5575
5576 #. type: =head2
5577 #: ../src/guestfs.pod:2840
5578 msgid "MAXIMUM SIZE OF A PARTITION"
5579 msgstr ""
5580
5581 #. type: textblock
5582 #: ../src/guestfs.pod:2842
5583 msgid ""
5584 "The MBR (ie. classic MS-DOS) partitioning scheme uses 32 bit sector "
5585 "numbers.  Assuming a 512 byte sector size, this means that MBR cannot "
5586 "address a partition located beyond 2 TB on the disk."
5587 msgstr ""
5588
5589 #. type: textblock
5590 #: ../src/guestfs.pod:2846
5591 msgid ""
5592 "It is recommended that you use GPT partitions on disks which are larger than "
5593 "this size.  GPT uses 64 bit sector numbers and so can address partitions "
5594 "which are theoretically larger than the largest disk we could support."
5595 msgstr ""
5596
5597 #. type: =head2
5598 #: ../src/guestfs.pod:2851
5599 msgid "MAXIMUM SIZE OF A FILESYSTEM, FILES, DIRECTORIES"
5600 msgstr ""
5601
5602 #. type: textblock
5603 #: ../src/guestfs.pod:2853
5604 msgid ""
5605 "This depends on the filesystem type.  libguestfs itself does not impose any "
5606 "known limit.  Consult Wikipedia or the filesystem documentation to find out "
5607 "what these limits are."
5608 msgstr ""
5609
5610 #. type: =head2
5611 #: ../src/guestfs.pod:2857
5612 msgid "MAXIMUM UPLOAD AND DOWNLOAD"
5613 msgstr ""
5614
5615 #. type: textblock
5616 #: ../src/guestfs.pod:2859
5617 msgid ""
5618 "The API functions L</guestfs_upload>, L</guestfs_download>, L</"
5619 "guestfs_tar_in>, L</guestfs_tar_out> and the like allow unlimited sized "
5620 "uploads and downloads."
5621 msgstr ""
5622
5623 #. type: =head2
5624 #: ../src/guestfs.pod:2863
5625 #, fuzzy
5626 #| msgid "INSPECTION"
5627 msgid "INSPECTION LIMITS"
5628 msgstr "ПЕРЕВІРКА"
5629
5630 #. type: textblock
5631 #: ../src/guestfs.pod:2865
5632 msgid ""
5633 "The inspection code has several arbitrary limits on things like the size of "
5634 "Windows Registry hive it will read, and the length of product name.  These "
5635 "are intended to stop a malicious guest from consuming arbitrary amounts of "
5636 "memory and disk space on the host, and should not be reached in practice.  "
5637 "See the source code for more information."
5638 msgstr ""
5639
5640 #. type: =head1
5641 #: ../src/guestfs.pod:2871 ../fish/guestfish.pod:1017
5642 #: ../test-tool/libguestfs-test-tool.pod:82
5643 msgid "ENVIRONMENT VARIABLES"
5644 msgstr "ЗМІННІ СЕРЕДОВИЩА"
5645
5646 #. type: =item
5647 #: ../src/guestfs.pod:2875 ../fish/guestfish.pod:1048
5648 msgid "LIBGUESTFS_APPEND"
5649 msgstr ""
5650
5651 #. type: textblock
5652 #: ../src/guestfs.pod:2877 ../fish/guestfish.pod:1050
5653 msgid "Pass additional options to the guest kernel."
5654 msgstr ""
5655
5656 #. type: =item
5657 #: ../src/guestfs.pod:2879 ../fish/guestfish.pod:1052
5658 msgid "LIBGUESTFS_DEBUG"
5659 msgstr ""
5660
5661 #. type: textblock
5662 #: ../src/guestfs.pod:2881
5663 msgid ""
5664 "Set C<LIBGUESTFS_DEBUG=1> to enable verbose messages.  This has the same "
5665 "effect as calling C<guestfs_set_verbose (g, 1)>."
5666 msgstr ""
5667
5668 #. type: =item
5669 #: ../src/guestfs.pod:2884 ../fish/guestfish.pod:1057
5670 msgid "LIBGUESTFS_MEMSIZE"
5671 msgstr ""
5672
5673 #. type: textblock
5674 #: ../src/guestfs.pod:2886 ../fish/guestfish.pod:1059
5675 msgid ""
5676 "Set the memory allocated to the qemu process, in megabytes.  For example:"
5677 msgstr ""
5678
5679 #. type: verbatim
5680 #: ../src/guestfs.pod:2889 ../fish/guestfish.pod:1062
5681 #, no-wrap
5682 msgid ""
5683 " LIBGUESTFS_MEMSIZE=700\n"
5684 "\n"
5685 msgstr ""
5686
5687 #. type: =item
5688 #: ../src/guestfs.pod:2891 ../fish/guestfish.pod:1064
5689 msgid "LIBGUESTFS_PATH"
5690 msgstr ""
5691
5692 #. type: textblock
5693 #: ../src/guestfs.pod:2893
5694 msgid ""
5695 "Set the path that libguestfs uses to search for a supermin appliance.  See "
5696 "the discussion of paths in section L</PATH> above."
5697 msgstr ""
5698
5699 #. type: =item
5700 #: ../src/guestfs.pod:2896 ../fish/guestfish.pod:1069
5701 msgid "LIBGUESTFS_QEMU"
5702 msgstr ""
5703
5704 #. type: textblock
5705 #: ../src/guestfs.pod:2898 ../fish/guestfish.pod:1071
5706 msgid ""
5707 "Set the default qemu binary that libguestfs uses.  If not set, then the qemu "
5708 "which was found at compile time by the configure script is used."
5709 msgstr ""
5710
5711 #. type: textblock
5712 #: ../src/guestfs.pod:2902
5713 msgid "See also L</QEMU WRAPPERS> above."
5714 msgstr ""
5715
5716 #. type: =item
5717 #: ../src/guestfs.pod:2904 ../fish/guestfish.pod:1075
5718 msgid "LIBGUESTFS_TRACE"
5719 msgstr ""
5720
5721 #. type: textblock
5722 #: ../src/guestfs.pod:2906
5723 msgid ""
5724 "Set C<LIBGUESTFS_TRACE=1> to enable command traces.  This has the same "
5725 "effect as calling C<guestfs_set_trace (g, 1)>."
5726 msgstr ""
5727
5728 #. type: =item
5729 #: ../src/guestfs.pod:2909 ../fish/guestfish.pod:1084
5730 msgid "TMPDIR"
5731 msgstr ""
5732
5733 #. type: textblock
5734 #: ../src/guestfs.pod:2911 ../fish/guestfish.pod:1086
5735 msgid ""
5736 "Location of temporary directory, defaults to C</tmp> except for the cached "
5737 "supermin appliance which defaults to C</var/tmp>."
5738 msgstr ""
5739
5740 #. type: textblock
5741 #: ../src/guestfs.pod:2914 ../fish/guestfish.pod:1089
5742 msgid ""
5743 "If libguestfs was compiled to use the supermin appliance then the real "
5744 "appliance is cached in this directory, shared between all handles belonging "
5745 "to the same EUID.  You can use C<$TMPDIR> to configure another directory to "
5746 "use in case C</var/tmp> is not large enough."
5747 msgstr ""
5748
5749 #. type: =head1
5750 #: ../src/guestfs.pod:2922 ../fish/guestfish.pod:1156
5751 #: ../test-tool/libguestfs-test-tool.pod:87 ../fuse/guestmount.pod:279
5752 #: ../tools/virt-win-reg.pl:744 ../tools/virt-list-filesystems.pl:189
5753 #: ../tools/virt-tar.pl:286 ../tools/virt-make-fs.pl:539
5754 #: ../tools/virt-list-partitions.pl:257
5755 msgid "SEE ALSO"
5756 msgstr "ТАКОЖ ПЕРЕГЛЯНЬТЕ"
5757
5758 #. type: textblock
5759 #: ../src/guestfs.pod:2924
5760 msgid ""
5761 "L<guestfs-examples(3)>, L<guestfs-ocaml(3)>, L<guestfs-python(3)>, L<guestfs-"
5762 "ruby(3)>, L<guestfish(1)>, L<guestmount(1)>, L<virt-cat(1)>, L<virt-copy-in"
5763 "(1)>, L<virt-copy-out(1)>, L<virt-df(1)>, L<virt-edit(1)>, L<virt-filesystems"
5764 "(1)>, L<virt-inspector(1)>, L<virt-list-filesystems(1)>, L<virt-list-"
5765 "partitions(1)>, L<virt-ls(1)>, L<virt-make-fs(1)>, L<virt-rescue(1)>, L<virt-"
5766 "tar(1)>, L<virt-tar-in(1)>, L<virt-tar-out(1)>, L<virt-win-reg(1)>, L<qemu(1)"
5767 ">, L<febootstrap(1)>, L<hivex(3)>, L<http://libguestfs.org/>."
5768 msgstr ""
5769
5770 #. type: textblock
5771 #: ../src/guestfs.pod:2951
5772 msgid ""
5773 "Tools with a similar purpose: L<fdisk(8)>, L<parted(8)>, L<kpartx(8)>, L<lvm"
5774 "(8)>, L<disktype(1)>."
5775 msgstr ""
5776
5777 #. type: =head1
5778 #: ../src/guestfs.pod:2958 ../tools/virt-win-reg.pl:759
5779 #: ../tools/virt-make-fs.pl:553
5780 msgid "BUGS"
5781 msgstr "ВАДИ"
5782
5783 #. type: textblock
5784 #: ../src/guestfs.pod:2960
5785 msgid "To get a list of bugs against libguestfs use this link:"
5786 msgstr ""
5787 "Щоб переглянути список відомих вад у libguestfs, скористайтеся таким "
5788 "посиланням:"
5789
5790 #. type: textblock
5791 #: ../src/guestfs.pod:2962
5792 msgid ""
5793 "L<https://bugzilla.redhat.com/buglist.cgi?"
5794 "component=libguestfs&product=Virtualization+Tools>"
5795 msgstr ""
5796 "L<https://bugzilla.redhat.com/buglist.cgi?"
5797 "component=libguestfs&product=Virtualization+Tools>"
5798
5799 #. type: textblock
5800 #: ../src/guestfs.pod:2964
5801 msgid "To report a new bug against libguestfs use this link:"
5802 msgstr "Для звітування щодо вад у libguestfs скористайтеся цим посиланням:"
5803
5804 #. type: textblock
5805 #: ../src/guestfs.pod:2966
5806 msgid ""
5807 "L<https://bugzilla.redhat.com/enter_bug.cgi?"
5808 "component=libguestfs&product=Virtualization+Tools>"
5809 msgstr ""
5810 "L<https://bugzilla.redhat.com/enter_bug.cgi?"
5811 "component=libguestfs&product=Virtualization+Tools>"
5812
5813 #. type: textblock
5814 #: ../src/guestfs.pod:2968
5815 msgid "When reporting a bug, please check:"
5816 msgstr ""
5817
5818 #. type: textblock
5819 #: ../src/guestfs.pod:2974
5820 msgid "That the bug hasn't been reported already."
5821 msgstr ""
5822
5823 #. type: textblock
5824 #: ../src/guestfs.pod:2978
5825 msgid "That you are testing a recent version."
5826 msgstr ""
5827
5828 #. type: textblock
5829 #: ../src/guestfs.pod:2982
5830 msgid "Describe the bug accurately, and give a way to reproduce it."
5831 msgstr ""
5832
5833 #. type: textblock
5834 #: ../src/guestfs.pod:2986
5835 msgid ""
5836 "Run libguestfs-test-tool and paste the B<complete, unedited> output into the "
5837 "bug report."
5838 msgstr ""
5839
5840 #. type: =head1
5841 #: ../src/guestfs.pod:2991 ../fish/guestfish.pod:1180
5842 #: ../test-tool/libguestfs-test-tool.pod:93 ../fuse/guestmount.pod:290
5843 msgid "AUTHORS"
5844 msgstr "АВТОРИ"
5845
5846 #. type: textblock
5847 #: ../src/guestfs.pod:2993 ../fish/guestfish.pod:1182
5848 #: ../test-tool/libguestfs-test-tool.pod:95 ../fuse/guestmount.pod:292
5849 msgid "Richard W.M. Jones (C<rjones at redhat dot com>)"
5850 msgstr ""
5851
5852 #. type: =head1
5853 #: ../src/guestfs.pod:2995 ../fish/guestfish.pod:1184
5854 #: ../test-tool/libguestfs-test-tool.pod:97 ../fuse/guestmount.pod:294
5855 #: ../tools/virt-win-reg.pl:774 ../tools/virt-list-filesystems.pl:206
5856 #: ../tools/virt-tar.pl:305 ../tools/virt-make-fs.pl:568
5857 #: ../tools/virt-list-partitions.pl:273
5858 msgid "COPYRIGHT"
5859 msgstr "АВТОРСЬКІ ПРАВА"
5860
5861 #. type: textblock
5862 #: ../src/guestfs.pod:2997 ../fish/guestfish.pod:1186
5863 #: ../test-tool/libguestfs-test-tool.pod:99
5864 msgid "Copyright (C) 2009-2011 Red Hat Inc.  L<http://libguestfs.org/>"
5865 msgstr ""
5866
5867 #. type: textblock
5868 #: ../src/guestfs.pod:3000
5869 msgid ""
5870 "This library is free software; you can redistribute it and/or modify it "
5871 "under the terms of the GNU Lesser General Public License as published by the "
5872 "Free Software Foundation; either version 2 of the License, or (at your "
5873 "option) any later version."
5874 msgstr ""
5875
5876 #. type: textblock
5877 #: ../src/guestfs.pod:3005
5878 msgid ""
5879 "This library is distributed in the hope that it will be useful, but WITHOUT "
5880 "ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or "
5881 "FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public License "
5882 "for more details."
5883 msgstr ""
5884
5885 #. type: textblock
5886 #: ../src/guestfs.pod:3010
5887 msgid ""
5888 "You should have received a copy of the GNU Lesser General Public License "
5889 "along with this library; if not, write to the Free Software Foundation, "
5890 "Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA"
5891 msgstr ""
5892
5893 #. type: =head2
5894 #: ../src/guestfs-actions.pod:1
5895 msgid "guestfs_add_cdrom"
5896 msgstr ""
5897
5898 #. type: verbatim
5899 #: ../src/guestfs-actions.pod:3
5900 #, no-wrap
5901 msgid ""
5902 " int\n"
5903 " guestfs_add_cdrom (guestfs_h *g,\n"
5904 "                    const char *filename);\n"
5905 "\n"
5906 msgstr ""
5907
5908 #. type: textblock
5909 #: ../src/guestfs-actions.pod:7 ../fish/guestfish-actions.pod:5
5910 msgid "This function adds a virtual CD-ROM disk image to the guest."
5911 msgstr ""
5912
5913 #. type: textblock
5914 #: ../src/guestfs-actions.pod:9 ../fish/guestfish-actions.pod:7
5915 msgid "This is equivalent to the qemu parameter I<-cdrom filename>."
5916 msgstr ""
5917
5918 #. type: textblock
5919 #: ../src/guestfs-actions.pod:17
5920 msgid ""
5921 "This call checks for the existence of C<filename>.  This stops you from "
5922 "specifying other types of drive which are supported by qemu such as C<nbd:> "
5923 "and C<http:> URLs.  To specify those, use the general C<guestfs_config> call "
5924 "instead."
5925 msgstr ""
5926
5927 #. type: textblock
5928 #: ../src/guestfs-actions.pod:24
5929 msgid ""
5930 "If you just want to add an ISO file (often you use this as an efficient way "
5931 "to transfer large files into the guest), then you should probably use "
5932 "C<guestfs_add_drive_ro> instead."
5933 msgstr ""
5934
5935 #. type: textblock
5936 #: ../src/guestfs-actions.pod:30 ../src/guestfs-actions.pod:140
5937 #: ../src/guestfs-actions.pod:201 ../src/guestfs-actions.pod:238
5938 #: ../src/guestfs-actions.pod:252 ../src/guestfs-actions.pod:273
5939 #: ../src/guestfs-actions.pod:293 ../src/guestfs-actions.pod:307
5940 #: ../src/guestfs-actions.pod:422 ../src/guestfs-actions.pod:442
5941 #: ../src/guestfs-actions.pod:456 ../src/guestfs-actions.pod:501
5942 #: ../src/guestfs-actions.pod:529 ../src/guestfs-actions.pod:547
5943 #: ../src/guestfs-actions.pod:614 ../src/guestfs-actions.pod:647
5944 #: ../src/guestfs-actions.pod:661 ../src/guestfs-actions.pod:676
5945 #: ../src/guestfs-actions.pod:775 ../src/guestfs-actions.pod:793
5946 #: ../src/guestfs-actions.pod:807 ../src/guestfs-actions.pod:821
5947 #: ../src/guestfs-actions.pod:982 ../src/guestfs-actions.pod:1002
5948 #: ../src/guestfs-actions.pod:1020 ../src/guestfs-actions.pod:1104
5949 #: ../src/guestfs-actions.pod:1122 ../src/guestfs-actions.pod:1141
5950 #: ../src/guestfs-actions.pod:1155 ../src/guestfs-actions.pod:1175
5951 #: ../src/guestfs-actions.pod:1245 ../src/guestfs-actions.pod:1276
5952 #: ../src/guestfs-actions.pod:1301 ../src/guestfs-actions.pod:1343
5953 #: ../src/guestfs-actions.pod:1449 ../src/guestfs-actions.pod:1483
5954 #: ../src/guestfs-actions.pod:1698 ../src/guestfs-actions.pod:1720
5955 #: ../src/guestfs-actions.pod:1807 ../src/guestfs-actions.pod:2271
5956 #: ../src/guestfs-actions.pod:2415 ../src/guestfs-actions.pod:2476
5957 #: ../src/guestfs-actions.pod:2511 ../src/guestfs-actions.pod:3551
5958 #: ../src/guestfs-actions.pod:3566 ../src/guestfs-actions.pod:3591
5959 #: ../src/guestfs-actions.pod:3778 ../src/guestfs-actions.pod:3792
5960 #: ../src/guestfs-actions.pod:3805 ../src/guestfs-actions.pod:3819
5961 #: ../src/guestfs-actions.pod:3834 ../src/guestfs-actions.pod:3870
5962 #: ../src/guestfs-actions.pod:3942 ../src/guestfs-actions.pod:3962
5963 #: ../src/guestfs-actions.pod:3979 ../src/guestfs-actions.pod:4002
5964 #: ../src/guestfs-actions.pod:4025 ../src/guestfs-actions.pod:4060
5965 #: ../src/guestfs-actions.pod:4079 ../src/guestfs-actions.pod:4098
5966 #: ../src/guestfs-actions.pod:4133 ../src/guestfs-actions.pod:4145
5967 #: ../src/guestfs-actions.pod:4181 ../src/guestfs-actions.pod:4197
5968 #: ../src/guestfs-actions.pod:4210 ../src/guestfs-actions.pod:4225
5969 #: ../src/guestfs-actions.pod:4242 ../src/guestfs-actions.pod:4335
5970 #: ../src/guestfs-actions.pod:4355 ../src/guestfs-actions.pod:4368
5971 #: ../src/guestfs-actions.pod:4419 ../src/guestfs-actions.pod:4437
5972 #: ../src/guestfs-actions.pod:4455 ../src/guestfs-actions.pod:4471
5973 #: ../src/guestfs-actions.pod:4485 ../src/guestfs-actions.pod:4499
5974 #: ../src/guestfs-actions.pod:4516 ../src/guestfs-actions.pod:4531
5975 #: ../src/guestfs-actions.pod:4551 ../src/guestfs-actions.pod:4621
5976 #: ../src/guestfs-actions.pod:4694 ../src/guestfs-actions.pod:4725
5977 #: ../src/guestfs-actions.pod:4744 ../src/guestfs-actions.pod:4763
5978 #: ../src/guestfs-actions.pod:4775 ../src/guestfs-actions.pod:4792
5979 #: ../src/guestfs-actions.pod:4805 ../src/guestfs-actions.pod:4820
5980 #: ../src/guestfs-actions.pod:4835 ../src/guestfs-actions.pod:4870
5981 #: ../src/guestfs-actions.pod:4903 ../src/guestfs-actions.pod:4942
5982 #: ../src/guestfs-actions.pod:4962 ../src/guestfs-actions.pod:4976
5983 #: ../src/guestfs-actions.pod:4993 ../src/guestfs-actions.pod:5042
5984 #: ../src/guestfs-actions.pod:5088 ../src/guestfs-actions.pod:5142
5985 #: ../src/guestfs-actions.pod:5176 ../src/guestfs-actions.pod:5211
5986 #: ../src/guestfs-actions.pod:5228 ../src/guestfs-actions.pod:5246
5987 #: ../src/guestfs-actions.pod:5380 ../src/guestfs-actions.pod:5437
5988 #: ../src/guestfs-actions.pod:5459 ../src/guestfs-actions.pod:5477
5989 #: ../src/guestfs-actions.pod:5509 ../src/guestfs-actions.pod:5575
5990 #: ../src/guestfs-actions.pod:5592 ../src/guestfs-actions.pod:5605
5991 #: ../src/guestfs-actions.pod:5619 ../src/guestfs-actions.pod:5908
5992 #: ../src/guestfs-actions.pod:5927 ../src/guestfs-actions.pod:5946
5993 #: ../src/guestfs-actions.pod:5960 ../src/guestfs-actions.pod:5972
5994 #: ../src/guestfs-actions.pod:5986 ../src/guestfs-actions.pod:5998
5995 #: ../src/guestfs-actions.pod:6012 ../src/guestfs-actions.pod:6028
5996 #: ../src/guestfs-actions.pod:6049 ../src/guestfs-actions.pod:6068
5997 #: ../src/guestfs-actions.pod:6087 ../src/guestfs-actions.pod:6117
5998 #: ../src/guestfs-actions.pod:6135 ../src/guestfs-actions.pod:6158
5999 #: ../src/guestfs-actions.pod:6176 ../src/guestfs-actions.pod:6195
6000 #: ../src/guestfs-actions.pod:6216 ../src/guestfs-actions.pod:6235
6001 #: ../src/guestfs-actions.pod:6252 ../src/guestfs-actions.pod:6280
6002 #: ../src/guestfs-actions.pod:6304 ../src/guestfs-actions.pod:6323
6003 #: ../src/guestfs-actions.pod:6347 ../src/guestfs-actions.pod:6366
6004 #: ../src/guestfs-actions.pod:6381 ../src/guestfs-actions.pod:6400
6005 #: ../src/guestfs-actions.pod:6437 ../src/guestfs-actions.pod:6467
6006 #: ../src/guestfs-actions.pod:6500 ../src/guestfs-actions.pod:6622
6007 #: ../src/guestfs-actions.pod:6743 ../src/guestfs-actions.pod:6755
6008 #: ../src/guestfs-actions.pod:6768 ../src/guestfs-actions.pod:6781
6009 #: ../src/guestfs-actions.pod:6803 ../src/guestfs-actions.pod:6816
6010 #: ../src/guestfs-actions.pod:6829 ../src/guestfs-actions.pod:6842
6011 #: ../src/guestfs-actions.pod:6857 ../src/guestfs-actions.pod:6916
6012 #: ../src/guestfs-actions.pod:6933 ../src/guestfs-actions.pod:6949
6013 #: ../src/guestfs-actions.pod:6965 ../src/guestfs-actions.pod:6982
6014 #: ../src/guestfs-actions.pod:6995 ../src/guestfs-actions.pod:7015
6015 #: ../src/guestfs-actions.pod:7051 ../src/guestfs-actions.pod:7065
6016 #: ../src/guestfs-actions.pod:7106 ../src/guestfs-actions.pod:7119
6017 #: ../src/guestfs-actions.pod:7137 ../src/guestfs-actions.pod:7171
6018 #: ../src/guestfs-actions.pod:7207 ../src/guestfs-actions.pod:7323
6019 #: ../src/guestfs-actions.pod:7338 ../src/guestfs-actions.pod:7352
6020 #: ../src/guestfs-actions.pod:7407 ../src/guestfs-actions.pod:7420
6021 #: ../src/guestfs-actions.pod:7465 ../src/guestfs-actions.pod:7498
6022 #: ../src/guestfs-actions.pod:7559 ../src/guestfs-actions.pod:7585
6023 #: ../src/guestfs-actions.pod:7652 ../src/guestfs-actions.pod:7671
6024 #: ../src/guestfs-actions.pod:7700
6025 msgid "This function returns 0 on success or -1 on error."
6026 msgstr ""
6027
6028 #. type: textblock
6029 #: ../src/guestfs-actions.pod:32 ../src/guestfs-actions.pod:254
6030 #: ../src/guestfs-actions.pod:275 ../fish/guestfish-actions.pod:28
6031 #: ../fish/guestfish-actions.pod:163 ../fish/guestfish-actions.pod:177
6032 msgid ""
6033 "This function is deprecated.  In new code, use the C<add_drive_opts> call "
6034 "instead."
6035 msgstr ""
6036
6037 #. type: textblock
6038 #: ../src/guestfs-actions.pod:35 ../src/guestfs-actions.pod:257
6039 #: ../src/guestfs-actions.pod:278 ../src/guestfs-actions.pod:1454
6040 #: ../src/guestfs-actions.pod:1949 ../src/guestfs-actions.pod:1970
6041 #: ../src/guestfs-actions.pod:4556 ../src/guestfs-actions.pod:4875
6042 #: ../src/guestfs-actions.pod:5093 ../src/guestfs-actions.pod:5181
6043 #: ../src/guestfs-actions.pod:6445 ../src/guestfs-actions.pod:6475
6044 #: ../src/guestfs-actions.pod:6508 ../src/guestfs-actions.pod:6567
6045 #: ../src/guestfs-actions.pod:7503 ../src/guestfs-actions.pod:7593
6046 #: ../src/guestfs-actions.pod:7763 ../fish/guestfish-actions.pod:31
6047 #: ../fish/guestfish-actions.pod:166 ../fish/guestfish-actions.pod:180
6048 #: ../fish/guestfish-actions.pod:961 ../fish/guestfish-actions.pod:1321
6049 #: ../fish/guestfish-actions.pod:1335 ../fish/guestfish-actions.pod:3054
6050 #: ../fish/guestfish-actions.pod:3261 ../fish/guestfish-actions.pod:3375
6051 #: ../fish/guestfish-actions.pod:3423 ../fish/guestfish-actions.pod:4303
6052 #: ../fish/guestfish-actions.pod:4326 ../fish/guestfish-actions.pod:4348
6053 #: ../fish/guestfish-actions.pod:4386 ../fish/guestfish-actions.pod:5021
6054 #: ../fish/guestfish-actions.pod:5119
6055 msgid ""
6056 "Deprecated functions will not be removed from the API, but the fact that "
6057 "they are deprecated indicates that there are problems with correct use of "
6058 "these functions."
6059 msgstr ""
6060
6061 #. type: textblock
6062 #: ../src/guestfs-actions.pod:39 ../src/guestfs-actions.pod:142
6063 #: ../src/guestfs-actions.pod:1106 ../src/guestfs-actions.pod:1921
6064 #: ../src/guestfs-actions.pod:2019 ../src/guestfs-actions.pod:2122
6065 #: ../src/guestfs-actions.pod:3553 ../src/guestfs-actions.pod:3573
6066 #: ../src/guestfs-actions.pod:4879 ../src/guestfs-actions.pod:6137
6067 #: ../src/guestfs-actions.pod:6254 ../src/guestfs-actions.pod:6368
6068 #: ../src/guestfs-actions.pod:6859 ../src/guestfs-actions.pod:6984
6069 #: ../src/guestfs-actions.pod:7507
6070 msgid "(Added in 0.3)"
6071 msgstr ""
6072
6073 #. type: =head2
6074 #: ../src/guestfs-actions.pod:41
6075 msgid "guestfs_add_domain"
6076 msgstr ""
6077
6078 #. type: verbatim
6079 #: ../src/guestfs-actions.pod:43
6080 #, no-wrap
6081 msgid ""
6082 " int\n"
6083 " guestfs_add_domain (guestfs_h *g,\n"
6084 "                     const char *dom,\n"
6085 "                     ...);\n"
6086 "\n"
6087 msgstr ""
6088
6089 #. type: textblock
6090 #: ../src/guestfs-actions.pod:48 ../src/guestfs-actions.pod:151
6091 #: ../src/guestfs-actions.pod:2756 ../src/guestfs-actions.pod:4570
6092 #: ../src/guestfs-actions.pod:4889 ../src/guestfs-actions.pod:5106
6093 msgid ""
6094 "You may supply a list of optional arguments to this call.  Use zero or more "
6095 "of the following pairs of parameters, and terminate the list with C<-1> on "
6096 "its own.  See L</CALLS WITH OPTIONAL ARGUMENTS>."
6097 msgstr ""
6098
6099 #. type: verbatim
6100 #: ../src/guestfs-actions.pod:53
6101 #, no-wrap
6102 msgid ""
6103 " GUESTFS_ADD_DOMAIN_LIBVIRTURI, const char *libvirturi,\n"
6104 " GUESTFS_ADD_DOMAIN_READONLY, int readonly,\n"
6105 " GUESTFS_ADD_DOMAIN_IFACE, const char *iface,\n"
6106 " GUESTFS_ADD_DOMAIN_LIVE, int live,\n"
6107 " GUESTFS_ADD_DOMAIN_ALLOWUUID, int allowuuid,\n"
6108 "\n"
6109 msgstr ""
6110
6111 #. type: textblock
6112 #: ../src/guestfs-actions.pod:59
6113 msgid ""
6114 "This function adds the disk(s) attached to the named libvirt domain C<dom>.  "
6115 "It works by connecting to libvirt, requesting the domain and domain XML from "
6116 "libvirt, parsing it for disks, and calling C<guestfs_add_drive_opts> on each "
6117 "one."
6118 msgstr ""
6119
6120 #. type: textblock
6121 #: ../src/guestfs-actions.pod:64 ../fish/guestfish-actions.pod:46
6122 msgid ""
6123 "The number of disks added is returned.  This operation is atomic: if an "
6124 "error is returned, then no disks are added."
6125 msgstr ""
6126
6127 #. type: textblock
6128 #: ../src/guestfs-actions.pod:67 ../fish/guestfish-actions.pod:49
6129 msgid ""
6130 "This function does some minimal checks to make sure the libvirt domain is "
6131 "not running (unless C<readonly> is true).  In a future version we will try "
6132 "to acquire the libvirt lock on each disk."
6133 msgstr ""
6134
6135 #. type: textblock
6136 #: ../src/guestfs-actions.pod:71 ../fish/guestfish-actions.pod:53
6137 msgid ""
6138 "Disks must be accessible locally.  This often means that adding disks from a "
6139 "remote libvirt connection (see L<http://libvirt.org/remote.html>)  will fail "
6140 "unless those disks are accessible via the same device path locally too."
6141 msgstr ""
6142
6143 #. type: textblock
6144 #: ../src/guestfs-actions.pod:76 ../fish/guestfish-actions.pod:58
6145 msgid ""
6146 "The optional C<libvirturi> parameter sets the libvirt URI (see L<http://"
6147 "libvirt.org/uri.html>).  If this is not set then we connect to the default "
6148 "libvirt URI (or one set through an environment variable, see the libvirt "
6149 "documentation for full details)."
6150 msgstr ""
6151
6152 #. type: textblock
6153 #: ../src/guestfs-actions.pod:82 ../fish/guestfish-actions.pod:64
6154 msgid ""
6155 "The optional C<live> flag controls whether this call will try to connect to "
6156 "a running virtual machine C<guestfsd> process if it sees a suitable "
6157 "E<lt>channelE<gt> element in the libvirt XML definition.  The default (if "
6158 "the flag is omitted) is never to try.  See L<guestfs(3)/ATTACHING TO RUNNING "
6159 "DAEMONS> for more information."
6160 msgstr ""
6161
6162 #. type: textblock
6163 #: ../src/guestfs-actions.pod:89 ../fish/guestfish-actions.pod:71
6164 msgid ""
6165 "If the C<allowuuid> flag is true (default is false) then a UUID I<may> be "
6166 "passed instead of the domain name.  The C<dom> string is treated as a UUID "
6167 "first and looked up, and if that lookup fails then we treat C<dom> as a name "
6168 "as usual."
6169 msgstr ""
6170
6171 #. type: textblock
6172 #: ../src/guestfs-actions.pod:94
6173 msgid ""
6174 "The other optional parameters are passed directly through to "
6175 "C<guestfs_add_drive_opts>."
6176 msgstr ""
6177
6178 #. type: textblock
6179 #: ../src/guestfs-actions.pod:97 ../src/guestfs-actions.pod:350
6180 #: ../src/guestfs-actions.pod:515 ../src/guestfs-actions.pod:693
6181 #: ../src/guestfs-actions.pod:724 ../src/guestfs-actions.pod:742
6182 #: ../src/guestfs-actions.pod:761 ../src/guestfs-actions.pod:1321
6183 #: ../src/guestfs-actions.pod:1677 ../src/guestfs-actions.pod:1880
6184 #: ../src/guestfs-actions.pod:1991 ../src/guestfs-actions.pod:2031
6185 #: ../src/guestfs-actions.pod:2086 ../src/guestfs-actions.pod:2109
6186 #: ../src/guestfs-actions.pod:2402 ../src/guestfs-actions.pod:2874
6187 #: ../src/guestfs-actions.pod:2892 ../src/guestfs-actions.pod:5065
6188 #: ../src/guestfs-actions.pod:5283 ../src/guestfs-actions.pod:5689
6189 #: ../src/guestfs-actions.pod:5715 ../src/guestfs-actions.pod:7092
6190 #: ../src/guestfs-actions.pod:7518 ../src/guestfs-actions.pod:7531
6191 #: ../src/guestfs-actions.pod:7544
6192 msgid "On error this function returns -1."
6193 msgstr ""
6194
6195 #. type: textblock
6196 #: ../src/guestfs-actions.pod:99
6197 msgid "(Added in 1.7.4)"
6198 msgstr ""
6199
6200 #. type: =head2
6201 #: ../src/guestfs-actions.pod:101
6202 msgid "guestfs_add_domain_va"
6203 msgstr ""
6204
6205 #. type: verbatim
6206 #: ../src/guestfs-actions.pod:103
6207 #, no-wrap
6208 msgid ""
6209 " int\n"
6210 " guestfs_add_domain_va (guestfs_h *g,\n"
6211 "                        const char *dom,\n"
6212 "                        va_list args);\n"
6213 "\n"
6214 msgstr ""
6215
6216 #. type: textblock
6217 #: ../src/guestfs-actions.pod:108
6218 msgid "This is the \"va_list variant\" of L</guestfs_add_domain>."
6219 msgstr ""
6220
6221 #. type: textblock
6222 #: ../src/guestfs-actions.pod:110 ../src/guestfs-actions.pod:121
6223 #: ../src/guestfs-actions.pod:214 ../src/guestfs-actions.pod:225
6224 #: ../src/guestfs-actions.pod:2840 ../src/guestfs-actions.pod:2852
6225 #: ../src/guestfs-actions.pod:4635 ../src/guestfs-actions.pod:4647
6226 #: ../src/guestfs-actions.pod:4917 ../src/guestfs-actions.pod:4929
6227 #: ../src/guestfs-actions.pod:5153 ../src/guestfs-actions.pod:5164
6228 msgid "See L</CALLS WITH OPTIONAL ARGUMENTS>."
6229 msgstr ""
6230
6231 #. type: =head2
6232 #: ../src/guestfs-actions.pod:112
6233 msgid "guestfs_add_domain_argv"
6234 msgstr ""
6235
6236 #. type: verbatim
6237 #: ../src/guestfs-actions.pod:114
6238 #, no-wrap
6239 msgid ""
6240 " int\n"
6241 " guestfs_add_domain_argv (guestfs_h *g,\n"
6242 "                          const char *dom,\n"
6243 "                          const struct guestfs_add_domain_argv *optargs);\n"
6244 "\n"
6245 msgstr ""
6246
6247 #. type: textblock
6248 #: ../src/guestfs-actions.pod:119
6249 msgid "This is the \"argv variant\" of L</guestfs_add_domain>."
6250 msgstr ""
6251
6252 #. type: =head2
6253 #: ../src/guestfs-actions.pod:123
6254 msgid "guestfs_add_drive"
6255 msgstr ""
6256
6257 #. type: verbatim
6258 #: ../src/guestfs-actions.pod:125
6259 #, no-wrap
6260 msgid ""
6261 " int\n"
6262 " guestfs_add_drive (guestfs_h *g,\n"
6263 "                    const char *filename);\n"
6264 "\n"
6265 msgstr ""
6266
6267 #. type: textblock
6268 #: ../src/guestfs-actions.pod:129
6269 msgid ""
6270 "This function is the equivalent of calling C<guestfs_add_drive_opts> with no "
6271 "optional parameters, so the disk is added writable, with the format being "
6272 "detected automatically."
6273 msgstr ""
6274
6275 #. type: textblock
6276 #: ../src/guestfs-actions.pod:133
6277 msgid ""
6278 "Automatic detection of the format opens you up to a potential security hole "
6279 "when dealing with untrusted raw-format images.  See CVE-2010-3851 and "
6280 "RHBZ#642934.  Specifying the format closes this security hole.  Therefore "
6281 "you should think about replacing calls to this function with calls to "
6282 "C<guestfs_add_drive_opts>, and specifying the format."
6283 msgstr ""
6284
6285 #. type: =head2
6286 #: ../src/guestfs-actions.pod:144
6287 msgid "guestfs_add_drive_opts"
6288 msgstr ""
6289
6290 #. type: verbatim
6291 #: ../src/guestfs-actions.pod:146
6292 #, no-wrap
6293 msgid ""
6294 " int\n"
6295 " guestfs_add_drive_opts (guestfs_h *g,\n"
6296 "                         const char *filename,\n"
6297 "                         ...);\n"
6298 "\n"
6299 msgstr ""
6300
6301 #. type: verbatim
6302 #: ../src/guestfs-actions.pod:156
6303 #, no-wrap
6304 msgid ""
6305 " GUESTFS_ADD_DRIVE_OPTS_READONLY, int readonly,\n"
6306 " GUESTFS_ADD_DRIVE_OPTS_FORMAT, const char *format,\n"
6307 " GUESTFS_ADD_DRIVE_OPTS_IFACE, const char *iface,\n"
6308 "\n"
6309 msgstr ""
6310
6311 #. type: textblock
6312 #: ../src/guestfs-actions.pod:160 ../fish/guestfish-actions.pod:102
6313 msgid ""
6314 "This function adds a virtual machine disk image C<filename> to libguestfs.  "
6315 "The first time you call this function, the disk appears as C</dev/sda>, the "
6316 "second time as C</dev/sdb>, and so on."
6317 msgstr ""
6318
6319 #. type: textblock
6320 #: ../src/guestfs-actions.pod:165 ../fish/guestfish-actions.pod:107
6321 msgid ""
6322 "You don't necessarily need to be root when using libguestfs.  However you "
6323 "obviously do need sufficient permissions to access the filename for whatever "
6324 "operations you want to perform (ie. read access if you just want to read the "
6325 "image or write access if you want to modify the image)."
6326 msgstr ""
6327
6328 #. type: textblock
6329 #: ../src/guestfs-actions.pod:171 ../fish/guestfish-actions.pod:113
6330 msgid "This call checks that C<filename> exists."
6331 msgstr ""
6332
6333 #. type: textblock
6334 #: ../src/guestfs-actions.pod:173 ../src/guestfs-actions.pod:4583
6335 #: ../fish/guestfish-actions.pod:115 ../fish/guestfish-actions.pod:3065
6336 msgid "The optional arguments are:"
6337 msgstr ""
6338
6339 #. type: =item
6340 #: ../src/guestfs-actions.pod:177 ../fish/guestfish-actions.pod:119
6341 msgid "C<readonly>"
6342 msgstr "C<readonly>"
6343
6344 #. type: textblock
6345 #: ../src/guestfs-actions.pod:179 ../fish/guestfish-actions.pod:121
6346 msgid ""
6347 "If true then the image is treated as read-only.  Writes are still allowed, "
6348 "but they are stored in a temporary snapshot overlay which is discarded at "
6349 "the end.  The disk that you add is not modified."
6350 msgstr ""
6351
6352 #. type: =item
6353 #: ../src/guestfs-actions.pod:183 ../fish/guestfish-actions.pod:125
6354 msgid "C<format>"
6355 msgstr "C<format>"
6356
6357 #. type: textblock
6358 #: ../src/guestfs-actions.pod:185
6359 msgid ""
6360 "This forces the image format.  If you omit this (or use C<guestfs_add_drive> "
6361 "or C<guestfs_add_drive_ro>) then the format is automatically detected.  "
6362 "Possible formats include C<raw> and C<qcow2>."
6363 msgstr ""
6364
6365 #. type: textblock
6366 #: ../src/guestfs-actions.pod:189 ../fish/guestfish-actions.pod:131
6367 msgid ""
6368 "Automatic detection of the format opens you up to a potential security hole "
6369 "when dealing with untrusted raw-format images.  See CVE-2010-3851 and "
6370 "RHBZ#642934.  Specifying the format closes this security hole."
6371 msgstr ""
6372
6373 #. type: =item
6374 #: ../src/guestfs-actions.pod:194 ../fish/guestfish-actions.pod:136
6375 msgid "C<iface>"
6376 msgstr "C<iface>"
6377
6378 #. type: textblock
6379 #: ../src/guestfs-actions.pod:196
6380 msgid ""
6381 "This rarely-used option lets you emulate the behaviour of the deprecated "
6382 "C<guestfs_add_drive_with_if> call (q.v.)"
6383 msgstr ""
6384
6385 #. type: textblock
6386 #: ../src/guestfs-actions.pod:203
6387 msgid "(Added in 1.5.23)"
6388 msgstr ""
6389
6390 #. type: =head2
6391 #: ../src/guestfs-actions.pod:205
6392 msgid "guestfs_add_drive_opts_va"
6393 msgstr ""
6394
6395 #. type: verbatim
6396 #: ../src/guestfs-actions.pod:207
6397 #, no-wrap
6398 msgid ""
6399 " int\n"
6400 " guestfs_add_drive_opts_va (guestfs_h *g,\n"
6401 "                            const char *filename,\n"
6402 "                            va_list args);\n"
6403 "\n"
6404 msgstr ""
6405
6406 #. type: textblock
6407 #: ../src/guestfs-actions.pod:212
6408 msgid "This is the \"va_list variant\" of L</guestfs_add_drive_opts>."
6409 msgstr ""
6410
6411 #. type: =head2
6412 #: ../src/guestfs-actions.pod:216
6413 msgid "guestfs_add_drive_opts_argv"
6414 msgstr ""
6415
6416 #. type: verbatim
6417 #: ../src/guestfs-actions.pod:218
6418 #, no-wrap
6419 msgid ""
6420 " int\n"
6421 " guestfs_add_drive_opts_argv (guestfs_h *g,\n"
6422 "                              const char *filename,\n"
6423 "                              const struct guestfs_add_drive_opts_argv *optargs);\n"
6424 "\n"
6425 msgstr ""
6426
6427 #. type: textblock
6428 #: ../src/guestfs-actions.pod:223
6429 msgid "This is the \"argv variant\" of L</guestfs_add_drive_opts>."
6430 msgstr ""
6431
6432 #. type: =head2
6433 #: ../src/guestfs-actions.pod:227
6434 msgid "guestfs_add_drive_ro"
6435 msgstr ""
6436
6437 #. type: verbatim
6438 #: ../src/guestfs-actions.pod:229
6439 #, no-wrap
6440 msgid ""
6441 " int\n"
6442 " guestfs_add_drive_ro (guestfs_h *g,\n"
6443 "                       const char *filename);\n"
6444 "\n"
6445 msgstr ""
6446
6447 #. type: textblock
6448 #: ../src/guestfs-actions.pod:233
6449 msgid ""
6450 "This function is the equivalent of calling C<guestfs_add_drive_opts> with "
6451 "the optional parameter C<GUESTFS_ADD_DRIVE_OPTS_READONLY> set to 1, so the "
6452 "disk is added read-only, with the format being detected automatically."
6453 msgstr ""
6454
6455 #. type: textblock
6456 #: ../src/guestfs-actions.pod:240
6457 msgid "(Added in 1.0.38)"
6458 msgstr ""
6459
6460 #. type: =head2
6461 #: ../src/guestfs-actions.pod:242
6462 msgid "guestfs_add_drive_ro_with_if"
6463 msgstr ""
6464
6465 #. type: verbatim
6466 #: ../src/guestfs-actions.pod:244
6467 #, no-wrap
6468 msgid ""
6469 " int\n"
6470 " guestfs_add_drive_ro_with_if (guestfs_h *g,\n"
6471 "                               const char *filename,\n"
6472 "                               const char *iface);\n"
6473 "\n"
6474 msgstr ""
6475
6476 #. type: textblock
6477 #: ../src/guestfs-actions.pod:249
6478 msgid ""
6479 "This is the same as C<guestfs_add_drive_ro> but it allows you to specify the "
6480 "QEMU interface emulation to use at run time."
6481 msgstr ""
6482
6483 #. type: textblock
6484 #: ../src/guestfs-actions.pod:261 ../src/guestfs-actions.pod:282
6485 #: ../src/guestfs-actions.pod:2361
6486 msgid "(Added in 1.0.84)"
6487 msgstr ""
6488
6489 #. type: =head2
6490 #: ../src/guestfs-actions.pod:263
6491 msgid "guestfs_add_drive_with_if"
6492 msgstr ""
6493
6494 #. type: verbatim
6495 #: ../src/guestfs-actions.pod:265
6496 #, no-wrap
6497 msgid ""
6498 " int\n"
6499 " guestfs_add_drive_with_if (guestfs_h *g,\n"
6500 "                            const char *filename,\n"
6501 "                            const char *iface);\n"
6502 "\n"
6503 msgstr ""
6504
6505 #. type: textblock
6506 #: ../src/guestfs-actions.pod:270
6507 msgid ""
6508 "This is the same as C<guestfs_add_drive> but it allows you to specify the "
6509 "QEMU interface emulation to use at run time."
6510 msgstr ""
6511
6512 #. type: =head2
6513 #: ../src/guestfs-actions.pod:284
6514 msgid "guestfs_aug_clear"
6515 msgstr ""
6516
6517 #. type: verbatim
6518 #: ../src/guestfs-actions.pod:286
6519 #, no-wrap
6520 msgid ""
6521 " int\n"
6522 " guestfs_aug_clear (guestfs_h *g,\n"
6523 "                    const char *augpath);\n"
6524 "\n"
6525 msgstr ""
6526
6527 #. type: textblock
6528 #: ../src/guestfs-actions.pod:290 ../fish/guestfish-actions.pod:188
6529 msgid ""
6530 "Set the value associated with C<path> to C<NULL>.  This is the same as the "
6531 "L<augtool(1)> C<clear> command."
6532 msgstr ""
6533
6534 #. type: textblock
6535 #: ../src/guestfs-actions.pod:295 ../src/guestfs-actions.pod:2111
6536 msgid "(Added in 1.3.4)"
6537 msgstr ""
6538
6539 #. type: =head2
6540 #: ../src/guestfs-actions.pod:297
6541 msgid "guestfs_aug_close"
6542 msgstr ""
6543
6544 #. type: verbatim
6545 #: ../src/guestfs-actions.pod:299
6546 #, no-wrap
6547 msgid ""
6548 " int\n"
6549 " guestfs_aug_close (guestfs_h *g);\n"
6550 "\n"
6551 msgstr ""
6552
6553 #. type: textblock
6554 #: ../src/guestfs-actions.pod:302
6555 msgid ""
6556 "Close the current Augeas handle and free up any resources used by it.  After "
6557 "calling this, you have to call C<guestfs_aug_init> again before you can use "
6558 "any other Augeas functions."
6559 msgstr ""
6560
6561 #. type: textblock
6562 #: ../src/guestfs-actions.pod:309 ../src/guestfs-actions.pod:334
6563 #: ../src/guestfs-actions.pod:352 ../src/guestfs-actions.pod:366
6564 #: ../src/guestfs-actions.pod:424 ../src/guestfs-actions.pod:444
6565 #: ../src/guestfs-actions.pod:458 ../src/guestfs-actions.pod:489
6566 #: ../src/guestfs-actions.pod:503 ../src/guestfs-actions.pod:517
6567 #: ../src/guestfs-actions.pod:531 ../src/guestfs-actions.pod:549
6568 #: ../src/guestfs-actions.pod:5766
6569 msgid "(Added in 0.7)"
6570 msgstr ""
6571
6572 #. type: =head2
6573 #: ../src/guestfs-actions.pod:311
6574 msgid "guestfs_aug_defnode"
6575 msgstr ""
6576
6577 #. type: verbatim
6578 #: ../src/guestfs-actions.pod:313
6579 #, no-wrap
6580 msgid ""
6581 " struct guestfs_int_bool *\n"
6582 " guestfs_aug_defnode (guestfs_h *g,\n"
6583 "                      const char *name,\n"
6584 "                      const char *expr,\n"
6585 "                      const char *val);\n"
6586 "\n"
6587 msgstr ""
6588
6589 #. type: textblock
6590 #: ../src/guestfs-actions.pod:319 ../fish/guestfish-actions.pod:204
6591 msgid ""
6592 "Defines a variable C<name> whose value is the result of evaluating C<expr>."
6593 msgstr ""
6594
6595 #. type: textblock
6596 #: ../src/guestfs-actions.pod:322
6597 msgid ""
6598 "If C<expr> evaluates to an empty nodeset, a node is created, equivalent to "
6599 "calling C<guestfs_aug_set> C<expr>, C<value>.  C<name> will be the nodeset "
6600 "containing that single node."
6601 msgstr ""
6602
6603 #. type: textblock
6604 #: ../src/guestfs-actions.pod:326 ../fish/guestfish-actions.pod:211
6605 msgid ""
6606 "On success this returns a pair containing the number of nodes in the "
6607 "nodeset, and a boolean flag if a node was created."
6608 msgstr ""
6609
6610 #. type: textblock
6611 #: ../src/guestfs-actions.pod:330
6612 msgid ""
6613 "This function returns a C<struct guestfs_int_bool *>, or NULL if there was "
6614 "an error.  I<The caller must call C<guestfs_free_int_bool> after use>."
6615 msgstr ""
6616
6617 #. type: =head2
6618 #: ../src/guestfs-actions.pod:336
6619 msgid "guestfs_aug_defvar"
6620 msgstr ""
6621
6622 #. type: verbatim
6623 #: ../src/guestfs-actions.pod:338
6624 #, no-wrap
6625 msgid ""
6626 " int\n"
6627 " guestfs_aug_defvar (guestfs_h *g,\n"
6628 "                     const char *name,\n"
6629 "                     const char *expr);\n"
6630 "\n"
6631 msgstr ""
6632
6633 #. type: textblock
6634 #: ../src/guestfs-actions.pod:343 ../fish/guestfish-actions.pod:219
6635 msgid ""
6636 "Defines an Augeas variable C<name> whose value is the result of evaluating "
6637 "C<expr>.  If C<expr> is NULL, then C<name> is undefined."
6638 msgstr ""
6639
6640 #. type: textblock
6641 #: ../src/guestfs-actions.pod:347 ../fish/guestfish-actions.pod:223
6642 msgid ""
6643 "On success this returns the number of nodes in C<expr>, or C<0> if C<expr> "
6644 "evaluates to something which is not a nodeset."
6645 msgstr ""
6646
6647 #. type: =head2
6648 #: ../src/guestfs-actions.pod:354
6649 msgid "guestfs_aug_get"
6650 msgstr ""
6651
6652 #. type: verbatim
6653 #: ../src/guestfs-actions.pod:356
6654 #, no-wrap
6655 msgid ""
6656 " char *\n"
6657 " guestfs_aug_get (guestfs_h *g,\n"
6658 "                  const char *augpath);\n"
6659 "\n"
6660 msgstr ""
6661
6662 #. type: textblock
6663 #: ../src/guestfs-actions.pod:360 ../fish/guestfish-actions.pod:230
6664 msgid ""
6665 "Look up the value associated with C<path>.  If C<path> matches exactly one "
6666 "node, the C<value> is returned."
6667 msgstr ""
6668
6669 #. type: textblock
6670 #: ../src/guestfs-actions.pod:363 ../src/guestfs-actions.pod:863
6671 #: ../src/guestfs-actions.pod:881 ../src/guestfs-actions.pod:941
6672 #: ../src/guestfs-actions.pod:957 ../src/guestfs-actions.pod:1060
6673 #: ../src/guestfs-actions.pod:1190 ../src/guestfs-actions.pod:1207
6674 #: ../src/guestfs-actions.pod:1226 ../src/guestfs-actions.pod:1360
6675 #: ../src/guestfs-actions.pod:1548 ../src/guestfs-actions.pod:1660
6676 #: ../src/guestfs-actions.pod:1823 ../src/guestfs-actions.pod:1840
6677 #: ../src/guestfs-actions.pod:1907 ../src/guestfs-actions.pod:1943
6678 #: ../src/guestfs-actions.pod:1964 ../src/guestfs-actions.pod:2134
6679 #: ../src/guestfs-actions.pod:2326 ../src/guestfs-actions.pod:2530
6680 #: ../src/guestfs-actions.pod:2620 ../src/guestfs-actions.pod:2724
6681 #: ../src/guestfs-actions.pod:2743 ../src/guestfs-actions.pod:2957
6682 #: ../src/guestfs-actions.pod:2985 ../src/guestfs-actions.pod:3006
6683 #: ../src/guestfs-actions.pod:3040 ../src/guestfs-actions.pod:3099
6684 #: ../src/guestfs-actions.pod:3119 ../src/guestfs-actions.pod:3139
6685 #: ../src/guestfs-actions.pod:3764 ../src/guestfs-actions.pod:4117
6686 #: ../src/guestfs-actions.pod:4287 ../src/guestfs-actions.pod:4397
6687 #: ../src/guestfs-actions.pod:5301 ../src/guestfs-actions.pod:5494
6688 #: ../src/guestfs-actions.pod:5664 ../src/guestfs-actions.pod:5842
6689 #: ../src/guestfs-actions.pod:5891 ../src/guestfs-actions.pod:6528
6690 #: ../src/guestfs-actions.pod:6544 ../src/guestfs-actions.pod:6561
6691 #: ../src/guestfs-actions.pod:6592 ../src/guestfs-actions.pod:7266
6692 #: ../src/guestfs-actions.pod:7285 ../src/guestfs-actions.pod:7303
6693 #: ../src/guestfs-actions.pod:7477 ../src/guestfs-actions.pod:7757
6694 msgid ""
6695 "This function returns a string, or NULL on error.  I<The caller must free "
6696 "the returned string after use>."
6697 msgstr ""
6698
6699 #. type: =head2
6700 #: ../src/guestfs-actions.pod:368
6701 msgid "guestfs_aug_init"
6702 msgstr ""
6703
6704 #. type: verbatim
6705 #: ../src/guestfs-actions.pod:370
6706 #, no-wrap
6707 msgid ""
6708 " int\n"
6709 " guestfs_aug_init (guestfs_h *g,\n"
6710 "                   const char *root,\n"
6711 "                   int flags);\n"
6712 "\n"
6713 msgstr ""
6714
6715 #. type: textblock
6716 #: ../src/guestfs-actions.pod:375 ../fish/guestfish-actions.pod:237
6717 msgid ""
6718 "Create a new Augeas handle for editing configuration files.  If there was "
6719 "any previous Augeas handle associated with this guestfs session, then it is "
6720 "closed."
6721 msgstr ""
6722
6723 #. type: textblock
6724 #: ../src/guestfs-actions.pod:379
6725 msgid "You must call this before using any other C<guestfs_aug_*> commands."
6726 msgstr ""
6727
6728 #. type: textblock
6729 #: ../src/guestfs-actions.pod:382 ../fish/guestfish-actions.pod:244
6730 msgid ""
6731 "C<root> is the filesystem root.  C<root> must not be NULL, use C</> instead."
6732 msgstr ""
6733
6734 #. type: textblock
6735 #: ../src/guestfs-actions.pod:385 ../fish/guestfish-actions.pod:247
6736 msgid ""
6737 "The flags are the same as the flags defined in E<lt>augeas.hE<gt>, the "
6738 "logical I<or> of the following integers:"
6739 msgstr ""
6740
6741 #. type: =item
6742 #: ../src/guestfs-actions.pod:391 ../fish/guestfish-actions.pod:253
6743 msgid "C<AUG_SAVE_BACKUP> = 1"
6744 msgstr "C<AUG_SAVE_BACKUP> = 1"
6745
6746 #. type: textblock
6747 #: ../src/guestfs-actions.pod:393 ../fish/guestfish-actions.pod:255
6748 msgid "Keep the original file with a C<.augsave> extension."
6749 msgstr ""
6750
6751 #. type: =item
6752 #: ../src/guestfs-actions.pod:395 ../fish/guestfish-actions.pod:257
6753 msgid "C<AUG_SAVE_NEWFILE> = 2"
6754 msgstr "C<AUG_SAVE_NEWFILE> = 2"
6755
6756 #. type: textblock
6757 #: ../src/guestfs-actions.pod:397 ../fish/guestfish-actions.pod:259
6758 msgid ""
6759 "Save changes into a file with extension C<.augnew>, and do not overwrite "
6760 "original.  Overrides C<AUG_SAVE_BACKUP>."
6761 msgstr ""
6762
6763 #. type: =item
6764 #: ../src/guestfs-actions.pod:400 ../fish/guestfish-actions.pod:262
6765 msgid "C<AUG_TYPE_CHECK> = 4"
6766 msgstr "C<AUG_TYPE_CHECK> = 4"
6767
6768 #. type: textblock
6769 #: ../src/guestfs-actions.pod:402 ../fish/guestfish-actions.pod:264
6770 msgid "Typecheck lenses (can be expensive)."
6771 msgstr ""
6772
6773 #. type: =item
6774 #: ../src/guestfs-actions.pod:404 ../fish/guestfish-actions.pod:266
6775 msgid "C<AUG_NO_STDINC> = 8"
6776 msgstr "C<AUG_NO_STDINC> = 8"
6777
6778 #. type: textblock
6779 #: ../src/guestfs-actions.pod:406 ../fish/guestfish-actions.pod:268
6780 msgid "Do not use standard load path for modules."
6781 msgstr ""
6782
6783 #. type: =item
6784 #: ../src/guestfs-actions.pod:408 ../fish/guestfish-actions.pod:270
6785 msgid "C<AUG_SAVE_NOOP> = 16"
6786 msgstr "C<AUG_SAVE_NOOP> = 16"
6787
6788 #. type: textblock
6789 #: ../src/guestfs-actions.pod:410 ../fish/guestfish-actions.pod:272
6790 msgid "Make save a no-op, just record what would have been changed."
6791 msgstr ""
6792
6793 #. type: =item
6794 #: ../src/guestfs-actions.pod:412 ../fish/guestfish-actions.pod:274
6795 msgid "C<AUG_NO_LOAD> = 32"
6796 msgstr "C<AUG_NO_LOAD> = 32"
6797
6798 #. type: textblock
6799 #: ../src/guestfs-actions.pod:414
6800 msgid "Do not load the tree in C<guestfs_aug_init>."
6801 msgstr ""
6802
6803 #. type: textblock
6804 #: ../src/guestfs-actions.pod:418
6805 msgid "To close the handle, you can call C<guestfs_aug_close>."
6806 msgstr ""
6807
6808 #. type: textblock
6809 #: ../src/guestfs-actions.pod:420 ../fish/guestfish-actions.pod:282
6810 msgid "To find out more about Augeas, see L<http://augeas.net/>."
6811 msgstr ""
6812
6813 #. type: =head2
6814 #: ../src/guestfs-actions.pod:426
6815 msgid "guestfs_aug_insert"
6816 msgstr ""
6817
6818 #. type: verbatim
6819 #: ../src/guestfs-actions.pod:428
6820 #, no-wrap
6821 msgid ""
6822 " int\n"
6823 " guestfs_aug_insert (guestfs_h *g,\n"
6824 "                     const char *augpath,\n"
6825 "                     const char *label,\n"
6826 "                     int before);\n"
6827 "\n"
6828 msgstr ""
6829
6830 #. type: textblock
6831 #: ../src/guestfs-actions.pod:434 ../fish/guestfish-actions.pod:288
6832 msgid ""
6833 "Create a new sibling C<label> for C<path>, inserting it into the tree before "
6834 "or after C<path> (depending on the boolean flag C<before>)."
6835 msgstr ""
6836
6837 #. type: textblock
6838 #: ../src/guestfs-actions.pod:438 ../fish/guestfish-actions.pod:292
6839 msgid ""
6840 "C<path> must match exactly one existing node in the tree, and C<label> must "
6841 "be a label, ie. not contain C</>, C<*> or end with a bracketed index C<[N]>."
6842 msgstr ""
6843
6844 #. type: =head2
6845 #: ../src/guestfs-actions.pod:446
6846 msgid "guestfs_aug_load"
6847 msgstr ""
6848
6849 #. type: verbatim
6850 #: ../src/guestfs-actions.pod:448
6851 #, no-wrap
6852 msgid ""
6853 " int\n"
6854 " guestfs_aug_load (guestfs_h *g);\n"
6855 "\n"
6856 msgstr ""
6857
6858 #. type: textblock
6859 #: ../src/guestfs-actions.pod:451 ../fish/guestfish-actions.pod:300
6860 msgid "Load files into the tree."
6861 msgstr "Завантажити файли до ієрархії."
6862
6863 #. type: textblock
6864 #: ../src/guestfs-actions.pod:453 ../fish/guestfish-actions.pod:302
6865 msgid "See C<aug_load> in the Augeas documentation for the full gory details."
6866 msgstr ""
6867
6868 #. type: =head2
6869 #: ../src/guestfs-actions.pod:460
6870 msgid "guestfs_aug_ls"
6871 msgstr ""
6872
6873 #. type: verbatim
6874 #: ../src/guestfs-actions.pod:462
6875 #, no-wrap
6876 msgid ""
6877 " char **\n"
6878 " guestfs_aug_ls (guestfs_h *g,\n"
6879 "                 const char *augpath);\n"
6880 "\n"
6881 msgstr ""
6882
6883 #. type: textblock
6884 #: ../src/guestfs-actions.pod:466
6885 msgid ""
6886 "This is just a shortcut for listing C<guestfs_aug_match> C<path/*> and "
6887 "sorting the resulting nodes into alphabetical order."
6888 msgstr ""
6889
6890 #. type: textblock
6891 #: ../src/guestfs-actions.pod:469 ../src/guestfs-actions.pod:485
6892 #: ../src/guestfs-actions.pod:631 ../src/guestfs-actions.pod:1079
6893 #: ../src/guestfs-actions.pod:1375 ../src/guestfs-actions.pod:1394
6894 #: ../src/guestfs-actions.pod:1497 ../src/guestfs-actions.pod:1516
6895 #: ../src/guestfs-actions.pod:1762 ../src/guestfs-actions.pod:2206
6896 #: ../src/guestfs-actions.pod:2222 ../src/guestfs-actions.pod:2241
6897 #: ../src/guestfs-actions.pod:2284 ../src/guestfs-actions.pod:2308
6898 #: ../src/guestfs-actions.pod:2379 ../src/guestfs-actions.pod:2428
6899 #: ../src/guestfs-actions.pod:2685 ../src/guestfs-actions.pod:3059
6900 #: ../src/guestfs-actions.pod:3335 ../src/guestfs-actions.pod:3649
6901 #: ../src/guestfs-actions.pod:3666 ../src/guestfs-actions.pod:3686
6902 #: ../src/guestfs-actions.pod:3746 ../src/guestfs-actions.pod:3851
6903 #: ../src/guestfs-actions.pod:4259 ../src/guestfs-actions.pod:5026
6904 #: ../src/guestfs-actions.pod:5636 ../src/guestfs-actions.pod:5762
6905 #: ../src/guestfs-actions.pod:5876 ../src/guestfs-actions.pod:6608
6906 #: ../src/guestfs-actions.pod:6669 ../src/guestfs-actions.pod:6724
6907 #: ../src/guestfs-actions.pod:6870 ../src/guestfs-actions.pod:6894
6908 #: ../src/guestfs-actions.pod:7370 ../src/guestfs-actions.pod:7390
6909 #: ../src/guestfs-actions.pod:7437 ../src/guestfs-actions.pod:7609
6910 #: ../src/guestfs-actions.pod:7628 ../src/guestfs-actions.pod:7714
6911 #: ../src/guestfs-actions.pod:7733 ../src/guestfs-actions.pod:7779
6912 #: ../src/guestfs-actions.pod:7798
6913 msgid ""
6914 "This function returns a NULL-terminated array of strings (like L<environ(3)"
6915 ">), or NULL if there was an error.  I<The caller must free the strings and "
6916 "the array after use>."
6917 msgstr ""
6918
6919 #. type: textblock
6920 #: ../src/guestfs-actions.pod:473 ../src/guestfs-actions.pod:1004
6921 #: ../src/guestfs-actions.pod:1022 ../src/guestfs-actions.pod:1432
6922 #: ../src/guestfs-actions.pod:3413 ../src/guestfs-actions.pod:3444
6923 #: ../src/guestfs-actions.pod:4100 ../src/guestfs-actions.pod:4150
6924 #: ../src/guestfs-actions.pod:4337 ../src/guestfs-actions.pod:4370
6925 #: ../src/guestfs-actions.pod:4533 ../src/guestfs-actions.pod:5030
6926 #: ../src/guestfs-actions.pod:5577 ../src/guestfs-actions.pod:5974
6927 #: ../src/guestfs-actions.pod:5988 ../src/guestfs-actions.pod:6000
6928 #: ../src/guestfs-actions.pod:6449 ../src/guestfs-actions.pod:7108
6929 #: ../src/guestfs-actions.pod:7121 ../src/guestfs-actions.pod:7354
6930 #: ../src/guestfs-actions.pod:7597
6931 msgid "(Added in 0.8)"
6932 msgstr ""
6933
6934 #. type: =head2
6935 #: ../src/guestfs-actions.pod:475
6936 msgid "guestfs_aug_match"
6937 msgstr ""
6938
6939 #. type: verbatim
6940 #: ../src/guestfs-actions.pod:477
6941 #, no-wrap
6942 msgid ""
6943 " char **\n"
6944 " guestfs_aug_match (guestfs_h *g,\n"
6945 "                    const char *augpath);\n"
6946 "\n"
6947 msgstr ""
6948
6949 #. type: textblock
6950 #: ../src/guestfs-actions.pod:481 ../fish/guestfish-actions.pod:316
6951 msgid ""
6952 "Returns a list of paths which match the path expression C<path>.  The "
6953 "returned paths are sufficiently qualified so that they match exactly one "
6954 "node in the current tree."
6955 msgstr ""
6956
6957 #. type: =head2
6958 #: ../src/guestfs-actions.pod:491
6959 msgid "guestfs_aug_mv"
6960 msgstr ""
6961
6962 #. type: verbatim
6963 #: ../src/guestfs-actions.pod:493
6964 #, no-wrap
6965 msgid ""
6966 " int\n"
6967 " guestfs_aug_mv (guestfs_h *g,\n"
6968 "                 const char *src,\n"
6969 "                 const char *dest);\n"
6970 "\n"
6971 msgstr ""
6972
6973 #. type: textblock
6974 #: ../src/guestfs-actions.pod:498 ../fish/guestfish-actions.pod:324
6975 msgid ""
6976 "Move the node C<src> to C<dest>.  C<src> must match exactly one node.  "
6977 "C<dest> is overwritten if it exists."
6978 msgstr ""
6979
6980 #. type: =head2
6981 #: ../src/guestfs-actions.pod:505
6982 msgid "guestfs_aug_rm"
6983 msgstr ""
6984
6985 #. type: verbatim
6986 #: ../src/guestfs-actions.pod:507
6987 #, no-wrap
6988 msgid ""
6989 " int\n"
6990 " guestfs_aug_rm (guestfs_h *g,\n"
6991 "                 const char *augpath);\n"
6992 "\n"
6993 msgstr ""
6994
6995 #. type: textblock
6996 #: ../src/guestfs-actions.pod:511 ../fish/guestfish-actions.pod:331
6997 msgid "Remove C<path> and all of its children."
6998 msgstr ""
6999
7000 #. type: textblock
7001 #: ../src/guestfs-actions.pod:513 ../fish/guestfish-actions.pod:333
7002 msgid "On success this returns the number of entries which were removed."
7003 msgstr ""
7004
7005 #. type: =head2
7006 #: ../src/guestfs-actions.pod:519
7007 msgid "guestfs_aug_save"
7008 msgstr ""
7009
7010 #. type: verbatim
7011 #: ../src/guestfs-actions.pod:521
7012 #, no-wrap
7013 msgid ""
7014 " int\n"
7015 " guestfs_aug_save (guestfs_h *g);\n"
7016 "\n"
7017 msgstr ""
7018
7019 #. type: textblock
7020 #: ../src/guestfs-actions.pod:524 ../fish/guestfish-actions.pod:339
7021 msgid "This writes all pending changes to disk."
7022 msgstr ""
7023
7024 #. type: textblock
7025 #: ../src/guestfs-actions.pod:526
7026 msgid ""
7027 "The flags which were passed to C<guestfs_aug_init> affect exactly how files "
7028 "are saved."
7029 msgstr ""
7030
7031 #. type: =head2
7032 #: ../src/guestfs-actions.pod:533
7033 msgid "guestfs_aug_set"
7034 msgstr ""
7035
7036 #. type: verbatim
7037 #: ../src/guestfs-actions.pod:535
7038 #, no-wrap
7039 msgid ""
7040 " int\n"
7041 " guestfs_aug_set (guestfs_h *g,\n"
7042 "                  const char *augpath,\n"
7043 "                  const char *val);\n"
7044 "\n"
7045 msgstr ""
7046
7047 #. type: textblock
7048 #: ../src/guestfs-actions.pod:540 ../fish/guestfish-actions.pod:348
7049 msgid "Set the value associated with C<path> to C<val>."
7050 msgstr ""
7051
7052 #. type: textblock
7053 #: ../src/guestfs-actions.pod:542
7054 msgid ""
7055 "In the Augeas API, it is possible to clear a node by setting the value to "
7056 "NULL.  Due to an oversight in the libguestfs API you cannot do that with "
7057 "this call.  Instead you must use the C<guestfs_aug_clear> call."
7058 msgstr ""
7059
7060 #. type: =head2
7061 #: ../src/guestfs-actions.pod:551
7062 msgid "guestfs_available"
7063 msgstr ""
7064
7065 #. type: verbatim
7066 #: ../src/guestfs-actions.pod:553
7067 #, no-wrap
7068 msgid ""
7069 " int\n"
7070 " guestfs_available (guestfs_h *g,\n"
7071 "                    char *const *groups);\n"
7072 "\n"
7073 msgstr ""
7074
7075 #. type: textblock
7076 #: ../src/guestfs-actions.pod:557 ../fish/guestfish-actions.pod:359
7077 msgid ""
7078 "This command is used to check the availability of some groups of "
7079 "functionality in the appliance, which not all builds of the libguestfs "
7080 "appliance will be able to provide."
7081 msgstr ""
7082
7083 #. type: textblock
7084 #: ../src/guestfs-actions.pod:561
7085 msgid ""
7086 "The libguestfs groups, and the functions that those groups correspond to, "
7087 "are listed in L<guestfs(3)/AVAILABILITY>.  You can also fetch this list at "
7088 "runtime by calling C<guestfs_available_all_groups>."
7089 msgstr ""
7090
7091 #. type: textblock
7092 #: ../src/guestfs-actions.pod:566 ../fish/guestfish-actions.pod:368
7093 msgid ""
7094 "The argument C<groups> is a list of group names, eg: C<[\"inotify\", \"augeas"
7095 "\"]> would check for the availability of the Linux inotify functions and "
7096 "Augeas (configuration file editing) functions."
7097 msgstr ""
7098
7099 #. type: textblock
7100 #: ../src/guestfs-actions.pod:571 ../fish/guestfish-actions.pod:373
7101 msgid "The command returns no error if I<all> requested groups are available."
7102 msgstr ""
7103
7104 #. type: textblock
7105 #: ../src/guestfs-actions.pod:573 ../fish/guestfish-actions.pod:375
7106 msgid ""
7107 "It fails with an error if one or more of the requested groups is unavailable "
7108 "in the appliance."
7109 msgstr ""
7110
7111 #. type: textblock
7112 #: ../src/guestfs-actions.pod:576 ../fish/guestfish-actions.pod:378
7113 msgid ""
7114 "If an unknown group name is included in the list of groups then an error is "
7115 "always returned."
7116 msgstr ""
7117
7118 #. type: textblock
7119 #: ../src/guestfs-actions.pod:579 ../fish/guestfish-actions.pod:381
7120 msgid "I<Notes:>"
7121 msgstr "I<Нотатки:>"
7122
7123 #. type: textblock
7124 #: ../src/guestfs-actions.pod:585
7125 msgid "You must call C<guestfs_launch> before calling this function."
7126 msgstr ""
7127
7128 #. type: textblock
7129 #: ../src/guestfs-actions.pod:587 ../fish/guestfish-actions.pod:389
7130 msgid ""
7131 "The reason is because we don't know what groups are supported by the "
7132 "appliance/daemon until it is running and can be queried."
7133 msgstr ""
7134
7135 #. type: textblock
7136 #: ../src/guestfs-actions.pod:593 ../fish/guestfish-actions.pod:395
7137 msgid ""
7138 "If a group of functions is available, this does not necessarily mean that "
7139 "they will work.  You still have to check for errors when calling individual "
7140 "API functions even if they are available."
7141 msgstr ""
7142
7143 #. type: textblock
7144 #: ../src/guestfs-actions.pod:600 ../fish/guestfish-actions.pod:402
7145 msgid ""
7146 "It is usually the job of distro packagers to build complete functionality "
7147 "into the libguestfs appliance.  Upstream libguestfs, if built from source "
7148 "with all requirements satisfied, will support everything."
7149 msgstr ""
7150
7151 #. type: textblock
7152 #: ../src/guestfs-actions.pod:607
7153 msgid ""
7154 "This call was added in version C<1.0.80>.  In previous versions of "
7155 "libguestfs all you could do would be to speculatively execute a command to "
7156 "find out if the daemon implemented it.  See also C<guestfs_version>."
7157 msgstr ""
7158
7159 #. type: textblock
7160 #: ../src/guestfs-actions.pod:616 ../src/guestfs-actions.pod:1177
7161 msgid "(Added in 1.0.80)"
7162 msgstr ""
7163
7164 #. type: =head2
7165 #: ../src/guestfs-actions.pod:618
7166 msgid "guestfs_available_all_groups"
7167 msgstr ""
7168
7169 #. type: verbatim
7170 #: ../src/guestfs-actions.pod:620
7171 #, no-wrap
7172 msgid ""
7173 " char **\n"
7174 " guestfs_available_all_groups (guestfs_h *g);\n"
7175 "\n"
7176 msgstr ""
7177
7178 #. type: textblock
7179 #: ../src/guestfs-actions.pod:623
7180 msgid ""
7181 "This command returns a list of all optional groups that this daemon knows "
7182 "about.  Note this returns both supported and unsupported groups.  To find "
7183 "out which ones the daemon can actually support you have to call "
7184 "C<guestfs_available> on each member of the returned list."
7185 msgstr ""
7186
7187 #. type: textblock
7188 #: ../src/guestfs-actions.pod:629
7189 msgid "See also C<guestfs_available> and L<guestfs(3)/AVAILABILITY>."
7190 msgstr ""
7191
7192 #. type: textblock
7193 #: ../src/guestfs-actions.pod:635
7194 msgid "(Added in 1.3.15)"
7195 msgstr ""
7196
7197 #. type: =head2
7198 #: ../src/guestfs-actions.pod:637
7199 msgid "guestfs_base64_in"
7200 msgstr ""
7201
7202 #. type: verbatim
7203 #: ../src/guestfs-actions.pod:639
7204 #, no-wrap
7205 msgid ""
7206 " int\n"
7207 " guestfs_base64_in (guestfs_h *g,\n"
7208 "                    const char *base64file,\n"
7209 "                    const char *filename);\n"
7210 "\n"
7211 msgstr ""
7212
7213 #. type: textblock
7214 #: ../src/guestfs-actions.pod:644 ../fish/guestfish-actions.pod:432
7215 msgid ""
7216 "This command uploads base64-encoded data from C<base64file> to C<filename>."
7217 msgstr ""
7218
7219 #. type: textblock
7220 #: ../src/guestfs-actions.pod:649 ../src/guestfs-actions.pod:663
7221 msgid "(Added in 1.3.5)"
7222 msgstr ""
7223
7224 #. type: =head2
7225 #: ../src/guestfs-actions.pod:651
7226 msgid "guestfs_base64_out"
7227 msgstr ""
7228
7229 #. type: verbatim
7230 #: ../src/guestfs-actions.pod:653
7231 #, no-wrap
7232 msgid ""
7233 " int\n"
7234 " guestfs_base64_out (guestfs_h *g,\n"
7235 "                     const char *filename,\n"
7236 "                     const char *base64file);\n"
7237 "\n"
7238 msgstr ""
7239
7240 #. type: textblock
7241 #: ../src/guestfs-actions.pod:658 ../fish/guestfish-actions.pod:441
7242 msgid ""
7243 "This command downloads the contents of C<filename>, writing it out to local "
7244 "file C<base64file> encoded as base64."
7245 msgstr ""
7246
7247 #. type: =head2
7248 #: ../src/guestfs-actions.pod:665
7249 msgid "guestfs_blockdev_flushbufs"
7250 msgstr ""
7251
7252 #. type: verbatim
7253 #: ../src/guestfs-actions.pod:667
7254 #, no-wrap
7255 msgid ""
7256 " int\n"
7257 " guestfs_blockdev_flushbufs (guestfs_h *g,\n"
7258 "                             const char *device);\n"
7259 "\n"
7260 msgstr ""
7261
7262 #. type: textblock
7263 #: ../src/guestfs-actions.pod:671 ../fish/guestfish-actions.pod:450
7264 msgid ""
7265 "This tells the kernel to flush internal buffers associated with C<device>."
7266 msgstr ""
7267
7268 #. type: textblock
7269 #: ../src/guestfs-actions.pod:674 ../src/guestfs-actions.pod:691
7270 #: ../src/guestfs-actions.pod:706 ../src/guestfs-actions.pod:722
7271 #: ../src/guestfs-actions.pod:740 ../src/guestfs-actions.pod:759
7272 #: ../src/guestfs-actions.pod:773 ../src/guestfs-actions.pod:791
7273 #: ../src/guestfs-actions.pod:805 ../src/guestfs-actions.pod:819
7274 #: ../fish/guestfish-actions.pod:453 ../fish/guestfish-actions.pod:464
7275 #: ../fish/guestfish-actions.pod:473 ../fish/guestfish-actions.pod:483
7276 #: ../fish/guestfish-actions.pod:495 ../fish/guestfish-actions.pod:508
7277 #: ../fish/guestfish-actions.pod:516 ../fish/guestfish-actions.pod:527
7278 #: ../fish/guestfish-actions.pod:535 ../fish/guestfish-actions.pod:543
7279 msgid "This uses the L<blockdev(8)> command."
7280 msgstr ""
7281
7282 #. type: textblock
7283 #: ../src/guestfs-actions.pod:678 ../src/guestfs-actions.pod:695
7284 #: ../src/guestfs-actions.pod:710 ../src/guestfs-actions.pod:726
7285 #: ../src/guestfs-actions.pod:744 ../src/guestfs-actions.pod:763
7286 #: ../src/guestfs-actions.pod:777 ../src/guestfs-actions.pod:795
7287 #: ../src/guestfs-actions.pod:809 ../src/guestfs-actions.pod:823
7288 msgid "(Added in 0.9.3)"
7289 msgstr ""
7290
7291 #. type: =head2
7292 #: ../src/guestfs-actions.pod:680
7293 msgid "guestfs_blockdev_getbsz"
7294 msgstr ""
7295
7296 #. type: verbatim
7297 #: ../src/guestfs-actions.pod:682
7298 #, no-wrap
7299 msgid ""
7300 " int\n"
7301 " guestfs_blockdev_getbsz (guestfs_h *g,\n"
7302 "                          const char *device);\n"
7303 "\n"
7304 msgstr ""
7305
7306 #. type: textblock
7307 #: ../src/guestfs-actions.pod:686 ../fish/guestfish-actions.pod:459
7308 msgid "This returns the block size of a device."
7309 msgstr ""
7310
7311 #. type: textblock
7312 #: ../src/guestfs-actions.pod:688 ../src/guestfs-actions.pod:788
7313 #: ../fish/guestfish-actions.pod:461 ../fish/guestfish-actions.pod:524
7314 msgid ""
7315 "(Note this is different from both I<size in blocks> and I<filesystem block "
7316 "size>)."
7317 msgstr ""
7318
7319 #. type: =head2
7320 #: ../src/guestfs-actions.pod:697
7321 msgid "guestfs_blockdev_getro"
7322 msgstr ""
7323
7324 #. type: verbatim
7325 #: ../src/guestfs-actions.pod:699
7326 #, no-wrap
7327 msgid ""
7328 " int\n"
7329 " guestfs_blockdev_getro (guestfs_h *g,\n"
7330 "                         const char *device);\n"
7331 "\n"
7332 msgstr ""
7333
7334 #. type: textblock
7335 #: ../src/guestfs-actions.pod:703 ../fish/guestfish-actions.pod:470
7336 msgid ""
7337 "Returns a boolean indicating if the block device is read-only (true if read-"
7338 "only, false if not)."
7339 msgstr ""
7340
7341 #. type: textblock
7342 #: ../src/guestfs-actions.pod:708 ../src/guestfs-actions.pod:1415
7343 #: ../src/guestfs-actions.pod:1430 ../src/guestfs-actions.pod:1919
7344 #: ../src/guestfs-actions.pod:1930 ../src/guestfs-actions.pod:2002
7345 #: ../src/guestfs-actions.pod:2057 ../src/guestfs-actions.pod:2072
7346 #: ../src/guestfs-actions.pod:2097 ../src/guestfs-actions.pod:2120
7347 #: ../src/guestfs-actions.pod:3156 ../src/guestfs-actions.pod:3172
7348 #: ../src/guestfs-actions.pod:3190 ../src/guestfs-actions.pod:3352
7349 #: ../src/guestfs-actions.pod:3366 ../src/guestfs-actions.pod:3381
7350 #: ../src/guestfs-actions.pod:3395 ../src/guestfs-actions.pod:3411
7351 #: ../src/guestfs-actions.pod:3426 ../src/guestfs-actions.pod:3442
7352 #: ../src/guestfs-actions.pod:3456 ../src/guestfs-actions.pod:3469
7353 #: ../src/guestfs-actions.pod:3483 ../src/guestfs-actions.pod:3498
7354 #: ../src/guestfs-actions.pod:3513 ../src/guestfs-actions.pod:3526
7355 #: ../src/guestfs-actions.pod:3540 ../src/guestfs-actions.pod:5265
7356 msgid "This function returns a C truth value on success or -1 on error."
7357 msgstr ""
7358
7359 #. type: =head2
7360 #: ../src/guestfs-actions.pod:712
7361 msgid "guestfs_blockdev_getsize64"
7362 msgstr ""
7363
7364 #. type: verbatim
7365 #: ../src/guestfs-actions.pod:714
7366 #, no-wrap
7367 msgid ""
7368 " int64_t\n"
7369 " guestfs_blockdev_getsize64 (guestfs_h *g,\n"
7370 "                             const char *device);\n"
7371 "\n"
7372 msgstr ""
7373
7374 #. type: textblock
7375 #: ../src/guestfs-actions.pod:718 ../fish/guestfish-actions.pod:479
7376 msgid "This returns the size of the device in bytes."
7377 msgstr ""
7378
7379 #. type: textblock
7380 #: ../src/guestfs-actions.pod:720
7381 msgid "See also C<guestfs_blockdev_getsz>."
7382 msgstr ""
7383
7384 #. type: =head2
7385 #: ../src/guestfs-actions.pod:728
7386 msgid "guestfs_blockdev_getss"
7387 msgstr ""
7388
7389 #. type: verbatim
7390 #: ../src/guestfs-actions.pod:730
7391 #, no-wrap
7392 msgid ""
7393 " int\n"
7394 " guestfs_blockdev_getss (guestfs_h *g,\n"
7395 "                         const char *device);\n"
7396 "\n"
7397 msgstr ""
7398
7399 #. type: textblock
7400 #: ../src/guestfs-actions.pod:734 ../fish/guestfish-actions.pod:489
7401 msgid ""
7402 "This returns the size of sectors on a block device.  Usually 512, but can be "
7403 "larger for modern devices."
7404 msgstr ""
7405
7406 #. type: textblock
7407 #: ../src/guestfs-actions.pod:737
7408 msgid ""
7409 "(Note, this is not the size in sectors, use C<guestfs_blockdev_getsz> for "
7410 "that)."
7411 msgstr ""
7412
7413 #. type: =head2
7414 #: ../src/guestfs-actions.pod:746
7415 msgid "guestfs_blockdev_getsz"
7416 msgstr ""
7417
7418 #. type: verbatim
7419 #: ../src/guestfs-actions.pod:748
7420 #, no-wrap
7421 msgid ""
7422 " int64_t\n"
7423 " guestfs_blockdev_getsz (guestfs_h *g,\n"
7424 "                         const char *device);\n"
7425 "\n"
7426 msgstr ""
7427
7428 #. type: textblock
7429 #: ../src/guestfs-actions.pod:752 ../fish/guestfish-actions.pod:501
7430 msgid ""
7431 "This returns the size of the device in units of 512-byte sectors (even if "
7432 "the sectorsize isn't 512 bytes ... weird)."
7433 msgstr ""
7434
7435 #. type: textblock
7436 #: ../src/guestfs-actions.pod:755
7437 msgid ""
7438 "See also C<guestfs_blockdev_getss> for the real sector size of the device, "
7439 "and C<guestfs_blockdev_getsize64> for the more useful I<size in bytes>."
7440 msgstr ""
7441
7442 #. type: =head2
7443 #: ../src/guestfs-actions.pod:765
7444 msgid "guestfs_blockdev_rereadpt"
7445 msgstr ""
7446
7447 #. type: verbatim
7448 #: ../src/guestfs-actions.pod:767
7449 #, no-wrap
7450 msgid ""
7451 " int\n"
7452 " guestfs_blockdev_rereadpt (guestfs_h *g,\n"
7453 "                            const char *device);\n"
7454 "\n"
7455 msgstr ""
7456
7457 #. type: textblock
7458 #: ../src/guestfs-actions.pod:771 ../fish/guestfish-actions.pod:514
7459 msgid "Reread the partition table on C<device>."
7460 msgstr ""
7461
7462 #. type: =head2
7463 #: ../src/guestfs-actions.pod:779
7464 msgid "guestfs_blockdev_setbsz"
7465 msgstr ""
7466
7467 #. type: verbatim
7468 #: ../src/guestfs-actions.pod:781
7469 #, no-wrap
7470 msgid ""
7471 " int\n"
7472 " guestfs_blockdev_setbsz (guestfs_h *g,\n"
7473 "                          const char *device,\n"
7474 "                          int blocksize);\n"
7475 "\n"
7476 msgstr ""
7477
7478 #. type: textblock
7479 #: ../src/guestfs-actions.pod:786 ../fish/guestfish-actions.pod:522
7480 msgid "This sets the block size of a device."
7481 msgstr ""
7482
7483 #. type: =head2
7484 #: ../src/guestfs-actions.pod:797
7485 msgid "guestfs_blockdev_setro"
7486 msgstr ""
7487
7488 #. type: verbatim
7489 #: ../src/guestfs-actions.pod:799
7490 #, no-wrap
7491 msgid ""
7492 " int\n"
7493 " guestfs_blockdev_setro (guestfs_h *g,\n"
7494 "                         const char *device);\n"
7495 "\n"
7496 msgstr ""
7497
7498 #. type: textblock
7499 #: ../src/guestfs-actions.pod:803 ../fish/guestfish-actions.pod:533
7500 msgid "Sets the block device named C<device> to read-only."
7501 msgstr ""
7502
7503 #. type: =head2
7504 #: ../src/guestfs-actions.pod:811
7505 msgid "guestfs_blockdev_setrw"
7506 msgstr ""
7507
7508 #. type: verbatim
7509 #: ../src/guestfs-actions.pod:813
7510 #, no-wrap
7511 msgid ""
7512 " int\n"
7513 " guestfs_blockdev_setrw (guestfs_h *g,\n"
7514 "                         const char *device);\n"
7515 "\n"
7516 msgstr ""
7517
7518 #. type: textblock
7519 #: ../src/guestfs-actions.pod:817 ../fish/guestfish-actions.pod:541
7520 msgid "Sets the block device named C<device> to read-write."
7521 msgstr ""
7522
7523 #. type: =head2
7524 #: ../src/guestfs-actions.pod:825
7525 msgid "guestfs_case_sensitive_path"
7526 msgstr ""
7527
7528 #. type: verbatim
7529 #: ../src/guestfs-actions.pod:827
7530 #, no-wrap
7531 msgid ""
7532 " char *\n"
7533 " guestfs_case_sensitive_path (guestfs_h *g,\n"
7534 "                              const char *path);\n"
7535 "\n"
7536 msgstr ""
7537
7538 #. type: textblock
7539 #: ../src/guestfs-actions.pod:831 ../fish/guestfish-actions.pod:549
7540 msgid ""
7541 "This can be used to resolve case insensitive paths on a filesystem which is "
7542 "case sensitive.  The use case is to resolve paths which you have read from "
7543 "Windows configuration files or the Windows Registry, to the true path."
7544 msgstr ""
7545
7546 #. type: textblock
7547 #: ../src/guestfs-actions.pod:836 ../fish/guestfish-actions.pod:554
7548 msgid ""
7549 "The command handles a peculiarity of the Linux ntfs-3g filesystem driver "
7550 "(and probably others), which is that although the underlying filesystem is "
7551 "case-insensitive, the driver exports the filesystem to Linux as case-"
7552 "sensitive."
7553 msgstr ""
7554
7555 #. type: textblock
7556 #: ../src/guestfs-actions.pod:841 ../fish/guestfish-actions.pod:559
7557 msgid ""
7558 "One consequence of this is that special directories such as C<c:\\windows> "
7559 "may appear as C</WINDOWS> or C</windows> (or other things) depending on the "
7560 "precise details of how they were created.  In Windows itself this would not "
7561 "be a problem."
7562 msgstr ""
7563
7564 #. type: textblock
7565 #: ../src/guestfs-actions.pod:847 ../fish/guestfish-actions.pod:565
7566 msgid ""
7567 "Bug or feature? You decide: L<http://www.tuxera.com/community/ntfs-3g-faq/"
7568 "#posixfilenames1>"
7569 msgstr ""
7570
7571 #. type: textblock
7572 #: ../src/guestfs-actions.pod:850 ../fish/guestfish-actions.pod:568
7573 msgid ""
7574 "This function resolves the true case of each element in the path and returns "
7575 "the case-sensitive path."
7576 msgstr ""
7577
7578 #. type: textblock
7579 #: ../src/guestfs-actions.pod:853
7580 msgid ""
7581 "Thus C<guestfs_case_sensitive_path> (\"/Windows/System32\")  might return C<"
7582 "\"/WINDOWS/system32\"> (the exact return value would depend on details of "
7583 "how the directories were originally created under Windows)."
7584 msgstr ""
7585
7586 #. type: textblock
7587 #: ../src/guestfs-actions.pod:858 ../fish/guestfish-actions.pod:576
7588 msgid "I<Note>: This function does not handle drive names, backslashes etc."
7589 msgstr ""
7590
7591 #. type: textblock
7592 #: ../src/guestfs-actions.pod:861
7593 msgid "See also C<guestfs_realpath>."
7594 msgstr ""
7595
7596 #. type: textblock
7597 #: ../src/guestfs-actions.pod:866 ../src/guestfs-actions.pod:7288
7598 msgid "(Added in 1.0.75)"
7599 msgstr ""
7600
7601 #. type: =head2
7602 #: ../src/guestfs-actions.pod:868
7603 msgid "guestfs_cat"
7604 msgstr ""
7605
7606 #. type: verbatim
7607 #: ../src/guestfs-actions.pod:870
7608 #, no-wrap
7609 msgid ""
7610 " char *\n"
7611 " guestfs_cat (guestfs_h *g,\n"
7612 "              const char *path);\n"
7613 "\n"
7614 msgstr ""
7615
7616 #. type: textblock
7617 #: ../src/guestfs-actions.pod:874 ../src/guestfs-actions.pod:5752
7618 #: ../fish/guestfish-actions.pod:585 ../fish/guestfish-actions.pod:3800
7619 msgid "Return the contents of the file named C<path>."
7620 msgstr ""
7621
7622 #. type: textblock
7623 #: ../src/guestfs-actions.pod:876
7624 msgid ""
7625 "Note that this function cannot correctly handle binary files (specifically, "
7626 "files containing C<\\0> character which is treated as end of string).  For "
7627 "those you need to use the C<guestfs_read_file> or C<guestfs_download> "
7628 "functions which have a more complex interface."
7629 msgstr ""
7630
7631 #. type: textblock
7632 #: ../src/guestfs-actions.pod:884 ../src/guestfs-actions.pod:1063
7633 #: ../src/guestfs-actions.pod:1083 ../src/guestfs-actions.pod:1379
7634 #: ../src/guestfs-actions.pod:1398 ../src/guestfs-actions.pod:1501
7635 #: ../src/guestfs-actions.pod:1520 ../src/guestfs-actions.pod:1766
7636 #: ../src/guestfs-actions.pod:2226 ../src/guestfs-actions.pod:2245
7637 #: ../src/guestfs-actions.pod:2288 ../src/guestfs-actions.pod:2312
7638 #: ../src/guestfs-actions.pod:2329 ../src/guestfs-actions.pod:2358
7639 #: ../src/guestfs-actions.pod:5534 ../src/guestfs-actions.pod:5560
7640 #: ../src/guestfs-actions.pod:5691 ../src/guestfs-actions.pod:5717
7641 #: ../src/guestfs-actions.pod:5741 ../src/guestfs-actions.pod:6673
7642 #: ../src/guestfs-actions.pod:6728 ../src/guestfs-actions.pod:6874
7643 #: ../src/guestfs-actions.pod:6898 ../src/guestfs-actions.pod:7561
7644 #: ../src/guestfs-actions.pod:7587 ../src/guestfs-actions.pod:7613
7645 #: ../src/guestfs-actions.pod:7632 ../src/guestfs-actions.pod:7718
7646 #: ../src/guestfs-actions.pod:7737 ../src/guestfs-actions.pod:7783
7647 #: ../src/guestfs-actions.pod:7802 ../fish/guestfish-actions.pod:592
7648 #: ../fish/guestfish-actions.pod:727 ../fish/guestfish-actions.pod:739
7649 #: ../fish/guestfish-actions.pod:915 ../fish/guestfish-actions.pod:925
7650 #: ../fish/guestfish-actions.pod:992 ../fish/guestfish-actions.pod:1002
7651 #: ../fish/guestfish-actions.pod:1194 ../fish/guestfish-actions.pod:1495
7652 #: ../fish/guestfish-actions.pod:1505 ../fish/guestfish-actions.pod:1533
7653 #: ../fish/guestfish-actions.pod:1548 ../fish/guestfish-actions.pod:1558
7654 #: ../fish/guestfish-actions.pod:1577 ../fish/guestfish-actions.pod:3670
7655 #: ../fish/guestfish-actions.pod:3685 ../fish/guestfish-actions.pod:3761
7656 #: ../fish/guestfish-actions.pod:3778 ../fish/guestfish-actions.pod:3793
7657 #: ../fish/guestfish-actions.pod:4447 ../fish/guestfish-actions.pod:4493
7658 #: ../fish/guestfish-actions.pod:4578 ../fish/guestfish-actions.pod:4593
7659 #: ../fish/guestfish-actions.pod:4997 ../fish/guestfish-actions.pod:5015
7660 #: ../fish/guestfish-actions.pod:5032 ../fish/guestfish-actions.pod:5042
7661 #: ../fish/guestfish-actions.pod:5091 ../fish/guestfish-actions.pod:5101
7662 #: ../fish/guestfish-actions.pod:5130 ../fish/guestfish-actions.pod:5140
7663 msgid ""
7664 "Because of the message protocol, there is a transfer limit of somewhere "
7665 "between 2MB and 4MB.  See L<guestfs(3)/PROTOCOL LIMITS>."
7666 msgstr ""
7667
7668 #. type: textblock
7669 #: ../src/guestfs-actions.pod:887 ../src/guestfs-actions.pod:3670
7670 #: ../src/guestfs-actions.pod:3750 ../src/guestfs-actions.pod:3767
7671 #: ../src/guestfs-actions.pod:3855 ../src/guestfs-actions.pod:4263
7672 #: ../src/guestfs-actions.pod:4277 ../src/guestfs-actions.pod:5640
7673 #: ../src/guestfs-actions.pod:5654 ../src/guestfs-actions.pod:7441
7674 #: ../src/guestfs-actions.pod:7455
7675 msgid "(Added in 0.4)"
7676 msgstr ""
7677
7678 #. type: =head2
7679 #: ../src/guestfs-actions.pod:889
7680 msgid "guestfs_checksum"
7681 msgstr ""
7682
7683 #. type: verbatim
7684 #: ../src/guestfs-actions.pod:891
7685 #, no-wrap
7686 msgid ""
7687 " char *\n"
7688 " guestfs_checksum (guestfs_h *g,\n"
7689 "                   const char *csumtype,\n"
7690 "                   const char *path);\n"
7691 "\n"
7692 msgstr ""
7693
7694 #. type: textblock
7695 #: ../src/guestfs-actions.pod:896 ../fish/guestfish-actions.pod:599
7696 msgid ""
7697 "This call computes the MD5, SHAx or CRC checksum of the file named C<path>."
7698 msgstr ""
7699
7700 #. type: textblock
7701 #: ../src/guestfs-actions.pod:899 ../fish/guestfish-actions.pod:602
7702 msgid ""
7703 "The type of checksum to compute is given by the C<csumtype> parameter which "
7704 "must have one of the following values:"
7705 msgstr ""
7706
7707 #. type: =item
7708 #: ../src/guestfs-actions.pod:904 ../fish/guestfish-actions.pod:607
7709 msgid "C<crc>"
7710 msgstr "C<crc>"
7711
7712 #. type: textblock
7713 #: ../src/guestfs-actions.pod:906 ../fish/guestfish-actions.pod:609
7714 msgid ""
7715 "Compute the cyclic redundancy check (CRC) specified by POSIX for the "
7716 "C<cksum> command."
7717 msgstr ""
7718
7719 #. type: =item
7720 #: ../src/guestfs-actions.pod:909 ../fish/guestfish-actions.pod:612
7721 msgid "C<md5>"
7722 msgstr "C<md5>"
7723
7724 #. type: textblock
7725 #: ../src/guestfs-actions.pod:911 ../fish/guestfish-actions.pod:614
7726 msgid "Compute the MD5 hash (using the C<md5sum> program)."
7727 msgstr ""
7728
7729 #. type: =item
7730 #: ../src/guestfs-actions.pod:913 ../fish/guestfish-actions.pod:616
7731 msgid "C<sha1>"
7732 msgstr "C<sha1>"
7733
7734 #. type: textblock
7735 #: ../src/guestfs-actions.pod:915 ../fish/guestfish-actions.pod:618
7736 msgid "Compute the SHA1 hash (using the C<sha1sum> program)."
7737 msgstr ""
7738
7739 #. type: =item
7740 #: ../src/guestfs-actions.pod:917 ../fish/guestfish-actions.pod:620
7741 msgid "C<sha224>"
7742 msgstr "C<sha224>"
7743
7744 #. type: textblock
7745 #: ../src/guestfs-actions.pod:919 ../fish/guestfish-actions.pod:622
7746 msgid "Compute the SHA224 hash (using the C<sha224sum> program)."
7747 msgstr ""
7748
7749 #. type: =item
7750 #: ../src/guestfs-actions.pod:921 ../fish/guestfish-actions.pod:624
7751 msgid "C<sha256>"
7752 msgstr "C<sha256>"
7753
7754 #. type: textblock
7755 #: ../src/guestfs-actions.pod:923 ../fish/guestfish-actions.pod:626
7756 msgid "Compute the SHA256 hash (using the C<sha256sum> program)."
7757 msgstr ""
7758
7759 #. type: =item
7760 #: ../src/guestfs-actions.pod:925 ../fish/guestfish-actions.pod:628
7761 msgid "C<sha384>"
7762 msgstr "C<sha384>"
7763
7764 #. type: textblock
7765 #: ../src/guestfs-actions.pod:927 ../fish/guestfish-actions.pod:630
7766 msgid "Compute the SHA384 hash (using the C<sha384sum> program)."
7767 msgstr ""
7768
7769 #. type: =item
7770 #: ../src/guestfs-actions.pod:929 ../fish/guestfish-actions.pod:632
7771 msgid "C<sha512>"
7772 msgstr "C<sha512>"
7773
7774 #. type: textblock
7775 #: ../src/guestfs-actions.pod:931 ../fish/guestfish-actions.pod:634
7776 msgid "Compute the SHA512 hash (using the C<sha512sum> program)."
7777 msgstr ""
7778
7779 #. type: textblock
7780 #: ../src/guestfs-actions.pod:935 ../fish/guestfish-actions.pod:638
7781 msgid "The checksum is returned as a printable string."
7782 msgstr ""
7783
7784 #. type: textblock
7785 #: ../src/guestfs-actions.pod:937
7786 msgid "To get the checksum for a device, use C<guestfs_checksum_device>."
7787 msgstr ""
7788
7789 #. type: textblock
7790 #: ../src/guestfs-actions.pod:939
7791 msgid "To get the checksums for many files, use C<guestfs_checksums_out>."
7792 msgstr ""
7793
7794 #. type: textblock
7795 #: ../src/guestfs-actions.pod:944 ../src/guestfs-actions.pod:1252
7796 #: ../src/guestfs-actions.pod:2088 ../src/guestfs-actions.pod:3368
7797 #: ../src/guestfs-actions.pod:3397 ../src/guestfs-actions.pod:3458
7798 #: ../src/guestfs-actions.pod:3485 ../src/guestfs-actions.pod:7144
7799 msgid "(Added in 1.0.2)"
7800 msgstr ""
7801
7802 #. type: =head2
7803 #: ../src/guestfs-actions.pod:946
7804 msgid "guestfs_checksum_device"
7805 msgstr ""
7806
7807 #. type: verbatim
7808 #: ../src/guestfs-actions.pod:948
7809 #, no-wrap
7810 msgid ""
7811 " char *\n"
7812 " guestfs_checksum_device (guestfs_h *g,\n"
7813 "                          const char *csumtype,\n"
7814 "                          const char *device);\n"
7815 "\n"
7816 msgstr ""
7817
7818 #. type: textblock
7819 #: ../src/guestfs-actions.pod:953
7820 msgid ""
7821 "This call computes the MD5, SHAx or CRC checksum of the contents of the "
7822 "device named C<device>.  For the types of checksums supported see the "
7823 "C<guestfs_checksum> command."
7824 msgstr ""
7825
7826 #. type: textblock
7827 #: ../src/guestfs-actions.pod:960 ../src/guestfs-actions.pod:5097
7828 #: ../src/guestfs-actions.pod:5230 ../src/guestfs-actions.pod:5267
7829 #: ../src/guestfs-actions.pod:5285 ../src/guestfs-actions.pod:5461
7830 #: ../src/guestfs-actions.pod:7053 ../src/guestfs-actions.pod:7067
7831 #: ../src/guestfs-actions.pod:7467
7832 msgid "(Added in 1.3.2)"
7833 msgstr ""
7834
7835 #. type: =head2
7836 #: ../src/guestfs-actions.pod:962
7837 msgid "guestfs_checksums_out"
7838 msgstr ""
7839
7840 #. type: verbatim
7841 #: ../src/guestfs-actions.pod:964
7842 #, no-wrap
7843 msgid ""
7844 " int\n"
7845 " guestfs_checksums_out (guestfs_h *g,\n"
7846 "                        const char *csumtype,\n"
7847 "                        const char *directory,\n"
7848 "                        const char *sumsfile);\n"
7849 "\n"
7850 msgstr ""
7851
7852 #. type: textblock
7853 #: ../src/guestfs-actions.pod:970 ../fish/guestfish-actions.pod:656
7854 msgid ""
7855 "This command computes the checksums of all regular files in C<directory> and "
7856 "then emits a list of those checksums to the local output file C<sumsfile>."
7857 msgstr ""
7858
7859 #. type: textblock
7860 #: ../src/guestfs-actions.pod:974 ../fish/guestfish-actions.pod:660
7861 msgid ""
7862 "This can be used for verifying the integrity of a virtual machine.  However "
7863 "to be properly secure you should pay attention to the output of the checksum "
7864 "command (it uses the ones from GNU coreutils).  In particular when the "
7865 "filename is not printable, coreutils uses a special backslash syntax.  For "
7866 "more information, see the GNU coreutils info file."
7867 msgstr ""
7868
7869 #. type: textblock
7870 #: ../src/guestfs-actions.pod:984
7871 msgid "(Added in 1.3.7)"
7872 msgstr ""
7873
7874 #. type: =head2
7875 #: ../src/guestfs-actions.pod:986
7876 msgid "guestfs_chmod"
7877 msgstr ""
7878
7879 #. type: verbatim
7880 #: ../src/guestfs-actions.pod:988
7881 #, no-wrap
7882 msgid ""
7883 " int\n"
7884 " guestfs_chmod (guestfs_h *g,\n"
7885 "                int mode,\n"
7886 "                const char *path);\n"
7887 "\n"
7888 msgstr ""
7889
7890 #. type: textblock
7891 #: ../src/guestfs-actions.pod:993 ../fish/guestfish-actions.pod:674
7892 msgid ""
7893 "Change the mode (permissions) of C<path> to C<mode>.  Only numeric modes are "
7894 "supported."
7895 msgstr ""
7896
7897 #. type: textblock
7898 #: ../src/guestfs-actions.pod:996 ../fish/guestfish-actions.pod:677
7899 msgid ""
7900 "I<Note>: When using this command from guestfish, C<mode> by default would be "
7901 "decimal, unless you prefix it with C<0> to get octal, ie. use C<0700> not "
7902 "C<700>."
7903 msgstr ""
7904
7905 #. type: textblock
7906 #: ../src/guestfs-actions.pod:1000 ../src/guestfs-actions.pod:4514
7907 #: ../src/guestfs-actions.pod:4723 ../src/guestfs-actions.pod:4742
7908 #: ../src/guestfs-actions.pod:4761 ../fish/guestfish-actions.pod:681
7909 #: ../fish/guestfish-actions.pod:3029 ../fish/guestfish-actions.pod:3168
7910 #: ../fish/guestfish-actions.pod:3178 ../fish/guestfish-actions.pod:3188
7911 msgid "The mode actually set is affected by the umask."
7912 msgstr ""
7913
7914 #. type: =head2
7915 #: ../src/guestfs-actions.pod:1006
7916 msgid "guestfs_chown"
7917 msgstr ""
7918
7919 #. type: verbatim
7920 #: ../src/guestfs-actions.pod:1008
7921 #, no-wrap
7922 msgid ""
7923 " int\n"
7924 " guestfs_chown (guestfs_h *g,\n"
7925 "                int owner,\n"
7926 "                int group,\n"
7927 "                const char *path);\n"
7928 "\n"
7929 msgstr ""
7930
7931 #. type: textblock
7932 #: ../src/guestfs-actions.pod:1014 ../fish/guestfish-actions.pod:687
7933 msgid "Change the file owner to C<owner> and group to C<group>."
7934 msgstr ""
7935
7936 #. type: textblock
7937 #: ../src/guestfs-actions.pod:1016 ../src/guestfs-actions.pod:3587
7938 #: ../fish/guestfish-actions.pod:689 ../fish/guestfish-actions.pod:2464
7939 msgid ""
7940 "Only numeric uid and gid are supported.  If you want to use names, you will "
7941 "need to locate and parse the password file yourself (Augeas support makes "
7942 "this relatively easy)."
7943 msgstr ""
7944
7945 #. type: =head2
7946 #: ../src/guestfs-actions.pod:1024
7947 msgid "guestfs_command"
7948 msgstr ""
7949
7950 #. type: verbatim
7951 #: ../src/guestfs-actions.pod:1026
7952 #, no-wrap
7953 msgid ""
7954 " char *\n"
7955 " guestfs_command (guestfs_h *g,\n"
7956 "                  char *const *arguments);\n"
7957 "\n"
7958 msgstr ""
7959
7960 #. type: textblock
7961 #: ../src/guestfs-actions.pod:1030 ../fish/guestfish-actions.pod:697
7962 msgid ""
7963 "This call runs a command from the guest filesystem.  The filesystem must be "
7964 "mounted, and must contain a compatible operating system (ie. something "
7965 "Linux, with the same or compatible processor architecture)."
7966 msgstr ""
7967
7968 #. type: textblock
7969 #: ../src/guestfs-actions.pod:1035
7970 msgid ""
7971 "The single parameter is an argv-style list of arguments.  The first element "
7972 "is the name of the program to run.  Subsequent elements are parameters.  The "
7973 "list must be non-empty (ie. must contain a program name).  Note that the "
7974 "command runs directly, and is I<not> invoked via the shell (see "
7975 "C<guestfs_sh>)."
7976 msgstr ""
7977
7978 #. type: textblock
7979 #: ../src/guestfs-actions.pod:1042 ../fish/guestfish-actions.pod:709
7980 msgid "The return value is anything printed to I<stdout> by the command."
7981 msgstr ""
7982
7983 #. type: textblock
7984 #: ../src/guestfs-actions.pod:1045 ../fish/guestfish-actions.pod:712
7985 msgid ""
7986 "If the command returns a non-zero exit status, then this function returns an "
7987 "error message.  The error message string is the content of I<stderr> from "
7988 "the command."
7989 msgstr ""
7990
7991 #. type: textblock
7992 #: ../src/guestfs-actions.pod:1049 ../fish/guestfish-actions.pod:716
7993 msgid ""
7994 "The C<$PATH> environment variable will contain at least C</usr/bin> and C</"
7995 "bin>.  If you require a program from another location, you should provide "
7996 "the full path in the first parameter."
7997 msgstr ""
7998
7999 #. type: textblock
8000 #: ../src/guestfs-actions.pod:1054 ../fish/guestfish-actions.pod:721
8001 msgid ""
8002 "Shared libraries and data files required by the program must be available on "
8003 "filesystems which are mounted in the correct places.  It is the caller's "
8004 "responsibility to ensure all filesystems that are needed are mounted at the "
8005 "right locations."
8006 msgstr ""
8007
8008 #. type: textblock
8009 #: ../src/guestfs-actions.pod:1066 ../src/guestfs-actions.pod:1086
8010 #: ../src/guestfs-actions.pod:1551
8011 msgid "(Added in 0.9.1)"
8012 msgstr ""
8013
8014 #. type: =head2
8015 #: ../src/guestfs-actions.pod:1068
8016 msgid "guestfs_command_lines"
8017 msgstr ""
8018
8019 #. type: verbatim
8020 #: ../src/guestfs-actions.pod:1070
8021 #, no-wrap
8022 msgid ""
8023 " char **\n"
8024 " guestfs_command_lines (guestfs_h *g,\n"
8025 "                        char *const *arguments);\n"
8026 "\n"
8027 msgstr ""
8028
8029 #. type: textblock
8030 #: ../src/guestfs-actions.pod:1074
8031 msgid ""
8032 "This is the same as C<guestfs_command>, but splits the result into a list of "
8033 "lines."
8034 msgstr ""
8035
8036 #. type: textblock
8037 #: ../src/guestfs-actions.pod:1077
8038 msgid "See also: C<guestfs_sh_lines>"
8039 msgstr ""
8040
8041 #. type: =head2
8042 #: ../src/guestfs-actions.pod:1088
8043 msgid "guestfs_config"
8044 msgstr ""
8045
8046 #. type: verbatim
8047 #: ../src/guestfs-actions.pod:1090
8048 #, no-wrap
8049 msgid ""
8050 " int\n"
8051 " guestfs_config (guestfs_h *g,\n"
8052 "                 const char *qemuparam,\n"
8053 "                 const char *qemuvalue);\n"
8054 "\n"
8055 msgstr ""
8056
8057 #. type: textblock
8058 #: ../src/guestfs-actions.pod:1095 ../fish/guestfish-actions.pod:746
8059 msgid ""
8060 "This can be used to add arbitrary qemu command line parameters of the form "
8061 "I<-param value>.  Actually it's not quite arbitrary - we prevent you from "
8062 "setting some parameters which would interfere with parameters that we use."
8063 msgstr ""
8064
8065 #. type: textblock
8066 #: ../src/guestfs-actions.pod:1100 ../fish/guestfish-actions.pod:751
8067 msgid "The first character of C<param> string must be a C<-> (dash)."
8068 msgstr ""
8069
8070 #. type: textblock
8071 #: ../src/guestfs-actions.pod:1102 ../fish/guestfish-actions.pod:753
8072 msgid "C<value> can be NULL."
8073 msgstr ""
8074
8075 #. type: =head2
8076 #: ../src/guestfs-actions.pod:1108
8077 msgid "guestfs_copy_size"
8078 msgstr ""
8079
8080 #. type: verbatim
8081 #: ../src/guestfs-actions.pod:1110
8082 #, no-wrap
8083 msgid ""
8084 " int\n"
8085 " guestfs_copy_size (guestfs_h *g,\n"
8086 "                    const char *src,\n"
8087 "                    const char *dest,\n"
8088 "                    int64_t size);\n"
8089 "\n"
8090 msgstr ""
8091
8092 #. type: textblock
8093 #: ../src/guestfs-actions.pod:1116 ../fish/guestfish-actions.pod:759
8094 msgid ""
8095 "This command copies exactly C<size> bytes from one source device or file "
8096 "C<src> to another destination device or file C<dest>."
8097 msgstr ""
8098
8099 #. type: textblock
8100 #: ../src/guestfs-actions.pod:1119 ../fish/guestfish-actions.pod:762
8101 msgid ""
8102 "Note this will fail if the source is too short or if the destination is not "
8103 "large enough."
8104 msgstr ""
8105
8106 #. type: textblock
8107 #: ../src/guestfs-actions.pod:1124 ../src/guestfs-actions.pod:1247
8108 #: ../src/guestfs-actions.pod:1278 ../src/guestfs-actions.pod:1323
8109 #: ../src/guestfs-actions.pod:1700 ../src/guestfs-actions.pod:1722
8110 #: ../src/guestfs-actions.pod:3568 ../src/guestfs-actions.pod:7139
8111 #: ../src/guestfs-actions.pod:7173 ../src/guestfs-actions.pod:7654
8112 #: ../src/guestfs-actions.pod:7673
8113 msgid ""
8114 "This long-running command can generate progress notification messages so "
8115 "that the caller can display a progress bar or indicator.  To receive these "
8116 "messages, the caller must register a progress event callback.  See L<guestfs"
8117 "(3)/GUESTFS_EVENT_PROGRESS>."
8118 msgstr ""
8119
8120 #. type: textblock
8121 #: ../src/guestfs-actions.pod:1129 ../src/guestfs-actions.pod:4290
8122 #: ../src/guestfs-actions.pod:5667 ../src/guestfs-actions.pod:7374
8123 #: ../src/guestfs-actions.pod:7394 ../src/guestfs-actions.pod:7480
8124 msgid "(Added in 1.0.87)"
8125 msgstr ""
8126
8127 #. type: =head2
8128 #: ../src/guestfs-actions.pod:1131
8129 msgid "guestfs_cp"
8130 msgstr ""
8131
8132 #. type: verbatim
8133 #: ../src/guestfs-actions.pod:1133
8134 #, no-wrap
8135 msgid ""
8136 " int\n"
8137 " guestfs_cp (guestfs_h *g,\n"
8138 "             const char *src,\n"
8139 "             const char *dest);\n"
8140 "\n"
8141 msgstr ""
8142
8143 #. type: textblock
8144 #: ../src/guestfs-actions.pod:1138 ../fish/guestfish-actions.pod:769
8145 msgid ""
8146 "This copies a file from C<src> to C<dest> where C<dest> is either a "
8147 "destination filename or destination directory."
8148 msgstr ""
8149
8150 #. type: textblock
8151 #: ../src/guestfs-actions.pod:1143 ../src/guestfs-actions.pod:1157
8152 #: ../src/guestfs-actions.pod:1229 ../src/guestfs-actions.pod:1303
8153 #: ../src/guestfs-actions.pod:1417 ../src/guestfs-actions.pod:5044
8154 #: ../src/guestfs-actions.pod:5511
8155 msgid "(Added in 1.0.18)"
8156 msgstr ""
8157
8158 #. type: =head2
8159 #: ../src/guestfs-actions.pod:1145
8160 msgid "guestfs_cp_a"
8161 msgstr ""
8162
8163 #. type: verbatim
8164 #: ../src/guestfs-actions.pod:1147
8165 #, no-wrap
8166 msgid ""
8167 " int\n"
8168 " guestfs_cp_a (guestfs_h *g,\n"
8169 "               const char *src,\n"
8170 "               const char *dest);\n"
8171 "\n"
8172 msgstr ""
8173
8174 #. type: textblock
8175 #: ../src/guestfs-actions.pod:1152 ../fish/guestfish-actions.pod:776
8176 msgid ""
8177 "This copies a file or directory from C<src> to C<dest> recursively using the "
8178 "C<cp -a> command."
8179 msgstr ""
8180
8181 #. type: =head2
8182 #: ../src/guestfs-actions.pod:1159
8183 msgid "guestfs_dd"
8184 msgstr ""
8185
8186 #. type: verbatim
8187 #: ../src/guestfs-actions.pod:1161
8188 #, no-wrap
8189 msgid ""
8190 " int\n"
8191 " guestfs_dd (guestfs_h *g,\n"
8192 "             const char *src,\n"
8193 "             const char *dest);\n"
8194 "\n"
8195 msgstr ""
8196
8197 #. type: textblock
8198 #: ../src/guestfs-actions.pod:1166 ../fish/guestfish-actions.pod:783
8199 msgid ""
8200 "This command copies from one source device or file C<src> to another "
8201 "destination device or file C<dest>.  Normally you would use this to copy to "
8202 "or from a device or partition, for example to duplicate a filesystem."
8203 msgstr ""
8204
8205 #. type: textblock
8206 #: ../src/guestfs-actions.pod:1171
8207 msgid ""
8208 "If the destination is a device, it must be as large or larger than the "
8209 "source file or device, otherwise the copy will fail.  This command cannot do "
8210 "partial copies (see C<guestfs_copy_size>)."
8211 msgstr ""
8212
8213 #. type: =head2
8214 #: ../src/guestfs-actions.pod:1179
8215 msgid "guestfs_df"
8216 msgstr ""
8217
8218 #. type: verbatim
8219 #: ../src/guestfs-actions.pod:1181
8220 #, no-wrap
8221 msgid ""
8222 " char *\n"
8223 " guestfs_df (guestfs_h *g);\n"
8224 "\n"
8225 msgstr ""
8226
8227 #. type: textblock
8228 #: ../src/guestfs-actions.pod:1184 ../fish/guestfish-actions.pod:796
8229 msgid "This command runs the C<df> command to report disk space used."
8230 msgstr ""
8231
8232 #. type: textblock
8233 #: ../src/guestfs-actions.pod:1186 ../src/guestfs-actions.pod:1203
8234 msgid ""
8235 "This command is mostly useful for interactive sessions.  It is I<not> "
8236 "intended that you try to parse the output string.  Use C<guestfs_statvfs> "
8237 "from programs."
8238 msgstr ""
8239
8240 #. type: textblock
8241 #: ../src/guestfs-actions.pod:1193 ../src/guestfs-actions.pod:1210
8242 #: ../src/guestfs-actions.pod:1328 ../src/guestfs-actions.pod:2291
8243 #: ../src/guestfs-actions.pod:2315 ../src/guestfs-actions.pod:2383
8244 #: ../src/guestfs-actions.pod:4400 ../src/guestfs-actions.pod:4944
8245 #: ../src/guestfs-actions.pod:6877 ../src/guestfs-actions.pod:6901
8246 #: ../src/guestfs-actions.pod:7520 ../src/guestfs-actions.pod:7533
8247 #: ../src/guestfs-actions.pod:7546
8248 msgid "(Added in 1.0.54)"
8249 msgstr ""
8250
8251 #. type: =head2
8252 #: ../src/guestfs-actions.pod:1195
8253 msgid "guestfs_df_h"
8254 msgstr ""
8255
8256 #. type: verbatim
8257 #: ../src/guestfs-actions.pod:1197
8258 #, no-wrap
8259 msgid ""
8260 " char *\n"
8261 " guestfs_df_h (guestfs_h *g);\n"
8262 "\n"
8263 msgstr ""
8264
8265 #. type: textblock
8266 #: ../src/guestfs-actions.pod:1200 ../fish/guestfish-actions.pod:806
8267 msgid ""
8268 "This command runs the C<df -h> command to report disk space used in human-"
8269 "readable format."
8270 msgstr ""
8271
8272 #. type: =head2
8273 #: ../src/guestfs-actions.pod:1212
8274 msgid "guestfs_dmesg"
8275 msgstr ""
8276
8277 #. type: verbatim
8278 #: ../src/guestfs-actions.pod:1214
8279 #, no-wrap
8280 msgid ""
8281 " char *\n"
8282 " guestfs_dmesg (guestfs_h *g);\n"
8283 "\n"
8284 msgstr ""
8285
8286 #. type: textblock
8287 #: ../src/guestfs-actions.pod:1217 ../fish/guestfish-actions.pod:817
8288 msgid ""
8289 "This returns the kernel messages (C<dmesg> output) from the guest kernel.  "
8290 "This is sometimes useful for extended debugging of problems."
8291 msgstr ""
8292
8293 #. type: textblock
8294 #: ../src/guestfs-actions.pod:1221
8295 msgid ""
8296 "Another way to get the same information is to enable verbose messages with "
8297 "C<guestfs_set_verbose> or by setting the environment variable "
8298 "C<LIBGUESTFS_DEBUG=1> before running the program."
8299 msgstr ""
8300
8301 #. type: =head2
8302 #: ../src/guestfs-actions.pod:1231
8303 msgid "guestfs_download"
8304 msgstr ""
8305
8306 #. type: verbatim
8307 #: ../src/guestfs-actions.pod:1233
8308 #, no-wrap
8309 msgid ""
8310 " int\n"
8311 " guestfs_download (guestfs_h *g,\n"
8312 "                   const char *remotefilename,\n"
8313 "                   const char *filename);\n"
8314 "\n"
8315 msgstr ""
8316
8317 #. type: textblock
8318 #: ../src/guestfs-actions.pod:1238 ../src/guestfs-actions.pod:1263
8319 #: ../fish/guestfish-actions.pod:830 ../fish/guestfish-actions.pod:843
8320 msgid ""
8321 "Download file C<remotefilename> and save it as C<filename> on the local "
8322 "machine."
8323 msgstr ""
8324
8325 #. type: textblock
8326 #: ../src/guestfs-actions.pod:1241 ../src/guestfs-actions.pod:7133
8327 #: ../fish/guestfish-actions.pod:833 ../fish/guestfish-actions.pod:4751
8328 msgid "C<filename> can also be a named pipe."
8329 msgstr ""
8330
8331 #. type: textblock
8332 #: ../src/guestfs-actions.pod:1243
8333 msgid "See also C<guestfs_upload>, C<guestfs_cat>."
8334 msgstr ""
8335
8336 #. type: =head2
8337 #: ../src/guestfs-actions.pod:1254
8338 msgid "guestfs_download_offset"
8339 msgstr ""
8340
8341 #. type: verbatim
8342 #: ../src/guestfs-actions.pod:1256
8343 #, no-wrap
8344 msgid ""
8345 " int\n"
8346 " guestfs_download_offset (guestfs_h *g,\n"
8347 "                          const char *remotefilename,\n"
8348 "                          const char *filename,\n"
8349 "                          int64_t offset,\n"
8350 "                          int64_t size);\n"
8351 "\n"
8352 msgstr ""
8353
8354 #. type: textblock
8355 #: ../src/guestfs-actions.pod:1266 ../fish/guestfish-actions.pod:846
8356 msgid ""
8357 "C<remotefilename> is read for C<size> bytes starting at C<offset> (this "
8358 "region must be within the file or device)."
8359 msgstr ""
8360
8361 #. type: textblock
8362 #: ../src/guestfs-actions.pod:1269
8363 msgid ""
8364 "Note that there is no limit on the amount of data that can be downloaded "
8365 "with this call, unlike with C<guestfs_pread>, and this call always reads the "
8366 "full amount unless an error occurs."
8367 msgstr ""
8368
8369 #. type: textblock
8370 #: ../src/guestfs-actions.pod:1274
8371 msgid "See also C<guestfs_download>, C<guestfs_pread>."
8372 msgstr ""
8373
8374 #. type: textblock
8375 #: ../src/guestfs-actions.pod:1283 ../src/guestfs-actions.pod:7178
8376 msgid "(Added in 1.5.17)"
8377 msgstr ""
8378
8379 #. type: =head2
8380 #: ../src/guestfs-actions.pod:1285
8381 msgid "guestfs_drop_caches"
8382 msgstr ""
8383
8384 #. type: verbatim
8385 #: ../src/guestfs-actions.pod:1287
8386 #, no-wrap
8387 msgid ""
8388 " int\n"
8389 " guestfs_drop_caches (guestfs_h *g,\n"
8390 "                      int whattodrop);\n"
8391 "\n"
8392 msgstr ""
8393
8394 #. type: textblock
8395 #: ../src/guestfs-actions.pod:1291 ../fish/guestfish-actions.pod:862
8396 msgid ""
8397 "This instructs the guest kernel to drop its page cache, and/or dentries and "
8398 "inode caches.  The parameter C<whattodrop> tells the kernel what precisely "
8399 "to drop, see L<http://linux-mm.org/Drop_Caches>"
8400 msgstr ""
8401
8402 #. type: textblock
8403 #: ../src/guestfs-actions.pod:1296 ../fish/guestfish-actions.pod:867
8404 msgid "Setting C<whattodrop> to 3 should drop everything."
8405 msgstr ""
8406
8407 #. type: textblock
8408 #: ../src/guestfs-actions.pod:1298 ../fish/guestfish-actions.pod:869
8409 msgid ""
8410 "This automatically calls L<sync(2)> before the operation, so that the "
8411 "maximum guest memory is freed."
8412 msgstr ""
8413
8414 #. type: =head2
8415 #: ../src/guestfs-actions.pod:1305
8416 msgid "guestfs_du"
8417 msgstr ""
8418
8419 #. type: verbatim
8420 #: ../src/guestfs-actions.pod:1307
8421 #, no-wrap
8422 msgid ""
8423 " int64_t\n"
8424 " guestfs_du (guestfs_h *g,\n"
8425 "             const char *path);\n"
8426 "\n"
8427 msgstr ""
8428
8429 #. type: textblock
8430 #: ../src/guestfs-actions.pod:1311 ../fish/guestfish-actions.pod:876
8431 msgid ""
8432 "This command runs the C<du -s> command to estimate file space usage for "
8433 "C<path>."
8434 msgstr ""
8435
8436 #. type: textblock
8437 #: ../src/guestfs-actions.pod:1314 ../fish/guestfish-actions.pod:879
8438 msgid ""
8439 "C<path> can be a file or a directory.  If C<path> is a directory then the "
8440 "estimate includes the contents of the directory and all subdirectories "
8441 "(recursively)."
8442 msgstr ""
8443
8444 #. type: textblock
8445 #: ../src/guestfs-actions.pod:1318 ../fish/guestfish-actions.pod:883
8446 msgid ""
8447 "The result is the estimated size in I<kilobytes> (ie. units of 1024 bytes)."
8448 msgstr ""
8449
8450 #. type: =head2
8451 #: ../src/guestfs-actions.pod:1330
8452 msgid "guestfs_e2fsck_f"
8453 msgstr ""
8454
8455 #. type: verbatim
8456 #: ../src/guestfs-actions.pod:1332
8457 #, no-wrap
8458 msgid ""
8459 " int\n"
8460 " guestfs_e2fsck_f (guestfs_h *g,\n"
8461 "                   const char *device);\n"
8462 "\n"
8463 msgstr ""
8464
8465 #. type: textblock
8466 #: ../src/guestfs-actions.pod:1336 ../fish/guestfish-actions.pod:890
8467 msgid ""
8468 "This runs C<e2fsck -p -f device>, ie. runs the ext2/ext3 filesystem checker "
8469 "on C<device>, noninteractively (I<-p>), even if the filesystem appears to be "
8470 "clean (I<-f>)."
8471 msgstr ""
8472
8473 #. type: textblock
8474 #: ../src/guestfs-actions.pod:1340
8475 msgid ""
8476 "This command is only needed because of C<guestfs_resize2fs> (q.v.).  "
8477 "Normally you should use C<guestfs_fsck>."
8478 msgstr ""
8479
8480 #. type: textblock
8481 #: ../src/guestfs-actions.pod:1345
8482 msgid "(Added in 1.0.29)"
8483 msgstr ""
8484
8485 #. type: =head2
8486 #: ../src/guestfs-actions.pod:1347
8487 msgid "guestfs_echo_daemon"
8488 msgstr ""
8489
8490 #. type: verbatim
8491 #: ../src/guestfs-actions.pod:1349
8492 #, no-wrap
8493 msgid ""
8494 " char *\n"
8495 " guestfs_echo_daemon (guestfs_h *g,\n"
8496 "                      char *const *words);\n"
8497 "\n"
8498 msgstr ""
8499
8500 #. type: textblock
8501 #: ../src/guestfs-actions.pod:1353 ../fish/guestfish-actions.pod:901
8502 msgid ""
8503 "This command concatenates the list of C<words> passed with single spaces "
8504 "between them and returns the resulting string."
8505 msgstr ""
8506
8507 #. type: textblock
8508 #: ../src/guestfs-actions.pod:1356 ../fish/guestfish-actions.pod:904
8509 msgid "You can use this command to test the connection through to the daemon."
8510 msgstr ""
8511
8512 #. type: textblock
8513 #: ../src/guestfs-actions.pod:1358
8514 msgid "See also C<guestfs_ping_daemon>."
8515 msgstr ""
8516
8517 #. type: textblock
8518 #: ../src/guestfs-actions.pod:1363 ../src/guestfs-actions.pod:2099
8519 #: ../src/guestfs-actions.pod:6349
8520 msgid "(Added in 1.0.69)"
8521 msgstr ""
8522
8523 #. type: =head2
8524 #: ../src/guestfs-actions.pod:1365
8525 msgid "guestfs_egrep"
8526 msgstr ""
8527
8528 #. type: verbatim
8529 #: ../src/guestfs-actions.pod:1367
8530 #, no-wrap
8531 msgid ""
8532 " char **\n"
8533 " guestfs_egrep (guestfs_h *g,\n"
8534 "                const char *regex,\n"
8535 "                const char *path);\n"
8536 "\n"
8537 msgstr ""
8538
8539 #. type: textblock
8540 #: ../src/guestfs-actions.pod:1372 ../fish/guestfish-actions.pod:912
8541 msgid ""
8542 "This calls the external C<egrep> program and returns the matching lines."
8543 msgstr ""
8544
8545 #. type: textblock
8546 #: ../src/guestfs-actions.pod:1382 ../src/guestfs-actions.pod:1401
8547 #: ../src/guestfs-actions.pod:1458 ../src/guestfs-actions.pod:1504
8548 #: ../src/guestfs-actions.pod:1523 ../src/guestfs-actions.pod:2229
8549 #: ../src/guestfs-actions.pod:2248 ../src/guestfs-actions.pod:2404
8550 #: ../src/guestfs-actions.pod:2417 ../src/guestfs-actions.pod:2432
8551 #: ../src/guestfs-actions.pod:2478 ../src/guestfs-actions.pod:2500
8552 #: ../src/guestfs-actions.pod:2513 ../src/guestfs-actions.pod:3780
8553 #: ../src/guestfs-actions.pod:3794 ../src/guestfs-actions.pod:3807
8554 #: ../src/guestfs-actions.pod:3821 ../src/guestfs-actions.pod:4822
8555 #: ../src/guestfs-actions.pod:5845 ../src/guestfs-actions.pod:5894
8556 #: ../src/guestfs-actions.pod:6745 ../src/guestfs-actions.pod:6757
8557 #: ../src/guestfs-actions.pod:6770 ../src/guestfs-actions.pod:6783
8558 #: ../src/guestfs-actions.pod:6805 ../src/guestfs-actions.pod:6818
8559 #: ../src/guestfs-actions.pod:6831 ../src/guestfs-actions.pod:6844
8560 #: ../src/guestfs-actions.pod:7616 ../src/guestfs-actions.pod:7635
8561 #: ../src/guestfs-actions.pod:7721 ../src/guestfs-actions.pod:7740
8562 #: ../src/guestfs-actions.pod:7786 ../src/guestfs-actions.pod:7805
8563 msgid "(Added in 1.0.66)"
8564 msgstr ""
8565
8566 #. type: =head2
8567 #: ../src/guestfs-actions.pod:1384
8568 msgid "guestfs_egrepi"
8569 msgstr ""
8570
8571 #. type: verbatim
8572 #: ../src/guestfs-actions.pod:1386
8573 #, no-wrap
8574 msgid ""
8575 " char **\n"
8576 " guestfs_egrepi (guestfs_h *g,\n"
8577 "                 const char *regex,\n"
8578 "                 const char *path);\n"
8579 "\n"
8580 msgstr ""
8581
8582 #. type: textblock
8583 #: ../src/guestfs-actions.pod:1391 ../fish/guestfish-actions.pod:922
8584 msgid ""
8585 "This calls the external C<egrep -i> program and returns the matching lines."
8586 msgstr ""
8587
8588 #. type: =head2
8589 #: ../src/guestfs-actions.pod:1403
8590 msgid "guestfs_equal"
8591 msgstr ""
8592
8593 #. type: verbatim
8594 #: ../src/guestfs-actions.pod:1405
8595 #, no-wrap
8596 msgid ""
8597 " int\n"
8598 " guestfs_equal (guestfs_h *g,\n"
8599 "                const char *file1,\n"
8600 "                const char *file2);\n"
8601 "\n"
8602 msgstr ""
8603
8604 #. type: textblock
8605 #: ../src/guestfs-actions.pod:1410 ../fish/guestfish-actions.pod:932
8606 msgid ""
8607 "This compares the two files C<file1> and C<file2> and returns true if their "
8608 "content is exactly equal, or false otherwise."
8609 msgstr ""
8610
8611 #. type: textblock
8612 #: ../src/guestfs-actions.pod:1413 ../fish/guestfish-actions.pod:935
8613 msgid "The external L<cmp(1)> program is used for the comparison."
8614 msgstr ""
8615
8616 #. type: =head2
8617 #: ../src/guestfs-actions.pod:1419
8618 msgid "guestfs_exists"
8619 msgstr ""
8620
8621 #. type: verbatim
8622 #: ../src/guestfs-actions.pod:1421
8623 #, no-wrap
8624 msgid ""
8625 " int\n"
8626 " guestfs_exists (guestfs_h *g,\n"
8627 "                 const char *path);\n"
8628 "\n"
8629 msgstr ""
8630
8631 #. type: textblock
8632 #: ../src/guestfs-actions.pod:1425 ../fish/guestfish-actions.pod:941
8633 msgid ""
8634 "This returns C<true> if and only if there is a file, directory (or anything) "
8635 "with the given C<path> name."
8636 msgstr ""
8637
8638 #. type: textblock
8639 #: ../src/guestfs-actions.pod:1428
8640 msgid "See also C<guestfs_is_file>, C<guestfs_is_dir>, C<guestfs_stat>."
8641 msgstr ""
8642
8643 #. type: =head2
8644 #: ../src/guestfs-actions.pod:1434
8645 msgid "guestfs_fallocate"
8646 msgstr ""
8647
8648 #. type: verbatim
8649 #: ../src/guestfs-actions.pod:1436
8650 #, no-wrap
8651 msgid ""
8652 " int\n"
8653 " guestfs_fallocate (guestfs_h *g,\n"
8654 "                    const char *path,\n"
8655 "                    int len);\n"
8656 "\n"
8657 msgstr ""
8658
8659 #. type: textblock
8660 #: ../src/guestfs-actions.pod:1441 ../src/guestfs-actions.pod:1467
8661 #: ../fish/guestfish-actions.pod:950 ../fish/guestfish-actions.pod:969
8662 msgid ""
8663 "This command preallocates a file (containing zero bytes) named C<path> of "
8664 "size C<len> bytes.  If the file exists already, it is overwritten."
8665 msgstr ""
8666
8667 #. type: textblock
8668 #: ../src/guestfs-actions.pod:1445 ../fish/guestfish-actions.pod:954
8669 msgid ""
8670 "Do not confuse this with the guestfish-specific C<alloc> command which "
8671 "allocates a file in the host and attaches it as a device."
8672 msgstr ""
8673
8674 #. type: textblock
8675 #: ../src/guestfs-actions.pod:1451 ../fish/guestfish-actions.pod:958
8676 msgid ""
8677 "This function is deprecated.  In new code, use the C<fallocate64> call "
8678 "instead."
8679 msgstr ""
8680
8681 #. type: =head2
8682 #: ../src/guestfs-actions.pod:1460
8683 msgid "guestfs_fallocate64"
8684 msgstr ""
8685
8686 #. type: verbatim
8687 #: ../src/guestfs-actions.pod:1462
8688 #, no-wrap
8689 msgid ""
8690 " int\n"
8691 " guestfs_fallocate64 (guestfs_h *g,\n"
8692 "                      const char *path,\n"
8693 "                      int64_t len);\n"
8694 "\n"
8695 msgstr ""
8696
8697 #. type: textblock
8698 #: ../src/guestfs-actions.pod:1471
8699 msgid ""
8700 "Note that this call allocates disk blocks for the file.  To create a sparse "
8701 "file use C<guestfs_truncate_size> instead."
8702 msgstr ""
8703
8704 #. type: textblock
8705 #: ../src/guestfs-actions.pod:1474
8706 msgid ""
8707 "The deprecated call C<guestfs_fallocate> does the same, but owing to an "
8708 "oversight it only allowed 30 bit lengths to be specified, effectively "
8709 "limiting the maximum size of files created through that call to 1GB."
8710 msgstr ""
8711
8712 #. type: textblock
8713 #: ../src/guestfs-actions.pod:1479 ../fish/guestfish-actions.pod:981
8714 msgid ""
8715 "Do not confuse this with the guestfish-specific C<alloc> and C<sparse> "
8716 "commands which create a file in the host and attach it as a device."
8717 msgstr ""
8718
8719 #. type: textblock
8720 #: ../src/guestfs-actions.pod:1485
8721 msgid "(Added in 1.3.17)"
8722 msgstr ""
8723
8724 #. type: =head2
8725 #: ../src/guestfs-actions.pod:1487
8726 msgid "guestfs_fgrep"
8727 msgstr ""
8728
8729 #. type: verbatim
8730 #: ../src/guestfs-actions.pod:1489
8731 #, no-wrap
8732 msgid ""
8733 " char **\n"
8734 " guestfs_fgrep (guestfs_h *g,\n"
8735 "                const char *pattern,\n"
8736 "                const char *path);\n"
8737 "\n"
8738 msgstr ""
8739
8740 #. type: textblock
8741 #: ../src/guestfs-actions.pod:1494 ../fish/guestfish-actions.pod:989
8742 msgid ""
8743 "This calls the external C<fgrep> program and returns the matching lines."
8744 msgstr ""
8745
8746 #. type: =head2
8747 #: ../src/guestfs-actions.pod:1506
8748 msgid "guestfs_fgrepi"
8749 msgstr ""
8750
8751 #. type: verbatim
8752 #: ../src/guestfs-actions.pod:1508
8753 #, no-wrap
8754 msgid ""
8755 " char **\n"
8756 " guestfs_fgrepi (guestfs_h *g,\n"
8757 "                 const char *pattern,\n"
8758 "                 const char *path);\n"
8759 "\n"
8760 msgstr ""
8761
8762 #. type: textblock
8763 #: ../src/guestfs-actions.pod:1513 ../fish/guestfish-actions.pod:999
8764 msgid ""
8765 "This calls the external C<fgrep -i> program and returns the matching lines."
8766 msgstr ""
8767
8768 #. type: =head2
8769 #: ../src/guestfs-actions.pod:1525
8770 msgid "guestfs_file"
8771 msgstr ""
8772
8773 #. type: verbatim
8774 #: ../src/guestfs-actions.pod:1527
8775 #, no-wrap
8776 msgid ""
8777 " char *\n"
8778 " guestfs_file (guestfs_h *g,\n"
8779 "               const char *path);\n"
8780 "\n"
8781 msgstr ""
8782
8783 #. type: textblock
8784 #: ../src/guestfs-actions.pod:1531 ../fish/guestfish-actions.pod:1009
8785 msgid ""
8786 "This call uses the standard L<file(1)> command to determine the type or "
8787 "contents of the file."
8788 msgstr ""
8789
8790 #. type: textblock
8791 #: ../src/guestfs-actions.pod:1534 ../fish/guestfish-actions.pod:1012
8792 msgid ""
8793 "This call will also transparently look inside various types of compressed "
8794 "file."
8795 msgstr ""
8796
8797 #. type: textblock
8798 #: ../src/guestfs-actions.pod:1537 ../fish/guestfish-actions.pod:1015
8799 msgid ""
8800 "The exact command which runs is C<file -zb path>.  Note in particular that "
8801 "the filename is not prepended to the output (the I<-b> option)."
8802 msgstr ""
8803
8804 #. type: textblock
8805 #: ../src/guestfs-actions.pod:1541 ../fish/guestfish-actions.pod:1019
8806 msgid ""
8807 "The output depends on the output of the underlying L<file(1)> command and it "
8808 "can change in future in ways beyond our control.  In other words, the output "
8809 "is not guaranteed by the ABI."
8810 msgstr ""
8811
8812 #. type: textblock
8813 #: ../src/guestfs-actions.pod:1545
8814 msgid ""
8815 "See also: L<file(1)>, C<guestfs_vfs_type>, C<guestfs_lstat>, "
8816 "C<guestfs_is_file>, C<guestfs_is_blockdev> (etc), C<guestfs_is_zero>."
8817 msgstr ""
8818
8819 #. type: =head2
8820 #: ../src/guestfs-actions.pod:1553
8821 msgid "guestfs_file_architecture"
8822 msgstr ""
8823
8824 #. type: verbatim
8825 #: ../src/guestfs-actions.pod:1555
8826 #, no-wrap
8827 msgid ""
8828 " char *\n"
8829 " guestfs_file_architecture (guestfs_h *g,\n"
8830 "                            const char *filename);\n"
8831 "\n"
8832 msgstr ""
8833
8834 #. type: textblock
8835 #: ../src/guestfs-actions.pod:1559 ../fish/guestfish-actions.pod:1030
8836 msgid ""
8837 "This detects the architecture of the binary C<filename>, and returns it if "
8838 "known."
8839 msgstr ""
8840
8841 #. type: textblock
8842 #: ../src/guestfs-actions.pod:1562 ../fish/guestfish-actions.pod:1033
8843 msgid "Currently defined architectures are:"
8844 msgstr ""
8845
8846 #. type: =item
8847 #: ../src/guestfs-actions.pod:1566 ../fish/guestfish-actions.pod:1037
8848 msgid "\"i386\""
8849 msgstr "\"i386\""
8850
8851 #. type: textblock
8852 #: ../src/guestfs-actions.pod:1568 ../fish/guestfish-actions.pod:1039
8853 msgid ""
8854 "This string is returned for all 32 bit i386, i486, i586, i686 binaries "
8855 "irrespective of the precise processor requirements of the binary."
8856 msgstr ""
8857
8858 #. type: =item
8859 #: ../src/guestfs-actions.pod:1571 ../fish/guestfish-actions.pod:1042
8860 msgid "\"x86_64\""
8861 msgstr "\"x86_64\""
8862
8863 #. type: textblock
8864 #: ../src/guestfs-actions.pod:1573 ../fish/guestfish-actions.pod:1044
8865 msgid "64 bit x86-64."
8866 msgstr ""
8867
8868 #. type: =item
8869 #: ../src/guestfs-actions.pod:1575 ../fish/guestfish-actions.pod:1046
8870 msgid "\"sparc\""
8871 msgstr ""
8872
8873 #. type: textblock
8874 #: ../src/guestfs-actions.pod:1577 ../fish/guestfish-actions.pod:1048
8875 msgid "32 bit SPARC."
8876 msgstr ""
8877
8878 #. type: =item
8879 #: ../src/guestfs-actions.pod:1579 ../fish/guestfish-actions.pod:1050
8880 msgid "\"sparc64\""
8881 msgstr ""
8882
8883 #. type: textblock
8884 #: ../src/guestfs-actions.pod:1581 ../fish/guestfish-actions.pod:1052
8885 msgid "64 bit SPARC V9 and above."
8886 msgstr ""
8887
8888 #. type: =item
8889 #: ../src/guestfs-actions.pod:1583 ../fish/guestfish-actions.pod:1054
8890 msgid "\"ia64\""
8891 msgstr "\"ia64\""
8892
8893 #. type: textblock
8894 #: ../src/guestfs-actions.pod:1585 ../fish/guestfish-actions.pod:1056
8895 msgid "Intel Itanium."
8896 msgstr "Intel Itanium."
8897
8898 #. type: =item
8899 #: ../src/guestfs-actions.pod:1587 ../fish/guestfish-actions.pod:1058
8900 msgid "\"ppc\""
8901 msgstr ""
8902
8903 #. type: textblock
8904 #: ../src/guestfs-actions.pod:1589 ../fish/guestfish-actions.pod:1060
8905 msgid "32 bit Power PC."
8906 msgstr ""
8907
8908 #. type: =item
8909 #: ../src/guestfs-actions.pod:1591 ../fish/guestfish-actions.pod:1062
8910 msgid "\"ppc64\""
8911 msgstr ""
8912
8913 #. type: textblock
8914 #: ../src/guestfs-actions.pod:1593 ../fish/guestfish-actions.pod:1064
8915 msgid "64 bit Power PC."
8916 msgstr ""
8917
8918 #. type: textblock
8919 #: ../src/guestfs-actions.pod:1597 ../fish/guestfish-actions.pod:1068
8920 msgid "Libguestfs may return other architecture strings in future."
8921 msgstr ""
8922
8923 #. type: textblock
8924 #: ../src/guestfs-actions.pod:1599 ../fish/guestfish-actions.pod:1070
8925 msgid "The function works on at least the following types of files:"
8926 msgstr ""
8927
8928 #. type: textblock
8929 #: ../src/guestfs-actions.pod:1605 ../fish/guestfish-actions.pod:1076
8930 msgid "many types of Un*x and Linux binary"
8931 msgstr ""
8932
8933 #. type: textblock
8934 #: ../src/guestfs-actions.pod:1609 ../fish/guestfish-actions.pod:1080
8935 msgid "many types of Un*x and Linux shared library"
8936 msgstr ""
8937
8938 #. type: textblock
8939 #: ../src/guestfs-actions.pod:1613 ../fish/guestfish-actions.pod:1084
8940 msgid "Windows Win32 and Win64 binaries"
8941 msgstr ""
8942
8943 #. type: textblock
8944 #: ../src/guestfs-actions.pod:1617 ../fish/guestfish-actions.pod:1088
8945 msgid "Windows Win32 and Win64 DLLs"
8946 msgstr ""
8947
8948 #. type: textblock
8949 #: ../src/guestfs-actions.pod:1619 ../fish/guestfish-actions.pod:1090
8950 msgid "Win32 binaries and DLLs return C<i386>."
8951 msgstr ""
8952
8953 #. type: textblock
8954 #: ../src/guestfs-actions.pod:1621 ../fish/guestfish-actions.pod:1092
8955 msgid "Win64 binaries and DLLs return C<x86_64>."
8956 msgstr ""
8957
8958 #. type: textblock
8959 #: ../src/guestfs-actions.pod:1625 ../fish/guestfish-actions.pod:1096
8960 msgid "Linux kernel modules"
8961 msgstr ""
8962
8963 #. type: textblock
8964 #: ../src/guestfs-actions.pod:1629 ../fish/guestfish-actions.pod:1100
8965 msgid "Linux new-style initrd images"
8966 msgstr ""
8967
8968 #. type: textblock
8969 #: ../src/guestfs-actions.pod:1633 ../fish/guestfish-actions.pod:1104
8970 msgid "some non-x86 Linux vmlinuz kernels"
8971 msgstr ""
8972
8973 #. type: textblock
8974 #: ../src/guestfs-actions.pod:1637 ../fish/guestfish-actions.pod:1108
8975 msgid "What it can't do currently:"
8976 msgstr ""
8977
8978 #. type: textblock
8979 #: ../src/guestfs-actions.pod:1643 ../fish/guestfish-actions.pod:1114
8980 msgid "static libraries (libfoo.a)"
8981 msgstr ""
8982
8983 #. type: textblock
8984 #: ../src/guestfs-actions.pod:1647 ../fish/guestfish-actions.pod:1118
8985 msgid "Linux old-style initrd as compressed ext2 filesystem (RHEL 3)"
8986 msgstr ""
8987
8988 #. type: textblock
8989 #: ../src/guestfs-actions.pod:1651 ../fish/guestfish-actions.pod:1122
8990 msgid "x86 Linux vmlinuz kernels"
8991 msgstr ""
8992
8993 #. type: textblock
8994 #: ../src/guestfs-actions.pod:1653 ../fish/guestfish-actions.pod:1124
8995 msgid ""
8996 "x86 vmlinuz images (bzImage format) consist of a mix of 16-, 32- and "
8997 "compressed code, and are horribly hard to unpack.  If you want to find the "
8998 "architecture of a kernel, use the architecture of the associated initrd or "
8999 "kernel module(s) instead."
9000 msgstr ""
9001
9002 #. type: textblock
9003 #: ../src/guestfs-actions.pod:1663 ../src/guestfs-actions.pod:1826
9004 #: ../src/guestfs-actions.pod:1843 ../src/guestfs-actions.pod:2533
9005 #: ../src/guestfs-actions.pod:2623 ../src/guestfs-actions.pod:2689
9006 #: ../src/guestfs-actions.pod:2876 ../src/guestfs-actions.pod:2894
9007 #: ../src/guestfs-actions.pod:2934 ../src/guestfs-actions.pod:3009
9008 #: ../src/guestfs-actions.pod:3102 ../src/guestfs-actions.pod:3339
9009 #: ../src/guestfs-actions.pod:3471
9010 msgid "(Added in 1.5.3)"
9011 msgstr ""
9012
9013 #. type: =head2
9014 #: ../src/guestfs-actions.pod:1665
9015 msgid "guestfs_filesize"
9016 msgstr ""
9017
9018 #. type: verbatim
9019 #: ../src/guestfs-actions.pod:1667
9020 #, no-wrap
9021 msgid ""
9022 " int64_t\n"
9023 " guestfs_filesize (guestfs_h *g,\n"
9024 "                   const char *file);\n"
9025 "\n"
9026 msgstr ""
9027
9028 #. type: textblock
9029 #: ../src/guestfs-actions.pod:1671 ../fish/guestfish-actions.pod:1135
9030 msgid "This command returns the size of C<file> in bytes."
9031 msgstr ""
9032
9033 #. type: textblock
9034 #: ../src/guestfs-actions.pod:1673
9035 msgid ""
9036 "To get other stats about a file, use C<guestfs_stat>, C<guestfs_lstat>, "
9037 "C<guestfs_is_dir>, C<guestfs_is_file> etc.  To get the size of block "
9038 "devices, use C<guestfs_blockdev_getsize64>."
9039 msgstr ""
9040
9041 #. type: textblock
9042 #: ../src/guestfs-actions.pod:1679
9043 msgid "(Added in 1.0.82)"
9044 msgstr ""
9045
9046 #. type: =head2
9047 #: ../src/guestfs-actions.pod:1681
9048 msgid "guestfs_fill"
9049 msgstr ""
9050
9051 #. type: verbatim
9052 #: ../src/guestfs-actions.pod:1683
9053 #, no-wrap
9054 msgid ""
9055 " int\n"
9056 " guestfs_fill (guestfs_h *g,\n"
9057 "               int c,\n"
9058 "               int len,\n"
9059 "               const char *path);\n"
9060 "\n"
9061 msgstr ""
9062
9063 #. type: textblock
9064 #: ../src/guestfs-actions.pod:1689 ../fish/guestfish-actions.pod:1145
9065 msgid ""
9066 "This command creates a new file called C<path>.  The initial content of the "
9067 "file is C<len> octets of C<c>, where C<c> must be a number in the range C<"
9068 "[0..255]>."
9069 msgstr ""
9070
9071 #. type: textblock
9072 #: ../src/guestfs-actions.pod:1693
9073 msgid ""
9074 "To fill a file with zero bytes (sparsely), it is much more efficient to use "
9075 "C<guestfs_truncate_size>.  To create a file with a pattern of repeating "
9076 "bytes use C<guestfs_fill_pattern>."
9077 msgstr ""
9078
9079 #. type: textblock
9080 #: ../src/guestfs-actions.pod:1705
9081 msgid "(Added in 1.0.79)"
9082 msgstr ""
9083
9084 #. type: =head2
9085 #: ../src/guestfs-actions.pod:1707
9086 msgid "guestfs_fill_pattern"
9087 msgstr ""
9088
9089 #. type: verbatim
9090 #: ../src/guestfs-actions.pod:1709
9091 #, no-wrap
9092 msgid ""
9093 " int\n"
9094 " guestfs_fill_pattern (guestfs_h *g,\n"
9095 "                       const char *pattern,\n"
9096 "                       int len,\n"
9097 "                       const char *path);\n"
9098 "\n"
9099 msgstr ""
9100
9101 #. type: textblock
9102 #: ../src/guestfs-actions.pod:1715
9103 msgid ""
9104 "This function is like C<guestfs_fill> except that it creates a new file of "
9105 "length C<len> containing the repeating pattern of bytes in C<pattern>.  The "
9106 "pattern is truncated if necessary to ensure the length of the file is "
9107 "exactly C<len> bytes."
9108 msgstr ""
9109
9110 #. type: textblock
9111 #: ../src/guestfs-actions.pod:1727
9112 msgid "(Added in 1.3.12)"
9113 msgstr ""
9114
9115 #. type: =head2
9116 #: ../src/guestfs-actions.pod:1729
9117 msgid "guestfs_find"
9118 msgstr ""
9119
9120 #. type: verbatim
9121 #: ../src/guestfs-actions.pod:1731
9122 #, no-wrap
9123 msgid ""
9124 " char **\n"
9125 " guestfs_find (guestfs_h *g,\n"
9126 "               const char *directory);\n"
9127 "\n"
9128 msgstr ""
9129
9130 #. type: textblock
9131 #: ../src/guestfs-actions.pod:1735 ../fish/guestfish-actions.pod:1167
9132 msgid ""
9133 "This command lists out all files and directories, recursively, starting at "
9134 "C<directory>.  It is essentially equivalent to running the shell command "
9135 "C<find directory -print> but some post-processing happens on the output, "
9136 "described below."
9137 msgstr ""
9138
9139 #. type: textblock
9140 #: ../src/guestfs-actions.pod:1740 ../fish/guestfish-actions.pod:1172
9141 msgid ""
9142 "This returns a list of strings I<without any prefix>.  Thus if the directory "
9143 "structure was:"
9144 msgstr ""
9145
9146 #. type: verbatim
9147 #: ../src/guestfs-actions.pod:1743 ../fish/guestfish-actions.pod:1175
9148 #, no-wrap
9149 msgid ""
9150 " /tmp/a\n"
9151 " /tmp/b\n"
9152 " /tmp/c/d\n"
9153 "\n"
9154 msgstr ""
9155
9156 #. type: textblock
9157 #: ../src/guestfs-actions.pod:1747
9158 msgid ""
9159 "then the returned list from C<guestfs_find> C</tmp> would be 4 elements:"
9160 msgstr ""
9161
9162 #. type: verbatim
9163 #: ../src/guestfs-actions.pod:1750 ../fish/guestfish-actions.pod:1182
9164 #, no-wrap
9165 msgid ""
9166 " a\n"
9167 " b\n"
9168 " c\n"
9169 " c/d\n"
9170 "\n"
9171 msgstr ""
9172
9173 #. type: textblock
9174 #: ../src/guestfs-actions.pod:1755 ../fish/guestfish-actions.pod:1187
9175 msgid "If C<directory> is not a directory, then this command returns an error."
9176 msgstr ""
9177
9178 #. type: textblock
9179 #: ../src/guestfs-actions.pod:1758 ../fish/guestfish-actions.pod:1190
9180 msgid "The returned list is sorted."
9181 msgstr ""
9182
9183 #. type: textblock
9184 #: ../src/guestfs-actions.pod:1760
9185 msgid "See also C<guestfs_find0>."
9186 msgstr ""
9187
9188 #. type: textblock
9189 #: ../src/guestfs-actions.pod:1769 ../src/guestfs-actions.pod:4227
9190 #: ../src/guestfs-actions.pod:5929
9191 msgid "(Added in 1.0.27)"
9192 msgstr ""
9193
9194 #. type: =head2
9195 #: ../src/guestfs-actions.pod:1771
9196 msgid "guestfs_find0"
9197 msgstr ""
9198
9199 #. type: verbatim
9200 #: ../src/guestfs-actions.pod:1773
9201 #, no-wrap
9202 msgid ""
9203 " int\n"
9204 " guestfs_find0 (guestfs_h *g,\n"
9205 "                const char *directory,\n"
9206 "                const char *files);\n"
9207 "\n"
9208 msgstr ""
9209
9210 #. type: textblock
9211 #: ../src/guestfs-actions.pod:1778 ../fish/guestfish-actions.pod:1201
9212 msgid ""
9213 "This command lists out all files and directories, recursively, starting at "
9214 "C<directory>, placing the resulting list in the external file called "
9215 "C<files>."
9216 msgstr ""
9217
9218 #. type: textblock
9219 #: ../src/guestfs-actions.pod:1782
9220 msgid ""
9221 "This command works the same way as C<guestfs_find> with the following "
9222 "exceptions:"
9223 msgstr ""
9224
9225 #. type: textblock
9226 #: ../src/guestfs-actions.pod:1789 ../fish/guestfish-actions.pod:1212
9227 msgid "The resulting list is written to an external file."
9228 msgstr ""
9229
9230 #. type: textblock
9231 #: ../src/guestfs-actions.pod:1793 ../fish/guestfish-actions.pod:1216
9232 msgid ""
9233 "Items (filenames) in the result are separated by C<\\0> characters.  See "
9234 "L<find(1)> option I<-print0>."
9235 msgstr ""
9236
9237 #. type: textblock
9238 #: ../src/guestfs-actions.pod:1798 ../fish/guestfish-actions.pod:1221
9239 msgid "This command is not limited in the number of names that it can return."
9240 msgstr ""
9241
9242 #. type: textblock
9243 #: ../src/guestfs-actions.pod:1803 ../fish/guestfish-actions.pod:1226
9244 msgid "The result list is not sorted."
9245 msgstr ""
9246
9247 #. type: textblock
9248 #: ../src/guestfs-actions.pod:1809
9249 msgid "(Added in 1.0.74)"
9250 msgstr ""
9251
9252 #. type: =head2
9253 #: ../src/guestfs-actions.pod:1811
9254 msgid "guestfs_findfs_label"
9255 msgstr ""
9256
9257 #. type: verbatim
9258 #: ../src/guestfs-actions.pod:1813
9259 #, no-wrap
9260 msgid ""
9261 " char *\n"
9262 " guestfs_findfs_label (guestfs_h *g,\n"
9263 "                       const char *label);\n"
9264 "\n"
9265 msgstr ""
9266
9267 #. type: textblock
9268 #: ../src/guestfs-actions.pod:1817 ../fish/guestfish-actions.pod:1236
9269 msgid ""
9270 "This command searches the filesystems and returns the one which has the "
9271 "given label.  An error is returned if no such filesystem can be found."
9272 msgstr ""
9273
9274 #. type: textblock
9275 #: ../src/guestfs-actions.pod:1821
9276 msgid "To find the label of a filesystem, use C<guestfs_vfs_label>."
9277 msgstr ""
9278
9279 #. type: =head2
9280 #: ../src/guestfs-actions.pod:1828
9281 msgid "guestfs_findfs_uuid"
9282 msgstr ""
9283
9284 #. type: verbatim
9285 #: ../src/guestfs-actions.pod:1830
9286 #, no-wrap
9287 msgid ""
9288 " char *\n"
9289 " guestfs_findfs_uuid (guestfs_h *g,\n"
9290 "                      const char *uuid);\n"
9291 "\n"
9292 msgstr ""
9293
9294 #. type: textblock
9295 #: ../src/guestfs-actions.pod:1834 ../fish/guestfish-actions.pod:1246
9296 msgid ""
9297 "This command searches the filesystems and returns the one which has the "
9298 "given UUID.  An error is returned if no such filesystem can be found."
9299 msgstr ""
9300
9301 #. type: textblock
9302 #: ../src/guestfs-actions.pod:1838
9303 msgid "To find the UUID of a filesystem, use C<guestfs_vfs_uuid>."
9304 msgstr ""
9305
9306 #. type: =head2
9307 #: ../src/guestfs-actions.pod:1845
9308 msgid "guestfs_fsck"
9309 msgstr ""
9310
9311 #. type: verbatim
9312 #: ../src/guestfs-actions.pod:1847
9313 #, no-wrap
9314 msgid ""
9315 " int\n"
9316 " guestfs_fsck (guestfs_h *g,\n"
9317 "               const char *fstype,\n"
9318 "               const char *device);\n"
9319 "\n"
9320 msgstr ""
9321
9322 #. type: textblock
9323 #: ../src/guestfs-actions.pod:1852 ../fish/guestfish-actions.pod:1256
9324 msgid ""
9325 "This runs the filesystem checker (fsck) on C<device> which should have "
9326 "filesystem type C<fstype>."
9327 msgstr ""
9328
9329 #. type: textblock
9330 #: ../src/guestfs-actions.pod:1855 ../fish/guestfish-actions.pod:1259
9331 msgid ""
9332 "The returned integer is the status.  See L<fsck(8)> for the list of status "
9333 "codes from C<fsck>."
9334 msgstr ""
9335
9336 #. type: textblock
9337 #: ../src/guestfs-actions.pod:1864 ../fish/guestfish-actions.pod:1268
9338 msgid "Multiple status codes can be summed together."
9339 msgstr ""
9340
9341 #. type: textblock
9342 #: ../src/guestfs-actions.pod:1868 ../fish/guestfish-actions.pod:1272
9343 msgid ""
9344 "A non-zero return code can mean \"success\", for example if errors have been "
9345 "corrected on the filesystem."
9346 msgstr ""
9347
9348 #. type: textblock
9349 #: ../src/guestfs-actions.pod:1873 ../fish/guestfish-actions.pod:1277
9350 msgid "Checking or repairing NTFS volumes is not supported (by linux-ntfs)."
9351 msgstr ""
9352
9353 #. type: textblock
9354 #: ../src/guestfs-actions.pod:1878 ../fish/guestfish-actions.pod:1282
9355 msgid ""
9356 "This command is entirely equivalent to running C<fsck -a -t fstype device>."
9357 msgstr ""
9358
9359 #. type: textblock
9360 #: ../src/guestfs-actions.pod:1882 ../src/guestfs-actions.pod:7659
9361 msgid "(Added in 1.0.16)"
9362 msgstr ""
9363
9364 #. type: =head2
9365 #: ../src/guestfs-actions.pod:1884
9366 msgid "guestfs_get_append"
9367 msgstr ""
9368
9369 #. type: verbatim
9370 #: ../src/guestfs-actions.pod:1886
9371 #, no-wrap
9372 msgid ""
9373 " const char *\n"
9374 " guestfs_get_append (guestfs_h *g);\n"
9375 "\n"
9376 msgstr ""
9377
9378 #. type: textblock
9379 #: ../src/guestfs-actions.pod:1889 ../fish/guestfish-actions.pod:1288
9380 msgid ""
9381 "Return the additional kernel options which are added to the guest kernel "
9382 "command line."
9383 msgstr ""
9384
9385 #. type: textblock
9386 #: ../src/guestfs-actions.pod:1892 ../fish/guestfish-actions.pod:1291
9387 msgid "If C<NULL> then no options are added."
9388 msgstr ""
9389
9390 #. type: textblock
9391 #: ../src/guestfs-actions.pod:1894
9392 msgid ""
9393 "This function returns a string which may be NULL.  There is no way to return "
9394 "an error from this function.  The string is owned by the guest handle and "
9395 "must I<not> be freed."
9396 msgstr ""
9397
9398 #. type: textblock
9399 #: ../src/guestfs-actions.pod:1898 ../src/guestfs-actions.pod:5607
9400 #: ../src/guestfs-actions.pod:6089 ../src/guestfs-actions.pod:6512
9401 #: ../src/guestfs-actions.pod:6531 ../src/guestfs-actions.pod:6547
9402 #: ../src/guestfs-actions.pod:6571 ../src/guestfs-actions.pod:7325
9403 #: ../src/guestfs-actions.pod:7340 ../src/guestfs-actions.pod:7702
9404 msgid "(Added in 1.0.26)"
9405 msgstr ""
9406
9407 #. type: =head2
9408 #: ../src/guestfs-actions.pod:1900
9409 msgid "guestfs_get_attach_method"
9410 msgstr ""
9411
9412 #. type: verbatim
9413 #: ../src/guestfs-actions.pod:1902
9414 #, no-wrap
9415 msgid ""
9416 " char *\n"
9417 " guestfs_get_attach_method (guestfs_h *g);\n"
9418 "\n"
9419 msgstr ""
9420
9421 #. type: textblock
9422 #: ../src/guestfs-actions.pod:1905
9423 msgid "Return the current attach method.  See C<guestfs_set_attach_method>."
9424 msgstr ""
9425
9426 #. type: textblock
9427 #: ../src/guestfs-actions.pod:1910 ../src/guestfs-actions.pod:6119
9428 msgid "(Added in 1.9.8)"
9429 msgstr ""
9430
9431 #. type: =head2
9432 #: ../src/guestfs-actions.pod:1912
9433 msgid "guestfs_get_autosync"
9434 msgstr ""
9435
9436 #. type: verbatim
9437 #: ../src/guestfs-actions.pod:1914
9438 #, no-wrap
9439 msgid ""
9440 " int\n"
9441 " guestfs_get_autosync (guestfs_h *g);\n"
9442 "\n"
9443 msgstr ""
9444
9445 #. type: textblock
9446 #: ../src/guestfs-actions.pod:1917 ../fish/guestfish-actions.pod:1303
9447 msgid "Get the autosync flag."
9448 msgstr ""
9449
9450 #. type: =head2
9451 #: ../src/guestfs-actions.pod:1923
9452 msgid "guestfs_get_direct"
9453 msgstr ""
9454
9455 #. type: verbatim
9456 #: ../src/guestfs-actions.pod:1925
9457 #, no-wrap
9458 msgid ""
9459 " int\n"
9460 " guestfs_get_direct (guestfs_h *g);\n"
9461 "\n"
9462 msgstr ""
9463
9464 #. type: textblock
9465 #: ../src/guestfs-actions.pod:1928 ../fish/guestfish-actions.pod:1309
9466 msgid "Return the direct appliance mode flag."
9467 msgstr ""
9468
9469 #. type: textblock
9470 #: ../src/guestfs-actions.pod:1932 ../src/guestfs-actions.pod:6160
9471 msgid "(Added in 1.0.72)"
9472 msgstr ""
9473
9474 #. type: =head2
9475 #: ../src/guestfs-actions.pod:1934
9476 msgid "guestfs_get_e2label"
9477 msgstr ""
9478
9479 #. type: verbatim
9480 #: ../src/guestfs-actions.pod:1936
9481 #, no-wrap
9482 msgid ""
9483 " char *\n"
9484 " guestfs_get_e2label (guestfs_h *g,\n"
9485 "                      const char *device);\n"
9486 "\n"
9487 msgstr ""
9488
9489 #. type: textblock
9490 #: ../src/guestfs-actions.pod:1940 ../fish/guestfish-actions.pod:1315
9491 msgid ""
9492 "This returns the ext2/3/4 filesystem label of the filesystem on C<device>."
9493 msgstr ""
9494
9495 #. type: textblock
9496 #: ../src/guestfs-actions.pod:1946 ../fish/guestfish-actions.pod:1318
9497 msgid ""
9498 "This function is deprecated.  In new code, use the C<vfs_label> call instead."
9499 msgstr ""
9500
9501 #. type: textblock
9502 #: ../src/guestfs-actions.pod:1953 ../src/guestfs-actions.pod:1974
9503 #: ../src/guestfs-actions.pod:6178 ../src/guestfs-actions.pod:6197
9504 msgid "(Added in 1.0.15)"
9505 msgstr ""
9506
9507 #. type: =head2
9508 #: ../src/guestfs-actions.pod:1955
9509 msgid "guestfs_get_e2uuid"
9510 msgstr ""
9511
9512 #. type: verbatim
9513 #: ../src/guestfs-actions.pod:1957
9514 #, no-wrap
9515 msgid ""
9516 " char *\n"
9517 " guestfs_get_e2uuid (guestfs_h *g,\n"
9518 "                     const char *device);\n"
9519 "\n"
9520 msgstr ""
9521
9522 #. type: textblock
9523 #: ../src/guestfs-actions.pod:1961 ../fish/guestfish-actions.pod:1329
9524 msgid ""
9525 "This returns the ext2/3/4 filesystem UUID of the filesystem on C<device>."
9526 msgstr ""
9527
9528 #. type: textblock
9529 #: ../src/guestfs-actions.pod:1967 ../fish/guestfish-actions.pod:1332
9530 msgid ""
9531 "This function is deprecated.  In new code, use the C<vfs_uuid> call instead."
9532 msgstr ""
9533
9534 #. type: =head2
9535 #: ../src/guestfs-actions.pod:1976
9536 msgid "guestfs_get_memsize"
9537 msgstr ""
9538
9539 #. type: verbatim
9540 #: ../src/guestfs-actions.pod:1978
9541 #, no-wrap
9542 msgid ""
9543 " int\n"
9544 " guestfs_get_memsize (guestfs_h *g);\n"
9545 "\n"
9546 msgstr ""
9547
9548 #. type: textblock
9549 #: ../src/guestfs-actions.pod:1981 ../fish/guestfish-actions.pod:1343
9550 msgid ""
9551 "This gets the memory size in megabytes allocated to the qemu subprocess."
9552 msgstr ""
9553
9554 #. type: textblock
9555 #: ../src/guestfs-actions.pod:1984
9556 msgid ""
9557 "If C<guestfs_set_memsize> was not called on this handle, and if "
9558 "C<LIBGUESTFS_MEMSIZE> was not set, then this returns the compiled-in default "
9559 "value for memsize."
9560 msgstr ""
9561
9562 #. type: textblock
9563 #: ../src/guestfs-actions.pod:1988 ../src/guestfs-actions.pod:2069
9564 #: ../src/guestfs-actions.pod:6213 ../src/guestfs-actions.pod:6320
9565 #: ../fish/guestfish-actions.pod:1350 ../fish/guestfish-actions.pod:1401
9566 #: ../fish/guestfish-actions.pod:4126 ../fish/guestfish-actions.pod:4213
9567 msgid ""
9568 "For more information on the architecture of libguestfs, see L<guestfs(3)>."
9569 msgstr ""
9570
9571 #. type: textblock
9572 #: ../src/guestfs-actions.pod:1993 ../src/guestfs-actions.pod:4518
9573 #: ../src/guestfs-actions.pod:4727 ../src/guestfs-actions.pod:4746
9574 #: ../src/guestfs-actions.pod:4765 ../src/guestfs-actions.pod:4777
9575 #: ../src/guestfs-actions.pod:4794 ../src/guestfs-actions.pod:4807
9576 #: ../src/guestfs-actions.pod:5832 ../src/guestfs-actions.pod:6218
9577 #: ../src/guestfs-actions.pod:6479 ../src/guestfs-actions.pod:7094
9578 msgid "(Added in 1.0.55)"
9579 msgstr ""
9580
9581 #. type: =head2
9582 #: ../src/guestfs-actions.pod:1995
9583 msgid "guestfs_get_network"
9584 msgstr ""
9585
9586 #. type: verbatim
9587 #: ../src/guestfs-actions.pod:1997
9588 #, no-wrap
9589 msgid ""
9590 " int\n"
9591 " guestfs_get_network (guestfs_h *g);\n"
9592 "\n"
9593 msgstr ""
9594
9595 #. type: textblock
9596 #: ../src/guestfs-actions.pod:2000 ../fish/guestfish-actions.pod:1357
9597 msgid "This returns the enable network flag."
9598 msgstr ""
9599
9600 #. type: textblock
9601 #: ../src/guestfs-actions.pod:2004 ../src/guestfs-actions.pod:6237
9602 msgid "(Added in 1.5.4)"
9603 msgstr ""
9604
9605 #. type: =head2
9606 #: ../src/guestfs-actions.pod:2006
9607 msgid "guestfs_get_path"
9608 msgstr ""
9609
9610 #. type: verbatim
9611 #: ../src/guestfs-actions.pod:2008
9612 #, no-wrap
9613 msgid ""
9614 " const char *\n"
9615 " guestfs_get_path (guestfs_h *g);\n"
9616 "\n"
9617 msgstr ""
9618
9619 #. type: textblock
9620 #: ../src/guestfs-actions.pod:2011 ../fish/guestfish-actions.pod:1363
9621 msgid "Return the current search path."
9622 msgstr ""
9623
9624 #. type: textblock
9625 #: ../src/guestfs-actions.pod:2013 ../fish/guestfish-actions.pod:1365
9626 msgid ""
9627 "This is always non-NULL.  If it wasn't set already, then this will return "
9628 "the default path."
9629 msgstr ""
9630
9631 #. type: textblock
9632 #: ../src/guestfs-actions.pod:2016 ../src/guestfs-actions.pod:2045
9633 msgid ""
9634 "This function returns a string, or NULL on error.  The string is owned by "
9635 "the guest handle and must I<not> be freed."
9636 msgstr ""
9637
9638 #. type: =head2
9639 #: ../src/guestfs-actions.pod:2021
9640 msgid "guestfs_get_pid"
9641 msgstr ""
9642
9643 #. type: verbatim
9644 #: ../src/guestfs-actions.pod:2023
9645 #, no-wrap
9646 msgid ""
9647 " int\n"
9648 " guestfs_get_pid (guestfs_h *g);\n"
9649 "\n"
9650 msgstr ""
9651
9652 #. type: textblock
9653 #: ../src/guestfs-actions.pod:2026 ../fish/guestfish-actions.pod:1374
9654 msgid ""
9655 "Return the process ID of the qemu subprocess.  If there is no qemu "
9656 "subprocess, then this will return an error."
9657 msgstr ""
9658
9659 #. type: textblock
9660 #: ../src/guestfs-actions.pod:2029 ../fish/guestfish-actions.pod:1377
9661 msgid "This is an internal call used for debugging and testing."
9662 msgstr ""
9663
9664 #. type: textblock
9665 #: ../src/guestfs-actions.pod:2033
9666 msgid "(Added in 1.0.56)"
9667 msgstr ""
9668
9669 #. type: =head2
9670 #: ../src/guestfs-actions.pod:2035
9671 msgid "guestfs_get_qemu"
9672 msgstr ""
9673
9674 #. type: verbatim
9675 #: ../src/guestfs-actions.pod:2037
9676 #, no-wrap
9677 msgid ""
9678 " const char *\n"
9679 " guestfs_get_qemu (guestfs_h *g);\n"
9680 "\n"
9681 msgstr ""
9682
9683 #. type: textblock
9684 #: ../src/guestfs-actions.pod:2040 ../fish/guestfish-actions.pod:1383
9685 msgid "Return the current qemu binary."
9686 msgstr ""
9687
9688 #. type: textblock
9689 #: ../src/guestfs-actions.pod:2042 ../fish/guestfish-actions.pod:1385
9690 msgid ""
9691 "This is always non-NULL.  If it wasn't set already, then this will return "
9692 "the default qemu binary name."
9693 msgstr ""
9694
9695 #. type: textblock
9696 #: ../src/guestfs-actions.pod:2048 ../src/guestfs-actions.pod:6282
9697 msgid "(Added in 1.0.6)"
9698 msgstr ""
9699
9700 #. type: =head2
9701 #: ../src/guestfs-actions.pod:2050
9702 msgid "guestfs_get_recovery_proc"
9703 msgstr ""
9704
9705 #. type: verbatim
9706 #: ../src/guestfs-actions.pod:2052
9707 #, no-wrap
9708 msgid ""
9709 " int\n"
9710 " guestfs_get_recovery_proc (guestfs_h *g);\n"
9711 "\n"
9712 msgstr ""
9713
9714 #. type: textblock
9715 #: ../src/guestfs-actions.pod:2055 ../fish/guestfish-actions.pod:1392
9716 msgid "Return the recovery process enabled flag."
9717 msgstr ""
9718
9719 #. type: textblock
9720 #: ../src/guestfs-actions.pod:2059 ../src/guestfs-actions.pod:3593
9721 #: ../src/guestfs-actions.pod:3922 ../src/guestfs-actions.pod:4325
9722 #: ../src/guestfs-actions.pod:4357 ../src/guestfs-actions.pod:5537
9723 #: ../src/guestfs-actions.pod:5880 ../src/guestfs-actions.pod:6306
9724 #: ../src/guestfs-actions.pod:6997 ../src/guestfs-actions.pod:7017
9725 #: ../src/guestfs-actions.pod:7209
9726 msgid "(Added in 1.0.77)"
9727 msgstr ""
9728
9729 #. type: =head2
9730 #: ../src/guestfs-actions.pod:2061
9731 msgid "guestfs_get_selinux"
9732 msgstr ""
9733
9734 #. type: verbatim
9735 #: ../src/guestfs-actions.pod:2063
9736 #, no-wrap
9737 msgid ""
9738 " int\n"
9739 " guestfs_get_selinux (guestfs_h *g);\n"
9740 "\n"
9741 msgstr ""
9742
9743 #. type: textblock
9744 #: ../src/guestfs-actions.pod:2066
9745 msgid ""
9746 "This returns the current setting of the selinux flag which is passed to the "
9747 "appliance at boot time.  See C<guestfs_set_selinux>."
9748 msgstr ""
9749
9750 #. type: textblock
9751 #: ../src/guestfs-actions.pod:2074 ../src/guestfs-actions.pod:2137
9752 #: ../src/guestfs-actions.pod:6325 ../src/guestfs-actions.pod:6383
9753 msgid "(Added in 1.0.67)"
9754 msgstr ""
9755
9756 #. type: =head2
9757 #: ../src/guestfs-actions.pod:2076
9758 msgid "guestfs_get_state"
9759 msgstr ""
9760
9761 #. type: verbatim
9762 #: ../src/guestfs-actions.pod:2078
9763 #, no-wrap
9764 msgid ""
9765 " int\n"
9766 " guestfs_get_state (guestfs_h *g);\n"
9767 "\n"
9768 msgstr ""
9769
9770 #. type: textblock
9771 #: ../src/guestfs-actions.pod:2081 ../fish/guestfish-actions.pod:1408
9772 msgid ""
9773 "This returns the current state as an opaque integer.  This is only useful "
9774 "for printing debug and internal error messages."
9775 msgstr ""
9776
9777 #. type: textblock
9778 #: ../src/guestfs-actions.pod:2084 ../src/guestfs-actions.pod:3364
9779 #: ../src/guestfs-actions.pod:3393 ../src/guestfs-actions.pod:3454
9780 #: ../src/guestfs-actions.pod:3481 ../fish/guestfish-actions.pod:1411
9781 #: ../fish/guestfish-actions.pod:2331 ../fish/guestfish-actions.pod:2349
9782 #: ../fish/guestfish-actions.pod:2387 ../fish/guestfish-actions.pod:2403
9783 msgid "For more information on states, see L<guestfs(3)>."
9784 msgstr ""
9785
9786 #. type: =head2
9787 #: ../src/guestfs-actions.pod:2090
9788 msgid "guestfs_get_trace"
9789 msgstr ""
9790
9791 #. type: verbatim
9792 #: ../src/guestfs-actions.pod:2092
9793 #, no-wrap
9794 msgid ""
9795 " int\n"
9796 " guestfs_get_trace (guestfs_h *g);\n"
9797 "\n"
9798 msgstr ""
9799
9800 #. type: textblock
9801 #: ../src/guestfs-actions.pod:2095 ../fish/guestfish-actions.pod:1417
9802 msgid "Return the command trace flag."
9803 msgstr ""
9804
9805 #. type: =head2
9806 #: ../src/guestfs-actions.pod:2101
9807 msgid "guestfs_get_umask"
9808 msgstr ""
9809
9810 #. type: verbatim
9811 #: ../src/guestfs-actions.pod:2103
9812 #, no-wrap
9813 msgid ""
9814 " int\n"
9815 " guestfs_get_umask (guestfs_h *g);\n"
9816 "\n"
9817 msgstr ""
9818
9819 #. type: textblock
9820 #: ../src/guestfs-actions.pod:2106
9821 msgid ""
9822 "Return the current umask.  By default the umask is C<022> unless it has been "
9823 "set by calling C<guestfs_umask>."
9824 msgstr ""
9825
9826 #. type: =head2
9827 #: ../src/guestfs-actions.pod:2113
9828 msgid "guestfs_get_verbose"
9829 msgstr ""
9830
9831 #. type: verbatim
9832 #: ../src/guestfs-actions.pod:2115
9833 #, no-wrap
9834 msgid ""
9835 " int\n"
9836 " guestfs_get_verbose (guestfs_h *g);\n"
9837 "\n"
9838 msgstr ""
9839
9840 #. type: textblock
9841 #: ../src/guestfs-actions.pod:2118 ../fish/guestfish-actions.pod:1430
9842 msgid "This returns the verbose messages flag."
9843 msgstr ""
9844
9845 #. type: =head2
9846 #: ../src/guestfs-actions.pod:2124
9847 msgid "guestfs_getcon"
9848 msgstr ""
9849
9850 #. type: verbatim
9851 #: ../src/guestfs-actions.pod:2126
9852 #, no-wrap
9853 msgid ""
9854 " char *\n"
9855 " guestfs_getcon (guestfs_h *g);\n"
9856 "\n"
9857 msgstr ""
9858
9859 #. type: textblock
9860 #: ../src/guestfs-actions.pod:2129 ../fish/guestfish-actions.pod:1436
9861 msgid "This gets the SELinux security context of the daemon."
9862 msgstr ""
9863
9864 #. type: textblock
9865 #: ../src/guestfs-actions.pod:2131
9866 msgid ""
9867 "See the documentation about SELINUX in L<guestfs(3)>, and C<guestfs_setcon>"
9868 msgstr ""
9869
9870 #. type: =head2
9871 #: ../src/guestfs-actions.pod:2139
9872 msgid "guestfs_getxattr"
9873 msgstr ""
9874
9875 #. type: verbatim
9876 #: ../src/guestfs-actions.pod:2141
9877 #, no-wrap
9878 msgid ""
9879 " char *\n"
9880 " guestfs_getxattr (guestfs_h *g,\n"
9881 "                   const char *path,\n"
9882 "                   const char *name,\n"
9883 "                   size_t *size_r);\n"
9884 "\n"
9885 msgstr ""
9886
9887 #. type: textblock
9888 #: ../src/guestfs-actions.pod:2147
9889 msgid ""
9890 "Get a single extended attribute from file C<path> named C<name>.  This call "
9891 "follows symlinks.  If you want to lookup an extended attribute for the "
9892 "symlink itself, use C<guestfs_lgetxattr>."
9893 msgstr ""
9894
9895 #. type: textblock
9896 #: ../src/guestfs-actions.pod:2151 ../src/guestfs-actions.pod:3607
9897 msgid ""
9898 "Normally it is better to get all extended attributes from a file in one go "
9899 "by calling C<guestfs_getxattrs>.  However some Linux filesystem "
9900 "implementations are buggy and do not provide a way to list out attributes.  "
9901 "For these filesystems (notably ntfs-3g)  you have to know the names of the "
9902 "extended attributes you want in advance and call this function."
9903 msgstr ""
9904
9905 #. type: textblock
9906 #: ../src/guestfs-actions.pod:2158 ../src/guestfs-actions.pod:3614
9907 #: ../fish/guestfish-actions.pod:1456 ../fish/guestfish-actions.pod:2483
9908 msgid ""
9909 "Extended attribute values are blobs of binary data.  If there is no extended "
9910 "attribute named C<name>, this returns an error."
9911 msgstr ""
9912
9913 #. type: textblock
9914 #: ../src/guestfs-actions.pod:2161
9915 msgid "See also: C<guestfs_getxattrs>, C<guestfs_lgetxattr>, L<attr(5)>."
9916 msgstr ""
9917
9918 #. type: textblock
9919 #: ../src/guestfs-actions.pod:2163 ../src/guestfs-actions.pod:2354
9920 #: ../src/guestfs-actions.pod:2824 ../src/guestfs-actions.pod:3619
9921 #: ../src/guestfs-actions.pod:5530 ../src/guestfs-actions.pod:5556
9922 #: ../src/guestfs-actions.pod:5737
9923 msgid ""
9924 "This function returns a buffer, or NULL on error.  The size of the returned "
9925 "buffer is written to C<*size_r>.  I<The caller must free the returned buffer "
9926 "after use>."
9927 msgstr ""
9928
9929 #. type: textblock
9930 #: ../src/guestfs-actions.pod:2167 ../src/guestfs-actions.pod:3623
9931 msgid "(Added in 1.7.24)"
9932 msgstr ""
9933
9934 #. type: =head2
9935 #: ../src/guestfs-actions.pod:2169
9936 msgid "guestfs_getxattrs"
9937 msgstr ""
9938
9939 #. type: verbatim
9940 #: ../src/guestfs-actions.pod:2171
9941 #, no-wrap
9942 msgid ""
9943 " struct guestfs_xattr_list *\n"
9944 " guestfs_getxattrs (guestfs_h *g,\n"
9945 "                    const char *path);\n"
9946 "\n"
9947 msgstr ""
9948
9949 #. type: textblock
9950 #: ../src/guestfs-actions.pod:2175 ../fish/guestfish-actions.pod:1465
9951 msgid ""
9952 "This call lists the extended attributes of the file or directory C<path>."
9953 msgstr ""
9954
9955 #. type: textblock
9956 #: ../src/guestfs-actions.pod:2178 ../fish/guestfish-actions.pod:1468
9957 msgid ""
9958 "At the system call level, this is a combination of the L<listxattr(2)> and "
9959 "L<getxattr(2)> calls."
9960 msgstr ""
9961
9962 #. type: textblock
9963 #: ../src/guestfs-actions.pod:2181
9964 msgid "See also: C<guestfs_lgetxattrs>, L<attr(5)>."
9965 msgstr ""
9966
9967 #. type: textblock
9968 #: ../src/guestfs-actions.pod:2183 ../src/guestfs-actions.pod:3635
9969 #: ../src/guestfs-actions.pod:4321
9970 msgid ""
9971 "This function returns a C<struct guestfs_xattr_list *>, or NULL if there was "
9972 "an error.  I<The caller must call C<guestfs_free_xattr_list> after use>."
9973 msgstr ""
9974
9975 #. type: textblock
9976 #: ../src/guestfs-actions.pod:2187 ../src/guestfs-actions.pod:3639
9977 #: ../src/guestfs-actions.pod:3836 ../src/guestfs-actions.pod:3872
9978 #: ../src/guestfs-actions.pod:5910 ../src/guestfs-actions.pod:6402
9979 #: ../src/guestfs-actions.pod:7767
9980 msgid "(Added in 1.0.59)"
9981 msgstr ""
9982
9983 #. type: =head2
9984 #: ../src/guestfs-actions.pod:2189
9985 msgid "guestfs_glob_expand"
9986 msgstr ""
9987
9988 #. type: verbatim
9989 #: ../src/guestfs-actions.pod:2191
9990 #, no-wrap
9991 msgid ""
9992 " char **\n"
9993 " guestfs_glob_expand (guestfs_h *g,\n"
9994 "                      const char *pattern);\n"
9995 "\n"
9996 msgstr ""
9997
9998 #. type: textblock
9999 #: ../src/guestfs-actions.pod:2195 ../fish/guestfish-actions.pod:1477
10000 msgid ""
10001 "This command searches for all the pathnames matching C<pattern> according to "
10002 "the wildcard expansion rules used by the shell."
10003 msgstr ""
10004
10005 #. type: textblock
10006 #: ../src/guestfs-actions.pod:2199 ../fish/guestfish-actions.pod:1481
10007 msgid ""
10008 "If no paths match, then this returns an empty list (note: not an error)."
10009 msgstr ""
10010
10011 #. type: textblock
10012 #: ../src/guestfs-actions.pod:2202 ../fish/guestfish-actions.pod:1484
10013 msgid ""
10014 "It is just a wrapper around the C L<glob(3)> function with flags C<GLOB_MARK|"
10015 "GLOB_BRACE>.  See that manual page for more details."
10016 msgstr ""
10017
10018 #. type: textblock
10019 #: ../src/guestfs-actions.pod:2210 ../src/guestfs-actions.pod:6595
10020 #: ../src/guestfs-actions.pod:6612
10021 msgid "(Added in 1.0.50)"
10022 msgstr ""
10023
10024 #. type: =head2
10025 #: ../src/guestfs-actions.pod:2212
10026 msgid "guestfs_grep"
10027 msgstr ""
10028
10029 #. type: verbatim
10030 #: ../src/guestfs-actions.pod:2214
10031 #, no-wrap
10032 msgid ""
10033 " char **\n"
10034 " guestfs_grep (guestfs_h *g,\n"
10035 "               const char *regex,\n"
10036 "               const char *path);\n"
10037 "\n"
10038 msgstr ""
10039
10040 #. type: textblock
10041 #: ../src/guestfs-actions.pod:2219 ../fish/guestfish-actions.pod:1492
10042 msgid "This calls the external C<grep> program and returns the matching lines."
10043 msgstr ""
10044
10045 #. type: =head2
10046 #: ../src/guestfs-actions.pod:2231
10047 msgid "guestfs_grepi"
10048 msgstr ""
10049
10050 #. type: verbatim
10051 #: ../src/guestfs-actions.pod:2233
10052 #, no-wrap
10053 msgid ""
10054 " char **\n"
10055 " guestfs_grepi (guestfs_h *g,\n"
10056 "                const char *regex,\n"
10057 "                const char *path);\n"
10058 "\n"
10059 msgstr ""
10060
10061 #. type: textblock
10062 #: ../src/guestfs-actions.pod:2238 ../fish/guestfish-actions.pod:1502
10063 msgid ""
10064 "This calls the external C<grep -i> program and returns the matching lines."
10065 msgstr ""
10066
10067 #. type: =head2
10068 #: ../src/guestfs-actions.pod:2250
10069 msgid "guestfs_grub_install"
10070 msgstr ""
10071
10072 #. type: verbatim
10073 #: ../src/guestfs-actions.pod:2252
10074 #, no-wrap
10075 msgid ""
10076 " int\n"
10077 " guestfs_grub_install (guestfs_h *g,\n"
10078 "                       const char *root,\n"
10079 "                       const char *device);\n"
10080 "\n"
10081 msgstr ""
10082
10083 #. type: textblock
10084 #: ../src/guestfs-actions.pod:2257 ../fish/guestfish-actions.pod:1512
10085 msgid ""
10086 "This command installs GRUB (the Grand Unified Bootloader) on C<device>, with "
10087 "the root directory being C<root>."
10088 msgstr ""
10089
10090 #. type: textblock
10091 #: ../src/guestfs-actions.pod:2260 ../fish/guestfish-actions.pod:1515
10092 msgid ""
10093 "Note: If grub-install reports the error \"No suitable drive was found in the "
10094 "generated device map.\" it may be that you need to create a C</boot/grub/"
10095 "device.map> file first that contains the mapping between grub device names "
10096 "and Linux device names.  It is usually sufficient to create a file "
10097 "containing:"
10098 msgstr ""
10099
10100 #. type: verbatim
10101 #: ../src/guestfs-actions.pod:2267 ../fish/guestfish-actions.pod:1522
10102 #, no-wrap
10103 msgid ""
10104 " (hd0) /dev/vda\n"
10105 "\n"
10106 msgstr ""
10107
10108 #. type: textblock
10109 #: ../src/guestfs-actions.pod:2269 ../fish/guestfish-actions.pod:1524
10110 msgid "replacing C</dev/vda> with the name of the installation device."
10111 msgstr ""
10112
10113 #. type: textblock
10114 #: ../src/guestfs-actions.pod:2273
10115 msgid "(Added in 1.0.17)"
10116 msgstr ""
10117
10118 #. type: =head2
10119 #: ../src/guestfs-actions.pod:2275
10120 msgid "guestfs_head"
10121 msgstr ""
10122
10123 #. type: verbatim
10124 #: ../src/guestfs-actions.pod:2277
10125 #, no-wrap
10126 msgid ""
10127 " char **\n"
10128 " guestfs_head (guestfs_h *g,\n"
10129 "               const char *path);\n"
10130 "\n"
10131 msgstr ""
10132
10133 #. type: textblock
10134 #: ../src/guestfs-actions.pod:2281 ../fish/guestfish-actions.pod:1530
10135 msgid ""
10136 "This command returns up to the first 10 lines of a file as a list of strings."
10137 msgstr ""
10138
10139 #. type: =head2
10140 #: ../src/guestfs-actions.pod:2293
10141 msgid "guestfs_head_n"
10142 msgstr ""
10143
10144 #. type: verbatim
10145 #: ../src/guestfs-actions.pod:2295
10146 #, no-wrap
10147 msgid ""
10148 " char **\n"
10149 " guestfs_head_n (guestfs_h *g,\n"
10150 "                 int nrlines,\n"
10151 "                 const char *path);\n"
10152 "\n"
10153 msgstr ""
10154
10155 #. type: textblock
10156 #: ../src/guestfs-actions.pod:2300 ../fish/guestfish-actions.pod:1540
10157 msgid ""
10158 "If the parameter C<nrlines> is a positive number, this returns the first "
10159 "C<nrlines> lines of the file C<path>."
10160 msgstr ""
10161
10162 #. type: textblock
10163 #: ../src/guestfs-actions.pod:2303 ../fish/guestfish-actions.pod:1543
10164 msgid ""
10165 "If the parameter C<nrlines> is a negative number, this returns lines from "
10166 "the file C<path>, excluding the last C<nrlines> lines."
10167 msgstr ""
10168
10169 #. type: textblock
10170 #: ../src/guestfs-actions.pod:2306 ../src/guestfs-actions.pod:6892
10171 #: ../fish/guestfish-actions.pod:1546 ../fish/guestfish-actions.pod:4591
10172 msgid "If the parameter C<nrlines> is zero, this returns an empty list."
10173 msgstr ""
10174
10175 #. type: =head2
10176 #: ../src/guestfs-actions.pod:2317
10177 msgid "guestfs_hexdump"
10178 msgstr ""
10179
10180 #. type: verbatim
10181 #: ../src/guestfs-actions.pod:2319
10182 #, no-wrap
10183 msgid ""
10184 " char *\n"
10185 " guestfs_hexdump (guestfs_h *g,\n"
10186 "                  const char *path);\n"
10187 "\n"
10188 msgstr ""
10189
10190 #. type: textblock
10191 #: ../src/guestfs-actions.pod:2323 ../fish/guestfish-actions.pod:1555
10192 msgid ""
10193 "This runs C<hexdump -C> on the given C<path>.  The result is the human-"
10194 "readable, canonical hex dump of the file."
10195 msgstr ""
10196
10197 #. type: textblock
10198 #: ../src/guestfs-actions.pod:2332 ../src/guestfs-actions.pod:6676
10199 #: ../src/guestfs-actions.pod:6731
10200 msgid "(Added in 1.0.22)"
10201 msgstr ""
10202
10203 #. type: =head2
10204 #: ../src/guestfs-actions.pod:2334
10205 msgid "guestfs_initrd_cat"
10206 msgstr ""
10207
10208 #. type: verbatim
10209 #: ../src/guestfs-actions.pod:2336
10210 #, no-wrap
10211 msgid ""
10212 " char *\n"
10213 " guestfs_initrd_cat (guestfs_h *g,\n"
10214 "                     const char *initrdpath,\n"
10215 "                     const char *filename,\n"
10216 "                     size_t *size_r);\n"
10217 "\n"
10218 msgstr ""
10219
10220 #. type: textblock
10221 #: ../src/guestfs-actions.pod:2342 ../fish/guestfish-actions.pod:1565
10222 msgid ""
10223 "This command unpacks the file C<filename> from the initrd file called "
10224 "C<initrdpath>.  The filename must be given I<without> the initial C</> "
10225 "character."
10226 msgstr ""
10227
10228 #. type: textblock
10229 #: ../src/guestfs-actions.pod:2346 ../fish/guestfish-actions.pod:1569
10230 msgid ""
10231 "For example, in guestfish you could use the following command to examine the "
10232 "boot script (usually called C</init>)  contained in a Linux initrd or "
10233 "initramfs image:"
10234 msgstr ""
10235
10236 #. type: verbatim
10237 #: ../src/guestfs-actions.pod:2350 ../fish/guestfish-actions.pod:1573
10238 #, no-wrap
10239 msgid ""
10240 " initrd-cat /boot/initrd-<version>.img init\n"
10241 "\n"
10242 msgstr ""
10243
10244 #. type: textblock
10245 #: ../src/guestfs-actions.pod:2352
10246 msgid "See also C<guestfs_initrd_list>."
10247 msgstr ""
10248
10249 #. type: =head2
10250 #: ../src/guestfs-actions.pod:2363
10251 msgid "guestfs_initrd_list"
10252 msgstr ""
10253
10254 #. type: verbatim
10255 #: ../src/guestfs-actions.pod:2365
10256 #, no-wrap
10257 msgid ""
10258 " char **\n"
10259 " guestfs_initrd_list (guestfs_h *g,\n"
10260 "                      const char *path);\n"
10261 "\n"
10262 msgstr ""
10263
10264 #. type: textblock
10265 #: ../src/guestfs-actions.pod:2369 ../fish/guestfish-actions.pod:1584
10266 msgid "This command lists out files contained in an initrd."
10267 msgstr ""
10268
10269 #. type: textblock
10270 #: ../src/guestfs-actions.pod:2371 ../fish/guestfish-actions.pod:1586
10271 msgid ""
10272 "The files are listed without any initial C</> character.  The files are "
10273 "listed in the order they appear (not necessarily alphabetical).  Directory "
10274 "names are listed as separate items."
10275 msgstr ""
10276
10277 #. type: textblock
10278 #: ../src/guestfs-actions.pod:2375 ../fish/guestfish-actions.pod:1590
10279 msgid ""
10280 "Old Linux kernels (2.4 and earlier) used a compressed ext2 filesystem as "
10281 "initrd.  We I<only> support the newer initramfs format (compressed cpio "
10282 "files)."
10283 msgstr ""
10284
10285 #. type: =head2
10286 #: ../src/guestfs-actions.pod:2385
10287 msgid "guestfs_inotify_add_watch"
10288 msgstr ""
10289
10290 #. type: verbatim
10291 #: ../src/guestfs-actions.pod:2387
10292 #, no-wrap
10293 msgid ""
10294 " int64_t\n"
10295 " guestfs_inotify_add_watch (guestfs_h *g,\n"
10296 "                            const char *path,\n"
10297 "                            int mask);\n"
10298 "\n"
10299 msgstr ""
10300
10301 #. type: textblock
10302 #: ../src/guestfs-actions.pod:2392 ../fish/guestfish-actions.pod:1598
10303 msgid "Watch C<path> for the events listed in C<mask>."
10304 msgstr ""
10305
10306 #. type: textblock
10307 #: ../src/guestfs-actions.pod:2394 ../fish/guestfish-actions.pod:1600
10308 msgid ""
10309 "Note that if C<path> is a directory then events within that directory are "
10310 "watched, but this does I<not> happen recursively (in subdirectories)."
10311 msgstr ""
10312
10313 #. type: textblock
10314 #: ../src/guestfs-actions.pod:2398 ../fish/guestfish-actions.pod:1604
10315 msgid ""
10316 "Note for non-C or non-Linux callers: the inotify events are defined by the "
10317 "Linux kernel ABI and are listed in C</usr/include/sys/inotify.h>."
10318 msgstr ""
10319
10320 #. type: =head2
10321 #: ../src/guestfs-actions.pod:2406
10322 msgid "guestfs_inotify_close"
10323 msgstr ""
10324
10325 #. type: verbatim
10326 #: ../src/guestfs-actions.pod:2408
10327 #, no-wrap
10328 msgid ""
10329 " int\n"
10330 " guestfs_inotify_close (guestfs_h *g);\n"
10331 "\n"
10332 msgstr ""
10333
10334 #. type: textblock
10335 #: ../src/guestfs-actions.pod:2411 ../fish/guestfish-actions.pod:1612
10336 msgid ""
10337 "This closes the inotify handle which was previously opened by inotify_init.  "
10338 "It removes all watches, throws away any pending events, and deallocates all "
10339 "resources."
10340 msgstr ""
10341
10342 #. type: =head2
10343 #: ../src/guestfs-actions.pod:2419
10344 msgid "guestfs_inotify_files"
10345 msgstr ""
10346
10347 #. type: verbatim
10348 #: ../src/guestfs-actions.pod:2421
10349 #, no-wrap
10350 msgid ""
10351 " char **\n"
10352 " guestfs_inotify_files (guestfs_h *g);\n"
10353 "\n"
10354 msgstr ""
10355
10356 #. type: textblock
10357 #: ../src/guestfs-actions.pod:2424
10358 msgid ""
10359 "This function is a helpful wrapper around C<guestfs_inotify_read> which just "
10360 "returns a list of pathnames of objects that were touched.  The returned "
10361 "pathnames are sorted and deduplicated."
10362 msgstr ""
10363
10364 #. type: =head2
10365 #: ../src/guestfs-actions.pod:2434
10366 msgid "guestfs_inotify_init"
10367 msgstr ""
10368
10369 #. type: verbatim
10370 #: ../src/guestfs-actions.pod:2436
10371 #, no-wrap
10372 msgid ""
10373 " int\n"
10374 " guestfs_inotify_init (guestfs_h *g,\n"
10375 "                       int maxevents);\n"
10376 "\n"
10377 msgstr ""
10378
10379 #. type: textblock
10380 #: ../src/guestfs-actions.pod:2440 ../fish/guestfish-actions.pod:1628
10381 msgid ""
10382 "This command creates a new inotify handle.  The inotify subsystem can be "
10383 "used to notify events which happen to objects in the guest filesystem."
10384 msgstr ""
10385
10386 #. type: textblock
10387 #: ../src/guestfs-actions.pod:2444
10388 msgid ""
10389 "C<maxevents> is the maximum number of events which will be queued up between "
10390 "calls to C<guestfs_inotify_read> or C<guestfs_inotify_files>.  If this is "
10391 "passed as C<0>, then the kernel (or previously set)  default is used.  For "
10392 "Linux 2.6.29 the default was 16384 events.  Beyond this limit, the kernel "
10393 "throws away events, but records the fact that it threw them away by setting "
10394 "a flag C<IN_Q_OVERFLOW> in the returned structure list (see "
10395 "C<guestfs_inotify_read>)."
10396 msgstr ""
10397
10398 #. type: textblock
10399 #: ../src/guestfs-actions.pod:2454
10400 msgid ""
10401 "Before any events are generated, you have to add some watches to the "
10402 "internal watch list.  See: C<guestfs_inotify_add_watch>, "
10403 "C<guestfs_inotify_rm_watch> and C<guestfs_inotify_watch_all>."
10404 msgstr ""
10405
10406 #. type: textblock
10407 #: ../src/guestfs-actions.pod:2460
10408 msgid ""
10409 "Queued up events should be read periodically by calling "
10410 "C<guestfs_inotify_read> (or C<guestfs_inotify_files> which is just a helpful "
10411 "wrapper around C<guestfs_inotify_read>).  If you don't read the events out "
10412 "often enough then you risk the internal queue overflowing."
10413 msgstr ""
10414
10415 #. type: textblock
10416 #: ../src/guestfs-actions.pod:2467
10417 msgid ""
10418 "The handle should be closed after use by calling C<guestfs_inotify_close>.  "
10419 "This also removes any watches automatically."
10420 msgstr ""
10421
10422 #. type: textblock
10423 #: ../src/guestfs-actions.pod:2471 ../fish/guestfish-actions.pod:1659
10424 msgid ""
10425 "See also L<inotify(7)> for an overview of the inotify interface as exposed "
10426 "by the Linux kernel, which is roughly what we expose via libguestfs.  Note "
10427 "that there is one global inotify handle per libguestfs instance."
10428 msgstr ""
10429
10430 #. type: =head2
10431 #: ../src/guestfs-actions.pod:2480
10432 msgid "guestfs_inotify_read"
10433 msgstr ""
10434
10435 #. type: verbatim
10436 #: ../src/guestfs-actions.pod:2482
10437 #, no-wrap
10438 msgid ""
10439 " struct guestfs_inotify_event_list *\n"
10440 " guestfs_inotify_read (guestfs_h *g);\n"
10441 "\n"
10442 msgstr ""
10443
10444 #. type: textblock
10445 #: ../src/guestfs-actions.pod:2485 ../fish/guestfish-actions.pod:1668
10446 msgid ""
10447 "Return the complete queue of events that have happened since the previous "
10448 "read call."
10449 msgstr ""
10450
10451 #. type: textblock
10452 #: ../src/guestfs-actions.pod:2488 ../fish/guestfish-actions.pod:1671
10453 msgid "If no events have happened, this returns an empty list."
10454 msgstr ""
10455
10456 #. type: textblock
10457 #: ../src/guestfs-actions.pod:2490 ../fish/guestfish-actions.pod:1673
10458 msgid ""
10459 "I<Note>: In order to make sure that all events have been read, you must call "
10460 "this function repeatedly until it returns an empty list.  The reason is that "
10461 "the call will read events up to the maximum appliance-to-host message size "
10462 "and leave remaining events in the queue."
10463 msgstr ""
10464
10465 #. type: textblock
10466 #: ../src/guestfs-actions.pod:2496
10467 msgid ""
10468 "This function returns a C<struct guestfs_inotify_event_list *>, or NULL if "
10469 "there was an error.  I<The caller must call "
10470 "C<guestfs_free_inotify_event_list> after use>."
10471 msgstr ""
10472
10473 #. type: =head2
10474 #: ../src/guestfs-actions.pod:2502
10475 msgid "guestfs_inotify_rm_watch"
10476 msgstr ""
10477
10478 #. type: verbatim
10479 #: ../src/guestfs-actions.pod:2504
10480 #, no-wrap
10481 msgid ""
10482 " int\n"
10483 " guestfs_inotify_rm_watch (guestfs_h *g,\n"
10484 "                           int wd);\n"
10485 "\n"
10486 msgstr ""
10487
10488 #. type: textblock
10489 #: ../src/guestfs-actions.pod:2508
10490 msgid ""
10491 "Remove a previously defined inotify watch.  See C<guestfs_inotify_add_watch>."
10492 msgstr ""
10493
10494 #. type: =head2
10495 #: ../src/guestfs-actions.pod:2515
10496 msgid "guestfs_inspect_get_arch"
10497 msgstr ""
10498
10499 #. type: verbatim
10500 #: ../src/guestfs-actions.pod:2517
10501 #, no-wrap
10502 msgid ""
10503 " char *\n"
10504 " guestfs_inspect_get_arch (guestfs_h *g,\n"
10505 "                           const char *root);\n"
10506 "\n"
10507 msgstr ""
10508
10509 #. type: textblock
10510 #: ../src/guestfs-actions.pod:2521
10511 msgid ""
10512 "This returns the architecture of the inspected operating system.  The "
10513 "possible return values are listed under C<guestfs_file_architecture>."
10514 msgstr ""
10515
10516 #. type: textblock
10517 #: ../src/guestfs-actions.pod:2525 ../fish/guestfish-actions.pod:1694
10518 msgid ""
10519 "If the architecture could not be determined, then the string C<unknown> is "
10520 "returned."
10521 msgstr ""
10522
10523 #. type: textblock
10524 #: ../src/guestfs-actions.pod:2528 ../src/guestfs-actions.pod:2618
10525 #: ../src/guestfs-actions.pod:2722 ../src/guestfs-actions.pod:2741
10526 #: ../src/guestfs-actions.pod:2872 ../src/guestfs-actions.pod:2955
10527 #: ../src/guestfs-actions.pod:2983 ../src/guestfs-actions.pod:3004
10528 #: ../src/guestfs-actions.pod:3057 ../src/guestfs-actions.pod:3097
10529 #: ../src/guestfs-actions.pod:3117 ../src/guestfs-actions.pod:3137
10530 #: ../src/guestfs-actions.pod:3154 ../src/guestfs-actions.pod:3170
10531 #: ../src/guestfs-actions.pod:3188 ../src/guestfs-actions.pod:3290
10532 #: ../src/guestfs-actions.pod:3331 ../fish/guestfish-actions.pod:1697
10533 #: ../fish/guestfish-actions.pod:1780 ../fish/guestfish-actions.pod:1859
10534 #: ../fish/guestfish-actions.pod:1871 ../fish/guestfish-actions.pod:1955
10535 #: ../fish/guestfish-actions.pod:2016 ../fish/guestfish-actions.pod:2037
10536 #: ../fish/guestfish-actions.pod:2051 ../fish/guestfish-actions.pod:2091
10537 #: ../fish/guestfish-actions.pod:2123 ../fish/guestfish-actions.pod:2136
10538 #: ../fish/guestfish-actions.pod:2149 ../fish/guestfish-actions.pod:2159
10539 #: ../fish/guestfish-actions.pod:2169 ../fish/guestfish-actions.pod:2181
10540 #: ../fish/guestfish-actions.pod:2277 ../fish/guestfish-actions.pod:2311
10541 msgid "Please read L<guestfs(3)/INSPECTION> for more details."
10542 msgstr ""
10543
10544 #. type: =head2
10545 #: ../src/guestfs-actions.pod:2535
10546 msgid "guestfs_inspect_get_distro"
10547 msgstr ""
10548
10549 #. type: verbatim
10550 #: ../src/guestfs-actions.pod:2537
10551 #, no-wrap
10552 msgid ""
10553 " char *\n"
10554 " guestfs_inspect_get_distro (guestfs_h *g,\n"
10555 "                             const char *root);\n"
10556 "\n"
10557 msgstr ""
10558
10559 #. type: textblock
10560 #: ../src/guestfs-actions.pod:2541 ../fish/guestfish-actions.pod:1703
10561 msgid ""
10562 "This returns the distro (distribution) of the inspected operating system."
10563 msgstr ""
10564
10565 #. type: textblock
10566 #: ../src/guestfs-actions.pod:2544 ../fish/guestfish-actions.pod:1706
10567 msgid "Currently defined distros are:"
10568 msgstr ""
10569
10570 #. type: =item
10571 #: ../src/guestfs-actions.pod:2548 ../fish/guestfish-actions.pod:1710
10572 msgid "\"archlinux\""
10573 msgstr "\"archlinux\""
10574
10575 #. type: textblock
10576 #: ../src/guestfs-actions.pod:2550 ../fish/guestfish-actions.pod:1712
10577 msgid "Arch Linux."
10578 msgstr "Arch Linux."
10579
10580 #. type: =item
10581 #: ../src/guestfs-actions.pod:2552 ../fish/guestfish-actions.pod:1714
10582 #, fuzzy
10583 #| msgid "\"gentoo\""
10584 msgid "\"centos\""
10585 msgstr "\"gentoo\""
10586
10587 #. type: textblock
10588 #: ../src/guestfs-actions.pod:2554 ../fish/guestfish-actions.pod:1716
10589 msgid "CentOS."
10590 msgstr ""
10591
10592 #. type: =item
10593 #: ../src/guestfs-actions.pod:2556 ../fish/guestfish-actions.pod:1718
10594 msgid "\"debian\""
10595 msgstr "\"debian\""
10596
10597 #. type: textblock
10598 #: ../src/guestfs-actions.pod:2558 ../fish/guestfish-actions.pod:1720
10599 msgid "Debian."
10600 msgstr "Debian."
10601
10602 #. type: =item
10603 #: ../src/guestfs-actions.pod:2560 ../fish/guestfish-actions.pod:1722
10604 msgid "\"fedora\""
10605 msgstr "\"fedora\""
10606
10607 #. type: textblock
10608 #: ../src/guestfs-actions.pod:2562 ../fish/guestfish-actions.pod:1724
10609 msgid "Fedora."
10610 msgstr "Fedora."
10611
10612 #. type: =item
10613 #: ../src/guestfs-actions.pod:2564 ../fish/guestfish-actions.pod:1726
10614 msgid "\"gentoo\""
10615 msgstr "\"gentoo\""
10616
10617 #. type: textblock
10618 #: ../src/guestfs-actions.pod:2566 ../fish/guestfish-actions.pod:1728
10619 msgid "Gentoo."
10620 msgstr "Gentoo."
10621
10622 #. type: =item
10623 #: ../src/guestfs-actions.pod:2568 ../fish/guestfish-actions.pod:1730
10624 msgid "\"linuxmint\""
10625 msgstr "\"linuxmint\""
10626
10627 #. type: textblock
10628 #: ../src/guestfs-actions.pod:2570 ../fish/guestfish-actions.pod:1732
10629 msgid "Linux Mint."
10630 msgstr "Linux Mint."
10631
10632 #. type: =item
10633 #: ../src/guestfs-actions.pod:2572 ../fish/guestfish-actions.pod:1734
10634 msgid "\"mandriva\""
10635 msgstr "\"mandriva\""
10636
10637 #. type: textblock
10638 #: ../src/guestfs-actions.pod:2574 ../fish/guestfish-actions.pod:1736
10639 msgid "Mandriva."
10640 msgstr "Mandriva."
10641
10642 #. type: =item
10643 #: ../src/guestfs-actions.pod:2576 ../fish/guestfish-actions.pod:1738
10644 msgid "\"meego\""
10645 msgstr "\"meego\""
10646
10647 #. type: textblock
10648 #: ../src/guestfs-actions.pod:2578 ../fish/guestfish-actions.pod:1740
10649 msgid "MeeGo."
10650 msgstr "MeeGo."
10651
10652 #. type: =item
10653 #: ../src/guestfs-actions.pod:2580 ../fish/guestfish-actions.pod:1742
10654 msgid "\"pardus\""
10655 msgstr "\"pardus\""
10656
10657 #. type: textblock
10658 #: ../src/guestfs-actions.pod:2582 ../fish/guestfish-actions.pod:1744
10659 msgid "Pardus."
10660 msgstr "Pardus."
10661
10662 #. type: =item
10663 #: ../src/guestfs-actions.pod:2584 ../fish/guestfish-actions.pod:1746
10664 msgid "\"redhat-based\""
10665 msgstr "\"redhat-based\""
10666
10667 #. type: textblock
10668 #: ../src/guestfs-actions.pod:2586 ../fish/guestfish-actions.pod:1748
10669 msgid "Some Red Hat-derived distro."
10670 msgstr "Дистрибутив, що походить від Red Hat."
10671
10672 #. type: =item
10673 #: ../src/guestfs-actions.pod:2588 ../fish/guestfish-actions.pod:1750
10674 msgid "\"rhel\""
10675 msgstr "\"rhel\""
10676
10677 #. type: textblock
10678 #: ../src/guestfs-actions.pod:2590 ../fish/guestfish-actions.pod:1752
10679 #, fuzzy
10680 #| msgid "Red Hat Enterprise Linux and some derivatives."
10681 msgid "Red Hat Enterprise Linux."
10682 msgstr "Red Hat Enterprise Linux та деякі з похідних дистрибутивів."
10683
10684 #. type: =item
10685 #: ../src/guestfs-actions.pod:2592 ../fish/guestfish-actions.pod:1754
10686 msgid "\"scientificlinux\""
10687 msgstr ""
10688
10689 #. type: textblock
10690 #: ../src/guestfs-actions.pod:2594 ../fish/guestfish-actions.pod:1756
10691 msgid "Scientific Linux."
10692 msgstr ""
10693
10694 #. type: =item
10695 #: ../src/guestfs-actions.pod:2596 ../fish/guestfish-actions.pod:1758
10696 msgid "\"slackware\""
10697 msgstr ""
10698
10699 #. type: textblock
10700 #: ../src/guestfs-actions.pod:2598 ../fish/guestfish-actions.pod:1760
10701 msgid "Slackware."
10702 msgstr ""
10703
10704 #. type: =item
10705 #: ../src/guestfs-actions.pod:2600 ../fish/guestfish-actions.pod:1762
10706 msgid "\"ubuntu\""
10707 msgstr "\"ubuntu\""
10708
10709 #. type: textblock
10710 #: ../src/guestfs-actions.pod:2602 ../fish/guestfish-actions.pod:1764
10711 msgid "Ubuntu."
10712 msgstr "Ubuntu."
10713
10714 #. type: =item
10715 #: ../src/guestfs-actions.pod:2604 ../src/guestfs-actions.pod:2713
10716 #: ../src/guestfs-actions.pod:3088 ../fish/guestfish-actions.pod:1766
10717 #: ../fish/guestfish-actions.pod:1850 ../fish/guestfish-actions.pod:2114
10718 msgid "\"unknown\""
10719 msgstr "\"unknown\""
10720
10721 #. type: textblock
10722 #: ../src/guestfs-actions.pod:2606 ../fish/guestfish-actions.pod:1768
10723 msgid "The distro could not be determined."
10724 msgstr "Дистрибутив, тип якого не вдалося визначити."
10725
10726 #. type: =item
10727 #: ../src/guestfs-actions.pod:2608 ../src/guestfs-actions.pod:3080
10728 #: ../fish/guestfish-actions.pod:1770 ../fish/guestfish-actions.pod:2106
10729 msgid "\"windows\""
10730 msgstr "\"windows\""
10731
10732 #. type: textblock
10733 #: ../src/guestfs-actions.pod:2610 ../fish/guestfish-actions.pod:1772
10734 msgid ""
10735 "Windows does not have distributions.  This string is returned if the OS type "
10736 "is Windows."
10737 msgstr ""
10738
10739 #. type: textblock
10740 #: ../src/guestfs-actions.pod:2615 ../src/guestfs-actions.pod:2719
10741 #: ../src/guestfs-actions.pod:3094 ../fish/guestfish-actions.pod:1777
10742 #: ../fish/guestfish-actions.pod:1856 ../fish/guestfish-actions.pod:2120
10743 msgid ""
10744 "Future versions of libguestfs may return other strings here.  The caller "
10745 "should be prepared to handle any string."
10746 msgstr ""
10747
10748 #. type: =head2
10749 #: ../src/guestfs-actions.pod:2625
10750 msgid "guestfs_inspect_get_drive_mappings"
10751 msgstr ""
10752
10753 #. type: verbatim
10754 #: ../src/guestfs-actions.pod:2627
10755 #, no-wrap
10756 msgid ""
10757 " char **\n"
10758 " guestfs_inspect_get_drive_mappings (guestfs_h *g,\n"
10759 "                                     const char *root);\n"
10760 "\n"
10761 msgstr ""
10762
10763 #. type: textblock
10764 #: ../src/guestfs-actions.pod:2631 ../fish/guestfish-actions.pod:1786
10765 msgid ""
10766 "This call is useful for Windows which uses a primitive system of assigning "
10767 "drive letters (like \"C:\") to partitions.  This inspection API examines the "
10768 "Windows Registry to find out how disks/partitions are mapped to drive "
10769 "letters, and returns a hash table as in the example below:"
10770 msgstr ""
10771
10772 #. type: verbatim
10773 #: ../src/guestfs-actions.pod:2637 ../fish/guestfish-actions.pod:1792
10774 #, no-wrap
10775 msgid ""
10776 " C      =>     /dev/vda2\n"
10777 " E      =>     /dev/vdb1\n"
10778 " F      =>     /dev/vdc1\n"
10779 "\n"
10780 msgstr ""
10781
10782 #. type: textblock
10783 #: ../src/guestfs-actions.pod:2641 ../fish/guestfish-actions.pod:1796
10784 msgid ""
10785 "Note that keys are drive letters.  For Windows, the key is case insensitive "
10786 "and just contains the drive letter, without the customary colon separator "
10787 "character."
10788 msgstr ""
10789
10790 #. type: textblock
10791 #: ../src/guestfs-actions.pod:2645 ../fish/guestfish-actions.pod:1800
10792 msgid ""
10793 "In future we may support other operating systems that also used drive "
10794 "letters, but the keys for those might not be case insensitive and might be "
10795 "longer than 1 character.  For example in OS-9, hard drives were named C<h0>, "
10796 "C<h1> etc."
10797 msgstr ""
10798
10799 #. type: textblock
10800 #: ../src/guestfs-actions.pod:2650 ../fish/guestfish-actions.pod:1805
10801 msgid ""
10802 "For Windows guests, currently only hard drive mappings are returned.  "
10803 "Removable disks (eg. DVD-ROMs) are ignored."
10804 msgstr ""
10805
10806 #. type: textblock
10807 #: ../src/guestfs-actions.pod:2653 ../fish/guestfish-actions.pod:1808
10808 msgid ""
10809 "For guests that do not use drive mappings, or if the drive mappings could "
10810 "not be determined, this returns an empty hash table."
10811 msgstr ""
10812
10813 #. type: textblock
10814 #: ../src/guestfs-actions.pod:2656
10815 msgid ""
10816 "Please read L<guestfs(3)/INSPECTION> for more details.  See also "
10817 "C<guestfs_inspect_get_mountpoints>, C<guestfs_inspect_get_filesystems>."
10818 msgstr ""
10819
10820 #. type: textblock
10821 #: ../src/guestfs-actions.pod:2660 ../src/guestfs-actions.pod:2928
10822 #: ../src/guestfs-actions.pod:3724 ../src/guestfs-actions.pod:5006
10823 #: ../src/guestfs-actions.pod:7033
10824 msgid ""
10825 "This function returns a NULL-terminated array of strings, or NULL if there "
10826 "was an error.  The array of strings will always have length C<2n+1>, where "
10827 "C<n> keys and values alternate, followed by the trailing NULL entry.  I<The "
10828 "caller must free the strings and the array after use>."
10829 msgstr ""
10830
10831 #. type: textblock
10832 #: ../src/guestfs-actions.pod:2666 ../src/guestfs-actions.pod:3122
10833 msgid "(Added in 1.9.17)"
10834 msgstr ""
10835
10836 #. type: =head2
10837 #: ../src/guestfs-actions.pod:2668
10838 msgid "guestfs_inspect_get_filesystems"
10839 msgstr ""
10840
10841 #. type: verbatim
10842 #: ../src/guestfs-actions.pod:2670
10843 #, no-wrap
10844 msgid ""
10845 " char **\n"
10846 " guestfs_inspect_get_filesystems (guestfs_h *g,\n"
10847 "                                  const char *root);\n"
10848 "\n"
10849 msgstr ""
10850
10851 #. type: textblock
10852 #: ../src/guestfs-actions.pod:2674 ../fish/guestfish-actions.pod:1819
10853 msgid ""
10854 "This returns a list of all the filesystems that we think are associated with "
10855 "this operating system.  This includes the root filesystem, other ordinary "
10856 "filesystems, and non-mounted devices like swap partitions."
10857 msgstr ""
10858
10859 #. type: textblock
10860 #: ../src/guestfs-actions.pod:2679 ../fish/guestfish-actions.pod:1824
10861 msgid ""
10862 "In the case of a multi-boot virtual machine, it is possible for a filesystem "
10863 "to be shared between operating systems."
10864 msgstr ""
10865
10866 #. type: textblock
10867 #: ../src/guestfs-actions.pod:2682
10868 msgid ""
10869 "Please read L<guestfs(3)/INSPECTION> for more details.  See also "
10870 "C<guestfs_inspect_get_mountpoints>."
10871 msgstr ""
10872
10873 #. type: =head2
10874 #: ../src/guestfs-actions.pod:2691
10875 msgid "guestfs_inspect_get_format"
10876 msgstr ""
10877
10878 #. type: verbatim
10879 #: ../src/guestfs-actions.pod:2693
10880 #, no-wrap
10881 msgid ""
10882 " char *\n"
10883 " guestfs_inspect_get_format (guestfs_h *g,\n"
10884 "                             const char *root);\n"
10885 "\n"
10886 msgstr ""
10887
10888 #. type: textblock
10889 #: ../src/guestfs-actions.pod:2697 ../fish/guestfish-actions.pod:1834
10890 msgid ""
10891 "This returns the format of the inspected operating system.  You can use it "
10892 "to detect install images, live CDs and similar."
10893 msgstr ""
10894
10895 #. type: textblock
10896 #: ../src/guestfs-actions.pod:2700 ../fish/guestfish-actions.pod:1837
10897 msgid "Currently defined formats are:"
10898 msgstr ""
10899
10900 #. type: =item
10901 #: ../src/guestfs-actions.pod:2704 ../fish/guestfish-actions.pod:1841
10902 msgid "\"installed\""
10903 msgstr "\"installed\""
10904
10905 #. type: textblock
10906 #: ../src/guestfs-actions.pod:2706 ../fish/guestfish-actions.pod:1843
10907 msgid "This is an installed operating system."
10908 msgstr "Це встановлена операційна система."
10909
10910 #. type: =item
10911 #: ../src/guestfs-actions.pod:2708 ../fish/guestfish-actions.pod:1845
10912 msgid "\"installer\""
10913 msgstr ""
10914
10915 #. type: textblock
10916 #: ../src/guestfs-actions.pod:2710 ../fish/guestfish-actions.pod:1847
10917 msgid ""
10918 "The disk image being inspected is not an installed operating system, but a "
10919 "I<bootable> install disk, live CD, or similar."
10920 msgstr ""
10921
10922 #. type: textblock
10923 #: ../src/guestfs-actions.pod:2715 ../fish/guestfish-actions.pod:1852
10924 msgid "The format of this disk image is not known."
10925 msgstr ""
10926
10927 #. type: textblock
10928 #: ../src/guestfs-actions.pod:2727 ../src/guestfs-actions.pod:3158
10929 #: ../src/guestfs-actions.pod:3174 ../src/guestfs-actions.pod:3192
10930 #: ../src/guestfs-actions.pod:5948
10931 msgid "(Added in 1.9.4)"
10932 msgstr ""
10933
10934 #. type: =head2
10935 #: ../src/guestfs-actions.pod:2729
10936 msgid "guestfs_inspect_get_hostname"
10937 msgstr ""
10938
10939 #. type: verbatim
10940 #: ../src/guestfs-actions.pod:2731
10941 #, no-wrap
10942 msgid ""
10943 " char *\n"
10944 " guestfs_inspect_get_hostname (guestfs_h *g,\n"
10945 "                               const char *root);\n"
10946 "\n"
10947 msgstr ""
10948
10949 #. type: textblock
10950 #: ../src/guestfs-actions.pod:2735 ../fish/guestfish-actions.pod:1865
10951 msgid ""
10952 "This function returns the hostname of the operating system as found by "
10953 "inspection of the guest's configuration files."
10954 msgstr ""
10955
10956 #. type: textblock
10957 #: ../src/guestfs-actions.pod:2738 ../fish/guestfish-actions.pod:1868
10958 msgid ""
10959 "If the hostname could not be determined, then the string C<unknown> is "
10960 "returned."
10961 msgstr ""
10962
10963 #. type: textblock
10964 #: ../src/guestfs-actions.pod:2746
10965 msgid "(Added in 1.7.9)"
10966 msgstr ""
10967
10968 #. type: =head2
10969 #: ../src/guestfs-actions.pod:2748
10970 msgid "guestfs_inspect_get_icon"
10971 msgstr ""
10972
10973 #. type: verbatim
10974 #: ../src/guestfs-actions.pod:2750
10975 #, no-wrap
10976 msgid ""
10977 " char *\n"
10978 " guestfs_inspect_get_icon (guestfs_h *g,\n"
10979 "                           const char *root,\n"
10980 "                           size_t *size_r,\n"
10981 "                           ...);\n"
10982 "\n"
10983 msgstr ""
10984
10985 #. type: verbatim
10986 #: ../src/guestfs-actions.pod:2761
10987 #, no-wrap
10988 msgid ""
10989 " GUESTFS_INSPECT_GET_ICON_FAVICON, int favicon,\n"
10990 " GUESTFS_INSPECT_GET_ICON_HIGHQUALITY, int highquality,\n"
10991 "\n"
10992 msgstr ""
10993
10994 #. type: textblock
10995 #: ../src/guestfs-actions.pod:2764 ../fish/guestfish-actions.pod:1877
10996 msgid ""
10997 "This function returns an icon corresponding to the inspected operating "
10998 "system.  The icon is returned as a buffer containing a PNG image (re-encoded "
10999 "to PNG if necessary)."
11000 msgstr ""
11001
11002 #. type: textblock
11003 #: ../src/guestfs-actions.pod:2768 ../fish/guestfish-actions.pod:1881
11004 msgid ""
11005 "If it was not possible to get an icon this function returns a zero-length "
11006 "(non-NULL) buffer.  I<Callers must check for this case>."
11007 msgstr ""
11008
11009 #. type: textblock
11010 #: ../src/guestfs-actions.pod:2771 ../fish/guestfish-actions.pod:1884
11011 msgid ""
11012 "Libguestfs will start by looking for a file called C</etc/favicon.png> or "
11013 "C<C:\\etc\\favicon.png> and if it has the correct format, the contents of "
11014 "this file will be returned.  You can disable favicons by passing the "
11015 "optional C<favicon> boolean as false (default is true)."
11016 msgstr ""
11017
11018 #. type: textblock
11019 #: ../src/guestfs-actions.pod:2777 ../fish/guestfish-actions.pod:1890
11020 msgid ""
11021 "If finding the favicon fails, then we look in other places in the guest for "
11022 "a suitable icon."
11023 msgstr ""
11024
11025 #. type: textblock
11026 #: ../src/guestfs-actions.pod:2780 ../fish/guestfish-actions.pod:1893
11027 msgid ""
11028 "If the optional C<highquality> boolean is true then only high quality icons "
11029 "are returned, which means only icons of high resolution with an alpha "
11030 "channel.  The default (false) is to return any icon we can, even if it is of "
11031 "substandard quality."
11032 msgstr ""
11033
11034 #. type: textblock
11035 #: ../src/guestfs-actions.pod:2791 ../fish/guestfish-actions.pod:1904
11036 msgid ""
11037 "Unlike most other inspection API calls, the guest's disks must be mounted up "
11038 "before you call this, since it needs to read information from the guest "
11039 "filesystem during the call."
11040 msgstr ""
11041
11042 #. type: textblock
11043 #: ../src/guestfs-actions.pod:2797 ../fish/guestfish-actions.pod:1910
11044 msgid ""
11045 "B<Security:> The icon data comes from the untrusted guest, and should be "
11046 "treated with caution.  PNG files have been known to contain exploits.  "
11047 "Ensure that libpng (or other relevant libraries) are fully up to date before "
11048 "trying to process or display the icon."
11049 msgstr ""
11050
11051 #. type: textblock
11052 #: ../src/guestfs-actions.pod:2805 ../fish/guestfish-actions.pod:1918
11053 msgid ""
11054 "The PNG image returned can be any size.  It might not be square.  Libguestfs "
11055 "tries to return the largest, highest quality icon available.  The "
11056 "application must scale the icon to the required size."
11057 msgstr ""
11058
11059 #. type: textblock
11060 #: ../src/guestfs-actions.pod:2812 ../fish/guestfish-actions.pod:1925
11061 msgid ""
11062 "Extracting icons from Windows guests requires the external C<wrestool> "
11063 "program from the C<icoutils> package, and several programs (C<bmptopnm>, "
11064 "C<pnmtopng>, C<pamcut>)  from the C<netpbm> package.  These must be "
11065 "installed separately."
11066 msgstr ""
11067
11068 #. type: textblock
11069 #: ../src/guestfs-actions.pod:2819 ../fish/guestfish-actions.pod:1932
11070 msgid ""
11071 "Operating system icons are usually trademarks.  Seek legal advice before "
11072 "using trademarks in applications."
11073 msgstr ""
11074
11075 #. type: textblock
11076 #: ../src/guestfs-actions.pod:2828 ../src/guestfs-actions.pod:3653
11077 #: ../src/guestfs-actions.pod:4905
11078 msgid "(Added in 1.11.12)"
11079 msgstr ""
11080
11081 #. type: =head2
11082 #: ../src/guestfs-actions.pod:2830
11083 msgid "guestfs_inspect_get_icon_va"
11084 msgstr ""
11085
11086 #. type: verbatim
11087 #: ../src/guestfs-actions.pod:2832
11088 #, no-wrap
11089 msgid ""
11090 " char *\n"
11091 " guestfs_inspect_get_icon_va (guestfs_h *g,\n"
11092 "                              const char *root,\n"
11093 "                              size_t *size_r,\n"
11094 "                              va_list args);\n"
11095 "\n"
11096 msgstr ""
11097
11098 #. type: textblock
11099 #: ../src/guestfs-actions.pod:2838
11100 msgid "This is the \"va_list variant\" of L</guestfs_inspect_get_icon>."
11101 msgstr ""
11102
11103 #. type: =head2
11104 #: ../src/guestfs-actions.pod:2842
11105 msgid "guestfs_inspect_get_icon_argv"
11106 msgstr ""
11107
11108 #. type: verbatim
11109 #: ../src/guestfs-actions.pod:2844
11110 #, no-wrap
11111 msgid ""
11112 " char *\n"
11113 " guestfs_inspect_get_icon_argv (guestfs_h *g,\n"
11114 "                                const char *root,\n"
11115 "                                size_t *size_r,\n"
11116 "                                const struct guestfs_inspect_get_icon_argv *optargs);\n"
11117 "\n"
11118 msgstr ""
11119
11120 #. type: textblock
11121 #: ../src/guestfs-actions.pod:2850
11122 msgid "This is the \"argv variant\" of L</guestfs_inspect_get_icon>."
11123 msgstr ""
11124
11125 #. type: =head2
11126 #: ../src/guestfs-actions.pod:2854
11127 msgid "guestfs_inspect_get_major_version"
11128 msgstr ""
11129
11130 #. type: verbatim
11131 #: ../src/guestfs-actions.pod:2856
11132 #, no-wrap
11133 msgid ""
11134 " int\n"
11135 " guestfs_inspect_get_major_version (guestfs_h *g,\n"
11136 "                                    const char *root);\n"
11137 "\n"
11138 msgstr ""
11139
11140 #. type: textblock
11141 #: ../src/guestfs-actions.pod:2860 ../fish/guestfish-actions.pod:1943
11142 msgid ""
11143 "This returns the major version number of the inspected operating system."
11144 msgstr ""
11145
11146 #. type: textblock
11147 #: ../src/guestfs-actions.pod:2863 ../fish/guestfish-actions.pod:1946
11148 msgid ""
11149 "Windows uses a consistent versioning scheme which is I<not> reflected in the "
11150 "popular public names used by the operating system.  Notably the operating "
11151 "system known as \"Windows 7\" is really version 6.1 (ie. major = 6, minor = "
11152 "1).  You can find out the real versions corresponding to releases of Windows "
11153 "by consulting Wikipedia or MSDN."
11154 msgstr ""
11155
11156 #. type: textblock
11157 #: ../src/guestfs-actions.pod:2870 ../src/guestfs-actions.pod:2887
11158 #: ../fish/guestfish-actions.pod:1953 ../fish/guestfish-actions.pod:1964
11159 msgid "If the version could not be determined, then C<0> is returned."
11160 msgstr ""
11161
11162 #. type: =head2
11163 #: ../src/guestfs-actions.pod:2878
11164 msgid "guestfs_inspect_get_minor_version"
11165 msgstr ""
11166
11167 #. type: verbatim
11168 #: ../src/guestfs-actions.pod:2880
11169 #, no-wrap
11170 msgid ""
11171 " int\n"
11172 " guestfs_inspect_get_minor_version (guestfs_h *g,\n"
11173 "                                    const char *root);\n"
11174 "\n"
11175 msgstr ""
11176
11177 #. type: textblock
11178 #: ../src/guestfs-actions.pod:2884 ../fish/guestfish-actions.pod:1961
11179 msgid ""
11180 "This returns the minor version number of the inspected operating system."
11181 msgstr ""
11182
11183 #. type: textblock
11184 #: ../src/guestfs-actions.pod:2889
11185 msgid ""
11186 "Please read L<guestfs(3)/INSPECTION> for more details.  See also "
11187 "C<guestfs_inspect_get_major_version>."
11188 msgstr ""
11189
11190 #. type: =head2
11191 #: ../src/guestfs-actions.pod:2896
11192 msgid "guestfs_inspect_get_mountpoints"
11193 msgstr ""
11194
11195 #. type: verbatim
11196 #: ../src/guestfs-actions.pod:2898
11197 #, no-wrap
11198 msgid ""
11199 " char **\n"
11200 " guestfs_inspect_get_mountpoints (guestfs_h *g,\n"
11201 "                                  const char *root);\n"
11202 "\n"
11203 msgstr ""
11204
11205 #. type: textblock
11206 #: ../src/guestfs-actions.pod:2902 ../fish/guestfish-actions.pod:1973
11207 msgid ""
11208 "This returns a hash of where we think the filesystems associated with this "
11209 "operating system should be mounted.  Callers should note that this is at "
11210 "best an educated guess made by reading configuration files such as C</etc/"
11211 "fstab>.  I<In particular note> that this may return filesystems which are "
11212 "non-existent or not mountable and callers should be prepared to handle or "
11213 "ignore failures if they try to mount them."
11214 msgstr ""
11215
11216 #. type: textblock
11217 #: ../src/guestfs-actions.pod:2911 ../fish/guestfish-actions.pod:1982
11218 msgid ""
11219 "Each element in the returned hashtable has a key which is the path of the "
11220 "mountpoint (eg. C</boot>) and a value which is the filesystem that would be "
11221 "mounted there (eg. C</dev/sda1>)."
11222 msgstr ""
11223
11224 #. type: textblock
11225 #: ../src/guestfs-actions.pod:2916 ../fish/guestfish-actions.pod:1987
11226 msgid ""
11227 "Non-mounted devices such as swap devices are I<not> returned in this list."
11228 msgstr ""
11229
11230 #. type: textblock
11231 #: ../src/guestfs-actions.pod:2919
11232 msgid ""
11233 "For operating systems like Windows which still use drive letters, this call "
11234 "will only return an entry for the first drive \"mounted on\" C</>.  For "
11235 "information about the mapping of drive letters to partitions, see "
11236 "C<guestfs_inspect_get_drive_mappings>."
11237 msgstr ""
11238
11239 #. type: textblock
11240 #: ../src/guestfs-actions.pod:2925
11241 msgid ""
11242 "Please read L<guestfs(3)/INSPECTION> for more details.  See also "
11243 "C<guestfs_inspect_get_filesystems>."
11244 msgstr ""
11245
11246 #. type: =head2
11247 #: ../src/guestfs-actions.pod:2936
11248 msgid "guestfs_inspect_get_package_format"
11249 msgstr ""
11250
11251 #. type: verbatim
11252 #: ../src/guestfs-actions.pod:2938
11253 #, no-wrap
11254 msgid ""
11255 " char *\n"
11256 " guestfs_inspect_get_package_format (guestfs_h *g,\n"
11257 "                                     const char *root);\n"
11258 "\n"
11259 msgstr ""
11260
11261 #. type: textblock
11262 #: ../src/guestfs-actions.pod:2942
11263 msgid ""
11264 "This function and C<guestfs_inspect_get_package_management> return the "
11265 "package format and package management tool used by the inspected operating "
11266 "system.  For example for Fedora these functions would return C<rpm> (package "
11267 "format) and C<yum> (package management)."
11268 msgstr ""
11269
11270 #. type: textblock
11271 #: ../src/guestfs-actions.pod:2948 ../fish/guestfish-actions.pod:2009
11272 msgid ""
11273 "This returns the string C<unknown> if we could not determine the package "
11274 "format I<or> if the operating system does not have a real packaging system "
11275 "(eg. Windows)."
11276 msgstr ""
11277
11278 #. type: textblock
11279 #: ../src/guestfs-actions.pod:2952 ../fish/guestfish-actions.pod:2013
11280 msgid ""
11281 "Possible strings include: C<rpm>, C<deb>, C<ebuild>, C<pisi>, C<pacman>.  "
11282 "Future versions of libguestfs may return other strings."
11283 msgstr ""
11284
11285 #. type: textblock
11286 #: ../src/guestfs-actions.pod:2960 ../src/guestfs-actions.pod:2988
11287 msgid "(Added in 1.7.5)"
11288 msgstr ""
11289
11290 #. type: =head2
11291 #: ../src/guestfs-actions.pod:2962
11292 msgid "guestfs_inspect_get_package_management"
11293 msgstr ""
11294
11295 #. type: verbatim
11296 #: ../src/guestfs-actions.pod:2964
11297 #, no-wrap
11298 msgid ""
11299 " char *\n"
11300 " guestfs_inspect_get_package_management (guestfs_h *g,\n"
11301 "                                         const char *root);\n"
11302 "\n"
11303 msgstr ""
11304
11305 #. type: textblock
11306 #: ../src/guestfs-actions.pod:2968
11307 msgid ""
11308 "C<guestfs_inspect_get_package_format> and this function return the package "
11309 "format and package management tool used by the inspected operating system.  "
11310 "For example for Fedora these functions would return C<rpm> (package format) "
11311 "and C<yum> (package management)."
11312 msgstr ""
11313
11314 #. type: textblock
11315 #: ../src/guestfs-actions.pod:2974 ../fish/guestfish-actions.pod:2028
11316 msgid ""
11317 "This returns the string C<unknown> if we could not determine the package "
11318 "management tool I<or> if the operating system does not have a real packaging "
11319 "system (eg. Windows)."
11320 msgstr ""
11321
11322 #. type: textblock
11323 #: ../src/guestfs-actions.pod:2978 ../fish/guestfish-actions.pod:2032
11324 msgid ""
11325 "Possible strings include: C<yum>, C<up2date>, C<apt> (for all Debian "
11326 "derivatives), C<portage>, C<pisi>, C<pacman>, C<urpmi>.  Future versions of "
11327 "libguestfs may return other strings."
11328 msgstr ""
11329
11330 #. type: =head2
11331 #: ../src/guestfs-actions.pod:2990
11332 msgid "guestfs_inspect_get_product_name"
11333 msgstr ""
11334
11335 #. type: verbatim
11336 #: ../src/guestfs-actions.pod:2992
11337 #, no-wrap
11338 msgid ""
11339 " char *\n"
11340 " guestfs_inspect_get_product_name (guestfs_h *g,\n"
11341 "                                   const char *root);\n"
11342 "\n"
11343 msgstr ""
11344
11345 #. type: textblock
11346 #: ../src/guestfs-actions.pod:2996 ../fish/guestfish-actions.pod:2043
11347 msgid ""
11348 "This returns the product name of the inspected operating system.  The "
11349 "product name is generally some freeform string which can be displayed to the "
11350 "user, but should not be parsed by programs."
11351 msgstr ""
11352
11353 #. type: textblock
11354 #: ../src/guestfs-actions.pod:3001 ../fish/guestfish-actions.pod:2048
11355 msgid ""
11356 "If the product name could not be determined, then the string C<unknown> is "
11357 "returned."
11358 msgstr ""
11359
11360 #. type: =head2
11361 #: ../src/guestfs-actions.pod:3011
11362 msgid "guestfs_inspect_get_product_variant"
11363 msgstr ""
11364
11365 #. type: verbatim
11366 #: ../src/guestfs-actions.pod:3013
11367 #, no-wrap
11368 msgid ""
11369 " char *\n"
11370 " guestfs_inspect_get_product_variant (guestfs_h *g,\n"
11371 "                                      const char *root);\n"
11372 "\n"
11373 msgstr ""
11374
11375 #. type: textblock
11376 #: ../src/guestfs-actions.pod:3017 ../fish/guestfish-actions.pod:2057
11377 #, fuzzy
11378 #| msgid "This is an installed operating system."
11379 msgid "This returns the product variant of the inspected operating system."
11380 msgstr "Це встановлена операційна система."
11381
11382 #. type: textblock
11383 #: ../src/guestfs-actions.pod:3020 ../fish/guestfish-actions.pod:2060
11384 msgid ""
11385 "For Windows guests, this returns the contents of the Registry key C<HKLM"
11386 "\\Software\\Microsoft\\Windows NT\\CurrentVersion> C<InstallationType> which "
11387 "is usually a string such as C<Client> or C<Server> (other values are "
11388 "possible).  This can be used to distinguish consumer and enterprise versions "
11389 "of Windows that have the same version number (for example, Windows 7 and "
11390 "Windows 2008 Server are both version 6.1, but the former is C<Client> and "
11391 "the latter is C<Server>)."
11392 msgstr ""
11393
11394 #. type: textblock
11395 #: ../src/guestfs-actions.pod:3029 ../fish/guestfish-actions.pod:2069
11396 msgid ""
11397 "For enterprise Linux guests, in future we intend this to return the product "
11398 "variant such as C<Desktop>, C<Server> and so on.  But this is not "
11399 "implemented at present."
11400 msgstr ""
11401
11402 #. type: textblock
11403 #: ../src/guestfs-actions.pod:3033 ../fish/guestfish-actions.pod:2073
11404 msgid ""
11405 "If the product variant could not be determined, then the string C<unknown> "
11406 "is returned."
11407 msgstr ""
11408
11409 #. type: textblock
11410 #: ../src/guestfs-actions.pod:3036
11411 msgid ""
11412 "Please read L<guestfs(3)/INSPECTION> for more details.  See also "
11413 "C<guestfs_inspect_get_product_name>, C<guestfs_inspect_get_major_version>."
11414 msgstr ""
11415
11416 #. type: textblock
11417 #: ../src/guestfs-actions.pod:3043
11418 msgid "(Added in 1.9.13)"
11419 msgstr ""
11420
11421 #. type: =head2
11422 #: ../src/guestfs-actions.pod:3045
11423 msgid "guestfs_inspect_get_roots"
11424 msgstr ""
11425
11426 #. type: verbatim
11427 #: ../src/guestfs-actions.pod:3047
11428 #, no-wrap
11429 msgid ""
11430 " char **\n"
11431 " guestfs_inspect_get_roots (guestfs_h *g);\n"
11432 "\n"
11433 msgstr ""
11434
11435 #. type: textblock
11436 #: ../src/guestfs-actions.pod:3050
11437 msgid ""
11438 "This function is a convenient way to get the list of root devices, as "
11439 "returned from a previous call to C<guestfs_inspect_os>, but without redoing "
11440 "the whole inspection process."
11441 msgstr ""
11442
11443 #. type: textblock
11444 #: ../src/guestfs-actions.pod:3054
11445 msgid ""
11446 "This returns an empty list if either no root devices were found or the "
11447 "caller has not called C<guestfs_inspect_os>."
11448 msgstr ""
11449
11450 #. type: textblock
11451 #: ../src/guestfs-actions.pod:3063
11452 msgid "(Added in 1.7.3)"
11453 msgstr ""
11454
11455 #. type: =head2
11456 #: ../src/guestfs-actions.pod:3065
11457 msgid "guestfs_inspect_get_type"
11458 msgstr ""
11459
11460 #. type: verbatim
11461 #: ../src/guestfs-actions.pod:3067
11462 #, no-wrap
11463 msgid ""
11464 " char *\n"
11465 " guestfs_inspect_get_type (guestfs_h *g,\n"
11466 "                           const char *root);\n"
11467 "\n"
11468 msgstr ""
11469
11470 #. type: textblock
11471 #: ../src/guestfs-actions.pod:3071 ../fish/guestfish-actions.pod:2097
11472 msgid ""
11473 "This returns the type of the inspected operating system.  Currently defined "
11474 "types are:"
11475 msgstr ""
11476
11477 #. type: =item
11478 #: ../src/guestfs-actions.pod:3076 ../fish/guestfish-actions.pod:2102
11479 msgid "\"linux\""
11480 msgstr "\"linux\""
11481
11482 #. type: textblock
11483 #: ../src/guestfs-actions.pod:3078 ../fish/guestfish-actions.pod:2104
11484 msgid "Any Linux-based operating system."
11485 msgstr ""
11486
11487 #. type: textblock
11488 #: ../src/guestfs-actions.pod:3082 ../fish/guestfish-actions.pod:2108
11489 msgid "Any Microsoft Windows operating system."
11490 msgstr ""
11491
11492 #. type: =item
11493 #: ../src/guestfs-actions.pod:3084 ../fish/guestfish-actions.pod:2110
11494 msgid "\"freebsd\""
11495 msgstr "\"freebsd\""
11496
11497 #. type: textblock
11498 #: ../src/guestfs-actions.pod:3086 ../fish/guestfish-actions.pod:2112
11499 msgid "FreeBSD."
11500 msgstr "FreeBSD."
11501
11502 #. type: textblock
11503 #: ../src/guestfs-actions.pod:3090 ../fish/guestfish-actions.pod:2116
11504 msgid "The operating system type could not be determined."
11505 msgstr ""
11506
11507 #. type: =head2
11508 #: ../src/guestfs-actions.pod:3104
11509 msgid "guestfs_inspect_get_windows_current_control_set"
11510 msgstr ""
11511
11512 #. type: verbatim
11513 #: ../src/guestfs-actions.pod:3106
11514 #, no-wrap
11515 msgid ""
11516 " char *\n"
11517 " guestfs_inspect_get_windows_current_control_set (guestfs_h *g,\n"
11518 "                                                  const char *root);\n"
11519 "\n"
11520 msgstr ""
11521
11522 #. type: textblock
11523 #: ../src/guestfs-actions.pod:3110 ../fish/guestfish-actions.pod:2129
11524 msgid ""
11525 "This returns the Windows CurrentControlSet of the inspected guest.  The "
11526 "CurrentControlSet is a registry key name such as C<ControlSet001>."
11527 msgstr ""
11528
11529 #. type: textblock
11530 #: ../src/guestfs-actions.pod:3113 ../fish/guestfish-actions.pod:2132
11531 msgid ""
11532 "This call assumes that the guest is Windows and that the Registry could be "
11533 "examined by inspection.  If this is not the case then an error is returned."
11534 msgstr ""
11535
11536 #. type: =head2
11537 #: ../src/guestfs-actions.pod:3124
11538 msgid "guestfs_inspect_get_windows_systemroot"
11539 msgstr ""
11540
11541 #. type: verbatim
11542 #: ../src/guestfs-actions.pod:3126
11543 #, no-wrap
11544 msgid ""
11545 " char *\n"
11546 " guestfs_inspect_get_windows_systemroot (guestfs_h *g,\n"
11547 "                                         const char *root);\n"
11548 "\n"
11549 msgstr ""
11550
11551 #. type: textblock
11552 #: ../src/guestfs-actions.pod:3130 ../fish/guestfish-actions.pod:2142
11553 msgid ""
11554 "This returns the Windows systemroot of the inspected guest.  The systemroot "
11555 "is a directory path such as C</WINDOWS>."
11556 msgstr ""
11557
11558 #. type: textblock
11559 #: ../src/guestfs-actions.pod:3133 ../fish/guestfish-actions.pod:2145
11560 msgid ""
11561 "This call assumes that the guest is Windows and that the systemroot could be "
11562 "determined by inspection.  If this is not the case then an error is returned."
11563 msgstr ""
11564
11565 #. type: textblock
11566 #: ../src/guestfs-actions.pod:3142
11567 msgid "(Added in 1.5.25)"
11568 msgstr ""
11569
11570 #. type: =head2
11571 #: ../src/guestfs-actions.pod:3144
11572 msgid "guestfs_inspect_is_live"
11573 msgstr ""
11574
11575 #. type: verbatim
11576 #: ../src/guestfs-actions.pod:3146
11577 #, no-wrap
11578 msgid ""
11579 " int\n"
11580 " guestfs_inspect_is_live (guestfs_h *g,\n"
11581 "                          const char *root);\n"
11582 "\n"
11583 msgstr ""
11584
11585 #. type: textblock
11586 #: ../src/guestfs-actions.pod:3150
11587 msgid ""
11588 "If C<guestfs_inspect_get_format> returns C<installer> (this is an install "
11589 "disk), then this returns true if a live image was detected on the disk."
11590 msgstr ""
11591
11592 #. type: =head2
11593 #: ../src/guestfs-actions.pod:3160
11594 msgid "guestfs_inspect_is_multipart"
11595 msgstr ""
11596
11597 #. type: verbatim
11598 #: ../src/guestfs-actions.pod:3162
11599 #, no-wrap
11600 msgid ""
11601 " int\n"
11602 " guestfs_inspect_is_multipart (guestfs_h *g,\n"
11603 "                               const char *root);\n"
11604 "\n"
11605 msgstr ""
11606
11607 #. type: textblock
11608 #: ../src/guestfs-actions.pod:3166
11609 msgid ""
11610 "If C<guestfs_inspect_get_format> returns C<installer> (this is an install "
11611 "disk), then this returns true if the disk is part of a set."
11612 msgstr ""
11613
11614 #. type: =head2
11615 #: ../src/guestfs-actions.pod:3176
11616 msgid "guestfs_inspect_is_netinst"
11617 msgstr ""
11618
11619 #. type: verbatim
11620 #: ../src/guestfs-actions.pod:3178
11621 #, no-wrap
11622 msgid ""
11623 " int\n"
11624 " guestfs_inspect_is_netinst (guestfs_h *g,\n"
11625 "                             const char *root);\n"
11626 "\n"
11627 msgstr ""
11628
11629 #. type: textblock
11630 #: ../src/guestfs-actions.pod:3182
11631 msgid ""
11632 "If C<guestfs_inspect_get_format> returns C<installer> (this is an install "
11633 "disk), then this returns true if the disk is a network installer, ie. not a "
11634 "self-contained install CD but one which is likely to require network access "
11635 "to complete the install."
11636 msgstr ""
11637
11638 #. type: =head2
11639 #: ../src/guestfs-actions.pod:3194
11640 msgid "guestfs_inspect_list_applications"
11641 msgstr ""
11642
11643 #. type: verbatim
11644 #: ../src/guestfs-actions.pod:3196
11645 #, no-wrap
11646 msgid ""
11647 " struct guestfs_application_list *\n"
11648 " guestfs_inspect_list_applications (guestfs_h *g,\n"
11649 "                                    const char *root);\n"
11650 "\n"
11651 msgstr ""
11652
11653 #. type: textblock
11654 #: ../src/guestfs-actions.pod:3200 ../fish/guestfish-actions.pod:2187
11655 msgid "Return the list of applications installed in the operating system."
11656 msgstr ""
11657
11658 #. type: textblock
11659 #: ../src/guestfs-actions.pod:3202
11660 msgid ""
11661 "I<Note:> This call works differently from other parts of the inspection "
11662 "API.  You have to call C<guestfs_inspect_os>, then "
11663 "C<guestfs_inspect_get_mountpoints>, then mount up the disks, before calling "
11664 "this.  Listing applications is a significantly more difficult operation "
11665 "which requires access to the full filesystem.  Also note that unlike the "
11666 "other C<guestfs_inspect_get_*> calls which are just returning data cached in "
11667 "the libguestfs handle, this call actually reads parts of the mounted "
11668 "filesystems during the call."
11669 msgstr ""
11670
11671 #. type: textblock
11672 #: ../src/guestfs-actions.pod:3212 ../fish/guestfish-actions.pod:2199
11673 msgid ""
11674 "This returns an empty list if the inspection code was not able to determine "
11675 "the list of applications."
11676 msgstr ""
11677
11678 #. type: textblock
11679 #: ../src/guestfs-actions.pod:3215 ../fish/guestfish-actions.pod:2202
11680 msgid "The application structure contains the following fields:"
11681 msgstr ""
11682
11683 #. type: =item
11684 #: ../src/guestfs-actions.pod:3219 ../fish/guestfish-actions.pod:2206
11685 msgid "C<app_name>"
11686 msgstr "C<app_name>"
11687
11688 #. type: textblock
11689 #: ../src/guestfs-actions.pod:3221 ../fish/guestfish-actions.pod:2208
11690 msgid ""
11691 "The name of the application.  For Red Hat-derived and Debian-derived Linux "
11692 "guests, this is the package name."
11693 msgstr ""
11694
11695 #. type: =item
11696 #: ../src/guestfs-actions.pod:3224 ../fish/guestfish-actions.pod:2211
11697 msgid "C<app_display_name>"
11698 msgstr "C<app_display_name>"
11699
11700 #. type: textblock
11701 #: ../src/guestfs-actions.pod:3226 ../fish/guestfish-actions.pod:2213
11702 msgid ""
11703 "The display name of the application, sometimes localized to the install "
11704 "language of the guest operating system."
11705 msgstr ""
11706
11707 #. type: textblock
11708 #: ../src/guestfs-actions.pod:3229 ../fish/guestfish-actions.pod:2216
11709 msgid ""
11710 "If unavailable this is returned as an empty string C<\"\">.  Callers needing "
11711 "to display something can use C<app_name> instead."
11712 msgstr ""
11713
11714 #. type: =item
11715 #: ../src/guestfs-actions.pod:3232 ../fish/guestfish-actions.pod:2219
11716 msgid "C<app_epoch>"
11717 msgstr "C<app_epoch>"
11718
11719 #. type: textblock
11720 #: ../src/guestfs-actions.pod:3234 ../fish/guestfish-actions.pod:2221
11721 msgid ""
11722 "For package managers which use epochs, this contains the epoch of the "
11723 "package (an integer).  If unavailable, this is returned as C<0>."
11724 msgstr ""
11725
11726 #. type: =item
11727 #: ../src/guestfs-actions.pod:3237 ../fish/guestfish-actions.pod:2224
11728 msgid "C<app_version>"
11729 msgstr "C<app_version>"
11730
11731 #. type: textblock
11732 #: ../src/guestfs-actions.pod:3239 ../fish/guestfish-actions.pod:2226
11733 msgid ""
11734 "The version string of the application or package.  If unavailable this is "
11735 "returned as an empty string C<\"\">."
11736 msgstr ""
11737
11738 #. type: =item
11739 #: ../src/guestfs-actions.pod:3242 ../fish/guestfish-actions.pod:2229
11740 msgid "C<app_release>"
11741 msgstr "C<app_release>"
11742
11743 #. type: textblock
11744 #: ../src/guestfs-actions.pod:3244 ../fish/guestfish-actions.pod:2231
11745 msgid ""
11746 "The release string of the application or package, for package managers that "
11747 "use this.  If unavailable this is returned as an empty string C<\"\">."
11748 msgstr ""
11749
11750 #. type: =item
11751 #: ../src/guestfs-actions.pod:3248 ../fish/guestfish-actions.pod:2235
11752 msgid "C<app_install_path>"
11753 msgstr "C<app_install_path>"
11754
11755 #. type: textblock
11756 #: ../src/guestfs-actions.pod:3250 ../fish/guestfish-actions.pod:2237
11757 msgid ""
11758 "The installation path of the application (on operating systems such as "
11759 "Windows which use installation paths).  This path is in the format used by "
11760 "the guest operating system, it is not a libguestfs path."
11761 msgstr ""
11762
11763 #. type: textblock
11764 #: ../src/guestfs-actions.pod:3255 ../fish/guestfish-actions.pod:2242
11765 msgid "If unavailable this is returned as an empty string C<\"\">."
11766 msgstr ""
11767
11768 #. type: =item
11769 #: ../src/guestfs-actions.pod:3257 ../fish/guestfish-actions.pod:2244
11770 msgid "C<app_trans_path>"
11771 msgstr "C<app_trans_path>"
11772
11773 #. type: textblock
11774 #: ../src/guestfs-actions.pod:3259 ../fish/guestfish-actions.pod:2246
11775 msgid ""
11776 "The install path translated into a libguestfs path.  If unavailable this is "
11777 "returned as an empty string C<\"\">."
11778 msgstr ""
11779
11780 #. type: =item
11781 #: ../src/guestfs-actions.pod:3262 ../fish/guestfish-actions.pod:2249
11782 msgid "C<app_publisher>"
11783 msgstr "C<app_publisher>"
11784
11785 #. type: textblock
11786 #: ../src/guestfs-actions.pod:3264 ../fish/guestfish-actions.pod:2251
11787 msgid ""
11788 "The name of the publisher of the application, for package managers that use "
11789 "this.  If unavailable this is returned as an empty string C<\"\">."
11790 msgstr ""
11791
11792 #. type: =item
11793 #: ../src/guestfs-actions.pod:3268 ../fish/guestfish-actions.pod:2255
11794 msgid "C<app_url>"
11795 msgstr "C<app_url>"
11796
11797 #. type: textblock
11798 #: ../src/guestfs-actions.pod:3270 ../fish/guestfish-actions.pod:2257
11799 msgid ""
11800 "The URL (eg. upstream URL) of the application.  If unavailable this is "
11801 "returned as an empty string C<\"\">."
11802 msgstr ""
11803
11804 #. type: =item
11805 #: ../src/guestfs-actions.pod:3273 ../fish/guestfish-actions.pod:2260
11806 msgid "C<app_source_package>"
11807 msgstr ""
11808
11809 #. type: textblock
11810 #: ../src/guestfs-actions.pod:3275 ../fish/guestfish-actions.pod:2262
11811 msgid ""
11812 "For packaging systems which support this, the name of the source package.  "
11813 "If unavailable this is returned as an empty string C<\"\">."
11814 msgstr ""
11815
11816 #. type: =item
11817 #: ../src/guestfs-actions.pod:3278 ../fish/guestfish-actions.pod:2265
11818 msgid "C<app_summary>"
11819 msgstr ""
11820
11821 #. type: textblock
11822 #: ../src/guestfs-actions.pod:3280 ../fish/guestfish-actions.pod:2267
11823 msgid ""
11824 "A short (usually one line) description of the application or package.  If "
11825 "unavailable this is returned as an empty string C<\"\">."
11826 msgstr ""
11827
11828 #. type: =item
11829 #: ../src/guestfs-actions.pod:3283 ../fish/guestfish-actions.pod:2270
11830 msgid "C<app_description>"
11831 msgstr ""
11832
11833 #. type: textblock
11834 #: ../src/guestfs-actions.pod:3285 ../fish/guestfish-actions.pod:2272
11835 msgid ""
11836 "A longer description of the application or package.  If unavailable this is "
11837 "returned as an empty string C<\"\">."
11838 msgstr ""
11839
11840 #. type: textblock
11841 #: ../src/guestfs-actions.pod:3292
11842 msgid ""
11843 "This function returns a C<struct guestfs_application_list *>, or NULL if "
11844 "there was an error.  I<The caller must call C<guestfs_free_application_list> "
11845 "after use>."
11846 msgstr ""
11847
11848 #. type: textblock
11849 #: ../src/guestfs-actions.pod:3296
11850 msgid "(Added in 1.7.8)"
11851 msgstr ""
11852
11853 #. type: =head2
11854 #: ../src/guestfs-actions.pod:3298
11855 msgid "guestfs_inspect_os"
11856 msgstr ""
11857
11858 #. type: verbatim
11859 #: ../src/guestfs-actions.pod:3300
11860 #, no-wrap
11861 msgid ""
11862 " char **\n"
11863 " guestfs_inspect_os (guestfs_h *g);\n"
11864 "\n"
11865 msgstr ""
11866
11867 #. type: textblock
11868 #: ../src/guestfs-actions.pod:3303 ../fish/guestfish-actions.pod:2283
11869 msgid ""
11870 "This function uses other libguestfs functions and certain heuristics to "
11871 "inspect the disk(s) (usually disks belonging to a virtual machine), looking "
11872 "for operating systems."
11873 msgstr ""
11874
11875 #. type: textblock
11876 #: ../src/guestfs-actions.pod:3307 ../fish/guestfish-actions.pod:2287
11877 msgid "The list returned is empty if no operating systems were found."
11878 msgstr ""
11879
11880 #. type: textblock
11881 #: ../src/guestfs-actions.pod:3309 ../fish/guestfish-actions.pod:2289
11882 msgid ""
11883 "If one operating system was found, then this returns a list with a single "
11884 "element, which is the name of the root filesystem of this operating system.  "
11885 "It is also possible for this function to return a list containing more than "
11886 "one element, indicating a dual-boot or multi-boot virtual machine, with each "
11887 "element being the root filesystem of one of the operating systems."
11888 msgstr ""
11889
11890 #. type: textblock
11891 #: ../src/guestfs-actions.pod:3316
11892 msgid ""
11893 "You can pass the root string(s) returned to other C<guestfs_inspect_get_*> "
11894 "functions in order to query further information about each operating system, "
11895 "such as the name and version."
11896 msgstr ""
11897
11898 #. type: textblock
11899 #: ../src/guestfs-actions.pod:3321
11900 msgid ""
11901 "This function uses other libguestfs features such as C<guestfs_mount_ro> and "
11902 "C<guestfs_umount_all> in order to mount and unmount filesystems and look at "
11903 "the contents.  This should be called with no disks currently mounted.  The "
11904 "function may also use Augeas, so any existing Augeas handle will be closed."
11905 msgstr ""
11906
11907 #. type: textblock
11908 #: ../src/guestfs-actions.pod:3327 ../fish/guestfish-actions.pod:2307
11909 msgid ""
11910 "This function cannot decrypt encrypted disks.  The caller must do that first "
11911 "(supplying the necessary keys) if the disk is encrypted."
11912 msgstr ""
11913
11914 #. type: textblock
11915 #: ../src/guestfs-actions.pod:3333 ../src/guestfs-actions.pod:3664
11916 #: ../src/guestfs-actions.pod:3744
11917 msgid "See also C<guestfs_list_filesystems>."
11918 msgstr ""
11919
11920 #. type: =head2
11921 #: ../src/guestfs-actions.pod:3341
11922 msgid "guestfs_is_blockdev"
11923 msgstr ""
11924
11925 #. type: verbatim
11926 #: ../src/guestfs-actions.pod:3343
11927 #, no-wrap
11928 msgid ""
11929 " int\n"
11930 " guestfs_is_blockdev (guestfs_h *g,\n"
11931 "                      const char *path);\n"
11932 "\n"
11933 msgstr ""
11934
11935 #. type: textblock
11936 #: ../src/guestfs-actions.pod:3347 ../fish/guestfish-actions.pod:2319
11937 msgid ""
11938 "This returns C<true> if and only if there is a block device with the given "
11939 "C<path> name."
11940 msgstr ""
11941
11942 #. type: textblock
11943 #: ../src/guestfs-actions.pod:3350 ../src/guestfs-actions.pod:3379
11944 #: ../src/guestfs-actions.pod:3409 ../src/guestfs-actions.pod:3424
11945 #: ../src/guestfs-actions.pod:3440 ../src/guestfs-actions.pod:3496
11946 #: ../src/guestfs-actions.pod:3511
11947 msgid "See also C<guestfs_stat>."
11948 msgstr ""
11949
11950 #. type: textblock
11951 #: ../src/guestfs-actions.pod:3354 ../src/guestfs-actions.pod:3383
11952 #: ../src/guestfs-actions.pod:3428 ../src/guestfs-actions.pod:3500
11953 #: ../src/guestfs-actions.pod:3515
11954 msgid "(Added in 1.5.10)"
11955 msgstr ""
11956
11957 #. type: =head2
11958 #: ../src/guestfs-actions.pod:3356
11959 msgid "guestfs_is_busy"
11960 msgstr ""
11961
11962 #. type: verbatim
11963 #: ../src/guestfs-actions.pod:3358
11964 #, no-wrap
11965 msgid ""
11966 " int\n"
11967 " guestfs_is_busy (guestfs_h *g);\n"
11968 "\n"
11969 msgstr ""
11970
11971 #. type: textblock
11972 #: ../src/guestfs-actions.pod:3361 ../fish/guestfish-actions.pod:2328
11973 msgid ""
11974 "This returns true iff this handle is busy processing a command (in the "
11975 "C<BUSY> state)."
11976 msgstr ""
11977
11978 #. type: =head2
11979 #: ../src/guestfs-actions.pod:3370
11980 msgid "guestfs_is_chardev"
11981 msgstr ""
11982
11983 #. type: verbatim
11984 #: ../src/guestfs-actions.pod:3372
11985 #, no-wrap
11986 msgid ""
11987 " int\n"
11988 " guestfs_is_chardev (guestfs_h *g,\n"
11989 "                     const char *path);\n"
11990 "\n"
11991 msgstr ""
11992
11993 #. type: textblock
11994 #: ../src/guestfs-actions.pod:3376 ../fish/guestfish-actions.pod:2337
11995 msgid ""
11996 "This returns C<true> if and only if there is a character device with the "
11997 "given C<path> name."
11998 msgstr ""
11999
12000 #. type: =head2
12001 #: ../src/guestfs-actions.pod:3385
12002 msgid "guestfs_is_config"
12003 msgstr ""
12004
12005 #. type: verbatim
12006 #: ../src/guestfs-actions.pod:3387
12007 #, no-wrap
12008 msgid ""
12009 " int\n"
12010 " guestfs_is_config (guestfs_h *g);\n"
12011 "\n"
12012 msgstr ""
12013
12014 #. type: textblock
12015 #: ../src/guestfs-actions.pod:3390 ../fish/guestfish-actions.pod:2346
12016 msgid ""
12017 "This returns true iff this handle is being configured (in the C<CONFIG> "
12018 "state)."
12019 msgstr ""
12020
12021 #. type: =head2
12022 #: ../src/guestfs-actions.pod:3399
12023 msgid "guestfs_is_dir"
12024 msgstr ""
12025
12026 #. type: verbatim
12027 #: ../src/guestfs-actions.pod:3401
12028 #, no-wrap
12029 msgid ""
12030 " int\n"
12031 " guestfs_is_dir (guestfs_h *g,\n"
12032 "                 const char *path);\n"
12033 "\n"
12034 msgstr ""
12035
12036 #. type: textblock
12037 #: ../src/guestfs-actions.pod:3405 ../fish/guestfish-actions.pod:2355
12038 msgid ""
12039 "This returns C<true> if and only if there is a directory with the given "
12040 "C<path> name.  Note that it returns false for other objects like files."
12041 msgstr ""
12042
12043 #. type: =head2
12044 #: ../src/guestfs-actions.pod:3415
12045 msgid "guestfs_is_fifo"
12046 msgstr ""
12047
12048 #. type: verbatim
12049 #: ../src/guestfs-actions.pod:3417
12050 #, no-wrap
12051 msgid ""
12052 " int\n"
12053 " guestfs_is_fifo (guestfs_h *g,\n"
12054 "                  const char *path);\n"
12055 "\n"
12056 msgstr ""
12057
12058 #. type: textblock
12059 #: ../src/guestfs-actions.pod:3421 ../fish/guestfish-actions.pod:2365
12060 msgid ""
12061 "This returns C<true> if and only if there is a FIFO (named pipe)  with the "
12062 "given C<path> name."
12063 msgstr ""
12064
12065 #. type: =head2
12066 #: ../src/guestfs-actions.pod:3430
12067 msgid "guestfs_is_file"
12068 msgstr ""
12069
12070 #. type: verbatim
12071 #: ../src/guestfs-actions.pod:3432
12072 #, no-wrap
12073 msgid ""
12074 " int\n"
12075 " guestfs_is_file (guestfs_h *g,\n"
12076 "                  const char *path);\n"
12077 "\n"
12078 msgstr ""
12079
12080 #. type: textblock
12081 #: ../src/guestfs-actions.pod:3436 ../fish/guestfish-actions.pod:2374
12082 msgid ""
12083 "This returns C<true> if and only if there is a regular file with the given "
12084 "C<path> name.  Note that it returns false for other objects like directories."
12085 msgstr ""
12086
12087 #. type: =head2
12088 #: ../src/guestfs-actions.pod:3446
12089 msgid "guestfs_is_launching"
12090 msgstr ""
12091
12092 #. type: verbatim
12093 #: ../src/guestfs-actions.pod:3448
12094 #, no-wrap
12095 msgid ""
12096 " int\n"
12097 " guestfs_is_launching (guestfs_h *g);\n"
12098 "\n"
12099 msgstr ""
12100
12101 #. type: textblock
12102 #: ../src/guestfs-actions.pod:3451 ../fish/guestfish-actions.pod:2384
12103 msgid ""
12104 "This returns true iff this handle is launching the subprocess (in the "
12105 "C<LAUNCHING> state)."
12106 msgstr ""
12107
12108 #. type: =head2
12109 #: ../src/guestfs-actions.pod:3460
12110 msgid "guestfs_is_lv"
12111 msgstr ""
12112
12113 #. type: verbatim
12114 #: ../src/guestfs-actions.pod:3462
12115 #, no-wrap
12116 msgid ""
12117 " int\n"
12118 " guestfs_is_lv (guestfs_h *g,\n"
12119 "                const char *device);\n"
12120 "\n"
12121 msgstr ""
12122
12123 #. type: textblock
12124 #: ../src/guestfs-actions.pod:3466 ../fish/guestfish-actions.pod:2393
12125 msgid ""
12126 "This command tests whether C<device> is a logical volume, and returns true "
12127 "iff this is the case."
12128 msgstr ""
12129
12130 #. type: =head2
12131 #: ../src/guestfs-actions.pod:3473
12132 msgid "guestfs_is_ready"
12133 msgstr ""
12134
12135 #. type: verbatim
12136 #: ../src/guestfs-actions.pod:3475
12137 #, no-wrap
12138 msgid ""
12139 " int\n"
12140 " guestfs_is_ready (guestfs_h *g);\n"
12141 "\n"
12142 msgstr ""
12143
12144 #. type: textblock
12145 #: ../src/guestfs-actions.pod:3478 ../fish/guestfish-actions.pod:2400
12146 msgid ""
12147 "This returns true iff this handle is ready to accept commands (in the "
12148 "C<READY> state)."
12149 msgstr ""
12150
12151 #. type: =head2
12152 #: ../src/guestfs-actions.pod:3487
12153 msgid "guestfs_is_socket"
12154 msgstr ""
12155
12156 #. type: verbatim
12157 #: ../src/guestfs-actions.pod:3489
12158 #, no-wrap
12159 msgid ""
12160 " int\n"
12161 " guestfs_is_socket (guestfs_h *g,\n"
12162 "                    const char *path);\n"
12163 "\n"
12164 msgstr ""
12165
12166 #. type: textblock
12167 #: ../src/guestfs-actions.pod:3493 ../fish/guestfish-actions.pod:2409
12168 msgid ""
12169 "This returns C<true> if and only if there is a Unix domain socket with the "
12170 "given C<path> name."
12171 msgstr ""
12172
12173 #. type: =head2
12174 #: ../src/guestfs-actions.pod:3502
12175 msgid "guestfs_is_symlink"
12176 msgstr ""
12177
12178 #. type: verbatim
12179 #: ../src/guestfs-actions.pod:3504
12180 #, no-wrap
12181 msgid ""
12182 " int\n"
12183 " guestfs_is_symlink (guestfs_h *g,\n"
12184 "                     const char *path);\n"
12185 "\n"
12186 msgstr ""
12187
12188 #. type: textblock
12189 #: ../src/guestfs-actions.pod:3508 ../fish/guestfish-actions.pod:2418
12190 msgid ""
12191 "This returns C<true> if and only if there is a symbolic link with the given "
12192 "C<path> name."
12193 msgstr ""
12194
12195 #. type: =head2
12196 #: ../src/guestfs-actions.pod:3517
12197 msgid "guestfs_is_zero"
12198 msgstr ""
12199
12200 #. type: verbatim
12201 #: ../src/guestfs-actions.pod:3519
12202 #, no-wrap
12203 msgid ""
12204 " int\n"
12205 " guestfs_is_zero (guestfs_h *g,\n"
12206 "                  const char *path);\n"
12207 "\n"
12208 msgstr ""
12209
12210 #. type: textblock
12211 #: ../src/guestfs-actions.pod:3523 ../fish/guestfish-actions.pod:2427
12212 msgid ""
12213 "This returns true iff the file exists and the file is empty or it contains "
12214 "all zero bytes."
12215 msgstr ""
12216
12217 #. type: textblock
12218 #: ../src/guestfs-actions.pod:3528 ../src/guestfs-actions.pod:3542
12219 msgid "(Added in 1.11.8)"
12220 msgstr ""
12221
12222 #. type: =head2
12223 #: ../src/guestfs-actions.pod:3530
12224 msgid "guestfs_is_zero_device"
12225 msgstr ""
12226
12227 #. type: verbatim
12228 #: ../src/guestfs-actions.pod:3532
12229 #, no-wrap
12230 msgid ""
12231 " int\n"
12232 " guestfs_is_zero_device (guestfs_h *g,\n"
12233 "                         const char *device);\n"
12234 "\n"
12235 msgstr ""
12236
12237 #. type: textblock
12238 #: ../src/guestfs-actions.pod:3536 ../fish/guestfish-actions.pod:2434
12239 msgid "This returns true iff the device exists and contains all zero bytes."
12240 msgstr ""
12241
12242 #. type: textblock
12243 #: ../src/guestfs-actions.pod:3538 ../fish/guestfish-actions.pod:2436
12244 msgid "Note that for large devices this can take a long time to run."
12245 msgstr ""
12246
12247 #. type: =head2
12248 #: ../src/guestfs-actions.pod:3544
12249 msgid "guestfs_kill_subprocess"
12250 msgstr ""
12251
12252 #. type: verbatim
12253 #: ../src/guestfs-actions.pod:3546
12254 #, no-wrap
12255 msgid ""
12256 " int\n"
12257 " guestfs_kill_subprocess (guestfs_h *g);\n"
12258 "\n"
12259 msgstr ""
12260
12261 #. type: textblock
12262 #: ../src/guestfs-actions.pod:3549 ../fish/guestfish-actions.pod:2442
12263 msgid "This kills the qemu subprocess.  You should never need to call this."
12264 msgstr ""
12265
12266 #. type: =head2
12267 #: ../src/guestfs-actions.pod:3555
12268 msgid "guestfs_launch"
12269 msgstr ""
12270
12271 #. type: verbatim
12272 #: ../src/guestfs-actions.pod:3557
12273 #, no-wrap
12274 msgid ""
12275 " int\n"
12276 " guestfs_launch (guestfs_h *g);\n"
12277 "\n"
12278 msgstr ""
12279
12280 #. type: textblock
12281 #: ../src/guestfs-actions.pod:3560 ../fish/guestfish-actions.pod:2450
12282 msgid ""
12283 "Internally libguestfs is implemented by running a virtual machine using "
12284 "L<qemu(1)>."
12285 msgstr ""
12286
12287 #. type: textblock
12288 #: ../src/guestfs-actions.pod:3563 ../fish/guestfish-actions.pod:2453
12289 msgid ""
12290 "You should call this after configuring the handle (eg. adding drives) but "
12291 "before performing any actions."
12292 msgstr ""
12293
12294 #. type: =head2
12295 #: ../src/guestfs-actions.pod:3575
12296 msgid "guestfs_lchown"
12297 msgstr ""
12298
12299 #. type: verbatim
12300 #: ../src/guestfs-actions.pod:3577
12301 #, no-wrap
12302 msgid ""
12303 " int\n"
12304 " guestfs_lchown (guestfs_h *g,\n"
12305 "                 int owner,\n"
12306 "                 int group,\n"
12307 "                 const char *path);\n"
12308 "\n"
12309 msgstr ""
12310
12311 #. type: textblock
12312 #: ../src/guestfs-actions.pod:3583
12313 msgid ""
12314 "Change the file owner to C<owner> and group to C<group>.  This is like "
12315 "C<guestfs_chown> but if C<path> is a symlink then the link itself is "
12316 "changed, not the target."
12317 msgstr ""
12318
12319 #. type: =head2
12320 #: ../src/guestfs-actions.pod:3595
12321 msgid "guestfs_lgetxattr"
12322 msgstr ""
12323
12324 #. type: verbatim
12325 #: ../src/guestfs-actions.pod:3597
12326 #, no-wrap
12327 msgid ""
12328 " char *\n"
12329 " guestfs_lgetxattr (guestfs_h *g,\n"
12330 "                    const char *path,\n"
12331 "                    const char *name,\n"
12332 "                    size_t *size_r);\n"
12333 "\n"
12334 msgstr ""
12335
12336 #. type: textblock
12337 #: ../src/guestfs-actions.pod:3603 ../fish/guestfish-actions.pod:2472
12338 msgid ""
12339 "Get a single extended attribute from file C<path> named C<name>.  If C<path> "
12340 "is a symlink, then this call returns an extended attribute from the symlink."
12341 msgstr ""
12342
12343 #. type: textblock
12344 #: ../src/guestfs-actions.pod:3617
12345 msgid "See also: C<guestfs_lgetxattrs>, C<guestfs_getxattr>, L<attr(5)>."
12346 msgstr ""
12347
12348 #. type: =head2
12349 #: ../src/guestfs-actions.pod:3625
12350 msgid "guestfs_lgetxattrs"
12351 msgstr ""
12352
12353 #. type: verbatim
12354 #: ../src/guestfs-actions.pod:3627
12355 #, no-wrap
12356 msgid ""
12357 " struct guestfs_xattr_list *\n"
12358 " guestfs_lgetxattrs (guestfs_h *g,\n"
12359 "                     const char *path);\n"
12360 "\n"
12361 msgstr ""
12362
12363 #. type: textblock
12364 #: ../src/guestfs-actions.pod:3631
12365 msgid ""
12366 "This is the same as C<guestfs_getxattrs>, but if C<path> is a symbolic link, "
12367 "then it returns the extended attributes of the link itself."
12368 msgstr ""
12369
12370 #. type: =head2
12371 #: ../src/guestfs-actions.pod:3641
12372 msgid "guestfs_list_9p"
12373 msgstr ""
12374
12375 #. type: verbatim
12376 #: ../src/guestfs-actions.pod:3643
12377 #, no-wrap
12378 msgid ""
12379 " char **\n"
12380 " guestfs_list_9p (guestfs_h *g);\n"
12381 "\n"
12382 msgstr ""
12383
12384 #. type: textblock
12385 #: ../src/guestfs-actions.pod:3646 ../fish/guestfish-actions.pod:2500
12386 msgid ""
12387 "List all 9p filesystems attached to the guest.  A list of mount tags is "
12388 "returned."
12389 msgstr ""
12390
12391 #. type: =head2
12392 #: ../src/guestfs-actions.pod:3655
12393 msgid "guestfs_list_devices"
12394 msgstr ""
12395
12396 #. type: verbatim
12397 #: ../src/guestfs-actions.pod:3657
12398 #, no-wrap
12399 msgid ""
12400 " char **\n"
12401 " guestfs_list_devices (guestfs_h *g);\n"
12402 "\n"
12403 msgstr ""
12404
12405 #. type: textblock
12406 #: ../src/guestfs-actions.pod:3660 ../fish/guestfish-actions.pod:2507
12407 msgid "List all the block devices."
12408 msgstr ""
12409
12410 #. type: textblock
12411 #: ../src/guestfs-actions.pod:3662 ../fish/guestfish-actions.pod:2509
12412 msgid "The full block device names are returned, eg. C</dev/sda>."
12413 msgstr ""
12414
12415 #. type: =head2
12416 #: ../src/guestfs-actions.pod:3672
12417 msgid "guestfs_list_dm_devices"
12418 msgstr ""
12419
12420 #. type: verbatim
12421 #: ../src/guestfs-actions.pod:3674
12422 #, no-wrap
12423 msgid ""
12424 " char **\n"
12425 " guestfs_list_dm_devices (guestfs_h *g);\n"
12426 "\n"
12427 msgstr ""
12428
12429 #. type: textblock
12430 #: ../src/guestfs-actions.pod:3677 ../fish/guestfish-actions.pod:2517
12431 msgid "List all device mapper devices."
12432 msgstr ""
12433
12434 #. type: textblock
12435 #: ../src/guestfs-actions.pod:3679
12436 msgid ""
12437 "The returned list contains C</dev/mapper/*> devices, eg. ones created by a "
12438 "previous call to C<guestfs_luks_open>."
12439 msgstr ""
12440
12441 #. type: textblock
12442 #: ../src/guestfs-actions.pod:3682
12443 msgid ""
12444 "Device mapper devices which correspond to logical volumes are I<not> "
12445 "returned in this list.  Call C<guestfs_lvs> if you want to list logical "
12446 "volumes."
12447 msgstr ""
12448
12449 #. type: =head2
12450 #: ../src/guestfs-actions.pod:3690
12451 msgid "guestfs_list_filesystems"
12452 msgstr ""
12453
12454 #. type: verbatim
12455 #: ../src/guestfs-actions.pod:3692
12456 #, no-wrap
12457 msgid ""
12458 " char **\n"
12459 " guestfs_list_filesystems (guestfs_h *g);\n"
12460 "\n"
12461 msgstr ""
12462
12463 #. type: textblock
12464 #: ../src/guestfs-actions.pod:3695 ../fish/guestfish-actions.pod:2530
12465 msgid ""
12466 "This inspection command looks for filesystems on partitions, block devices "
12467 "and logical volumes, returning a list of devices containing filesystems and "
12468 "their type."
12469 msgstr ""
12470
12471 #. type: textblock
12472 #: ../src/guestfs-actions.pod:3699 ../fish/guestfish-actions.pod:2534
12473 msgid ""
12474 "The return value is a hash, where the keys are the devices containing "
12475 "filesystems, and the values are the filesystem types.  For example:"
12476 msgstr ""
12477
12478 #. type: verbatim
12479 #: ../src/guestfs-actions.pod:3703 ../fish/guestfish-actions.pod:2538
12480 #, no-wrap
12481 msgid ""
12482 " \"/dev/sda1\" => \"ntfs\"\n"
12483 " \"/dev/sda2\" => \"ext2\"\n"
12484 " \"/dev/vg_guest/lv_root\" => \"ext4\"\n"
12485 " \"/dev/vg_guest/lv_swap\" => \"swap\"\n"
12486 "\n"
12487 msgstr ""
12488
12489 #. type: textblock
12490 #: ../src/guestfs-actions.pod:3708 ../fish/guestfish-actions.pod:2543
12491 msgid ""
12492 "The value can have the special value \"unknown\", meaning the content of the "
12493 "device is undetermined or empty.  \"swap\" means a Linux swap partition."
12494 msgstr ""
12495
12496 #. type: textblock
12497 #: ../src/guestfs-actions.pod:3712
12498 msgid ""
12499 "This command runs other libguestfs commands, which might include "
12500 "C<guestfs_mount> and C<guestfs_umount>, and therefore you should use this "
12501 "soon after launch and only when nothing is mounted."
12502 msgstr ""
12503
12504 #. type: textblock
12505 #: ../src/guestfs-actions.pod:3716
12506 msgid ""
12507 "Not all of the filesystems returned will be mountable.  In particular, swap "
12508 "partitions are returned in the list.  Also this command does not check that "
12509 "each filesystem found is valid and mountable, and some filesystems might be "
12510 "mountable but require special options.  Filesystems may not all belong to a "
12511 "single logical operating system (use C<guestfs_inspect_os> to look for OSes)."
12512 msgstr ""
12513
12514 #. type: textblock
12515 #: ../src/guestfs-actions.pod:3730 ../src/guestfs-actions.pod:5497
12516 msgid "(Added in 1.5.15)"
12517 msgstr ""
12518
12519 #. type: =head2
12520 #: ../src/guestfs-actions.pod:3732
12521 msgid "guestfs_list_partitions"
12522 msgstr ""
12523
12524 #. type: verbatim
12525 #: ../src/guestfs-actions.pod:3734
12526 #, no-wrap
12527 msgid ""
12528 " char **\n"
12529 " guestfs_list_partitions (guestfs_h *g);\n"
12530 "\n"
12531 msgstr ""
12532
12533 #. type: textblock
12534 #: ../src/guestfs-actions.pod:3737 ../fish/guestfish-actions.pod:2563
12535 msgid "List all the partitions detected on all block devices."
12536 msgstr ""
12537
12538 #. type: textblock
12539 #: ../src/guestfs-actions.pod:3739 ../fish/guestfish-actions.pod:2565
12540 msgid "The full partition device names are returned, eg. C</dev/sda1>"
12541 msgstr ""
12542
12543 #. type: textblock
12544 #: ../src/guestfs-actions.pod:3741
12545 msgid ""
12546 "This does not return logical volumes.  For that you will need to call "
12547 "C<guestfs_lvs>."
12548 msgstr ""
12549
12550 #. type: =head2
12551 #: ../src/guestfs-actions.pod:3752
12552 msgid "guestfs_ll"
12553 msgstr ""
12554
12555 #. type: verbatim
12556 #: ../src/guestfs-actions.pod:3754
12557 #, no-wrap
12558 msgid ""
12559 " char *\n"
12560 " guestfs_ll (guestfs_h *g,\n"
12561 "             const char *directory);\n"
12562 "\n"
12563 msgstr ""
12564
12565 #. type: textblock
12566 #: ../src/guestfs-actions.pod:3758 ../fish/guestfish-actions.pod:2576
12567 msgid ""
12568 "List the files in C<directory> (relative to the root directory, there is no "
12569 "cwd) in the format of 'ls -la'."
12570 msgstr ""
12571
12572 #. type: textblock
12573 #: ../src/guestfs-actions.pod:3761 ../fish/guestfish-actions.pod:2579
12574 msgid ""
12575 "This command is mostly useful for interactive sessions.  It is I<not> "
12576 "intended that you try to parse the output string."
12577 msgstr ""
12578
12579 #. type: =head2
12580 #: ../src/guestfs-actions.pod:3769
12581 msgid "guestfs_ln"
12582 msgstr ""
12583
12584 #. type: verbatim
12585 #: ../src/guestfs-actions.pod:3771
12586 #, no-wrap
12587 msgid ""
12588 " int\n"
12589 " guestfs_ln (guestfs_h *g,\n"
12590 "             const char *target,\n"
12591 "             const char *linkname);\n"
12592 "\n"
12593 msgstr ""
12594
12595 #. type: textblock
12596 #: ../src/guestfs-actions.pod:3776 ../fish/guestfish-actions.pod:2586
12597 msgid "This command creates a hard link using the C<ln> command."
12598 msgstr ""
12599
12600 #. type: =head2
12601 #: ../src/guestfs-actions.pod:3782
12602 msgid "guestfs_ln_f"
12603 msgstr ""
12604
12605 #. type: verbatim
12606 #: ../src/guestfs-actions.pod:3784
12607 #, no-wrap
12608 msgid ""
12609 " int\n"
12610 " guestfs_ln_f (guestfs_h *g,\n"
12611 "               const char *target,\n"
12612 "               const char *linkname);\n"
12613 "\n"
12614 msgstr ""
12615
12616 #. type: textblock
12617 #: ../src/guestfs-actions.pod:3789 ../fish/guestfish-actions.pod:2592
12618 msgid ""
12619 "This command creates a hard link using the C<ln -f> command.  The I<-f> "
12620 "option removes the link (C<linkname>) if it exists already."
12621 msgstr ""
12622
12623 #. type: =head2
12624 #: ../src/guestfs-actions.pod:3796
12625 msgid "guestfs_ln_s"
12626 msgstr ""
12627
12628 #. type: verbatim
12629 #: ../src/guestfs-actions.pod:3798
12630 #, no-wrap
12631 msgid ""
12632 " int\n"
12633 " guestfs_ln_s (guestfs_h *g,\n"
12634 "               const char *target,\n"
12635 "               const char *linkname);\n"
12636 "\n"
12637 msgstr ""
12638
12639 #. type: textblock
12640 #: ../src/guestfs-actions.pod:3803 ../fish/guestfish-actions.pod:2599
12641 msgid "This command creates a symbolic link using the C<ln -s> command."
12642 msgstr ""
12643
12644 #. type: =head2
12645 #: ../src/guestfs-actions.pod:3809
12646 msgid "guestfs_ln_sf"
12647 msgstr ""
12648
12649 #. type: verbatim
12650 #: ../src/guestfs-actions.pod:3811
12651 #, no-wrap
12652 msgid ""
12653 " int\n"
12654 " guestfs_ln_sf (guestfs_h *g,\n"
12655 "                const char *target,\n"
12656 "                const char *linkname);\n"
12657 "\n"
12658 msgstr ""
12659
12660 #. type: textblock
12661 #: ../src/guestfs-actions.pod:3816 ../fish/guestfish-actions.pod:2605
12662 msgid ""
12663 "This command creates a symbolic link using the C<ln -sf> command, The I<-f> "
12664 "option removes the link (C<linkname>) if it exists already."
12665 msgstr ""
12666
12667 #. type: =head2
12668 #: ../src/guestfs-actions.pod:3823
12669 msgid "guestfs_lremovexattr"
12670 msgstr ""
12671
12672 #. type: verbatim
12673 #: ../src/guestfs-actions.pod:3825
12674 #, no-wrap
12675 msgid ""
12676 " int\n"
12677 " guestfs_lremovexattr (guestfs_h *g,\n"
12678 "                       const char *xattr,\n"
12679 "                       const char *path);\n"
12680 "\n"
12681 msgstr ""
12682
12683 #. type: textblock
12684 #: ../src/guestfs-actions.pod:3830
12685 msgid ""
12686 "This is the same as C<guestfs_removexattr>, but if C<path> is a symbolic "
12687 "link, then it removes an extended attribute of the link itself."
12688 msgstr ""
12689
12690 #. type: =head2
12691 #: ../src/guestfs-actions.pod:3838
12692 msgid "guestfs_ls"
12693 msgstr ""
12694
12695 #. type: verbatim
12696 #: ../src/guestfs-actions.pod:3840
12697 #, no-wrap
12698 msgid ""
12699 " char **\n"
12700 " guestfs_ls (guestfs_h *g,\n"
12701 "             const char *directory);\n"
12702 "\n"
12703 msgstr ""
12704
12705 #. type: textblock
12706 #: ../src/guestfs-actions.pod:3844 ../fish/guestfish-actions.pod:2620
12707 msgid ""
12708 "List the files in C<directory> (relative to the root directory, there is no "
12709 "cwd).  The '.' and '..' entries are not returned, but hidden files are shown."
12710 msgstr ""
12711
12712 #. type: textblock
12713 #: ../src/guestfs-actions.pod:3848
12714 msgid ""
12715 "This command is mostly useful for interactive sessions.  Programs should "
12716 "probably use C<guestfs_readdir> instead."
12717 msgstr ""
12718
12719 #. type: =head2
12720 #: ../src/guestfs-actions.pod:3857
12721 msgid "guestfs_lsetxattr"
12722 msgstr ""
12723
12724 #. type: verbatim
12725 #: ../src/guestfs-actions.pod:3859
12726 #, no-wrap
12727 msgid ""
12728 " int\n"
12729 " guestfs_lsetxattr (guestfs_h *g,\n"
12730 "                    const char *xattr,\n"
12731 "                    const char *val,\n"
12732 "                    int vallen,\n"
12733 "                    const char *path);\n"
12734 "\n"
12735 msgstr ""
12736
12737 #. type: textblock
12738 #: ../src/guestfs-actions.pod:3866
12739 msgid ""
12740 "This is the same as C<guestfs_setxattr>, but if C<path> is a symbolic link, "
12741 "then it sets an extended attribute of the link itself."
12742 msgstr ""
12743
12744 #. type: =head2
12745 #: ../src/guestfs-actions.pod:3874
12746 msgid "guestfs_lstat"
12747 msgstr ""
12748
12749 #. type: verbatim
12750 #: ../src/guestfs-actions.pod:3876
12751 #, no-wrap
12752 msgid ""
12753 " struct guestfs_stat *\n"
12754 " guestfs_lstat (guestfs_h *g,\n"
12755 "                const char *path);\n"
12756 "\n"
12757 msgstr ""
12758
12759 #. type: textblock
12760 #: ../src/guestfs-actions.pod:3880 ../src/guestfs-actions.pod:6632
12761 #: ../fish/guestfish-actions.pod:2639 ../fish/guestfish-actions.pod:4426
12762 msgid "Returns file information for the given C<path>."
12763 msgstr ""
12764
12765 #. type: textblock
12766 #: ../src/guestfs-actions.pod:3882
12767 msgid ""
12768 "This is the same as C<guestfs_stat> except that if C<path> is a symbolic "
12769 "link, then the link is stat-ed, not the file it refers to."
12770 msgstr ""
12771
12772 #. type: textblock
12773 #: ../src/guestfs-actions.pod:3886 ../fish/guestfish-actions.pod:2645
12774 msgid "This is the same as the C<lstat(2)> system call."
12775 msgstr ""
12776
12777 #. type: textblock
12778 #: ../src/guestfs-actions.pod:3888 ../src/guestfs-actions.pod:6636
12779 msgid ""
12780 "This function returns a C<struct guestfs_stat *>, or NULL if there was an "
12781 "error.  I<The caller must call C<guestfs_free_stat> after use>."
12782 msgstr ""
12783
12784 #. type: textblock
12785 #: ../src/guestfs-actions.pod:3892 ../src/guestfs-actions.pod:6640
12786 #: ../src/guestfs-actions.pod:6658 ../src/guestfs-actions.pod:7039
12787 msgid "(Added in 0.9.2)"
12788 msgstr ""
12789
12790 #. type: =head2
12791 #: ../src/guestfs-actions.pod:3894
12792 msgid "guestfs_lstatlist"
12793 msgstr ""
12794
12795 #. type: verbatim
12796 #: ../src/guestfs-actions.pod:3896
12797 #, no-wrap
12798 msgid ""
12799 " struct guestfs_stat_list *\n"
12800 " guestfs_lstatlist (guestfs_h *g,\n"
12801 "                    const char *path,\n"
12802 "                    char *const *names);\n"
12803 "\n"
12804 msgstr ""
12805
12806 #. type: textblock
12807 #: ../src/guestfs-actions.pod:3901
12808 msgid ""
12809 "This call allows you to perform the C<guestfs_lstat> operation on multiple "
12810 "files, where all files are in the directory C<path>.  C<names> is the list "
12811 "of files from this directory."
12812 msgstr ""
12813
12814 #. type: textblock
12815 #: ../src/guestfs-actions.pod:3905 ../fish/guestfish-actions.pod:2655
12816 msgid ""
12817 "On return you get a list of stat structs, with a one-to-one correspondence "
12818 "to the C<names> list.  If any name did not exist or could not be lstat'd, "
12819 "then the C<ino> field of that structure is set to C<-1>."
12820 msgstr ""
12821
12822 #. type: textblock
12823 #: ../src/guestfs-actions.pod:3910
12824 msgid ""
12825 "This call is intended for programs that want to efficiently list a directory "
12826 "contents without making many round-trips.  See also C<guestfs_lxattrlist> "
12827 "for a similarly efficient call for getting extended attributes.  Very long "
12828 "directory listings might cause the protocol message size to be exceeded, "
12829 "causing this call to fail.  The caller must split up such requests into "
12830 "smaller groups of names."
12831 msgstr ""
12832
12833 #. type: textblock
12834 #: ../src/guestfs-actions.pod:3918
12835 msgid ""
12836 "This function returns a C<struct guestfs_stat_list *>, or NULL if there was "
12837 "an error.  I<The caller must call C<guestfs_free_stat_list> after use>."
12838 msgstr ""
12839
12840 #. type: =head2
12841 #: ../src/guestfs-actions.pod:3924
12842 msgid "guestfs_luks_add_key"
12843 msgstr ""
12844
12845 #. type: verbatim
12846 #: ../src/guestfs-actions.pod:3926
12847 #, no-wrap
12848 msgid ""
12849 " int\n"
12850 " guestfs_luks_add_key (guestfs_h *g,\n"
12851 "                       const char *device,\n"
12852 "                       const char *key,\n"
12853 "                       const char *newkey,\n"
12854 "                       int keyslot);\n"
12855 "\n"
12856 msgstr ""
12857
12858 #. type: textblock
12859 #: ../src/guestfs-actions.pod:3933 ../fish/guestfish-actions.pod:2672
12860 msgid ""
12861 "This command adds a new key on LUKS device C<device>.  C<key> is any "
12862 "existing key, and is used to access the device.  C<newkey> is the new key to "
12863 "add.  C<keyslot> is the key slot that will be replaced."
12864 msgstr ""
12865
12866 #. type: textblock
12867 #: ../src/guestfs-actions.pod:3938
12868 msgid ""
12869 "Note that if C<keyslot> already contains a key, then this command will "
12870 "fail.  You have to use C<guestfs_luks_kill_slot> first to remove that key."
12871 msgstr ""
12872
12873 #. type: textblock
12874 #: ../src/guestfs-actions.pod:3944 ../src/guestfs-actions.pod:3984
12875 #: ../src/guestfs-actions.pod:4007 ../src/guestfs-actions.pod:4027
12876 #: ../src/guestfs-actions.pod:4062 ../src/guestfs-actions.pod:4081
12877 msgid ""
12878 "This function takes a key or passphrase parameter which could contain "
12879 "sensitive material.  Read the section L</KEYS AND PASSPHRASES> for more "
12880 "information."
12881 msgstr ""
12882
12883 #. type: textblock
12884 #: ../src/guestfs-actions.pod:3948 ../src/guestfs-actions.pod:3988
12885 #: ../src/guestfs-actions.pod:4011 ../src/guestfs-actions.pod:4031
12886 msgid "(Added in 1.5.2)"
12887 msgstr ""
12888
12889 #. type: =head2
12890 #: ../src/guestfs-actions.pod:3950
12891 msgid "guestfs_luks_close"
12892 msgstr ""
12893
12894 #. type: verbatim
12895 #: ../src/guestfs-actions.pod:3952
12896 #, no-wrap
12897 msgid ""
12898 " int\n"
12899 " guestfs_luks_close (guestfs_h *g,\n"
12900 "                     const char *device);\n"
12901 "\n"
12902 msgstr ""
12903
12904 #. type: textblock
12905 #: ../src/guestfs-actions.pod:3956
12906 msgid ""
12907 "This closes a LUKS device that was created earlier by C<guestfs_luks_open> "
12908 "or C<guestfs_luks_open_ro>.  The C<device> parameter must be the name of the "
12909 "LUKS mapping device (ie. C</dev/mapper/mapname>) and I<not> the name of the "
12910 "underlying block device."
12911 msgstr ""
12912
12913 #. type: textblock
12914 #: ../src/guestfs-actions.pod:3964 ../src/guestfs-actions.pod:4066
12915 #: ../src/guestfs-actions.pod:4085 ../src/guestfs-actions.pod:4135
12916 #: ../src/guestfs-actions.pod:4183
12917 msgid "(Added in 1.5.1)"
12918 msgstr ""
12919
12920 #. type: =head2
12921 #: ../src/guestfs-actions.pod:3966
12922 msgid "guestfs_luks_format"
12923 msgstr ""
12924
12925 #. type: verbatim
12926 #: ../src/guestfs-actions.pod:3968
12927 #, no-wrap
12928 msgid ""
12929 " int\n"
12930 " guestfs_luks_format (guestfs_h *g,\n"
12931 "                      const char *device,\n"
12932 "                      const char *key,\n"
12933 "                      int keyslot);\n"
12934 "\n"
12935 msgstr ""
12936
12937 #. type: textblock
12938 #: ../src/guestfs-actions.pod:3974 ../fish/guestfish-actions.pod:2698
12939 msgid ""
12940 "This command erases existing data on C<device> and formats the device as a "
12941 "LUKS encrypted device.  C<key> is the initial key, which is added to key "
12942 "slot C<slot>.  (LUKS supports 8 key slots, numbered 0-7)."
12943 msgstr ""
12944
12945 #. type: textblock
12946 #: ../src/guestfs-actions.pod:3981 ../src/guestfs-actions.pod:4004
12947 #: ../src/guestfs-actions.pod:4147 ../src/guestfs-actions.pod:5248
12948 #: ../src/guestfs-actions.pod:6030 ../src/guestfs-actions.pod:6439
12949 #: ../src/guestfs-actions.pod:6469 ../src/guestfs-actions.pod:6502
12950 #: ../src/guestfs-actions.pod:7678 ../fish/guestfish-actions.pod:2706
12951 #: ../fish/guestfish-actions.pod:2719 ../fish/guestfish-actions.pod:2806
12952 #: ../fish/guestfish-actions.pod:3467 ../fish/guestfish-actions.pod:3987
12953 #: ../fish/guestfish-actions.pod:4297 ../fish/guestfish-actions.pod:4320
12954 #: ../fish/guestfish-actions.pod:4342 ../fish/guestfish-actions.pod:5066
12955 msgid ""
12956 "B<This command is dangerous.  Without careful use you can easily destroy all "
12957 "your data>."
12958 msgstr ""
12959
12960 #. type: =head2
12961 #: ../src/guestfs-actions.pod:3990
12962 msgid "guestfs_luks_format_cipher"
12963 msgstr ""
12964
12965 #. type: verbatim
12966 #: ../src/guestfs-actions.pod:3992
12967 #, no-wrap
12968 msgid ""
12969 " int\n"
12970 " guestfs_luks_format_cipher (guestfs_h *g,\n"
12971 "                             const char *device,\n"
12972 "                             const char *key,\n"
12973 "                             int keyslot,\n"
12974 "                             const char *cipher);\n"
12975 "\n"
12976 msgstr ""
12977
12978 #. type: textblock
12979 #: ../src/guestfs-actions.pod:3999
12980 msgid ""
12981 "This command is the same as C<guestfs_luks_format> but it also allows you to "
12982 "set the C<cipher> used."
12983 msgstr ""
12984
12985 #. type: =head2
12986 #: ../src/guestfs-actions.pod:4013
12987 msgid "guestfs_luks_kill_slot"
12988 msgstr ""
12989
12990 #. type: verbatim
12991 #: ../src/guestfs-actions.pod:4015
12992 #, no-wrap
12993 msgid ""
12994 " int\n"
12995 " guestfs_luks_kill_slot (guestfs_h *g,\n"
12996 "                         const char *device,\n"
12997 "                         const char *key,\n"
12998 "                         int keyslot);\n"
12999 "\n"
13000 msgstr ""
13001
13002 #. type: textblock
13003 #: ../src/guestfs-actions.pod:4021 ../fish/guestfish-actions.pod:2726
13004 msgid ""
13005 "This command deletes the key in key slot C<keyslot> from the encrypted LUKS "
13006 "device C<device>.  C<key> must be one of the I<other> keys."
13007 msgstr ""
13008
13009 #. type: =head2
13010 #: ../src/guestfs-actions.pod:4033
13011 msgid "guestfs_luks_open"
13012 msgstr ""
13013
13014 #. type: verbatim
13015 #: ../src/guestfs-actions.pod:4035
13016 #, no-wrap
13017 msgid ""
13018 " int\n"
13019 " guestfs_luks_open (guestfs_h *g,\n"
13020 "                    const char *device,\n"
13021 "                    const char *key,\n"
13022 "                    const char *mapname);\n"
13023 "\n"
13024 msgstr ""
13025
13026 #. type: textblock
13027 #: ../src/guestfs-actions.pod:4041 ../fish/guestfish-actions.pod:2737
13028 msgid ""
13029 "This command opens a block device which has been encrypted according to the "
13030 "Linux Unified Key Setup (LUKS) standard."
13031 msgstr ""
13032
13033 #. type: textblock
13034 #: ../src/guestfs-actions.pod:4044 ../fish/guestfish-actions.pod:2740
13035 msgid "C<device> is the encrypted block device or partition."
13036 msgstr ""
13037
13038 #. type: textblock
13039 #: ../src/guestfs-actions.pod:4046 ../fish/guestfish-actions.pod:2742
13040 msgid ""
13041 "The caller must supply one of the keys associated with the LUKS block "
13042 "device, in the C<key> parameter."
13043 msgstr ""
13044
13045 #. type: textblock
13046 #: ../src/guestfs-actions.pod:4049 ../fish/guestfish-actions.pod:2745
13047 msgid ""
13048 "This creates a new block device called C</dev/mapper/mapname>.  Reads and "
13049 "writes to this block device are decrypted from and encrypted to the "
13050 "underlying C<device> respectively."
13051 msgstr ""
13052
13053 #. type: textblock
13054 #: ../src/guestfs-actions.pod:4053
13055 msgid ""
13056 "If this block device contains LVM volume groups, then calling "
13057 "C<guestfs_vgscan> followed by C<guestfs_vg_activate_all> will make them "
13058 "visible."
13059 msgstr ""
13060
13061 #. type: textblock
13062 #: ../src/guestfs-actions.pod:4057
13063 msgid "Use C<guestfs_list_dm_devices> to list all device mapper devices."
13064 msgstr ""
13065
13066 #. type: =head2
13067 #: ../src/guestfs-actions.pod:4068
13068 msgid "guestfs_luks_open_ro"
13069 msgstr ""
13070
13071 #. type: verbatim
13072 #: ../src/guestfs-actions.pod:4070
13073 #, no-wrap
13074 msgid ""
13075 " int\n"
13076 " guestfs_luks_open_ro (guestfs_h *g,\n"
13077 "                       const char *device,\n"
13078 "                       const char *key,\n"
13079 "                       const char *mapname);\n"
13080 "\n"
13081 msgstr ""
13082
13083 #. type: textblock
13084 #: ../src/guestfs-actions.pod:4076
13085 msgid ""
13086 "This is the same as C<guestfs_luks_open> except that a read-only mapping is "
13087 "created."
13088 msgstr ""
13089
13090 #. type: =head2
13091 #: ../src/guestfs-actions.pod:4087
13092 msgid "guestfs_lvcreate"
13093 msgstr ""
13094
13095 #. type: verbatim
13096 #: ../src/guestfs-actions.pod:4089
13097 #, no-wrap
13098 msgid ""
13099 " int\n"
13100 " guestfs_lvcreate (guestfs_h *g,\n"
13101 "                   const char *logvol,\n"
13102 "                   const char *volgroup,\n"
13103 "                   int mbytes);\n"
13104 "\n"
13105 msgstr ""
13106
13107 #. type: textblock
13108 #: ../src/guestfs-actions.pod:4095 ../fish/guestfish-actions.pod:2773
13109 msgid ""
13110 "This creates an LVM logical volume called C<logvol> on the volume group "
13111 "C<volgroup>, with C<size> megabytes."
13112 msgstr ""
13113
13114 #. type: =head2
13115 #: ../src/guestfs-actions.pod:4102
13116 msgid "guestfs_lvm_canonical_lv_name"
13117 msgstr ""
13118
13119 #. type: verbatim
13120 #: ../src/guestfs-actions.pod:4104
13121 #, no-wrap
13122 msgid ""
13123 " char *\n"
13124 " guestfs_lvm_canonical_lv_name (guestfs_h *g,\n"
13125 "                                const char *lvname);\n"
13126 "\n"
13127 msgstr ""
13128
13129 #. type: textblock
13130 #: ../src/guestfs-actions.pod:4108 ../fish/guestfish-actions.pod:2780
13131 msgid ""
13132 "This converts alternative naming schemes for LVs that you might find to the "
13133 "canonical name.  For example, C</dev/mapper/VG-LV> is converted to C</dev/VG/"
13134 "LV>."
13135 msgstr ""
13136
13137 #. type: textblock
13138 #: ../src/guestfs-actions.pod:4112 ../fish/guestfish-actions.pod:2784
13139 msgid ""
13140 "This command returns an error if the C<lvname> parameter does not refer to a "
13141 "logical volume."
13142 msgstr ""
13143
13144 #. type: textblock
13145 #: ../src/guestfs-actions.pod:4115
13146 msgid "See also C<guestfs_is_lv>."
13147 msgstr ""
13148
13149 #. type: textblock
13150 #: ../src/guestfs-actions.pod:4120
13151 msgid "(Added in 1.5.24)"
13152 msgstr ""
13153
13154 #. type: =head2
13155 #: ../src/guestfs-actions.pod:4122
13156 msgid "guestfs_lvm_clear_filter"
13157 msgstr ""
13158
13159 #. type: verbatim
13160 #: ../src/guestfs-actions.pod:4124
13161 #, no-wrap
13162 msgid ""
13163 " int\n"
13164 " guestfs_lvm_clear_filter (guestfs_h *g);\n"
13165 "\n"
13166 msgstr ""
13167
13168 #. type: textblock
13169 #: ../src/guestfs-actions.pod:4127
13170 msgid ""
13171 "This undoes the effect of C<guestfs_lvm_set_filter>.  LVM will be able to "
13172 "see every block device."
13173 msgstr ""
13174
13175 #. type: textblock
13176 #: ../src/guestfs-actions.pod:4130 ../src/guestfs-actions.pod:4172
13177 #: ../fish/guestfish-actions.pod:2796 ../fish/guestfish-actions.pod:2827
13178 msgid ""
13179 "This command also clears the LVM cache and performs a volume group scan."
13180 msgstr ""
13181
13182 #. type: =head2
13183 #: ../src/guestfs-actions.pod:4137
13184 msgid "guestfs_lvm_remove_all"
13185 msgstr ""
13186
13187 #. type: verbatim
13188 #: ../src/guestfs-actions.pod:4139
13189 #, no-wrap
13190 msgid ""
13191 " int\n"
13192 " guestfs_lvm_remove_all (guestfs_h *g);\n"
13193 "\n"
13194 msgstr ""
13195
13196 #. type: textblock
13197 #: ../src/guestfs-actions.pod:4142 ../fish/guestfish-actions.pod:2803
13198 msgid ""
13199 "This command removes all LVM logical volumes, volume groups and physical "
13200 "volumes."
13201 msgstr ""
13202
13203 #. type: =head2
13204 #: ../src/guestfs-actions.pod:4152
13205 msgid "guestfs_lvm_set_filter"
13206 msgstr ""
13207
13208 #. type: verbatim
13209 #: ../src/guestfs-actions.pod:4154
13210 #, no-wrap
13211 msgid ""
13212 " int\n"
13213 " guestfs_lvm_set_filter (guestfs_h *g,\n"
13214 "                         char *const *devices);\n"
13215 "\n"
13216 msgstr ""
13217
13218 #. type: textblock
13219 #: ../src/guestfs-actions.pod:4158 ../fish/guestfish-actions.pod:2813
13220 msgid ""
13221 "This sets the LVM device filter so that LVM will only be able to \"see\" the "
13222 "block devices in the list C<devices>, and will ignore all other attached "
13223 "block devices."
13224 msgstr ""
13225
13226 #. type: textblock
13227 #: ../src/guestfs-actions.pod:4162 ../fish/guestfish-actions.pod:2817
13228 msgid ""
13229 "Where disk image(s) contain duplicate PVs or VGs, this command is useful to "
13230 "get LVM to ignore the duplicates, otherwise LVM can get confused.  Note also "
13231 "there are two types of duplication possible: either cloned PVs/VGs which "
13232 "have identical UUIDs; or VGs that are not cloned but just happen to have the "
13233 "same name.  In normal operation you cannot create this situation, but you "
13234 "can do it outside LVM, eg.  by cloning disk images or by bit twiddling "
13235 "inside the LVM metadata."
13236 msgstr ""
13237
13238 #. type: textblock
13239 #: ../src/guestfs-actions.pod:4175 ../fish/guestfish-actions.pod:2830
13240 msgid "You can filter whole block devices or individual partitions."
13241 msgstr ""
13242
13243 #. type: textblock
13244 #: ../src/guestfs-actions.pod:4177 ../fish/guestfish-actions.pod:2832
13245 msgid ""
13246 "You cannot use this if any VG is currently in use (eg.  contains a mounted "
13247 "filesystem), even if you are not filtering out that VG."
13248 msgstr ""
13249
13250 #. type: =head2
13251 #: ../src/guestfs-actions.pod:4185
13252 msgid "guestfs_lvremove"
13253 msgstr ""
13254
13255 #. type: verbatim
13256 #: ../src/guestfs-actions.pod:4187
13257 #, no-wrap
13258 msgid ""
13259 " int\n"
13260 " guestfs_lvremove (guestfs_h *g,\n"
13261 "                   const char *device);\n"
13262 "\n"
13263 msgstr ""
13264
13265 #. type: textblock
13266 #: ../src/guestfs-actions.pod:4191 ../fish/guestfish-actions.pod:2840
13267 msgid ""
13268 "Remove an LVM logical volume C<device>, where C<device> is the path to the "
13269 "LV, such as C</dev/VG/LV>."
13270 msgstr ""
13271
13272 #. type: textblock
13273 #: ../src/guestfs-actions.pod:4194 ../fish/guestfish-actions.pod:2843
13274 msgid ""
13275 "You can also remove all LVs in a volume group by specifying the VG name, C</"
13276 "dev/VG>."
13277 msgstr ""
13278
13279 #. type: textblock
13280 #: ../src/guestfs-actions.pod:4199 ../src/guestfs-actions.pod:5594
13281 #: ../src/guestfs-actions.pod:7409
13282 msgid "(Added in 1.0.13)"
13283 msgstr ""
13284
13285 #. type: =head2
13286 #: ../src/guestfs-actions.pod:4201
13287 msgid "guestfs_lvrename"
13288 msgstr ""
13289
13290 #. type: verbatim
13291 #: ../src/guestfs-actions.pod:4203
13292 #, no-wrap
13293 msgid ""
13294 " int\n"
13295 " guestfs_lvrename (guestfs_h *g,\n"
13296 "                   const char *logvol,\n"
13297 "                   const char *newlogvol);\n"
13298 "\n"
13299 msgstr ""
13300
13301 #. type: textblock
13302 #: ../src/guestfs-actions.pod:4208 ../fish/guestfish-actions.pod:2850
13303 msgid "Rename a logical volume C<logvol> with the new name C<newlogvol>."
13304 msgstr ""
13305
13306 #. type: textblock
13307 #: ../src/guestfs-actions.pod:4212 ../src/guestfs-actions.pod:7422
13308 msgid "(Added in 1.0.83)"
13309 msgstr ""
13310
13311 #. type: =head2
13312 #: ../src/guestfs-actions.pod:4214
13313 msgid "guestfs_lvresize"
13314 msgstr ""
13315
13316 #. type: verbatim
13317 #: ../src/guestfs-actions.pod:4216
13318 #, no-wrap
13319 msgid ""
13320 " int\n"
13321 " guestfs_lvresize (guestfs_h *g,\n"
13322 "                   const char *device,\n"
13323 "                   int mbytes);\n"
13324 "\n"
13325 msgstr ""
13326
13327 #. type: textblock
13328 #: ../src/guestfs-actions.pod:4221 ../fish/guestfish-actions.pod:2856
13329 msgid ""
13330 "This resizes (expands or shrinks) an existing LVM logical volume to "
13331 "C<mbytes>.  When reducing, data in the reduced part is lost."
13332 msgstr ""
13333
13334 #. type: =head2
13335 #: ../src/guestfs-actions.pod:4229
13336 msgid "guestfs_lvresize_free"
13337 msgstr ""
13338
13339 #. type: verbatim
13340 #: ../src/guestfs-actions.pod:4231
13341 #, no-wrap
13342 msgid ""
13343 " int\n"
13344 " guestfs_lvresize_free (guestfs_h *g,\n"
13345 "                        const char *lv,\n"
13346 "                        int percent);\n"
13347 "\n"
13348 msgstr ""
13349
13350 #. type: textblock
13351 #: ../src/guestfs-actions.pod:4236 ../fish/guestfish-actions.pod:2864
13352 msgid ""
13353 "This expands an existing logical volume C<lv> so that it fills C<pc>% of the "
13354 "remaining free space in the volume group.  Commonly you would call this with "
13355 "pc = 100 which expands the logical volume as much as possible, using all "
13356 "remaining free space in the volume group."
13357 msgstr ""
13358
13359 #. type: textblock
13360 #: ../src/guestfs-actions.pod:4244
13361 msgid "(Added in 1.3.3)"
13362 msgstr ""
13363
13364 #. type: =head2
13365 #: ../src/guestfs-actions.pod:4246
13366 msgid "guestfs_lvs"
13367 msgstr ""
13368
13369 #. type: verbatim
13370 #: ../src/guestfs-actions.pod:4248
13371 #, no-wrap
13372 msgid ""
13373 " char **\n"
13374 " guestfs_lvs (guestfs_h *g);\n"
13375 "\n"
13376 msgstr ""
13377
13378 #. type: textblock
13379 #: ../src/guestfs-actions.pod:4251 ../fish/guestfish-actions.pod:2874
13380 msgid ""
13381 "List all the logical volumes detected.  This is the equivalent of the L<lvs"
13382 "(8)> command."
13383 msgstr ""
13384
13385 #. type: textblock
13386 #: ../src/guestfs-actions.pod:4254 ../fish/guestfish-actions.pod:2877
13387 msgid ""
13388 "This returns a list of the logical volume device names (eg. C</dev/"
13389 "VolGroup00/LogVol00>)."
13390 msgstr ""
13391
13392 #. type: textblock
13393 #: ../src/guestfs-actions.pod:4257
13394 msgid "See also C<guestfs_lvs_full>, C<guestfs_list_filesystems>."
13395 msgstr ""
13396
13397 #. type: =head2
13398 #: ../src/guestfs-actions.pod:4265
13399 msgid "guestfs_lvs_full"
13400 msgstr ""
13401
13402 #. type: verbatim
13403 #: ../src/guestfs-actions.pod:4267
13404 #, no-wrap
13405 msgid ""
13406 " struct guestfs_lvm_lv_list *\n"
13407 " guestfs_lvs_full (guestfs_h *g);\n"
13408 "\n"
13409 msgstr ""
13410
13411 #. type: textblock
13412 #: ../src/guestfs-actions.pod:4270 ../fish/guestfish-actions.pod:2886
13413 msgid ""
13414 "List all the logical volumes detected.  This is the equivalent of the L<lvs"
13415 "(8)> command.  The \"full\" version includes all fields."
13416 msgstr ""
13417
13418 #. type: textblock
13419 #: ../src/guestfs-actions.pod:4273
13420 msgid ""
13421 "This function returns a C<struct guestfs_lvm_lv_list *>, or NULL if there "
13422 "was an error.  I<The caller must call C<guestfs_free_lvm_lv_list> after use>."
13423 msgstr ""
13424
13425 #. type: =head2
13426 #: ../src/guestfs-actions.pod:4279
13427 msgid "guestfs_lvuuid"
13428 msgstr ""
13429
13430 #. type: verbatim
13431 #: ../src/guestfs-actions.pod:4281
13432 #, no-wrap
13433 msgid ""
13434 " char *\n"
13435 " guestfs_lvuuid (guestfs_h *g,\n"
13436 "                 const char *device);\n"
13437 "\n"
13438 msgstr ""
13439
13440 #. type: textblock
13441 #: ../src/guestfs-actions.pod:4285 ../fish/guestfish-actions.pod:2893
13442 msgid "This command returns the UUID of the LVM LV C<device>."
13443 msgstr ""
13444
13445 #. type: =head2
13446 #: ../src/guestfs-actions.pod:4292
13447 msgid "guestfs_lxattrlist"
13448 msgstr ""
13449
13450 #. type: verbatim
13451 #: ../src/guestfs-actions.pod:4294
13452 #, no-wrap
13453 msgid ""
13454 " struct guestfs_xattr_list *\n"
13455 " guestfs_lxattrlist (guestfs_h *g,\n"
13456 "                     const char *path,\n"
13457 "                     char *const *names);\n"
13458 "\n"
13459 msgstr ""
13460
13461 #. type: textblock
13462 #: ../src/guestfs-actions.pod:4299 ../fish/guestfish-actions.pod:2899
13463 msgid ""
13464 "This call allows you to get the extended attributes of multiple files, where "
13465 "all files are in the directory C<path>.  C<names> is the list of files from "
13466 "this directory."
13467 msgstr ""
13468
13469 #. type: textblock
13470 #: ../src/guestfs-actions.pod:4303 ../fish/guestfish-actions.pod:2903
13471 msgid ""
13472 "On return you get a flat list of xattr structs which must be interpreted "
13473 "sequentially.  The first xattr struct always has a zero-length C<attrname>.  "
13474 "C<attrval> in this struct is zero-length to indicate there was an error "
13475 "doing C<lgetxattr> for this file, I<or> is a C string which is a decimal "
13476 "number (the number of following attributes for this file, which could be C<"
13477 "\"0\">).  Then after the first xattr struct are the zero or more attributes "
13478 "for the first named file.  This repeats for the second and subsequent files."
13479 msgstr ""
13480
13481 #. type: textblock
13482 #: ../src/guestfs-actions.pod:4313
13483 msgid ""
13484 "This call is intended for programs that want to efficiently list a directory "
13485 "contents without making many round-trips.  See also C<guestfs_lstatlist> for "
13486 "a similarly efficient call for getting standard stats.  Very long directory "
13487 "listings might cause the protocol message size to be exceeded, causing this "
13488 "call to fail.  The caller must split up such requests into smaller groups of "
13489 "names."
13490 msgstr ""
13491
13492 #. type: =head2
13493 #: ../src/guestfs-actions.pod:4327
13494 msgid "guestfs_mkdir"
13495 msgstr ""
13496
13497 #. type: verbatim
13498 #: ../src/guestfs-actions.pod:4329
13499 #, no-wrap
13500 msgid ""
13501 " int\n"
13502 " guestfs_mkdir (guestfs_h *g,\n"
13503 "                const char *path);\n"
13504 "\n"
13505 msgstr ""
13506
13507 #. type: textblock
13508 #: ../src/guestfs-actions.pod:4333 ../fish/guestfish-actions.pod:2925
13509 msgid "Create a directory named C<path>."
13510 msgstr ""
13511
13512 #. type: =head2
13513 #: ../src/guestfs-actions.pod:4339
13514 msgid "guestfs_mkdir_mode"
13515 msgstr ""
13516
13517 #. type: verbatim
13518 #: ../src/guestfs-actions.pod:4341
13519 #, no-wrap
13520 msgid ""
13521 " int\n"
13522 " guestfs_mkdir_mode (guestfs_h *g,\n"
13523 "                     const char *path,\n"
13524 "                     int mode);\n"
13525 "\n"
13526 msgstr ""
13527
13528 #. type: textblock
13529 #: ../src/guestfs-actions.pod:4346 ../fish/guestfish-actions.pod:2931
13530 msgid ""
13531 "This command creates a directory, setting the initial permissions of the "
13532 "directory to C<mode>."
13533 msgstr ""
13534
13535 #. type: textblock
13536 #: ../src/guestfs-actions.pod:4349 ../fish/guestfish-actions.pod:2934
13537 msgid ""
13538 "For common Linux filesystems, the actual mode which is set will be C<mode & "
13539 "~umask & 01777>.  Non-native-Linux filesystems may interpret the mode in "
13540 "other ways."
13541 msgstr ""
13542
13543 #. type: textblock
13544 #: ../src/guestfs-actions.pod:4353
13545 msgid "See also C<guestfs_mkdir>, C<guestfs_umask>"
13546 msgstr ""
13547
13548 #. type: =head2
13549 #: ../src/guestfs-actions.pod:4359
13550 msgid "guestfs_mkdir_p"
13551 msgstr ""
13552
13553 #. type: verbatim
13554 #: ../src/guestfs-actions.pod:4361
13555 #, no-wrap
13556 msgid ""
13557 " int\n"
13558 " guestfs_mkdir_p (guestfs_h *g,\n"
13559 "                  const char *path);\n"
13560 "\n"
13561 msgstr ""
13562
13563 #. type: textblock
13564 #: ../src/guestfs-actions.pod:4365 ../fish/guestfish-actions.pod:2944
13565 msgid ""
13566 "Create a directory named C<path>, creating any parent directories as "
13567 "necessary.  This is like the C<mkdir -p> shell command."
13568 msgstr ""
13569
13570 #. type: =head2
13571 #: ../src/guestfs-actions.pod:4372
13572 msgid "guestfs_mkdtemp"
13573 msgstr ""
13574
13575 #. type: verbatim
13576 #: ../src/guestfs-actions.pod:4374
13577 #, no-wrap
13578 msgid ""
13579 " char *\n"
13580 " guestfs_mkdtemp (guestfs_h *g,\n"
13581 "                  const char *template);\n"
13582 "\n"
13583 msgstr ""
13584
13585 #. type: textblock
13586 #: ../src/guestfs-actions.pod:4378 ../fish/guestfish-actions.pod:2951
13587 msgid ""
13588 "This command creates a temporary directory.  The C<template> parameter "
13589 "should be a full pathname for the temporary directory name with the final "
13590 "six characters being \"XXXXXX\"."
13591 msgstr ""
13592
13593 #. type: textblock
13594 #: ../src/guestfs-actions.pod:4383 ../fish/guestfish-actions.pod:2956
13595 msgid ""
13596 "For example: \"/tmp/myprogXXXXXX\" or \"/Temp/myprogXXXXXX\", the second one "
13597 "being suitable for Windows filesystems."
13598 msgstr ""
13599
13600 #. type: textblock
13601 #: ../src/guestfs-actions.pod:4386 ../fish/guestfish-actions.pod:2959
13602 msgid "The name of the temporary directory that was created is returned."
13603 msgstr ""
13604
13605 #. type: textblock
13606 #: ../src/guestfs-actions.pod:4389 ../fish/guestfish-actions.pod:2962
13607 msgid "The temporary directory is created with mode 0700 and is owned by root."
13608 msgstr ""
13609
13610 #. type: textblock
13611 #: ../src/guestfs-actions.pod:4392 ../fish/guestfish-actions.pod:2965
13612 msgid ""
13613 "The caller is responsible for deleting the temporary directory and its "
13614 "contents after use."
13615 msgstr ""
13616
13617 #. type: textblock
13618 #: ../src/guestfs-actions.pod:4395 ../fish/guestfish-actions.pod:2968
13619 msgid "See also: L<mkdtemp(3)>"
13620 msgstr ""
13621
13622 #. type: =head2
13623 #: ../src/guestfs-actions.pod:4402
13624 msgid "guestfs_mke2fs_J"
13625 msgstr ""
13626
13627 #. type: verbatim
13628 #: ../src/guestfs-actions.pod:4404
13629 #, no-wrap
13630 msgid ""
13631 " int\n"
13632 " guestfs_mke2fs_J (guestfs_h *g,\n"
13633 "                   const char *fstype,\n"
13634 "                   int blocksize,\n"
13635 "                   const char *device,\n"
13636 "                   const char *journal);\n"
13637 "\n"
13638 msgstr ""
13639
13640 #. type: textblock
13641 #: ../src/guestfs-actions.pod:4411 ../fish/guestfish-actions.pod:2974
13642 msgid ""
13643 "This creates an ext2/3/4 filesystem on C<device> with an external journal on "
13644 "C<journal>.  It is equivalent to the command:"
13645 msgstr ""
13646
13647 #. type: verbatim
13648 #: ../src/guestfs-actions.pod:4415 ../fish/guestfish-actions.pod:2978
13649 #, no-wrap
13650 msgid ""
13651 " mke2fs -t fstype -b blocksize -J device=<journal> <device>\n"
13652 "\n"
13653 msgstr ""
13654
13655 #. type: textblock
13656 #: ../src/guestfs-actions.pod:4417
13657 msgid "See also C<guestfs_mke2journal>."
13658 msgstr ""
13659
13660 #. type: textblock
13661 #: ../src/guestfs-actions.pod:4421 ../src/guestfs-actions.pod:4439
13662 #: ../src/guestfs-actions.pod:4457 ../src/guestfs-actions.pod:4473
13663 #: ../src/guestfs-actions.pod:4487 ../src/guestfs-actions.pod:4501
13664 #: ../src/guestfs-actions.pod:4560 ../src/guestfs-actions.pod:4837
13665 msgid "(Added in 1.0.68)"
13666 msgstr ""
13667
13668 #. type: =head2
13669 #: ../src/guestfs-actions.pod:4423
13670 msgid "guestfs_mke2fs_JL"
13671 msgstr ""
13672
13673 #. type: verbatim
13674 #: ../src/guestfs-actions.pod:4425
13675 #, no-wrap
13676 msgid ""
13677 " int\n"
13678 " guestfs_mke2fs_JL (guestfs_h *g,\n"
13679 "                    const char *fstype,\n"
13680 "                    int blocksize,\n"
13681 "                    const char *device,\n"
13682 "                    const char *label);\n"
13683 "\n"
13684 msgstr ""
13685
13686 #. type: textblock
13687 #: ../src/guestfs-actions.pod:4432 ../fish/guestfish-actions.pod:2986
13688 msgid ""
13689 "This creates an ext2/3/4 filesystem on C<device> with an external journal on "
13690 "the journal labeled C<label>."
13691 msgstr ""
13692
13693 #. type: textblock
13694 #: ../src/guestfs-actions.pod:4435
13695 msgid "See also C<guestfs_mke2journal_L>."
13696 msgstr ""
13697
13698 #. type: =head2
13699 #: ../src/guestfs-actions.pod:4441
13700 msgid "guestfs_mke2fs_JU"
13701 msgstr ""
13702
13703 #. type: verbatim
13704 #: ../src/guestfs-actions.pod:4443
13705 #, no-wrap
13706 msgid ""
13707 " int\n"
13708 " guestfs_mke2fs_JU (guestfs_h *g,\n"
13709 "                    const char *fstype,\n"
13710 "                    int blocksize,\n"
13711 "                    const char *device,\n"
13712 "                    const char *uuid);\n"
13713 "\n"
13714 msgstr ""
13715
13716 #. type: textblock
13717 #: ../src/guestfs-actions.pod:4450 ../fish/guestfish-actions.pod:2995
13718 msgid ""
13719 "This creates an ext2/3/4 filesystem on C<device> with an external journal on "
13720 "the journal with UUID C<uuid>."
13721 msgstr ""
13722
13723 #. type: textblock
13724 #: ../src/guestfs-actions.pod:4453
13725 msgid "See also C<guestfs_mke2journal_U>."
13726 msgstr ""
13727
13728 #. type: =head2
13729 #: ../src/guestfs-actions.pod:4459
13730 msgid "guestfs_mke2journal"
13731 msgstr ""
13732
13733 #. type: verbatim
13734 #: ../src/guestfs-actions.pod:4461
13735 #, no-wrap
13736 msgid ""
13737 " int\n"
13738 " guestfs_mke2journal (guestfs_h *g,\n"
13739 "                      int blocksize,\n"
13740 "                      const char *device);\n"
13741 "\n"
13742 msgstr ""
13743
13744 #. type: textblock
13745 #: ../src/guestfs-actions.pod:4466 ../fish/guestfish-actions.pod:3004
13746 msgid ""
13747 "This creates an ext2 external journal on C<device>.  It is equivalent to the "
13748 "command:"
13749 msgstr ""
13750
13751 #. type: verbatim
13752 #: ../src/guestfs-actions.pod:4469 ../fish/guestfish-actions.pod:3007
13753 #, no-wrap
13754 msgid ""
13755 " mke2fs -O journal_dev -b blocksize device\n"
13756 "\n"
13757 msgstr ""
13758
13759 #. type: =head2
13760 #: ../src/guestfs-actions.pod:4475
13761 msgid "guestfs_mke2journal_L"
13762 msgstr ""
13763
13764 #. type: verbatim
13765 #: ../src/guestfs-actions.pod:4477
13766 #, no-wrap
13767 msgid ""
13768 " int\n"
13769 " guestfs_mke2journal_L (guestfs_h *g,\n"
13770 "                        int blocksize,\n"
13771 "                        const char *label,\n"
13772 "                        const char *device);\n"
13773 "\n"
13774 msgstr ""
13775
13776 #. type: textblock
13777 #: ../src/guestfs-actions.pod:4483 ../fish/guestfish-actions.pod:3013
13778 msgid "This creates an ext2 external journal on C<device> with label C<label>."
13779 msgstr ""
13780
13781 #. type: =head2
13782 #: ../src/guestfs-actions.pod:4489
13783 msgid "guestfs_mke2journal_U"
13784 msgstr ""
13785
13786 #. type: verbatim
13787 #: ../src/guestfs-actions.pod:4491
13788 #, no-wrap
13789 msgid ""
13790 " int\n"
13791 " guestfs_mke2journal_U (guestfs_h *g,\n"
13792 "                        int blocksize,\n"
13793 "                        const char *uuid,\n"
13794 "                        const char *device);\n"
13795 "\n"
13796 msgstr ""
13797
13798 #. type: textblock
13799 #: ../src/guestfs-actions.pod:4497 ../fish/guestfish-actions.pod:3019
13800 msgid "This creates an ext2 external journal on C<device> with UUID C<uuid>."
13801 msgstr ""
13802
13803 #. type: =head2
13804 #: ../src/guestfs-actions.pod:4503
13805 msgid "guestfs_mkfifo"
13806 msgstr ""
13807
13808 #. type: verbatim
13809 #: ../src/guestfs-actions.pod:4505
13810 #, no-wrap
13811 msgid ""
13812 " int\n"
13813 " guestfs_mkfifo (guestfs_h *g,\n"
13814 "                 int mode,\n"
13815 "                 const char *path);\n"
13816 "\n"
13817 msgstr ""
13818
13819 #. type: textblock
13820 #: ../src/guestfs-actions.pod:4510
13821 msgid ""
13822 "This call creates a FIFO (named pipe) called C<path> with mode C<mode>.  It "
13823 "is just a convenient wrapper around C<guestfs_mknod>."
13824 msgstr ""
13825
13826 #. type: =head2
13827 #: ../src/guestfs-actions.pod:4520
13828 msgid "guestfs_mkfs"
13829 msgstr ""
13830
13831 #. type: verbatim
13832 #: ../src/guestfs-actions.pod:4522
13833 #, no-wrap
13834 msgid ""
13835 " int\n"
13836 " guestfs_mkfs (guestfs_h *g,\n"
13837 "               const char *fstype,\n"
13838 "               const char *device);\n"
13839 "\n"
13840 msgstr ""
13841
13842 #. type: textblock
13843 #: ../src/guestfs-actions.pod:4527 ../fish/guestfish-actions.pod:3035
13844 msgid ""
13845 "This creates a filesystem on C<device> (usually a partition or LVM logical "
13846 "volume).  The filesystem type is C<fstype>, for example C<ext3>."
13847 msgstr ""
13848
13849 #. type: =head2
13850 #: ../src/guestfs-actions.pod:4535
13851 msgid "guestfs_mkfs_b"
13852 msgstr ""
13853
13854 #. type: verbatim
13855 #: ../src/guestfs-actions.pod:4537
13856 #, no-wrap
13857 msgid ""
13858 " int\n"
13859 " guestfs_mkfs_b (guestfs_h *g,\n"
13860 "                 const char *fstype,\n"
13861 "                 int blocksize,\n"
13862 "                 const char *device);\n"
13863 "\n"
13864 msgstr ""
13865
13866 #. type: textblock
13867 #: ../src/guestfs-actions.pod:4543
13868 msgid ""
13869 "This call is similar to C<guestfs_mkfs>, but it allows you to control the "
13870 "block size of the resulting filesystem.  Supported block sizes depend on the "
13871 "filesystem type, but typically they are C<1024>, C<2048> or C<4096> only."
13872 msgstr ""
13873
13874 #. type: textblock
13875 #: ../src/guestfs-actions.pod:4548 ../src/guestfs-actions.pod:4593
13876 #: ../fish/guestfish-actions.pod:3048 ../fish/guestfish-actions.pod:3075
13877 msgid ""
13878 "For VFAT and NTFS the C<blocksize> parameter is treated as the requested "
13879 "cluster size."
13880 msgstr ""
13881
13882 #. type: textblock
13883 #: ../src/guestfs-actions.pod:4553 ../fish/guestfish-actions.pod:3051
13884 msgid ""
13885 "This function is deprecated.  In new code, use the C<mkfs_opts> call instead."
13886 msgstr ""
13887
13888 #. type: =head2
13889 #: ../src/guestfs-actions.pod:4562
13890 msgid "guestfs_mkfs_opts"
13891 msgstr ""
13892
13893 #. type: verbatim
13894 #: ../src/guestfs-actions.pod:4564
13895 #, no-wrap
13896 msgid ""
13897 " int\n"
13898 " guestfs_mkfs_opts (guestfs_h *g,\n"
13899 "                    const char *fstype,\n"
13900 "                    const char *device,\n"
13901 "                    ...);\n"
13902 "\n"
13903 msgstr ""
13904
13905 #. type: verbatim
13906 #: ../src/guestfs-actions.pod:4575
13907 #, no-wrap
13908 msgid ""
13909 " GUESTFS_MKFS_OPTS_BLOCKSIZE, int blocksize,\n"
13910 " GUESTFS_MKFS_OPTS_FEATURES, const char *features,\n"
13911 " GUESTFS_MKFS_OPTS_INODE, int inode,\n"
13912 " GUESTFS_MKFS_OPTS_SECTORSIZE, int sectorsize,\n"
13913 "\n"
13914 msgstr ""
13915
13916 #. type: textblock
13917 #: ../src/guestfs-actions.pod:4580 ../fish/guestfish-actions.pod:3062
13918 msgid ""
13919 "This function creates a filesystem on C<device>.  The filesystem type is "
13920 "C<fstype>, for example C<ext3>."
13921 msgstr ""
13922
13923 #. type: =item
13924 #: ../src/guestfs-actions.pod:4587 ../fish/guestfish-actions.pod:3069
13925 msgid "C<blocksize>"
13926 msgstr ""
13927
13928 #. type: textblock
13929 #: ../src/guestfs-actions.pod:4589 ../fish/guestfish-actions.pod:3071
13930 msgid ""
13931 "The filesystem block size.  Supported block sizes depend on the filesystem "
13932 "type, but typically they are C<1024>, C<2048> or C<4096> for Linux ext2/3 "
13933 "filesystems."
13934 msgstr ""
13935
13936 #. type: textblock
13937 #: ../src/guestfs-actions.pod:4596 ../fish/guestfish-actions.pod:3078
13938 msgid "For UFS block sizes, please see L<mkfs.ufs(8)>."
13939 msgstr ""
13940
13941 #. type: =item
13942 #: ../src/guestfs-actions.pod:4598 ../fish/guestfish-actions.pod:3080
13943 msgid "C<features>"
13944 msgstr ""
13945
13946 #. type: textblock
13947 #: ../src/guestfs-actions.pod:4600 ../fish/guestfish-actions.pod:3082
13948 msgid "This passes the I<-O> parameter to the external mkfs program."
13949 msgstr ""
13950
13951 #. type: textblock
13952 #: ../src/guestfs-actions.pod:4602 ../fish/guestfish-actions.pod:3084
13953 msgid ""
13954 "For certain filesystem types, this allows extra filesystem features to be "
13955 "selected.  See L<mke2fs(8)> and L<mkfs.ufs(8)> for more details."
13956 msgstr ""
13957
13958 #. type: textblock
13959 #: ../src/guestfs-actions.pod:4606 ../fish/guestfish-actions.pod:3088
13960 msgid ""
13961 "You cannot use this optional parameter with the C<gfs> or C<gfs2> filesystem "
13962 "type."
13963 msgstr ""
13964
13965 #. type: =item
13966 #: ../src/guestfs-actions.pod:4609 ../fish/guestfish-actions.pod:3091
13967 #, fuzzy
13968 #| msgid "C<inspector>"
13969 msgid "C<inode>"
13970 msgstr "C<inspector>"
13971
13972 #. type: textblock
13973 #: ../src/guestfs-actions.pod:4611 ../fish/guestfish-actions.pod:3093
13974 msgid ""
13975 "This passes the I<-I> parameter to the external L<mke2fs(8)> program which "
13976 "sets the inode size (only for ext2/3/4 filesystems at present)."
13977 msgstr ""
13978
13979 #. type: =item
13980 #: ../src/guestfs-actions.pod:4614 ../fish/guestfish-actions.pod:3096
13981 #, fuzzy
13982 #| msgid "C<inspector>"
13983 msgid "C<sectorsize>"
13984 msgstr "C<inspector>"
13985
13986 #. type: textblock
13987 #: ../src/guestfs-actions.pod:4616 ../fish/guestfish-actions.pod:3098
13988 msgid ""
13989 "This passes the I<-S> parameter to external L<mkfs.ufs(8)> program, which "
13990 "sets sector size for ufs filesystem."
13991 msgstr ""
13992
13993 #. type: textblock
13994 #: ../src/guestfs-actions.pod:4623
13995 msgid "(Added in 1.7.19)"
13996 msgstr ""
13997
13998 #. type: =head2
13999 #: ../src/guestfs-actions.pod:4625
14000 msgid "guestfs_mkfs_opts_va"
14001 msgstr ""
14002
14003 #. type: verbatim
14004 #: ../src/guestfs-actions.pod:4627
14005 #, no-wrap
14006 msgid ""
14007 " int\n"
14008 " guestfs_mkfs_opts_va (guestfs_h *g,\n"
14009 "                       const char *fstype,\n"
14010 "                       const char *device,\n"
14011 "                       va_list args);\n"
14012 "\n"
14013 msgstr ""
14014
14015 #. type: textblock
14016 #: ../src/guestfs-actions.pod:4633
14017 msgid "This is the \"va_list variant\" of L</guestfs_mkfs_opts>."
14018 msgstr ""
14019
14020 #. type: =head2
14021 #: ../src/guestfs-actions.pod:4637
14022 msgid "guestfs_mkfs_opts_argv"
14023 msgstr ""
14024
14025 #. type: verbatim
14026 #: ../src/guestfs-actions.pod:4639
14027 #, no-wrap
14028 msgid ""
14029 " int\n"
14030 " guestfs_mkfs_opts_argv (guestfs_h *g,\n"
14031 "                         const char *fstype,\n"
14032 "                         const char *device,\n"
14033 "                         const struct guestfs_mkfs_opts_argv *optargs);\n"
14034 "\n"
14035 msgstr ""
14036
14037 #. type: textblock
14038 #: ../src/guestfs-actions.pod:4645
14039 msgid "This is the \"argv variant\" of L</guestfs_mkfs_opts>."
14040 msgstr ""
14041
14042 #. type: =head2
14043 #: ../src/guestfs-actions.pod:4649
14044 msgid "guestfs_mkmountpoint"
14045 msgstr ""
14046
14047 #. type: verbatim
14048 #: ../src/guestfs-actions.pod:4651
14049 #, no-wrap
14050 msgid ""
14051 " int\n"
14052 " guestfs_mkmountpoint (guestfs_h *g,\n"
14053 "                       const char *exemptpath);\n"
14054 "\n"
14055 msgstr ""
14056
14057 #. type: textblock
14058 #: ../src/guestfs-actions.pod:4655
14059 msgid ""
14060 "C<guestfs_mkmountpoint> and C<guestfs_rmmountpoint> are specialized calls "
14061 "that can be used to create extra mountpoints before mounting the first "
14062 "filesystem."
14063 msgstr ""
14064
14065 #. type: textblock
14066 #: ../src/guestfs-actions.pod:4659 ../fish/guestfish-actions.pod:3113
14067 msgid ""
14068 "These calls are I<only> necessary in some very limited circumstances, mainly "
14069 "the case where you want to mount a mix of unrelated and/or read-only "
14070 "filesystems together."
14071 msgstr ""
14072
14073 #. type: textblock
14074 #: ../src/guestfs-actions.pod:4663 ../fish/guestfish-actions.pod:3117
14075 msgid ""
14076 "For example, live CDs often contain a \"Russian doll\" nest of filesystems, "
14077 "an ISO outer layer, with a squashfs image inside, with an ext2/3 image "
14078 "inside that.  You can unpack this as follows in guestfish:"
14079 msgstr ""
14080
14081 #. type: verbatim
14082 #: ../src/guestfs-actions.pod:4668 ../fish/guestfish-actions.pod:3122
14083 #, no-wrap
14084 msgid ""
14085 " add-ro Fedora-11-i686-Live.iso\n"
14086 " run\n"
14087 " mkmountpoint /cd\n"
14088 " mkmountpoint /sqsh\n"
14089 " mkmountpoint /ext3fs\n"
14090 " mount /dev/sda /cd\n"
14091 " mount-loop /cd/LiveOS/squashfs.img /sqsh\n"
14092 " mount-loop /sqsh/LiveOS/ext3fs.img /ext3fs\n"
14093 "\n"
14094 msgstr ""
14095
14096 #. type: textblock
14097 #: ../src/guestfs-actions.pod:4677 ../fish/guestfish-actions.pod:3131
14098 msgid "The inner filesystem is now unpacked under the /ext3fs mountpoint."
14099 msgstr ""
14100
14101 #. type: textblock
14102 #: ../src/guestfs-actions.pod:4679
14103 msgid ""
14104 "C<guestfs_mkmountpoint> is not compatible with C<guestfs_umount_all>.  You "
14105 "may get unexpected errors if you try to mix these calls.  It is safest to "
14106 "manually unmount filesystems and remove mountpoints after use."
14107 msgstr ""
14108
14109 #. type: textblock
14110 #: ../src/guestfs-actions.pod:4683
14111 msgid ""
14112 "C<guestfs_umount_all> unmounts filesystems by sorting the paths longest "
14113 "first, so for this to work for manual mountpoints, you must ensure that the "
14114 "innermost mountpoints have the longest pathnames, as in the example code "
14115 "above."
14116 msgstr ""
14117
14118 #. type: textblock
14119 #: ../src/guestfs-actions.pod:4688 ../fish/guestfish-actions.pod:3142
14120 msgid ""
14121 "For more details see L<https://bugzilla.redhat.com/show_bug.cgi?id=599503>"
14122 msgstr ""
14123
14124 #. type: textblock
14125 #: ../src/guestfs-actions.pod:4690
14126 msgid ""
14127 "Autosync [see C<guestfs_set_autosync>, this is set by default on handles] "
14128 "can cause C<guestfs_umount_all> to be called when the handle is closed which "
14129 "can also trigger these issues."
14130 msgstr ""
14131
14132 #. type: textblock
14133 #: ../src/guestfs-actions.pod:4696 ../src/guestfs-actions.pod:5012
14134 #: ../src/guestfs-actions.pod:6014
14135 msgid "(Added in 1.0.62)"
14136 msgstr ""
14137
14138 #. type: =head2
14139 #: ../src/guestfs-actions.pod:4698
14140 msgid "guestfs_mknod"
14141 msgstr ""
14142
14143 #. type: verbatim
14144 #: ../src/guestfs-actions.pod:4700
14145 #, no-wrap
14146 msgid ""
14147 " int\n"
14148 " guestfs_mknod (guestfs_h *g,\n"
14149 "                int mode,\n"
14150 "                int devmajor,\n"
14151 "                int devminor,\n"
14152 "                const char *path);\n"
14153 "\n"
14154 msgstr ""
14155
14156 #. type: textblock
14157 #: ../src/guestfs-actions.pod:4707 ../fish/guestfish-actions.pod:3152
14158 msgid ""
14159 "This call creates block or character special devices, or named pipes (FIFOs)."
14160 msgstr ""
14161
14162 #. type: textblock
14163 #: ../src/guestfs-actions.pod:4710 ../fish/guestfish-actions.pod:3155
14164 msgid ""
14165 "The C<mode> parameter should be the mode, using the standard constants.  "
14166 "C<devmajor> and C<devminor> are the device major and minor numbers, only "
14167 "used when creating block and character special devices."
14168 msgstr ""
14169
14170 #. type: textblock
14171 #: ../src/guestfs-actions.pod:4715
14172 msgid ""
14173 "Note that, just like L<mknod(2)>, the mode must be bitwise OR'd with "
14174 "S_IFBLK, S_IFCHR, S_IFIFO or S_IFSOCK (otherwise this call just creates a "
14175 "regular file).  These constants are available in the standard Linux header "
14176 "files, or you can use C<guestfs_mknod_b>, C<guestfs_mknod_c> or "
14177 "C<guestfs_mkfifo> which are wrappers around this command which bitwise OR in "
14178 "the appropriate constant for you."
14179 msgstr ""
14180
14181 #. type: =head2
14182 #: ../src/guestfs-actions.pod:4729
14183 msgid "guestfs_mknod_b"
14184 msgstr ""
14185
14186 #. type: verbatim
14187 #: ../src/guestfs-actions.pod:4731
14188 #, no-wrap
14189 msgid ""
14190 " int\n"
14191 " guestfs_mknod_b (guestfs_h *g,\n"
14192 "                  int mode,\n"
14193 "                  int devmajor,\n"
14194 "                  int devminor,\n"
14195 "                  const char *path);\n"
14196 "\n"
14197 msgstr ""
14198
14199 #. type: textblock
14200 #: ../src/guestfs-actions.pod:4738
14201 msgid ""
14202 "This call creates a block device node called C<path> with mode C<mode> and "
14203 "device major/minor C<devmajor> and C<devminor>.  It is just a convenient "
14204 "wrapper around C<guestfs_mknod>."
14205 msgstr ""
14206
14207 #. type: =head2
14208 #: ../src/guestfs-actions.pod:4748
14209 msgid "guestfs_mknod_c"
14210 msgstr ""
14211
14212 #. type: verbatim
14213 #: ../src/guestfs-actions.pod:4750
14214 #, no-wrap
14215 msgid ""
14216 " int\n"
14217 " guestfs_mknod_c (guestfs_h *g,\n"
14218 "                  int mode,\n"
14219 "                  int devmajor,\n"
14220 "                  int devminor,\n"
14221 "                  const char *path);\n"
14222 "\n"
14223 msgstr ""
14224
14225 #. type: textblock
14226 #: ../src/guestfs-actions.pod:4757
14227 msgid ""
14228 "This call creates a char device node called C<path> with mode C<mode> and "
14229 "device major/minor C<devmajor> and C<devminor>.  It is just a convenient "
14230 "wrapper around C<guestfs_mknod>."
14231 msgstr ""
14232
14233 #. type: =head2
14234 #: ../src/guestfs-actions.pod:4767
14235 msgid "guestfs_mkswap"
14236 msgstr ""
14237
14238 #. type: verbatim
14239 #: ../src/guestfs-actions.pod:4769
14240 #, no-wrap
14241 msgid ""
14242 " int\n"
14243 " guestfs_mkswap (guestfs_h *g,\n"
14244 "                 const char *device);\n"
14245 "\n"
14246 msgstr ""
14247
14248 #. type: textblock
14249 #: ../src/guestfs-actions.pod:4773 ../fish/guestfish-actions.pod:3194
14250 msgid "Create a swap partition on C<device>."
14251 msgstr ""
14252
14253 #. type: =head2
14254 #: ../src/guestfs-actions.pod:4779
14255 msgid "guestfs_mkswap_L"
14256 msgstr ""
14257
14258 #. type: verbatim
14259 #: ../src/guestfs-actions.pod:4781
14260 #, no-wrap
14261 msgid ""
14262 " int\n"
14263 " guestfs_mkswap_L (guestfs_h *g,\n"
14264 "                   const char *label,\n"
14265 "                   const char *device);\n"
14266 "\n"
14267 msgstr ""
14268
14269 #. type: textblock
14270 #: ../src/guestfs-actions.pod:4786 ../fish/guestfish-actions.pod:3200
14271 msgid "Create a swap partition on C<device> with label C<label>."
14272 msgstr ""
14273
14274 #. type: textblock
14275 #: ../src/guestfs-actions.pod:4788 ../fish/guestfish-actions.pod:3202
14276 msgid ""
14277 "Note that you cannot attach a swap label to a block device (eg. C</dev/"
14278 "sda>), just to a partition.  This appears to be a limitation of the kernel "
14279 "or swap tools."
14280 msgstr ""
14281
14282 #. type: =head2
14283 #: ../src/guestfs-actions.pod:4796
14284 msgid "guestfs_mkswap_U"
14285 msgstr ""
14286
14287 #. type: verbatim
14288 #: ../src/guestfs-actions.pod:4798
14289 #, no-wrap
14290 msgid ""
14291 " int\n"
14292 " guestfs_mkswap_U (guestfs_h *g,\n"
14293 "                   const char *uuid,\n"
14294 "                   const char *device);\n"
14295 "\n"
14296 msgstr ""
14297
14298 #. type: textblock
14299 #: ../src/guestfs-actions.pod:4803 ../fish/guestfish-actions.pod:3210
14300 msgid "Create a swap partition on C<device> with UUID C<uuid>."
14301 msgstr ""
14302
14303 #. type: =head2
14304 #: ../src/guestfs-actions.pod:4809
14305 msgid "guestfs_mkswap_file"
14306 msgstr ""
14307
14308 #. type: verbatim
14309 #: ../src/guestfs-actions.pod:4811
14310 #, no-wrap
14311 msgid ""
14312 " int\n"
14313 " guestfs_mkswap_file (guestfs_h *g,\n"
14314 "                      const char *path);\n"
14315 "\n"
14316 msgstr ""
14317
14318 #. type: textblock
14319 #: ../src/guestfs-actions.pod:4815 ../fish/guestfish-actions.pod:3216
14320 msgid "Create a swap file."
14321 msgstr ""
14322
14323 #. type: textblock
14324 #: ../src/guestfs-actions.pod:4817
14325 msgid ""
14326 "This command just writes a swap file signature to an existing file.  To "
14327 "create the file itself, use something like C<guestfs_fallocate>."
14328 msgstr ""
14329
14330 #. type: =head2
14331 #: ../src/guestfs-actions.pod:4824
14332 msgid "guestfs_modprobe"
14333 msgstr ""
14334
14335 #. type: verbatim
14336 #: ../src/guestfs-actions.pod:4826
14337 #, no-wrap
14338 msgid ""
14339 " int\n"
14340 " guestfs_modprobe (guestfs_h *g,\n"
14341 "                   const char *modulename);\n"
14342 "\n"
14343 msgstr ""
14344
14345 #. type: textblock
14346 #: ../src/guestfs-actions.pod:4830 ../fish/guestfish-actions.pod:3225
14347 msgid "This loads a kernel module in the appliance."
14348 msgstr ""
14349
14350 #. type: textblock
14351 #: ../src/guestfs-actions.pod:4832 ../fish/guestfish-actions.pod:3227
14352 msgid ""
14353 "The kernel module must have been whitelisted when libguestfs was built (see "
14354 "C<appliance/kmod.whitelist.in> in the source)."
14355 msgstr ""
14356
14357 #. type: =head2
14358 #: ../src/guestfs-actions.pod:4839
14359 msgid "guestfs_mount"
14360 msgstr ""
14361
14362 #. type: verbatim
14363 #: ../src/guestfs-actions.pod:4841
14364 #, no-wrap
14365 msgid ""
14366 " int\n"
14367 " guestfs_mount (guestfs_h *g,\n"
14368 "                const char *device,\n"
14369 "                const char *mountpoint);\n"
14370 "\n"
14371 msgstr ""
14372
14373 #. type: textblock
14374 #: ../src/guestfs-actions.pod:4846 ../fish/guestfish-actions.pod:3234
14375 msgid ""
14376 "Mount a guest disk at a position in the filesystem.  Block devices are named "
14377 "C</dev/sda>, C</dev/sdb> and so on, as they were added to the guest.  If "
14378 "those block devices contain partitions, they will have the usual names (eg. "
14379 "C</dev/sda1>).  Also LVM C</dev/VG/LV>-style names can be used."
14380 msgstr ""
14381
14382 #. type: textblock
14383 #: ../src/guestfs-actions.pod:4852 ../fish/guestfish-actions.pod:3240
14384 msgid ""
14385 "The rules are the same as for L<mount(2)>: A filesystem must first be "
14386 "mounted on C</> before others can be mounted.  Other filesystems can only be "
14387 "mounted on directories which already exist."
14388 msgstr ""
14389
14390 #. type: textblock
14391 #: ../src/guestfs-actions.pod:4857 ../fish/guestfish-actions.pod:3245
14392 msgid ""
14393 "The mounted filesystem is writable, if we have sufficient permissions on the "
14394 "underlying device."
14395 msgstr ""
14396
14397 #. type: textblock
14398 #: ../src/guestfs-actions.pod:4860
14399 msgid ""
14400 "B<Important note:> When you use this call, the filesystem options C<sync> "
14401 "and C<noatime> are set implicitly.  This was originally done because we "
14402 "thought it would improve reliability, but it turns out that I<-o sync> has a "
14403 "very large negative performance impact and negligible effect on "
14404 "reliability.  Therefore we recommend that you avoid using C<guestfs_mount> "
14405 "in any code that needs performance, and instead use C<guestfs_mount_options> "
14406 "(use an empty string for the first parameter if you don't want any options)."
14407 msgstr ""
14408
14409 #. type: textblock
14410 #: ../src/guestfs-actions.pod:4872 ../fish/guestfish-actions.pod:3258
14411 msgid ""
14412 "This function is deprecated.  In new code, use the C<mount_options> call "
14413 "instead."
14414 msgstr ""
14415
14416 #. type: =head2
14417 #: ../src/guestfs-actions.pod:4881
14418 msgid "guestfs_mount_9p"
14419 msgstr ""
14420
14421 #. type: verbatim
14422 #: ../src/guestfs-actions.pod:4883
14423 #, no-wrap
14424 msgid ""
14425 " int\n"
14426 " guestfs_mount_9p (guestfs_h *g,\n"
14427 "                   const char *mounttag,\n"
14428 "                   const char *mountpoint,\n"
14429 "                   ...);\n"
14430 "\n"
14431 msgstr ""
14432
14433 #. type: verbatim
14434 #: ../src/guestfs-actions.pod:4894
14435 #, no-wrap
14436 msgid ""
14437 " GUESTFS_MOUNT_9P_OPTIONS, const char *options,\n"
14438 "\n"
14439 msgstr ""
14440
14441 #. type: textblock
14442 #: ../src/guestfs-actions.pod:4896 ../fish/guestfish-actions.pod:3269
14443 msgid ""
14444 "Mount the virtio-9p filesystem with the tag C<mounttag> on the directory "
14445 "C<mountpoint>."
14446 msgstr ""
14447
14448 #. type: textblock
14449 #: ../src/guestfs-actions.pod:4899 ../fish/guestfish-actions.pod:3272
14450 msgid ""
14451 "If required, C<trans=virtio> will be automatically added to the options.  "
14452 "Any other options required can be passed in the optional C<options> "
14453 "parameter."
14454 msgstr ""
14455
14456 #. type: =head2
14457 #: ../src/guestfs-actions.pod:4907
14458 msgid "guestfs_mount_9p_va"
14459 msgstr ""
14460
14461 #. type: verbatim
14462 #: ../src/guestfs-actions.pod:4909
14463 #, no-wrap
14464 msgid ""
14465 " int\n"
14466 " guestfs_mount_9p_va (guestfs_h *g,\n"
14467 "                      const char *mounttag,\n"
14468 "                      const char *mountpoint,\n"
14469 "                      va_list args);\n"
14470 "\n"
14471 msgstr ""
14472
14473 #. type: textblock
14474 #: ../src/guestfs-actions.pod:4915
14475 msgid "This is the \"va_list variant\" of L</guestfs_mount_9p>."
14476 msgstr ""
14477
14478 #. type: =head2
14479 #: ../src/guestfs-actions.pod:4919
14480 msgid "guestfs_mount_9p_argv"
14481 msgstr ""
14482
14483 #. type: verbatim
14484 #: ../src/guestfs-actions.pod:4921
14485 #, no-wrap
14486 msgid ""
14487 " int\n"
14488 " guestfs_mount_9p_argv (guestfs_h *g,\n"
14489 "                        const char *mounttag,\n"
14490 "                        const char *mountpoint,\n"
14491 "                        const struct guestfs_mount_9p_argv *optargs);\n"
14492 "\n"
14493 msgstr ""
14494
14495 #. type: textblock
14496 #: ../src/guestfs-actions.pod:4927
14497 msgid "This is the \"argv variant\" of L</guestfs_mount_9p>."
14498 msgstr ""
14499
14500 #. type: =head2
14501 #: ../src/guestfs-actions.pod:4931
14502 msgid "guestfs_mount_loop"
14503 msgstr ""
14504
14505 #. type: verbatim
14506 #: ../src/guestfs-actions.pod:4933
14507 #, no-wrap
14508 msgid ""
14509 " int\n"
14510 " guestfs_mount_loop (guestfs_h *g,\n"
14511 "                     const char *file,\n"
14512 "                     const char *mountpoint);\n"
14513 "\n"
14514 msgstr ""
14515
14516 #. type: textblock
14517 #: ../src/guestfs-actions.pod:4938 ../fish/guestfish-actions.pod:3282
14518 msgid ""
14519 "This command lets you mount C<file> (a filesystem image in a file) on a "
14520 "mount point.  It is entirely equivalent to the command C<mount -o loop file "
14521 "mountpoint>."
14522 msgstr ""
14523
14524 #. type: =head2
14525 #: ../src/guestfs-actions.pod:4946
14526 msgid "guestfs_mount_options"
14527 msgstr ""
14528
14529 #. type: verbatim
14530 #: ../src/guestfs-actions.pod:4948
14531 #, no-wrap
14532 msgid ""
14533 " int\n"
14534 " guestfs_mount_options (guestfs_h *g,\n"
14535 "                        const char *options,\n"
14536 "                        const char *device,\n"
14537 "                        const char *mountpoint);\n"
14538 "\n"
14539 msgstr ""
14540
14541 #. type: textblock
14542 #: ../src/guestfs-actions.pod:4954
14543 msgid ""
14544 "This is the same as the C<guestfs_mount> command, but it allows you to set "
14545 "the mount options as for the L<mount(8)> I<-o> flag."
14546 msgstr ""
14547
14548 #. type: textblock
14549 #: ../src/guestfs-actions.pod:4958 ../fish/guestfish-actions.pod:3294
14550 msgid ""
14551 "If the C<options> parameter is an empty string, then no options are passed "
14552 "(all options default to whatever the filesystem uses)."
14553 msgstr ""
14554
14555 #. type: textblock
14556 #: ../src/guestfs-actions.pod:4964 ../src/guestfs-actions.pod:4978
14557 #: ../src/guestfs-actions.pod:4995
14558 msgid "(Added in 1.0.10)"
14559 msgstr ""
14560
14561 #. type: =head2
14562 #: ../src/guestfs-actions.pod:4966
14563 msgid "guestfs_mount_ro"
14564 msgstr ""
14565
14566 #. type: verbatim
14567 #: ../src/guestfs-actions.pod:4968
14568 #, no-wrap
14569 msgid ""
14570 " int\n"
14571 " guestfs_mount_ro (guestfs_h *g,\n"
14572 "                   const char *device,\n"
14573 "                   const char *mountpoint);\n"
14574 "\n"
14575 msgstr ""
14576
14577 #. type: textblock
14578 #: ../src/guestfs-actions.pod:4973
14579 msgid ""
14580 "This is the same as the C<guestfs_mount> command, but it mounts the "
14581 "filesystem with the read-only (I<-o ro>) flag."
14582 msgstr ""
14583
14584 #. type: =head2
14585 #: ../src/guestfs-actions.pod:4980
14586 msgid "guestfs_mount_vfs"
14587 msgstr ""
14588
14589 #. type: verbatim
14590 #: ../src/guestfs-actions.pod:4982
14591 #, no-wrap
14592 msgid ""
14593 " int\n"
14594 " guestfs_mount_vfs (guestfs_h *g,\n"
14595 "                    const char *options,\n"
14596 "                    const char *vfstype,\n"
14597 "                    const char *device,\n"
14598 "                    const char *mountpoint);\n"
14599 "\n"
14600 msgstr ""
14601
14602 #. type: textblock
14603 #: ../src/guestfs-actions.pod:4989
14604 msgid ""
14605 "This is the same as the C<guestfs_mount> command, but it allows you to set "
14606 "both the mount options and the vfstype as for the L<mount(8)> I<-o> and I<-"
14607 "t> flags."
14608 msgstr ""
14609
14610 #. type: =head2
14611 #: ../src/guestfs-actions.pod:4997
14612 msgid "guestfs_mountpoints"
14613 msgstr ""
14614
14615 #. type: verbatim
14616 #: ../src/guestfs-actions.pod:4999
14617 #, no-wrap
14618 msgid ""
14619 " char **\n"
14620 " guestfs_mountpoints (guestfs_h *g);\n"
14621 "\n"
14622 msgstr ""
14623
14624 #. type: textblock
14625 #: ../src/guestfs-actions.pod:5002
14626 msgid ""
14627 "This call is similar to C<guestfs_mounts>.  That call returns a list of "
14628 "devices.  This one returns a hash table (map) of device name to directory "
14629 "where the device is mounted."
14630 msgstr ""
14631
14632 #. type: =head2
14633 #: ../src/guestfs-actions.pod:5014
14634 msgid "guestfs_mounts"
14635 msgstr ""
14636
14637 #. type: verbatim
14638 #: ../src/guestfs-actions.pod:5016
14639 #, no-wrap
14640 msgid ""
14641 " char **\n"
14642 " guestfs_mounts (guestfs_h *g);\n"
14643 "\n"
14644 msgstr ""
14645
14646 #. type: textblock
14647 #: ../src/guestfs-actions.pod:5019 ../fish/guestfish-actions.pod:3325
14648 msgid ""
14649 "This returns the list of currently mounted filesystems.  It returns the list "
14650 "of devices (eg. C</dev/sda1>, C</dev/VG/LV>)."
14651 msgstr ""
14652
14653 #. type: textblock
14654 #: ../src/guestfs-actions.pod:5022 ../fish/guestfish-actions.pod:3328
14655 msgid "Some internal mounts are not shown."
14656 msgstr ""
14657
14658 #. type: textblock
14659 #: ../src/guestfs-actions.pod:5024
14660 msgid "See also: C<guestfs_mountpoints>"
14661 msgstr ""
14662
14663 #. type: =head2
14664 #: ../src/guestfs-actions.pod:5032
14665 msgid "guestfs_mv"
14666 msgstr ""
14667
14668 #. type: verbatim
14669 #: ../src/guestfs-actions.pod:5034
14670 #, no-wrap
14671 msgid ""
14672 " int\n"
14673 " guestfs_mv (guestfs_h *g,\n"
14674 "             const char *src,\n"
14675 "             const char *dest);\n"
14676 "\n"
14677 msgstr ""
14678
14679 #. type: textblock
14680 #: ../src/guestfs-actions.pod:5039 ../fish/guestfish-actions.pod:3336
14681 msgid ""
14682 "This moves a file from C<src> to C<dest> where C<dest> is either a "
14683 "destination filename or destination directory."
14684 msgstr ""
14685
14686 #. type: =head2
14687 #: ../src/guestfs-actions.pod:5046
14688 msgid "guestfs_ntfs_3g_probe"
14689 msgstr ""
14690
14691 #. type: verbatim
14692 #: ../src/guestfs-actions.pod:5048
14693 #, no-wrap
14694 msgid ""
14695 " int\n"
14696 " guestfs_ntfs_3g_probe (guestfs_h *g,\n"
14697 "                        int rw,\n"
14698 "                        const char *device);\n"
14699 "\n"
14700 msgstr ""
14701
14702 #. type: textblock
14703 #: ../src/guestfs-actions.pod:5053 ../fish/guestfish-actions.pod:3343
14704 msgid ""
14705 "This command runs the L<ntfs-3g.probe(8)> command which probes an NTFS "
14706 "C<device> for mountability.  (Not all NTFS volumes can be mounted read-"
14707 "write, and some cannot be mounted at all)."
14708 msgstr ""
14709
14710 #. type: textblock
14711 #: ../src/guestfs-actions.pod:5057 ../fish/guestfish-actions.pod:3347
14712 msgid ""
14713 "C<rw> is a boolean flag.  Set it to true if you want to test if the volume "
14714 "can be mounted read-write.  Set it to false if you want to test if the "
14715 "volume can be mounted read-only."
14716 msgstr ""
14717
14718 #. type: textblock
14719 #: ../src/guestfs-actions.pod:5061 ../fish/guestfish-actions.pod:3351
14720 msgid ""
14721 "The return value is an integer which C<0> if the operation would succeed, or "
14722 "some non-zero value documented in the L<ntfs-3g.probe(8)> manual page."
14723 msgstr ""
14724
14725 #. type: textblock
14726 #: ../src/guestfs-actions.pod:5067
14727 msgid "(Added in 1.0.43)"
14728 msgstr ""
14729
14730 #. type: =head2
14731 #: ../src/guestfs-actions.pod:5069
14732 msgid "guestfs_ntfsresize"
14733 msgstr ""
14734
14735 #. type: verbatim
14736 #: ../src/guestfs-actions.pod:5071
14737 #, no-wrap
14738 msgid ""
14739 " int\n"
14740 " guestfs_ntfsresize (guestfs_h *g,\n"
14741 "                     const char *device);\n"
14742 "\n"
14743 msgstr ""
14744
14745 #. type: textblock
14746 #: ../src/guestfs-actions.pod:5075 ../src/guestfs-actions.pod:5114
14747 #: ../fish/guestfish-actions.pod:3359 ../fish/guestfish-actions.pod:3383
14748 msgid ""
14749 "This command resizes an NTFS filesystem, expanding or shrinking it to the "
14750 "size of the underlying device."
14751 msgstr ""
14752
14753 #. type: textblock
14754 #: ../src/guestfs-actions.pod:5078 ../fish/guestfish-actions.pod:3362
14755 msgid ""
14756 "I<Note:> After the resize operation, the filesystem is marked as requiring a "
14757 "consistency check (for safety).  You have to boot into Windows to perform "
14758 "this check and clear this condition.  Furthermore, ntfsresize refuses to "
14759 "resize filesystems which have been marked in this way.  So in effect it is "
14760 "not possible to call ntfsresize multiple times on a single filesystem "
14761 "without booting into Windows between each resize."
14762 msgstr ""
14763
14764 #. type: textblock
14765 #: ../src/guestfs-actions.pod:5086 ../src/guestfs-actions.pod:5140
14766 #: ../fish/guestfish-actions.pod:3370 ../fish/guestfish-actions.pod:3409
14767 #, fuzzy
14768 #| msgid "See L<guestfish(1)>."
14769 msgid "See also L<ntfsresize(8)>."
14770 msgstr "Див. L<guestfish(1)>."
14771
14772 #. type: textblock
14773 #: ../src/guestfs-actions.pod:5090 ../src/guestfs-actions.pod:5178
14774 #: ../fish/guestfish-actions.pod:3372 ../fish/guestfish-actions.pod:3420
14775 msgid ""
14776 "This function is deprecated.  In new code, use the C<ntfsresize_opts> call "
14777 "instead."
14778 msgstr ""
14779
14780 #. type: =head2
14781 #: ../src/guestfs-actions.pod:5099
14782 msgid "guestfs_ntfsresize_opts"
14783 msgstr ""
14784
14785 #. type: verbatim
14786 #: ../src/guestfs-actions.pod:5101
14787 #, no-wrap
14788 msgid ""
14789 " int\n"
14790 " guestfs_ntfsresize_opts (guestfs_h *g,\n"
14791 "                          const char *device,\n"
14792 "                          ...);\n"
14793 "\n"
14794 msgstr ""
14795
14796 #. type: verbatim
14797 #: ../src/guestfs-actions.pod:5111
14798 #, no-wrap
14799 msgid ""
14800 " GUESTFS_NTFSRESIZE_OPTS_SIZE, int64_t size,\n"
14801 " GUESTFS_NTFSRESIZE_OPTS_FORCE, int force,\n"
14802 "\n"
14803 msgstr ""
14804
14805 #. type: textblock
14806 #: ../src/guestfs-actions.pod:5117 ../fish/guestfish-actions.pod:3386
14807 msgid "The optional parameters are:"
14808 msgstr ""
14809
14810 #. type: =item
14811 #: ../src/guestfs-actions.pod:5121 ../fish/guestfish-actions.pod:3390
14812 #, fuzzy
14813 #| msgid "C<inspector>"
14814 msgid "C<size>"
14815 msgstr "C<inspector>"
14816
14817 #. type: textblock
14818 #: ../src/guestfs-actions.pod:5123 ../fish/guestfish-actions.pod:3392
14819 msgid ""
14820 "The new size (in bytes) of the filesystem.  If omitted, the filesystem is "
14821 "resized to fit the container (eg. partition)."
14822 msgstr ""
14823
14824 #. type: =item
14825 #: ../src/guestfs-actions.pod:5126 ../fish/guestfish-actions.pod:3395
14826 #, fuzzy
14827 #| msgid "C<format>"
14828 msgid "C<force>"
14829 msgstr "C<format>"
14830
14831 #. type: textblock
14832 #: ../src/guestfs-actions.pod:5128 ../fish/guestfish-actions.pod:3397
14833 msgid ""
14834 "If this option is true, then force the resize of the filesystem even if the "
14835 "filesystem is marked as requiring a consistency check."
14836 msgstr ""
14837
14838 #. type: textblock
14839 #: ../src/guestfs-actions.pod:5131
14840 msgid ""
14841 "After the resize operation, the filesystem is always marked as requiring a "
14842 "consistency check (for safety).  You have to boot into Windows to perform "
14843 "this check and clear this condition.  If you I<don't> set the C<force> "
14844 "option then it is not possible to call C<guestfs_ntfsresize_opts> multiple "
14845 "times on a single filesystem without booting into Windows between each "
14846 "resize."
14847 msgstr ""
14848
14849 #. type: =head2
14850 #: ../src/guestfs-actions.pod:5144
14851 msgid "guestfs_ntfsresize_opts_va"
14852 msgstr ""
14853
14854 #. type: verbatim
14855 #: ../src/guestfs-actions.pod:5146
14856 #, no-wrap
14857 msgid ""
14858 " int\n"
14859 " guestfs_ntfsresize_opts_va (guestfs_h *g,\n"
14860 "                             const char *device,\n"
14861 "                             va_list args);\n"
14862 "\n"
14863 msgstr ""
14864
14865 #. type: textblock
14866 #: ../src/guestfs-actions.pod:5151
14867 msgid "This is the \"va_list variant\" of L</guestfs_ntfsresize_opts>."
14868 msgstr ""
14869
14870 #. type: =head2
14871 #: ../src/guestfs-actions.pod:5155
14872 msgid "guestfs_ntfsresize_opts_argv"
14873 msgstr ""
14874
14875 #. type: verbatim
14876 #: ../src/guestfs-actions.pod:5157
14877 #, no-wrap
14878 msgid ""
14879 " int\n"
14880 " guestfs_ntfsresize_opts_argv (guestfs_h *g,\n"
14881 "                               const char *device,\n"
14882 "                               const struct guestfs_ntfsresize_opts_argv *optargs);\n"
14883 "\n"
14884 msgstr ""
14885
14886 #. type: textblock
14887 #: ../src/guestfs-actions.pod:5162
14888 msgid "This is the \"argv variant\" of L</guestfs_ntfsresize_opts>."
14889 msgstr ""
14890
14891 #. type: =head2
14892 #: ../src/guestfs-actions.pod:5166
14893 msgid "guestfs_ntfsresize_size"
14894 msgstr ""
14895
14896 #. type: verbatim
14897 #: ../src/guestfs-actions.pod:5168
14898 #, no-wrap
14899 msgid ""
14900 " int\n"
14901 " guestfs_ntfsresize_size (guestfs_h *g,\n"
14902 "                          const char *device,\n"
14903 "                          int64_t size);\n"
14904 "\n"
14905 msgstr ""
14906
14907 #. type: textblock
14908 #: ../src/guestfs-actions.pod:5173
14909 msgid ""
14910 "This command is the same as C<guestfs_ntfsresize> except that it allows you "
14911 "to specify the new size (in bytes) explicitly."
14912 msgstr ""
14913
14914 #. type: textblock
14915 #: ../src/guestfs-actions.pod:5185 ../src/guestfs-actions.pod:5621
14916 #: ../src/guestfs-actions.pod:5694 ../src/guestfs-actions.pod:5962
14917 #: ../src/guestfs-actions.pod:7564
14918 msgid "(Added in 1.3.14)"
14919 msgstr ""
14920
14921 #. type: =head2
14922 #: ../src/guestfs-actions.pod:5187
14923 msgid "guestfs_part_add"
14924 msgstr ""
14925
14926 #. type: verbatim
14927 #: ../src/guestfs-actions.pod:5189
14928 #, no-wrap
14929 msgid ""
14930 " int\n"
14931 " guestfs_part_add (guestfs_h *g,\n"
14932 "                   const char *device,\n"
14933 "                   const char *prlogex,\n"
14934 "                   int64_t startsect,\n"
14935 "                   int64_t endsect);\n"
14936 "\n"
14937 msgstr ""
14938
14939 #. type: textblock
14940 #: ../src/guestfs-actions.pod:5196
14941 msgid ""
14942 "This command adds a partition to C<device>.  If there is no partition table "
14943 "on the device, call C<guestfs_part_init> first."
14944 msgstr ""
14945
14946 #. type: textblock
14947 #: ../src/guestfs-actions.pod:5199 ../fish/guestfish-actions.pod:3434
14948 msgid ""
14949 "The C<prlogex> parameter is the type of partition.  Normally you should pass "
14950 "C<p> or C<primary> here, but MBR partition tables also support C<l> (or "
14951 "C<logical>) and C<e> (or C<extended>) partition types."
14952 msgstr ""
14953
14954 #. type: textblock
14955 #: ../src/guestfs-actions.pod:5204 ../fish/guestfish-actions.pod:3439
14956 msgid ""
14957 "C<startsect> and C<endsect> are the start and end of the partition in "
14958 "I<sectors>.  C<endsect> may be negative, which means it counts backwards "
14959 "from the end of the disk (C<-1> is the last sector)."
14960 msgstr ""
14961
14962 #. type: textblock
14963 #: ../src/guestfs-actions.pod:5208
14964 msgid ""
14965 "Creating a partition which covers the whole disk is not so easy.  Use "
14966 "C<guestfs_part_disk> to do that."
14967 msgstr ""
14968
14969 #. type: textblock
14970 #: ../src/guestfs-actions.pod:5213 ../src/guestfs-actions.pod:5251
14971 #: ../src/guestfs-actions.pod:5304 ../src/guestfs-actions.pod:5382
14972 #: ../src/guestfs-actions.pod:5420 ../src/guestfs-actions.pod:5439
14973 #: ../src/guestfs-actions.pod:5479
14974 msgid "(Added in 1.0.78)"
14975 msgstr ""
14976
14977 #. type: =head2
14978 #: ../src/guestfs-actions.pod:5215
14979 msgid "guestfs_part_del"
14980 msgstr ""
14981
14982 #. type: verbatim
14983 #: ../src/guestfs-actions.pod:5217
14984 #, no-wrap
14985 msgid ""
14986 " int\n"
14987 " guestfs_part_del (guestfs_h *g,\n"
14988 "                   const char *device,\n"
14989 "                   int partnum);\n"
14990 "\n"
14991 msgstr ""
14992
14993 #. type: textblock
14994 #: ../src/guestfs-actions.pod:5222 ../fish/guestfish-actions.pod:3450
14995 msgid "This command deletes the partition numbered C<partnum> on C<device>."
14996 msgstr ""
14997
14998 #. type: textblock
14999 #: ../src/guestfs-actions.pod:5224 ../fish/guestfish-actions.pod:3452
15000 msgid ""
15001 "Note that in the case of MBR partitioning, deleting an extended partition "
15002 "also deletes any logical partitions it contains."
15003 msgstr ""
15004
15005 #. type: =head2
15006 #: ../src/guestfs-actions.pod:5232
15007 msgid "guestfs_part_disk"
15008 msgstr ""
15009
15010 #. type: verbatim
15011 #: ../src/guestfs-actions.pod:5234
15012 #, no-wrap
15013 msgid ""
15014 " int\n"
15015 " guestfs_part_disk (guestfs_h *g,\n"
15016 "                    const char *device,\n"
15017 "                    const char *parttype);\n"
15018 "\n"
15019 msgstr ""
15020
15021 #. type: textblock
15022 #: ../src/guestfs-actions.pod:5239
15023 msgid ""
15024 "This command is simply a combination of C<guestfs_part_init> followed by "
15025 "C<guestfs_part_add> to create a single primary partition covering the whole "
15026 "disk."
15027 msgstr ""
15028
15029 #. type: textblock
15030 #: ../src/guestfs-actions.pod:5243
15031 msgid ""
15032 "C<parttype> is the partition table type, usually C<mbr> or C<gpt>, but other "
15033 "possible values are described in C<guestfs_part_init>."
15034 msgstr ""
15035
15036 #. type: =head2
15037 #: ../src/guestfs-actions.pod:5253
15038 msgid "guestfs_part_get_bootable"
15039 msgstr ""
15040
15041 #. type: verbatim
15042 #: ../src/guestfs-actions.pod:5255
15043 #, no-wrap
15044 msgid ""
15045 " int\n"
15046 " guestfs_part_get_bootable (guestfs_h *g,\n"
15047 "                            const char *device,\n"
15048 "                            int partnum);\n"
15049 "\n"
15050 msgstr ""
15051
15052 #. type: textblock
15053 #: ../src/guestfs-actions.pod:5260 ../fish/guestfish-actions.pod:3474
15054 msgid ""
15055 "This command returns true if the partition C<partnum> on C<device> has the "
15056 "bootable flag set."
15057 msgstr ""
15058
15059 #. type: textblock
15060 #: ../src/guestfs-actions.pod:5263
15061 msgid "See also C<guestfs_part_set_bootable>."
15062 msgstr ""
15063
15064 #. type: =head2
15065 #: ../src/guestfs-actions.pod:5269
15066 msgid "guestfs_part_get_mbr_id"
15067 msgstr ""
15068
15069 #. type: verbatim
15070 #: ../src/guestfs-actions.pod:5271
15071 #, no-wrap
15072 msgid ""
15073 " int\n"
15074 " guestfs_part_get_mbr_id (guestfs_h *g,\n"
15075 "                          const char *device,\n"
15076 "                          int partnum);\n"
15077 "\n"
15078 msgstr ""
15079
15080 #. type: textblock
15081 #: ../src/guestfs-actions.pod:5276 ../fish/guestfish-actions.pod:3483
15082 msgid ""
15083 "Returns the MBR type byte (also known as the ID byte) from the numbered "
15084 "partition C<partnum>."
15085 msgstr ""
15086
15087 #. type: textblock
15088 #: ../src/guestfs-actions.pod:5279 ../src/guestfs-actions.pod:5455
15089 msgid ""
15090 "Note that only MBR (old DOS-style) partitions have type bytes.  You will get "
15091 "undefined results for other partition table types (see "
15092 "C<guestfs_part_get_parttype>)."
15093 msgstr ""
15094
15095 #. type: =head2
15096 #: ../src/guestfs-actions.pod:5287
15097 msgid "guestfs_part_get_parttype"
15098 msgstr ""
15099
15100 #. type: verbatim
15101 #: ../src/guestfs-actions.pod:5289
15102 #, no-wrap
15103 msgid ""
15104 " char *\n"
15105 " guestfs_part_get_parttype (guestfs_h *g,\n"
15106 "                            const char *device);\n"
15107 "\n"
15108 msgstr ""
15109
15110 #. type: textblock
15111 #: ../src/guestfs-actions.pod:5293 ../fish/guestfish-actions.pod:3494
15112 msgid ""
15113 "This command examines the partition table on C<device> and returns the "
15114 "partition table type (format) being used."
15115 msgstr ""
15116
15117 #. type: textblock
15118 #: ../src/guestfs-actions.pod:5296
15119 msgid ""
15120 "Common return values include: C<msdos> (a DOS/Windows style MBR partition "
15121 "table), C<gpt> (a GPT/EFI-style partition table).  Other values are "
15122 "possible, although unusual.  See C<guestfs_part_init> for a full list."
15123 msgstr ""
15124
15125 #. type: =head2
15126 #: ../src/guestfs-actions.pod:5306
15127 msgid "guestfs_part_init"
15128 msgstr ""
15129
15130 #. type: verbatim
15131 #: ../src/guestfs-actions.pod:5308
15132 #, no-wrap
15133 msgid ""
15134 " int\n"
15135 " guestfs_part_init (guestfs_h *g,\n"
15136 "                    const char *device,\n"
15137 "                    const char *parttype);\n"
15138 "\n"
15139 msgstr ""
15140
15141 #. type: textblock
15142 #: ../src/guestfs-actions.pod:5313 ../fish/guestfish-actions.pod:3506
15143 msgid ""
15144 "This creates an empty partition table on C<device> of one of the partition "
15145 "types listed below.  Usually C<parttype> should be either C<msdos> or C<gpt> "
15146 "(for large disks)."
15147 msgstr ""
15148
15149 #. type: textblock
15150 #: ../src/guestfs-actions.pod:5317
15151 msgid ""
15152 "Initially there are no partitions.  Following this, you should call "
15153 "C<guestfs_part_add> for each partition required."
15154 msgstr ""
15155
15156 #. type: textblock
15157 #: ../src/guestfs-actions.pod:5320 ../fish/guestfish-actions.pod:3513
15158 msgid "Possible values for C<parttype> are:"
15159 msgstr ""
15160
15161 #. type: =item
15162 #: ../src/guestfs-actions.pod:5324 ../fish/guestfish-actions.pod:3517
15163 msgid "B<efi> | B<gpt>"
15164 msgstr ""
15165
15166 #. type: textblock
15167 #: ../src/guestfs-actions.pod:5326 ../fish/guestfish-actions.pod:3519
15168 msgid "Intel EFI / GPT partition table."
15169 msgstr ""
15170
15171 #. type: textblock
15172 #: ../src/guestfs-actions.pod:5328 ../fish/guestfish-actions.pod:3521
15173 msgid ""
15174 "This is recommended for >= 2 TB partitions that will be accessed from Linux "
15175 "and Intel-based Mac OS X.  It also has limited backwards compatibility with "
15176 "the C<mbr> format."
15177 msgstr ""
15178
15179 #. type: =item
15180 #: ../src/guestfs-actions.pod:5332 ../fish/guestfish-actions.pod:3525
15181 msgid "B<mbr> | B<msdos>"
15182 msgstr ""
15183
15184 #. type: textblock
15185 #: ../src/guestfs-actions.pod:5334 ../fish/guestfish-actions.pod:3527
15186 msgid ""
15187 "The standard PC \"Master Boot Record\" (MBR) format used by MS-DOS and "
15188 "Windows.  This partition type will B<only> work for device sizes up to 2 "
15189 "TB.  For large disks we recommend using C<gpt>."
15190 msgstr ""
15191
15192 #. type: textblock
15193 #: ../src/guestfs-actions.pod:5341 ../fish/guestfish-actions.pod:3534
15194 msgid ""
15195 "Other partition table types that may work but are not supported include:"
15196 msgstr ""
15197
15198 #. type: =item
15199 #: ../src/guestfs-actions.pod:5346 ../fish/guestfish-actions.pod:3539
15200 msgid "B<aix>"
15201 msgstr ""
15202
15203 #. type: textblock
15204 #: ../src/guestfs-actions.pod:5348 ../fish/guestfish-actions.pod:3541
15205 msgid "AIX disk labels."
15206 msgstr ""
15207
15208 #. type: =item
15209 #: ../src/guestfs-actions.pod:5350 ../fish/guestfish-actions.pod:3543
15210 msgid "B<amiga> | B<rdb>"
15211 msgstr ""
15212
15213 #. type: textblock
15214 #: ../src/guestfs-actions.pod:5352 ../fish/guestfish-actions.pod:3545
15215 msgid "Amiga \"Rigid Disk Block\" format."
15216 msgstr ""
15217
15218 #. type: =item
15219 #: ../src/guestfs-actions.pod:5354 ../fish/guestfish-actions.pod:3547
15220 msgid "B<bsd>"
15221 msgstr ""
15222
15223 #. type: textblock
15224 #: ../src/guestfs-actions.pod:5356 ../fish/guestfish-actions.pod:3549
15225 msgid "BSD disk labels."
15226 msgstr ""
15227
15228 #. type: =item
15229 #: ../src/guestfs-actions.pod:5358 ../fish/guestfish-actions.pod:3551
15230 msgid "B<dasd>"
15231 msgstr ""
15232
15233 #. type: textblock
15234 #: ../src/guestfs-actions.pod:5360 ../fish/guestfish-actions.pod:3553
15235 msgid "DASD, used on IBM mainframes."
15236 msgstr ""
15237
15238 #. type: =item
15239 #: ../src/guestfs-actions.pod:5362 ../fish/guestfish-actions.pod:3555
15240 msgid "B<dvh>"
15241 msgstr ""
15242
15243 #. type: textblock
15244 #: ../src/guestfs-actions.pod:5364 ../fish/guestfish-actions.pod:3557
15245 msgid "MIPS/SGI volumes."
15246 msgstr ""
15247
15248 #. type: =item
15249 #: ../src/guestfs-actions.pod:5366 ../fish/guestfish-actions.pod:3559
15250 msgid "B<mac>"
15251 msgstr ""
15252
15253 #. type: textblock
15254 #: ../src/guestfs-actions.pod:5368 ../fish/guestfish-actions.pod:3561
15255 msgid "Old Mac partition format.  Modern Macs use C<gpt>."
15256 msgstr ""
15257
15258 #. type: =item
15259 #: ../src/guestfs-actions.pod:5370 ../fish/guestfish-actions.pod:3563
15260 msgid "B<pc98>"
15261 msgstr ""
15262
15263 #. type: textblock
15264 #: ../src/guestfs-actions.pod:5372 ../fish/guestfish-actions.pod:3565
15265 msgid "NEC PC-98 format, common in Japan apparently."
15266 msgstr ""
15267
15268 #. type: =item
15269 #: ../src/guestfs-actions.pod:5374 ../fish/guestfish-actions.pod:3567
15270 msgid "B<sun>"
15271 msgstr ""
15272
15273 #. type: textblock
15274 #: ../src/guestfs-actions.pod:5376 ../fish/guestfish-actions.pod:3569
15275 msgid "Sun disk labels."
15276 msgstr ""
15277
15278 #. type: =head2
15279 #: ../src/guestfs-actions.pod:5384
15280 msgid "guestfs_part_list"
15281 msgstr ""
15282
15283 #. type: verbatim
15284 #: ../src/guestfs-actions.pod:5386
15285 #, no-wrap
15286 msgid ""
15287 " struct guestfs_partition_list *\n"
15288 " guestfs_part_list (guestfs_h *g,\n"
15289 "                    const char *device);\n"
15290 "\n"
15291 msgstr ""
15292
15293 #. type: textblock
15294 #: ../src/guestfs-actions.pod:5390 ../fish/guestfish-actions.pod:3577
15295 msgid ""
15296 "This command parses the partition table on C<device> and returns the list of "
15297 "partitions found."
15298 msgstr ""
15299
15300 #. type: textblock
15301 #: ../src/guestfs-actions.pod:5393 ../fish/guestfish-actions.pod:3580
15302 msgid "The fields in the returned structure are:"
15303 msgstr ""
15304
15305 #. type: =item
15306 #: ../src/guestfs-actions.pod:5397 ../fish/guestfish-actions.pod:3584
15307 msgid "B<part_num>"
15308 msgstr ""
15309
15310 #. type: textblock
15311 #: ../src/guestfs-actions.pod:5399 ../fish/guestfish-actions.pod:3586
15312 msgid "Partition number, counting from 1."
15313 msgstr ""
15314
15315 #. type: =item
15316 #: ../src/guestfs-actions.pod:5401 ../fish/guestfish-actions.pod:3588
15317 msgid "B<part_start>"
15318 msgstr ""
15319
15320 #. type: textblock
15321 #: ../src/guestfs-actions.pod:5403
15322 msgid ""
15323 "Start of the partition I<in bytes>.  To get sectors you have to divide by "
15324 "the device's sector size, see C<guestfs_blockdev_getss>."
15325 msgstr ""
15326
15327 #. type: =item
15328 #: ../src/guestfs-actions.pod:5406 ../fish/guestfish-actions.pod:3593
15329 msgid "B<part_end>"
15330 msgstr ""
15331
15332 #. type: textblock
15333 #: ../src/guestfs-actions.pod:5408 ../fish/guestfish-actions.pod:3595
15334 msgid "End of the partition in bytes."
15335 msgstr ""
15336
15337 #. type: =item
15338 #: ../src/guestfs-actions.pod:5410 ../fish/guestfish-actions.pod:3597
15339 msgid "B<part_size>"
15340 msgstr ""
15341
15342 #. type: textblock
15343 #: ../src/guestfs-actions.pod:5412 ../fish/guestfish-actions.pod:3599
15344 msgid "Size of the partition in bytes."
15345 msgstr ""
15346
15347 #. type: textblock
15348 #: ../src/guestfs-actions.pod:5416
15349 msgid ""
15350 "This function returns a C<struct guestfs_partition_list *>, or NULL if there "
15351 "was an error.  I<The caller must call C<guestfs_free_partition_list> after "
15352 "use>."
15353 msgstr ""
15354
15355 #. type: =head2
15356 #: ../src/guestfs-actions.pod:5422
15357 msgid "guestfs_part_set_bootable"
15358 msgstr ""
15359
15360 #. type: verbatim
15361 #: ../src/guestfs-actions.pod:5424
15362 #, no-wrap
15363 msgid ""
15364 " int\n"
15365 " guestfs_part_set_bootable (guestfs_h *g,\n"
15366 "                            const char *device,\n"
15367 "                            int partnum,\n"
15368 "                            int bootable);\n"
15369 "\n"
15370 msgstr ""
15371
15372 #. type: textblock
15373 #: ../src/guestfs-actions.pod:5430 ../fish/guestfish-actions.pod:3607
15374 msgid ""
15375 "This sets the bootable flag on partition numbered C<partnum> on device "
15376 "C<device>.  Note that partitions are numbered from 1."
15377 msgstr ""
15378
15379 #. type: textblock
15380 #: ../src/guestfs-actions.pod:5433 ../fish/guestfish-actions.pod:3610
15381 msgid ""
15382 "The bootable flag is used by some operating systems (notably Windows) to "
15383 "determine which partition to boot from.  It is by no means universally "
15384 "recognized."
15385 msgstr ""
15386
15387 #. type: =head2
15388 #: ../src/guestfs-actions.pod:5441
15389 msgid "guestfs_part_set_mbr_id"
15390 msgstr ""
15391
15392 #. type: verbatim
15393 #: ../src/guestfs-actions.pod:5443
15394 #, no-wrap
15395 msgid ""
15396 " int\n"
15397 " guestfs_part_set_mbr_id (guestfs_h *g,\n"
15398 "                          const char *device,\n"
15399 "                          int partnum,\n"
15400 "                          int idbyte);\n"
15401 "\n"
15402 msgstr ""
15403
15404 #. type: textblock
15405 #: ../src/guestfs-actions.pod:5449 ../fish/guestfish-actions.pod:3618
15406 msgid ""
15407 "Sets the MBR type byte (also known as the ID byte) of the numbered partition "
15408 "C<partnum> to C<idbyte>.  Note that the type bytes quoted in most "
15409 "documentation are in fact hexadecimal numbers, but usually documented "
15410 "without any leading \"0x\" which might be confusing."
15411 msgstr ""
15412
15413 #. type: =head2
15414 #: ../src/guestfs-actions.pod:5463
15415 msgid "guestfs_part_set_name"
15416 msgstr ""
15417
15418 #. type: verbatim
15419 #: ../src/guestfs-actions.pod:5465
15420 #, no-wrap
15421 msgid ""
15422 " int\n"
15423 " guestfs_part_set_name (guestfs_h *g,\n"
15424 "                        const char *device,\n"
15425 "                        int partnum,\n"
15426 "                        const char *name);\n"
15427 "\n"
15428 msgstr ""
15429
15430 #. type: textblock
15431 #: ../src/guestfs-actions.pod:5471 ../fish/guestfish-actions.pod:3632
15432 msgid ""
15433 "This sets the partition name on partition numbered C<partnum> on device "
15434 "C<device>.  Note that partitions are numbered from 1."
15435 msgstr ""
15436
15437 #. type: textblock
15438 #: ../src/guestfs-actions.pod:5474 ../fish/guestfish-actions.pod:3635
15439 msgid ""
15440 "The partition name can only be set on certain types of partition table.  "
15441 "This works on C<gpt> but not on C<mbr> partitions."
15442 msgstr ""
15443
15444 #. type: =head2
15445 #: ../src/guestfs-actions.pod:5481
15446 msgid "guestfs_part_to_dev"
15447 msgstr ""
15448
15449 #. type: verbatim
15450 #: ../src/guestfs-actions.pod:5483
15451 #, no-wrap
15452 msgid ""
15453 " char *\n"
15454 " guestfs_part_to_dev (guestfs_h *g,\n"
15455 "                      const char *partition);\n"
15456 "\n"
15457 msgstr ""
15458
15459 #. type: textblock
15460 #: ../src/guestfs-actions.pod:5487 ../fish/guestfish-actions.pod:3642
15461 msgid ""
15462 "This function takes a partition name (eg. \"/dev/sdb1\") and removes the "
15463 "partition number, returning the device name (eg. \"/dev/sdb\")."
15464 msgstr ""
15465
15466 #. type: textblock
15467 #: ../src/guestfs-actions.pod:5491
15468 msgid ""
15469 "The named partition must exist, for example as a string returned from "
15470 "C<guestfs_list_partitions>."
15471 msgstr ""
15472
15473 #. type: =head2
15474 #: ../src/guestfs-actions.pod:5499
15475 msgid "guestfs_ping_daemon"
15476 msgstr ""
15477
15478 #. type: verbatim
15479 #: ../src/guestfs-actions.pod:5501
15480 #, no-wrap
15481 msgid ""
15482 " int\n"
15483 " guestfs_ping_daemon (guestfs_h *g);\n"
15484 "\n"
15485 msgstr ""
15486
15487 #. type: textblock
15488 #: ../src/guestfs-actions.pod:5504 ../fish/guestfish-actions.pod:3653
15489 msgid ""
15490 "This is a test probe into the guestfs daemon running inside the qemu "
15491 "subprocess.  Calling this function checks that the daemon responds to the "
15492 "ping message, without affecting the daemon or attached block device(s) in "
15493 "any other way."
15494 msgstr ""
15495
15496 #. type: =head2
15497 #: ../src/guestfs-actions.pod:5513
15498 msgid "guestfs_pread"
15499 msgstr ""
15500
15501 #. type: verbatim
15502 #: ../src/guestfs-actions.pod:5515
15503 #, no-wrap
15504 msgid ""
15505 " char *\n"
15506 " guestfs_pread (guestfs_h *g,\n"
15507 "                const char *path,\n"
15508 "                int count,\n"
15509 "                int64_t offset,\n"
15510 "                size_t *size_r);\n"
15511 "\n"
15512 msgstr ""
15513
15514 #. type: textblock
15515 #: ../src/guestfs-actions.pod:5522 ../fish/guestfish-actions.pod:3662
15516 msgid ""
15517 "This command lets you read part of a file.  It reads C<count> bytes of the "
15518 "file, starting at C<offset>, from file C<path>."
15519 msgstr ""
15520
15521 #. type: textblock
15522 #: ../src/guestfs-actions.pod:5525 ../src/guestfs-actions.pod:5551
15523 #: ../fish/guestfish-actions.pod:3665 ../fish/guestfish-actions.pod:3680
15524 msgid ""
15525 "This may read fewer bytes than requested.  For further details see the "
15526 "L<pread(2)> system call."
15527 msgstr ""
15528
15529 #. type: textblock
15530 #: ../src/guestfs-actions.pod:5528
15531 msgid "See also C<guestfs_pwrite>, C<guestfs_pread_device>."
15532 msgstr ""
15533
15534 #. type: =head2
15535 #: ../src/guestfs-actions.pod:5539
15536 msgid "guestfs_pread_device"
15537 msgstr ""
15538
15539 #. type: verbatim
15540 #: ../src/guestfs-actions.pod:5541
15541 #, no-wrap
15542 msgid ""
15543 " char *\n"
15544 " guestfs_pread_device (guestfs_h *g,\n"
15545 "                       const char *device,\n"
15546 "                       int count,\n"
15547 "                       int64_t offset,\n"
15548 "                       size_t *size_r);\n"
15549 "\n"
15550 msgstr ""
15551
15552 #. type: textblock
15553 #: ../src/guestfs-actions.pod:5548 ../fish/guestfish-actions.pod:3677
15554 msgid ""
15555 "This command lets you read part of a file.  It reads C<count> bytes of "
15556 "C<device>, starting at C<offset>."
15557 msgstr ""
15558
15559 #. type: textblock
15560 #: ../src/guestfs-actions.pod:5554
15561 msgid "See also C<guestfs_pread>."
15562 msgstr ""
15563
15564 #. type: textblock
15565 #: ../src/guestfs-actions.pod:5563
15566 msgid "(Added in 1.5.21)"
15567 msgstr ""
15568
15569 #. type: =head2
15570 #: ../src/guestfs-actions.pod:5565
15571 msgid "guestfs_pvcreate"
15572 msgstr ""
15573
15574 #. type: verbatim
15575 #: ../src/guestfs-actions.pod:5567
15576 #, no-wrap
15577 msgid ""
15578 " int\n"
15579 " guestfs_pvcreate (guestfs_h *g,\n"
15580 "                   const char *device);\n"
15581 "\n"
15582 msgstr ""
15583
15584 #. type: textblock
15585 #: ../src/guestfs-actions.pod:5571 ../fish/guestfish-actions.pod:3692
15586 msgid ""
15587 "This creates an LVM physical volume on the named C<device>, where C<device> "
15588 "should usually be a partition name such as C</dev/sda1>."
15589 msgstr ""
15590
15591 #. type: =head2
15592 #: ../src/guestfs-actions.pod:5579
15593 msgid "guestfs_pvremove"
15594 msgstr ""
15595
15596 #. type: verbatim
15597 #: ../src/guestfs-actions.pod:5581
15598 #, no-wrap
15599 msgid ""
15600 " int\n"
15601 " guestfs_pvremove (guestfs_h *g,\n"
15602 "                   const char *device);\n"
15603 "\n"
15604 msgstr ""
15605
15606 #. type: textblock
15607 #: ../src/guestfs-actions.pod:5585 ../fish/guestfish-actions.pod:3700
15608 msgid ""
15609 "This wipes a physical volume C<device> so that LVM will no longer recognise "
15610 "it."
15611 msgstr ""
15612
15613 #. type: textblock
15614 #: ../src/guestfs-actions.pod:5588 ../fish/guestfish-actions.pod:3703
15615 msgid ""
15616 "The implementation uses the C<pvremove> command which refuses to wipe "
15617 "physical volumes that contain any volume groups, so you have to remove those "
15618 "first."
15619 msgstr ""
15620
15621 #. type: =head2
15622 #: ../src/guestfs-actions.pod:5596
15623 msgid "guestfs_pvresize"
15624 msgstr ""
15625
15626 #. type: verbatim
15627 #: ../src/guestfs-actions.pod:5598
15628 #, no-wrap
15629 msgid ""
15630 " int\n"
15631 " guestfs_pvresize (guestfs_h *g,\n"
15632 "                   const char *device);\n"
15633 "\n"
15634 msgstr ""
15635
15636 #. type: textblock
15637 #: ../src/guestfs-actions.pod:5602 ../fish/guestfish-actions.pod:3711
15638 msgid ""
15639 "This resizes (expands or shrinks) an existing LVM physical volume to match "
15640 "the new size of the underlying device."
15641 msgstr ""
15642
15643 #. type: =head2
15644 #: ../src/guestfs-actions.pod:5609
15645 msgid "guestfs_pvresize_size"
15646 msgstr ""
15647
15648 #. type: verbatim
15649 #: ../src/guestfs-actions.pod:5611
15650 #, no-wrap
15651 msgid ""
15652 " int\n"
15653 " guestfs_pvresize_size (guestfs_h *g,\n"
15654 "                        const char *device,\n"
15655 "                        int64_t size);\n"
15656 "\n"
15657 msgstr ""
15658
15659 #. type: textblock
15660 #: ../src/guestfs-actions.pod:5616
15661 msgid ""
15662 "This command is the same as C<guestfs_pvresize> except that it allows you to "
15663 "specify the new size (in bytes) explicitly."
15664 msgstr ""
15665
15666 #. type: =head2
15667 #: ../src/guestfs-actions.pod:5623
15668 msgid "guestfs_pvs"
15669 msgstr ""
15670
15671 #. type: verbatim
15672 #: ../src/guestfs-actions.pod:5625
15673 #, no-wrap
15674 msgid ""
15675 " char **\n"
15676 " guestfs_pvs (guestfs_h *g);\n"
15677 "\n"
15678 msgstr ""
15679
15680 #. type: textblock
15681 #: ../src/guestfs-actions.pod:5628 ../fish/guestfish-actions.pod:3725
15682 msgid ""
15683 "List all the physical volumes detected.  This is the equivalent of the L<pvs"
15684 "(8)> command."
15685 msgstr ""
15686
15687 #. type: textblock
15688 #: ../src/guestfs-actions.pod:5631 ../fish/guestfish-actions.pod:3728
15689 msgid ""
15690 "This returns a list of just the device names that contain PVs (eg. C</dev/"
15691 "sda2>)."
15692 msgstr ""
15693
15694 #. type: textblock
15695 #: ../src/guestfs-actions.pod:5634
15696 msgid "See also C<guestfs_pvs_full>."
15697 msgstr ""
15698
15699 #. type: =head2
15700 #: ../src/guestfs-actions.pod:5642
15701 msgid "guestfs_pvs_full"
15702 msgstr ""
15703
15704 #. type: verbatim
15705 #: ../src/guestfs-actions.pod:5644
15706 #, no-wrap
15707 msgid ""
15708 " struct guestfs_lvm_pv_list *\n"
15709 " guestfs_pvs_full (guestfs_h *g);\n"
15710 "\n"
15711 msgstr ""
15712
15713 #. type: textblock
15714 #: ../src/guestfs-actions.pod:5647 ../fish/guestfish-actions.pod:3737
15715 msgid ""
15716 "List all the physical volumes detected.  This is the equivalent of the L<pvs"
15717 "(8)> command.  The \"full\" version includes all fields."
15718 msgstr ""
15719
15720 #. type: textblock
15721 #: ../src/guestfs-actions.pod:5650
15722 msgid ""
15723 "This function returns a C<struct guestfs_lvm_pv_list *>, or NULL if there "
15724 "was an error.  I<The caller must call C<guestfs_free_lvm_pv_list> after use>."
15725 msgstr ""
15726
15727 #. type: =head2
15728 #: ../src/guestfs-actions.pod:5656
15729 msgid "guestfs_pvuuid"
15730 msgstr ""
15731
15732 #. type: verbatim
15733 #: ../src/guestfs-actions.pod:5658
15734 #, no-wrap
15735 msgid ""
15736 " char *\n"
15737 " guestfs_pvuuid (guestfs_h *g,\n"
15738 "                 const char *device);\n"
15739 "\n"
15740 msgstr ""
15741
15742 #. type: textblock
15743 #: ../src/guestfs-actions.pod:5662 ../fish/guestfish-actions.pod:3744
15744 msgid "This command returns the UUID of the LVM PV C<device>."
15745 msgstr ""
15746
15747 #. type: =head2
15748 #: ../src/guestfs-actions.pod:5669
15749 msgid "guestfs_pwrite"
15750 msgstr ""
15751
15752 #. type: verbatim
15753 #: ../src/guestfs-actions.pod:5671
15754 #, no-wrap
15755 msgid ""
15756 " int\n"
15757 " guestfs_pwrite (guestfs_h *g,\n"
15758 "                 const char *path,\n"
15759 "                 const char *content,\n"
15760 "                 size_t content_size,\n"
15761 "                 int64_t offset);\n"
15762 "\n"
15763 msgstr ""
15764
15765 #. type: textblock
15766 #: ../src/guestfs-actions.pod:5678 ../fish/guestfish-actions.pod:3750
15767 msgid ""
15768 "This command writes to part of a file.  It writes the data buffer C<content> "
15769 "to the file C<path> starting at offset C<offset>."
15770 msgstr ""
15771
15772 #. type: textblock
15773 #: ../src/guestfs-actions.pod:5681 ../fish/guestfish-actions.pod:3753
15774 msgid ""
15775 "This command implements the L<pwrite(2)> system call, and like that system "
15776 "call it may not write the full data requested.  The return value is the "
15777 "number of bytes that were actually written to the file.  This could even be "
15778 "0, although short writes are unlikely for regular files in ordinary "
15779 "circumstances."
15780 msgstr ""
15781
15782 #. type: textblock
15783 #: ../src/guestfs-actions.pod:5687
15784 msgid "See also C<guestfs_pread>, C<guestfs_pwrite_device>."
15785 msgstr ""
15786
15787 #. type: =head2
15788 #: ../src/guestfs-actions.pod:5696
15789 msgid "guestfs_pwrite_device"
15790 msgstr ""
15791
15792 #. type: verbatim
15793 #: ../src/guestfs-actions.pod:5698
15794 #, no-wrap
15795 msgid ""
15796 " int\n"
15797 " guestfs_pwrite_device (guestfs_h *g,\n"
15798 "                        const char *device,\n"
15799 "                        const char *content,\n"
15800 "                        size_t content_size,\n"
15801 "                        int64_t offset);\n"
15802 "\n"
15803 msgstr ""
15804
15805 #. type: textblock
15806 #: ../src/guestfs-actions.pod:5705 ../fish/guestfish-actions.pod:3768
15807 msgid ""
15808 "This command writes to part of a device.  It writes the data buffer "
15809 "C<content> to C<device> starting at offset C<offset>."
15810 msgstr ""
15811
15812 #. type: textblock
15813 #: ../src/guestfs-actions.pod:5708 ../fish/guestfish-actions.pod:3771
15814 msgid ""
15815 "This command implements the L<pwrite(2)> system call, and like that system "
15816 "call it may not write the full data requested (although short writes to disk "
15817 "devices and partitions are probably impossible with standard Linux kernels)."
15818 msgstr ""
15819
15820 #. type: textblock
15821 #: ../src/guestfs-actions.pod:5713
15822 msgid "See also C<guestfs_pwrite>."
15823 msgstr ""
15824
15825 #. type: textblock
15826 #: ../src/guestfs-actions.pod:5720
15827 msgid "(Added in 1.5.20)"
15828 msgstr ""
15829
15830 #. type: =head2
15831 #: ../src/guestfs-actions.pod:5722
15832 msgid "guestfs_read_file"
15833 msgstr ""
15834
15835 #. type: verbatim
15836 #: ../src/guestfs-actions.pod:5724
15837 #, no-wrap
15838 msgid ""
15839 " char *\n"
15840 " guestfs_read_file (guestfs_h *g,\n"
15841 "                    const char *path,\n"
15842 "                    size_t *size_r);\n"
15843 "\n"
15844 msgstr ""
15845
15846 #. type: textblock
15847 #: ../src/guestfs-actions.pod:5729 ../fish/guestfish-actions.pod:3785
15848 msgid "This calls returns the contents of the file C<path> as a buffer."
15849 msgstr ""
15850
15851 #. type: textblock
15852 #: ../src/guestfs-actions.pod:5732
15853 msgid ""
15854 "Unlike C<guestfs_cat>, this function can correctly handle files that contain "
15855 "embedded ASCII NUL characters.  However unlike C<guestfs_download>, this "
15856 "function is limited in the total size of file that can be handled."
15857 msgstr ""
15858
15859 #. type: textblock
15860 #: ../src/guestfs-actions.pod:5744
15861 msgid "(Added in 1.0.63)"
15862 msgstr ""
15863
15864 #. type: =head2
15865 #: ../src/guestfs-actions.pod:5746
15866 msgid "guestfs_read_lines"
15867 msgstr ""
15868
15869 #. type: verbatim
15870 #: ../src/guestfs-actions.pod:5748
15871 #, no-wrap
15872 msgid ""
15873 " char **\n"
15874 " guestfs_read_lines (guestfs_h *g,\n"
15875 "                     const char *path);\n"
15876 "\n"
15877 msgstr ""
15878
15879 #. type: textblock
15880 #: ../src/guestfs-actions.pod:5754 ../fish/guestfish-actions.pod:3802
15881 msgid ""
15882 "The file contents are returned as a list of lines.  Trailing C<LF> and "
15883 "C<CRLF> character sequences are I<not> returned."
15884 msgstr ""
15885
15886 #. type: textblock
15887 #: ../src/guestfs-actions.pod:5757
15888 msgid ""
15889 "Note that this function cannot correctly handle binary files (specifically, "
15890 "files containing C<\\0> character which is treated as end of line).  For "
15891 "those you need to use the C<guestfs_read_file> function which has a more "
15892 "complex interface."
15893 msgstr ""
15894
15895 #. type: =head2
15896 #: ../src/guestfs-actions.pod:5768
15897 msgid "guestfs_readdir"
15898 msgstr ""
15899
15900 #. type: verbatim
15901 #: ../src/guestfs-actions.pod:5770
15902 #, no-wrap
15903 msgid ""
15904 " struct guestfs_dirent_list *\n"
15905 " guestfs_readdir (guestfs_h *g,\n"
15906 "                  const char *dir);\n"
15907 "\n"
15908 msgstr ""
15909
15910 #. type: textblock
15911 #: ../src/guestfs-actions.pod:5774 ../fish/guestfish-actions.pod:3814
15912 msgid "This returns the list of directory entries in directory C<dir>."
15913 msgstr ""
15914
15915 #. type: textblock
15916 #: ../src/guestfs-actions.pod:5776 ../fish/guestfish-actions.pod:3816
15917 msgid ""
15918 "All entries in the directory are returned, including C<.> and C<..>.  The "
15919 "entries are I<not> sorted, but returned in the same order as the underlying "
15920 "filesystem."
15921 msgstr ""
15922
15923 #. type: textblock
15924 #: ../src/guestfs-actions.pod:5780 ../fish/guestfish-actions.pod:3820
15925 msgid ""
15926 "Also this call returns basic file type information about each file.  The "
15927 "C<ftyp> field will contain one of the following characters:"
15928 msgstr ""
15929
15930 #. type: =item
15931 #: ../src/guestfs-actions.pod:5785 ../fish/guestfish-actions.pod:3825
15932 msgid "'b'"
15933 msgstr ""
15934
15935 #. type: textblock
15936 #: ../src/guestfs-actions.pod:5787 ../fish/guestfish-actions.pod:3827
15937 msgid "Block special"
15938 msgstr ""
15939
15940 #. type: =item
15941 #: ../src/guestfs-actions.pod:5789 ../fish/guestfish-actions.pod:3829
15942 msgid "'c'"
15943 msgstr ""
15944
15945 #. type: textblock
15946 #: ../src/guestfs-actions.pod:5791 ../fish/guestfish-actions.pod:3831
15947 msgid "Char special"
15948 msgstr ""
15949
15950 #. type: =item
15951 #: ../src/guestfs-actions.pod:5793 ../fish/guestfish-actions.pod:3833
15952 msgid "'d'"
15953 msgstr ""
15954
15955 #. type: textblock
15956 #: ../src/guestfs-actions.pod:5795 ../fish/guestfish-actions.pod:3835
15957 msgid "Directory"
15958 msgstr ""
15959
15960 #. type: =item
15961 #: ../src/guestfs-actions.pod:5797 ../fish/guestfish-actions.pod:3837
15962 msgid "'f'"
15963 msgstr ""
15964
15965 #. type: textblock
15966 #: ../src/guestfs-actions.pod:5799 ../fish/guestfish-actions.pod:3839
15967 msgid "FIFO (named pipe)"
15968 msgstr ""
15969
15970 #. type: =item
15971 #: ../src/guestfs-actions.pod:5801 ../fish/guestfish-actions.pod:3841
15972 msgid "'l'"
15973 msgstr ""
15974
15975 #. type: textblock
15976 #: ../src/guestfs-actions.pod:5803 ../fish/guestfish-actions.pod:3843
15977 msgid "Symbolic link"
15978 msgstr ""
15979
15980 #. type: =item
15981 #: ../src/guestfs-actions.pod:5805 ../fish/guestfish-actions.pod:3845
15982 msgid "'r'"
15983 msgstr ""
15984
15985 #. type: textblock
15986 #: ../src/guestfs-actions.pod:5807 ../fish/guestfish-actions.pod:3847
15987 msgid "Regular file"
15988 msgstr ""
15989
15990 #. type: =item
15991 #: ../src/guestfs-actions.pod:5809 ../fish/guestfish-actions.pod:3849
15992 msgid "'s'"
15993 msgstr ""
15994
15995 #. type: textblock
15996 #: ../src/guestfs-actions.pod:5811 ../fish/guestfish-actions.pod:3851
15997 msgid "Socket"
15998 msgstr ""
15999
16000 #. type: =item
16001 #: ../src/guestfs-actions.pod:5813 ../fish/guestfish-actions.pod:3853
16002 msgid "'u'"
16003 msgstr ""
16004
16005 #. type: textblock
16006 #: ../src/guestfs-actions.pod:5815 ../fish/guestfish-actions.pod:3855
16007 msgid "Unknown file type"
16008 msgstr ""
16009
16010 #. type: =item
16011 #: ../src/guestfs-actions.pod:5817 ../fish/guestfish-actions.pod:3857
16012 msgid "'?'"
16013 msgstr ""
16014
16015 #. type: textblock
16016 #: ../src/guestfs-actions.pod:5819 ../fish/guestfish-actions.pod:3859
16017 msgid ""
16018 "The L<readdir(3)> call returned a C<d_type> field with an unexpected value"
16019 msgstr ""
16020
16021 #. type: textblock
16022 #: ../src/guestfs-actions.pod:5824
16023 msgid ""
16024 "This function is primarily intended for use by programs.  To get a simple "
16025 "list of names, use C<guestfs_ls>.  To get a printable directory for human "
16026 "consumption, use C<guestfs_ll>."
16027 msgstr ""
16028
16029 #. type: textblock
16030 #: ../src/guestfs-actions.pod:5828
16031 msgid ""
16032 "This function returns a C<struct guestfs_dirent_list *>, or NULL if there "
16033 "was an error.  I<The caller must call C<guestfs_free_dirent_list> after use>."
16034 msgstr ""
16035
16036 #. type: =head2
16037 #: ../src/guestfs-actions.pod:5834
16038 msgid "guestfs_readlink"
16039 msgstr ""
16040
16041 #. type: verbatim
16042 #: ../src/guestfs-actions.pod:5836
16043 #, no-wrap
16044 msgid ""
16045 " char *\n"
16046 " guestfs_readlink (guestfs_h *g,\n"
16047 "                   const char *path);\n"
16048 "\n"
16049 msgstr ""
16050
16051 #. type: textblock
16052 #: ../src/guestfs-actions.pod:5840 ../fish/guestfish-actions.pod:3872
16053 msgid "This command reads the target of a symbolic link."
16054 msgstr ""
16055
16056 #. type: =head2
16057 #: ../src/guestfs-actions.pod:5847
16058 msgid "guestfs_readlinklist"
16059 msgstr ""
16060
16061 #. type: verbatim
16062 #: ../src/guestfs-actions.pod:5849
16063 #, no-wrap
16064 msgid ""
16065 " char **\n"
16066 " guestfs_readlinklist (guestfs_h *g,\n"
16067 "                       const char *path,\n"
16068 "                       char *const *names);\n"
16069 "\n"
16070 msgstr ""
16071
16072 #. type: textblock
16073 #: ../src/guestfs-actions.pod:5854 ../fish/guestfish-actions.pod:3878
16074 msgid ""
16075 "This call allows you to do a C<readlink> operation on multiple files, where "
16076 "all files are in the directory C<path>.  C<names> is the list of files from "
16077 "this directory."
16078 msgstr ""
16079
16080 #. type: textblock
16081 #: ../src/guestfs-actions.pod:5858 ../fish/guestfish-actions.pod:3882
16082 msgid ""
16083 "On return you get a list of strings, with a one-to-one correspondence to the "
16084 "C<names> list.  Each string is the value of the symbolic link."
16085 msgstr ""
16086
16087 #. type: textblock
16088 #: ../src/guestfs-actions.pod:5862 ../fish/guestfish-actions.pod:3886
16089 msgid ""
16090 "If the C<readlink(2)> operation fails on any name, then the corresponding "
16091 "result string is the empty string C<\"\">.  However the whole operation is "
16092 "completed even if there were C<readlink(2)> errors, and so you can call this "
16093 "function with names where you don't know if they are symbolic links already "
16094 "(albeit slightly less efficient)."
16095 msgstr ""
16096
16097 #. type: textblock
16098 #: ../src/guestfs-actions.pod:5869 ../fish/guestfish-actions.pod:3893
16099 msgid ""
16100 "This call is intended for programs that want to efficiently list a directory "
16101 "contents without making many round-trips.  Very long directory listings "
16102 "might cause the protocol message size to be exceeded, causing this call to "
16103 "fail.  The caller must split up such requests into smaller groups of names."
16104 msgstr ""
16105
16106 #. type: =head2
16107 #: ../src/guestfs-actions.pod:5882
16108 msgid "guestfs_realpath"
16109 msgstr ""
16110
16111 #. type: verbatim
16112 #: ../src/guestfs-actions.pod:5884
16113 #, no-wrap
16114 msgid ""
16115 " char *\n"
16116 " guestfs_realpath (guestfs_h *g,\n"
16117 "                   const char *path);\n"
16118 "\n"
16119 msgstr ""
16120
16121 #. type: textblock
16122 #: ../src/guestfs-actions.pod:5888 ../fish/guestfish-actions.pod:3904
16123 msgid ""
16124 "Return the canonicalized absolute pathname of C<path>.  The returned path "
16125 "has no C<.>, C<..> or symbolic link path elements."
16126 msgstr ""
16127
16128 #. type: =head2
16129 #: ../src/guestfs-actions.pod:5896
16130 msgid "guestfs_removexattr"
16131 msgstr ""
16132
16133 #. type: verbatim
16134 #: ../src/guestfs-actions.pod:5898
16135 #, no-wrap
16136 msgid ""
16137 " int\n"
16138 " guestfs_removexattr (guestfs_h *g,\n"
16139 "                      const char *xattr,\n"
16140 "                      const char *path);\n"
16141 "\n"
16142 msgstr ""
16143
16144 #. type: textblock
16145 #: ../src/guestfs-actions.pod:5903 ../fish/guestfish-actions.pod:3911
16146 msgid ""
16147 "This call removes the extended attribute named C<xattr> of the file C<path>."
16148 msgstr ""
16149
16150 #. type: textblock
16151 #: ../src/guestfs-actions.pod:5906
16152 msgid "See also: C<guestfs_lremovexattr>, L<attr(5)>."
16153 msgstr ""
16154
16155 #. type: =head2
16156 #: ../src/guestfs-actions.pod:5912
16157 msgid "guestfs_resize2fs"
16158 msgstr ""
16159
16160 #. type: verbatim
16161 #: ../src/guestfs-actions.pod:5914
16162 #, no-wrap
16163 msgid ""
16164 " int\n"
16165 " guestfs_resize2fs (guestfs_h *g,\n"
16166 "                    const char *device);\n"
16167 "\n"
16168 msgstr ""
16169
16170 #. type: textblock
16171 #: ../src/guestfs-actions.pod:5918 ../fish/guestfish-actions.pod:3920
16172 msgid ""
16173 "This resizes an ext2, ext3 or ext4 filesystem to match the size of the "
16174 "underlying device."
16175 msgstr ""
16176
16177 #. type: textblock
16178 #: ../src/guestfs-actions.pod:5921
16179 msgid ""
16180 "I<Note:> It is sometimes required that you run C<guestfs_e2fsck_f> on the "
16181 "C<device> before calling this command.  For unknown reasons C<resize2fs> "
16182 "sometimes gives an error about this and sometimes not.  In any case, it is "
16183 "always safe to call C<guestfs_e2fsck_f> before calling this function."
16184 msgstr ""
16185
16186 #. type: =head2
16187 #: ../src/guestfs-actions.pod:5931
16188 msgid "guestfs_resize2fs_M"
16189 msgstr ""
16190
16191 #. type: verbatim
16192 #: ../src/guestfs-actions.pod:5933
16193 #, no-wrap
16194 msgid ""
16195 " int\n"
16196 " guestfs_resize2fs_M (guestfs_h *g,\n"
16197 "                      const char *device);\n"
16198 "\n"
16199 msgstr ""
16200
16201 #. type: textblock
16202 #: ../src/guestfs-actions.pod:5937
16203 msgid ""
16204 "This command is the same as C<guestfs_resize2fs>, but the filesystem is "
16205 "resized to its minimum size.  This works like the I<-M> option to the "
16206 "C<resize2fs> command."
16207 msgstr ""
16208
16209 #. type: textblock
16210 #: ../src/guestfs-actions.pod:5941
16211 msgid ""
16212 "To get the resulting size of the filesystem you should call "
16213 "C<guestfs_tune2fs_l> and read the C<Block size> and C<Block count> values.  "
16214 "These two numbers, multiplied together, give the resulting size of the "
16215 "minimal filesystem in bytes."
16216 msgstr ""
16217
16218 #. type: =head2
16219 #: ../src/guestfs-actions.pod:5950
16220 msgid "guestfs_resize2fs_size"
16221 msgstr ""
16222
16223 #. type: verbatim
16224 #: ../src/guestfs-actions.pod:5952
16225 #, no-wrap
16226 msgid ""
16227 " int\n"
16228 " guestfs_resize2fs_size (guestfs_h *g,\n"
16229 "                         const char *device,\n"
16230 "                         int64_t size);\n"
16231 "\n"
16232 msgstr ""
16233
16234 #. type: textblock
16235 #: ../src/guestfs-actions.pod:5957
16236 msgid ""
16237 "This command is the same as C<guestfs_resize2fs> except that it allows you "
16238 "to specify the new size (in bytes) explicitly."
16239 msgstr ""
16240
16241 #. type: =head2
16242 #: ../src/guestfs-actions.pod:5964
16243 msgid "guestfs_rm"
16244 msgstr ""
16245
16246 #. type: verbatim
16247 #: ../src/guestfs-actions.pod:5966
16248 #, no-wrap
16249 msgid ""
16250 " int\n"
16251 " guestfs_rm (guestfs_h *g,\n"
16252 "             const char *path);\n"
16253 "\n"
16254 msgstr ""
16255
16256 #. type: textblock
16257 #: ../src/guestfs-actions.pod:5970 ../fish/guestfish-actions.pod:3953
16258 msgid "Remove the single file C<path>."
16259 msgstr ""
16260
16261 #. type: =head2
16262 #: ../src/guestfs-actions.pod:5976
16263 msgid "guestfs_rm_rf"
16264 msgstr ""
16265
16266 #. type: verbatim
16267 #: ../src/guestfs-actions.pod:5978
16268 #, no-wrap
16269 msgid ""
16270 " int\n"
16271 " guestfs_rm_rf (guestfs_h *g,\n"
16272 "                const char *path);\n"
16273 "\n"
16274 msgstr ""
16275
16276 #. type: textblock
16277 #: ../src/guestfs-actions.pod:5982 ../fish/guestfish-actions.pod:3959
16278 msgid ""
16279 "Remove the file or directory C<path>, recursively removing the contents if "
16280 "its a directory.  This is like the C<rm -rf> shell command."
16281 msgstr ""
16282
16283 #. type: =head2
16284 #: ../src/guestfs-actions.pod:5990
16285 msgid "guestfs_rmdir"
16286 msgstr ""
16287
16288 #. type: verbatim
16289 #: ../src/guestfs-actions.pod:5992
16290 #, no-wrap
16291 msgid ""
16292 " int\n"
16293 " guestfs_rmdir (guestfs_h *g,\n"
16294 "                const char *path);\n"
16295 "\n"
16296 msgstr ""
16297
16298 #. type: textblock
16299 #: ../src/guestfs-actions.pod:5996 ../fish/guestfish-actions.pod:3967
16300 msgid "Remove the single directory C<path>."
16301 msgstr ""
16302
16303 #. type: =head2
16304 #: ../src/guestfs-actions.pod:6002
16305 msgid "guestfs_rmmountpoint"
16306 msgstr ""
16307
16308 #. type: verbatim
16309 #: ../src/guestfs-actions.pod:6004
16310 #, no-wrap
16311 msgid ""
16312 " int\n"
16313 " guestfs_rmmountpoint (guestfs_h *g,\n"
16314 "                       const char *exemptpath);\n"
16315 "\n"
16316 msgstr ""
16317
16318 #. type: textblock
16319 #: ../src/guestfs-actions.pod:6008
16320 msgid ""
16321 "This calls removes a mountpoint that was previously created with "
16322 "C<guestfs_mkmountpoint>.  See C<guestfs_mkmountpoint> for full details."
16323 msgstr ""
16324
16325 #. type: =head2
16326 #: ../src/guestfs-actions.pod:6016
16327 msgid "guestfs_scrub_device"
16328 msgstr ""
16329
16330 #. type: verbatim
16331 #: ../src/guestfs-actions.pod:6018
16332 #, no-wrap
16333 msgid ""
16334 " int\n"
16335 " guestfs_scrub_device (guestfs_h *g,\n"
16336 "                       const char *device);\n"
16337 "\n"
16338 msgstr ""
16339
16340 #. type: textblock
16341 #: ../src/guestfs-actions.pod:6022 ../fish/guestfish-actions.pod:3981
16342 msgid ""
16343 "This command writes patterns over C<device> to make data retrieval more "
16344 "difficult."
16345 msgstr ""
16346
16347 #. type: textblock
16348 #: ../src/guestfs-actions.pod:6025 ../src/guestfs-actions.pod:6046
16349 #: ../src/guestfs-actions.pod:6065 ../fish/guestfish-actions.pod:3984
16350 #: ../fish/guestfish-actions.pod:3999 ../fish/guestfish-actions.pod:4012
16351 msgid ""
16352 "It is an interface to the L<scrub(1)> program.  See that manual page for "
16353 "more details."
16354 msgstr ""
16355
16356 #. type: textblock
16357 #: ../src/guestfs-actions.pod:6033 ../src/guestfs-actions.pod:6051
16358 #: ../src/guestfs-actions.pod:6070
16359 msgid "(Added in 1.0.52)"
16360 msgstr ""
16361
16362 #. type: =head2
16363 #: ../src/guestfs-actions.pod:6035
16364 msgid "guestfs_scrub_file"
16365 msgstr ""
16366
16367 #. type: verbatim
16368 #: ../src/guestfs-actions.pod:6037
16369 #, no-wrap
16370 msgid ""
16371 " int\n"
16372 " guestfs_scrub_file (guestfs_h *g,\n"
16373 "                     const char *file);\n"
16374 "\n"
16375 msgstr ""
16376
16377 #. type: textblock
16378 #: ../src/guestfs-actions.pod:6041 ../fish/guestfish-actions.pod:3994
16379 msgid ""
16380 "This command writes patterns over a file to make data retrieval more "
16381 "difficult."
16382 msgstr ""
16383
16384 #. type: textblock
16385 #: ../src/guestfs-actions.pod:6044 ../fish/guestfish-actions.pod:3997
16386 msgid "The file is I<removed> after scrubbing."
16387 msgstr ""
16388
16389 #. type: =head2
16390 #: ../src/guestfs-actions.pod:6053
16391 msgid "guestfs_scrub_freespace"
16392 msgstr ""
16393
16394 #. type: verbatim
16395 #: ../src/guestfs-actions.pod:6055
16396 #, no-wrap
16397 msgid ""
16398 " int\n"
16399 " guestfs_scrub_freespace (guestfs_h *g,\n"
16400 "                          const char *dir);\n"
16401 "\n"
16402 msgstr ""
16403
16404 #. type: textblock
16405 #: ../src/guestfs-actions.pod:6059
16406 msgid ""
16407 "This command creates the directory C<dir> and then fills it with files until "
16408 "the filesystem is full, and scrubs the files as for C<guestfs_scrub_file>, "
16409 "and deletes them.  The intention is to scrub any free space on the partition "
16410 "containing C<dir>."
16411 msgstr ""
16412
16413 #. type: =head2
16414 #: ../src/guestfs-actions.pod:6072
16415 msgid "guestfs_set_append"
16416 msgstr ""
16417
16418 #. type: verbatim
16419 #: ../src/guestfs-actions.pod:6074
16420 #, no-wrap
16421 msgid ""
16422 " int\n"
16423 " guestfs_set_append (guestfs_h *g,\n"
16424 "                     const char *append);\n"
16425 "\n"
16426 msgstr ""
16427
16428 #. type: textblock
16429 #: ../src/guestfs-actions.pod:6078 ../fish/guestfish-actions.pod:4021
16430 msgid ""
16431 "This function is used to add additional options to the guest kernel command "
16432 "line."
16433 msgstr ""
16434
16435 #. type: textblock
16436 #: ../src/guestfs-actions.pod:6081 ../fish/guestfish-actions.pod:4024
16437 msgid ""
16438 "The default is C<NULL> unless overridden by setting C<LIBGUESTFS_APPEND> "
16439 "environment variable."
16440 msgstr ""
16441
16442 #. type: textblock
16443 #: ../src/guestfs-actions.pod:6084 ../fish/guestfish-actions.pod:4027
16444 msgid ""
16445 "Setting C<append> to C<NULL> means I<no> additional options are passed "
16446 "(libguestfs always adds a few of its own)."
16447 msgstr ""
16448
16449 #. type: =head2
16450 #: ../src/guestfs-actions.pod:6091
16451 msgid "guestfs_set_attach_method"
16452 msgstr ""
16453
16454 #. type: verbatim
16455 #: ../src/guestfs-actions.pod:6093
16456 #, no-wrap
16457 msgid ""
16458 " int\n"
16459 " guestfs_set_attach_method (guestfs_h *g,\n"
16460 "                            const char *attachmethod);\n"
16461 "\n"
16462 msgstr ""
16463
16464 #. type: textblock
16465 #: ../src/guestfs-actions.pod:6097 ../fish/guestfish-actions.pod:4036
16466 msgid ""
16467 "Set the method that libguestfs uses to connect to the back end guestfsd "
16468 "daemon.  Possible methods are:"
16469 msgstr ""
16470
16471 #. type: textblock
16472 #: ../src/guestfs-actions.pod:6104 ../fish/guestfish-actions.pod:4043
16473 msgid ""
16474 "Launch an appliance and connect to it.  This is the ordinary method and the "
16475 "default."
16476 msgstr ""
16477
16478 #. type: =item
16479 #: ../src/guestfs-actions.pod:6107 ../fish/guestfish-actions.pod:4046
16480 msgid "C<unix:I<path>>"
16481 msgstr ""
16482
16483 #. type: textblock
16484 #: ../src/guestfs-actions.pod:6109 ../fish/guestfish-actions.pod:4048
16485 msgid "Connect to the Unix domain socket I<path>."
16486 msgstr ""
16487
16488 #. type: textblock
16489 #: ../src/guestfs-actions.pod:6111 ../fish/guestfish-actions.pod:4050
16490 msgid ""
16491 "This method lets you connect to an existing daemon or (using virtio-serial) "
16492 "to a live guest.  For more information, see L<guestfs(3)/ATTACHING TO "
16493 "RUNNING DAEMONS>."
16494 msgstr ""
16495
16496 #. type: =head2
16497 #: ../src/guestfs-actions.pod:6121
16498 msgid "guestfs_set_autosync"
16499 msgstr ""
16500
16501 #. type: verbatim
16502 #: ../src/guestfs-actions.pod:6123
16503 #, no-wrap
16504 msgid ""
16505 " int\n"
16506 " guestfs_set_autosync (guestfs_h *g,\n"
16507 "                       int autosync);\n"
16508 "\n"
16509 msgstr ""
16510
16511 #. type: textblock
16512 #: ../src/guestfs-actions.pod:6127 ../fish/guestfish-actions.pod:4062
16513 msgid ""
16514 "If C<autosync> is true, this enables autosync.  Libguestfs will make a best "
16515 "effort attempt to make filesystems consistent and synchronized when the "
16516 "handle is closed (also if the program exits without closing handles)."
16517 msgstr ""
16518
16519 #. type: textblock
16520 #: ../src/guestfs-actions.pod:6132 ../fish/guestfish-actions.pod:4067
16521 msgid ""
16522 "This is enabled by default (since libguestfs 1.5.24, previously it was "
16523 "disabled by default)."
16524 msgstr ""
16525
16526 #. type: =head2
16527 #: ../src/guestfs-actions.pod:6139
16528 msgid "guestfs_set_direct"
16529 msgstr ""
16530
16531 #. type: verbatim
16532 #: ../src/guestfs-actions.pod:6141
16533 #, no-wrap
16534 msgid ""
16535 " int\n"
16536 " guestfs_set_direct (guestfs_h *g,\n"
16537 "                     int direct);\n"
16538 "\n"
16539 msgstr ""
16540
16541 #. type: textblock
16542 #: ../src/guestfs-actions.pod:6145 ../fish/guestfish-actions.pod:4076
16543 msgid ""
16544 "If the direct appliance mode flag is enabled, then stdin and stdout are "
16545 "passed directly through to the appliance once it is launched."
16546 msgstr ""
16547
16548 #. type: textblock
16549 #: ../src/guestfs-actions.pod:6149
16550 msgid ""
16551 "One consequence of this is that log messages aren't caught by the library "
16552 "and handled by C<guestfs_set_log_message_callback>, but go straight to "
16553 "stdout."
16554 msgstr ""
16555
16556 #. type: textblock
16557 #: ../src/guestfs-actions.pod:6153 ../fish/guestfish-actions.pod:4084
16558 msgid "You probably don't want to use this unless you know what you are doing."
16559 msgstr ""
16560
16561 #. type: textblock
16562 #: ../src/guestfs-actions.pod:6156 ../fish/guestfish-actions.pod:4087
16563 msgid "The default is disabled."
16564 msgstr ""
16565
16566 #. type: =head2
16567 #: ../src/guestfs-actions.pod:6162
16568 msgid "guestfs_set_e2label"
16569 msgstr ""
16570
16571 #. type: verbatim
16572 #: ../src/guestfs-actions.pod:6164
16573 #, no-wrap
16574 msgid ""
16575 " int\n"
16576 " guestfs_set_e2label (guestfs_h *g,\n"
16577 "                      const char *device,\n"
16578 "                      const char *label);\n"
16579 "\n"
16580 msgstr ""
16581
16582 #. type: textblock
16583 #: ../src/guestfs-actions.pod:6169 ../fish/guestfish-actions.pod:4093
16584 msgid ""
16585 "This sets the ext2/3/4 filesystem label of the filesystem on C<device> to "
16586 "C<label>.  Filesystem labels are limited to 16 characters."
16587 msgstr ""
16588
16589 #. type: textblock
16590 #: ../src/guestfs-actions.pod:6173
16591 msgid ""
16592 "You can use either C<guestfs_tune2fs_l> or C<guestfs_get_e2label> to return "
16593 "the existing label on a filesystem."
16594 msgstr ""
16595
16596 #. type: =head2
16597 #: ../src/guestfs-actions.pod:6180
16598 msgid "guestfs_set_e2uuid"
16599 msgstr ""
16600
16601 #. type: verbatim
16602 #: ../src/guestfs-actions.pod:6182
16603 #, no-wrap
16604 msgid ""
16605 " int\n"
16606 " guestfs_set_e2uuid (guestfs_h *g,\n"
16607 "                     const char *device,\n"
16608 "                     const char *uuid);\n"
16609 "\n"
16610 msgstr ""
16611
16612 #. type: textblock
16613 #: ../src/guestfs-actions.pod:6187 ../fish/guestfish-actions.pod:4104
16614 msgid ""
16615 "This sets the ext2/3/4 filesystem UUID of the filesystem on C<device> to "
16616 "C<uuid>.  The format of the UUID and alternatives such as C<clear>, "
16617 "C<random> and C<time> are described in the L<tune2fs(8)> manpage."
16618 msgstr ""
16619
16620 #. type: textblock
16621 #: ../src/guestfs-actions.pod:6192
16622 msgid ""
16623 "You can use either C<guestfs_tune2fs_l> or C<guestfs_get_e2uuid> to return "
16624 "the existing UUID of a filesystem."
16625 msgstr ""
16626
16627 #. type: =head2
16628 #: ../src/guestfs-actions.pod:6199
16629 msgid "guestfs_set_memsize"
16630 msgstr ""
16631
16632 #. type: verbatim
16633 #: ../src/guestfs-actions.pod:6201
16634 #, no-wrap
16635 msgid ""
16636 " int\n"
16637 " guestfs_set_memsize (guestfs_h *g,\n"
16638 "                      int memsize);\n"
16639 "\n"
16640 msgstr ""
16641
16642 #. type: textblock
16643 #: ../src/guestfs-actions.pod:6205
16644 msgid ""
16645 "This sets the memory size in megabytes allocated to the qemu subprocess.  "
16646 "This only has any effect if called before C<guestfs_launch>."
16647 msgstr ""
16648
16649 #. type: textblock
16650 #: ../src/guestfs-actions.pod:6209 ../fish/guestfish-actions.pod:4122
16651 msgid ""
16652 "You can also change this by setting the environment variable "
16653 "C<LIBGUESTFS_MEMSIZE> before the handle is created."
16654 msgstr ""
16655
16656 #. type: =head2
16657 #: ../src/guestfs-actions.pod:6220
16658 msgid "guestfs_set_network"
16659 msgstr ""
16660
16661 #. type: verbatim
16662 #: ../src/guestfs-actions.pod:6222
16663 #, no-wrap
16664 msgid ""
16665 " int\n"
16666 " guestfs_set_network (guestfs_h *g,\n"
16667 "                      int network);\n"
16668 "\n"
16669 msgstr ""
16670
16671 #. type: textblock
16672 #: ../src/guestfs-actions.pod:6226 ../fish/guestfish-actions.pod:4135
16673 msgid ""
16674 "If C<network> is true, then the network is enabled in the libguestfs "
16675 "appliance.  The default is false."
16676 msgstr ""
16677
16678 #. type: textblock
16679 #: ../src/guestfs-actions.pod:6229 ../fish/guestfish-actions.pod:4138
16680 msgid ""
16681 "This affects whether commands are able to access the network (see L<guestfs"
16682 "(3)/RUNNING COMMANDS>)."
16683 msgstr ""
16684
16685 #. type: textblock
16686 #: ../src/guestfs-actions.pod:6232
16687 msgid ""
16688 "You must call this before calling C<guestfs_launch>, otherwise it has no "
16689 "effect."
16690 msgstr ""
16691
16692 #. type: =head2
16693 #: ../src/guestfs-actions.pod:6239
16694 msgid "guestfs_set_path"
16695 msgstr ""
16696
16697 #. type: verbatim
16698 #: ../src/guestfs-actions.pod:6241
16699 #, no-wrap
16700 msgid ""
16701 " int\n"
16702 " guestfs_set_path (guestfs_h *g,\n"
16703 "                   const char *searchpath);\n"
16704 "\n"
16705 msgstr ""
16706
16707 #. type: textblock
16708 #: ../src/guestfs-actions.pod:6245 ../fish/guestfish-actions.pod:4150
16709 msgid "Set the path that libguestfs searches for kernel and initrd.img."
16710 msgstr ""
16711
16712 #. type: textblock
16713 #: ../src/guestfs-actions.pod:6247 ../fish/guestfish-actions.pod:4152
16714 msgid ""
16715 "The default is C<$libdir/guestfs> unless overridden by setting "
16716 "C<LIBGUESTFS_PATH> environment variable."
16717 msgstr ""
16718
16719 #. type: textblock
16720 #: ../src/guestfs-actions.pod:6250 ../fish/guestfish-actions.pod:4155
16721 msgid "Setting C<path> to C<NULL> restores the default path."
16722 msgstr ""
16723
16724 #. type: =head2
16725 #: ../src/guestfs-actions.pod:6256
16726 msgid "guestfs_set_qemu"
16727 msgstr ""
16728
16729 #. type: verbatim
16730 #: ../src/guestfs-actions.pod:6258
16731 #, no-wrap
16732 msgid ""
16733 " int\n"
16734 " guestfs_set_qemu (guestfs_h *g,\n"
16735 "                   const char *qemu);\n"
16736 "\n"
16737 msgstr ""
16738
16739 #. type: textblock
16740 #: ../src/guestfs-actions.pod:6262 ../fish/guestfish-actions.pod:4163
16741 msgid "Set the qemu binary that we will use."
16742 msgstr ""
16743
16744 #. type: textblock
16745 #: ../src/guestfs-actions.pod:6264 ../fish/guestfish-actions.pod:4165
16746 msgid ""
16747 "The default is chosen when the library was compiled by the configure script."
16748 msgstr ""
16749
16750 #. type: textblock
16751 #: ../src/guestfs-actions.pod:6267 ../fish/guestfish-actions.pod:4168
16752 msgid ""
16753 "You can also override this by setting the C<LIBGUESTFS_QEMU> environment "
16754 "variable."
16755 msgstr ""
16756
16757 #. type: textblock
16758 #: ../src/guestfs-actions.pod:6270 ../fish/guestfish-actions.pod:4171
16759 msgid "Setting C<qemu> to C<NULL> restores the default qemu binary."
16760 msgstr ""
16761
16762 #. type: textblock
16763 #: ../src/guestfs-actions.pod:6272 ../fish/guestfish-actions.pod:4173
16764 msgid ""
16765 "Note that you should call this function as early as possible after creating "
16766 "the handle.  This is because some pre-launch operations depend on testing "
16767 "qemu features (by running C<qemu -help>).  If the qemu binary changes, we "
16768 "don't retest features, and so you might see inconsistent results.  Using the "
16769 "environment variable C<LIBGUESTFS_QEMU> is safest of all since that picks "
16770 "the qemu binary at the same time as the handle is created."
16771 msgstr ""
16772
16773 #. type: =head2
16774 #: ../src/guestfs-actions.pod:6284
16775 msgid "guestfs_set_recovery_proc"
16776 msgstr ""
16777
16778 #. type: verbatim
16779 #: ../src/guestfs-actions.pod:6286
16780 #, no-wrap
16781 msgid ""
16782 " int\n"
16783 " guestfs_set_recovery_proc (guestfs_h *g,\n"
16784 "                            int recoveryproc);\n"
16785 "\n"
16786 msgstr ""
16787
16788 #. type: textblock
16789 #: ../src/guestfs-actions.pod:6290
16790 msgid ""
16791 "If this is called with the parameter C<false> then C<guestfs_launch> does "
16792 "not create a recovery process.  The purpose of the recovery process is to "
16793 "stop runaway qemu processes in the case where the main program aborts "
16794 "abruptly."
16795 msgstr ""
16796
16797 #. type: textblock
16798 #: ../src/guestfs-actions.pod:6295
16799 msgid ""
16800 "This only has any effect if called before C<guestfs_launch>, and the default "
16801 "is true."
16802 msgstr ""
16803
16804 #. type: textblock
16805 #: ../src/guestfs-actions.pod:6298 ../fish/guestfish-actions.pod:4195
16806 msgid ""
16807 "About the only time when you would want to disable this is if the main "
16808 "process will fork itself into the background (\"daemonize\" itself).  In "
16809 "this case the recovery process thinks that the main program has disappeared "
16810 "and so kills qemu, which is not very helpful."
16811 msgstr ""
16812
16813 #. type: =head2
16814 #: ../src/guestfs-actions.pod:6308
16815 msgid "guestfs_set_selinux"
16816 msgstr ""
16817
16818 #. type: verbatim
16819 #: ../src/guestfs-actions.pod:6310
16820 #, no-wrap
16821 msgid ""
16822 " int\n"
16823 " guestfs_set_selinux (guestfs_h *g,\n"
16824 "                      int selinux);\n"
16825 "\n"
16826 msgstr ""
16827
16828 #. type: textblock
16829 #: ../src/guestfs-actions.pod:6314 ../fish/guestfish-actions.pod:4207
16830 msgid ""
16831 "This sets the selinux flag that is passed to the appliance at boot time.  "
16832 "The default is C<selinux=0> (disabled)."
16833 msgstr ""
16834
16835 #. type: textblock
16836 #: ../src/guestfs-actions.pod:6317 ../fish/guestfish-actions.pod:4210
16837 msgid ""
16838 "Note that if SELinux is enabled, it is always in Permissive mode "
16839 "(C<enforcing=0>)."
16840 msgstr ""
16841
16842 #. type: =head2
16843 #: ../src/guestfs-actions.pod:6327
16844 msgid "guestfs_set_trace"
16845 msgstr ""
16846
16847 #. type: verbatim
16848 #: ../src/guestfs-actions.pod:6329
16849 #, no-wrap
16850 msgid ""
16851 " int\n"
16852 " guestfs_set_trace (guestfs_h *g,\n"
16853 "                    int trace);\n"
16854 "\n"
16855 msgstr ""
16856
16857 #. type: textblock
16858 #: ../src/guestfs-actions.pod:6333 ../fish/guestfish-actions.pod:4222
16859 msgid ""
16860 "If the command trace flag is set to 1, then libguestfs calls, parameters and "
16861 "return values are traced."
16862 msgstr ""
16863
16864 #. type: textblock
16865 #: ../src/guestfs-actions.pod:6336 ../fish/guestfish-actions.pod:4225
16866 msgid ""
16867 "If you want to trace C API calls into libguestfs (and other libraries) then "
16868 "possibly a better way is to use the external ltrace(1) command."
16869 msgstr ""
16870
16871 #. type: textblock
16872 #: ../src/guestfs-actions.pod:6340 ../fish/guestfish-actions.pod:4229
16873 msgid ""
16874 "Command traces are disabled unless the environment variable "
16875 "C<LIBGUESTFS_TRACE> is defined and set to C<1>."
16876 msgstr ""
16877
16878 #. type: textblock
16879 #: ../src/guestfs-actions.pod:6343
16880 msgid ""
16881 "Trace messages are normally sent to C<stderr>, unless you register a "
16882 "callback to send them somewhere else (see C<guestfs_set_event_callback>)."
16883 msgstr ""
16884
16885 #. type: =head2
16886 #: ../src/guestfs-actions.pod:6351
16887 msgid "guestfs_set_verbose"
16888 msgstr ""
16889
16890 #. type: verbatim
16891 #: ../src/guestfs-actions.pod:6353
16892 #, no-wrap
16893 msgid ""
16894 " int\n"
16895 " guestfs_set_verbose (guestfs_h *g,\n"
16896 "                      int verbose);\n"
16897 "\n"
16898 msgstr ""
16899
16900 #. type: textblock
16901 #: ../src/guestfs-actions.pod:6357 ../fish/guestfish-actions.pod:4242
16902 msgid "If C<verbose> is true, this turns on verbose messages."
16903 msgstr ""
16904
16905 #. type: textblock
16906 #: ../src/guestfs-actions.pod:6359 ../fish/guestfish-actions.pod:4244
16907 msgid ""
16908 "Verbose messages are disabled unless the environment variable "
16909 "C<LIBGUESTFS_DEBUG> is defined and set to C<1>."
16910 msgstr ""
16911
16912 #. type: textblock
16913 #: ../src/guestfs-actions.pod:6362
16914 msgid ""
16915 "Verbose messages are normally sent to C<stderr>, unless you register a "
16916 "callback to send them somewhere else (see C<guestfs_set_event_callback>)."
16917 msgstr ""
16918
16919 #. type: =head2
16920 #: ../src/guestfs-actions.pod:6370
16921 msgid "guestfs_setcon"
16922 msgstr ""
16923
16924 #. type: verbatim
16925 #: ../src/guestfs-actions.pod:6372
16926 #, no-wrap
16927 msgid ""
16928 " int\n"
16929 " guestfs_setcon (guestfs_h *g,\n"
16930 "                 const char *context);\n"
16931 "\n"
16932 msgstr ""
16933
16934 #. type: textblock
16935 #: ../src/guestfs-actions.pod:6376 ../fish/guestfish-actions.pod:4255
16936 msgid ""
16937 "This sets the SELinux security context of the daemon to the string "
16938 "C<context>."
16939 msgstr ""
16940
16941 #. type: textblock
16942 #: ../src/guestfs-actions.pod:6379 ../fish/guestfish-actions.pod:4258
16943 msgid "See the documentation about SELINUX in L<guestfs(3)>."
16944 msgstr ""
16945
16946 #. type: =head2
16947 #: ../src/guestfs-actions.pod:6385
16948 msgid "guestfs_setxattr"
16949 msgstr ""
16950
16951 #. type: verbatim
16952 #: ../src/guestfs-actions.pod:6387
16953 #, no-wrap
16954 msgid ""
16955 " int\n"
16956 " guestfs_setxattr (guestfs_h *g,\n"
16957 "                   const char *xattr,\n"
16958 "                   const char *val,\n"
16959 "                   int vallen,\n"
16960 "                   const char *path);\n"
16961 "\n"
16962 msgstr ""
16963
16964 #. type: textblock
16965 #: ../src/guestfs-actions.pod:6394 ../fish/guestfish-actions.pod:4264
16966 msgid ""
16967 "This call sets the extended attribute named C<xattr> of the file C<path> to "
16968 "the value C<val> (of length C<vallen>).  The value is arbitrary 8 bit data."
16969 msgstr ""
16970
16971 #. type: textblock
16972 #: ../src/guestfs-actions.pod:6398
16973 msgid "See also: C<guestfs_lsetxattr>, L<attr(5)>."
16974 msgstr ""
16975
16976 #. type: =head2
16977 #: ../src/guestfs-actions.pod:6404
16978 msgid "guestfs_sfdisk"
16979 msgstr ""
16980
16981 #. type: verbatim
16982 #: ../src/guestfs-actions.pod:6406
16983 #, no-wrap
16984 msgid ""
16985 " int\n"
16986 " guestfs_sfdisk (guestfs_h *g,\n"
16987 "                 const char *device,\n"
16988 "                 int cyls,\n"
16989 "                 int heads,\n"
16990 "                 int sectors,\n"
16991 "                 char *const *lines);\n"
16992 "\n"
16993 msgstr ""
16994
16995 #. type: textblock
16996 #: ../src/guestfs-actions.pod:6414 ../fish/guestfish-actions.pod:4274
16997 msgid ""
16998 "This is a direct interface to the L<sfdisk(8)> program for creating "
16999 "partitions on block devices."
17000 msgstr ""
17001
17002 #. type: textblock
17003 #: ../src/guestfs-actions.pod:6417 ../fish/guestfish-actions.pod:4277
17004 msgid "C<device> should be a block device, for example C</dev/sda>."
17005 msgstr ""
17006
17007 #. type: textblock
17008 #: ../src/guestfs-actions.pod:6419 ../fish/guestfish-actions.pod:4279
17009 msgid ""
17010 "C<cyls>, C<heads> and C<sectors> are the number of cylinders, heads and "
17011 "sectors on the device, which are passed directly to sfdisk as the I<-C>, I<-"
17012 "H> and I<-S> parameters.  If you pass C<0> for any of these, then the "
17013 "corresponding parameter is omitted.  Usually for 'large' disks, you can just "
17014 "pass C<0> for these, but for small (floppy-sized) disks, sfdisk (or rather, "
17015 "the kernel) cannot work out the right geometry and you will need to tell it."
17016 msgstr ""
17017
17018 #. type: textblock
17019 #: ../src/guestfs-actions.pod:6427 ../fish/guestfish-actions.pod:4287
17020 msgid ""
17021 "C<lines> is a list of lines that we feed to C<sfdisk>.  For more information "
17022 "refer to the L<sfdisk(8)> manpage."
17023 msgstr ""
17024
17025 #. type: textblock
17026 #: ../src/guestfs-actions.pod:6430 ../fish/guestfish-actions.pod:4290
17027 msgid ""
17028 "To create a single partition occupying the whole disk, you would pass "
17029 "C<lines> as a single element list, when the single element being the string "
17030 "C<,> (comma)."
17031 msgstr ""
17032
17033 #. type: textblock
17034 #: ../src/guestfs-actions.pod:6434
17035 msgid ""
17036 "See also: C<guestfs_sfdisk_l>, C<guestfs_sfdisk_N>, C<guestfs_part_init>"
17037 msgstr ""
17038
17039 #. type: textblock
17040 #: ../src/guestfs-actions.pod:6442 ../src/guestfs-actions.pod:6472
17041 #: ../src/guestfs-actions.pod:6505 ../fish/guestfish-actions.pod:4300
17042 #: ../fish/guestfish-actions.pod:4323 ../fish/guestfish-actions.pod:4345
17043 msgid ""
17044 "This function is deprecated.  In new code, use the C<part_add> call instead."
17045 msgstr ""
17046
17047 #. type: =head2
17048 #: ../src/guestfs-actions.pod:6451
17049 msgid "guestfs_sfdiskM"
17050 msgstr ""
17051
17052 #. type: verbatim
17053 #: ../src/guestfs-actions.pod:6453
17054 #, no-wrap
17055 msgid ""
17056 " int\n"
17057 " guestfs_sfdiskM (guestfs_h *g,\n"
17058 "                  const char *device,\n"
17059 "                  char *const *lines);\n"
17060 "\n"
17061 msgstr ""
17062
17063 #. type: textblock
17064 #: ../src/guestfs-actions.pod:6458
17065 msgid ""
17066 "This is a simplified interface to the C<guestfs_sfdisk> command, where "
17067 "partition sizes are specified in megabytes only (rounded to the nearest "
17068 "cylinder) and you don't need to specify the cyls, heads and sectors "
17069 "parameters which were rarely if ever used anyway."
17070 msgstr ""
17071
17072 #. type: textblock
17073 #: ../src/guestfs-actions.pod:6464
17074 msgid ""
17075 "See also: C<guestfs_sfdisk>, the L<sfdisk(8)> manpage and "
17076 "C<guestfs_part_disk>"
17077 msgstr ""
17078
17079 #. type: =head2
17080 #: ../src/guestfs-actions.pod:6481
17081 msgid "guestfs_sfdisk_N"
17082 msgstr ""
17083
17084 #. type: verbatim
17085 #: ../src/guestfs-actions.pod:6483
17086 #, no-wrap
17087 msgid ""
17088 " int\n"
17089 " guestfs_sfdisk_N (guestfs_h *g,\n"
17090 "                   const char *device,\n"
17091 "                   int partnum,\n"
17092 "                   int cyls,\n"
17093 "                   int heads,\n"
17094 "                   int sectors,\n"
17095 "                   const char *line);\n"
17096 "\n"
17097 msgstr ""
17098
17099 #. type: textblock
17100 #: ../src/guestfs-actions.pod:6492 ../fish/guestfish-actions.pod:4334
17101 msgid ""
17102 "This runs L<sfdisk(8)> option to modify just the single partition C<n> "
17103 "(note: C<n> counts from 1)."
17104 msgstr ""
17105
17106 #. type: textblock
17107 #: ../src/guestfs-actions.pod:6495
17108 msgid ""
17109 "For other parameters, see C<guestfs_sfdisk>.  You should usually pass C<0> "
17110 "for the cyls/heads/sectors parameters."
17111 msgstr ""
17112
17113 #. type: textblock
17114 #: ../src/guestfs-actions.pod:6498
17115 msgid "See also: C<guestfs_part_add>"
17116 msgstr ""
17117
17118 #. type: =head2
17119 #: ../src/guestfs-actions.pod:6514
17120 msgid "guestfs_sfdisk_disk_geometry"
17121 msgstr ""
17122
17123 #. type: verbatim
17124 #: ../src/guestfs-actions.pod:6516
17125 #, no-wrap
17126 msgid ""
17127 " char *\n"
17128 " guestfs_sfdisk_disk_geometry (guestfs_h *g,\n"
17129 "                               const char *device);\n"
17130 "\n"
17131 msgstr ""
17132
17133 #. type: textblock
17134 #: ../src/guestfs-actions.pod:6520
17135 msgid ""
17136 "This displays the disk geometry of C<device> read from the partition table.  "
17137 "Especially in the case where the underlying block device has been resized, "
17138 "this can be different from the kernel's idea of the geometry (see "
17139 "C<guestfs_sfdisk_kernel_geometry>)."
17140 msgstr ""
17141
17142 #. type: textblock
17143 #: ../src/guestfs-actions.pod:6525 ../src/guestfs-actions.pod:6541
17144 #: ../fish/guestfish-actions.pod:4361 ../fish/guestfish-actions.pod:4370
17145 msgid "The result is in human-readable format, and not designed to be parsed."
17146 msgstr ""
17147
17148 #. type: =head2
17149 #: ../src/guestfs-actions.pod:6533
17150 msgid "guestfs_sfdisk_kernel_geometry"
17151 msgstr ""
17152
17153 #. type: verbatim
17154 #: ../src/guestfs-actions.pod:6535
17155 #, no-wrap
17156 msgid ""
17157 " char *\n"
17158 " guestfs_sfdisk_kernel_geometry (guestfs_h *g,\n"
17159 "                                 const char *device);\n"
17160 "\n"
17161 msgstr ""
17162
17163 #. type: textblock
17164 #: ../src/guestfs-actions.pod:6539 ../fish/guestfish-actions.pod:4368
17165 msgid "This displays the kernel's idea of the geometry of C<device>."
17166 msgstr ""
17167
17168 #. type: =head2
17169 #: ../src/guestfs-actions.pod:6549
17170 msgid "guestfs_sfdisk_l"
17171 msgstr ""
17172
17173 #. type: verbatim
17174 #: ../src/guestfs-actions.pod:6551
17175 #, no-wrap
17176 msgid ""
17177 " char *\n"
17178 " guestfs_sfdisk_l (guestfs_h *g,\n"
17179 "                   const char *device);\n"
17180 "\n"
17181 msgstr ""
17182
17183 #. type: textblock
17184 #: ../src/guestfs-actions.pod:6555 ../fish/guestfish-actions.pod:4377
17185 msgid ""
17186 "This displays the partition table on C<device>, in the human-readable output "
17187 "of the L<sfdisk(8)> command.  It is not intended to be parsed."
17188 msgstr ""
17189
17190 #. type: textblock
17191 #: ../src/guestfs-actions.pod:6559
17192 msgid "See also: C<guestfs_part_list>"
17193 msgstr ""
17194
17195 #. type: textblock
17196 #: ../src/guestfs-actions.pod:6564 ../fish/guestfish-actions.pod:4383
17197 msgid ""
17198 "This function is deprecated.  In new code, use the C<part_list> call instead."
17199 msgstr ""
17200
17201 #. type: =head2
17202 #: ../src/guestfs-actions.pod:6573
17203 msgid "guestfs_sh"
17204 msgstr ""
17205
17206 #. type: verbatim
17207 #: ../src/guestfs-actions.pod:6575
17208 #, no-wrap
17209 msgid ""
17210 " char *\n"
17211 " guestfs_sh (guestfs_h *g,\n"
17212 "             const char *command);\n"
17213 "\n"
17214 msgstr ""
17215
17216 #. type: textblock
17217 #: ../src/guestfs-actions.pod:6579 ../fish/guestfish-actions.pod:4394
17218 msgid ""
17219 "This call runs a command from the guest filesystem via the guest's C</bin/"
17220 "sh>."
17221 msgstr ""
17222
17223 #. type: textblock
17224 #: ../src/guestfs-actions.pod:6582
17225 msgid "This is like C<guestfs_command>, but passes the command to:"
17226 msgstr ""
17227
17228 #. type: verbatim
17229 #: ../src/guestfs-actions.pod:6584 ../fish/guestfish-actions.pod:4399
17230 #, no-wrap
17231 msgid ""
17232 " /bin/sh -c \"command\"\n"
17233 "\n"
17234 msgstr ""
17235
17236 #. type: textblock
17237 #: ../src/guestfs-actions.pod:6586 ../fish/guestfish-actions.pod:4401
17238 msgid ""
17239 "Depending on the guest's shell, this usually results in wildcards being "
17240 "expanded, shell expressions being interpolated and so on."
17241 msgstr ""
17242
17243 #. type: textblock
17244 #: ../src/guestfs-actions.pod:6590
17245 msgid "All the provisos about C<guestfs_command> apply to this call."
17246 msgstr ""
17247
17248 #. type: =head2
17249 #: ../src/guestfs-actions.pod:6597
17250 msgid "guestfs_sh_lines"
17251 msgstr ""
17252
17253 #. type: verbatim
17254 #: ../src/guestfs-actions.pod:6599
17255 #, no-wrap
17256 msgid ""
17257 " char **\n"
17258 " guestfs_sh_lines (guestfs_h *g,\n"
17259 "                   const char *command);\n"
17260 "\n"
17261 msgstr ""
17262
17263 #. type: textblock
17264 #: ../src/guestfs-actions.pod:6603
17265 msgid ""
17266 "This is the same as C<guestfs_sh>, but splits the result into a list of "
17267 "lines."
17268 msgstr ""
17269
17270 #. type: textblock
17271 #: ../src/guestfs-actions.pod:6606
17272 msgid "See also: C<guestfs_command_lines>"
17273 msgstr ""
17274
17275 #. type: =head2
17276 #: ../src/guestfs-actions.pod:6614
17277 msgid "guestfs_sleep"
17278 msgstr ""
17279
17280 #. type: verbatim
17281 #: ../src/guestfs-actions.pod:6616
17282 #, no-wrap
17283 msgid ""
17284 " int\n"
17285 " guestfs_sleep (guestfs_h *g,\n"
17286 "                int secs);\n"
17287 "\n"
17288 msgstr ""
17289
17290 #. type: textblock
17291 #: ../src/guestfs-actions.pod:6620 ../fish/guestfish-actions.pod:4420
17292 msgid "Sleep for C<secs> seconds."
17293 msgstr ""
17294
17295 #. type: textblock
17296 #: ../src/guestfs-actions.pod:6624
17297 msgid "(Added in 1.0.41)"
17298 msgstr ""
17299
17300 #. type: =head2
17301 #: ../src/guestfs-actions.pod:6626 ../src/guestfs-structs.pod:109
17302 msgid "guestfs_stat"
17303 msgstr ""
17304
17305 #. type: verbatim
17306 #: ../src/guestfs-actions.pod:6628
17307 #, no-wrap
17308 msgid ""
17309 " struct guestfs_stat *\n"
17310 " guestfs_stat (guestfs_h *g,\n"
17311 "               const char *path);\n"
17312 "\n"
17313 msgstr ""
17314
17315 #. type: textblock
17316 #: ../src/guestfs-actions.pod:6634 ../fish/guestfish-actions.pod:4428
17317 msgid "This is the same as the C<stat(2)> system call."
17318 msgstr ""
17319
17320 #. type: =head2
17321 #: ../src/guestfs-actions.pod:6642 ../src/guestfs-structs.pod:135
17322 msgid "guestfs_statvfs"
17323 msgstr ""
17324
17325 #. type: verbatim
17326 #: ../src/guestfs-actions.pod:6644
17327 #, no-wrap
17328 msgid ""
17329 " struct guestfs_statvfs *\n"
17330 " guestfs_statvfs (guestfs_h *g,\n"
17331 "                  const char *path);\n"
17332 "\n"
17333 msgstr ""
17334
17335 #. type: textblock
17336 #: ../src/guestfs-actions.pod:6648 ../fish/guestfish-actions.pod:4434
17337 msgid ""
17338 "Returns file system statistics for any mounted file system.  C<path> should "
17339 "be a file or directory in the mounted file system (typically it is the mount "
17340 "point itself, but it doesn't need to be)."
17341 msgstr ""
17342
17343 #. type: textblock
17344 #: ../src/guestfs-actions.pod:6652 ../fish/guestfish-actions.pod:4438
17345 msgid "This is the same as the C<statvfs(2)> system call."
17346 msgstr ""
17347
17348 #. type: textblock
17349 #: ../src/guestfs-actions.pod:6654
17350 msgid ""
17351 "This function returns a C<struct guestfs_statvfs *>, or NULL if there was an "
17352 "error.  I<The caller must call C<guestfs_free_statvfs> after use>."
17353 msgstr ""
17354
17355 #. type: =head2
17356 #: ../src/guestfs-actions.pod:6660
17357 msgid "guestfs_strings"
17358 msgstr ""
17359
17360 #. type: verbatim
17361 #: ../src/guestfs-actions.pod:6662
17362 #, no-wrap
17363 msgid ""
17364 " char **\n"
17365 " guestfs_strings (guestfs_h *g,\n"
17366 "                  const char *path);\n"
17367 "\n"
17368 msgstr ""
17369
17370 #. type: textblock
17371 #: ../src/guestfs-actions.pod:6666 ../fish/guestfish-actions.pod:4444
17372 msgid ""
17373 "This runs the L<strings(1)> command on a file and returns the list of "
17374 "printable strings found."
17375 msgstr ""
17376
17377 #. type: =head2
17378 #: ../src/guestfs-actions.pod:6678
17379 msgid "guestfs_strings_e"
17380 msgstr ""
17381
17382 #. type: verbatim
17383 #: ../src/guestfs-actions.pod:6680
17384 #, no-wrap
17385 msgid ""
17386 " char **\n"
17387 " guestfs_strings_e (guestfs_h *g,\n"
17388 "                    const char *encoding,\n"
17389 "                    const char *path);\n"
17390 "\n"
17391 msgstr ""
17392
17393 #. type: textblock
17394 #: ../src/guestfs-actions.pod:6685
17395 msgid ""
17396 "This is like the C<guestfs_strings> command, but allows you to specify the "
17397 "encoding of strings that are looked for in the source file C<path>."
17398 msgstr ""
17399
17400 #. type: textblock
17401 #: ../src/guestfs-actions.pod:6689 ../fish/guestfish-actions.pod:4458
17402 msgid "Allowed encodings are:"
17403 msgstr ""
17404
17405 #. type: =item
17406 #: ../src/guestfs-actions.pod:6693 ../fish/guestfish-actions.pod:4462
17407 msgid "s"
17408 msgstr ""
17409
17410 #. type: textblock
17411 #: ../src/guestfs-actions.pod:6695
17412 msgid ""
17413 "Single 7-bit-byte characters like ASCII and the ASCII-compatible parts of "
17414 "ISO-8859-X (this is what C<guestfs_strings> uses)."
17415 msgstr ""
17416
17417 #. type: =item
17418 #: ../src/guestfs-actions.pod:6698 ../fish/guestfish-actions.pod:4467
17419 msgid "S"
17420 msgstr ""
17421
17422 #. type: textblock
17423 #: ../src/guestfs-actions.pod:6700 ../fish/guestfish-actions.pod:4469
17424 msgid "Single 8-bit-byte characters."
17425 msgstr ""
17426
17427 #. type: =item
17428 #: ../src/guestfs-actions.pod:6702 ../fish/guestfish-actions.pod:4471
17429 msgid "b"
17430 msgstr ""
17431
17432 #. type: textblock
17433 #: ../src/guestfs-actions.pod:6704 ../fish/guestfish-actions.pod:4473
17434 msgid "16-bit big endian strings such as those encoded in UTF-16BE or UCS-2BE."
17435 msgstr ""
17436
17437 #. type: =item
17438 #: ../src/guestfs-actions.pod:6707 ../fish/guestfish-actions.pod:4476
17439 msgid "l (lower case letter L)"
17440 msgstr ""
17441
17442 #. type: textblock
17443 #: ../src/guestfs-actions.pod:6709 ../fish/guestfish-actions.pod:4478
17444 msgid ""
17445 "16-bit little endian such as UTF-16LE and UCS-2LE.  This is useful for "
17446 "examining binaries in Windows guests."
17447 msgstr ""
17448
17449 #. type: =item
17450 #: ../src/guestfs-actions.pod:6712 ../fish/guestfish-actions.pod:4481
17451 msgid "B"
17452 msgstr ""
17453
17454 #. type: textblock
17455 #: ../src/guestfs-actions.pod:6714 ../fish/guestfish-actions.pod:4483
17456 msgid "32-bit big endian such as UCS-4BE."
17457 msgstr ""
17458
17459 #. type: =item
17460 #: ../src/guestfs-actions.pod:6716 ../fish/guestfish-actions.pod:4485
17461 msgid "L"
17462 msgstr ""
17463
17464 #. type: textblock
17465 #: ../src/guestfs-actions.pod:6718 ../fish/guestfish-actions.pod:4487
17466 msgid "32-bit little endian such as UCS-4LE."
17467 msgstr ""
17468
17469 #. type: textblock
17470 #: ../src/guestfs-actions.pod:6722 ../fish/guestfish-actions.pod:4491
17471 msgid "The returned strings are transcoded to UTF-8."
17472 msgstr ""
17473
17474 #. type: =head2
17475 #: ../src/guestfs-actions.pod:6733
17476 msgid "guestfs_swapoff_device"
17477 msgstr ""
17478
17479 #. type: verbatim
17480 #: ../src/guestfs-actions.pod:6735
17481 #, no-wrap
17482 msgid ""
17483 " int\n"
17484 " guestfs_swapoff_device (guestfs_h *g,\n"
17485 "                         const char *device);\n"
17486 "\n"
17487 msgstr ""
17488
17489 #. type: textblock
17490 #: ../src/guestfs-actions.pod:6739
17491 msgid ""
17492 "This command disables the libguestfs appliance swap device or partition "
17493 "named C<device>.  See C<guestfs_swapon_device>."
17494 msgstr ""
17495
17496 #. type: =head2
17497 #: ../src/guestfs-actions.pod:6747
17498 msgid "guestfs_swapoff_file"
17499 msgstr ""
17500
17501 #. type: verbatim
17502 #: ../src/guestfs-actions.pod:6749
17503 #, no-wrap
17504 msgid ""
17505 " int\n"
17506 " guestfs_swapoff_file (guestfs_h *g,\n"
17507 "                       const char *file);\n"
17508 "\n"
17509 msgstr ""
17510
17511 #. type: textblock
17512 #: ../src/guestfs-actions.pod:6753 ../fish/guestfish-actions.pod:4508
17513 msgid "This command disables the libguestfs appliance swap on file."
17514 msgstr ""
17515
17516 #. type: =head2
17517 #: ../src/guestfs-actions.pod:6759
17518 msgid "guestfs_swapoff_label"
17519 msgstr ""
17520
17521 #. type: verbatim
17522 #: ../src/guestfs-actions.pod:6761
17523 #, no-wrap
17524 msgid ""
17525 " int\n"
17526 " guestfs_swapoff_label (guestfs_h *g,\n"
17527 "                        const char *label);\n"
17528 "\n"
17529 msgstr ""
17530
17531 #. type: textblock
17532 #: ../src/guestfs-actions.pod:6765 ../fish/guestfish-actions.pod:4514
17533 msgid ""
17534 "This command disables the libguestfs appliance swap on labeled swap "
17535 "partition."
17536 msgstr ""
17537
17538 #. type: =head2
17539 #: ../src/guestfs-actions.pod:6772
17540 msgid "guestfs_swapoff_uuid"
17541 msgstr ""
17542
17543 #. type: verbatim
17544 #: ../src/guestfs-actions.pod:6774
17545 #, no-wrap
17546 msgid ""
17547 " int\n"
17548 " guestfs_swapoff_uuid (guestfs_h *g,\n"
17549 "                       const char *uuid);\n"
17550 "\n"
17551 msgstr ""
17552
17553 #. type: textblock
17554 #: ../src/guestfs-actions.pod:6778 ../fish/guestfish-actions.pod:4521
17555 msgid ""
17556 "This command disables the libguestfs appliance swap partition with the given "
17557 "UUID."
17558 msgstr ""
17559
17560 #. type: =head2
17561 #: ../src/guestfs-actions.pod:6785
17562 msgid "guestfs_swapon_device"
17563 msgstr ""
17564
17565 #. type: verbatim
17566 #: ../src/guestfs-actions.pod:6787
17567 #, no-wrap
17568 msgid ""
17569 " int\n"
17570 " guestfs_swapon_device (guestfs_h *g,\n"
17571 "                        const char *device);\n"
17572 "\n"
17573 msgstr ""
17574
17575 #. type: textblock
17576 #: ../src/guestfs-actions.pod:6791
17577 msgid ""
17578 "This command enables the libguestfs appliance to use the swap device or "
17579 "partition named C<device>.  The increased memory is made available for all "
17580 "commands, for example those run using C<guestfs_command> or C<guestfs_sh>."
17581 msgstr ""
17582
17583 #. type: textblock
17584 #: ../src/guestfs-actions.pod:6796 ../fish/guestfish-actions.pod:4533
17585 msgid ""
17586 "Note that you should not swap to existing guest swap partitions unless you "
17587 "know what you are doing.  They may contain hibernation information, or other "
17588 "information that the guest doesn't want you to trash.  You also risk leaking "
17589 "information about the host to the guest this way.  Instead, attach a new "
17590 "host device to the guest and swap on that."
17591 msgstr ""
17592
17593 #. type: =head2
17594 #: ../src/guestfs-actions.pod:6807
17595 msgid "guestfs_swapon_file"
17596 msgstr ""
17597
17598 #. type: verbatim
17599 #: ../src/guestfs-actions.pod:6809
17600 #, no-wrap
17601 msgid ""
17602 " int\n"
17603 " guestfs_swapon_file (guestfs_h *g,\n"
17604 "                      const char *file);\n"
17605 "\n"
17606 msgstr ""
17607
17608 #. type: textblock
17609 #: ../src/guestfs-actions.pod:6813
17610 msgid ""
17611 "This command enables swap to a file.  See C<guestfs_swapon_device> for other "
17612 "notes."
17613 msgstr ""
17614
17615 #. type: =head2
17616 #: ../src/guestfs-actions.pod:6820
17617 msgid "guestfs_swapon_label"
17618 msgstr ""
17619
17620 #. type: verbatim
17621 #: ../src/guestfs-actions.pod:6822
17622 #, no-wrap
17623 msgid ""
17624 " int\n"
17625 " guestfs_swapon_label (guestfs_h *g,\n"
17626 "                       const char *label);\n"
17627 "\n"
17628 msgstr ""
17629
17630 #. type: textblock
17631 #: ../src/guestfs-actions.pod:6826
17632 msgid ""
17633 "This command enables swap to a labeled swap partition.  See "
17634 "C<guestfs_swapon_device> for other notes."
17635 msgstr ""
17636
17637 #. type: =head2
17638 #: ../src/guestfs-actions.pod:6833
17639 msgid "guestfs_swapon_uuid"
17640 msgstr ""
17641
17642 #. type: verbatim
17643 #: ../src/guestfs-actions.pod:6835
17644 #, no-wrap
17645 msgid ""
17646 " int\n"
17647 " guestfs_swapon_uuid (guestfs_h *g,\n"
17648 "                      const char *uuid);\n"
17649 "\n"
17650 msgstr ""
17651
17652 #. type: textblock
17653 #: ../src/guestfs-actions.pod:6839
17654 msgid ""
17655 "This command enables swap to a swap partition with the given UUID.  See "
17656 "C<guestfs_swapon_device> for other notes."
17657 msgstr ""
17658
17659 #. type: =head2
17660 #: ../src/guestfs-actions.pod:6846
17661 msgid "guestfs_sync"
17662 msgstr ""
17663
17664 #. type: verbatim
17665 #: ../src/guestfs-actions.pod:6848
17666 #, no-wrap
17667 msgid ""
17668 " int\n"
17669 " guestfs_sync (guestfs_h *g);\n"
17670 "\n"
17671 msgstr ""
17672
17673 #. type: textblock
17674 #: ../src/guestfs-actions.pod:6851 ../fish/guestfish-actions.pod:4565
17675 msgid ""
17676 "This syncs the disk, so that any writes are flushed through to the "
17677 "underlying disk image."
17678 msgstr ""
17679
17680 #. type: textblock
17681 #: ../src/guestfs-actions.pod:6854 ../fish/guestfish-actions.pod:4568
17682 msgid ""
17683 "You should always call this if you have modified a disk image, before "
17684 "closing the handle."
17685 msgstr ""
17686
17687 #. type: =head2
17688 #: ../src/guestfs-actions.pod:6861
17689 msgid "guestfs_tail"
17690 msgstr ""
17691
17692 #. type: verbatim
17693 #: ../src/guestfs-actions.pod:6863
17694 #, no-wrap
17695 msgid ""
17696 " char **\n"
17697 " guestfs_tail (guestfs_h *g,\n"
17698 "               const char *path);\n"
17699 "\n"
17700 msgstr ""
17701
17702 #. type: textblock
17703 #: ../src/guestfs-actions.pod:6867 ../fish/guestfish-actions.pod:4575
17704 msgid ""
17705 "This command returns up to the last 10 lines of a file as a list of strings."
17706 msgstr ""
17707
17708 #. type: =head2
17709 #: ../src/guestfs-actions.pod:6879
17710 msgid "guestfs_tail_n"
17711 msgstr ""
17712
17713 #. type: verbatim
17714 #: ../src/guestfs-actions.pod:6881
17715 #, no-wrap
17716 msgid ""
17717 " char **\n"
17718 " guestfs_tail_n (guestfs_h *g,\n"
17719 "                 int nrlines,\n"
17720 "                 const char *path);\n"
17721 "\n"
17722 msgstr ""
17723
17724 #. type: textblock
17725 #: ../src/guestfs-actions.pod:6886 ../fish/guestfish-actions.pod:4585
17726 msgid ""
17727 "If the parameter C<nrlines> is a positive number, this returns the last "
17728 "C<nrlines> lines of the file C<path>."
17729 msgstr ""
17730
17731 #. type: textblock
17732 #: ../src/guestfs-actions.pod:6889 ../fish/guestfish-actions.pod:4588
17733 msgid ""
17734 "If the parameter C<nrlines> is a negative number, this returns lines from "
17735 "the file C<path>, starting with the C<-nrlines>th line."
17736 msgstr ""
17737
17738 #. type: =head2
17739 #: ../src/guestfs-actions.pod:6903
17740 msgid "guestfs_tar_in"
17741 msgstr ""
17742
17743 #. type: verbatim
17744 #: ../src/guestfs-actions.pod:6905
17745 #, no-wrap
17746 msgid ""
17747 " int\n"
17748 " guestfs_tar_in (guestfs_h *g,\n"
17749 "                 const char *tarfile,\n"
17750 "                 const char *directory);\n"
17751 "\n"
17752 msgstr ""
17753
17754 #. type: textblock
17755 #: ../src/guestfs-actions.pod:6910 ../fish/guestfish-actions.pod:4600
17756 msgid ""
17757 "This command uploads and unpacks local file C<tarfile> (an I<uncompressed> "
17758 "tar file) into C<directory>."
17759 msgstr ""
17760
17761 #. type: textblock
17762 #: ../src/guestfs-actions.pod:6913
17763 msgid ""
17764 "To upload a compressed tarball, use C<guestfs_tgz_in> or C<guestfs_txz_in>."
17765 msgstr ""
17766
17767 #. type: textblock
17768 #: ../src/guestfs-actions.pod:6918 ../src/guestfs-actions.pod:6935
17769 #: ../src/guestfs-actions.pod:6951 ../src/guestfs-actions.pod:6967
17770 msgid "(Added in 1.0.3)"
17771 msgstr ""
17772
17773 #. type: =head2
17774 #: ../src/guestfs-actions.pod:6920
17775 msgid "guestfs_tar_out"
17776 msgstr ""
17777
17778 #. type: verbatim
17779 #: ../src/guestfs-actions.pod:6922
17780 #, no-wrap
17781 msgid ""
17782 " int\n"
17783 " guestfs_tar_out (guestfs_h *g,\n"
17784 "                  const char *directory,\n"
17785 "                  const char *tarfile);\n"
17786 "\n"
17787 msgstr ""
17788
17789 #. type: textblock
17790 #: ../src/guestfs-actions.pod:6927 ../fish/guestfish-actions.pod:4612
17791 msgid ""
17792 "This command packs the contents of C<directory> and downloads it to local "
17793 "file C<tarfile>."
17794 msgstr ""
17795
17796 #. type: textblock
17797 #: ../src/guestfs-actions.pod:6930
17798 msgid ""
17799 "To download a compressed tarball, use C<guestfs_tgz_out> or "
17800 "C<guestfs_txz_out>."
17801 msgstr ""
17802
17803 #. type: =head2
17804 #: ../src/guestfs-actions.pod:6937
17805 msgid "guestfs_tgz_in"
17806 msgstr ""
17807
17808 #. type: verbatim
17809 #: ../src/guestfs-actions.pod:6939
17810 #, no-wrap
17811 msgid ""
17812 " int\n"
17813 " guestfs_tgz_in (guestfs_h *g,\n"
17814 "                 const char *tarball,\n"
17815 "                 const char *directory);\n"
17816 "\n"
17817 msgstr ""
17818
17819 #. type: textblock
17820 #: ../src/guestfs-actions.pod:6944 ../fish/guestfish-actions.pod:4624
17821 msgid ""
17822 "This command uploads and unpacks local file C<tarball> (a I<gzip compressed> "
17823 "tar file) into C<directory>."
17824 msgstr ""
17825
17826 #. type: textblock
17827 #: ../src/guestfs-actions.pod:6947
17828 msgid "To upload an uncompressed tarball, use C<guestfs_tar_in>."
17829 msgstr ""
17830
17831 #. type: =head2
17832 #: ../src/guestfs-actions.pod:6953
17833 msgid "guestfs_tgz_out"
17834 msgstr ""
17835
17836 #. type: verbatim
17837 #: ../src/guestfs-actions.pod:6955
17838 #, no-wrap
17839 msgid ""
17840 " int\n"
17841 " guestfs_tgz_out (guestfs_h *g,\n"
17842 "                  const char *directory,\n"
17843 "                  const char *tarball);\n"
17844 "\n"
17845 msgstr ""
17846
17847 #. type: textblock
17848 #: ../src/guestfs-actions.pod:6960 ../fish/guestfish-actions.pod:4635
17849 msgid ""
17850 "This command packs the contents of C<directory> and downloads it to local "
17851 "file C<tarball>."
17852 msgstr ""
17853
17854 #. type: textblock
17855 #: ../src/guestfs-actions.pod:6963
17856 msgid "To download an uncompressed tarball, use C<guestfs_tar_out>."
17857 msgstr ""
17858
17859 #. type: =head2
17860 #: ../src/guestfs-actions.pod:6969
17861 msgid "guestfs_touch"
17862 msgstr ""
17863
17864 #. type: verbatim
17865 #: ../src/guestfs-actions.pod:6971
17866 #, no-wrap
17867 msgid ""
17868 " int\n"
17869 " guestfs_touch (guestfs_h *g,\n"
17870 "                const char *path);\n"
17871 "\n"
17872 msgstr ""
17873
17874 #. type: textblock
17875 #: ../src/guestfs-actions.pod:6975 ../fish/guestfish-actions.pod:4646
17876 msgid ""
17877 "Touch acts like the L<touch(1)> command.  It can be used to update the "
17878 "timestamps on a file, or, if the file does not exist, to create a new zero-"
17879 "length file."
17880 msgstr ""
17881
17882 #. type: textblock
17883 #: ../src/guestfs-actions.pod:6979 ../fish/guestfish-actions.pod:4650
17884 msgid ""
17885 "This command only works on regular files, and will fail on other file types "
17886 "such as directories, symbolic links, block special etc."
17887 msgstr ""
17888
17889 #. type: =head2
17890 #: ../src/guestfs-actions.pod:6986
17891 msgid "guestfs_truncate"
17892 msgstr ""
17893
17894 #. type: verbatim
17895 #: ../src/guestfs-actions.pod:6988
17896 #, no-wrap
17897 msgid ""
17898 " int\n"
17899 " guestfs_truncate (guestfs_h *g,\n"
17900 "                   const char *path);\n"
17901 "\n"
17902 msgstr ""
17903
17904 #. type: textblock
17905 #: ../src/guestfs-actions.pod:6992 ../fish/guestfish-actions.pod:4657
17906 msgid ""
17907 "This command truncates C<path> to a zero-length file.  The file must exist "
17908 "already."
17909 msgstr ""
17910
17911 #. type: =head2
17912 #: ../src/guestfs-actions.pod:6999
17913 msgid "guestfs_truncate_size"
17914 msgstr ""
17915
17916 #. type: verbatim
17917 #: ../src/guestfs-actions.pod:7001
17918 #, no-wrap
17919 msgid ""
17920 " int\n"
17921 " guestfs_truncate_size (guestfs_h *g,\n"
17922 "                        const char *path,\n"
17923 "                        int64_t size);\n"
17924 "\n"
17925 msgstr ""
17926
17927 #. type: textblock
17928 #: ../src/guestfs-actions.pod:7006 ../fish/guestfish-actions.pod:4664
17929 msgid ""
17930 "This command truncates C<path> to size C<size> bytes.  The file must exist "
17931 "already."
17932 msgstr ""
17933
17934 #. type: textblock
17935 #: ../src/guestfs-actions.pod:7009
17936 msgid ""
17937 "If the current file size is less than C<size> then the file is extended to "
17938 "the required size with zero bytes.  This creates a sparse file (ie. disk "
17939 "blocks are not allocated for the file until you write to it).  To create a "
17940 "non-sparse file of zeroes, use C<guestfs_fallocate64> instead."
17941 msgstr ""
17942
17943 #. type: =head2
17944 #: ../src/guestfs-actions.pod:7019
17945 msgid "guestfs_tune2fs_l"
17946 msgstr ""
17947
17948 #. type: verbatim
17949 #: ../src/guestfs-actions.pod:7021
17950 #, no-wrap
17951 msgid ""
17952 " char **\n"
17953 " guestfs_tune2fs_l (guestfs_h *g,\n"
17954 "                    const char *device);\n"
17955 "\n"
17956 msgstr ""
17957
17958 #. type: textblock
17959 #: ../src/guestfs-actions.pod:7025 ../fish/guestfish-actions.pod:4677
17960 msgid ""
17961 "This returns the contents of the ext2, ext3 or ext4 filesystem superblock on "
17962 "C<device>."
17963 msgstr ""
17964
17965 #. type: textblock
17966 #: ../src/guestfs-actions.pod:7028 ../fish/guestfish-actions.pod:4680
17967 msgid ""
17968 "It is the same as running C<tune2fs -l device>.  See L<tune2fs(8)> manpage "
17969 "for more details.  The list of fields returned isn't clearly defined, and "
17970 "depends on both the version of C<tune2fs> that libguestfs was built against, "
17971 "and the filesystem itself."
17972 msgstr ""
17973
17974 #. type: =head2
17975 #: ../src/guestfs-actions.pod:7041
17976 msgid "guestfs_txz_in"
17977 msgstr ""
17978
17979 #. type: verbatim
17980 #: ../src/guestfs-actions.pod:7043
17981 #, no-wrap
17982 msgid ""
17983 " int\n"
17984 " guestfs_txz_in (guestfs_h *g,\n"
17985 "                 const char *tarball,\n"
17986 "                 const char *directory);\n"
17987 "\n"
17988 msgstr ""
17989
17990 #. type: textblock
17991 #: ../src/guestfs-actions.pod:7048 ../fish/guestfish-actions.pod:4689
17992 msgid ""
17993 "This command uploads and unpacks local file C<tarball> (an I<xz compressed> "
17994 "tar file) into C<directory>."
17995 msgstr ""
17996
17997 #. type: =head2
17998 #: ../src/guestfs-actions.pod:7055
17999 msgid "guestfs_txz_out"
18000 msgstr ""
18001
18002 #. type: verbatim
18003 #: ../src/guestfs-actions.pod:7057
18004 #, no-wrap
18005 msgid ""
18006 " int\n"
18007 " guestfs_txz_out (guestfs_h *g,\n"
18008 "                  const char *directory,\n"
18009 "                  const char *tarball);\n"
18010 "\n"
18011 msgstr ""
18012
18013 #. type: textblock
18014 #: ../src/guestfs-actions.pod:7062 ../fish/guestfish-actions.pod:4698
18015 msgid ""
18016 "This command packs the contents of C<directory> and downloads it to local "
18017 "file C<tarball> (as an xz compressed tar archive)."
18018 msgstr ""
18019
18020 #. type: =head2
18021 #: ../src/guestfs-actions.pod:7069
18022 msgid "guestfs_umask"
18023 msgstr ""
18024
18025 #. type: verbatim
18026 #: ../src/guestfs-actions.pod:7071
18027 #, no-wrap
18028 msgid ""
18029 " int\n"
18030 " guestfs_umask (guestfs_h *g,\n"
18031 "                int mask);\n"
18032 "\n"
18033 msgstr ""
18034
18035 #. type: textblock
18036 #: ../src/guestfs-actions.pod:7075 ../fish/guestfish-actions.pod:4707
18037 msgid ""
18038 "This function sets the mask used for creating new files and device nodes to "
18039 "C<mask & 0777>."
18040 msgstr ""
18041
18042 #. type: textblock
18043 #: ../src/guestfs-actions.pod:7078 ../fish/guestfish-actions.pod:4710
18044 msgid ""
18045 "Typical umask values would be C<022> which creates new files with "
18046 "permissions like \"-rw-r--r--\" or \"-rwxr-xr-x\", and C<002> which creates "
18047 "new files with permissions like \"-rw-rw-r--\" or \"-rwxrwxr-x\"."
18048 msgstr ""
18049
18050 #. type: textblock
18051 #: ../src/guestfs-actions.pod:7083 ../fish/guestfish-actions.pod:4715
18052 msgid ""
18053 "The default umask is C<022>.  This is important because it means that "
18054 "directories and device nodes will be created with C<0644> or C<0755> mode "
18055 "even if you specify C<0777>."
18056 msgstr ""
18057
18058 #. type: textblock
18059 #: ../src/guestfs-actions.pod:7087
18060 msgid ""
18061 "See also C<guestfs_get_umask>, L<umask(2)>, C<guestfs_mknod>, "
18062 "C<guestfs_mkdir>."
18063 msgstr ""
18064
18065 #. type: textblock
18066 #: ../src/guestfs-actions.pod:7090 ../fish/guestfish-actions.pod:4722
18067 msgid "This call returns the previous umask."
18068 msgstr ""
18069
18070 #. type: =head2
18071 #: ../src/guestfs-actions.pod:7096
18072 msgid "guestfs_umount"
18073 msgstr ""
18074
18075 #. type: verbatim
18076 #: ../src/guestfs-actions.pod:7098
18077 #, no-wrap
18078 msgid ""
18079 " int\n"
18080 " guestfs_umount (guestfs_h *g,\n"
18081 "                 const char *pathordevice);\n"
18082 "\n"
18083 msgstr ""
18084
18085 #. type: textblock
18086 #: ../src/guestfs-actions.pod:7102 ../fish/guestfish-actions.pod:4730
18087 msgid ""
18088 "This unmounts the given filesystem.  The filesystem may be specified either "
18089 "by its mountpoint (path) or the device which contains the filesystem."
18090 msgstr ""
18091
18092 #. type: =head2
18093 #: ../src/guestfs-actions.pod:7110
18094 msgid "guestfs_umount_all"
18095 msgstr ""
18096
18097 #. type: verbatim
18098 #: ../src/guestfs-actions.pod:7112
18099 #, no-wrap
18100 msgid ""
18101 " int\n"
18102 " guestfs_umount_all (guestfs_h *g);\n"
18103 "\n"
18104 msgstr ""
18105
18106 #. type: textblock
18107 #: ../src/guestfs-actions.pod:7115 ../fish/guestfish-actions.pod:4740
18108 msgid "This unmounts all mounted filesystems."
18109 msgstr ""
18110
18111 #. type: textblock
18112 #: ../src/guestfs-actions.pod:7117 ../fish/guestfish-actions.pod:4742
18113 msgid "Some internal mounts are not unmounted by this call."
18114 msgstr ""
18115
18116 #. type: =head2
18117 #: ../src/guestfs-actions.pod:7123
18118 msgid "guestfs_upload"
18119 msgstr ""
18120
18121 #. type: verbatim
18122 #: ../src/guestfs-actions.pod:7125
18123 #, no-wrap
18124 msgid ""
18125 " int\n"
18126 " guestfs_upload (guestfs_h *g,\n"
18127 "                 const char *filename,\n"
18128 "                 const char *remotefilename);\n"
18129 "\n"
18130 msgstr ""
18131
18132 #. type: textblock
18133 #: ../src/guestfs-actions.pod:7130 ../src/guestfs-actions.pod:7154
18134 #: ../fish/guestfish-actions.pod:4748 ../fish/guestfish-actions.pod:4761
18135 msgid "Upload local file C<filename> to C<remotefilename> on the filesystem."
18136 msgstr ""
18137
18138 #. type: textblock
18139 #: ../src/guestfs-actions.pod:7135
18140 msgid "See also C<guestfs_download>."
18141 msgstr ""
18142
18143 #. type: =head2
18144 #: ../src/guestfs-actions.pod:7146
18145 msgid "guestfs_upload_offset"
18146 msgstr ""
18147
18148 #. type: verbatim
18149 #: ../src/guestfs-actions.pod:7148
18150 #, no-wrap
18151 msgid ""
18152 " int\n"
18153 " guestfs_upload_offset (guestfs_h *g,\n"
18154 "                        const char *filename,\n"
18155 "                        const char *remotefilename,\n"
18156 "                        int64_t offset);\n"
18157 "\n"
18158 msgstr ""
18159
18160 #. type: textblock
18161 #: ../src/guestfs-actions.pod:7157 ../fish/guestfish-actions.pod:4764
18162 msgid ""
18163 "C<remotefilename> is overwritten starting at the byte C<offset> specified.  "
18164 "The intention is to overwrite parts of existing files or devices, although "
18165 "if a non-existant file is specified then it is created with a \"hole\" "
18166 "before C<offset>.  The size of the data written is implicit in the size of "
18167 "the source C<filename>."
18168 msgstr ""
18169
18170 #. type: textblock
18171 #: ../src/guestfs-actions.pod:7164
18172 msgid ""
18173 "Note that there is no limit on the amount of data that can be uploaded with "
18174 "this call, unlike with C<guestfs_pwrite>, and this call always writes the "
18175 "full amount unless an error occurs."
18176 msgstr ""
18177
18178 #. type: textblock
18179 #: ../src/guestfs-actions.pod:7169
18180 msgid "See also C<guestfs_upload>, C<guestfs_pwrite>."
18181 msgstr ""
18182
18183 #. type: =head2
18184 #: ../src/guestfs-actions.pod:7180
18185 msgid "guestfs_utimens"
18186 msgstr ""
18187
18188 #. type: verbatim
18189 #: ../src/guestfs-actions.pod:7182
18190 #, no-wrap
18191 msgid ""
18192 " int\n"
18193 " guestfs_utimens (guestfs_h *g,\n"
18194 "                  const char *path,\n"
18195 "                  int64_t atsecs,\n"
18196 "                  int64_t atnsecs,\n"
18197 "                  int64_t mtsecs,\n"
18198 "                  int64_t mtnsecs);\n"
18199 "\n"
18200 msgstr ""
18201
18202 #. type: textblock
18203 #: ../src/guestfs-actions.pod:7190 ../fish/guestfish-actions.pod:4784
18204 msgid "This command sets the timestamps of a file with nanosecond precision."
18205 msgstr ""
18206
18207 #. type: textblock
18208 #: ../src/guestfs-actions.pod:7193 ../fish/guestfish-actions.pod:4787
18209 msgid ""
18210 "C<atsecs, atnsecs> are the last access time (atime) in secs and nanoseconds "
18211 "from the epoch."
18212 msgstr ""
18213
18214 #. type: textblock
18215 #: ../src/guestfs-actions.pod:7196 ../fish/guestfish-actions.pod:4790
18216 msgid ""
18217 "C<mtsecs, mtnsecs> are the last modification time (mtime) in secs and "
18218 "nanoseconds from the epoch."
18219 msgstr ""
18220
18221 #. type: textblock
18222 #: ../src/guestfs-actions.pod:7199 ../fish/guestfish-actions.pod:4793
18223 msgid ""
18224 "If the C<*nsecs> field contains the special value C<-1> then the "
18225 "corresponding timestamp is set to the current time.  (The C<*secs> field is "
18226 "ignored in this case)."
18227 msgstr ""
18228
18229 #. type: textblock
18230 #: ../src/guestfs-actions.pod:7203 ../fish/guestfish-actions.pod:4797
18231 msgid ""
18232 "If the C<*nsecs> field contains the special value C<-2> then the "
18233 "corresponding timestamp is left unchanged.  (The C<*secs> field is ignored "
18234 "in this case)."
18235 msgstr ""
18236
18237 #. type: =head2
18238 #: ../src/guestfs-actions.pod:7211 ../src/guestfs-structs.pod:175
18239 msgid "guestfs_version"
18240 msgstr ""
18241
18242 #. type: verbatim
18243 #: ../src/guestfs-actions.pod:7213
18244 #, no-wrap
18245 msgid ""
18246 " struct guestfs_version *\n"
18247 " guestfs_version (guestfs_h *g);\n"
18248 "\n"
18249 msgstr ""
18250
18251 #. type: textblock
18252 #: ../src/guestfs-actions.pod:7216 ../fish/guestfish-actions.pod:4805
18253 msgid ""
18254 "Return the libguestfs version number that the program is linked against."
18255 msgstr ""
18256
18257 #. type: textblock
18258 #: ../src/guestfs-actions.pod:7219 ../fish/guestfish-actions.pod:4808
18259 msgid ""
18260 "Note that because of dynamic linking this is not necessarily the version of "
18261 "libguestfs that you compiled against.  You can compile the program, and then "
18262 "at runtime dynamically link against a completely different C<libguestfs.so> "
18263 "library."
18264 msgstr ""
18265
18266 #. type: textblock
18267 #: ../src/guestfs-actions.pod:7224 ../fish/guestfish-actions.pod:4813
18268 msgid ""
18269 "This call was added in version C<1.0.58>.  In previous versions of "
18270 "libguestfs there was no way to get the version number.  From C code you can "
18271 "use dynamic linker functions to find out if this symbol exists (if it "
18272 "doesn't, then it's an earlier version)."
18273 msgstr ""
18274
18275 #. type: textblock
18276 #: ../src/guestfs-actions.pod:7230 ../fish/guestfish-actions.pod:4819
18277 msgid ""
18278 "The call returns a structure with four elements.  The first three (C<major>, "
18279 "C<minor> and C<release>) are numbers and correspond to the usual version "
18280 "triplet.  The fourth element (C<extra>) is a string and is normally empty, "
18281 "but may be used for distro-specific information."
18282 msgstr ""
18283
18284 #. type: textblock
18285 #: ../src/guestfs-actions.pod:7236 ../fish/guestfish-actions.pod:4825
18286 msgid ""
18287 "To construct the original version string: C<$major.$minor.$release$extra>"
18288 msgstr ""
18289
18290 #. type: textblock
18291 #: ../src/guestfs-actions.pod:7239 ../fish/guestfish-actions.pod:4828
18292 msgid "See also: L<guestfs(3)/LIBGUESTFS VERSION NUMBERS>."
18293 msgstr ""
18294
18295 #. type: textblock
18296 #: ../src/guestfs-actions.pod:7241
18297 msgid ""
18298 "I<Note:> Don't use this call to test for availability of features.  In "
18299 "enterprise distributions we backport features from later versions into "
18300 "earlier versions, making this an unreliable way to test for features.  Use "
18301 "C<guestfs_available> instead."
18302 msgstr ""
18303
18304 #. type: textblock
18305 #: ../src/guestfs-actions.pod:7247
18306 msgid ""
18307 "This function returns a C<struct guestfs_version *>, or NULL if there was an "
18308 "error.  I<The caller must call C<guestfs_free_version> after use>."
18309 msgstr ""
18310
18311 #. type: textblock
18312 #: ../src/guestfs-actions.pod:7251
18313 msgid "(Added in 1.0.58)"
18314 msgstr ""
18315
18316 #. type: =head2
18317 #: ../src/guestfs-actions.pod:7253
18318 msgid "guestfs_vfs_label"
18319 msgstr ""
18320
18321 #. type: verbatim
18322 #: ../src/guestfs-actions.pod:7255
18323 #, no-wrap
18324 msgid ""
18325 " char *\n"
18326 " guestfs_vfs_label (guestfs_h *g,\n"
18327 "                    const char *device);\n"
18328 "\n"
18329 msgstr ""
18330
18331 #. type: textblock
18332 #: ../src/guestfs-actions.pod:7259 ../fish/guestfish-actions.pod:4840
18333 msgid "This returns the filesystem label of the filesystem on C<device>."
18334 msgstr ""
18335
18336 #. type: textblock
18337 #: ../src/guestfs-actions.pod:7262 ../fish/guestfish-actions.pod:4843
18338 msgid "If the filesystem is unlabeled, this returns the empty string."
18339 msgstr ""
18340
18341 #. type: textblock
18342 #: ../src/guestfs-actions.pod:7264
18343 msgid "To find a filesystem from the label, use C<guestfs_findfs_label>."
18344 msgstr ""
18345
18346 #. type: textblock
18347 #: ../src/guestfs-actions.pod:7269 ../src/guestfs-actions.pod:7306
18348 msgid "(Added in 1.3.18)"
18349 msgstr ""
18350
18351 #. type: =head2
18352 #: ../src/guestfs-actions.pod:7271
18353 msgid "guestfs_vfs_type"
18354 msgstr ""
18355
18356 #. type: verbatim
18357 #: ../src/guestfs-actions.pod:7273
18358 #, no-wrap
18359 msgid ""
18360 " char *\n"
18361 " guestfs_vfs_type (guestfs_h *g,\n"
18362 "                   const char *device);\n"
18363 "\n"
18364 msgstr ""
18365
18366 #. type: textblock
18367 #: ../src/guestfs-actions.pod:7277 ../fish/guestfish-actions.pod:4851
18368 msgid ""
18369 "This command gets the filesystem type corresponding to the filesystem on "
18370 "C<device>."
18371 msgstr ""
18372
18373 #. type: textblock
18374 #: ../src/guestfs-actions.pod:7280 ../fish/guestfish-actions.pod:4854
18375 msgid ""
18376 "For most filesystems, the result is the name of the Linux VFS module which "
18377 "would be used to mount this filesystem if you mounted it without specifying "
18378 "the filesystem type.  For example a string such as C<ext3> or C<ntfs>."
18379 msgstr ""
18380
18381 #. type: =head2
18382 #: ../src/guestfs-actions.pod:7290
18383 msgid "guestfs_vfs_uuid"
18384 msgstr ""
18385
18386 #. type: verbatim
18387 #: ../src/guestfs-actions.pod:7292
18388 #, no-wrap
18389 msgid ""
18390 " char *\n"
18391 " guestfs_vfs_uuid (guestfs_h *g,\n"
18392 "                   const char *device);\n"
18393 "\n"
18394 msgstr ""
18395
18396 #. type: textblock
18397 #: ../src/guestfs-actions.pod:7296 ../fish/guestfish-actions.pod:4863
18398 msgid "This returns the filesystem UUID of the filesystem on C<device>."
18399 msgstr ""
18400
18401 #. type: textblock
18402 #: ../src/guestfs-actions.pod:7299 ../fish/guestfish-actions.pod:4866
18403 msgid "If the filesystem does not have a UUID, this returns the empty string."
18404 msgstr ""
18405
18406 #. type: textblock
18407 #: ../src/guestfs-actions.pod:7301
18408 msgid "To find a filesystem from the UUID, use C<guestfs_findfs_uuid>."
18409 msgstr ""
18410
18411 #. type: =head2
18412 #: ../src/guestfs-actions.pod:7308
18413 msgid "guestfs_vg_activate"
18414 msgstr ""
18415
18416 #. type: verbatim
18417 #: ../src/guestfs-actions.pod:7310
18418 #, no-wrap
18419 msgid ""
18420 " int\n"
18421 " guestfs_vg_activate (guestfs_h *g,\n"
18422 "                      int activate,\n"
18423 "                      char *const *volgroups);\n"
18424 "\n"
18425 msgstr ""
18426
18427 #. type: textblock
18428 #: ../src/guestfs-actions.pod:7315 ../fish/guestfish-actions.pod:4874
18429 msgid ""
18430 "This command activates or (if C<activate> is false) deactivates all logical "
18431 "volumes in the listed volume groups C<volgroups>."
18432 msgstr ""
18433
18434 #. type: textblock
18435 #: ../src/guestfs-actions.pod:7318 ../fish/guestfish-actions.pod:4877
18436 msgid "This command is the same as running C<vgchange -a y|n volgroups...>"
18437 msgstr ""
18438
18439 #. type: textblock
18440 #: ../src/guestfs-actions.pod:7320 ../fish/guestfish-actions.pod:4879
18441 msgid ""
18442 "Note that if C<volgroups> is an empty list then B<all> volume groups are "
18443 "activated or deactivated."
18444 msgstr ""
18445
18446 #. type: =head2
18447 #: ../src/guestfs-actions.pod:7327
18448 msgid "guestfs_vg_activate_all"
18449 msgstr ""
18450
18451 #. type: verbatim
18452 #: ../src/guestfs-actions.pod:7329
18453 #, no-wrap
18454 msgid ""
18455 " int\n"
18456 " guestfs_vg_activate_all (guestfs_h *g,\n"
18457 "                          int activate);\n"
18458 "\n"
18459 msgstr ""
18460
18461 #. type: textblock
18462 #: ../src/guestfs-actions.pod:7333 ../fish/guestfish-actions.pod:4886
18463 msgid ""
18464 "This command activates or (if C<activate> is false) deactivates all logical "
18465 "volumes in all volume groups."
18466 msgstr ""
18467
18468 #. type: textblock
18469 #: ../src/guestfs-actions.pod:7336 ../fish/guestfish-actions.pod:4889
18470 msgid "This command is the same as running C<vgchange -a y|n>"
18471 msgstr ""
18472
18473 #. type: =head2
18474 #: ../src/guestfs-actions.pod:7342
18475 msgid "guestfs_vgcreate"
18476 msgstr ""
18477
18478 #. type: verbatim
18479 #: ../src/guestfs-actions.pod:7344
18480 #, no-wrap
18481 msgid ""
18482 " int\n"
18483 " guestfs_vgcreate (guestfs_h *g,\n"
18484 "                   const char *volgroup,\n"
18485 "                   char *const *physvols);\n"
18486 "\n"
18487 msgstr ""
18488
18489 #. type: textblock
18490 #: ../src/guestfs-actions.pod:7349 ../fish/guestfish-actions.pod:4895
18491 msgid ""
18492 "This creates an LVM volume group called C<volgroup> from the non-empty list "
18493 "of physical volumes C<physvols>."
18494 msgstr ""
18495
18496 #. type: =head2
18497 #: ../src/guestfs-actions.pod:7356
18498 msgid "guestfs_vglvuuids"
18499 msgstr ""
18500
18501 #. type: verbatim
18502 #: ../src/guestfs-actions.pod:7358
18503 #, no-wrap
18504 msgid ""
18505 " char **\n"
18506 " guestfs_vglvuuids (guestfs_h *g,\n"
18507 "                    const char *vgname);\n"
18508 "\n"
18509 msgstr ""
18510
18511 #. type: textblock
18512 #: ../src/guestfs-actions.pod:7362 ../fish/guestfish-actions.pod:4902
18513 msgid ""
18514 "Given a VG called C<vgname>, this returns the UUIDs of all the logical "
18515 "volumes created in this volume group."
18516 msgstr ""
18517
18518 #. type: textblock
18519 #: ../src/guestfs-actions.pod:7365
18520 msgid ""
18521 "You can use this along with C<guestfs_lvs> and C<guestfs_lvuuid> calls to "
18522 "associate logical volumes and volume groups."
18523 msgstr ""
18524
18525 #. type: textblock
18526 #: ../src/guestfs-actions.pod:7368
18527 msgid "See also C<guestfs_vgpvuuids>."
18528 msgstr ""
18529
18530 #. type: =head2
18531 #: ../src/guestfs-actions.pod:7376
18532 msgid "guestfs_vgpvuuids"
18533 msgstr ""
18534
18535 #. type: verbatim
18536 #: ../src/guestfs-actions.pod:7378
18537 #, no-wrap
18538 msgid ""
18539 " char **\n"
18540 " guestfs_vgpvuuids (guestfs_h *g,\n"
18541 "                    const char *vgname);\n"
18542 "\n"
18543 msgstr ""
18544
18545 #. type: textblock
18546 #: ../src/guestfs-actions.pod:7382 ../fish/guestfish-actions.pod:4914
18547 msgid ""
18548 "Given a VG called C<vgname>, this returns the UUIDs of all the physical "
18549 "volumes that this volume group resides on."
18550 msgstr ""
18551
18552 #. type: textblock
18553 #: ../src/guestfs-actions.pod:7385
18554 msgid ""
18555 "You can use this along with C<guestfs_pvs> and C<guestfs_pvuuid> calls to "
18556 "associate physical volumes and volume groups."
18557 msgstr ""
18558
18559 #. type: textblock
18560 #: ../src/guestfs-actions.pod:7388
18561 msgid "See also C<guestfs_vglvuuids>."
18562 msgstr ""
18563
18564 #. type: =head2
18565 #: ../src/guestfs-actions.pod:7396
18566 msgid "guestfs_vgremove"
18567 msgstr ""
18568
18569 #. type: verbatim
18570 #: ../src/guestfs-actions.pod:7398
18571 #, no-wrap
18572 msgid ""
18573 " int\n"
18574 " guestfs_vgremove (guestfs_h *g,\n"
18575 "                   const char *vgname);\n"
18576 "\n"
18577 msgstr ""
18578
18579 #. type: textblock
18580 #: ../src/guestfs-actions.pod:7402 ../fish/guestfish-actions.pod:4926
18581 msgid "Remove an LVM volume group C<vgname>, (for example C<VG>)."
18582 msgstr ""
18583
18584 #. type: textblock
18585 #: ../src/guestfs-actions.pod:7404 ../fish/guestfish-actions.pod:4928
18586 msgid ""
18587 "This also forcibly removes all logical volumes in the volume group (if any)."
18588 msgstr ""
18589
18590 #. type: =head2
18591 #: ../src/guestfs-actions.pod:7411
18592 msgid "guestfs_vgrename"
18593 msgstr ""
18594
18595 #. type: verbatim
18596 #: ../src/guestfs-actions.pod:7413
18597 #, no-wrap
18598 msgid ""
18599 " int\n"
18600 " guestfs_vgrename (guestfs_h *g,\n"
18601 "                   const char *volgroup,\n"
18602 "                   const char *newvolgroup);\n"
18603 "\n"
18604 msgstr ""
18605
18606 #. type: textblock
18607 #: ../src/guestfs-actions.pod:7418 ../fish/guestfish-actions.pod:4935
18608 msgid "Rename a volume group C<volgroup> with the new name C<newvolgroup>."
18609 msgstr ""
18610
18611 #. type: =head2
18612 #: ../src/guestfs-actions.pod:7424
18613 msgid "guestfs_vgs"
18614 msgstr ""
18615
18616 #. type: verbatim
18617 #: ../src/guestfs-actions.pod:7426
18618 #, no-wrap
18619 msgid ""
18620 " char **\n"
18621 " guestfs_vgs (guestfs_h *g);\n"
18622 "\n"
18623 msgstr ""
18624
18625 #. type: textblock
18626 #: ../src/guestfs-actions.pod:7429 ../fish/guestfish-actions.pod:4941
18627 msgid ""
18628 "List all the volumes groups detected.  This is the equivalent of the L<vgs(8)"
18629 "> command."
18630 msgstr ""
18631
18632 #. type: textblock
18633 #: ../src/guestfs-actions.pod:7432 ../fish/guestfish-actions.pod:4944
18634 msgid ""
18635 "This returns a list of just the volume group names that were detected (eg. "
18636 "C<VolGroup00>)."
18637 msgstr ""
18638
18639 #. type: textblock
18640 #: ../src/guestfs-actions.pod:7435
18641 msgid "See also C<guestfs_vgs_full>."
18642 msgstr ""
18643
18644 #. type: =head2
18645 #: ../src/guestfs-actions.pod:7443
18646 msgid "guestfs_vgs_full"
18647 msgstr ""
18648
18649 #. type: verbatim
18650 #: ../src/guestfs-actions.pod:7445
18651 #, no-wrap
18652 msgid ""
18653 " struct guestfs_lvm_vg_list *\n"
18654 " guestfs_vgs_full (guestfs_h *g);\n"
18655 "\n"
18656 msgstr ""
18657
18658 #. type: textblock
18659 #: ../src/guestfs-actions.pod:7448 ../fish/guestfish-actions.pod:4953
18660 msgid ""
18661 "List all the volumes groups detected.  This is the equivalent of the L<vgs(8)"
18662 "> command.  The \"full\" version includes all fields."
18663 msgstr ""
18664
18665 #. type: textblock
18666 #: ../src/guestfs-actions.pod:7451
18667 msgid ""
18668 "This function returns a C<struct guestfs_lvm_vg_list *>, or NULL if there "
18669 "was an error.  I<The caller must call C<guestfs_free_lvm_vg_list> after use>."
18670 msgstr ""
18671
18672 #. type: =head2
18673 #: ../src/guestfs-actions.pod:7457
18674 msgid "guestfs_vgscan"
18675 msgstr ""
18676
18677 #. type: verbatim
18678 #: ../src/guestfs-actions.pod:7459
18679 #, no-wrap
18680 msgid ""
18681 " int\n"
18682 " guestfs_vgscan (guestfs_h *g);\n"
18683 "\n"
18684 msgstr ""
18685
18686 #. type: textblock
18687 #: ../src/guestfs-actions.pod:7462 ../fish/guestfish-actions.pod:4960
18688 msgid ""
18689 "This rescans all block devices and rebuilds the list of LVM physical "
18690 "volumes, volume groups and logical volumes."
18691 msgstr ""
18692
18693 #. type: =head2
18694 #: ../src/guestfs-actions.pod:7469
18695 msgid "guestfs_vguuid"
18696 msgstr ""
18697
18698 #. type: verbatim
18699 #: ../src/guestfs-actions.pod:7471
18700 #, no-wrap
18701 msgid ""
18702 " char *\n"
18703 " guestfs_vguuid (guestfs_h *g,\n"
18704 "                 const char *vgname);\n"
18705 "\n"
18706 msgstr ""
18707
18708 #. type: textblock
18709 #: ../src/guestfs-actions.pod:7475 ../fish/guestfish-actions.pod:4967
18710 msgid "This command returns the UUID of the LVM VG named C<vgname>."
18711 msgstr ""
18712
18713 #. type: =head2
18714 #: ../src/guestfs-actions.pod:7482
18715 msgid "guestfs_wait_ready"
18716 msgstr ""
18717
18718 #. type: verbatim
18719 #: ../src/guestfs-actions.pod:7484
18720 #, no-wrap
18721 msgid ""
18722 " int\n"
18723 " guestfs_wait_ready (guestfs_h *g);\n"
18724 "\n"
18725 msgstr ""
18726
18727 #. type: textblock
18728 #: ../src/guestfs-actions.pod:7487
18729 msgid "This function is a no op."
18730 msgstr ""
18731
18732 #. type: textblock
18733 #: ../src/guestfs-actions.pod:7489
18734 msgid ""
18735 "In versions of the API E<lt> 1.0.71 you had to call this function just after "
18736 "calling C<guestfs_launch> to wait for the launch to complete.  However this "
18737 "is no longer necessary because C<guestfs_launch> now does the waiting."
18738 msgstr ""
18739
18740 #. type: textblock
18741 #: ../src/guestfs-actions.pod:7494
18742 msgid ""
18743 "If you see any calls to this function in code then you can just remove them, "
18744 "unless you want to retain compatibility with older versions of the API."
18745 msgstr ""
18746
18747 #. type: textblock
18748 #: ../src/guestfs-actions.pod:7500
18749 msgid ""
18750 "This function is deprecated.  In new code, use the C<launch> call instead."
18751 msgstr ""
18752
18753 #. type: =head2
18754 #: ../src/guestfs-actions.pod:7509
18755 msgid "guestfs_wc_c"
18756 msgstr ""
18757
18758 #. type: verbatim
18759 #: ../src/guestfs-actions.pod:7511
18760 #, no-wrap
18761 msgid ""
18762 " int\n"
18763 " guestfs_wc_c (guestfs_h *g,\n"
18764 "               const char *path);\n"
18765 "\n"
18766 msgstr ""
18767
18768 #. type: textblock
18769 #: ../src/guestfs-actions.pod:7515 ../fish/guestfish-actions.pod:4973
18770 msgid ""
18771 "This command counts the characters in a file, using the C<wc -c> external "
18772 "command."
18773 msgstr ""
18774
18775 #. type: =head2
18776 #: ../src/guestfs-actions.pod:7522
18777 msgid "guestfs_wc_l"
18778 msgstr ""
18779
18780 #. type: verbatim
18781 #: ../src/guestfs-actions.pod:7524
18782 #, no-wrap
18783 msgid ""
18784 " int\n"
18785 " guestfs_wc_l (guestfs_h *g,\n"
18786 "               const char *path);\n"
18787 "\n"
18788 msgstr ""
18789
18790 #. type: textblock
18791 #: ../src/guestfs-actions.pod:7528 ../fish/guestfish-actions.pod:4980
18792 msgid ""
18793 "This command counts the lines in a file, using the C<wc -l> external command."
18794 msgstr ""
18795
18796 #. type: =head2
18797 #: ../src/guestfs-actions.pod:7535
18798 msgid "guestfs_wc_w"
18799 msgstr ""
18800
18801 #. type: verbatim
18802 #: ../src/guestfs-actions.pod:7537
18803 #, no-wrap
18804 msgid ""
18805 " int\n"
18806 " guestfs_wc_w (guestfs_h *g,\n"
18807 "               const char *path);\n"
18808 "\n"
18809 msgstr ""
18810
18811 #. type: textblock
18812 #: ../src/guestfs-actions.pod:7541 ../fish/guestfish-actions.pod:4987
18813 msgid ""
18814 "This command counts the words in a file, using the C<wc -w> external command."
18815 msgstr ""
18816
18817 #. type: =head2
18818 #: ../src/guestfs-actions.pod:7548
18819 msgid "guestfs_write"
18820 msgstr ""
18821
18822 #. type: verbatim
18823 #: ../src/guestfs-actions.pod:7550
18824 #, no-wrap
18825 msgid ""
18826 " int\n"
18827 " guestfs_write (guestfs_h *g,\n"
18828 "                const char *path,\n"
18829 "                const char *content,\n"
18830 "                size_t content_size);\n"
18831 "\n"
18832 msgstr ""
18833
18834 #. type: textblock
18835 #: ../src/guestfs-actions.pod:7556 ../fish/guestfish-actions.pod:4994
18836 msgid ""
18837 "This call creates a file called C<path>.  The content of the file is the "
18838 "string C<content> (which can contain any 8 bit data)."
18839 msgstr ""
18840
18841 #. type: =head2
18842 #: ../src/guestfs-actions.pod:7566
18843 msgid "guestfs_write_file"
18844 msgstr ""
18845
18846 #. type: verbatim
18847 #: ../src/guestfs-actions.pod:7568
18848 #, no-wrap
18849 msgid ""
18850 " int\n"
18851 " guestfs_write_file (guestfs_h *g,\n"
18852 "                     const char *path,\n"
18853 "                     const char *content,\n"
18854 "                     int size);\n"
18855 "\n"
18856 msgstr ""
18857
18858 #. type: textblock
18859 #: ../src/guestfs-actions.pod:7574 ../fish/guestfish-actions.pod:5004
18860 msgid ""
18861 "This call creates a file called C<path>.  The contents of the file is the "
18862 "string C<content> (which can contain any 8 bit data), with length C<size>."
18863 msgstr ""
18864
18865 #. type: textblock
18866 #: ../src/guestfs-actions.pod:7578 ../fish/guestfish-actions.pod:5008
18867 msgid ""
18868 "As a special case, if C<size> is C<0> then the length is calculated using "
18869 "C<strlen> (so in this case the content cannot contain embedded ASCII NULs)."
18870 msgstr ""
18871
18872 #. type: textblock
18873 #: ../src/guestfs-actions.pod:7582 ../fish/guestfish-actions.pod:5012
18874 msgid ""
18875 "I<NB.> Owing to a bug, writing content containing ASCII NUL characters does "
18876 "I<not> work, even if the length is specified."
18877 msgstr ""
18878
18879 #. type: textblock
18880 #: ../src/guestfs-actions.pod:7590 ../fish/guestfish-actions.pod:5018
18881 msgid ""
18882 "This function is deprecated.  In new code, use the C<write> call instead."
18883 msgstr ""
18884
18885 #. type: =head2
18886 #: ../src/guestfs-actions.pod:7599
18887 msgid "guestfs_zegrep"
18888 msgstr ""
18889
18890 #. type: verbatim
18891 #: ../src/guestfs-actions.pod:7601
18892 #, no-wrap
18893 msgid ""
18894 " char **\n"
18895 " guestfs_zegrep (guestfs_h *g,\n"
18896 "                 const char *regex,\n"
18897 "                 const char *path);\n"
18898 "\n"
18899 msgstr ""
18900
18901 #. type: textblock
18902 #: ../src/guestfs-actions.pod:7606 ../fish/guestfish-actions.pod:5029
18903 msgid ""
18904 "This calls the external C<zegrep> program and returns the matching lines."
18905 msgstr ""
18906
18907 #. type: =head2
18908 #: ../src/guestfs-actions.pod:7618
18909 msgid "guestfs_zegrepi"
18910 msgstr ""
18911
18912 #. type: verbatim
18913 #: ../src/guestfs-actions.pod:7620
18914 #, no-wrap
18915 msgid ""
18916 " char **\n"
18917 " guestfs_zegrepi (guestfs_h *g,\n"
18918 "                  const char *regex,\n"
18919 "                  const char *path);\n"
18920 "\n"
18921 msgstr ""
18922
18923 #. type: textblock
18924 #: ../src/guestfs-actions.pod:7625 ../fish/guestfish-actions.pod:5039
18925 msgid ""
18926 "This calls the external C<zegrep -i> program and returns the matching lines."
18927 msgstr ""
18928
18929 #. type: =head2
18930 #: ../src/guestfs-actions.pod:7637
18931 msgid "guestfs_zero"
18932 msgstr ""
18933
18934 #. type: verbatim
18935 #: ../src/guestfs-actions.pod:7639
18936 #, no-wrap
18937 msgid ""
18938 " int\n"
18939 " guestfs_zero (guestfs_h *g,\n"
18940 "               const char *device);\n"
18941 "\n"
18942 msgstr ""
18943
18944 #. type: textblock
18945 #: ../src/guestfs-actions.pod:7643 ../fish/guestfish-actions.pod:5049
18946 msgid "This command writes zeroes over the first few blocks of C<device>."
18947 msgstr ""
18948
18949 #. type: textblock
18950 #: ../src/guestfs-actions.pod:7645 ../fish/guestfish-actions.pod:5051
18951 msgid ""
18952 "How many blocks are zeroed isn't specified (but it's I<not> enough to "
18953 "securely wipe the device).  It should be sufficient to remove any partition "
18954 "tables, filesystem superblocks and so on."
18955 msgstr ""
18956
18957 #. type: textblock
18958 #: ../src/guestfs-actions.pod:7649
18959 msgid ""
18960 "See also: C<guestfs_zero_device>, C<guestfs_scrub_device>, "
18961 "C<guestfs_is_zero_device>"
18962 msgstr ""
18963
18964 #. type: =head2
18965 #: ../src/guestfs-actions.pod:7661
18966 msgid "guestfs_zero_device"
18967 msgstr ""
18968
18969 #. type: verbatim
18970 #: ../src/guestfs-actions.pod:7663
18971 #, no-wrap
18972 msgid ""
18973 " int\n"
18974 " guestfs_zero_device (guestfs_h *g,\n"
18975 "                      const char *device);\n"
18976 "\n"
18977 msgstr ""
18978
18979 #. type: textblock
18980 #: ../src/guestfs-actions.pod:7667
18981 msgid ""
18982 "This command writes zeroes over the entire C<device>.  Compare with "
18983 "C<guestfs_zero> which just zeroes the first few blocks of a device."
18984 msgstr ""
18985
18986 #. type: textblock
18987 #: ../src/guestfs-actions.pod:7681
18988 msgid "(Added in 1.3.1)"
18989 msgstr ""
18990
18991 #. type: =head2
18992 #: ../src/guestfs-actions.pod:7683
18993 msgid "guestfs_zerofree"
18994 msgstr ""
18995
18996 #. type: verbatim
18997 #: ../src/guestfs-actions.pod:7685
18998 #, no-wrap
18999 msgid ""
19000 " int\n"
19001 " guestfs_zerofree (guestfs_h *g,\n"
19002 "                   const char *device);\n"
19003 "\n"
19004 msgstr ""
19005
19006 #. type: textblock
19007 #: ../src/guestfs-actions.pod:7689 ../fish/guestfish-actions.pod:5073
19008 msgid ""
19009 "This runs the I<zerofree> program on C<device>.  This program claims to zero "
19010 "unused inodes and disk blocks on an ext2/3 filesystem, thus making it "
19011 "possible to compress the filesystem more effectively."
19012 msgstr ""
19013
19014 #. type: textblock
19015 #: ../src/guestfs-actions.pod:7694 ../fish/guestfish-actions.pod:5078
19016 msgid "You should B<not> run this program if the filesystem is mounted."
19017 msgstr ""
19018
19019 #. type: textblock
19020 #: ../src/guestfs-actions.pod:7697 ../fish/guestfish-actions.pod:5081
19021 msgid ""
19022 "It is possible that using this program can damage the filesystem or data on "
19023 "the filesystem."
19024 msgstr ""
19025
19026 #. type: =head2
19027 #: ../src/guestfs-actions.pod:7704
19028 msgid "guestfs_zfgrep"
19029 msgstr ""
19030
19031 #. type: verbatim
19032 #: ../src/guestfs-actions.pod:7706
19033 #, no-wrap
19034 msgid ""
19035 " char **\n"
19036 " guestfs_zfgrep (guestfs_h *g,\n"
19037 "                 const char *pattern,\n"
19038 "                 const char *path);\n"
19039 "\n"
19040 msgstr ""
19041
19042 #. type: textblock
19043 #: ../src/guestfs-actions.pod:7711 ../fish/guestfish-actions.pod:5088
19044 msgid ""
19045 "This calls the external C<zfgrep> program and returns the matching lines."
19046 msgstr ""
19047
19048 #. type: =head2
19049 #: ../src/guestfs-actions.pod:7723
19050 msgid "guestfs_zfgrepi"
19051 msgstr ""
19052
19053 #. type: verbatim
19054 #: ../src/guestfs-actions.pod:7725
19055 #, no-wrap
19056 msgid ""
19057 " char **\n"
19058 " guestfs_zfgrepi (guestfs_h *g,\n"
19059 "                  const char *pattern,\n"
19060 "                  const char *path);\n"
19061 "\n"
19062 msgstr ""
19063
19064 #. type: textblock
19065 #: ../src/guestfs-actions.pod:7730 ../fish/guestfish-actions.pod:5098
19066 msgid ""
19067 "This calls the external C<zfgrep -i> program and returns the matching lines."
19068 msgstr ""
19069
19070 #. type: =head2
19071 #: ../src/guestfs-actions.pod:7742
19072 msgid "guestfs_zfile"
19073 msgstr ""
19074
19075 #. type: verbatim
19076 #: ../src/guestfs-actions.pod:7744
19077 #, no-wrap
19078 msgid ""
19079 " char *\n"
19080 " guestfs_zfile (guestfs_h *g,\n"
19081 "                const char *meth,\n"
19082 "                const char *path);\n"
19083 "\n"
19084 msgstr ""
19085
19086 #. type: textblock
19087 #: ../src/guestfs-actions.pod:7749 ../fish/guestfish-actions.pod:5108
19088 msgid ""
19089 "This command runs C<file> after first decompressing C<path> using C<method>."
19090 msgstr ""
19091
19092 #. type: textblock
19093 #: ../src/guestfs-actions.pod:7752 ../fish/guestfish-actions.pod:5111
19094 msgid "C<method> must be one of C<gzip>, C<compress> or C<bzip2>."
19095 msgstr ""
19096
19097 #. type: textblock
19098 #: ../src/guestfs-actions.pod:7754
19099 msgid ""
19100 "Since 1.0.63, use C<guestfs_file> instead which can now process compressed "
19101 "files."
19102 msgstr ""
19103
19104 #. type: textblock
19105 #: ../src/guestfs-actions.pod:7760 ../fish/guestfish-actions.pod:5116
19106 msgid ""
19107 "This function is deprecated.  In new code, use the C<file> call instead."
19108 msgstr ""
19109
19110 #. type: =head2
19111 #: ../src/guestfs-actions.pod:7769
19112 msgid "guestfs_zgrep"
19113 msgstr ""
19114
19115 #. type: verbatim
19116 #: ../src/guestfs-actions.pod:7771
19117 #, no-wrap
19118 msgid ""
19119 " char **\n"
19120 " guestfs_zgrep (guestfs_h *g,\n"
19121 "                const char *regex,\n"
19122 "                const char *path);\n"
19123 "\n"
19124 msgstr ""
19125
19126 #. type: textblock
19127 #: ../src/guestfs-actions.pod:7776 ../fish/guestfish-actions.pod:5127
19128 msgid ""
19129 "This calls the external C<zgrep> program and returns the matching lines."
19130 msgstr ""
19131
19132 #. type: =head2
19133 #: ../src/guestfs-actions.pod:7788
19134 msgid "guestfs_zgrepi"
19135 msgstr ""
19136
19137 #. type: verbatim
19138 #: ../src/guestfs-actions.pod:7790
19139 #, no-wrap
19140 msgid ""
19141 " char **\n"
19142 " guestfs_zgrepi (guestfs_h *g,\n"
19143 "                 const char *regex,\n"
19144 "                 const char *path);\n"
19145 "\n"
19146 msgstr ""
19147
19148 #. type: textblock
19149 #: ../src/guestfs-actions.pod:7795 ../fish/guestfish-actions.pod:5137
19150 msgid ""
19151 "This calls the external C<zgrep -i> program and returns the matching lines."
19152 msgstr ""
19153
19154 #. type: =item
19155 #: ../src/guestfs-availability.pod:3
19156 msgid "B<augeas>"
19157 msgstr ""
19158
19159 #. type: textblock
19160 #: ../src/guestfs-availability.pod:5
19161 msgid ""
19162 "The following functions: L</guestfs_aug_clear> L</guestfs_aug_close> L</"
19163 "guestfs_aug_defnode> L</guestfs_aug_defvar> L</guestfs_aug_get> L</"
19164 "guestfs_aug_init> L</guestfs_aug_insert> L</guestfs_aug_load> L</"
19165 "guestfs_aug_ls> L</guestfs_aug_match> L</guestfs_aug_mv> L</guestfs_aug_rm> "
19166 "L</guestfs_aug_save> L</guestfs_aug_set>"
19167 msgstr ""
19168
19169 #. type: =item
19170 #: ../src/guestfs-availability.pod:21
19171 msgid "B<inotify>"
19172 msgstr ""
19173
19174 #. type: textblock
19175 #: ../src/guestfs-availability.pod:23
19176 msgid ""
19177 "The following functions: L</guestfs_inotify_add_watch> L</"
19178 "guestfs_inotify_close> L</guestfs_inotify_files> L</guestfs_inotify_init> L</"
19179 "guestfs_inotify_read> L</guestfs_inotify_rm_watch>"
19180 msgstr ""
19181
19182 #. type: =item
19183 #: ../src/guestfs-availability.pod:31
19184 msgid "B<linuxfsuuid>"
19185 msgstr ""
19186
19187 #. type: textblock
19188 #: ../src/guestfs-availability.pod:33
19189 msgid ""
19190 "The following functions: L</guestfs_mke2fs_JU> L</guestfs_mke2journal_U> L</"
19191 "guestfs_mkswap_U> L</guestfs_swapoff_uuid> L</guestfs_swapon_uuid>"
19192 msgstr ""
19193
19194 #. type: =item
19195 #: ../src/guestfs-availability.pod:40
19196 msgid "B<linuxmodules>"
19197 msgstr ""
19198
19199 #. type: textblock
19200 #: ../src/guestfs-availability.pod:42
19201 msgid "The following functions: L</guestfs_modprobe>"
19202 msgstr ""
19203
19204 #. type: =item
19205 #: ../src/guestfs-availability.pod:45
19206 msgid "B<linuxxattrs>"
19207 msgstr ""
19208
19209 #. type: textblock
19210 #: ../src/guestfs-availability.pod:47
19211 msgid ""
19212 "The following functions: L</guestfs_getxattr> L</guestfs_getxattrs> L</"
19213 "guestfs_lgetxattr> L</guestfs_lgetxattrs> L</guestfs_lremovexattr> L</"
19214 "guestfs_lsetxattr> L</guestfs_lxattrlist> L</guestfs_removexattr> L</"
19215 "guestfs_setxattr>"
19216 msgstr ""
19217
19218 #. type: =item
19219 #: ../src/guestfs-availability.pod:58
19220 msgid "B<luks>"
19221 msgstr ""
19222
19223 #. type: textblock
19224 #: ../src/guestfs-availability.pod:60
19225 msgid ""
19226 "The following functions: L</guestfs_luks_add_key> L</guestfs_luks_close> L</"
19227 "guestfs_luks_format> L</guestfs_luks_format_cipher> L</"
19228 "guestfs_luks_kill_slot> L</guestfs_luks_open> L</guestfs_luks_open_ro>"
19229 msgstr ""
19230
19231 #. type: =item
19232 #: ../src/guestfs-availability.pod:69
19233 msgid "B<lvm2>"
19234 msgstr ""
19235
19236 #. type: textblock
19237 #: ../src/guestfs-availability.pod:71
19238 msgid ""
19239 "The following functions: L</guestfs_is_lv> L</guestfs_lvcreate> L</"
19240 "guestfs_lvm_remove_all> L</guestfs_lvm_set_filter> L</guestfs_lvremove> L</"
19241 "guestfs_lvresize> L</guestfs_lvresize_free> L</guestfs_lvs> L</"
19242 "guestfs_lvs_full> L</guestfs_pvcreate> L</guestfs_pvremove> L</"
19243 "guestfs_pvresize> L</guestfs_pvresize_size> L</guestfs_pvs> L</"
19244 "guestfs_pvs_full> L</guestfs_vg_activate> L</guestfs_vg_activate_all> L</"
19245 "guestfs_vgcreate> L</guestfs_vgremove> L</guestfs_vgs> L</guestfs_vgs_full>"
19246 msgstr ""
19247
19248 #. type: =item
19249 #: ../src/guestfs-availability.pod:94
19250 msgid "B<mknod>"
19251 msgstr ""
19252
19253 #. type: textblock
19254 #: ../src/guestfs-availability.pod:96
19255 msgid ""
19256 "The following functions: L</guestfs_mkfifo> L</guestfs_mknod> L</"
19257 "guestfs_mknod_b> L</guestfs_mknod_c>"
19258 msgstr ""
19259
19260 #. type: =item
19261 #: ../src/guestfs-availability.pod:102
19262 msgid "B<ntfs3g>"
19263 msgstr ""
19264
19265 #. type: textblock
19266 #: ../src/guestfs-availability.pod:104
19267 msgid "The following functions: L</guestfs_ntfs_3g_probe>"
19268 msgstr ""
19269
19270 #. type: =item
19271 #: ../src/guestfs-availability.pod:107
19272 msgid "B<ntfsprogs>"
19273 msgstr ""
19274
19275 #. type: textblock
19276 #: ../src/guestfs-availability.pod:109
19277 msgid ""
19278 "The following functions: L</guestfs_ntfsresize> L</guestfs_ntfsresize_opts> "
19279 "L</guestfs_ntfsresize_size>"
19280 msgstr ""
19281
19282 #. type: =item
19283 #: ../src/guestfs-availability.pod:114
19284 msgid "B<realpath>"
19285 msgstr ""
19286
19287 #. type: textblock
19288 #: ../src/guestfs-availability.pod:116
19289 msgid "The following functions: L</guestfs_realpath>"
19290 msgstr ""
19291
19292 #. type: =item
19293 #: ../src/guestfs-availability.pod:119
19294 msgid "B<scrub>"
19295 msgstr ""
19296
19297 #. type: textblock
19298 #: ../src/guestfs-availability.pod:121
19299 msgid ""
19300 "The following functions: L</guestfs_scrub_device> L</guestfs_scrub_file> L</"
19301 "guestfs_scrub_freespace>"
19302 msgstr ""
19303
19304 #. type: =item
19305 #: ../src/guestfs-availability.pod:126
19306 msgid "B<selinux>"
19307 msgstr ""
19308
19309 #. type: textblock
19310 #: ../src/guestfs-availability.pod:128
19311 msgid "The following functions: L</guestfs_getcon> L</guestfs_setcon>"
19312 msgstr ""
19313
19314 #. type: =item
19315 #: ../src/guestfs-availability.pod:132
19316 msgid "B<xz>"
19317 msgstr ""
19318
19319 #. type: textblock
19320 #: ../src/guestfs-availability.pod:134
19321 msgid "The following functions: L</guestfs_txz_in> L</guestfs_txz_out>"
19322 msgstr ""
19323
19324 #. type: =item
19325 #: ../src/guestfs-availability.pod:138
19326 msgid "B<zerofree>"
19327 msgstr ""
19328
19329 #. type: textblock
19330 #: ../src/guestfs-availability.pod:140
19331 msgid "The following functions: L</guestfs_zerofree>"
19332 msgstr ""
19333
19334 #. type: =head2
19335 #: ../src/guestfs-structs.pod:1
19336 msgid "guestfs_int_bool"
19337 msgstr ""
19338
19339 #. type: verbatim
19340 #: ../src/guestfs-structs.pod:3
19341 #, no-wrap
19342 msgid ""
19343 " struct guestfs_int_bool {\n"
19344 "   int32_t i;\n"
19345 "   int32_t b;\n"
19346 " };\n"
19347 " \n"
19348 msgstr ""
19349
19350 #. type: verbatim
19351 #: ../src/guestfs-structs.pod:8
19352 #, no-wrap
19353 msgid ""
19354 " struct guestfs_int_bool_list {\n"
19355 "   uint32_t len; /* Number of elements in list. */\n"
19356 "   struct guestfs_int_bool *val; /* Elements. */\n"
19357 " };\n"
19358 " \n"
19359 msgstr ""
19360
19361 #. type: verbatim
19362 #: ../src/guestfs-structs.pod:13
19363 #, no-wrap
19364 msgid ""
19365 " void guestfs_free_int_bool (struct guestfs_free_int_bool *);\n"
19366 " void guestfs_free_int_bool_list (struct guestfs_free_int_bool_list *);\n"
19367 "\n"
19368 msgstr ""
19369
19370 #. type: =head2
19371 #: ../src/guestfs-structs.pod:16
19372 msgid "guestfs_lvm_pv"
19373 msgstr ""
19374
19375 #. type: verbatim
19376 #: ../src/guestfs-structs.pod:18
19377 #, no-wrap
19378 msgid ""
19379 " struct guestfs_lvm_pv {\n"
19380 "   char *pv_name;\n"
19381 "   /* The next field is NOT nul-terminated, be careful when printing it: */\n"
19382 "   char pv_uuid[32];\n"
19383 "   char *pv_fmt;\n"
19384 "   uint64_t pv_size;\n"
19385 "   uint64_t dev_size;\n"
19386 "   uint64_t pv_free;\n"
19387 "   uint64_t pv_used;\n"
19388 "   char *pv_attr;\n"
19389 "   int64_t pv_pe_count;\n"
19390 "   int64_t pv_pe_alloc_count;\n"
19391 "   char *pv_tags;\n"
19392 "   uint64_t pe_start;\n"
19393 "   int64_t pv_mda_count;\n"
19394 "   uint64_t pv_mda_free;\n"
19395 " };\n"
19396 " \n"
19397 msgstr ""
19398
19399 #. type: verbatim
19400 #: ../src/guestfs-structs.pod:36
19401 #, no-wrap
19402 msgid ""
19403 " struct guestfs_lvm_pv_list {\n"
19404 "   uint32_t len; /* Number of elements in list. */\n"
19405 "   struct guestfs_lvm_pv *val; /* Elements. */\n"
19406 " };\n"
19407 " \n"
19408 msgstr ""
19409
19410 #. type: verbatim
19411 #: ../src/guestfs-structs.pod:41
19412 #, no-wrap
19413 msgid ""
19414 " void guestfs_free_lvm_pv (struct guestfs_free_lvm_pv *);\n"
19415 " void guestfs_free_lvm_pv_list (struct guestfs_free_lvm_pv_list *);\n"
19416 "\n"
19417 msgstr ""
19418
19419 #. type: =head2
19420 #: ../src/guestfs-structs.pod:44
19421 msgid "guestfs_lvm_vg"
19422 msgstr ""
19423
19424 #. type: verbatim
19425 #: ../src/guestfs-structs.pod:46
19426 #, no-wrap
19427 msgid ""
19428 " struct guestfs_lvm_vg {\n"
19429 "   char *vg_name;\n"
19430 "   /* The next field is NOT nul-terminated, be careful when printing it: */\n"
19431 "   char vg_uuid[32];\n"
19432 "   char *vg_fmt;\n"
19433 "   char *vg_attr;\n"
19434 "   uint64_t vg_size;\n"
19435 "   uint64_t vg_free;\n"
19436 "   char *vg_sysid;\n"
19437 "   uint64_t vg_extent_size;\n"
19438 "   int64_t vg_extent_count;\n"
19439 "   int64_t vg_free_count;\n"
19440 "   int64_t max_lv;\n"
19441 "   int64_t max_pv;\n"
19442 "   int64_t pv_count;\n"
19443 "   int64_t lv_count;\n"
19444 "   int64_t snap_count;\n"
19445 "   int64_t vg_seqno;\n"
19446 "   char *vg_tags;\n"
19447 "   int64_t vg_mda_count;\n"
19448 "   uint64_t vg_mda_free;\n"
19449 " };\n"
19450 " \n"
19451 msgstr ""
19452
19453 #. type: verbatim
19454 #: ../src/guestfs-structs.pod:69
19455 #, no-wrap
19456 msgid ""
19457 " struct guestfs_lvm_vg_list {\n"
19458 "   uint32_t len; /* Number of elements in list. */\n"
19459 "   struct guestfs_lvm_vg *val; /* Elements. */\n"
19460 " };\n"
19461 " \n"
19462 msgstr ""
19463
19464 #. type: verbatim
19465 #: ../src/guestfs-structs.pod:74
19466 #, no-wrap
19467 msgid ""
19468 " void guestfs_free_lvm_vg (struct guestfs_free_lvm_vg *);\n"
19469 " void guestfs_free_lvm_vg_list (struct guestfs_free_lvm_vg_list *);\n"
19470 "\n"
19471 msgstr ""
19472
19473 #. type: =head2
19474 #: ../src/guestfs-structs.pod:77
19475 msgid "guestfs_lvm_lv"
19476 msgstr ""
19477
19478 #. type: verbatim
19479 #: ../src/guestfs-structs.pod:79
19480 #, no-wrap
19481 msgid ""
19482 " struct guestfs_lvm_lv {\n"
19483 "   char *lv_name;\n"
19484 "   /* The next field is NOT nul-terminated, be careful when printing it: */\n"
19485 "   char lv_uuid[32];\n"
19486 "   char *lv_attr;\n"
19487 "   int64_t lv_major;\n"
19488 "   int64_t lv_minor;\n"
19489 "   int64_t lv_kernel_major;\n"
19490 "   int64_t lv_kernel_minor;\n"
19491 "   uint64_t lv_size;\n"
19492 "   int64_t seg_count;\n"
19493 "   char *origin;\n"
19494 "   /* The next field is [0..100] or -1 meaning 'not present': */\n"
19495 "   float snap_percent;\n"
19496 "   /* The next field is [0..100] or -1 meaning 'not present': */\n"
19497 "   float copy_percent;\n"
19498 "   char *move_pv;\n"
19499 "   char *lv_tags;\n"
19500 "   char *mirror_log;\n"
19501 "   char *modules;\n"
19502 " };\n"
19503 " \n"
19504 msgstr ""
19505
19506 #. type: verbatim
19507 #: ../src/guestfs-structs.pod:101
19508 #, no-wrap
19509 msgid ""
19510 " struct guestfs_lvm_lv_list {\n"
19511 "   uint32_t len; /* Number of elements in list. */\n"
19512 "   struct guestfs_lvm_lv *val; /* Elements. */\n"
19513 " };\n"
19514 " \n"
19515 msgstr ""
19516
19517 #. type: verbatim
19518 #: ../src/guestfs-structs.pod:106
19519 #, no-wrap
19520 msgid ""
19521 " void guestfs_free_lvm_lv (struct guestfs_free_lvm_lv *);\n"
19522 " void guestfs_free_lvm_lv_list (struct guestfs_free_lvm_lv_list *);\n"
19523 "\n"
19524 msgstr ""
19525
19526 #. type: verbatim
19527 #: ../src/guestfs-structs.pod:111
19528 #, no-wrap
19529 msgid ""
19530 " struct guestfs_stat {\n"
19531 "   int64_t dev;\n"
19532 "   int64_t ino;\n"
19533 "   int64_t mode;\n"
19534 "   int64_t nlink;\n"
19535 "   int64_t uid;\n"
19536 "   int64_t gid;\n"
19537 "   int64_t rdev;\n"
19538 "   int64_t size;\n"
19539 "   int64_t blksize;\n"
19540 "   int64_t blocks;\n"
19541 "   int64_t atime;\n"
19542 "   int64_t mtime;\n"
19543 "   int64_t ctime;\n"
19544 " };\n"
19545 " \n"
19546 msgstr ""
19547
19548 #. type: verbatim
19549 #: ../src/guestfs-structs.pod:127
19550 #, no-wrap
19551 msgid ""
19552 " struct guestfs_stat_list {\n"
19553 "   uint32_t len; /* Number of elements in list. */\n"
19554 "   struct guestfs_stat *val; /* Elements. */\n"
19555 " };\n"
19556 " \n"
19557 msgstr ""
19558
19559 #. type: verbatim
19560 #: ../src/guestfs-structs.pod:132
19561 #, no-wrap
19562 msgid ""
19563 " void guestfs_free_stat (struct guestfs_free_stat *);\n"
19564 " void guestfs_free_stat_list (struct guestfs_free_stat_list *);\n"
19565 "\n"
19566 msgstr ""
19567
19568 #. type: verbatim
19569 #: ../src/guestfs-structs.pod:137
19570 #, no-wrap
19571 msgid ""
19572 " struct guestfs_statvfs {\n"
19573 "   int64_t bsize;\n"
19574 "   int64_t frsize;\n"
19575 "   int64_t blocks;\n"
19576 "   int64_t bfree;\n"
19577 "   int64_t bavail;\n"
19578 "   int64_t files;\n"
19579 "   int64_t ffree;\n"
19580 "   int64_t favail;\n"
19581 "   int64_t fsid;\n"
19582 "   int64_t flag;\n"
19583 "   int64_t namemax;\n"
19584 " };\n"
19585 " \n"
19586 msgstr ""
19587
19588 #. type: verbatim
19589 #: ../src/guestfs-structs.pod:151
19590 #, no-wrap
19591 msgid ""
19592 " struct guestfs_statvfs_list {\n"
19593 "   uint32_t len; /* Number of elements in list. */\n"
19594 "   struct guestfs_statvfs *val; /* Elements. */\n"
19595 " };\n"
19596 " \n"
19597 msgstr ""
19598
19599 #. type: verbatim
19600 #: ../src/guestfs-structs.pod:156
19601 #, no-wrap
19602 msgid ""
19603 " void guestfs_free_statvfs (struct guestfs_free_statvfs *);\n"
19604 " void guestfs_free_statvfs_list (struct guestfs_free_statvfs_list *);\n"
19605 "\n"
19606 msgstr ""
19607
19608 #. type: =head2
19609 #: ../src/guestfs-structs.pod:159
19610 msgid "guestfs_dirent"
19611 msgstr ""
19612
19613 #. type: verbatim
19614 #: ../src/guestfs-structs.pod:161
19615 #, no-wrap
19616 msgid ""
19617 " struct guestfs_dirent {\n"
19618 "   int64_t ino;\n"
19619 "   char ftyp;\n"
19620 "   char *name;\n"
19621 " };\n"
19622 " \n"
19623 msgstr ""
19624
19625 #. type: verbatim
19626 #: ../src/guestfs-structs.pod:167
19627 #, no-wrap
19628 msgid ""
19629 " struct guestfs_dirent_list {\n"
19630 "   uint32_t len; /* Number of elements in list. */\n"
19631 "   struct guestfs_dirent *val; /* Elements. */\n"
19632 " };\n"
19633 " \n"
19634 msgstr ""
19635
19636 #. type: verbatim
19637 #: ../src/guestfs-structs.pod:172
19638 #, no-wrap
19639 msgid ""
19640 " void guestfs_free_dirent (struct guestfs_free_dirent *);\n"
19641 " void guestfs_free_dirent_list (struct guestfs_free_dirent_list *);\n"
19642 "\n"
19643 msgstr ""
19644
19645 #. type: verbatim
19646 #: ../src/guestfs-structs.pod:177
19647 #, no-wrap
19648 msgid ""
19649 " struct guestfs_version {\n"
19650 "   int64_t major;\n"
19651 "   int64_t minor;\n"
19652 "   int64_t release;\n"
19653 "   char *extra;\n"
19654 " };\n"
19655 " \n"
19656 msgstr ""
19657
19658 #. type: verbatim
19659 #: ../src/guestfs-structs.pod:184
19660 #, no-wrap
19661 msgid ""
19662 " struct guestfs_version_list {\n"
19663 "   uint32_t len; /* Number of elements in list. */\n"
19664 "   struct guestfs_version *val; /* Elements. */\n"
19665 " };\n"
19666 " \n"
19667 msgstr ""
19668
19669 #. type: verbatim
19670 #: ../src/guestfs-structs.pod:189
19671 #, no-wrap
19672 msgid ""
19673 " void guestfs_free_version (struct guestfs_free_version *);\n"
19674 " void guestfs_free_version_list (struct guestfs_free_version_list *);\n"
19675 "\n"
19676 msgstr ""
19677
19678 #. type: =head2
19679 #: ../src/guestfs-structs.pod:192
19680 msgid "guestfs_xattr"
19681 msgstr ""
19682
19683 #. type: verbatim
19684 #: ../src/guestfs-structs.pod:194
19685 #, no-wrap
19686 msgid ""
19687 " struct guestfs_xattr {\n"
19688 "   char *attrname;\n"
19689 "   /* The next two fields describe a byte array. */\n"
19690 "   uint32_t attrval_len;\n"
19691 "   char *attrval;\n"
19692 " };\n"
19693 " \n"
19694 msgstr ""
19695
19696 #. type: verbatim
19697 #: ../src/guestfs-structs.pod:201
19698 #, no-wrap
19699 msgid ""
19700 " struct guestfs_xattr_list {\n"
19701 "   uint32_t len; /* Number of elements in list. */\n"
19702 "   struct guestfs_xattr *val; /* Elements. */\n"
19703 " };\n"
19704 " \n"
19705 msgstr ""
19706
19707 #. type: verbatim
19708 #: ../src/guestfs-structs.pod:206
19709 #, no-wrap
19710 msgid ""
19711 " void guestfs_free_xattr (struct guestfs_free_xattr *);\n"
19712 " void guestfs_free_xattr_list (struct guestfs_free_xattr_list *);\n"
19713 "\n"
19714 msgstr ""
19715
19716 #. type: =head2
19717 #: ../src/guestfs-structs.pod:209
19718 msgid "guestfs_inotify_event"
19719 msgstr ""
19720
19721 #. type: verbatim
19722 #: ../src/guestfs-structs.pod:211
19723 #, no-wrap
19724 msgid ""
19725 " struct guestfs_inotify_event {\n"
19726 "   int64_t in_wd;\n"
19727 "   uint32_t in_mask;\n"
19728 "   uint32_t in_cookie;\n"
19729 "   char *in_name;\n"
19730 " };\n"
19731 " \n"
19732 msgstr ""
19733
19734 #. type: verbatim
19735 #: ../src/guestfs-structs.pod:218
19736 #, no-wrap
19737 msgid ""
19738 " struct guestfs_inotify_event_list {\n"
19739 "   uint32_t len; /* Number of elements in list. */\n"
19740 "   struct guestfs_inotify_event *val; /* Elements. */\n"
19741 " };\n"
19742 " \n"
19743 msgstr ""
19744
19745 #. type: verbatim
19746 #: ../src/guestfs-structs.pod:223
19747 #, no-wrap
19748 msgid ""
19749 " void guestfs_free_inotify_event (struct guestfs_free_inotify_event *);\n"
19750 " void guestfs_free_inotify_event_list (struct guestfs_free_inotify_event_list *);\n"
19751 "\n"
19752 msgstr ""
19753
19754 #. type: =head2
19755 #: ../src/guestfs-structs.pod:226
19756 msgid "guestfs_partition"
19757 msgstr ""
19758
19759 #. type: verbatim
19760 #: ../src/guestfs-structs.pod:228
19761 #, no-wrap
19762 msgid ""
19763 " struct guestfs_partition {\n"
19764 "   int32_t part_num;\n"
19765 "   uint64_t part_start;\n"
19766 "   uint64_t part_end;\n"
19767 "   uint64_t part_size;\n"
19768 " };\n"
19769 " \n"
19770 msgstr ""
19771
19772 #. type: verbatim
19773 #: ../src/guestfs-structs.pod:235
19774 #, no-wrap
19775 msgid ""
19776 " struct guestfs_partition_list {\n"
19777 "   uint32_t len; /* Number of elements in list. */\n"
19778 "   struct guestfs_partition *val; /* Elements. */\n"
19779 " };\n"
19780 " \n"
19781 msgstr ""
19782
19783 #. type: verbatim
19784 #: ../src/guestfs-structs.pod:240
19785 #, no-wrap
19786 msgid ""
19787 " void guestfs_free_partition (struct guestfs_free_partition *);\n"
19788 " void guestfs_free_partition_list (struct guestfs_free_partition_list *);\n"
19789 "\n"
19790 msgstr ""
19791
19792 #. type: =head2
19793 #: ../src/guestfs-structs.pod:243
19794 msgid "guestfs_application"
19795 msgstr ""
19796
19797 #. type: verbatim
19798 #: ../src/guestfs-structs.pod:245
19799 #, no-wrap
19800 msgid ""
19801 " struct guestfs_application {\n"
19802 "   char *app_name;\n"
19803 "   char *app_display_name;\n"
19804 "   int32_t app_epoch;\n"
19805 "   char *app_version;\n"
19806 "   char *app_release;\n"
19807 "   char *app_install_path;\n"
19808 "   char *app_trans_path;\n"
19809 "   char *app_publisher;\n"
19810 "   char *app_url;\n"
19811 "   char *app_source_package;\n"
19812 "   char *app_summary;\n"
19813 "   char *app_description;\n"
19814 " };\n"
19815 " \n"
19816 msgstr ""
19817
19818 #. type: verbatim
19819 #: ../src/guestfs-structs.pod:260
19820 #, no-wrap
19821 msgid ""
19822 " struct guestfs_application_list {\n"
19823 "   uint32_t len; /* Number of elements in list. */\n"
19824 "   struct guestfs_application *val; /* Elements. */\n"
19825 " };\n"
19826 " \n"
19827 msgstr ""
19828
19829 #. type: verbatim
19830 #: ../src/guestfs-structs.pod:265
19831 #, no-wrap
19832 msgid ""
19833 " void guestfs_free_application (struct guestfs_free_application *);\n"
19834 " void guestfs_free_application_list (struct guestfs_free_application_list *);\n"
19835 "\n"
19836 msgstr ""
19837
19838 #. type: textblock
19839 #: ../fish/guestfish.pod:5
19840 msgid "guestfish - the libguestfs Filesystem Interactive SHell"
19841 msgstr ""
19842
19843 #. type: verbatim
19844 #: ../fish/guestfish.pod:9
19845 #, no-wrap
19846 msgid ""
19847 " guestfish [--options] [commands]\n"
19848 "\n"
19849 msgstr ""
19850
19851 #. type: verbatim
19852 #: ../fish/guestfish.pod:11
19853 #, no-wrap
19854 msgid ""
19855 " guestfish\n"
19856 "\n"
19857 msgstr ""
19858
19859 #. type: verbatim
19860 #: ../fish/guestfish.pod:13
19861 #, no-wrap
19862 msgid ""
19863 " guestfish [--ro|--rw] -a disk.img\n"
19864 "\n"
19865 msgstr ""
19866
19867 #. type: verbatim
19868 #: ../fish/guestfish.pod:15
19869 #, no-wrap
19870 msgid ""
19871 " guestfish [--ro|--rw] -a disk.img -m dev[:mountpoint]\n"
19872 "\n"
19873 msgstr ""
19874
19875 #. type: verbatim
19876 #: ../fish/guestfish.pod:17
19877 #, no-wrap
19878 msgid ""
19879 " guestfish -d libvirt-domain\n"
19880 "\n"
19881 msgstr ""
19882
19883 #. type: verbatim
19884 #: ../fish/guestfish.pod:19
19885 #, no-wrap
19886 msgid ""
19887 " guestfish [--ro|--rw] -a disk.img -i\n"
19888 "\n"
19889 msgstr ""
19890
19891 #. type: verbatim
19892 #: ../fish/guestfish.pod:21
19893 #, no-wrap
19894 msgid ""
19895 " guestfish -d libvirt-domain -i\n"
19896 "\n"
19897 msgstr ""
19898
19899 #. type: =head1
19900 #: ../fish/guestfish.pod:23 ../fuse/guestmount.pod:15
19901 #: ../tools/virt-win-reg.pl:51 ../tools/virt-tar.pl:64
19902 msgid "WARNING"
19903 msgstr ""
19904
19905 #. type: textblock
19906 #: ../fish/guestfish.pod:25
19907 msgid ""
19908 "Using guestfish in read/write mode on live virtual machines can be "
19909 "dangerous, potentially causing disk corruption.  Use the I<--ro> (read-only) "
19910 "option to use guestfish safely if the disk image or virtual machine might be "
19911 "live."
19912 msgstr ""
19913
19914 #. type: textblock
19915 #: ../fish/guestfish.pod:32
19916 msgid ""
19917 "Guestfish is a shell and command-line tool for examining and modifying "
19918 "virtual machine filesystems.  It uses libguestfs and exposes all of the "
19919 "functionality of the guestfs API, see L<guestfs(3)>."
19920 msgstr ""
19921
19922 #. type: textblock
19923 #: ../fish/guestfish.pod:36
19924 msgid ""
19925 "Guestfish gives you structured access to the libguestfs API, from shell "
19926 "scripts or the command line or interactively.  If you want to rescue a "
19927 "broken virtual machine image, you should look at the L<virt-rescue(1)> "
19928 "command."
19929 msgstr ""
19930
19931 #. type: =head1
19932 #: ../fish/guestfish.pod:41 ../fish/guestfish.pod:949
19933 #: ../fuse/guestmount.pod:39 ../tools/virt-tar.pl:50
19934 msgid "EXAMPLES"
19935 msgstr ""
19936
19937 #. type: =head2
19938 #: ../fish/guestfish.pod:43
19939 msgid "As an interactive shell"
19940 msgstr ""
19941
19942 #. type: verbatim
19943 #: ../fish/guestfish.pod:45
19944 #, no-wrap
19945 msgid ""
19946 " $ guestfish\n"
19947 " \n"
19948 msgstr ""
19949
19950 #. type: verbatim
19951 #: ../fish/guestfish.pod:47
19952 #, no-wrap
19953 msgid ""
19954 " Welcome to guestfish, the libguestfs filesystem interactive shell for\n"
19955 " editing virtual machine filesystems.\n"
19956 " \n"
19957 msgstr ""
19958
19959 #. type: verbatim
19960 #: ../fish/guestfish.pod:50
19961 #, no-wrap
19962 msgid ""
19963 " Type: 'help' for a list of commands\n"
19964 "       'man' to read the manual\n"
19965 "       'quit' to quit the shell\n"
19966 " \n"
19967 msgstr ""
19968
19969 #. type: verbatim
19970 #: ../fish/guestfish.pod:54
19971 #, no-wrap
19972 msgid ""
19973 " ><fs> add-ro disk.img\n"
19974 " ><fs> run\n"
19975 " ><fs> list-filesystems\n"
19976 " /dev/sda1: ext4\n"
19977 " /dev/vg_guest/lv_root: ext4\n"
19978 " /dev/vg_guest/lv_swap: swap\n"
19979 " ><fs> mount /dev/vg_guest/lv_root /\n"
19980 " ><fs> cat /etc/fstab\n"
19981 " # /etc/fstab\n"
19982 " # Created by anaconda\n"
19983 " [...]\n"
19984 " ><fs> exit\n"
19985 "\n"
19986 msgstr ""
19987
19988 #. type: =head2
19989 #: ../fish/guestfish.pod:67
19990 msgid "From shell scripts"
19991 msgstr ""
19992
19993 #. type: textblock
19994 #: ../fish/guestfish.pod:69
19995 msgid "Create a new C</etc/motd> file in a guest or disk image:"
19996 msgstr ""
19997
19998 #. type: verbatim
19999 #: ../fish/guestfish.pod:71
20000 #, no-wrap
20001 msgid ""
20002 " guestfish <<_EOF_\n"
20003 " add disk.img\n"
20004 " run\n"
20005 " mount /dev/vg_guest/lv_root /\n"
20006 " write /etc/motd \"Welcome, new users\"\n"
20007 " _EOF_\n"
20008 "\n"
20009 msgstr ""
20010
20011 #. type: textblock
20012 #: ../fish/guestfish.pod:78
20013 msgid "List the LVM logical volumes in a disk image:"
20014 msgstr ""
20015
20016 #. type: verbatim
20017 #: ../fish/guestfish.pod:80
20018 #, no-wrap
20019 msgid ""
20020 " guestfish -a disk.img --ro <<_EOF_\n"
20021 " run\n"
20022 " lvs\n"
20023 " _EOF_\n"
20024 "\n"
20025 msgstr ""
20026
20027 #. type: textblock
20028 #: ../fish/guestfish.pod:85
20029 msgid "List all the filesystems in a disk image:"
20030 msgstr ""
20031
20032 #. type: verbatim
20033 #: ../fish/guestfish.pod:87
20034 #, no-wrap
20035 msgid ""
20036 " guestfish -a disk.img --ro <<_EOF_\n"
20037 " run\n"
20038 " list-filesystems\n"
20039 " _EOF_\n"
20040 "\n"
20041 msgstr ""
20042
20043 #. type: =head2
20044 #: ../fish/guestfish.pod:92
20045 msgid "On one command line"
20046 msgstr ""
20047
20048 #. type: textblock
20049 #: ../fish/guestfish.pod:94
20050 msgid "Update C</etc/resolv.conf> in a guest:"
20051 msgstr ""
20052
20053 #. type: verbatim
20054 #: ../fish/guestfish.pod:96
20055 #, no-wrap
20056 msgid ""
20057 " guestfish \\\n"
20058 "   add disk.img : run : mount /dev/vg_guest/lv_root / : \\\n"
20059 "   write /etc/resolv.conf \"nameserver 1.2.3.4\"\n"
20060 "\n"
20061 msgstr ""
20062
20063 #. type: textblock
20064 #: ../fish/guestfish.pod:100
20065 msgid "Edit C</boot/grub/grub.conf> interactively:"
20066 msgstr ""
20067
20068 #. type: verbatim
20069 #: ../fish/guestfish.pod:102
20070 #, no-wrap
20071 msgid ""
20072 " guestfish --rw --add disk.img \\\n"
20073 "   --mount /dev/vg_guest/lv_root \\\n"
20074 "   --mount /dev/sda1:/boot \\\n"
20075 "   edit /boot/grub/grub.conf\n"
20076 "\n"
20077 msgstr ""
20078
20079 #. type: =head2
20080 #: ../fish/guestfish.pod:107
20081 msgid "Mount disks automatically"
20082 msgstr ""
20083
20084 #. type: textblock
20085 #: ../fish/guestfish.pod:109
20086 msgid ""
20087 "Use the I<-i> option to automatically mount the disks from a virtual machine:"
20088 msgstr ""
20089
20090 #. type: verbatim
20091 #: ../fish/guestfish.pod:112
20092 #, no-wrap
20093 msgid ""
20094 " guestfish --ro -a disk.img -i cat /etc/group\n"
20095 "\n"
20096 msgstr ""
20097
20098 #. type: verbatim
20099 #: ../fish/guestfish.pod:114
20100 #, no-wrap
20101 msgid ""
20102 " guestfish --ro -d libvirt-domain -i cat /etc/group\n"
20103 "\n"
20104 msgstr ""
20105
20106 #. type: textblock
20107 #: ../fish/guestfish.pod:116
20108 msgid "Another way to edit C</boot/grub/grub.conf> interactively is:"
20109 msgstr ""
20110
20111 #. type: verbatim
20112 #: ../fish/guestfish.pod:118
20113 #, no-wrap
20114 msgid ""
20115 " guestfish --rw -a disk.img -i edit /boot/grub/grub.conf\n"
20116 "\n"
20117 msgstr ""
20118
20119 #. type: =head2
20120 #: ../fish/guestfish.pod:120
20121 msgid "As a script interpreter"
20122 msgstr ""
20123
20124 #. type: textblock
20125 #: ../fish/guestfish.pod:122
20126 msgid "Create a 100MB disk containing an ext2-formatted partition:"
20127 msgstr ""
20128
20129 #. type: verbatim
20130 #: ../fish/guestfish.pod:124
20131 #, no-wrap
20132 msgid ""
20133 " #!/usr/bin/guestfish -f\n"
20134 " sparse test1.img 100M\n"
20135 " run\n"
20136 " part-disk /dev/sda mbr\n"
20137 " mkfs ext2 /dev/sda1\n"
20138 "\n"
20139 msgstr ""
20140
20141 #. type: =head2
20142 #: ../fish/guestfish.pod:130
20143 msgid "Start with a prepared disk"
20144 msgstr ""
20145
20146 #. type: textblock
20147 #: ../fish/guestfish.pod:132
20148 msgid ""
20149 "An alternate way to create a 100MB disk called C<test1.img> containing a "
20150 "single ext2-formatted partition:"
20151 msgstr ""
20152
20153 #. type: verbatim
20154 #: ../fish/guestfish.pod:135
20155 #, no-wrap
20156 msgid ""
20157 " guestfish -N fs\n"
20158 "\n"
20159 msgstr ""
20160
20161 #. type: textblock
20162 #: ../fish/guestfish.pod:137
20163 msgid "To list what is available do:"
20164 msgstr ""
20165
20166 #. type: verbatim
20167 #: ../fish/guestfish.pod:139 ../fish/guestfish.pod:940
20168 #, no-wrap
20169 msgid ""
20170 " guestfish -N help | less\n"
20171 "\n"
20172 msgstr ""
20173
20174 #. type: =head2
20175 #: ../fish/guestfish.pod:141
20176 msgid "Remote control"
20177 msgstr ""
20178
20179 #. type: verbatim
20180 #: ../fish/guestfish.pod:143
20181 #, no-wrap
20182 msgid ""
20183 " eval \"`guestfish --listen`\"\n"
20184 " guestfish --remote add-ro disk.img\n"
20185 " guestfish --remote run\n"
20186 " guestfish --remote lvs\n"
20187 "\n"
20188 msgstr ""
20189
20190 #. type: =head1
20191 #: ../fish/guestfish.pod:148 ../test-tool/libguestfs-test-tool.pod:37
20192 #: ../fuse/guestmount.pod:83 ../tools/virt-win-reg.pl:96
20193 #: ../tools/virt-list-filesystems.pl:53 ../tools/virt-tar.pl:103
20194 #: ../tools/virt-make-fs.pl:153 ../tools/virt-list-partitions.pl:54
20195 msgid "OPTIONS"
20196 msgstr ""
20197
20198 #. type: =item
20199 #: ../fish/guestfish.pod:152 ../fuse/guestmount.pod:143
20200 #: ../tools/virt-win-reg.pl:104 ../tools/virt-list-filesystems.pl:61
20201 #: ../tools/virt-tar.pl:111 ../tools/virt-make-fs.pl:161
20202 #: ../tools/virt-list-partitions.pl:62
20203 msgid "B<--help>"
20204 msgstr ""
20205
20206 #. type: textblock
20207 #: ../fish/guestfish.pod:154
20208 msgid "Displays general help on options."
20209 msgstr ""
20210
20211 #. type: =item
20212 #: ../fish/guestfish.pod:156
20213 msgid "B<-h>"
20214 msgstr ""
20215
20216 #. type: =item
20217 #: ../fish/guestfish.pod:158
20218 msgid "B<--cmd-help>"
20219 msgstr ""
20220
20221 #. type: textblock
20222 #: ../fish/guestfish.pod:160
20223 msgid "Lists all available guestfish commands."
20224 msgstr ""
20225
20226 #. type: =item
20227 #: ../fish/guestfish.pod:162
20228 msgid "B<-h cmd>"
20229 msgstr ""
20230
20231 #. type: =item
20232 #: ../fish/guestfish.pod:164
20233 msgid "B<--cmd-help cmd>"
20234 msgstr ""
20235
20236 #. type: textblock
20237 #: ../fish/guestfish.pod:166
20238 msgid "Displays detailed help on a single command C<cmd>."
20239 msgstr ""
20240
20241 #. type: =item
20242 #: ../fish/guestfish.pod:168
20243 msgid "B<-a image>"
20244 msgstr ""
20245
20246 #. type: =item
20247 #: ../fish/guestfish.pod:170
20248 msgid "B<--add image>"
20249 msgstr ""
20250
20251 #. type: textblock
20252 #: ../fish/guestfish.pod:172
20253 msgid "Add a block device or virtual machine image to the shell."
20254 msgstr ""
20255
20256 #. type: textblock
20257 #: ../fish/guestfish.pod:174 ../fuse/guestmount.pod:91
20258 msgid ""
20259 "The format of the disk image is auto-detected.  To override this and force a "
20260 "particular format use the I<--format=..> option."
20261 msgstr ""
20262
20263 #. type: textblock
20264 #: ../fish/guestfish.pod:177
20265 msgid ""
20266 "Using this flag is mostly equivalent to using the C<add> command, with "
20267 "C<readonly:true> if the I<--ro> flag was given, and with C<format:...> if "
20268 "the I<--format=...> flag was given."
20269 msgstr ""
20270
20271 #. type: =item
20272 #: ../fish/guestfish.pod:181
20273 msgid "B<-c URI>"
20274 msgstr ""
20275
20276 #. type: =item
20277 #: ../fish/guestfish.pod:183
20278 msgid "B<--connect URI>"
20279 msgstr ""
20280
20281 #. type: textblock
20282 #: ../fish/guestfish.pod:185 ../fuse/guestmount.pod:96
20283 msgid ""
20284 "When used in conjunction with the I<-d> option, this specifies the libvirt "
20285 "URI to use.  The default is to use the default libvirt connection."
20286 msgstr ""
20287
20288 #. type: =item
20289 #: ../fish/guestfish.pod:189
20290 msgid "B<--csh>"
20291 msgstr ""
20292
20293 #. type: textblock
20294 #: ../fish/guestfish.pod:191
20295 msgid ""
20296 "If using the I<--listen> option and a csh-like shell, use this option.  See "
20297 "section L</REMOTE CONTROL AND CSH> below."
20298 msgstr ""
20299
20300 #. type: =item
20301 #: ../fish/guestfish.pod:194
20302 msgid "B<-d libvirt-domain>"
20303 msgstr ""
20304
20305 #. type: =item
20306 #: ../fish/guestfish.pod:196
20307 msgid "B<--domain libvirt-domain>"
20308 msgstr ""
20309
20310 #. type: textblock
20311 #: ../fish/guestfish.pod:198 ../fuse/guestmount.pod:102
20312 msgid ""
20313 "Add disks from the named libvirt domain.  If the I<--ro> option is also "
20314 "used, then any libvirt domain can be used.  However in write mode, only "
20315 "libvirt domains which are shut down can be named here."
20316 msgstr ""
20317
20318 #. type: textblock
20319 #: ../fish/guestfish.pod:202 ../fuse/guestmount.pod:106
20320 msgid "Domain UUIDs can be used instead of names."
20321 msgstr ""
20322
20323 #. type: textblock
20324 #: ../fish/guestfish.pod:204
20325 msgid ""
20326 "Using this flag is mostly equivalent to using the C<add-domain> command, "
20327 "with C<readonly:true> if the I<--ro> flag was given, and with C<format:...> "
20328 "if the I<--format:...> flag was given."
20329 msgstr ""
20330
20331 #. type: =item
20332 #: ../fish/guestfish.pod:208
20333 msgid "B<-D>"
20334 msgstr ""
20335
20336 #. type: =item
20337 #: ../fish/guestfish.pod:210
20338 msgid "B<--no-dest-paths>"
20339 msgstr ""
20340
20341 #. type: textblock
20342 #: ../fish/guestfish.pod:212
20343 msgid ""
20344 "Don't tab-complete paths on the guest filesystem.  It is useful to be able "
20345 "to hit the tab key to complete paths on the guest filesystem, but this "
20346 "causes extra \"hidden\" guestfs calls to be made, so this option is here to "
20347 "allow this feature to be disabled."
20348 msgstr ""
20349
20350 #. type: =item
20351 #: ../fish/guestfish.pod:217 ../fuse/guestmount.pod:120
20352 msgid "B<--echo-keys>"
20353 msgstr ""
20354
20355 #. type: textblock
20356 #: ../fish/guestfish.pod:219 ../fuse/guestmount.pod:122
20357 msgid ""
20358 "When prompting for keys and passphrases, guestfish normally turns echoing "
20359 "off so you cannot see what you are typing.  If you are not worried about "
20360 "Tempest attacks and there is no one else in the room you can specify this "
20361 "flag to see what you are typing."
20362 msgstr ""
20363
20364 #. type: =item
20365 #: ../fish/guestfish.pod:224
20366 msgid "B<-f file>"
20367 msgstr ""
20368
20369 #. type: =item
20370 #: ../fish/guestfish.pod:226
20371 msgid "B<--file file>"
20372 msgstr ""
20373
20374 #. type: textblock
20375 #: ../fish/guestfish.pod:228
20376 msgid "Read commands from C<file>.  To write pure guestfish scripts, use:"
20377 msgstr ""
20378
20379 #. type: verbatim
20380 #: ../fish/guestfish.pod:231
20381 #, no-wrap
20382 msgid ""
20383 " #!/usr/bin/guestfish -f\n"
20384 "\n"
20385 msgstr ""
20386
20387 #. type: =item
20388 #: ../fish/guestfish.pod:233
20389 msgid "B<--format=raw|qcow2|..>"
20390 msgstr ""
20391
20392 #. type: =item
20393 #: ../fish/guestfish.pod:235
20394 msgid "B<--format>"
20395 msgstr ""
20396
20397 #. type: textblock
20398 #: ../fish/guestfish.pod:237 ../fuse/guestmount.pod:129
20399 msgid ""
20400 "The default for the I<-a> option is to auto-detect the format of the disk "
20401 "image.  Using this forces the disk format for I<-a> options which follow on "
20402 "the command line.  Using I<--format> with no argument switches back to auto-"
20403 "detection for subsequent I<-a> options."
20404 msgstr ""
20405
20406 #. type: verbatim
20407 #: ../fish/guestfish.pod:244
20408 #, no-wrap
20409 msgid ""
20410 " guestfish --format=raw -a disk.img\n"
20411 "\n"
20412 msgstr ""
20413
20414 #. type: textblock
20415 #: ../fish/guestfish.pod:246
20416 msgid "forces raw format (no auto-detection) for C<disk.img>."
20417 msgstr ""
20418
20419 #. type: verbatim
20420 #: ../fish/guestfish.pod:248
20421 #, no-wrap
20422 msgid ""
20423 " guestfish --format=raw -a disk.img --format -a another.img\n"
20424 "\n"
20425 msgstr ""
20426
20427 #. type: textblock
20428 #: ../fish/guestfish.pod:250
20429 msgid ""
20430 "forces raw format (no auto-detection) for C<disk.img> and reverts to auto-"
20431 "detection for C<another.img>."
20432 msgstr ""
20433
20434 #. type: textblock
20435 #: ../fish/guestfish.pod:253
20436 msgid ""
20437 "If you have untrusted raw-format guest disk images, you should use this "
20438 "option to specify the disk format.  This avoids a possible security problem "
20439 "with malicious guests (CVE-2010-3851).  See also L</add-drive-opts>."
20440 msgstr ""
20441
20442 #. type: =item
20443 #: ../fish/guestfish.pod:258
20444 msgid "B<-i>"
20445 msgstr ""
20446
20447 #. type: =item
20448 #: ../fish/guestfish.pod:260
20449 msgid "B<--inspector>"
20450 msgstr ""
20451
20452 #. type: textblock
20453 #: ../fish/guestfish.pod:262 ../fuse/guestmount.pod:149
20454 msgid ""
20455 "Using L<virt-inspector(1)> code, inspect the disks looking for an operating "
20456 "system and mount filesystems as they would be mounted on the real virtual "
20457 "machine."
20458 msgstr ""
20459
20460 #. type: textblock
20461 #: ../fish/guestfish.pod:266
20462 msgid "Typical usage is either:"
20463 msgstr ""
20464
20465 #. type: verbatim
20466 #: ../fish/guestfish.pod:268
20467 #, no-wrap
20468 msgid ""
20469 " guestfish -d myguest -i\n"
20470 "\n"
20471 msgstr ""
20472
20473 #. type: textblock
20474 #: ../fish/guestfish.pod:270
20475 msgid "(for an inactive libvirt domain called I<myguest>), or:"
20476 msgstr ""
20477
20478 #. type: verbatim
20479 #: ../fish/guestfish.pod:272
20480 #, no-wrap
20481 msgid ""
20482 " guestfish --ro -d myguest -i\n"
20483 "\n"
20484 msgstr ""
20485
20486 #. type: textblock
20487 #: ../fish/guestfish.pod:274
20488 msgid "(for active domains, readonly), or specify the block device directly:"
20489 msgstr ""
20490
20491 #. type: verbatim
20492 #: ../fish/guestfish.pod:276
20493 #, no-wrap
20494 msgid ""
20495 " guestfish --rw -a /dev/Guests/MyGuest -i\n"
20496 "\n"
20497 msgstr ""
20498
20499 #. type: textblock
20500 #: ../fish/guestfish.pod:278
20501 msgid ""
20502 "Note that the command line syntax changed slightly over older versions of "
20503 "guestfish.  You can still use the old syntax:"
20504 msgstr ""
20505
20506 #. type: verbatim
20507 #: ../fish/guestfish.pod:281
20508 #, no-wrap
20509 msgid ""
20510 " guestfish [--ro] -i disk.img\n"
20511 "\n"
20512 msgstr ""
20513
20514 #. type: verbatim
20515 #: ../fish/guestfish.pod:283
20516 #, no-wrap
20517 msgid ""
20518 " guestfish [--ro] -i libvirt-domain\n"
20519 "\n"
20520 msgstr ""
20521
20522 #. type: textblock
20523 #: ../fish/guestfish.pod:285
20524 msgid ""
20525 "Using this flag is mostly equivalent to using the C<inspect-os> command and "
20526 "then using other commands to mount the filesystems that were found."
20527 msgstr ""
20528
20529 #. type: =item
20530 #: ../fish/guestfish.pod:289 ../fuse/guestmount.pod:153
20531 msgid "B<--keys-from-stdin>"
20532 msgstr ""
20533
20534 #. type: textblock
20535 #: ../fish/guestfish.pod:291 ../fuse/guestmount.pod:155
20536 msgid ""
20537 "Read key or passphrase parameters from stdin.  The default is to try to read "
20538 "passphrases from the user by opening C</dev/tty>."
20539 msgstr ""
20540
20541 #. type: =item
20542 #: ../fish/guestfish.pod:294
20543 msgid "B<--listen>"
20544 msgstr ""
20545
20546 #. type: textblock
20547 #: ../fish/guestfish.pod:296
20548 msgid ""
20549 "Fork into the background and listen for remote commands.  See section L</"
20550 "REMOTE CONTROL GUESTFISH OVER A SOCKET> below."
20551 msgstr ""
20552
20553 #. type: =item
20554 #: ../fish/guestfish.pod:299 ../fuse/guestmount.pod:158
20555 msgid "B<--live>"
20556 msgstr ""
20557
20558 #. type: textblock
20559 #: ../fish/guestfish.pod:301 ../fuse/guestmount.pod:160
20560 msgid ""
20561 "Connect to a live virtual machine.  (Experimental, see L<guestfs(3)/"
20562 "ATTACHING TO RUNNING DAEMONS>)."
20563 msgstr ""
20564
20565 #. type: =item
20566 #: ../fish/guestfish.pod:304 ../fuse/guestmount.pod:163
20567 msgid "B<-m dev[:mountpoint[:options]]>"
20568 msgstr ""
20569
20570 #. type: =item
20571 #: ../fish/guestfish.pod:306 ../fuse/guestmount.pod:165
20572 msgid "B<--mount dev[:mountpoint[:options]]>"
20573 msgstr ""
20574
20575 #. type: textblock
20576 #: ../fish/guestfish.pod:308
20577 msgid "Mount the named partition or logical volume on the given mountpoint."
20578 msgstr ""
20579
20580 #. type: textblock
20581 #: ../fish/guestfish.pod:310
20582 msgid "If the mountpoint is omitted, it defaults to C</>."
20583 msgstr ""
20584
20585 #. type: textblock
20586 #: ../fish/guestfish.pod:312
20587 msgid "You have to mount something on C</> before most commands will work."
20588 msgstr ""
20589
20590 #. type: textblock
20591 #: ../fish/guestfish.pod:314
20592 msgid ""
20593 "If any I<-m> or I<--mount> options are given, the guest is automatically "
20594 "launched."
20595 msgstr ""
20596
20597 #. type: textblock
20598 #: ../fish/guestfish.pod:317
20599 msgid ""
20600 "If you don't know what filesystems a disk image contains, you can either run "
20601 "guestfish without this option, then list the partitions, filesystems and LVs "
20602 "available (see L</list-partitions>, L</list-filesystems> and L</lvs> "
20603 "commands), or you can use the L<virt-filesystems(1)> program."
20604 msgstr ""
20605
20606 #. type: textblock
20607 #: ../fish/guestfish.pod:323 ../fuse/guestmount.pod:173
20608 msgid ""
20609 "The third (and rarely used) part of the mount parameter is the list of mount "
20610 "options used to mount the underlying filesystem.  If this is not given, then "
20611 "the mount options are either the empty string or C<ro> (the latter if the "
20612 "I<--ro> flag is used).  By specifying the mount options, you override this "
20613 "default choice.  Probably the only time you would use this is to enable ACLs "
20614 "and/or extended attributes if the filesystem can support them:"
20615 msgstr ""
20616
20617 #. type: verbatim
20618 #: ../fish/guestfish.pod:331 ../fuse/guestmount.pod:181
20619 #, no-wrap
20620 msgid ""
20621 " -m /dev/sda1:/:acl,user_xattr\n"
20622 "\n"
20623 msgstr ""
20624
20625 #. type: textblock
20626 #: ../fish/guestfish.pod:333
20627 msgid "Using this flag is equivalent to using the C<mount-options> command."
20628 msgstr ""
20629
20630 #. type: =item
20631 #: ../fish/guestfish.pod:335
20632 msgid "B<-n>"
20633 msgstr ""
20634
20635 #. type: =item
20636 #: ../fish/guestfish.pod:337
20637 msgid "B<--no-sync>"
20638 msgstr ""
20639
20640 #. type: textblock
20641 #: ../fish/guestfish.pod:339
20642 msgid ""
20643 "Disable autosync.  This is enabled by default.  See the discussion of "
20644 "autosync in the L<guestfs(3)> manpage."
20645 msgstr ""
20646
20647 #. type: =item
20648 #: ../fish/guestfish.pod:342
20649 msgid "B<-N type>"
20650 msgstr ""
20651
20652 #. type: =item
20653 #: ../fish/guestfish.pod:344
20654 msgid "B<--new type>"
20655 msgstr ""
20656
20657 #. type: =item
20658 #: ../fish/guestfish.pod:346
20659 msgid "B<-N help>"
20660 msgstr ""
20661
20662 #. type: textblock
20663 #: ../fish/guestfish.pod:348
20664 msgid ""
20665 "Prepare a fresh disk image formatted as \"type\".  This is an alternative to "
20666 "the I<-a> option: whereas I<-a> adds an existing disk, I<-N> creates a "
20667 "preformatted disk with a filesystem and adds it.  See L</PREPARED DISK "
20668 "IMAGES> below."
20669 msgstr ""
20670
20671 #. type: =item
20672 #: ../fish/guestfish.pod:353
20673 msgid "B<--progress-bars>"
20674 msgstr ""
20675
20676 #. type: textblock
20677 #: ../fish/guestfish.pod:355
20678 msgid "Enable progress bars, even when guestfish is used non-interactively."
20679 msgstr ""
20680
20681 #. type: textblock
20682 #: ../fish/guestfish.pod:357
20683 msgid ""
20684 "Progress bars are enabled by default when guestfish is used as an "
20685 "interactive shell."
20686 msgstr ""
20687
20688 #. type: =item
20689 #: ../fish/guestfish.pod:360
20690 msgid "B<--no-progress-bars>"
20691 msgstr ""
20692
20693 #. type: textblock
20694 #: ../fish/guestfish.pod:362
20695 msgid "Disable progress bars."
20696 msgstr ""
20697
20698 #. type: =item
20699 #: ../fish/guestfish.pod:364
20700 msgid "B<--remote[=pid]>"
20701 msgstr ""
20702
20703 #. type: textblock
20704 #: ../fish/guestfish.pod:366
20705 msgid ""
20706 "Send remote commands to C<$GUESTFISH_PID> or C<pid>.  See section L</REMOTE "
20707 "CONTROL GUESTFISH OVER A SOCKET> below."
20708 msgstr ""
20709
20710 #. type: =item
20711 #: ../fish/guestfish.pod:369
20712 msgid "B<-r>"
20713 msgstr ""
20714
20715 #. type: =item
20716 #: ../fish/guestfish.pod:371
20717 msgid "B<--ro>"
20718 msgstr ""
20719
20720 #. type: textblock
20721 #: ../fish/guestfish.pod:373
20722 msgid ""
20723 "This changes the I<-a>, I<-d> and I<-m> options so that disks are added and "
20724 "mounts are done read-only."
20725 msgstr ""
20726
20727 #. type: textblock
20728 #: ../fish/guestfish.pod:376
20729 msgid ""
20730 "The option must always be used if the disk image or virtual machine might be "
20731 "running, and is generally recommended in cases where you don't need write "
20732 "access to the disk."
20733 msgstr ""
20734
20735 #. type: textblock
20736 #: ../fish/guestfish.pod:380
20737 msgid ""
20738 "Note that prepared disk images created with I<-N> are not affected by this "
20739 "option.  Also commands like C<add> are not affected - you have to specify "
20740 "the C<readonly:true> option explicitly if you need it."
20741 msgstr ""
20742
20743 #. type: textblock
20744 #: ../fish/guestfish.pod:384
20745 msgid "See also L</OPENING DISKS FOR READ AND WRITE> below."
20746 msgstr ""
20747
20748 #. type: =item
20749 #: ../fish/guestfish.pod:386 ../fuse/guestmount.pod:237
20750 msgid "B<--selinux>"
20751 msgstr ""
20752
20753 #. type: textblock
20754 #: ../fish/guestfish.pod:388
20755 msgid "Enable SELinux support for the guest.  See L<guestfs(3)/SELINUX>."
20756 msgstr ""
20757
20758 #. type: =item
20759 #: ../fish/guestfish.pod:390
20760 msgid "B<-v>"
20761 msgstr ""
20762
20763 #. type: =item
20764 #: ../fish/guestfish.pod:392
20765 msgid "B<--verbose>"
20766 msgstr ""
20767
20768 #. type: textblock
20769 #: ../fish/guestfish.pod:394
20770 msgid ""
20771 "Enable very verbose messages.  This is particularly useful if you find a bug."
20772 msgstr ""
20773
20774 #. type: =item
20775 #: ../fish/guestfish.pod:397
20776 msgid "B<-V>"
20777 msgstr ""
20778
20779 #. type: =item
20780 #: ../fish/guestfish.pod:399 ../tools/virt-win-reg.pl:112
20781 #: ../tools/virt-list-filesystems.pl:69 ../tools/virt-tar.pl:119
20782 #: ../tools/virt-make-fs.pl:169 ../tools/virt-list-partitions.pl:70
20783 msgid "B<--version>"
20784 msgstr ""
20785
20786 #. type: textblock
20787 #: ../fish/guestfish.pod:401
20788 msgid "Display the guestfish / libguestfs version number and exit."
20789 msgstr ""
20790
20791 #. type: =item
20792 #: ../fish/guestfish.pod:403
20793 msgid "B<-w>"
20794 msgstr ""
20795
20796 #. type: =item
20797 #: ../fish/guestfish.pod:405
20798 msgid "B<--rw>"
20799 msgstr ""
20800
20801 #. type: textblock
20802 #: ../fish/guestfish.pod:407 ../fuse/guestmount.pod:251
20803 msgid ""
20804 "This changes the I<-a>, I<-d> and I<-m> options so that disks are added and "
20805 "mounts are done read-write."
20806 msgstr ""
20807
20808 #. type: textblock
20809 #: ../fish/guestfish.pod:410
20810 msgid "See L</OPENING DISKS FOR READ AND WRITE> below."
20811 msgstr ""
20812
20813 #. type: =item
20814 #: ../fish/guestfish.pod:412
20815 msgid "B<-x>"
20816 msgstr ""
20817
20818 #. type: textblock
20819 #: ../fish/guestfish.pod:414
20820 msgid "Echo each command before executing it."
20821 msgstr ""
20822
20823 #. type: =head1
20824 #: ../fish/guestfish.pod:418
20825 msgid "COMMANDS ON COMMAND LINE"
20826 msgstr ""
20827
20828 #. type: textblock
20829 #: ../fish/guestfish.pod:420
20830 msgid ""
20831 "Any additional (non-option) arguments are treated as commands to execute."
20832 msgstr ""
20833
20834 #. type: textblock
20835 #: ../fish/guestfish.pod:423
20836 msgid ""
20837 "Commands to execute should be separated by a colon (C<:>), where the colon "
20838 "is a separate parameter.  Thus:"
20839 msgstr ""
20840
20841 #. type: verbatim
20842 #: ../fish/guestfish.pod:426
20843 #, no-wrap
20844 msgid ""
20845 " guestfish cmd [args...] : cmd [args...] : cmd [args...] ...\n"
20846 "\n"
20847 msgstr ""
20848
20849 #. type: textblock
20850 #: ../fish/guestfish.pod:428
20851 msgid ""
20852 "If there are no additional arguments, then we enter a shell, either an "
20853 "interactive shell with a prompt (if the input is a terminal) or a non-"
20854 "interactive shell."
20855 msgstr ""
20856
20857 #. type: textblock
20858 #: ../fish/guestfish.pod:432
20859 msgid ""
20860 "In either command line mode or non-interactive shell, the first command that "
20861 "gives an error causes the whole shell to exit.  In interactive mode (with a "
20862 "prompt) if a command fails, you can continue to enter commands."
20863 msgstr ""
20864
20865 #. type: =head1
20866 #: ../fish/guestfish.pod:437
20867 msgid "USING launch (OR run)"
20868 msgstr ""
20869
20870 #. type: textblock
20871 #: ../fish/guestfish.pod:439
20872 msgid ""
20873 "As with L<guestfs(3)>, you must first configure your guest by adding disks, "
20874 "then launch it, then mount any disks you need, and finally issue actions/"
20875 "commands.  So the general order of the day is:"
20876 msgstr ""
20877
20878 #. type: textblock
20879 #: ../fish/guestfish.pod:447
20880 msgid "add or -a/--add"
20881 msgstr ""
20882
20883 #. type: textblock
20884 #: ../fish/guestfish.pod:451
20885 msgid "launch (aka run)"
20886 msgstr ""
20887
20888 #. type: textblock
20889 #: ../fish/guestfish.pod:455
20890 msgid "mount or -m/--mount"
20891 msgstr ""
20892
20893 #. type: textblock
20894 #: ../fish/guestfish.pod:459
20895 msgid "any other commands"
20896 msgstr ""
20897
20898 #. type: textblock
20899 #: ../fish/guestfish.pod:463
20900 msgid ""
20901 "C<run> is a synonym for C<launch>.  You must C<launch> (or C<run>)  your "
20902 "guest before mounting or performing any other commands."
20903 msgstr ""
20904
20905 #. type: textblock
20906 #: ../fish/guestfish.pod:466
20907 msgid ""
20908 "The only exception is that if any of the I<-i>, I<-m>, I<--mount>, I<-N> or "
20909 "I<--new> options were given then C<run> is done automatically, simply "
20910 "because guestfish can't perform the action you asked for without doing this."
20911 msgstr ""
20912
20913 #. type: =head1
20914 #: ../fish/guestfish.pod:471
20915 msgid "OPENING DISKS FOR READ AND WRITE"
20916 msgstr ""
20917
20918 #. type: textblock
20919 #: ../fish/guestfish.pod:473
20920 msgid ""
20921 "The guestfish, L<guestmount(1)> and L<virt-rescue(1)> options I<--ro> and "
20922 "I<--rw> affect whether the other command line options I<-a>, I<-c>, I<-d>, "
20923 "I<-i> and I<-m> open disk images read-only or for writing."
20924 msgstr ""
20925
20926 #. type: textblock
20927 #: ../fish/guestfish.pod:478
20928 msgid ""
20929 "In libguestfs E<le> 1.10, guestfish, guestmount and virt-rescue defaulted to "
20930 "opening disk images supplied on the command line for write.  To open a disk "
20931 "image read-only you have to do I<-a image --ro>."
20932 msgstr ""
20933
20934 #. type: textblock
20935 #: ../fish/guestfish.pod:482
20936 msgid ""
20937 "This matters: If you accidentally open a live VM disk image writable then "
20938 "you will cause irreversible disk corruption."
20939 msgstr ""
20940
20941 #. type: textblock
20942 #: ../fish/guestfish.pod:485
20943 msgid ""
20944 "By libguestfs 1.12 we intend to change the default the other way.  Disk "
20945 "images will be opened read-only.  You will have to either specify "
20946 "I<guestfish --rw>, I<guestmount --rw>, I<virt-rescue --rw>, or change the "
20947 "configuration file C</etc/libguestfs-tools.conf> in order to get write "
20948 "access for disk images specified by those other command line options."
20949 msgstr ""
20950
20951 #. type: textblock
20952 #: ../fish/guestfish.pod:492
20953 msgid ""
20954 "This version of guestfish, guestmount and virt-rescue has a I<--rw> option "
20955 "which does nothing (it is already the default).  However it is highly "
20956 "recommended that you use this option to indicate that you need write access, "
20957 "and prepare your scripts for the day when this option will be required for "
20958 "write access."
20959 msgstr ""
20960
20961 #. type: textblock
20962 #: ../fish/guestfish.pod:498
20963 msgid ""
20964 "B<Note:> This does I<not> affect commands like L</add> and L</mount>, or any "
20965 "other libguestfs program apart from guestfish and guestmount."
20966 msgstr ""
20967
20968 #. type: =head1
20969 #: ../fish/guestfish.pod:501
20970 msgid "QUOTING"
20971 msgstr ""
20972
20973 #. type: textblock
20974 #: ../fish/guestfish.pod:503
20975 msgid ""
20976 "You can quote ordinary parameters using either single or double quotes.  For "
20977 "example:"
20978 msgstr ""
20979
20980 #. type: verbatim
20981 #: ../fish/guestfish.pod:506
20982 #, no-wrap
20983 msgid ""
20984 " add \"file with a space.img\"\n"
20985 "\n"
20986 msgstr ""
20987
20988 #. type: verbatim
20989 #: ../fish/guestfish.pod:508
20990 #, no-wrap
20991 msgid ""
20992 " rm '/file name'\n"
20993 "\n"
20994 msgstr ""
20995
20996 #. type: verbatim
20997 #: ../fish/guestfish.pod:510
20998 #, no-wrap
20999 msgid ""
21000 " rm '/\"'\n"
21001 "\n"
21002 msgstr ""
21003
21004 #. type: textblock
21005 #: ../fish/guestfish.pod:512
21006 msgid ""
21007 "A few commands require a list of strings to be passed.  For these, use a "
21008 "whitespace-separated list, enclosed in quotes.  Strings containing "
21009 "whitespace to be passed through must be enclosed in single quotes.  A "
21010 "literal single quote must be escaped with a backslash."
21011 msgstr ""
21012
21013 #. type: verbatim
21014 #: ../fish/guestfish.pod:517
21015 #, no-wrap
21016 msgid ""
21017 " vgcreate VG \"/dev/sda1 /dev/sdb1\"\n"
21018 " command \"/bin/echo 'foo      bar'\"\n"
21019 " command \"/bin/echo \\'foo\\'\"\n"
21020 "\n"
21021 msgstr ""
21022
21023 #. type: =head1
21024 #: ../fish/guestfish.pod:521
21025 msgid "OPTIONAL ARGUMENTS"
21026 msgstr ""
21027
21028 #. type: textblock
21029 #: ../fish/guestfish.pod:523
21030 msgid ""
21031 "Some commands take optional arguments.  These arguments appear in this "
21032 "documentation as C<[argname:..]>.  You can use them as in these examples:"
21033 msgstr ""
21034
21035 #. type: verbatim
21036 #: ../fish/guestfish.pod:527
21037 #, no-wrap
21038 msgid ""
21039 " add-drive-opts filename\n"
21040 "\n"
21041 msgstr ""
21042
21043 #. type: verbatim
21044 #: ../fish/guestfish.pod:529
21045 #, no-wrap
21046 msgid ""
21047 " add-drive-opts filename readonly:true\n"
21048 "\n"
21049 msgstr ""
21050
21051 #. type: verbatim
21052 #: ../fish/guestfish.pod:531
21053 #, no-wrap
21054 msgid ""
21055 " add-drive-opts filename format:qcow2 readonly:false\n"
21056 "\n"
21057 msgstr ""
21058
21059 #. type: textblock
21060 #: ../fish/guestfish.pod:533
21061 msgid ""
21062 "Each optional argument can appear at most once.  All optional arguments must "
21063 "appear after the required ones."
21064 msgstr ""
21065
21066 #. type: =head1
21067 #: ../fish/guestfish.pod:536
21068 msgid "NUMBERS"
21069 msgstr ""
21070
21071 #. type: textblock
21072 #: ../fish/guestfish.pod:538
21073 msgid ""
21074 "This section applies to all commands which can take integers as parameters."
21075 msgstr ""
21076
21077 #. type: =head2
21078 #: ../fish/guestfish.pod:541
21079 msgid "SIZE SUFFIX"
21080 msgstr ""
21081
21082 #. type: textblock
21083 #: ../fish/guestfish.pod:543
21084 msgid ""
21085 "When the command takes a parameter measured in bytes, you can use one of the "
21086 "following suffixes to specify kilobytes, megabytes and larger sizes:"
21087 msgstr ""
21088
21089 #. type: =item
21090 #: ../fish/guestfish.pod:549
21091 msgid "B<k> or B<K> or B<KiB>"
21092 msgstr ""
21093
21094 #. type: textblock
21095 #: ../fish/guestfish.pod:551
21096 msgid "The size in kilobytes (multiplied by 1024)."
21097 msgstr ""
21098
21099 #. type: =item
21100 #: ../fish/guestfish.pod:553
21101 msgid "B<KB>"
21102 msgstr ""
21103
21104 #. type: textblock
21105 #: ../fish/guestfish.pod:555
21106 msgid "The size in SI 1000 byte units."
21107 msgstr ""
21108
21109 #. type: =item
21110 #: ../fish/guestfish.pod:557
21111 msgid "B<M> or B<MiB>"
21112 msgstr ""
21113
21114 #. type: textblock
21115 #: ../fish/guestfish.pod:559
21116 msgid "The size in megabytes (multiplied by 1048576)."
21117 msgstr ""
21118
21119 #. type: =item
21120 #: ../fish/guestfish.pod:561
21121 msgid "B<MB>"
21122 msgstr ""
21123
21124 #. type: textblock
21125 #: ../fish/guestfish.pod:563
21126 msgid "The size in SI 1000000 byte units."
21127 msgstr ""
21128
21129 #. type: =item
21130 #: ../fish/guestfish.pod:565
21131 msgid "B<G> or B<GiB>"
21132 msgstr ""
21133
21134 #. type: textblock
21135 #: ../fish/guestfish.pod:567
21136 msgid "The size in gigabytes (multiplied by 2**30)."
21137 msgstr ""
21138
21139 #. type: =item
21140 #: ../fish/guestfish.pod:569
21141 msgid "B<GB>"
21142 msgstr ""
21143
21144 #. type: textblock
21145 #: ../fish/guestfish.pod:571
21146 msgid "The size in SI 10**9 byte units."
21147 msgstr ""
21148
21149 #. type: =item
21150 #: ../fish/guestfish.pod:573
21151 msgid "B<T> or B<TiB>"
21152 msgstr ""
21153
21154 #. type: textblock
21155 #: ../fish/guestfish.pod:575
21156 msgid "The size in terabytes (multiplied by 2**40)."
21157 msgstr ""
21158
21159 #. type: =item
21160 #: ../fish/guestfish.pod:577
21161 msgid "B<TB>"
21162 msgstr ""
21163
21164 #. type: textblock
21165 #: ../fish/guestfish.pod:579
21166 msgid "The size in SI 10**12 byte units."
21167 msgstr ""
21168
21169 #. type: =item
21170 #: ../fish/guestfish.pod:581
21171 msgid "B<P> or B<PiB>"
21172 msgstr ""
21173
21174 #. type: textblock
21175 #: ../fish/guestfish.pod:583
21176 msgid "The size in petabytes (multiplied by 2**50)."
21177 msgstr ""
21178
21179 #. type: =item
21180 #: ../fish/guestfish.pod:585
21181 msgid "B<PB>"
21182 msgstr ""
21183
21184 #. type: textblock
21185 #: ../fish/guestfish.pod:587
21186 msgid "The size in SI 10**15 byte units."
21187 msgstr ""
21188
21189 #. type: =item
21190 #: ../fish/guestfish.pod:589
21191 msgid "B<E> or B<EiB>"
21192 msgstr ""
21193
21194 #. type: textblock
21195 #: ../fish/guestfish.pod:591
21196 msgid "The size in exabytes (multiplied by 2**60)."
21197 msgstr ""
21198
21199 #. type: =item
21200 #: ../fish/guestfish.pod:593
21201 msgid "B<EB>"
21202 msgstr ""
21203
21204 #. type: textblock
21205 #: ../fish/guestfish.pod:595
21206 msgid "The size in SI 10**18 byte units."
21207 msgstr ""
21208
21209 #. type: =item
21210 #: ../fish/guestfish.pod:597
21211 msgid "B<Z> or B<ZiB>"
21212 msgstr ""
21213
21214 #. type: textblock
21215 #: ../fish/guestfish.pod:599
21216 msgid "The size in zettabytes (multiplied by 2**70)."
21217 msgstr ""
21218
21219 #. type: =item
21220 #: ../fish/guestfish.pod:601
21221 msgid "B<ZB>"
21222 msgstr ""
21223
21224 #. type: textblock
21225 #: ../fish/guestfish.pod:603
21226 msgid "The size in SI 10**21 byte units."
21227 msgstr ""
21228
21229 #. type: =item
21230 #: ../fish/guestfish.pod:605
21231 msgid "B<Y> or B<YiB>"
21232 msgstr ""
21233
21234 #. type: textblock
21235 #: ../fish/guestfish.pod:607
21236 msgid "The size in yottabytes (multiplied by 2**80)."
21237 msgstr ""
21238
21239 #. type: =item
21240 #: ../fish/guestfish.pod:609
21241 msgid "B<YB>"
21242 msgstr ""
21243
21244 #. type: textblock
21245 #: ../fish/guestfish.pod:611
21246 msgid "The size in SI 10**24 byte units."
21247 msgstr ""
21248
21249 #. type: verbatim
21250 #: ../fish/guestfish.pod:617
21251 #, no-wrap
21252 msgid ""
21253 " truncate-size /file 1G\n"
21254 "\n"
21255 msgstr ""
21256
21257 #. type: textblock
21258 #: ../fish/guestfish.pod:619
21259 msgid "would truncate the file to 1 gigabyte."
21260 msgstr ""
21261
21262 #. type: textblock
21263 #: ../fish/guestfish.pod:621
21264 msgid ""
21265 "Be careful because a few commands take sizes in kilobytes or megabytes (eg. "
21266 "the parameter to L</memsize> is specified in megabytes already).  Adding a "
21267 "suffix will probably not do what you expect."
21268 msgstr ""
21269
21270 #. type: =head2
21271 #: ../fish/guestfish.pod:625
21272 msgid "OCTAL AND HEXADECIMAL NUMBERS"
21273 msgstr ""
21274
21275 #. type: textblock
21276 #: ../fish/guestfish.pod:627
21277 msgid ""
21278 "For specifying the radix (base) use the C convention: C<0> to prefix an "
21279 "octal number or C<0x> to prefix a hexadecimal number.  For example:"
21280 msgstr ""
21281
21282 #. type: verbatim
21283 #: ../fish/guestfish.pod:630
21284 #, no-wrap
21285 msgid ""
21286 " 1234      decimal number 1234\n"
21287 " 02322     octal number, equivalent to decimal 1234\n"
21288 " 0x4d2     hexadecimal number, equivalent to decimal 1234\n"
21289 "\n"
21290 msgstr ""
21291
21292 #. type: textblock
21293 #: ../fish/guestfish.pod:634
21294 msgid ""
21295 "When using the C<chmod> command, you almost always want to specify an octal "
21296 "number for the mode, and you must prefix it with C<0> (unlike the Unix "
21297 "L<chmod(1)> program):"
21298 msgstr ""
21299
21300 #. type: verbatim
21301 #: ../fish/guestfish.pod:638
21302 #, no-wrap
21303 msgid ""
21304 " chmod 0777 /public  # OK\n"
21305 " chmod 777 /public   # WRONG! This is mode 777 decimal = 01411 octal.\n"
21306 "\n"
21307 msgstr ""
21308
21309 #. type: textblock
21310 #: ../fish/guestfish.pod:641
21311 msgid ""
21312 "Commands that return numbers usually print them in decimal, but some "
21313 "commands print numbers in other radices (eg. C<umask> prints the mode in "
21314 "octal, preceeded by C<0>)."
21315 msgstr ""
21316
21317 #. type: =head1
21318 #: ../fish/guestfish.pod:645
21319 msgid "WILDCARDS AND GLOBBING"
21320 msgstr ""
21321
21322 #. type: textblock
21323 #: ../fish/guestfish.pod:647
21324 msgid ""
21325 "Neither guestfish nor the underlying guestfs API performs wildcard expansion "
21326 "(globbing) by default.  So for example the following will not do what you "
21327 "expect:"
21328 msgstr ""
21329
21330 #. type: verbatim
21331 #: ../fish/guestfish.pod:651
21332 #, no-wrap
21333 msgid ""
21334 " rm-rf /home/*\n"
21335 "\n"
21336 msgstr ""
21337
21338 #. type: textblock
21339 #: ../fish/guestfish.pod:653
21340 msgid ""
21341 "Assuming you don't have a directory called literally C</home/*> then the "
21342 "above command will return an error."
21343 msgstr ""
21344
21345 #. type: textblock
21346 #: ../fish/guestfish.pod:656
21347 msgid "To perform wildcard expansion, use the C<glob> command."
21348 msgstr ""
21349
21350 #. type: verbatim
21351 #: ../fish/guestfish.pod:658
21352 #, no-wrap
21353 msgid ""
21354 " glob rm-rf /home/*\n"
21355 "\n"
21356 msgstr ""
21357
21358 #. type: textblock
21359 #: ../fish/guestfish.pod:660
21360 msgid ""
21361 "runs C<rm-rf> on each path that matches (ie. potentially running the command "
21362 "many times), equivalent to:"
21363 msgstr ""
21364
21365 #. type: verbatim
21366 #: ../fish/guestfish.pod:663
21367 #, no-wrap
21368 msgid ""
21369 " rm-rf /home/jim\n"
21370 " rm-rf /home/joe\n"
21371 " rm-rf /home/mary\n"
21372 "\n"
21373 msgstr ""
21374
21375 #. type: textblock
21376 #: ../fish/guestfish.pod:667
21377 msgid "C<glob> only works on simple guest paths and not on device names."
21378 msgstr ""
21379
21380 #. type: textblock
21381 #: ../fish/guestfish.pod:669
21382 msgid ""
21383 "If you have several parameters, each containing a wildcard, then glob will "
21384 "perform a Cartesian product."
21385 msgstr ""
21386
21387 #. type: =head1
21388 #: ../fish/guestfish.pod:672
21389 msgid "COMMENTS"
21390 msgstr ""
21391
21392 #. type: textblock
21393 #: ../fish/guestfish.pod:674
21394 msgid ""
21395 "Any line which starts with a I<#> character is treated as a comment and "
21396 "ignored.  The I<#> can optionally be preceeded by whitespace, but B<not> by "
21397 "a command.  For example:"
21398 msgstr ""
21399
21400 #. type: verbatim
21401 #: ../fish/guestfish.pod:678
21402 #, no-wrap
21403 msgid ""
21404 " # this is a comment\n"
21405 "         # this is a comment\n"
21406 " foo # NOT a comment\n"
21407 "\n"
21408 msgstr ""
21409
21410 #. type: textblock
21411 #: ../fish/guestfish.pod:682
21412 msgid "Blank lines are also ignored."
21413 msgstr ""
21414
21415 #. type: =head1
21416 #: ../fish/guestfish.pod:684
21417 msgid "RUNNING COMMANDS LOCALLY"
21418 msgstr ""
21419
21420 #. type: textblock
21421 #: ../fish/guestfish.pod:686
21422 msgid ""
21423 "Any line which starts with a I<!> character is treated as a command sent to "
21424 "the local shell (C</bin/sh> or whatever L<system(3)> uses).  For example:"
21425 msgstr ""
21426
21427 #. type: verbatim
21428 #: ../fish/guestfish.pod:690
21429 #, no-wrap
21430 msgid ""
21431 " !mkdir local\n"
21432 " tgz-out /remote local/remote-data.tar.gz\n"
21433 "\n"
21434 msgstr ""
21435
21436 #. type: textblock
21437 #: ../fish/guestfish.pod:693
21438 msgid ""
21439 "will create a directory C<local> on the host, and then export the contents "
21440 "of C</remote> on the mounted filesystem to C<local/remote-data.tar.gz>.  "
21441 "(See C<tgz-out>)."
21442 msgstr ""
21443
21444 #. type: textblock
21445 #: ../fish/guestfish.pod:697
21446 msgid ""
21447 "To change the local directory, use the C<lcd> command.  C<!cd> will have no "
21448 "effect, due to the way that subprocesses work in Unix."
21449 msgstr ""
21450
21451 #. type: =head2
21452 #: ../fish/guestfish.pod:700
21453 msgid "LOCAL COMMANDS WITH INLINE EXECUTION"
21454 msgstr ""
21455
21456 #. type: textblock
21457 #: ../fish/guestfish.pod:702
21458 msgid ""
21459 "If a line starts with I<E<lt>!> then the shell command is executed (as for "
21460 "I<!>), but subsequently any output (stdout) of the shell command is parsed "
21461 "and executed as guestfish commands."
21462 msgstr ""
21463
21464 #. type: textblock
21465 #: ../fish/guestfish.pod:706
21466 msgid ""
21467 "Thus you can use shell script to construct arbitrary guestfish commands "
21468 "which are then parsed by guestfish."
21469 msgstr ""
21470
21471 #. type: textblock
21472 #: ../fish/guestfish.pod:709
21473 msgid ""
21474 "For example it is tedious to create a sequence of files (eg. C</foo.1> "
21475 "through C</foo.100>) using guestfish commands alone.  However this is simple "
21476 "if we use a shell script to create the guestfish commands for us:"
21477 msgstr ""
21478
21479 #. type: verbatim
21480 #: ../fish/guestfish.pod:714
21481 #, no-wrap
21482 msgid ""
21483 " <! for n in `seq 1 100`; do echo write /foo.$n $n; done\n"
21484 "\n"
21485 msgstr ""
21486
21487 #. type: textblock
21488 #: ../fish/guestfish.pod:716
21489 msgid "or with names like C</foo.001>:"
21490 msgstr ""
21491
21492 #. type: verbatim
21493 #: ../fish/guestfish.pod:718
21494 #, no-wrap
21495 msgid ""
21496 " <! for n in `seq 1 100`; do printf \"write /foo.%03d %d\\n\" $n $n; done\n"
21497 "\n"
21498 msgstr ""
21499
21500 #. type: textblock
21501 #: ../fish/guestfish.pod:720
21502 msgid ""
21503 "When using guestfish interactively it can be helpful to just run the shell "
21504 "script first (ie. remove the initial C<E<lt>> character so it is just an "
21505 "ordinary I<!> local command), see what guestfish commands it would run, and "
21506 "when you are happy with those prepend the C<E<lt>> character to run the "
21507 "guestfish commands for real."
21508 msgstr ""
21509
21510 #. type: =head1
21511 #: ../fish/guestfish.pod:726
21512 msgid "PIPES"
21513 msgstr ""
21514
21515 #. type: textblock
21516 #: ../fish/guestfish.pod:728
21517 msgid ""
21518 "Use C<command E<lt>spaceE<gt> | command> to pipe the output of the first "
21519 "command (a guestfish command) to the second command (any host command).  For "
21520 "example:"
21521 msgstr ""
21522
21523 #. type: verbatim
21524 #: ../fish/guestfish.pod:732
21525 #, no-wrap
21526 msgid ""
21527 " cat /etc/passwd | awk -F: '$3 == 0 { print }'\n"
21528 "\n"
21529 msgstr ""
21530
21531 #. type: textblock
21532 #: ../fish/guestfish.pod:734
21533 msgid ""
21534 "(where C<cat> is the guestfish cat command, but C<awk> is the host awk "
21535 "program).  The above command would list all accounts in the guest filesystem "
21536 "which have UID 0, ie. root accounts including backdoors.  Other examples:"
21537 msgstr ""
21538
21539 #. type: verbatim
21540 #: ../fish/guestfish.pod:739
21541 #, no-wrap
21542 msgid ""
21543 " hexdump /bin/ls | head\n"
21544 " list-devices | tail -1\n"
21545 " tgz-out / - | tar ztf -\n"
21546 "\n"
21547 msgstr ""
21548
21549 #. type: textblock
21550 #: ../fish/guestfish.pod:743
21551 msgid ""
21552 "The space before the pipe symbol is required, any space after the pipe "
21553 "symbol is optional.  Everything after the pipe symbol is just passed "
21554 "straight to the host shell, so it can contain redirections, globs and "
21555 "anything else that makes sense on the host side."
21556 msgstr ""
21557
21558 #. type: textblock
21559 #: ../fish/guestfish.pod:748
21560 msgid ""
21561 "To use a literal argument which begins with a pipe symbol, you have to quote "
21562 "it, eg:"
21563 msgstr ""
21564
21565 #. type: verbatim
21566 #: ../fish/guestfish.pod:751
21567 #, no-wrap
21568 msgid ""
21569 " echo \"|\"\n"
21570 "\n"
21571 msgstr ""
21572
21573 #. type: =head1
21574 #: ../fish/guestfish.pod:753
21575 msgid "HOME DIRECTORIES"
21576 msgstr ""
21577
21578 #. type: textblock
21579 #: ../fish/guestfish.pod:755
21580 msgid ""
21581 "If a parameter starts with the character C<~> then the tilde may be expanded "
21582 "as a home directory path (either C<~> for the current user's home directory, "
21583 "or C<~user> for another user)."
21584 msgstr ""
21585
21586 #. type: textblock
21587 #: ../fish/guestfish.pod:759
21588 msgid ""
21589 "Note that home directory expansion happens for users known I<on the host>, "
21590 "not in the guest filesystem."
21591 msgstr ""
21592
21593 #. type: textblock
21594 #: ../fish/guestfish.pod:762
21595 msgid ""
21596 "To use a literal argument which begins with a tilde, you have to quote it, "
21597 "eg:"
21598 msgstr ""
21599
21600 #. type: verbatim
21601 #: ../fish/guestfish.pod:765
21602 #, no-wrap
21603 msgid ""
21604 " echo \"~\"\n"
21605 "\n"
21606 msgstr ""
21607
21608 #. type: textblock
21609 #: ../fish/guestfish.pod:769
21610 msgid ""
21611 "Libguestfs has some support for Linux guests encrypted according to the "
21612 "Linux Unified Key Setup (LUKS) standard, which includes nearly all whole "
21613 "disk encryption systems used by modern Linux guests.  Currently only LVM-on-"
21614 "LUKS is supported."
21615 msgstr ""
21616
21617 #. type: textblock
21618 #: ../fish/guestfish.pod:774
21619 msgid "Identify encrypted block devices and partitions using L</vfs-type>:"
21620 msgstr ""
21621
21622 #. type: verbatim
21623 #: ../fish/guestfish.pod:776
21624 #, no-wrap
21625 msgid ""
21626 " ><fs> vfs-type /dev/sda2\n"
21627 " crypto_LUKS\n"
21628 "\n"
21629 msgstr ""
21630
21631 #. type: textblock
21632 #: ../fish/guestfish.pod:779
21633 msgid ""
21634 "Then open those devices using L</luks-open>.  This creates a device-mapper "
21635 "device called C</dev/mapper/luksdev>."
21636 msgstr ""
21637
21638 #. type: verbatim
21639 #: ../fish/guestfish.pod:782
21640 #, no-wrap
21641 msgid ""
21642 " ><fs> luks-open /dev/sda2 luksdev\n"
21643 " Enter key or passphrase (\"key\"): <enter the passphrase>\n"
21644 "\n"
21645 msgstr ""
21646
21647 #. type: textblock
21648 #: ../fish/guestfish.pod:785
21649 msgid ""
21650 "Finally you have to tell LVM to scan for volume groups on the newly created "
21651 "mapper device:"
21652 msgstr ""
21653
21654 #. type: verbatim
21655 #: ../fish/guestfish.pod:788
21656 #, no-wrap
21657 msgid ""
21658 " vgscan\n"
21659 " vg-activate-all true\n"
21660 "\n"
21661 msgstr ""
21662
21663 #. type: textblock
21664 #: ../fish/guestfish.pod:791
21665 msgid "The logical volume(s) can now be mounted in the usual way."
21666 msgstr ""
21667
21668 #. type: textblock
21669 #: ../fish/guestfish.pod:793
21670 msgid ""
21671 "Before closing a LUKS device you must unmount any logical volumes on it and "
21672 "deactivate the volume groups by calling C<vg-activate false VG> on each "
21673 "one.  Then you can close the mapper device:"
21674 msgstr ""
21675
21676 #. type: verbatim
21677 #: ../fish/guestfish.pod:797
21678 #, no-wrap
21679 msgid ""
21680 " vg-activate false /dev/VG\n"
21681 " luks-close /dev/mapper/luksdev\n"
21682 "\n"
21683 msgstr ""
21684
21685 #. type: =head1
21686 #: ../fish/guestfish.pod:800
21687 msgid "WINDOWS PATHS"
21688 msgstr ""
21689
21690 #. type: textblock
21691 #: ../fish/guestfish.pod:802
21692 msgid ""
21693 "If a path is prefixed with C<win:> then you can use Windows-style drive "
21694 "letters and paths (with some limitations).  The following commands are "
21695 "equivalent:"
21696 msgstr ""
21697
21698 #. type: verbatim
21699 #: ../fish/guestfish.pod:806
21700 #, no-wrap
21701 msgid ""
21702 " file /WINDOWS/system32/config/system.LOG\n"
21703 "\n"
21704 msgstr ""
21705
21706 #. type: verbatim
21707 #: ../fish/guestfish.pod:808
21708 #, no-wrap
21709 msgid ""
21710 " file win:\\windows\\system32\\config\\system.log\n"
21711 "\n"
21712 msgstr ""
21713
21714 #. type: verbatim
21715 #: ../fish/guestfish.pod:810
21716 #, no-wrap
21717 msgid ""
21718 " file WIN:C:\\Windows\\SYSTEM32\\CONFIG\\SYSTEM.LOG\n"
21719 "\n"
21720 msgstr ""
21721
21722 #. type: textblock
21723 #: ../fish/guestfish.pod:812
21724 msgid ""
21725 "The parameter is rewritten \"behind the scenes\" by looking up the position "
21726 "where the drive is mounted, prepending that to the path, changing all "
21727 "backslash characters to forward slash, then resolving the result using L</"
21728 "case-sensitive-path>.  For example if the E: drive was mounted on C</e> then "
21729 "the parameter might be rewritten like this:"
21730 msgstr ""
21731
21732 #. type: verbatim
21733 #: ../fish/guestfish.pod:818
21734 #, no-wrap
21735 msgid ""
21736 " win:e:\\foo\\bar => /e/FOO/bar\n"
21737 "\n"
21738 msgstr ""
21739
21740 #. type: textblock
21741 #: ../fish/guestfish.pod:820
21742 msgid "This only works in argument positions that expect a path."
21743 msgstr ""
21744
21745 #. type: =head1
21746 #: ../fish/guestfish.pod:822
21747 msgid "UPLOADING AND DOWNLOADING FILES"
21748 msgstr ""
21749
21750 #. type: textblock
21751 #: ../fish/guestfish.pod:824
21752 msgid ""
21753 "For commands such as C<upload>, C<download>, C<tar-in>, C<tar-out> and "
21754 "others which upload from or download to a local file, you can use the "
21755 "special filename C<-> to mean \"from stdin\" or \"to stdout\".  For example:"
21756 msgstr ""
21757
21758 #. type: verbatim
21759 #: ../fish/guestfish.pod:828
21760 #, no-wrap
21761 msgid ""
21762 " upload - /foo\n"
21763 "\n"
21764 msgstr ""
21765
21766 #. type: textblock
21767 #: ../fish/guestfish.pod:830
21768 msgid ""
21769 "reads stdin and creates from that a file C</foo> in the disk image, and:"
21770 msgstr ""
21771
21772 #. type: verbatim
21773 #: ../fish/guestfish.pod:833
21774 #, no-wrap
21775 msgid ""
21776 " tar-out /etc - | tar tf -\n"
21777 "\n"
21778 msgstr ""
21779
21780 #. type: textblock
21781 #: ../fish/guestfish.pod:835
21782 msgid ""
21783 "writes the tarball to stdout and then pipes that into the external \"tar\" "
21784 "command (see L</PIPES>)."
21785 msgstr ""
21786
21787 #. type: textblock
21788 #: ../fish/guestfish.pod:838
21789 msgid ""
21790 "When using C<-> to read from stdin, the input is read up to the end of "
21791 "stdin.  You can also use a special \"heredoc\"-like syntax to read up to "
21792 "some arbitrary end marker:"
21793 msgstr ""
21794
21795 #. type: verbatim
21796 #: ../fish/guestfish.pod:842
21797 #, no-wrap
21798 msgid ""
21799 " upload -<<END /foo\n"
21800 " input line 1\n"
21801 " input line 2\n"
21802 " input line 3\n"
21803 " END\n"
21804 "\n"
21805 msgstr ""
21806
21807 #. type: textblock
21808 #: ../fish/guestfish.pod:848
21809 msgid ""
21810 "Any string of characters can be used instead of C<END>.  The end marker must "
21811 "appear on a line of its own, without any preceeding or following characters "
21812 "(not even spaces)."
21813 msgstr ""
21814
21815 #. type: textblock
21816 #: ../fish/guestfish.pod:852
21817 msgid ""
21818 "Note that the C<-E<lt>E<lt>> syntax only applies to parameters used to "
21819 "upload local files (so-called \"FileIn\" parameters in the generator)."
21820 msgstr ""
21821
21822 #. type: =head1
21823 #: ../fish/guestfish.pod:855
21824 msgid "EXIT ON ERROR BEHAVIOUR"
21825 msgstr ""
21826
21827 #. type: textblock
21828 #: ../fish/guestfish.pod:857
21829 msgid ""
21830 "By default, guestfish will ignore any errors when in interactive mode (ie. "
21831 "taking commands from a human over a tty), and will exit on the first error "
21832 "in non-interactive mode (scripts, commands given on the command line)."
21833 msgstr ""
21834
21835 #. type: textblock
21836 #: ../fish/guestfish.pod:862
21837 msgid ""
21838 "If you prefix a command with a I<-> character, then that command will not "
21839 "cause guestfish to exit, even if that (one) command returns an error."
21840 msgstr ""
21841
21842 #. type: =head1
21843 #: ../fish/guestfish.pod:866
21844 msgid "REMOTE CONTROL GUESTFISH OVER A SOCKET"
21845 msgstr ""
21846
21847 #. type: textblock
21848 #: ../fish/guestfish.pod:868
21849 msgid ""
21850 "Guestfish can be remote-controlled over a socket.  This is useful "
21851 "particularly in shell scripts where you want to make several different "
21852 "changes to a filesystem, but you don't want the overhead of starting up a "
21853 "guestfish process each time."
21854 msgstr ""
21855
21856 #. type: textblock
21857 #: ../fish/guestfish.pod:873
21858 msgid "Start a guestfish server process using:"
21859 msgstr ""
21860
21861 #. type: verbatim
21862 #: ../fish/guestfish.pod:875
21863 #, no-wrap
21864 msgid ""
21865 " eval \"`guestfish --listen`\"\n"
21866 "\n"
21867 msgstr ""
21868
21869 #. type: textblock
21870 #: ../fish/guestfish.pod:877
21871 msgid "and then send it commands by doing:"
21872 msgstr ""
21873
21874 #. type: verbatim
21875 #: ../fish/guestfish.pod:879
21876 #, no-wrap
21877 msgid ""
21878 " guestfish --remote cmd [...]\n"
21879 "\n"
21880 msgstr ""
21881
21882 #. type: textblock
21883 #: ../fish/guestfish.pod:881
21884 msgid "To cause the server to exit, send it the exit command:"
21885 msgstr ""
21886
21887 #. type: verbatim
21888 #: ../fish/guestfish.pod:883
21889 #, no-wrap
21890 msgid ""
21891 " guestfish --remote exit\n"
21892 "\n"
21893 msgstr ""
21894
21895 #. type: textblock
21896 #: ../fish/guestfish.pod:885
21897 msgid ""
21898 "Note that the server will normally exit if there is an error in a command.  "
21899 "You can change this in the usual way.  See section L</EXIT ON ERROR "
21900 "BEHAVIOUR>."
21901 msgstr ""
21902
21903 #. type: =head2
21904 #: ../fish/guestfish.pod:889
21905 msgid "CONTROLLING MULTIPLE GUESTFISH PROCESSES"
21906 msgstr ""
21907
21908 #. type: textblock
21909 #: ../fish/guestfish.pod:891
21910 msgid ""
21911 "The C<eval> statement sets the environment variable C<$GUESTFISH_PID>, which "
21912 "is how the I<--remote> option knows where to send the commands.  You can "
21913 "have several guestfish listener processes running using:"
21914 msgstr ""
21915
21916 #. type: verbatim
21917 #: ../fish/guestfish.pod:895
21918 #, no-wrap
21919 msgid ""
21920 " eval \"`guestfish --listen`\"\n"
21921 " pid1=$GUESTFISH_PID\n"
21922 " eval \"`guestfish --listen`\"\n"
21923 " pid2=$GUESTFISH_PID\n"
21924 " ...\n"
21925 " guestfish --remote=$pid1 cmd\n"
21926 " guestfish --remote=$pid2 cmd\n"
21927 "\n"
21928 msgstr ""
21929
21930 #. type: =head2
21931 #: ../fish/guestfish.pod:903
21932 msgid "REMOTE CONTROL AND CSH"
21933 msgstr ""
21934
21935 #. type: textblock
21936 #: ../fish/guestfish.pod:905
21937 msgid ""
21938 "When using csh-like shells (csh, tcsh etc) you have to add the I<--csh> "
21939 "option:"
21940 msgstr ""
21941
21942 #. type: verbatim
21943 #: ../fish/guestfish.pod:908
21944 #, no-wrap
21945 msgid ""
21946 " eval \"`guestfish --listen --csh`\"\n"
21947 "\n"
21948 msgstr ""
21949
21950 #. type: =head2
21951 #: ../fish/guestfish.pod:910
21952 msgid "REMOTE CONTROL DETAILS"
21953 msgstr ""
21954
21955 #. type: textblock
21956 #: ../fish/guestfish.pod:912
21957 msgid ""
21958 "Remote control happens over a Unix domain socket called C</tmp/.guestfish-"
21959 "$UID/socket-$PID>, where C<$UID> is the effective user ID of the process, "
21960 "and C<$PID> is the process ID of the server."
21961 msgstr ""
21962
21963 #. type: textblock
21964 #: ../fish/guestfish.pod:916
21965 msgid "Guestfish client and server versions must match exactly."
21966 msgstr ""
21967
21968 #. type: =head1
21969 #: ../fish/guestfish.pod:918
21970 msgid "PREPARED DISK IMAGES"
21971 msgstr ""
21972
21973 #. type: textblock
21974 #: ../fish/guestfish.pod:920
21975 msgid ""
21976 "Use the I<-N type> or I<--new type> parameter to select one of a set of "
21977 "preformatted disk images that guestfish can make for you to save typing.  "
21978 "This is particularly useful for testing purposes.  This option is used "
21979 "instead of the I<-a> option, and like I<-a> can appear multiple times (and "
21980 "can be mixed with I<-a>)."
21981 msgstr ""
21982
21983 #. type: textblock
21984 #: ../fish/guestfish.pod:926
21985 msgid ""
21986 "The new disk is called C<test1.img> for the first I<-N>, C<test2.img> for "
21987 "the second and so on.  Existing files in the current directory are "
21988 "I<overwritten>."
21989 msgstr ""
21990
21991 #. type: textblock
21992 #: ../fish/guestfish.pod:930
21993 msgid ""
21994 "The type briefly describes how the disk should be sized, partitioned, how "
21995 "filesystem(s) should be created, and how content should be added.  "
21996 "Optionally the type can be followed by extra parameters, separated by C<:> "
21997 "(colon) characters.  For example, I<-N fs> creates a default 100MB, sparsely-"
21998 "allocated disk, containing a single partition, with the partition formatted "
21999 "as ext2.  I<-N fs:ext4:1G> is the same, but for an ext4 filesystem on a 1GB "
22000 "disk instead."
22001 msgstr ""
22002
22003 #. type: textblock
22004 #: ../fish/guestfish.pod:938
22005 msgid "To list the available types and any extra parameters they take, run:"
22006 msgstr ""
22007
22008 #. type: textblock
22009 #: ../fish/guestfish.pod:942
22010 msgid ""
22011 "Note that the prepared filesystem is not mounted.  You would usually have to "
22012 "use the C<mount /dev/sda1 /> command or add the I<-m /dev/sda1> option."
22013 msgstr ""
22014
22015 #. type: textblock
22016 #: ../fish/guestfish.pod:946
22017 msgid ""
22018 "If any I<-N> or I<--new> options are given, the guest is automatically "
22019 "launched."
22020 msgstr ""
22021
22022 #. type: textblock
22023 #: ../fish/guestfish.pod:951
22024 msgid "Create a 100MB disk with an ext4-formatted partition:"
22025 msgstr ""
22026
22027 #. type: verbatim
22028 #: ../fish/guestfish.pod:953
22029 #, no-wrap
22030 msgid ""
22031 " guestfish -N fs:ext4\n"
22032 "\n"
22033 msgstr ""
22034
22035 #. type: textblock
22036 #: ../fish/guestfish.pod:955
22037 msgid "Create a 32MB disk with a VFAT-formatted partition, and mount it:"
22038 msgstr ""
22039
22040 #. type: verbatim
22041 #: ../fish/guestfish.pod:957
22042 #, no-wrap
22043 msgid ""
22044 " guestfish -N fs:vfat:32M -m /dev/sda1\n"
22045 "\n"
22046 msgstr ""
22047
22048 #. type: textblock
22049 #: ../fish/guestfish.pod:959
22050 msgid "Create a blank 200MB disk:"
22051 msgstr ""
22052
22053 #. type: verbatim
22054 #: ../fish/guestfish.pod:961
22055 #, no-wrap
22056 msgid ""
22057 " guestfish -N disk:200M\n"
22058 "\n"
22059 msgstr ""
22060
22061 #. type: =head1
22062 #: ../fish/guestfish.pod:963
22063 msgid "PROGRESS BARS"
22064 msgstr ""
22065
22066 #. type: textblock
22067 #: ../fish/guestfish.pod:965
22068 msgid ""
22069 "Some (not all) long-running commands send progress notification messages as "
22070 "they are running.  Guestfish turns these messages into progress bars."
22071 msgstr ""
22072
22073 #. type: textblock
22074 #: ../fish/guestfish.pod:969
22075 msgid ""
22076 "When a command that supports progress bars takes longer than two seconds to "
22077 "run, and if progress bars are enabled, then you will see one appearing below "
22078 "the command:"
22079 msgstr ""
22080
22081 #. type: verbatim
22082 #: ../fish/guestfish.pod:973
22083 #, no-wrap
22084 msgid ""
22085 " ><fs> copy-size /large-file /another-file 2048M\n"
22086 " / 10% [#####-----------------------------------------] 00:30\n"
22087 "\n"
22088 msgstr ""
22089
22090 #. type: textblock
22091 #: ../fish/guestfish.pod:976
22092 msgid ""
22093 "The spinner on the left hand side moves round once for every progress "
22094 "notification received from the backend.  This is a (reasonably) golden "
22095 "assurance that the command is \"doing something\" even if the progress bar "
22096 "is not moving, because the command is able to send the progress "
22097 "notifications.  When the bar reaches 100% and the command finishes, the "
22098 "spinner disappears."
22099 msgstr ""
22100
22101 #. type: textblock
22102 #: ../fish/guestfish.pod:983
22103 msgid ""
22104 "Progress bars are enabled by default when guestfish is used interactively.  "
22105 "You can enable them even for non-interactive modes using I<--progress-bars>, "
22106 "and you can disable them completely using I<--no-progress-bars>."
22107 msgstr ""
22108
22109 #. type: =head1
22110 #: ../fish/guestfish.pod:988
22111 msgid "GUESTFISH COMMANDS"
22112 msgstr ""
22113
22114 #. type: textblock
22115 #: ../fish/guestfish.pod:990
22116 msgid ""
22117 "The commands in this section are guestfish convenience commands, in other "
22118 "words, they are not part of the L<guestfs(3)> API."
22119 msgstr ""
22120
22121 #. type: =head2
22122 #: ../fish/guestfish.pod:993
22123 msgid "help"
22124 msgstr ""
22125
22126 #. type: verbatim
22127 #: ../fish/guestfish.pod:995
22128 #, no-wrap
22129 msgid ""
22130 " help\n"
22131 " help cmd\n"
22132 "\n"
22133 msgstr ""
22134
22135 #. type: textblock
22136 #: ../fish/guestfish.pod:998
22137 msgid "Without any parameter, this provides general help."
22138 msgstr ""
22139
22140 #. type: textblock
22141 #: ../fish/guestfish.pod:1000
22142 msgid "With a C<cmd> parameter, this displays detailed help for that command."
22143 msgstr ""
22144
22145 #. type: =head2
22146 #: ../fish/guestfish.pod:1002
22147 msgid "quit | exit"
22148 msgstr ""
22149
22150 #. type: textblock
22151 #: ../fish/guestfish.pod:1004
22152 msgid "This exits guestfish.  You can also use C<^D> key."
22153 msgstr ""
22154
22155 #. type: textblock
22156 #: ../fish/guestfish.pod:1006
22157 msgid "@FISH_COMMANDS@"
22158 msgstr ""
22159
22160 #. type: =head1
22161 #: ../fish/guestfish.pod:1008
22162 msgid "COMMANDS"
22163 msgstr ""
22164
22165 #. type: =head1
22166 #: ../fish/guestfish.pod:1012 ../test-tool/libguestfs-test-tool.pod:77
22167 msgid "EXIT CODE"
22168 msgstr ""
22169
22170 #. type: textblock
22171 #: ../fish/guestfish.pod:1014
22172 msgid ""
22173 "guestfish returns 0 if the commands completed without error, or 1 if there "
22174 "was an error."
22175 msgstr ""
22176
22177 #. type: =item
22178 #: ../fish/guestfish.pod:1021
22179 msgid "EDITOR"
22180 msgstr ""
22181
22182 #. type: textblock
22183 #: ../fish/guestfish.pod:1023
22184 msgid ""
22185 "The C<edit> command uses C<$EDITOR> as the editor.  If not set, it uses "
22186 "C<vi>."
22187 msgstr ""
22188
22189 #. type: =item
22190 #: ../fish/guestfish.pod:1026
22191 msgid "GUESTFISH_DISPLAY_IMAGE"
22192 msgstr ""
22193
22194 #. type: textblock
22195 #: ../fish/guestfish.pod:1028
22196 msgid ""
22197 "The C<display> command uses C<$GUESTFISH_DISPLAY_IMAGE> to display images.  "
22198 "If not set, it uses L<display(1)>."
22199 msgstr ""
22200
22201 #. type: =item
22202 #: ../fish/guestfish.pod:1031
22203 msgid "GUESTFISH_PID"
22204 msgstr ""
22205
22206 #. type: textblock
22207 #: ../fish/guestfish.pod:1033
22208 msgid ""
22209 "Used with the I<--remote> option to specify the remote guestfish process to "
22210 "control.  See section L</REMOTE CONTROL GUESTFISH OVER A SOCKET>."
22211 msgstr ""
22212
22213 #. type: =item
22214 #: ../fish/guestfish.pod:1037
22215 msgid "HEXEDITOR"
22216 msgstr ""
22217
22218 #. type: textblock
22219 #: ../fish/guestfish.pod:1039
22220 msgid ""
22221 "The L</hexedit> command uses C<$HEXEDITOR> as the external hex editor.  If "
22222 "not specified, the external L<hexedit(1)> program is used."
22223 msgstr ""
22224
22225 #. type: =item
22226 #: ../fish/guestfish.pod:1043
22227 msgid "HOME"
22228 msgstr ""
22229
22230 #. type: textblock
22231 #: ../fish/guestfish.pod:1045
22232 msgid ""
22233 "If compiled with GNU readline support, various files in the home directory "
22234 "can be used.  See L</FILES>."
22235 msgstr ""
22236
22237 #. type: textblock
22238 #: ../fish/guestfish.pod:1054
22239 msgid ""
22240 "Set C<LIBGUESTFS_DEBUG=1> to enable verbose messages.  This has the same "
22241 "effect as using the B<-v> option."
22242 msgstr ""
22243
22244 #. type: textblock
22245 #: ../fish/guestfish.pod:1066
22246 msgid ""
22247 "Set the path that guestfish uses to search for kernel and initrd.img.  See "
22248 "the discussion of paths in L<guestfs(3)>."
22249 msgstr ""
22250
22251 #. type: textblock
22252 #: ../fish/guestfish.pod:1077
22253 msgid "Set C<LIBGUESTFS_TRACE=1> to enable command traces."
22254 msgstr ""
22255
22256 #. type: =item
22257 #: ../fish/guestfish.pod:1079
22258 msgid "PAGER"
22259 msgstr ""
22260
22261 #. type: textblock
22262 #: ../fish/guestfish.pod:1081
22263 msgid ""
22264 "The C<more> command uses C<$PAGER> as the pager.  If not set, it uses "
22265 "C<more>."
22266 msgstr ""
22267
22268 #. type: =head1
22269 #: ../fish/guestfish.pod:1097 ../fuse/guestmount.pod:264
22270 msgid "FILES"
22271 msgstr ""
22272
22273 #. type: =item
22274 #: ../fish/guestfish.pod:1101 ../fuse/guestmount.pod:268
22275 msgid "$HOME/.libguestfs-tools.rc"
22276 msgstr ""
22277
22278 #. type: =item
22279 #: ../fish/guestfish.pod:1103 ../fuse/guestmount.pod:270
22280 msgid "/etc/libguestfs-tools.conf"
22281 msgstr ""
22282
22283 #. type: textblock
22284 #: ../fish/guestfish.pod:1105 ../fuse/guestmount.pod:272
22285 msgid ""
22286 "This configuration file controls the default read-only or read-write mode "
22287 "(I<--ro> or I<--rw>)."
22288 msgstr ""
22289
22290 #. type: textblock
22291 #: ../fish/guestfish.pod:1108
22292 msgid "See L</OPENING DISKS FOR READ AND WRITE>."
22293 msgstr ""
22294
22295 #. type: =item
22296 #: ../fish/guestfish.pod:1110
22297 msgid "$HOME/.guestfish"
22298 msgstr ""
22299
22300 #. type: textblock
22301 #: ../fish/guestfish.pod:1112
22302 msgid ""
22303 "If compiled with GNU readline support, then the command history is saved in "
22304 "this file."
22305 msgstr ""
22306
22307 #. type: =item
22308 #: ../fish/guestfish.pod:1115
22309 msgid "$HOME/.inputrc"
22310 msgstr ""
22311
22312 #. type: =item
22313 #: ../fish/guestfish.pod:1117
22314 msgid "/etc/inputrc"
22315 msgstr ""
22316
22317 #. type: textblock
22318 #: ../fish/guestfish.pod:1119
22319 msgid ""
22320 "If compiled with GNU readline support, then these files can be used to "
22321 "configure readline.  For further information, please see L<readline(3)/"
22322 "INITIALIZATION FILE>."
22323 msgstr ""
22324
22325 #. type: textblock
22326 #: ../fish/guestfish.pod:1123
22327 msgid "To write rules which only apply to guestfish, use:"
22328 msgstr ""
22329
22330 #. type: verbatim
22331 #: ../fish/guestfish.pod:1125
22332 #, no-wrap
22333 msgid ""
22334 " $if guestfish\n"
22335 " ...\n"
22336 " $endif\n"
22337 "\n"
22338 msgstr ""
22339
22340 #. type: textblock
22341 #: ../fish/guestfish.pod:1129
22342 msgid ""
22343 "Variables that you can set in inputrc that change the behaviour of guestfish "
22344 "in useful ways include:"
22345 msgstr ""
22346
22347 #. type: =item
22348 #: ../fish/guestfish.pod:1134
22349 msgid "completion-ignore-case (default: on)"
22350 msgstr ""
22351
22352 #. type: textblock
22353 #: ../fish/guestfish.pod:1136
22354 msgid ""
22355 "By default, guestfish will ignore case when tab-completing paths on the "
22356 "disk.  Use:"
22357 msgstr ""
22358
22359 #. type: verbatim
22360 #: ../fish/guestfish.pod:1139
22361 #, no-wrap
22362 msgid ""
22363 " set completion-ignore-case off\n"
22364 "\n"
22365 msgstr ""
22366
22367 #. type: textblock
22368 #: ../fish/guestfish.pod:1141
22369 msgid "to make guestfish case sensitive."
22370 msgstr ""
22371
22372 #. type: =item
22373 #: ../fish/guestfish.pod:1145
22374 msgid "test1.img"
22375 msgstr ""
22376
22377 #. type: =item
22378 #: ../fish/guestfish.pod:1147
22379 msgid "test2.img (etc)"
22380 msgstr ""
22381
22382 #. type: textblock
22383 #: ../fish/guestfish.pod:1149
22384 msgid ""
22385 "When using the I<-N> or I<--new> option, the prepared disk or filesystem "
22386 "will be created in the file C<test1.img> in the current directory.  The "
22387 "second use of I<-N> will use C<test2.img> and so on.  Any existing file with "
22388 "the same name will be overwritten."
22389 msgstr ""
22390
22391 #. type: textblock
22392 #: ../fish/guestfish.pod:1158
22393 msgid ""
22394 "L<guestfs(3)>, L<http://libguestfs.org/>, L<virt-cat(1)>, L<virt-copy-in(1)"
22395 ">, L<virt-copy-out(1)>, L<virt-df(1)>, L<virt-edit(1)>, L<virt-filesystems(1)"
22396 ">, L<virt-inspector(1)>, L<virt-list-filesystems(1)>, L<virt-list-partitions"
22397 "(1)>, L<virt-ls(1)>, L<virt-make-fs(1)>, L<virt-rescue(1)>, L<virt-resize(1)"
22398 ">, L<virt-tar(1)>, L<virt-tar-in(1)>, L<virt-tar-out(1)>, L<virt-win-reg(1)"
22399 ">, L<display(1)>, L<hexedit(1)>."
22400 msgstr ""
22401
22402 #. type: textblock
22403 #: ../fish/guestfish.pod:1189 ../test-tool/libguestfs-test-tool.pod:102
22404 #: ../fuse/guestmount.pod:299 ../tools/virt-win-reg.pl:778
22405 #: ../tools/virt-list-filesystems.pl:210 ../tools/virt-tar.pl:309
22406 #: ../tools/virt-make-fs.pl:572 ../tools/virt-list-partitions.pl:277
22407 msgid ""
22408 "This program is free software; you can redistribute it and/or modify it "
22409 "under the terms of the GNU General Public License as published by the Free "
22410 "Software Foundation; either version 2 of the License, or (at your option) "
22411 "any later version."
22412 msgstr ""
22413
22414 #. type: textblock
22415 #: ../fish/guestfish.pod:1194 ../test-tool/libguestfs-test-tool.pod:107
22416 #: ../fuse/guestmount.pod:304 ../tools/virt-win-reg.pl:783
22417 #: ../tools/virt-list-filesystems.pl:215 ../tools/virt-tar.pl:314
22418 #: ../tools/virt-make-fs.pl:577 ../tools/virt-list-partitions.pl:282
22419 msgid ""
22420 "This program is distributed in the hope that it will be useful, but WITHOUT "
22421 "ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or "
22422 "FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for "
22423 "more details."
22424 msgstr ""
22425
22426 #. type: textblock
22427 #: ../fish/guestfish.pod:1199 ../test-tool/libguestfs-test-tool.pod:112
22428 #: ../fuse/guestmount.pod:309 ../tools/virt-win-reg.pl:788
22429 #: ../tools/virt-list-filesystems.pl:220 ../tools/virt-tar.pl:319
22430 #: ../tools/virt-make-fs.pl:582 ../tools/virt-list-partitions.pl:287
22431 msgid ""
22432 "You should have received a copy of the GNU General Public License along with "
22433 "this program; if not, write to the Free Software Foundation, Inc., 675 Mass "
22434 "Ave, Cambridge, MA 02139, USA."
22435 msgstr ""
22436
22437 #. type: =head2
22438 #: ../fish/guestfish-actions.pod:1
22439 msgid "add-cdrom"
22440 msgstr ""
22441
22442 #. type: verbatim
22443 #: ../fish/guestfish-actions.pod:3
22444 #, no-wrap
22445 msgid ""
22446 " add-cdrom filename\n"
22447 "\n"
22448 msgstr ""
22449
22450 #. type: textblock
22451 #: ../fish/guestfish-actions.pod:15
22452 msgid ""
22453 "This call checks for the existence of C<filename>.  This stops you from "
22454 "specifying other types of drive which are supported by qemu such as C<nbd:> "
22455 "and C<http:> URLs.  To specify those, use the general L</config> call "
22456 "instead."
22457 msgstr ""
22458
22459 #. type: textblock
22460 #: ../fish/guestfish-actions.pod:22
22461 msgid ""
22462 "If you just want to add an ISO file (often you use this as an efficient way "
22463 "to transfer large files into the guest), then you should probably use L</add-"
22464 "drive-ro> instead."
22465 msgstr ""
22466
22467 #. type: =head2
22468 #: ../fish/guestfish-actions.pod:35
22469 msgid "add-domain"
22470 msgstr ""
22471
22472 #. type: =head2
22473 #: ../fish/guestfish-actions.pod:37
22474 msgid "domain"
22475 msgstr ""
22476
22477 #. type: verbatim
22478 #: ../fish/guestfish-actions.pod:39
22479 #, no-wrap
22480 msgid ""
22481 " add-domain dom [libvirturi:..] [readonly:..] [iface:..] [live:..] [allowuuid:..]\n"
22482 "\n"
22483 msgstr ""
22484
22485 #. type: textblock
22486 #: ../fish/guestfish-actions.pod:41
22487 msgid ""
22488 "This function adds the disk(s) attached to the named libvirt domain C<dom>.  "
22489 "It works by connecting to libvirt, requesting the domain and domain XML from "
22490 "libvirt, parsing it for disks, and calling L</add-drive-opts> on each one."
22491 msgstr ""
22492
22493 #. type: textblock
22494 #: ../fish/guestfish-actions.pod:76
22495 msgid ""
22496 "The other optional parameters are passed directly through to L</add-drive-"
22497 "opts>."
22498 msgstr ""
22499
22500 #. type: textblock
22501 #: ../fish/guestfish-actions.pod:79 ../fish/guestfish-actions.pod:143
22502 #: ../fish/guestfish-actions.pod:1937 ../fish/guestfish-actions.pod:3103
22503 #: ../fish/guestfish-actions.pod:3276 ../fish/guestfish-actions.pod:3411
22504 msgid ""
22505 "This command has one or more optional arguments.  See L</OPTIONAL ARGUMENTS>."
22506 msgstr ""
22507
22508 #. type: =head2
22509 #: ../fish/guestfish-actions.pod:81
22510 msgid "add-drive"
22511 msgstr ""
22512
22513 #. type: verbatim
22514 #: ../fish/guestfish-actions.pod:83
22515 #, no-wrap
22516 msgid ""
22517 " add-drive filename\n"
22518 "\n"
22519 msgstr ""
22520
22521 #. type: textblock
22522 #: ../fish/guestfish-actions.pod:85
22523 msgid ""
22524 "This function is the equivalent of calling L</add-drive-opts> with no "
22525 "optional parameters, so the disk is added writable, with the format being "
22526 "detected automatically."
22527 msgstr ""
22528
22529 #. type: textblock
22530 #: ../fish/guestfish-actions.pod:89
22531 msgid ""
22532 "Automatic detection of the format opens you up to a potential security hole "
22533 "when dealing with untrusted raw-format images.  See CVE-2010-3851 and "
22534 "RHBZ#642934.  Specifying the format closes this security hole.  Therefore "
22535 "you should think about replacing calls to this function with calls to L</add-"
22536 "drive-opts>, and specifying the format."
22537 msgstr ""
22538
22539 #. type: =head2
22540 #: ../fish/guestfish-actions.pod:96
22541 msgid "add-drive-opts"
22542 msgstr ""
22543
22544 #. type: =head2
22545 #: ../fish/guestfish-actions.pod:98
22546 msgid "add"
22547 msgstr ""
22548
22549 #. type: verbatim
22550 #: ../fish/guestfish-actions.pod:100
22551 #, no-wrap
22552 msgid ""
22553 " add-drive-opts filename [readonly:..] [format:..] [iface:..]\n"
22554 "\n"
22555 msgstr ""
22556
22557 #. type: textblock
22558 #: ../fish/guestfish-actions.pod:127
22559 msgid ""
22560 "This forces the image format.  If you omit this (or use L</add-drive> or L</"
22561 "add-drive-ro>) then the format is automatically detected.  Possible formats "
22562 "include C<raw> and C<qcow2>."
22563 msgstr ""
22564
22565 #. type: textblock
22566 #: ../fish/guestfish-actions.pod:138
22567 msgid ""
22568 "This rarely-used option lets you emulate the behaviour of the deprecated L</"
22569 "add-drive-with-if> call (q.v.)"
22570 msgstr ""
22571
22572 #. type: =head2
22573 #: ../fish/guestfish-actions.pod:145
22574 msgid "add-drive-ro"
22575 msgstr ""
22576
22577 #. type: =head2
22578 #: ../fish/guestfish-actions.pod:147
22579 msgid "add-ro"
22580 msgstr ""
22581
22582 #. type: verbatim
22583 #: ../fish/guestfish-actions.pod:149
22584 #, no-wrap
22585 msgid ""
22586 " add-drive-ro filename\n"
22587 "\n"
22588 msgstr ""
22589
22590 #. type: textblock
22591 #: ../fish/guestfish-actions.pod:151
22592 msgid ""
22593 "This function is the equivalent of calling L</add-drive-opts> with the "
22594 "optional parameter C<GUESTFS_ADD_DRIVE_OPTS_READONLY> set to 1, so the disk "
22595 "is added read-only, with the format being detected automatically."
22596 msgstr ""
22597
22598 #. type: =head2
22599 #: ../fish/guestfish-actions.pod:156
22600 msgid "add-drive-ro-with-if"
22601 msgstr ""
22602
22603 #. type: verbatim
22604 #: ../fish/guestfish-actions.pod:158
22605 #, no-wrap
22606 msgid ""
22607 " add-drive-ro-with-if filename iface\n"
22608 "\n"
22609 msgstr ""
22610
22611 #. type: textblock
22612 #: ../fish/guestfish-actions.pod:160
22613 msgid ""
22614 "This is the same as L</add-drive-ro> but it allows you to specify the QEMU "
22615 "interface emulation to use at run time."
22616 msgstr ""
22617
22618 #. type: =head2
22619 #: ../fish/guestfish-actions.pod:170
22620 msgid "add-drive-with-if"
22621 msgstr ""
22622
22623 #. type: verbatim
22624 #: ../fish/guestfish-actions.pod:172
22625 #, no-wrap
22626 msgid ""
22627 " add-drive-with-if filename iface\n"
22628 "\n"
22629 msgstr ""
22630
22631 #. type: textblock
22632 #: ../fish/guestfish-actions.pod:174
22633 msgid ""
22634 "This is the same as L</add-drive> but it allows you to specify the QEMU "
22635 "interface emulation to use at run time."
22636 msgstr ""
22637
22638 #. type: =head2
22639 #: ../fish/guestfish-actions.pod:184
22640 msgid "aug-clear"
22641 msgstr ""
22642
22643 #. type: verbatim
22644 #: ../fish/guestfish-actions.pod:186
22645 #, no-wrap
22646 msgid ""
22647 " aug-clear augpath\n"
22648 "\n"
22649 msgstr ""
22650
22651 #. type: =head2
22652 #: ../fish/guestfish-actions.pod:191
22653 msgid "aug-close"
22654 msgstr ""
22655
22656 #. type: verbatim
22657 #: ../fish/guestfish-actions.pod:193
22658 #, no-wrap
22659 msgid ""
22660 " aug-close\n"
22661 "\n"
22662 msgstr ""
22663
22664 #. type: textblock
22665 #: ../fish/guestfish-actions.pod:195
22666 msgid ""
22667 "Close the current Augeas handle and free up any resources used by it.  After "
22668 "calling this, you have to call L</aug-init> again before you can use any "
22669 "other Augeas functions."
22670 msgstr ""
22671
22672 #. type: =head2
22673 #: ../fish/guestfish-actions.pod:200
22674 msgid "aug-defnode"
22675 msgstr ""
22676
22677 #. type: verbatim
22678 #: ../fish/guestfish-actions.pod:202
22679 #, no-wrap
22680 msgid ""
22681 " aug-defnode name expr val\n"
22682 "\n"
22683 msgstr ""
22684
22685 #. type: textblock
22686 #: ../fish/guestfish-actions.pod:207
22687 msgid ""
22688 "If C<expr> evaluates to an empty nodeset, a node is created, equivalent to "
22689 "calling L</aug-set> C<expr>, C<value>.  C<name> will be the nodeset "
22690 "containing that single node."
22691 msgstr ""
22692
22693 #. type: =head2
22694 #: ../fish/guestfish-actions.pod:215
22695 msgid "aug-defvar"
22696 msgstr ""
22697
22698 #. type: verbatim
22699 #: ../fish/guestfish-actions.pod:217
22700 #, no-wrap
22701 msgid ""
22702 " aug-defvar name expr\n"
22703 "\n"
22704 msgstr ""
22705
22706 #. type: =head2
22707 #: ../fish/guestfish-actions.pod:226
22708 msgid "aug-get"
22709 msgstr ""
22710
22711 #. type: verbatim
22712 #: ../fish/guestfish-actions.pod:228
22713 #, no-wrap
22714 msgid ""
22715 " aug-get augpath\n"
22716 "\n"
22717 msgstr ""
22718
22719 #. type: =head2
22720 #: ../fish/guestfish-actions.pod:233
22721 msgid "aug-init"
22722 msgstr ""
22723
22724 #. type: verbatim
22725 #: ../fish/guestfish-actions.pod:235
22726 #, no-wrap
22727 msgid ""
22728 " aug-init root flags\n"
22729 "\n"
22730 msgstr ""
22731
22732 #. type: textblock
22733 #: ../fish/guestfish-actions.pod:241
22734 msgid "You must call this before using any other L</aug-*> commands."
22735 msgstr ""
22736
22737 #. type: textblock
22738 #: ../fish/guestfish-actions.pod:276
22739 msgid "Do not load the tree in L</aug-init>."
22740 msgstr ""
22741
22742 #. type: textblock
22743 #: ../fish/guestfish-actions.pod:280
22744 msgid "To close the handle, you can call L</aug-close>."
22745 msgstr ""
22746
22747 #. type: =head2
22748 #: ../fish/guestfish-actions.pod:284
22749 msgid "aug-insert"
22750 msgstr ""
22751
22752 #. type: verbatim
22753 #: ../fish/guestfish-actions.pod:286
22754 #, no-wrap
22755 msgid ""
22756 " aug-insert augpath label true|false\n"
22757 "\n"
22758 msgstr ""
22759
22760 #. type: =head2
22761 #: ../fish/guestfish-actions.pod:296
22762 msgid "aug-load"
22763 msgstr ""
22764
22765 #. type: verbatim
22766 #: ../fish/guestfish-actions.pod:298
22767 #, no-wrap
22768 msgid ""
22769 " aug-load\n"
22770 "\n"
22771 msgstr ""
22772
22773 #. type: =head2
22774 #: ../fish/guestfish-actions.pod:305
22775 msgid "aug-ls"
22776 msgstr ""
22777
22778 #. type: verbatim
22779 #: ../fish/guestfish-actions.pod:307
22780 #, no-wrap
22781 msgid ""
22782 " aug-ls augpath\n"
22783 "\n"
22784 msgstr ""
22785
22786 #. type: textblock
22787 #: ../fish/guestfish-actions.pod:309
22788 msgid ""
22789 "This is just a shortcut for listing L</aug-match> C<path/*> and sorting the "
22790 "resulting nodes into alphabetical order."
22791 msgstr ""
22792
22793 #. type: =head2
22794 #: ../fish/guestfish-actions.pod:312
22795 msgid "aug-match"
22796 msgstr ""
22797
22798 #. type: verbatim
22799 #: ../fish/guestfish-actions.pod:314
22800 #, no-wrap
22801 msgid ""
22802 " aug-match augpath\n"
22803 "\n"
22804 msgstr ""
22805
22806 #. type: =head2
22807 #: ../fish/guestfish-actions.pod:320
22808 msgid "aug-mv"
22809 msgstr ""
22810
22811 #. type: verbatim
22812 #: ../fish/guestfish-actions.pod:322
22813 #, no-wrap
22814 msgid ""
22815 " aug-mv src dest\n"
22816 "\n"
22817 msgstr ""
22818
22819 #. type: =head2
22820 #: ../fish/guestfish-actions.pod:327
22821 msgid "aug-rm"
22822 msgstr ""
22823
22824 #. type: verbatim
22825 #: ../fish/guestfish-actions.pod:329
22826 #, no-wrap
22827 msgid ""
22828 " aug-rm augpath\n"
22829 "\n"
22830 msgstr ""
22831
22832 #. type: =head2
22833 #: ../fish/guestfish-actions.pod:335
22834 msgid "aug-save"
22835 msgstr ""
22836
22837 #. type: verbatim
22838 #: ../fish/guestfish-actions.pod:337
22839 #, no-wrap
22840 msgid ""
22841 " aug-save\n"
22842 "\n"
22843 msgstr ""
22844
22845 #. type: textblock
22846 #: ../fish/guestfish-actions.pod:341
22847 msgid ""
22848 "The flags which were passed to L</aug-init> affect exactly how files are "
22849 "saved."
22850 msgstr ""
22851
22852 #. type: =head2
22853 #: ../fish/guestfish-actions.pod:344
22854 msgid "aug-set"
22855 msgstr ""
22856
22857 #. type: verbatim
22858 #: ../fish/guestfish-actions.pod:346
22859 #, no-wrap
22860 msgid ""
22861 " aug-set augpath val\n"
22862 "\n"
22863 msgstr ""
22864
22865 #. type: textblock
22866 #: ../fish/guestfish-actions.pod:350
22867 msgid ""
22868 "In the Augeas API, it is possible to clear a node by setting the value to "
22869 "NULL.  Due to an oversight in the libguestfs API you cannot do that with "
22870 "this call.  Instead you must use the L</aug-clear> call."
22871 msgstr ""
22872
22873 #. type: =head2
22874 #: ../fish/guestfish-actions.pod:355
22875 msgid "available"
22876 msgstr ""
22877
22878 #. type: verbatim
22879 #: ../fish/guestfish-actions.pod:357
22880 #, no-wrap
22881 msgid ""
22882 " available 'groups ...'\n"
22883 "\n"
22884 msgstr ""
22885
22886 #. type: textblock
22887 #: ../fish/guestfish-actions.pod:363
22888 msgid ""
22889 "The libguestfs groups, and the functions that those groups correspond to, "
22890 "are listed in L<guestfs(3)/AVAILABILITY>.  You can also fetch this list at "
22891 "runtime by calling L</available-all-groups>."
22892 msgstr ""
22893
22894 #. type: textblock
22895 #: ../fish/guestfish-actions.pod:387
22896 msgid "You must call L</launch> before calling this function."
22897 msgstr ""
22898
22899 #. type: textblock
22900 #: ../fish/guestfish-actions.pod:409
22901 msgid ""
22902 "This call was added in version C<1.0.80>.  In previous versions of "
22903 "libguestfs all you could do would be to speculatively execute a command to "
22904 "find out if the daemon implemented it.  See also L</version>."
22905 msgstr ""
22906
22907 #. type: =head2
22908 #: ../fish/guestfish-actions.pod:416
22909 msgid "available-all-groups"
22910 msgstr ""
22911
22912 #. type: verbatim
22913 #: ../fish/guestfish-actions.pod:418
22914 #, no-wrap
22915 msgid ""
22916 " available-all-groups\n"
22917 "\n"
22918 msgstr ""
22919
22920 #. type: textblock
22921 #: ../fish/guestfish-actions.pod:420
22922 msgid ""
22923 "This command returns a list of all optional groups that this daemon knows "
22924 "about.  Note this returns both supported and unsupported groups.  To find "
22925 "out which ones the daemon can actually support you have to call L</"
22926 "available> on each member of the returned list."
22927 msgstr ""
22928
22929 #. type: textblock
22930 #: ../fish/guestfish-actions.pod:426
22931 msgid "See also L</available> and L<guestfs(3)/AVAILABILITY>."
22932 msgstr ""
22933
22934 #. type: =head2
22935 #: ../fish/guestfish-actions.pod:428
22936 msgid "base64-in"
22937 msgstr ""
22938
22939 #. type: verbatim
22940 #: ../fish/guestfish-actions.pod:430
22941 #, no-wrap
22942 msgid ""
22943 " base64-in (base64file|-) filename\n"
22944 "\n"
22945 msgstr ""
22946
22947 #. type: textblock
22948 #: ../fish/guestfish-actions.pod:435 ../fish/guestfish-actions.pod:444
22949 #: ../fish/guestfish-actions.pod:668 ../fish/guestfish-actions.pod:837
22950 #: ../fish/guestfish-actions.pod:856 ../fish/guestfish-actions.pod:1230
22951 #: ../fish/guestfish-actions.pod:4606 ../fish/guestfish-actions.pod:4618
22952 #: ../fish/guestfish-actions.pod:4629 ../fish/guestfish-actions.pod:4640
22953 #: ../fish/guestfish-actions.pod:4692 ../fish/guestfish-actions.pod:4701
22954 #: ../fish/guestfish-actions.pod:4755 ../fish/guestfish-actions.pod:4778
22955 msgid "Use C<-> instead of a filename to read/write from stdin/stdout."
22956 msgstr ""
22957
22958 #. type: =head2
22959 #: ../fish/guestfish-actions.pod:437
22960 msgid "base64-out"
22961 msgstr ""
22962
22963 #. type: verbatim
22964 #: ../fish/guestfish-actions.pod:439
22965 #, no-wrap
22966 msgid ""
22967 " base64-out filename (base64file|-)\n"
22968 "\n"
22969 msgstr ""
22970
22971 #. type: =head2
22972 #: ../fish/guestfish-actions.pod:446
22973 msgid "blockdev-flushbufs"
22974 msgstr ""
22975
22976 #. type: verbatim
22977 #: ../fish/guestfish-actions.pod:448
22978 #, no-wrap
22979 msgid ""
22980 " blockdev-flushbufs device\n"
22981 "\n"
22982 msgstr ""
22983
22984 #. type: =head2
22985 #: ../fish/guestfish-actions.pod:455
22986 msgid "blockdev-getbsz"
22987 msgstr ""
22988
22989 #. type: verbatim
22990 #: ../fish/guestfish-actions.pod:457
22991 #, no-wrap
22992 msgid ""
22993 " blockdev-getbsz device\n"
22994 "\n"
22995 msgstr ""
22996
22997 #. type: =head2
22998 #: ../fish/guestfish-actions.pod:466
22999 msgid "blockdev-getro"
23000 msgstr ""
23001
23002 #. type: verbatim
23003 #: ../fish/guestfish-actions.pod:468
23004 #, no-wrap
23005 msgid ""
23006 " blockdev-getro device\n"
23007 "\n"
23008 msgstr ""
23009
23010 #. type: =head2
23011 #: ../fish/guestfish-actions.pod:475
23012 msgid "blockdev-getsize64"
23013 msgstr ""
23014
23015 #. type: verbatim
23016 #: ../fish/guestfish-actions.pod:477
23017 #, no-wrap
23018 msgid ""
23019 " blockdev-getsize64 device\n"
23020 "\n"
23021 msgstr ""
23022
23023 #. type: textblock
23024 #: ../fish/guestfish-actions.pod:481
23025 msgid "See also L</blockdev-getsz>."
23026 msgstr ""
23027
23028 #. type: =head2
23029 #: ../fish/guestfish-actions.pod:485
23030 msgid "blockdev-getss"
23031 msgstr ""
23032
23033 #. type: verbatim
23034 #: ../fish/guestfish-actions.pod:487
23035 #, no-wrap
23036 msgid ""
23037 " blockdev-getss device\n"
23038 "\n"
23039 msgstr ""
23040
23041 #. type: textblock
23042 #: ../fish/guestfish-actions.pod:492
23043 msgid ""
23044 "(Note, this is not the size in sectors, use L</blockdev-getsz> for that)."
23045 msgstr ""
23046
23047 #. type: =head2
23048 #: ../fish/guestfish-actions.pod:497
23049 msgid "blockdev-getsz"
23050 msgstr ""
23051
23052 #. type: verbatim
23053 #: ../fish/guestfish-actions.pod:499
23054 #, no-wrap
23055 msgid ""
23056 " blockdev-getsz device\n"
23057 "\n"
23058 msgstr ""
23059
23060 #. type: textblock
23061 #: ../fish/guestfish-actions.pod:504
23062 msgid ""
23063 "See also L</blockdev-getss> for the real sector size of the device, and L</"
23064 "blockdev-getsize64> for the more useful I<size in bytes>."
23065 msgstr ""
23066
23067 #. type: =head2
23068 #: ../fish/guestfish-actions.pod:510
23069 msgid "blockdev-rereadpt"
23070 msgstr ""
23071
23072 #. type: verbatim
23073 #: ../fish/guestfish-actions.pod:512
23074 #, no-wrap
23075 msgid ""
23076 " blockdev-rereadpt device\n"
23077 "\n"
23078 msgstr ""
23079
23080 #. type: =head2
23081 #: ../fish/guestfish-actions.pod:518
23082 msgid "blockdev-setbsz"
23083 msgstr ""
23084
23085 #. type: verbatim
23086 #: ../fish/guestfish-actions.pod:520
23087 #, no-wrap
23088 msgid ""
23089 " blockdev-setbsz device blocksize\n"
23090 "\n"
23091 msgstr ""
23092
23093 #. type: =head2
23094 #: ../fish/guestfish-actions.pod:529
23095 msgid "blockdev-setro"
23096 msgstr ""
23097
23098 #. type: verbatim
23099 #: ../fish/guestfish-actions.pod:531
23100 #, no-wrap
23101 msgid ""
23102 " blockdev-setro device\n"
23103 "\n"
23104 msgstr ""
23105
23106 #. type: =head2
23107 #: ../fish/guestfish-actions.pod:537
23108 msgid "blockdev-setrw"
23109 msgstr ""
23110
23111 #. type: verbatim
23112 #: ../fish/guestfish-actions.pod:539
23113 #, no-wrap
23114 msgid ""
23115 " blockdev-setrw device\n"
23116 "\n"
23117 msgstr ""
23118
23119 #. type: =head2
23120 #: ../fish/guestfish-actions.pod:545
23121 msgid "case-sensitive-path"
23122 msgstr ""
23123
23124 #. type: verbatim
23125 #: ../fish/guestfish-actions.pod:547
23126 #, no-wrap
23127 msgid ""
23128 " case-sensitive-path path\n"
23129 "\n"
23130 msgstr ""
23131
23132 #. type: textblock
23133 #: ../fish/guestfish-actions.pod:571
23134 msgid ""
23135 "Thus L</case-sensitive-path> (\"/Windows/System32\")  might return C<\"/"
23136 "WINDOWS/system32\"> (the exact return value would depend on details of how "
23137 "the directories were originally created under Windows)."
23138 msgstr ""
23139
23140 #. type: textblock
23141 #: ../fish/guestfish-actions.pod:579
23142 msgid "See also L</realpath>."
23143 msgstr ""
23144
23145 #. type: =head2
23146 #: ../fish/guestfish-actions.pod:581
23147 msgid "cat"
23148 msgstr ""
23149
23150 #. type: verbatim
23151 #: ../fish/guestfish-actions.pod:583
23152 #, no-wrap
23153 msgid ""
23154 " cat path\n"
23155 "\n"
23156 msgstr ""
23157
23158 #. type: textblock
23159 #: ../fish/guestfish-actions.pod:587
23160 msgid ""
23161 "Note that this function cannot correctly handle binary files (specifically, "
23162 "files containing C<\\0> character which is treated as end of string).  For "
23163 "those you need to use the L</read-file> or L</download> functions which have "
23164 "a more complex interface."
23165 msgstr ""
23166
23167 #. type: =head2
23168 #: ../fish/guestfish-actions.pod:595
23169 msgid "checksum"
23170 msgstr ""
23171
23172 #. type: verbatim
23173 #: ../fish/guestfish-actions.pod:597
23174 #, no-wrap
23175 msgid ""
23176 " checksum csumtype path\n"
23177 "\n"
23178 msgstr ""
23179
23180 #. type: textblock
23181 #: ../fish/guestfish-actions.pod:640
23182 msgid "To get the checksum for a device, use L</checksum-device>."
23183 msgstr ""
23184
23185 #. type: textblock
23186 #: ../fish/guestfish-actions.pod:642
23187 msgid "To get the checksums for many files, use L</checksums-out>."
23188 msgstr ""
23189
23190 #. type: =head2
23191 #: ../fish/guestfish-actions.pod:644
23192 msgid "checksum-device"
23193 msgstr ""
23194
23195 #. type: verbatim
23196 #: ../fish/guestfish-actions.pod:646
23197 #, no-wrap
23198 msgid ""
23199 " checksum-device csumtype device\n"
23200 "\n"
23201 msgstr ""
23202
23203 #. type: textblock
23204 #: ../fish/guestfish-actions.pod:648
23205 msgid ""
23206 "This call computes the MD5, SHAx or CRC checksum of the contents of the "
23207 "device named C<device>.  For the types of checksums supported see the L</"
23208 "checksum> command."
23209 msgstr ""
23210
23211 #. type: =head2
23212 #: ../fish/guestfish-actions.pod:652
23213 msgid "checksums-out"
23214 msgstr ""
23215
23216 #. type: verbatim
23217 #: ../fish/guestfish-actions.pod:654
23218 #, no-wrap
23219 msgid ""
23220 " checksums-out csumtype directory (sumsfile|-)\n"
23221 "\n"
23222 msgstr ""
23223
23224 #. type: =head2
23225 #: ../fish/guestfish-actions.pod:670
23226 msgid "chmod"
23227 msgstr ""
23228
23229 #. type: verbatim
23230 #: ../fish/guestfish-actions.pod:672
23231 #, no-wrap
23232 msgid ""
23233 " chmod mode path\n"
23234 "\n"
23235 msgstr ""
23236
23237 #. type: =head2
23238 #: ../fish/guestfish-actions.pod:683
23239 msgid "chown"
23240 msgstr ""
23241
23242 #. type: verbatim
23243 #: ../fish/guestfish-actions.pod:685
23244 #, no-wrap
23245 msgid ""
23246 " chown owner group path\n"
23247 "\n"
23248 msgstr ""
23249
23250 #. type: =head2
23251 #: ../fish/guestfish-actions.pod:693
23252 msgid "command"
23253 msgstr ""
23254
23255 #. type: verbatim
23256 #: ../fish/guestfish-actions.pod:695
23257 #, no-wrap
23258 msgid ""
23259 " command 'arguments ...'\n"
23260 "\n"
23261 msgstr ""
23262
23263 #. type: textblock
23264 #: ../fish/guestfish-actions.pod:702
23265 msgid ""
23266 "The single parameter is an argv-style list of arguments.  The first element "
23267 "is the name of the program to run.  Subsequent elements are parameters.  The "
23268 "list must be non-empty (ie. must contain a program name).  Note that the "
23269 "command runs directly, and is I<not> invoked via the shell (see L</sh>)."
23270 msgstr ""
23271
23272 #. type: =head2
23273 #: ../fish/guestfish-actions.pod:730
23274 msgid "command-lines"
23275 msgstr ""
23276
23277 #. type: verbatim
23278 #: ../fish/guestfish-actions.pod:732
23279 #, no-wrap
23280 msgid ""
23281 " command-lines 'arguments ...'\n"
23282 "\n"
23283 msgstr ""
23284
23285 #. type: textblock
23286 #: ../fish/guestfish-actions.pod:734
23287 msgid ""
23288 "This is the same as L</command>, but splits the result into a list of lines."
23289 msgstr ""
23290
23291 #. type: textblock
23292 #: ../fish/guestfish-actions.pod:737
23293 msgid "See also: L</sh-lines>"
23294 msgstr ""
23295
23296 #. type: =head2
23297 #: ../fish/guestfish-actions.pod:742
23298 msgid "config"
23299 msgstr ""
23300
23301 #. type: verbatim
23302 #: ../fish/guestfish-actions.pod:744
23303 #, no-wrap
23304 msgid ""
23305 " config qemuparam qemuvalue\n"
23306 "\n"
23307 msgstr ""
23308
23309 #. type: =head2
23310 #: ../fish/guestfish-actions.pod:755
23311 msgid "copy-size"
23312 msgstr ""
23313
23314 #. type: verbatim
23315 #: ../fish/guestfish-actions.pod:757
23316 #, no-wrap
23317 msgid ""
23318 " copy-size src dest size\n"
23319 "\n"
23320 msgstr ""
23321
23322 #. type: =head2
23323 #: ../fish/guestfish-actions.pod:765
23324 msgid "cp"
23325 msgstr ""
23326
23327 #. type: verbatim
23328 #: ../fish/guestfish-actions.pod:767
23329 #, no-wrap
23330 msgid ""
23331 " cp src dest\n"
23332 "\n"
23333 msgstr ""
23334
23335 #. type: =head2
23336 #: ../fish/guestfish-actions.pod:772
23337 msgid "cp-a"
23338 msgstr ""
23339
23340 #. type: verbatim
23341 #: ../fish/guestfish-actions.pod:774
23342 #, no-wrap
23343 msgid ""
23344 " cp-a src dest\n"
23345 "\n"
23346 msgstr ""
23347
23348 #. type: =head2
23349 #: ../fish/guestfish-actions.pod:779
23350 msgid "dd"
23351 msgstr ""
23352
23353 #. type: verbatim
23354 #: ../fish/guestfish-actions.pod:781
23355 #, no-wrap
23356 msgid ""
23357 " dd src dest\n"
23358 "\n"
23359 msgstr ""
23360
23361 #. type: textblock
23362 #: ../fish/guestfish-actions.pod:788
23363 msgid ""
23364 "If the destination is a device, it must be as large or larger than the "
23365 "source file or device, otherwise the copy will fail.  This command cannot do "
23366 "partial copies (see L</copy-size>)."
23367 msgstr ""
23368
23369 #. type: =head2
23370 #: ../fish/guestfish-actions.pod:792
23371 msgid "df"
23372 msgstr ""
23373
23374 #. type: verbatim
23375 #: ../fish/guestfish-actions.pod:794
23376 #, no-wrap
23377 msgid ""
23378 " df\n"
23379 "\n"
23380 msgstr ""
23381
23382 #. type: textblock
23383 #: ../fish/guestfish-actions.pod:798 ../fish/guestfish-actions.pod:809
23384 msgid ""
23385 "This command is mostly useful for interactive sessions.  It is I<not> "
23386 "intended that you try to parse the output string.  Use L</statvfs> from "
23387 "programs."
23388 msgstr ""
23389
23390 #. type: =head2
23391 #: ../fish/guestfish-actions.pod:802
23392 msgid "df-h"
23393 msgstr ""
23394
23395 #. type: verbatim
23396 #: ../fish/guestfish-actions.pod:804
23397 #, no-wrap
23398 msgid ""
23399 " df-h\n"
23400 "\n"
23401 msgstr ""
23402
23403 #. type: =head2
23404 #: ../fish/guestfish-actions.pod:813
23405 msgid "dmesg"
23406 msgstr ""
23407
23408 #. type: verbatim
23409 #: ../fish/guestfish-actions.pod:815
23410 #, no-wrap
23411 msgid ""
23412 " dmesg\n"
23413 "\n"
23414 msgstr ""
23415
23416 #. type: textblock
23417 #: ../fish/guestfish-actions.pod:821
23418 msgid ""
23419 "Another way to get the same information is to enable verbose messages with "
23420 "L</set-verbose> or by setting the environment variable C<LIBGUESTFS_DEBUG=1> "
23421 "before running the program."
23422 msgstr ""
23423
23424 #. type: =head2
23425 #: ../fish/guestfish-actions.pod:826
23426 msgid "download"
23427 msgstr ""
23428
23429 #. type: verbatim
23430 #: ../fish/guestfish-actions.pod:828
23431 #, no-wrap
23432 msgid ""
23433 " download remotefilename (filename|-)\n"
23434 "\n"
23435 msgstr ""
23436
23437 #. type: textblock
23438 #: ../fish/guestfish-actions.pod:835
23439 msgid "See also L</upload>, L</cat>."
23440 msgstr ""
23441
23442 #. type: =head2
23443 #: ../fish/guestfish-actions.pod:839
23444 msgid "download-offset"
23445 msgstr ""
23446
23447 #. type: verbatim
23448 #: ../fish/guestfish-actions.pod:841
23449 #, no-wrap
23450 msgid ""
23451 " download-offset remotefilename (filename|-) offset size\n"
23452 "\n"
23453 msgstr ""
23454
23455 #. type: textblock
23456 #: ../fish/guestfish-actions.pod:849
23457 msgid ""
23458 "Note that there is no limit on the amount of data that can be downloaded "
23459 "with this call, unlike with L</pread>, and this call always reads the full "
23460 "amount unless an error occurs."
23461 msgstr ""
23462
23463 #. type: textblock
23464 #: ../fish/guestfish-actions.pod:854
23465 msgid "See also L</download>, L</pread>."
23466 msgstr ""
23467
23468 #. type: =head2
23469 #: ../fish/guestfish-actions.pod:858
23470 msgid "drop-caches"
23471 msgstr ""
23472
23473 #. type: verbatim
23474 #: ../fish/guestfish-actions.pod:860
23475 #, no-wrap
23476 msgid ""
23477 " drop-caches whattodrop\n"
23478 "\n"
23479 msgstr ""
23480
23481 #. type: =head2
23482 #: ../fish/guestfish-actions.pod:872
23483 msgid "du"
23484 msgstr ""
23485
23486 #. type: verbatim
23487 #: ../fish/guestfish-actions.pod:874
23488 #, no-wrap
23489 msgid ""
23490 " du path\n"
23491 "\n"
23492 msgstr ""
23493
23494 #. type: =head2
23495 #: ../fish/guestfish-actions.pod:886
23496 msgid "e2fsck-f"
23497 msgstr ""
23498
23499 #. type: verbatim
23500 #: ../fish/guestfish-actions.pod:888
23501 #, no-wrap
23502 msgid ""
23503 " e2fsck-f device\n"
23504 "\n"
23505 msgstr ""
23506
23507 #. type: textblock
23508 #: ../fish/guestfish-actions.pod:894
23509 msgid ""
23510 "This command is only needed because of L</resize2fs> (q.v.).  Normally you "
23511 "should use L</fsck>."
23512 msgstr ""
23513
23514 #. type: =head2
23515 #: ../fish/guestfish-actions.pod:897
23516 msgid "echo-daemon"
23517 msgstr ""
23518
23519 #. type: verbatim
23520 #: ../fish/guestfish-actions.pod:899
23521 #, no-wrap
23522 msgid ""
23523 " echo-daemon 'words ...'\n"
23524 "\n"
23525 msgstr ""
23526
23527 #. type: textblock
23528 #: ../fish/guestfish-actions.pod:906
23529 msgid "See also L</ping-daemon>."
23530 msgstr ""
23531
23532 #. type: =head2
23533 #: ../fish/guestfish-actions.pod:908
23534 msgid "egrep"
23535 msgstr ""
23536
23537 #. type: verbatim
23538 #: ../fish/guestfish-actions.pod:910
23539 #, no-wrap
23540 msgid ""
23541 " egrep regex path\n"
23542 "\n"
23543 msgstr ""
23544
23545 #. type: =head2
23546 #: ../fish/guestfish-actions.pod:918
23547 msgid "egrepi"
23548 msgstr ""
23549
23550 #. type: verbatim
23551 #: ../fish/guestfish-actions.pod:920
23552 #, no-wrap
23553 msgid ""
23554 " egrepi regex path\n"
23555 "\n"
23556 msgstr ""
23557
23558 #. type: =head2
23559 #: ../fish/guestfish-actions.pod:928
23560 msgid "equal"
23561 msgstr ""
23562
23563 #. type: verbatim
23564 #: ../fish/guestfish-actions.pod:930
23565 #, no-wrap
23566 msgid ""
23567 " equal file1 file2\n"
23568 "\n"
23569 msgstr ""
23570
23571 #. type: =head2
23572 #: ../fish/guestfish-actions.pod:937
23573 msgid "exists"
23574 msgstr ""
23575
23576 #. type: verbatim
23577 #: ../fish/guestfish-actions.pod:939
23578 #, no-wrap
23579 msgid ""
23580 " exists path\n"
23581 "\n"
23582 msgstr ""
23583
23584 #. type: textblock
23585 #: ../fish/guestfish-actions.pod:944
23586 msgid "See also L</is-file>, L</is-dir>, L</stat>."
23587 msgstr ""
23588
23589 #. type: =head2
23590 #: ../fish/guestfish-actions.pod:946
23591 msgid "fallocate"
23592 msgstr ""
23593
23594 #. type: verbatim
23595 #: ../fish/guestfish-actions.pod:948
23596 #, no-wrap
23597 msgid ""
23598 " fallocate path len\n"
23599 "\n"
23600 msgstr ""
23601
23602 #. type: =head2
23603 #: ../fish/guestfish-actions.pod:965
23604 msgid "fallocate64"
23605 msgstr ""
23606
23607 #. type: verbatim
23608 #: ../fish/guestfish-actions.pod:967
23609 #, no-wrap
23610 msgid ""
23611 " fallocate64 path len\n"
23612 "\n"
23613 msgstr ""
23614
23615 #. type: textblock
23616 #: ../fish/guestfish-actions.pod:973
23617 msgid ""
23618 "Note that this call allocates disk blocks for the file.  To create a sparse "
23619 "file use L</truncate-size> instead."
23620 msgstr ""
23621
23622 #. type: textblock
23623 #: ../fish/guestfish-actions.pod:976
23624 msgid ""
23625 "The deprecated call L</fallocate> does the same, but owing to an oversight "
23626 "it only allowed 30 bit lengths to be specified, effectively limiting the "
23627 "maximum size of files created through that call to 1GB."
23628 msgstr ""
23629
23630 #. type: =head2
23631 #: ../fish/guestfish-actions.pod:985
23632 msgid "fgrep"
23633 msgstr ""
23634
23635 #. type: verbatim
23636 #: ../fish/guestfish-actions.pod:987
23637 #, no-wrap
23638 msgid ""
23639 " fgrep pattern path\n"
23640 "\n"
23641 msgstr ""
23642
23643 #. type: =head2
23644 #: ../fish/guestfish-actions.pod:995
23645 msgid "fgrepi"
23646 msgstr ""
23647
23648 #. type: verbatim
23649 #: ../fish/guestfish-actions.pod:997
23650 #, no-wrap
23651 msgid ""
23652 " fgrepi pattern path\n"
23653 "\n"
23654 msgstr ""
23655
23656 #. type: =head2
23657 #: ../fish/guestfish-actions.pod:1005
23658 msgid "file"
23659 msgstr ""
23660
23661 #. type: verbatim
23662 #: ../fish/guestfish-actions.pod:1007
23663 #, no-wrap
23664 msgid ""
23665 " file path\n"
23666 "\n"
23667 msgstr ""
23668
23669 #. type: textblock
23670 #: ../fish/guestfish-actions.pod:1023
23671 msgid ""
23672 "See also: L<file(1)>, L</vfs-type>, L</lstat>, L</is-file>, L</is-blockdev> "
23673 "(etc), L</is-zero>."
23674 msgstr ""
23675
23676 #. type: =head2
23677 #: ../fish/guestfish-actions.pod:1026
23678 msgid "file-architecture"
23679 msgstr ""
23680
23681 #. type: verbatim
23682 #: ../fish/guestfish-actions.pod:1028
23683 #, no-wrap
23684 msgid ""
23685 " file-architecture filename\n"
23686 "\n"
23687 msgstr ""
23688
23689 #. type: =head2
23690 #: ../fish/guestfish-actions.pod:1131
23691 msgid "filesize"
23692 msgstr ""
23693
23694 #. type: verbatim
23695 #: ../fish/guestfish-actions.pod:1133
23696 #, no-wrap
23697 msgid ""
23698 " filesize file\n"
23699 "\n"
23700 msgstr ""
23701
23702 #. type: textblock
23703 #: ../fish/guestfish-actions.pod:1137
23704 msgid ""
23705 "To get other stats about a file, use L</stat>, L</lstat>, L</is-dir>, L</is-"
23706 "file> etc.  To get the size of block devices, use L</blockdev-getsize64>."
23707 msgstr ""
23708
23709 #. type: =head2
23710 #: ../fish/guestfish-actions.pod:1141
23711 msgid "fill"
23712 msgstr ""
23713
23714 #. type: verbatim
23715 #: ../fish/guestfish-actions.pod:1143
23716 #, no-wrap
23717 msgid ""
23718 " fill c len path\n"
23719 "\n"
23720 msgstr ""
23721
23722 #. type: textblock
23723 #: ../fish/guestfish-actions.pod:1149
23724 msgid ""
23725 "To fill a file with zero bytes (sparsely), it is much more efficient to use "
23726 "L</truncate-size>.  To create a file with a pattern of repeating bytes use "
23727 "L</fill-pattern>."
23728 msgstr ""
23729
23730 #. type: =head2
23731 #: ../fish/guestfish-actions.pod:1154
23732 msgid "fill-pattern"
23733 msgstr ""
23734
23735 #. type: verbatim
23736 #: ../fish/guestfish-actions.pod:1156
23737 #, no-wrap
23738 msgid ""
23739 " fill-pattern pattern len path\n"
23740 "\n"
23741 msgstr ""
23742
23743 #. type: textblock
23744 #: ../fish/guestfish-actions.pod:1158
23745 msgid ""
23746 "This function is like L</fill> except that it creates a new file of length "
23747 "C<len> containing the repeating pattern of bytes in C<pattern>.  The pattern "
23748 "is truncated if necessary to ensure the length of the file is exactly C<len> "
23749 "bytes."
23750 msgstr ""
23751
23752 #. type: =head2
23753 #: ../fish/guestfish-actions.pod:1163
23754 msgid "find"
23755 msgstr ""
23756
23757 #. type: verbatim
23758 #: ../fish/guestfish-actions.pod:1165
23759 #, no-wrap
23760 msgid ""
23761 " find directory\n"
23762 "\n"
23763 msgstr ""
23764
23765 #. type: textblock
23766 #: ../fish/guestfish-actions.pod:1179
23767 msgid "then the returned list from L</find> C</tmp> would be 4 elements:"
23768 msgstr ""
23769
23770 #. type: textblock
23771 #: ../fish/guestfish-actions.pod:1192
23772 msgid "See also L</find0>."
23773 msgstr ""
23774
23775 #. type: =head2
23776 #: ../fish/guestfish-actions.pod:1197
23777 msgid "find0"
23778 msgstr ""
23779
23780 #. type: verbatim
23781 #: ../fish/guestfish-actions.pod:1199
23782 #, no-wrap
23783 msgid ""
23784 " find0 directory (files|-)\n"
23785 "\n"
23786 msgstr ""
23787
23788 #. type: textblock
23789 #: ../fish/guestfish-actions.pod:1205
23790 msgid ""
23791 "This command works the same way as L</find> with the following exceptions:"
23792 msgstr ""
23793
23794 #. type: =head2
23795 #: ../fish/guestfish-actions.pod:1232
23796 msgid "findfs-label"
23797 msgstr ""
23798
23799 #. type: verbatim
23800 #: ../fish/guestfish-actions.pod:1234
23801 #, no-wrap
23802 msgid ""
23803 " findfs-label label\n"
23804 "\n"
23805 msgstr ""
23806
23807 #. type: textblock
23808 #: ../fish/guestfish-actions.pod:1240
23809 msgid "To find the label of a filesystem, use L</vfs-label>."
23810 msgstr ""
23811
23812 #. type: =head2
23813 #: ../fish/guestfish-actions.pod:1242
23814 msgid "findfs-uuid"
23815 msgstr ""
23816
23817 #. type: verbatim
23818 #: ../fish/guestfish-actions.pod:1244
23819 #, no-wrap
23820 msgid ""
23821 " findfs-uuid uuid\n"
23822 "\n"
23823 msgstr ""
23824
23825 #. type: textblock
23826 #: ../fish/guestfish-actions.pod:1250
23827 msgid "To find the UUID of a filesystem, use L</vfs-uuid>."
23828 msgstr ""
23829
23830 #. type: =head2
23831 #: ../fish/guestfish-actions.pod:1252
23832 msgid "fsck"
23833 msgstr ""
23834
23835 #. type: verbatim
23836 #: ../fish/guestfish-actions.pod:1254
23837 #, no-wrap
23838 msgid ""
23839 " fsck fstype device\n"
23840 "\n"
23841 msgstr ""
23842
23843 #. type: =head2
23844 #: ../fish/guestfish-actions.pod:1284
23845 msgid "get-append"
23846 msgstr ""
23847
23848 #. type: verbatim
23849 #: ../fish/guestfish-actions.pod:1286
23850 #, no-wrap
23851 msgid ""
23852 " get-append\n"
23853 "\n"
23854 msgstr ""
23855
23856 #. type: =head2
23857 #: ../fish/guestfish-actions.pod:1293
23858 msgid "get-attach-method"
23859 msgstr ""
23860
23861 #. type: verbatim
23862 #: ../fish/guestfish-actions.pod:1295
23863 #, no-wrap
23864 msgid ""
23865 " get-attach-method\n"
23866 "\n"
23867 msgstr ""
23868
23869 #. type: textblock
23870 #: ../fish/guestfish-actions.pod:1297
23871 msgid "Return the current attach method.  See L</set-attach-method>."
23872 msgstr ""
23873
23874 #. type: =head2
23875 #: ../fish/guestfish-actions.pod:1299
23876 msgid "get-autosync"
23877 msgstr ""
23878
23879 #. type: verbatim
23880 #: ../fish/guestfish-actions.pod:1301
23881 #, no-wrap
23882 msgid ""
23883 " get-autosync\n"
23884 "\n"
23885 msgstr ""
23886
23887 #. type: =head2
23888 #: ../fish/guestfish-actions.pod:1305
23889 msgid "get-direct"
23890 msgstr ""
23891
23892 #. type: verbatim
23893 #: ../fish/guestfish-actions.pod:1307
23894 #, no-wrap
23895 msgid ""
23896 " get-direct\n"
23897 "\n"
23898 msgstr ""
23899
23900 #. type: =head2
23901 #: ../fish/guestfish-actions.pod:1311
23902 msgid "get-e2label"
23903 msgstr ""
23904
23905 #. type: verbatim
23906 #: ../fish/guestfish-actions.pod:1313
23907 #, no-wrap
23908 msgid ""
23909 " get-e2label device\n"
23910 "\n"
23911 msgstr ""
23912
23913 #. type: =head2
23914 #: ../fish/guestfish-actions.pod:1325
23915 msgid "get-e2uuid"
23916 msgstr ""
23917
23918 #. type: verbatim
23919 #: ../fish/guestfish-actions.pod:1327
23920 #, no-wrap
23921 msgid ""
23922 " get-e2uuid device\n"
23923 "\n"
23924 msgstr ""
23925
23926 #. type: =head2
23927 #: ../fish/guestfish-actions.pod:1339
23928 msgid "get-memsize"
23929 msgstr ""
23930
23931 #. type: verbatim
23932 #: ../fish/guestfish-actions.pod:1341
23933 #, no-wrap
23934 msgid ""
23935 " get-memsize\n"
23936 "\n"
23937 msgstr ""
23938
23939 #. type: textblock
23940 #: ../fish/guestfish-actions.pod:1346
23941 msgid ""
23942 "If L</set-memsize> was not called on this handle, and if "
23943 "C<LIBGUESTFS_MEMSIZE> was not set, then this returns the compiled-in default "
23944 "value for memsize."
23945 msgstr ""
23946
23947 #. type: =head2
23948 #: ../fish/guestfish-actions.pod:1353
23949 msgid "get-network"
23950 msgstr ""
23951
23952 #. type: verbatim
23953 #: ../fish/guestfish-actions.pod:1355
23954 #, no-wrap
23955 msgid ""
23956 " get-network\n"
23957 "\n"
23958 msgstr ""
23959
23960 #. type: =head2
23961 #: ../fish/guestfish-actions.pod:1359
23962 msgid "get-path"
23963 msgstr ""
23964
23965 #. type: verbatim
23966 #: ../fish/guestfish-actions.pod:1361
23967 #, no-wrap
23968 msgid ""
23969 " get-path\n"
23970 "\n"
23971 msgstr ""
23972
23973 #. type: =head2
23974 #: ../fish/guestfish-actions.pod:1368
23975 msgid "get-pid"
23976 msgstr ""
23977
23978 #. type: =head2
23979 #: ../fish/guestfish-actions.pod:1370
23980 msgid "pid"
23981 msgstr ""
23982
23983 #. type: verbatim
23984 #: ../fish/guestfish-actions.pod:1372
23985 #, no-wrap
23986 msgid ""
23987 " get-pid\n"
23988 "\n"
23989 msgstr ""
23990
23991 #. type: =head2
23992 #: ../fish/guestfish-actions.pod:1379
23993 msgid "get-qemu"
23994 msgstr ""
23995
23996 #. type: verbatim
23997 #: ../fish/guestfish-actions.pod:1381
23998 #, no-wrap
23999 msgid ""
24000 " get-qemu\n"
24001 "\n"
24002 msgstr ""
24003
24004 #. type: =head2
24005 #: ../fish/guestfish-actions.pod:1388
24006 msgid "get-recovery-proc"
24007 msgstr ""
24008
24009 #. type: verbatim
24010 #: ../fish/guestfish-actions.pod:1390
24011 #, no-wrap
24012 msgid ""
24013 " get-recovery-proc\n"
24014 "\n"
24015 msgstr ""
24016
24017 #. type: =head2
24018 #: ../fish/guestfish-actions.pod:1394
24019 msgid "get-selinux"
24020 msgstr ""
24021
24022 #. type: verbatim
24023 #: ../fish/guestfish-actions.pod:1396
24024 #, no-wrap
24025 msgid ""
24026 " get-selinux\n"
24027 "\n"
24028 msgstr ""
24029
24030 #. type: textblock
24031 #: ../fish/guestfish-actions.pod:1398
24032 msgid ""
24033 "This returns the current setting of the selinux flag which is passed to the "
24034 "appliance at boot time.  See L</set-selinux>."
24035 msgstr ""
24036
24037 #. type: =head2
24038 #: ../fish/guestfish-actions.pod:1404
24039 msgid "get-state"
24040 msgstr ""
24041
24042 #. type: verbatim
24043 #: ../fish/guestfish-actions.pod:1406
24044 #, no-wrap
24045 msgid ""
24046 " get-state\n"
24047 "\n"
24048 msgstr ""
24049
24050 #. type: =head2
24051 #: ../fish/guestfish-actions.pod:1413
24052 msgid "get-trace"
24053 msgstr ""
24054
24055 #. type: verbatim
24056 #: ../fish/guestfish-actions.pod:1415
24057 #, no-wrap
24058 msgid ""
24059 " get-trace\n"
24060 "\n"
24061 msgstr ""
24062
24063 #. type: =head2
24064 #: ../fish/guestfish-actions.pod:1419
24065 msgid "get-umask"
24066 msgstr ""
24067
24068 #. type: verbatim
24069 #: ../fish/guestfish-actions.pod:1421
24070 #, no-wrap
24071 msgid ""
24072 " get-umask\n"
24073 "\n"
24074 msgstr ""
24075
24076 #. type: textblock
24077 #: ../fish/guestfish-actions.pod:1423
24078 msgid ""
24079 "Return the current umask.  By default the umask is C<022> unless it has been "
24080 "set by calling L</umask>."
24081 msgstr ""
24082
24083 #. type: =head2
24084 #: ../fish/guestfish-actions.pod:1426
24085 msgid "get-verbose"
24086 msgstr ""
24087
24088 #. type: verbatim
24089 #: ../fish/guestfish-actions.pod:1428
24090 #, no-wrap
24091 msgid ""
24092 " get-verbose\n"
24093 "\n"
24094 msgstr ""
24095
24096 #. type: =head2
24097 #: ../fish/guestfish-actions.pod:1432
24098 msgid "getcon"
24099 msgstr ""
24100
24101 #. type: verbatim
24102 #: ../fish/guestfish-actions.pod:1434
24103 #, no-wrap
24104 msgid ""
24105 " getcon\n"
24106 "\n"
24107 msgstr ""
24108
24109 #. type: textblock
24110 #: ../fish/guestfish-actions.pod:1438
24111 msgid "See the documentation about SELINUX in L<guestfs(3)>, and L</setcon>"
24112 msgstr ""
24113
24114 #. type: =head2
24115 #: ../fish/guestfish-actions.pod:1441
24116 msgid "getxattr"
24117 msgstr ""
24118
24119 #. type: verbatim
24120 #: ../fish/guestfish-actions.pod:1443
24121 #, no-wrap
24122 msgid ""
24123 " getxattr path name\n"
24124 "\n"
24125 msgstr ""
24126
24127 #. type: textblock
24128 #: ../fish/guestfish-actions.pod:1445
24129 msgid ""
24130 "Get a single extended attribute from file C<path> named C<name>.  This call "
24131 "follows symlinks.  If you want to lookup an extended attribute for the "
24132 "symlink itself, use L</lgetxattr>."
24133 msgstr ""
24134
24135 #. type: textblock
24136 #: ../fish/guestfish-actions.pod:1449 ../fish/guestfish-actions.pod:2476
24137 msgid ""
24138 "Normally it is better to get all extended attributes from a file in one go "
24139 "by calling L</getxattrs>.  However some Linux filesystem implementations are "
24140 "buggy and do not provide a way to list out attributes.  For these "
24141 "filesystems (notably ntfs-3g)  you have to know the names of the extended "
24142 "attributes you want in advance and call this function."
24143 msgstr ""
24144
24145 #. type: textblock
24146 #: ../fish/guestfish-actions.pod:1459
24147 msgid "See also: L</getxattrs>, L</lgetxattr>, L<attr(5)>."
24148 msgstr ""
24149
24150 #. type: =head2
24151 #: ../fish/guestfish-actions.pod:1461
24152 msgid "getxattrs"
24153 msgstr ""
24154
24155 #. type: verbatim
24156 #: ../fish/guestfish-actions.pod:1463
24157 #, no-wrap
24158 msgid ""
24159 " getxattrs path\n"
24160 "\n"
24161 msgstr ""
24162
24163 #. type: textblock
24164 #: ../fish/guestfish-actions.pod:1471
24165 msgid "See also: L</lgetxattrs>, L<attr(5)>."
24166 msgstr ""
24167
24168 #. type: =head2
24169 #: ../fish/guestfish-actions.pod:1473
24170 msgid "glob-expand"
24171 msgstr ""
24172
24173 #. type: verbatim
24174 #: ../fish/guestfish-actions.pod:1475
24175 #, no-wrap
24176 msgid ""
24177 " glob-expand pattern\n"
24178 "\n"
24179 msgstr ""
24180
24181 #. type: =head2
24182 #: ../fish/guestfish-actions.pod:1488
24183 msgid "grep"
24184 msgstr ""
24185
24186 #. type: verbatim
24187 #: ../fish/guestfish-actions.pod:1490
24188 #, no-wrap
24189 msgid ""
24190 " grep regex path\n"
24191 "\n"
24192 msgstr ""
24193
24194 #. type: =head2
24195 #: ../fish/guestfish-actions.pod:1498
24196 msgid "grepi"
24197 msgstr ""
24198
24199 #. type: verbatim
24200 #: ../fish/guestfish-actions.pod:1500
24201 #, no-wrap
24202 msgid ""
24203 " grepi regex path\n"
24204 "\n"
24205 msgstr ""
24206
24207 #. type: =head2
24208 #: ../fish/guestfish-actions.pod:1508
24209 msgid "grub-install"
24210 msgstr ""
24211
24212 #. type: verbatim
24213 #: ../fish/guestfish-actions.pod:1510
24214 #, no-wrap
24215 msgid ""
24216 " grub-install root device\n"
24217 "\n"
24218 msgstr ""
24219
24220 #. type: =head2
24221 #: ../fish/guestfish-actions.pod:1526
24222 msgid "head"
24223 msgstr ""
24224
24225 #. type: verbatim
24226 #: ../fish/guestfish-actions.pod:1528
24227 #, no-wrap
24228 msgid ""
24229 " head path\n"
24230 "\n"
24231 msgstr ""
24232
24233 #. type: =head2
24234 #: ../fish/guestfish-actions.pod:1536
24235 msgid "head-n"
24236 msgstr ""
24237
24238 #. type: verbatim
24239 #: ../fish/guestfish-actions.pod:1538
24240 #, no-wrap
24241 msgid ""
24242 " head-n nrlines path\n"
24243 "\n"
24244 msgstr ""
24245
24246 #. type: =head2
24247 #: ../fish/guestfish-actions.pod:1551
24248 msgid "hexdump"
24249 msgstr ""
24250
24251 #. type: verbatim
24252 #: ../fish/guestfish-actions.pod:1553
24253 #, no-wrap
24254 msgid ""
24255 " hexdump path\n"
24256 "\n"
24257 msgstr ""
24258
24259 #. type: =head2
24260 #: ../fish/guestfish-actions.pod:1561
24261 msgid "initrd-cat"
24262 msgstr ""
24263
24264 #. type: verbatim
24265 #: ../fish/guestfish-actions.pod:1563
24266 #, no-wrap
24267 msgid ""
24268 " initrd-cat initrdpath filename\n"
24269 "\n"
24270 msgstr ""
24271
24272 #. type: textblock
24273 #: ../fish/guestfish-actions.pod:1575
24274 msgid "See also L</initrd-list>."
24275 msgstr ""
24276
24277 #. type: =head2
24278 #: ../fish/guestfish-actions.pod:1580
24279 msgid "initrd-list"
24280 msgstr ""
24281
24282 #. type: verbatim
24283 #: ../fish/guestfish-actions.pod:1582
24284 #, no-wrap
24285 msgid ""
24286 " initrd-list path\n"
24287 "\n"
24288 msgstr ""
24289
24290 #. type: =head2
24291 #: ../fish/guestfish-actions.pod:1594
24292 msgid "inotify-add-watch"
24293 msgstr ""
24294
24295 #. type: verbatim
24296 #: ../fish/guestfish-actions.pod:1596
24297 #, no-wrap
24298 msgid ""
24299 " inotify-add-watch path mask\n"
24300 "\n"
24301 msgstr ""
24302
24303 #. type: =head2
24304 #: ../fish/guestfish-actions.pod:1608
24305 msgid "inotify-close"
24306 msgstr ""
24307
24308 #. type: verbatim
24309 #: ../fish/guestfish-actions.pod:1610
24310 #, no-wrap
24311 msgid ""
24312 " inotify-close\n"
24313 "\n"
24314 msgstr ""
24315
24316 #. type: =head2
24317 #: ../fish/guestfish-actions.pod:1616
24318 msgid "inotify-files"
24319 msgstr ""
24320
24321 #. type: verbatim
24322 #: ../fish/guestfish-actions.pod:1618
24323 #, no-wrap
24324 msgid ""
24325 " inotify-files\n"
24326 "\n"
24327 msgstr ""
24328
24329 #. type: textblock
24330 #: ../fish/guestfish-actions.pod:1620
24331 msgid ""
24332 "This function is a helpful wrapper around L</inotify-read> which just "
24333 "returns a list of pathnames of objects that were touched.  The returned "
24334 "pathnames are sorted and deduplicated."
24335 msgstr ""
24336
24337 #. type: =head2
24338 #: ../fish/guestfish-actions.pod:1624
24339 msgid "inotify-init"
24340 msgstr ""
24341
24342 #. type: verbatim
24343 #: ../fish/guestfish-actions.pod:1626
24344 #, no-wrap
24345 msgid ""
24346 " inotify-init maxevents\n"
24347 "\n"
24348 msgstr ""
24349
24350 #. type: textblock
24351 #: ../fish/guestfish-actions.pod:1632
24352 msgid ""
24353 "C<maxevents> is the maximum number of events which will be queued up between "
24354 "calls to L</inotify-read> or L</inotify-files>.  If this is passed as C<0>, "
24355 "then the kernel (or previously set)  default is used.  For Linux 2.6.29 the "
24356 "default was 16384 events.  Beyond this limit, the kernel throws away events, "
24357 "but records the fact that it threw them away by setting a flag "
24358 "C<IN_Q_OVERFLOW> in the returned structure list (see L</inotify-read>)."
24359 msgstr ""
24360
24361 #. type: textblock
24362 #: ../fish/guestfish-actions.pod:1642
24363 msgid ""
24364 "Before any events are generated, you have to add some watches to the "
24365 "internal watch list.  See: L</inotify-add-watch>, L</inotify-rm-watch> and "
24366 "L</inotify-watch-all>."
24367 msgstr ""
24368
24369 #. type: textblock
24370 #: ../fish/guestfish-actions.pod:1648
24371 msgid ""
24372 "Queued up events should be read periodically by calling L</inotify-read> (or "
24373 "L</inotify-files> which is just a helpful wrapper around L</inotify-read>).  "
24374 "If you don't read the events out often enough then you risk the internal "
24375 "queue overflowing."
24376 msgstr ""
24377
24378 #. type: textblock
24379 #: ../fish/guestfish-actions.pod:1655
24380 msgid ""
24381 "The handle should be closed after use by calling L</inotify-close>.  This "
24382 "also removes any watches automatically."
24383 msgstr ""
24384
24385 #. type: =head2
24386 #: ../fish/guestfish-actions.pod:1664
24387 msgid "inotify-read"
24388 msgstr ""
24389
24390 #. type: verbatim
24391 #: ../fish/guestfish-actions.pod:1666
24392 #, no-wrap
24393 msgid ""
24394 " inotify-read\n"
24395 "\n"
24396 msgstr ""
24397
24398 #. type: =head2
24399 #: ../fish/guestfish-actions.pod:1679
24400 msgid "inotify-rm-watch"
24401 msgstr ""
24402
24403 #. type: verbatim
24404 #: ../fish/guestfish-actions.pod:1681
24405 #, no-wrap
24406 msgid ""
24407 " inotify-rm-watch wd\n"
24408 "\n"
24409 msgstr ""
24410
24411 #. type: textblock
24412 #: ../fish/guestfish-actions.pod:1683
24413 msgid "Remove a previously defined inotify watch.  See L</inotify-add-watch>."
24414 msgstr ""
24415
24416 #. type: =head2
24417 #: ../fish/guestfish-actions.pod:1686
24418 msgid "inspect-get-arch"
24419 msgstr ""
24420
24421 #. type: verbatim
24422 #: ../fish/guestfish-actions.pod:1688
24423 #, no-wrap
24424 msgid ""
24425 " inspect-get-arch root\n"
24426 "\n"
24427 msgstr ""
24428
24429 #. type: textblock
24430 #: ../fish/guestfish-actions.pod:1690
24431 msgid ""
24432 "This returns the architecture of the inspected operating system.  The "
24433 "possible return values are listed under L</file-architecture>."
24434 msgstr ""
24435
24436 #. type: =head2
24437 #: ../fish/guestfish-actions.pod:1699
24438 msgid "inspect-get-distro"
24439 msgstr ""
24440
24441 #. type: verbatim
24442 #: ../fish/guestfish-actions.pod:1701
24443 #, no-wrap
24444 msgid ""
24445 " inspect-get-distro root\n"
24446 "\n"
24447 msgstr ""
24448
24449 #. type: =head2
24450 #: ../fish/guestfish-actions.pod:1782
24451 msgid "inspect-get-drive-mappings"
24452 msgstr ""
24453
24454 #. type: verbatim
24455 #: ../fish/guestfish-actions.pod:1784
24456 #, no-wrap
24457 msgid ""
24458 " inspect-get-drive-mappings root\n"
24459 "\n"
24460 msgstr ""
24461
24462 #. type: textblock
24463 #: ../fish/guestfish-actions.pod:1811
24464 msgid ""
24465 "Please read L<guestfs(3)/INSPECTION> for more details.  See also L</inspect-"
24466 "get-mountpoints>, L</inspect-get-filesystems>."
24467 msgstr ""
24468
24469 #. type: =head2
24470 #: ../fish/guestfish-actions.pod:1815
24471 msgid "inspect-get-filesystems"
24472 msgstr ""
24473
24474 #. type: verbatim
24475 #: ../fish/guestfish-actions.pod:1817
24476 #, no-wrap
24477 msgid ""
24478 " inspect-get-filesystems root\n"
24479 "\n"
24480 msgstr ""
24481
24482 #. type: textblock
24483 #: ../fish/guestfish-actions.pod:1827
24484 msgid ""
24485 "Please read L<guestfs(3)/INSPECTION> for more details.  See also L</inspect-"
24486 "get-mountpoints>."
24487 msgstr ""
24488
24489 #. type: =head2
24490 #: ../fish/guestfish-actions.pod:1830
24491 msgid "inspect-get-format"
24492 msgstr ""
24493
24494 #. type: verbatim
24495 #: ../fish/guestfish-actions.pod:1832
24496 #, no-wrap
24497 msgid ""
24498 " inspect-get-format root\n"
24499 "\n"
24500 msgstr ""
24501
24502 #. type: =head2
24503 #: ../fish/guestfish-actions.pod:1861
24504 msgid "inspect-get-hostname"
24505 msgstr ""
24506
24507 #. type: verbatim
24508 #: ../fish/guestfish-actions.pod:1863
24509 #, no-wrap
24510 msgid ""
24511 " inspect-get-hostname root\n"
24512 "\n"
24513 msgstr ""
24514
24515 #. type: =head2
24516 #: ../fish/guestfish-actions.pod:1873
24517 msgid "inspect-get-icon"
24518 msgstr ""
24519
24520 #. type: verbatim
24521 #: ../fish/guestfish-actions.pod:1875
24522 #, no-wrap
24523 msgid ""
24524 " inspect-get-icon root [favicon:..] [highquality:..]\n"
24525 "\n"
24526 msgstr ""
24527
24528 #. type: =head2
24529 #: ../fish/guestfish-actions.pod:1939
24530 msgid "inspect-get-major-version"
24531 msgstr ""
24532
24533 #. type: verbatim
24534 #: ../fish/guestfish-actions.pod:1941
24535 #, no-wrap
24536 msgid ""
24537 " inspect-get-major-version root\n"
24538 "\n"
24539 msgstr ""
24540
24541 #. type: =head2
24542 #: ../fish/guestfish-actions.pod:1957
24543 msgid "inspect-get-minor-version"
24544 msgstr ""
24545
24546 #. type: verbatim
24547 #: ../fish/guestfish-actions.pod:1959
24548 #, no-wrap
24549 msgid ""
24550 " inspect-get-minor-version root\n"
24551 "\n"
24552 msgstr ""
24553
24554 #. type: textblock
24555 #: ../fish/guestfish-actions.pod:1966
24556 msgid ""
24557 "Please read L<guestfs(3)/INSPECTION> for more details.  See also L</inspect-"
24558 "get-major-version>."
24559 msgstr ""
24560
24561 #. type: =head2
24562 #: ../fish/guestfish-actions.pod:1969
24563 msgid "inspect-get-mountpoints"
24564 msgstr ""
24565
24566 #. type: verbatim
24567 #: ../fish/guestfish-actions.pod:1971
24568 #, no-wrap
24569 msgid ""
24570 " inspect-get-mountpoints root\n"
24571 "\n"
24572 msgstr ""
24573
24574 #. type: textblock
24575 #: ../fish/guestfish-actions.pod:1990
24576 msgid ""
24577 "For operating systems like Windows which still use drive letters, this call "
24578 "will only return an entry for the first drive \"mounted on\" C</>.  For "
24579 "information about the mapping of drive letters to partitions, see L</inspect-"
24580 "get-drive-mappings>."
24581 msgstr ""
24582
24583 #. type: textblock
24584 #: ../fish/guestfish-actions.pod:1996
24585 msgid ""
24586 "Please read L<guestfs(3)/INSPECTION> for more details.  See also L</inspect-"
24587 "get-filesystems>."
24588 msgstr ""
24589
24590 #. type: =head2
24591 #: ../fish/guestfish-actions.pod:1999
24592 msgid "inspect-get-package-format"
24593 msgstr ""
24594
24595 #. type: verbatim
24596 #: ../fish/guestfish-actions.pod:2001
24597 #, no-wrap
24598 msgid ""
24599 " inspect-get-package-format root\n"
24600 "\n"
24601 msgstr ""
24602
24603 #. type: textblock
24604 #: ../fish/guestfish-actions.pod:2003
24605 msgid ""
24606 "This function and L</inspect-get-package-management> return the package "
24607 "format and package management tool used by the inspected operating system.  "
24608 "For example for Fedora these functions would return C<rpm> (package format) "
24609 "and C<yum> (package management)."
24610 msgstr ""
24611
24612 #. type: =head2
24613 #: ../fish/guestfish-actions.pod:2018
24614 msgid "inspect-get-package-management"
24615 msgstr ""
24616
24617 #. type: verbatim
24618 #: ../fish/guestfish-actions.pod:2020
24619 #, no-wrap
24620 msgid ""
24621 " inspect-get-package-management root\n"
24622 "\n"
24623 msgstr ""
24624
24625 #. type: textblock
24626 #: ../fish/guestfish-actions.pod:2022
24627 msgid ""
24628 "L</inspect-get-package-format> and this function return the package format "
24629 "and package management tool used by the inspected operating system.  For "
24630 "example for Fedora these functions would return C<rpm> (package format) and "
24631 "C<yum> (package management)."
24632 msgstr ""
24633
24634 #. type: =head2
24635 #: ../fish/guestfish-actions.pod:2039
24636 msgid "inspect-get-product-name"
24637 msgstr ""
24638
24639 #. type: verbatim
24640 #: ../fish/guestfish-actions.pod:2041
24641 #, no-wrap
24642 msgid ""
24643 " inspect-get-product-name root\n"
24644 "\n"
24645 msgstr ""
24646
24647 #. type: =head2
24648 #: ../fish/guestfish-actions.pod:2053
24649 msgid "inspect-get-product-variant"
24650 msgstr ""
24651
24652 #. type: verbatim
24653 #: ../fish/guestfish-actions.pod:2055
24654 #, no-wrap
24655 msgid ""
24656 " inspect-get-product-variant root\n"
24657 "\n"
24658 msgstr ""
24659
24660 #. type: textblock
24661 #: ../fish/guestfish-actions.pod:2076
24662 msgid ""
24663 "Please read L<guestfs(3)/INSPECTION> for more details.  See also L</inspect-"
24664 "get-product-name>, L</inspect-get-major-version>."
24665 msgstr ""
24666
24667 #. type: =head2
24668 #: ../fish/guestfish-actions.pod:2080
24669 msgid "inspect-get-roots"
24670 msgstr ""
24671
24672 #. type: verbatim
24673 #: ../fish/guestfish-actions.pod:2082
24674 #, no-wrap
24675 msgid ""
24676 " inspect-get-roots\n"
24677 "\n"
24678 msgstr ""
24679
24680 #. type: textblock
24681 #: ../fish/guestfish-actions.pod:2084
24682 msgid ""
24683 "This function is a convenient way to get the list of root devices, as "
24684 "returned from a previous call to L</inspect-os>, but without redoing the "
24685 "whole inspection process."
24686 msgstr ""
24687
24688 #. type: textblock
24689 #: ../fish/guestfish-actions.pod:2088
24690 msgid ""
24691 "This returns an empty list if either no root devices were found or the "
24692 "caller has not called L</inspect-os>."
24693 msgstr ""
24694
24695 #. type: =head2
24696 #: ../fish/guestfish-actions.pod:2093
24697 msgid "inspect-get-type"
24698 msgstr ""
24699
24700 #. type: verbatim
24701 #: ../fish/guestfish-actions.pod:2095
24702 #, no-wrap
24703 msgid ""
24704 " inspect-get-type root\n"
24705 "\n"
24706 msgstr ""
24707
24708 #. type: =head2
24709 #: ../fish/guestfish-actions.pod:2125
24710 msgid "inspect-get-windows-current-control-set"
24711 msgstr ""
24712
24713 #. type: verbatim
24714 #: ../fish/guestfish-actions.pod:2127
24715 #, no-wrap
24716 msgid ""
24717 " inspect-get-windows-current-control-set root\n"
24718 "\n"
24719 msgstr ""
24720
24721 #. type: =head2
24722 #: ../fish/guestfish-actions.pod:2138
24723 msgid "inspect-get-windows-systemroot"
24724 msgstr ""
24725
24726 #. type: verbatim
24727 #: ../fish/guestfish-actions.pod:2140
24728 #, no-wrap
24729 msgid ""
24730 " inspect-get-windows-systemroot root\n"
24731 "\n"
24732 msgstr ""
24733
24734 #. type: =head2
24735 #: ../fish/guestfish-actions.pod:2151
24736 msgid "inspect-is-live"
24737 msgstr ""
24738
24739 #. type: verbatim
24740 #: ../fish/guestfish-actions.pod:2153
24741 #, no-wrap
24742 msgid ""
24743 " inspect-is-live root\n"
24744 "\n"
24745 msgstr ""
24746
24747 #. type: textblock
24748 #: ../fish/guestfish-actions.pod:2155
24749 msgid ""
24750 "If L</inspect-get-format> returns C<installer> (this is an install disk), "
24751 "then this returns true if a live image was detected on the disk."
24752 msgstr ""
24753
24754 #. type: =head2
24755 #: ../fish/guestfish-actions.pod:2161
24756 msgid "inspect-is-multipart"
24757 msgstr ""
24758
24759 #. type: verbatim
24760 #: ../fish/guestfish-actions.pod:2163
24761 #, no-wrap
24762 msgid ""
24763 " inspect-is-multipart root\n"
24764 "\n"
24765 msgstr ""
24766
24767 #. type: textblock
24768 #: ../fish/guestfish-actions.pod:2165
24769 msgid ""
24770 "If L</inspect-get-format> returns C<installer> (this is an install disk), "
24771 "then this returns true if the disk is part of a set."
24772 msgstr ""
24773
24774 #. type: =head2
24775 #: ../fish/guestfish-actions.pod:2171
24776 msgid "inspect-is-netinst"
24777 msgstr ""
24778
24779 #. type: verbatim
24780 #: ../fish/guestfish-actions.pod:2173
24781 #, no-wrap
24782 msgid ""
24783 " inspect-is-netinst root\n"
24784 "\n"
24785 msgstr ""
24786
24787 #. type: textblock
24788 #: ../fish/guestfish-actions.pod:2175
24789 msgid ""
24790 "If L</inspect-get-format> returns C<installer> (this is an install disk), "
24791 "then this returns true if the disk is a network installer, ie. not a self-"
24792 "contained install CD but one which is likely to require network access to "
24793 "complete the install."
24794 msgstr ""
24795
24796 #. type: =head2
24797 #: ../fish/guestfish-actions.pod:2183
24798 msgid "inspect-list-applications"
24799 msgstr ""
24800
24801 #. type: verbatim
24802 #: ../fish/guestfish-actions.pod:2185
24803 #, no-wrap
24804 msgid ""
24805 " inspect-list-applications root\n"
24806 "\n"
24807 msgstr ""
24808
24809 #. type: textblock
24810 #: ../fish/guestfish-actions.pod:2189
24811 msgid ""
24812 "I<Note:> This call works differently from other parts of the inspection "
24813 "API.  You have to call L</inspect-os>, then L</inspect-get-mountpoints>, "
24814 "then mount up the disks, before calling this.  Listing applications is a "
24815 "significantly more difficult operation which requires access to the full "
24816 "filesystem.  Also note that unlike the other L</inspect-get-*> calls which "
24817 "are just returning data cached in the libguestfs handle, this call actually "
24818 "reads parts of the mounted filesystems during the call."
24819 msgstr ""
24820
24821 #. type: =head2
24822 #: ../fish/guestfish-actions.pod:2279
24823 msgid "inspect-os"
24824 msgstr ""
24825
24826 #. type: verbatim
24827 #: ../fish/guestfish-actions.pod:2281
24828 #, no-wrap
24829 msgid ""
24830 " inspect-os\n"
24831 "\n"
24832 msgstr ""
24833
24834 #. type: textblock
24835 #: ../fish/guestfish-actions.pod:2296
24836 msgid ""
24837 "You can pass the root string(s) returned to other L</inspect-get-*> "
24838 "functions in order to query further information about each operating system, "
24839 "such as the name and version."
24840 msgstr ""
24841
24842 #. type: textblock
24843 #: ../fish/guestfish-actions.pod:2301
24844 msgid ""
24845 "This function uses other libguestfs features such as L</mount-ro> and L</"
24846 "umount-all> in order to mount and unmount filesystems and look at the "
24847 "contents.  This should be called with no disks currently mounted.  The "
24848 "function may also use Augeas, so any existing Augeas handle will be closed."
24849 msgstr ""
24850
24851 #. type: textblock
24852 #: ../fish/guestfish-actions.pod:2313 ../fish/guestfish-actions.pod:2511
24853 #: ../fish/guestfish-actions.pod:2570
24854 msgid "See also L</list-filesystems>."
24855 msgstr ""
24856
24857 #. type: =head2
24858 #: ../fish/guestfish-actions.pod:2315
24859 msgid "is-blockdev"
24860 msgstr ""
24861
24862 #. type: verbatim
24863 #: ../fish/guestfish-actions.pod:2317
24864 #, no-wrap
24865 msgid ""
24866 " is-blockdev path\n"
24867 "\n"
24868 msgstr ""
24869
24870 #. type: textblock
24871 #: ../fish/guestfish-actions.pod:2322 ../fish/guestfish-actions.pod:2340
24872 #: ../fish/guestfish-actions.pod:2359 ../fish/guestfish-actions.pod:2368
24873 #: ../fish/guestfish-actions.pod:2378 ../fish/guestfish-actions.pod:2412
24874 #: ../fish/guestfish-actions.pod:2421
24875 msgid "See also L</stat>."
24876 msgstr ""
24877
24878 #. type: =head2
24879 #: ../fish/guestfish-actions.pod:2324
24880 msgid "is-busy"
24881 msgstr ""
24882
24883 #. type: verbatim
24884 #: ../fish/guestfish-actions.pod:2326
24885 #, no-wrap
24886 msgid ""
24887 " is-busy\n"
24888 "\n"
24889 msgstr ""
24890
24891 #. type: =head2
24892 #: ../fish/guestfish-actions.pod:2333
24893 msgid "is-chardev"
24894 msgstr ""
24895
24896 #. type: verbatim
24897 #: ../fish/guestfish-actions.pod:2335
24898 #, no-wrap
24899 msgid ""
24900 " is-chardev path\n"
24901 "\n"
24902 msgstr ""
24903
24904 #. type: =head2
24905 #: ../fish/guestfish-actions.pod:2342
24906 msgid "is-config"
24907 msgstr ""
24908
24909 #. type: verbatim
24910 #: ../fish/guestfish-actions.pod:2344
24911 #, no-wrap
24912 msgid ""
24913 " is-config\n"
24914 "\n"
24915 msgstr ""
24916
24917 #. type: =head2
24918 #: ../fish/guestfish-actions.pod:2351
24919 msgid "is-dir"
24920 msgstr ""
24921
24922 #. type: verbatim
24923 #: ../fish/guestfish-actions.pod:2353
24924 #, no-wrap
24925 msgid ""
24926 " is-dir path\n"
24927 "\n"
24928 msgstr ""
24929
24930 #. type: =head2
24931 #: ../fish/guestfish-actions.pod:2361
24932 msgid "is-fifo"
24933 msgstr ""
24934
24935 #. type: verbatim
24936 #: ../fish/guestfish-actions.pod:2363
24937 #, no-wrap
24938 msgid ""
24939 " is-fifo path\n"
24940 "\n"
24941 msgstr ""
24942
24943 #. type: =head2
24944 #: ../fish/guestfish-actions.pod:2370
24945 msgid "is-file"
24946 msgstr ""
24947
24948 #. type: verbatim
24949 #: ../fish/guestfish-actions.pod:2372
24950 #, no-wrap
24951 msgid ""
24952 " is-file path\n"
24953 "\n"
24954 msgstr ""
24955
24956 #. type: =head2
24957 #: ../fish/guestfish-actions.pod:2380
24958 msgid "is-launching"
24959 msgstr ""
24960
24961 #. type: verbatim
24962 #: ../fish/guestfish-actions.pod:2382
24963 #, no-wrap
24964 msgid ""
24965 " is-launching\n"
24966 "\n"
24967 msgstr ""
24968
24969 #. type: =head2
24970 #: ../fish/guestfish-actions.pod:2389
24971 msgid "is-lv"
24972 msgstr ""
24973
24974 #. type: verbatim
24975 #: ../fish/guestfish-actions.pod:2391
24976 #, no-wrap
24977 msgid ""
24978 " is-lv device\n"
24979 "\n"
24980 msgstr ""
24981
24982 #. type: =head2
24983 #: ../fish/guestfish-actions.pod:2396
24984 msgid "is-ready"
24985 msgstr ""
24986
24987 #. type: verbatim
24988 #: ../fish/guestfish-actions.pod:2398
24989 #, no-wrap
24990 msgid ""
24991 " is-ready\n"
24992 "\n"
24993 msgstr ""
24994
24995 #. type: =head2
24996 #: ../fish/guestfish-actions.pod:2405
24997 msgid "is-socket"
24998 msgstr ""
24999
25000 #. type: verbatim
25001 #: ../fish/guestfish-actions.pod:2407
25002 #, no-wrap
25003 msgid ""
25004 " is-socket path\n"
25005 "\n"
25006 msgstr ""
25007
25008 #. type: =head2
25009 #: ../fish/guestfish-actions.pod:2414
25010 msgid "is-symlink"
25011 msgstr ""
25012
25013 #. type: verbatim
25014 #: ../fish/guestfish-actions.pod:2416
25015 #, no-wrap
25016 msgid ""
25017 " is-symlink path\n"
25018 "\n"
25019 msgstr ""
25020
25021 #. type: =head2
25022 #: ../fish/guestfish-actions.pod:2423
25023 msgid "is-zero"
25024 msgstr ""
25025
25026 #. type: verbatim
25027 #: ../fish/guestfish-actions.pod:2425
25028 #, no-wrap
25029 msgid ""
25030 " is-zero path\n"
25031 "\n"
25032 msgstr ""
25033
25034 #. type: =head2
25035 #: ../fish/guestfish-actions.pod:2430
25036 msgid "is-zero-device"
25037 msgstr ""
25038
25039 #. type: verbatim
25040 #: ../fish/guestfish-actions.pod:2432
25041 #, no-wrap
25042 msgid ""
25043 " is-zero-device device\n"
25044 "\n"
25045 msgstr ""
25046
25047 #. type: =head2
25048 #: ../fish/guestfish-actions.pod:2438
25049 msgid "kill-subprocess"
25050 msgstr ""
25051
25052 #. type: verbatim
25053 #: ../fish/guestfish-actions.pod:2440
25054 #, no-wrap
25055 msgid ""
25056 " kill-subprocess\n"
25057 "\n"
25058 msgstr ""
25059
25060 #. type: =head2
25061 #: ../fish/guestfish-actions.pod:2444
25062 msgid "launch"
25063 msgstr ""
25064
25065 #. type: =head2
25066 #: ../fish/guestfish-actions.pod:2446
25067 msgid "run"
25068 msgstr ""
25069
25070 #. type: verbatim
25071 #: ../fish/guestfish-actions.pod:2448
25072 #, no-wrap
25073 msgid ""
25074 " launch\n"
25075 "\n"
25076 msgstr ""
25077
25078 #. type: =head2
25079 #: ../fish/guestfish-actions.pod:2456
25080 msgid "lchown"
25081 msgstr ""
25082
25083 #. type: verbatim
25084 #: ../fish/guestfish-actions.pod:2458
25085 #, no-wrap
25086 msgid ""
25087 " lchown owner group path\n"
25088 "\n"
25089 msgstr ""
25090
25091 #. type: textblock
25092 #: ../fish/guestfish-actions.pod:2460
25093 msgid ""
25094 "Change the file owner to C<owner> and group to C<group>.  This is like L</"
25095 "chown> but if C<path> is a symlink then the link itself is changed, not the "
25096 "target."
25097 msgstr ""
25098
25099 #. type: =head2
25100 #: ../fish/guestfish-actions.pod:2468
25101 msgid "lgetxattr"
25102 msgstr ""
25103
25104 #. type: verbatim
25105 #: ../fish/guestfish-actions.pod:2470
25106 #, no-wrap
25107 msgid ""
25108 " lgetxattr path name\n"
25109 "\n"
25110 msgstr ""
25111
25112 #. type: textblock
25113 #: ../fish/guestfish-actions.pod:2486
25114 msgid "See also: L</lgetxattrs>, L</getxattr>, L<attr(5)>."
25115 msgstr ""
25116
25117 #. type: =head2
25118 #: ../fish/guestfish-actions.pod:2488
25119 msgid "lgetxattrs"
25120 msgstr ""
25121
25122 #. type: verbatim
25123 #: ../fish/guestfish-actions.pod:2490
25124 #, no-wrap
25125 msgid ""
25126 " lgetxattrs path\n"
25127 "\n"
25128 msgstr ""
25129
25130 #. type: textblock
25131 #: ../fish/guestfish-actions.pod:2492
25132 msgid ""
25133 "This is the same as L</getxattrs>, but if C<path> is a symbolic link, then "
25134 "it returns the extended attributes of the link itself."
25135 msgstr ""
25136
25137 #. type: =head2
25138 #: ../fish/guestfish-actions.pod:2496
25139 msgid "list-9p"
25140 msgstr ""
25141
25142 #. type: verbatim
25143 #: ../fish/guestfish-actions.pod:2498
25144 #, no-wrap
25145 msgid ""
25146 " list-9p\n"
25147 "\n"
25148 msgstr ""
25149
25150 #. type: =head2
25151 #: ../fish/guestfish-actions.pod:2503
25152 msgid "list-devices"
25153 msgstr ""
25154
25155 #. type: verbatim
25156 #: ../fish/guestfish-actions.pod:2505
25157 #, no-wrap
25158 msgid ""
25159 " list-devices\n"
25160 "\n"
25161 msgstr ""
25162
25163 #. type: =head2
25164 #: ../fish/guestfish-actions.pod:2513
25165 msgid "list-dm-devices"
25166 msgstr ""
25167
25168 #. type: verbatim
25169 #: ../fish/guestfish-actions.pod:2515
25170 #, no-wrap
25171 msgid ""
25172 " list-dm-devices\n"
25173 "\n"
25174 msgstr ""
25175
25176 #. type: textblock
25177 #: ../fish/guestfish-actions.pod:2519
25178 msgid ""
25179 "The returned list contains C</dev/mapper/*> devices, eg. ones created by a "
25180 "previous call to L</luks-open>."
25181 msgstr ""
25182
25183 #. type: textblock
25184 #: ../fish/guestfish-actions.pod:2522
25185 msgid ""
25186 "Device mapper devices which correspond to logical volumes are I<not> "
25187 "returned in this list.  Call L</lvs> if you want to list logical volumes."
25188 msgstr ""
25189
25190 #. type: =head2
25191 #: ../fish/guestfish-actions.pod:2526
25192 msgid "list-filesystems"
25193 msgstr ""
25194
25195 #. type: verbatim
25196 #: ../fish/guestfish-actions.pod:2528
25197 #, no-wrap
25198 msgid ""
25199 " list-filesystems\n"
25200 "\n"
25201 msgstr ""
25202
25203 #. type: textblock
25204 #: ../fish/guestfish-actions.pod:2547
25205 msgid ""
25206 "This command runs other libguestfs commands, which might include L</mount> "
25207 "and L</umount>, and therefore you should use this soon after launch and only "
25208 "when nothing is mounted."
25209 msgstr ""
25210
25211 #. type: textblock
25212 #: ../fish/guestfish-actions.pod:2551
25213 msgid ""
25214 "Not all of the filesystems returned will be mountable.  In particular, swap "
25215 "partitions are returned in the list.  Also this command does not check that "
25216 "each filesystem found is valid and mountable, and some filesystems might be "
25217 "mountable but require special options.  Filesystems may not all belong to a "
25218 "single logical operating system (use L</inspect-os> to look for OSes)."
25219 msgstr ""
25220
25221 #. type: =head2
25222 #: ../fish/guestfish-actions.pod:2559
25223 msgid "list-partitions"
25224 msgstr ""
25225
25226 #. type: verbatim
25227 #: ../fish/guestfish-actions.pod:2561
25228 #, no-wrap
25229 msgid ""
25230 " list-partitions\n"
25231 "\n"
25232 msgstr ""
25233
25234 #. type: textblock
25235 #: ../fish/guestfish-actions.pod:2567
25236 msgid ""
25237 "This does not return logical volumes.  For that you will need to call L</"
25238 "lvs>."
25239 msgstr ""
25240
25241 #. type: =head2
25242 #: ../fish/guestfish-actions.pod:2572
25243 msgid "ll"
25244 msgstr ""
25245
25246 #. type: verbatim
25247 #: ../fish/guestfish-actions.pod:2574
25248 #, no-wrap
25249 msgid ""
25250 " ll directory\n"
25251 "\n"
25252 msgstr ""
25253
25254 #. type: =head2
25255 #: ../fish/guestfish-actions.pod:2582
25256 msgid "ln"
25257 msgstr ""
25258
25259 #. type: verbatim
25260 #: ../fish/guestfish-actions.pod:2584
25261 #, no-wrap
25262 msgid ""
25263 " ln target linkname\n"
25264 "\n"
25265 msgstr ""
25266
25267 #. type: =head2
25268 #: ../fish/guestfish-actions.pod:2588
25269 msgid "ln-f"
25270 msgstr ""
25271
25272 #. type: verbatim
25273 #: ../fish/guestfish-actions.pod:2590
25274 #, no-wrap
25275 msgid ""
25276 " ln-f target linkname\n"
25277 "\n"
25278 msgstr ""
25279
25280 #. type: =head2
25281 #: ../fish/guestfish-actions.pod:2595
25282 msgid "ln-s"
25283 msgstr ""
25284
25285 #. type: verbatim
25286 #: ../fish/guestfish-actions.pod:2597
25287 #, no-wrap
25288 msgid ""
25289 " ln-s target linkname\n"
25290 "\n"
25291 msgstr ""
25292
25293 #. type: =head2
25294 #: ../fish/guestfish-actions.pod:2601
25295 msgid "ln-sf"
25296 msgstr ""
25297
25298 #. type: verbatim
25299 #: ../fish/guestfish-actions.pod:2603
25300 #, no-wrap
25301 msgid ""
25302 " ln-sf target linkname\n"
25303 "\n"
25304 msgstr ""
25305
25306 #. type: =head2
25307 #: ../fish/guestfish-actions.pod:2608
25308 msgid "lremovexattr"
25309 msgstr ""
25310
25311 #. type: verbatim
25312 #: ../fish/guestfish-actions.pod:2610
25313 #, no-wrap
25314 msgid ""
25315 " lremovexattr xattr path\n"
25316 "\n"
25317 msgstr ""
25318
25319 #. type: textblock
25320 #: ../fish/guestfish-actions.pod:2612
25321 msgid ""
25322 "This is the same as L</removexattr>, but if C<path> is a symbolic link, then "
25323 "it removes an extended attribute of the link itself."
25324 msgstr ""
25325
25326 #. type: =head2
25327 #: ../fish/guestfish-actions.pod:2616
25328 msgid "ls"
25329 msgstr ""
25330
25331 #. type: verbatim
25332 #: ../fish/guestfish-actions.pod:2618
25333 #, no-wrap
25334 msgid ""
25335 " ls directory\n"
25336 "\n"
25337 msgstr ""
25338
25339 #. type: textblock
25340 #: ../fish/guestfish-actions.pod:2624
25341 msgid ""
25342 "This command is mostly useful for interactive sessions.  Programs should "
25343 "probably use L</readdir> instead."
25344 msgstr ""
25345
25346 #. type: =head2
25347 #: ../fish/guestfish-actions.pod:2627
25348 msgid "lsetxattr"
25349 msgstr ""
25350
25351 #. type: verbatim
25352 #: ../fish/guestfish-actions.pod:2629
25353 #, no-wrap
25354 msgid ""
25355 " lsetxattr xattr val vallen path\n"
25356 "\n"
25357 msgstr ""
25358
25359 #. type: textblock
25360 #: ../fish/guestfish-actions.pod:2631
25361 msgid ""
25362 "This is the same as L</setxattr>, but if C<path> is a symbolic link, then it "
25363 "sets an extended attribute of the link itself."
25364 msgstr ""
25365
25366 #. type: =head2
25367 #: ../fish/guestfish-actions.pod:2635
25368 msgid "lstat"
25369 msgstr ""
25370
25371 #. type: verbatim
25372 #: ../fish/guestfish-actions.pod:2637
25373 #, no-wrap
25374 msgid ""
25375 " lstat path\n"
25376 "\n"
25377 msgstr ""
25378
25379 #. type: textblock
25380 #: ../fish/guestfish-actions.pod:2641
25381 msgid ""
25382 "This is the same as L</stat> except that if C<path> is a symbolic link, then "
25383 "the link is stat-ed, not the file it refers to."
25384 msgstr ""
25385
25386 #. type: =head2
25387 #: ../fish/guestfish-actions.pod:2647
25388 msgid "lstatlist"
25389 msgstr ""
25390
25391 #. type: verbatim
25392 #: ../fish/guestfish-actions.pod:2649
25393 #, no-wrap
25394 msgid ""
25395 " lstatlist path 'names ...'\n"
25396 "\n"
25397 msgstr ""
25398
25399 #. type: textblock
25400 #: ../fish/guestfish-actions.pod:2651
25401 msgid ""
25402 "This call allows you to perform the L</lstat> operation on multiple files, "
25403 "where all files are in the directory C<path>.  C<names> is the list of files "
25404 "from this directory."
25405 msgstr ""
25406
25407 #. type: textblock
25408 #: ../fish/guestfish-actions.pod:2660
25409 msgid ""
25410 "This call is intended for programs that want to efficiently list a directory "
25411 "contents without making many round-trips.  See also L</lxattrlist> for a "
25412 "similarly efficient call for getting extended attributes.  Very long "
25413 "directory listings might cause the protocol message size to be exceeded, "
25414 "causing this call to fail.  The caller must split up such requests into "
25415 "smaller groups of names."
25416 msgstr ""
25417
25418 #. type: =head2
25419 #: ../fish/guestfish-actions.pod:2668
25420 msgid "luks-add-key"
25421 msgstr ""
25422
25423 #. type: verbatim
25424 #: ../fish/guestfish-actions.pod:2670
25425 #, no-wrap
25426 msgid ""
25427 " luks-add-key device keyslot\n"
25428 "\n"
25429 msgstr ""
25430
25431 #. type: textblock
25432 #: ../fish/guestfish-actions.pod:2677
25433 msgid ""
25434 "Note that if C<keyslot> already contains a key, then this command will "
25435 "fail.  You have to use L</luks-kill-slot> first to remove that key."
25436 msgstr ""
25437
25438 #. type: textblock
25439 #: ../fish/guestfish-actions.pod:2681 ../fish/guestfish-actions.pod:2703
25440 #: ../fish/guestfish-actions.pod:2716 ../fish/guestfish-actions.pod:2730
25441 #: ../fish/guestfish-actions.pod:2756 ../fish/guestfish-actions.pod:2766
25442 msgid ""
25443 "This command has one or more key or passphrase parameters.  Guestfish will "
25444 "prompt for these separately."
25445 msgstr ""
25446
25447 #. type: =head2
25448 #: ../fish/guestfish-actions.pod:2684
25449 msgid "luks-close"
25450 msgstr ""
25451
25452 #. type: verbatim
25453 #: ../fish/guestfish-actions.pod:2686
25454 #, no-wrap
25455 msgid ""
25456 " luks-close device\n"
25457 "\n"
25458 msgstr ""
25459
25460 #. type: textblock
25461 #: ../fish/guestfish-actions.pod:2688
25462 msgid ""
25463 "This closes a LUKS device that was created earlier by L</luks-open> or L</"
25464 "luks-open-ro>.  The C<device> parameter must be the name of the LUKS mapping "
25465 "device (ie. C</dev/mapper/mapname>) and I<not> the name of the underlying "
25466 "block device."
25467 msgstr ""
25468
25469 #. type: =head2
25470 #: ../fish/guestfish-actions.pod:2694
25471 msgid "luks-format"
25472 msgstr ""
25473
25474 #. type: verbatim
25475 #: ../fish/guestfish-actions.pod:2696
25476 #, no-wrap
25477 msgid ""
25478 " luks-format device keyslot\n"
25479 "\n"
25480 msgstr ""
25481
25482 #. type: =head2
25483 #: ../fish/guestfish-actions.pod:2709
25484 msgid "luks-format-cipher"
25485 msgstr ""
25486
25487 #. type: verbatim
25488 #: ../fish/guestfish-actions.pod:2711
25489 #, no-wrap
25490 msgid ""
25491 " luks-format-cipher device keyslot cipher\n"
25492 "\n"
25493 msgstr ""
25494
25495 #. type: textblock
25496 #: ../fish/guestfish-actions.pod:2713
25497 msgid ""
25498 "This command is the same as L</luks-format> but it also allows you to set "
25499 "the C<cipher> used."
25500 msgstr ""
25501
25502 #. type: =head2
25503 #: ../fish/guestfish-actions.pod:2722
25504 msgid "luks-kill-slot"
25505 msgstr ""
25506
25507 #. type: verbatim
25508 #: ../fish/guestfish-actions.pod:2724
25509 #, no-wrap
25510 msgid ""
25511 " luks-kill-slot device keyslot\n"
25512 "\n"
25513 msgstr ""
25514
25515 #. type: =head2
25516 #: ../fish/guestfish-actions.pod:2733
25517 msgid "luks-open"
25518 msgstr ""
25519
25520 #. type: verbatim
25521 #: ../fish/guestfish-actions.pod:2735
25522 #, no-wrap
25523 msgid ""
25524 " luks-open device mapname\n"
25525 "\n"
25526 msgstr ""
25527
25528 #. type: textblock
25529 #: ../fish/guestfish-actions.pod:2749
25530 msgid ""
25531 "If this block device contains LVM volume groups, then calling L</vgscan> "
25532 "followed by L</vg-activate-all> will make them visible."
25533 msgstr ""
25534
25535 #. type: textblock
25536 #: ../fish/guestfish-actions.pod:2753
25537 msgid "Use L</list-dm-devices> to list all device mapper devices."
25538 msgstr ""
25539
25540 #. type: =head2
25541 #: ../fish/guestfish-actions.pod:2759
25542 msgid "luks-open-ro"
25543 msgstr ""
25544
25545 #. type: verbatim
25546 #: ../fish/guestfish-actions.pod:2761
25547 #, no-wrap
25548 msgid ""
25549 " luks-open-ro device mapname\n"
25550 "\n"
25551 msgstr ""
25552
25553 #. type: textblock
25554 #: ../fish/guestfish-actions.pod:2763
25555 msgid ""
25556 "This is the same as L</luks-open> except that a read-only mapping is created."
25557 msgstr ""
25558
25559 #. type: =head2
25560 #: ../fish/guestfish-actions.pod:2769
25561 msgid "lvcreate"
25562 msgstr ""
25563
25564 #. type: verbatim
25565 #: ../fish/guestfish-actions.pod:2771
25566 #, no-wrap
25567 msgid ""
25568 " lvcreate logvol volgroup mbytes\n"
25569 "\n"
25570 msgstr ""
25571
25572 #. type: =head2
25573 #: ../fish/guestfish-actions.pod:2776
25574 msgid "lvm-canonical-lv-name"
25575 msgstr ""
25576
25577 #. type: verbatim
25578 #: ../fish/guestfish-actions.pod:2778
25579 #, no-wrap
25580 msgid ""
25581 " lvm-canonical-lv-name lvname\n"
25582 "\n"
25583 msgstr ""
25584
25585 #. type: textblock
25586 #: ../fish/guestfish-actions.pod:2787
25587 msgid "See also L</is-lv>."
25588 msgstr ""
25589
25590 #. type: =head2
25591 #: ../fish/guestfish-actions.pod:2789
25592 msgid "lvm-clear-filter"
25593 msgstr ""
25594
25595 #. type: verbatim
25596 #: ../fish/guestfish-actions.pod:2791
25597 #, no-wrap
25598 msgid ""
25599 " lvm-clear-filter\n"
25600 "\n"
25601 msgstr ""
25602
25603 #. type: textblock
25604 #: ../fish/guestfish-actions.pod:2793
25605 msgid ""
25606 "This undoes the effect of L</lvm-set-filter>.  LVM will be able to see every "
25607 "block device."
25608 msgstr ""
25609
25610 #. type: =head2
25611 #: ../fish/guestfish-actions.pod:2799
25612 msgid "lvm-remove-all"
25613 msgstr ""
25614
25615 #. type: verbatim
25616 #: ../fish/guestfish-actions.pod:2801
25617 #, no-wrap
25618 msgid ""
25619 " lvm-remove-all\n"
25620 "\n"
25621 msgstr ""
25622
25623 #. type: =head2
25624 #: ../fish/guestfish-actions.pod:2809
25625 msgid "lvm-set-filter"
25626 msgstr ""
25627
25628 #. type: verbatim
25629 #: ../fish/guestfish-actions.pod:2811
25630 #, no-wrap
25631 msgid ""
25632 " lvm-set-filter 'devices ...'\n"
25633 "\n"
25634 msgstr ""
25635
25636 #. type: =head2
25637 #: ../fish/guestfish-actions.pod:2836
25638 msgid "lvremove"
25639 msgstr ""
25640
25641 #. type: verbatim
25642 #: ../fish/guestfish-actions.pod:2838
25643 #, no-wrap
25644 msgid ""
25645 " lvremove device\n"
25646 "\n"
25647 msgstr ""
25648
25649 #. type: =head2
25650 #: ../fish/guestfish-actions.pod:2846
25651 msgid "lvrename"
25652 msgstr ""
25653
25654 #. type: verbatim
25655 #: ../fish/guestfish-actions.pod:2848
25656 #, no-wrap
25657 msgid ""
25658 " lvrename logvol newlogvol\n"
25659 "\n"
25660 msgstr ""
25661
25662 #. type: =head2
25663 #: ../fish/guestfish-actions.pod:2852
25664 msgid "lvresize"
25665 msgstr ""
25666
25667 #. type: verbatim
25668 #: ../fish/guestfish-actions.pod:2854
25669 #, no-wrap
25670 msgid ""
25671 " lvresize device mbytes\n"
25672 "\n"
25673 msgstr ""
25674
25675 #. type: =head2
25676 #: ../fish/guestfish-actions.pod:2860
25677 msgid "lvresize-free"
25678 msgstr ""
25679
25680 #. type: verbatim
25681 #: ../fish/guestfish-actions.pod:2862
25682 #, no-wrap
25683 msgid ""
25684 " lvresize-free lv percent\n"
25685 "\n"
25686 msgstr ""
25687
25688 #. type: =head2
25689 #: ../fish/guestfish-actions.pod:2870
25690 msgid "lvs"
25691 msgstr ""
25692
25693 #. type: verbatim
25694 #: ../fish/guestfish-actions.pod:2872
25695 #, no-wrap
25696 msgid ""
25697 " lvs\n"
25698 "\n"
25699 msgstr ""
25700
25701 #. type: textblock
25702 #: ../fish/guestfish-actions.pod:2880
25703 msgid "See also L</lvs-full>, L</list-filesystems>."
25704 msgstr ""
25705
25706 #. type: =head2
25707 #: ../fish/guestfish-actions.pod:2882
25708 msgid "lvs-full"
25709 msgstr ""
25710
25711 #. type: verbatim
25712 #: ../fish/guestfish-actions.pod:2884
25713 #, no-wrap
25714 msgid ""
25715 " lvs-full\n"
25716 "\n"
25717 msgstr ""
25718
25719 #. type: =head2
25720 #: ../fish/guestfish-actions.pod:2889
25721 msgid "lvuuid"
25722 msgstr ""
25723
25724 #. type: verbatim
25725 #: ../fish/guestfish-actions.pod:2891
25726 #, no-wrap
25727 msgid ""
25728 " lvuuid device\n"
25729 "\n"
25730 msgstr ""
25731
25732 #. type: =head2
25733 #: ../fish/guestfish-actions.pod:2895
25734 msgid "lxattrlist"
25735 msgstr ""
25736
25737 #. type: verbatim
25738 #: ../fish/guestfish-actions.pod:2897
25739 #, no-wrap
25740 msgid ""
25741 " lxattrlist path 'names ...'\n"
25742 "\n"
25743 msgstr ""
25744
25745 #. type: textblock
25746 #: ../fish/guestfish-actions.pod:2913
25747 msgid ""
25748 "This call is intended for programs that want to efficiently list a directory "
25749 "contents without making many round-trips.  See also L</lstatlist> for a "
25750 "similarly efficient call for getting standard stats.  Very long directory "
25751 "listings might cause the protocol message size to be exceeded, causing this "
25752 "call to fail.  The caller must split up such requests into smaller groups of "
25753 "names."
25754 msgstr ""
25755
25756 #. type: =head2
25757 #: ../fish/guestfish-actions.pod:2921
25758 msgid "mkdir"
25759 msgstr ""
25760
25761 #. type: verbatim
25762 #: ../fish/guestfish-actions.pod:2923
25763 #, no-wrap
25764 msgid ""
25765 " mkdir path\n"
25766 "\n"
25767 msgstr ""
25768
25769 #. type: =head2
25770 #: ../fish/guestfish-actions.pod:2927
25771 msgid "mkdir-mode"
25772 msgstr ""
25773
25774 #. type: verbatim
25775 #: ../fish/guestfish-actions.pod:2929
25776 #, no-wrap
25777 msgid ""
25778 " mkdir-mode path mode\n"
25779 "\n"
25780 msgstr ""
25781
25782 #. type: textblock
25783 #: ../fish/guestfish-actions.pod:2938
25784 msgid "See also L</mkdir>, L</umask>"
25785 msgstr ""
25786
25787 #. type: =head2
25788 #: ../fish/guestfish-actions.pod:2940
25789 msgid "mkdir-p"
25790 msgstr ""
25791
25792 #. type: verbatim
25793 #: ../fish/guestfish-actions.pod:2942
25794 #, no-wrap
25795 msgid ""
25796 " mkdir-p path\n"
25797 "\n"
25798 msgstr ""
25799
25800 #. type: =head2
25801 #: ../fish/guestfish-actions.pod:2947
25802 msgid "mkdtemp"
25803 msgstr ""
25804
25805 #. type: verbatim
25806 #: ../fish/guestfish-actions.pod:2949
25807 #, no-wrap
25808 msgid ""
25809 " mkdtemp template\n"
25810 "\n"
25811 msgstr ""
25812
25813 #. type: =head2
25814 #: ../fish/guestfish-actions.pod:2970
25815 msgid "mke2fs-J"
25816 msgstr ""
25817
25818 #. type: verbatim
25819 #: ../fish/guestfish-actions.pod:2972
25820 #, no-wrap
25821 msgid ""
25822 " mke2fs-J fstype blocksize device journal\n"
25823 "\n"
25824 msgstr ""
25825
25826 #. type: textblock
25827 #: ../fish/guestfish-actions.pod:2980
25828 msgid "See also L</mke2journal>."
25829 msgstr ""
25830
25831 #. type: =head2
25832 #: ../fish/guestfish-actions.pod:2982
25833 msgid "mke2fs-JL"
25834 msgstr ""
25835
25836 #. type: verbatim
25837 #: ../fish/guestfish-actions.pod:2984
25838 #, no-wrap
25839 msgid ""
25840 " mke2fs-JL fstype blocksize device label\n"
25841 "\n"
25842 msgstr ""
25843
25844 #. type: textblock
25845 #: ../fish/guestfish-actions.pod:2989
25846 msgid "See also L</mke2journal-L>."
25847 msgstr ""
25848
25849 #. type: =head2
25850 #: ../fish/guestfish-actions.pod:2991
25851 msgid "mke2fs-JU"
25852 msgstr ""
25853
25854 #. type: verbatim
25855 #: ../fish/guestfish-actions.pod:2993
25856 #, no-wrap
25857 msgid ""
25858 " mke2fs-JU fstype blocksize device uuid\n"
25859 "\n"
25860 msgstr ""
25861
25862 #. type: textblock
25863 #: ../fish/guestfish-actions.pod:2998
25864 msgid "See also L</mke2journal-U>."
25865 msgstr ""
25866
25867 #. type: =head2
25868 #: ../fish/guestfish-actions.pod:3000
25869 msgid "mke2journal"
25870 msgstr ""
25871
25872 #. type: verbatim
25873 #: ../fish/guestfish-actions.pod:3002
25874 #, no-wrap
25875 msgid ""
25876 " mke2journal blocksize device\n"
25877 "\n"
25878 msgstr ""
25879
25880 #. type: =head2
25881 #: ../fish/guestfish-actions.pod:3009
25882 msgid "mke2journal-L"
25883 msgstr ""
25884
25885 #. type: verbatim
25886 #: ../fish/guestfish-actions.pod:3011
25887 #, no-wrap
25888 msgid ""
25889 " mke2journal-L blocksize label device\n"
25890 "\n"
25891 msgstr ""
25892
25893 #. type: =head2
25894 #: ../fish/guestfish-actions.pod:3015
25895 msgid "mke2journal-U"
25896 msgstr ""
25897
25898 #. type: verbatim
25899 #: ../fish/guestfish-actions.pod:3017
25900 #, no-wrap
25901 msgid ""
25902 " mke2journal-U blocksize uuid device\n"
25903 "\n"
25904 msgstr ""
25905
25906 #. type: =head2
25907 #: ../fish/guestfish-actions.pod:3021
25908 msgid "mkfifo"
25909 msgstr ""
25910
25911 #. type: verbatim
25912 #: ../fish/guestfish-actions.pod:3023
25913 #, no-wrap
25914 msgid ""
25915 " mkfifo mode path\n"
25916 "\n"
25917 msgstr ""
25918
25919 #. type: textblock
25920 #: ../fish/guestfish-actions.pod:3025
25921 msgid ""
25922 "This call creates a FIFO (named pipe) called C<path> with mode C<mode>.  It "
25923 "is just a convenient wrapper around L</mknod>."
25924 msgstr ""
25925
25926 #. type: =head2
25927 #: ../fish/guestfish-actions.pod:3031
25928 msgid "mkfs"
25929 msgstr ""
25930
25931 #. type: verbatim
25932 #: ../fish/guestfish-actions.pod:3033
25933 #, no-wrap
25934 msgid ""
25935 " mkfs fstype device\n"
25936 "\n"
25937 msgstr ""
25938
25939 #. type: =head2
25940 #: ../fish/guestfish-actions.pod:3039
25941 msgid "mkfs-b"
25942 msgstr ""
25943
25944 #. type: verbatim
25945 #: ../fish/guestfish-actions.pod:3041
25946 #, no-wrap
25947 msgid ""
25948 " mkfs-b fstype blocksize device\n"
25949 "\n"
25950 msgstr ""
25951
25952 #. type: textblock
25953 #: ../fish/guestfish-actions.pod:3043
25954 msgid ""
25955 "This call is similar to L</mkfs>, but it allows you to control the block "
25956 "size of the resulting filesystem.  Supported block sizes depend on the "
25957 "filesystem type, but typically they are C<1024>, C<2048> or C<4096> only."
25958 msgstr ""
25959
25960 #. type: =head2
25961 #: ../fish/guestfish-actions.pod:3058
25962 msgid "mkfs-opts"
25963 msgstr ""
25964
25965 #. type: verbatim
25966 #: ../fish/guestfish-actions.pod:3060
25967 #, no-wrap
25968 msgid ""
25969 " mkfs-opts fstype device [blocksize:..] [features:..] [inode:..] [sectorsize:..]\n"
25970 "\n"
25971 msgstr ""
25972
25973 #. type: =head2
25974 #: ../fish/guestfish-actions.pod:3105
25975 msgid "mkmountpoint"
25976 msgstr ""
25977
25978 #. type: verbatim
25979 #: ../fish/guestfish-actions.pod:3107
25980 #, no-wrap
25981 msgid ""
25982 " mkmountpoint exemptpath\n"
25983 "\n"
25984 msgstr ""
25985
25986 #. type: textblock
25987 #: ../fish/guestfish-actions.pod:3109
25988 msgid ""
25989 "L</mkmountpoint> and L</rmmountpoint> are specialized calls that can be used "
25990 "to create extra mountpoints before mounting the first filesystem."
25991 msgstr ""
25992
25993 #. type: textblock
25994 #: ../fish/guestfish-actions.pod:3133
25995 msgid ""
25996 "L</mkmountpoint> is not compatible with L</umount-all>.  You may get "
25997 "unexpected errors if you try to mix these calls.  It is safest to manually "
25998 "unmount filesystems and remove mountpoints after use."
25999 msgstr ""
26000
26001 #. type: textblock
26002 #: ../fish/guestfish-actions.pod:3137
26003 msgid ""
26004 "L</umount-all> unmounts filesystems by sorting the paths longest first, so "
26005 "for this to work for manual mountpoints, you must ensure that the innermost "
26006 "mountpoints have the longest pathnames, as in the example code above."
26007 msgstr ""
26008
26009 #. type: textblock
26010 #: ../fish/guestfish-actions.pod:3144
26011 msgid ""
26012 "Autosync [see L</set-autosync>, this is set by default on handles] can cause "
26013 "L</umount-all> to be called when the handle is closed which can also trigger "
26014 "these issues."
26015 msgstr ""
26016
26017 #. type: =head2
26018 #: ../fish/guestfish-actions.pod:3148
26019 msgid "mknod"
26020 msgstr ""
26021
26022 #. type: verbatim
26023 #: ../fish/guestfish-actions.pod:3150
26024 #, no-wrap
26025 msgid ""
26026 " mknod mode devmajor devminor path\n"
26027 "\n"
26028 msgstr ""
26029
26030 #. type: textblock
26031 #: ../fish/guestfish-actions.pod:3160
26032 msgid ""
26033 "Note that, just like L<mknod(2)>, the mode must be bitwise OR'd with "
26034 "S_IFBLK, S_IFCHR, S_IFIFO or S_IFSOCK (otherwise this call just creates a "
26035 "regular file).  These constants are available in the standard Linux header "
26036 "files, or you can use L</mknod-b>, L</mknod-c> or L</mkfifo> which are "
26037 "wrappers around this command which bitwise OR in the appropriate constant "
26038 "for you."
26039 msgstr ""
26040
26041 #. type: =head2
26042 #: ../fish/guestfish-actions.pod:3170
26043 msgid "mknod-b"
26044 msgstr ""
26045
26046 #. type: verbatim
26047 #: ../fish/guestfish-actions.pod:3172
26048 #, no-wrap
26049 msgid ""
26050 " mknod-b mode devmajor devminor path\n"
26051 "\n"
26052 msgstr ""
26053
26054 #. type: textblock
26055 #: ../fish/guestfish-actions.pod:3174
26056 msgid ""
26057 "This call creates a block device node called C<path> with mode C<mode> and "
26058 "device major/minor C<devmajor> and C<devminor>.  It is just a convenient "
26059 "wrapper around L</mknod>."
26060 msgstr ""
26061
26062 #. type: =head2
26063 #: ../fish/guestfish-actions.pod:3180
26064 msgid "mknod-c"
26065 msgstr ""
26066
26067 #. type: verbatim
26068 #: ../fish/guestfish-actions.pod:3182
26069 #, no-wrap
26070 msgid ""
26071 " mknod-c mode devmajor devminor path\n"
26072 "\n"
26073 msgstr ""
26074
26075 #. type: textblock
26076 #: ../fish/guestfish-actions.pod:3184
26077 msgid ""
26078 "This call creates a char device node called C<path> with mode C<mode> and "
26079 "device major/minor C<devmajor> and C<devminor>.  It is just a convenient "
26080 "wrapper around L</mknod>."
26081 msgstr ""
26082
26083 #. type: =head2
26084 #: ../fish/guestfish-actions.pod:3190
26085 msgid "mkswap"
26086 msgstr ""
26087
26088 #. type: verbatim
26089 #: ../fish/guestfish-actions.pod:3192
26090 #, no-wrap
26091 msgid ""
26092 " mkswap device\n"
26093 "\n"
26094 msgstr ""
26095
26096 #. type: =head2
26097 #: ../fish/guestfish-actions.pod:3196
26098 msgid "mkswap-L"
26099 msgstr ""
26100
26101 #. type: verbatim
26102 #: ../fish/guestfish-actions.pod:3198
26103 #, no-wrap
26104 msgid ""
26105 " mkswap-L label device\n"
26106 "\n"
26107 msgstr ""
26108
26109 #. type: =head2
26110 #: ../fish/guestfish-actions.pod:3206
26111 msgid "mkswap-U"
26112 msgstr ""
26113
26114 #. type: verbatim
26115 #: ../fish/guestfish-actions.pod:3208
26116 #, no-wrap
26117 msgid ""
26118 " mkswap-U uuid device\n"
26119 "\n"
26120 msgstr ""
26121
26122 #. type: =head2
26123 #: ../fish/guestfish-actions.pod:3212
26124 msgid "mkswap-file"
26125 msgstr ""
26126
26127 #. type: verbatim
26128 #: ../fish/guestfish-actions.pod:3214
26129 #, no-wrap
26130 msgid ""
26131 " mkswap-file path\n"
26132 "\n"
26133 msgstr ""
26134
26135 #. type: textblock
26136 #: ../fish/guestfish-actions.pod:3218
26137 msgid ""
26138 "This command just writes a swap file signature to an existing file.  To "
26139 "create the file itself, use something like L</fallocate>."
26140 msgstr ""
26141
26142 #. type: =head2
26143 #: ../fish/guestfish-actions.pod:3221
26144 msgid "modprobe"
26145 msgstr ""
26146
26147 #. type: verbatim
26148 #: ../fish/guestfish-actions.pod:3223
26149 #, no-wrap
26150 msgid ""
26151 " modprobe modulename\n"
26152 "\n"
26153 msgstr ""
26154
26155 #. type: =head2
26156 #: ../fish/guestfish-actions.pod:3230
26157 msgid "mount"
26158 msgstr ""
26159
26160 #. type: verbatim
26161 #: ../fish/guestfish-actions.pod:3232
26162 #, no-wrap
26163 msgid ""
26164 " mount device mountpoint\n"
26165 "\n"
26166 msgstr ""
26167
26168 #. type: textblock
26169 #: ../fish/guestfish-actions.pod:3248
26170 msgid ""
26171 "B<Important note:> When you use this call, the filesystem options C<sync> "
26172 "and C<noatime> are set implicitly.  This was originally done because we "
26173 "thought it would improve reliability, but it turns out that I<-o sync> has a "
26174 "very large negative performance impact and negligible effect on "
26175 "reliability.  Therefore we recommend that you avoid using L</mount> in any "
26176 "code that needs performance, and instead use L</mount-options> (use an empty "
26177 "string for the first parameter if you don't want any options)."
26178 msgstr ""
26179
26180 #. type: =head2
26181 #: ../fish/guestfish-actions.pod:3265
26182 msgid "mount-9p"
26183 msgstr ""
26184
26185 #. type: verbatim
26186 #: ../fish/guestfish-actions.pod:3267
26187 #, no-wrap
26188 msgid ""
26189 " mount-9p mounttag mountpoint [options:..]\n"
26190 "\n"
26191 msgstr ""
26192
26193 #. type: =head2
26194 #: ../fish/guestfish-actions.pod:3278
26195 msgid "mount-loop"
26196 msgstr ""
26197
26198 #. type: verbatim
26199 #: ../fish/guestfish-actions.pod:3280
26200 #, no-wrap
26201 msgid ""
26202 " mount-loop file mountpoint\n"
26203 "\n"
26204 msgstr ""
26205
26206 #. type: =head2
26207 #: ../fish/guestfish-actions.pod:3286
26208 msgid "mount-options"
26209 msgstr ""
26210
26211 #. type: verbatim
26212 #: ../fish/guestfish-actions.pod:3288
26213 #, no-wrap
26214 msgid ""
26215 " mount-options options device mountpoint\n"
26216 "\n"
26217 msgstr ""
26218
26219 #. type: textblock
26220 #: ../fish/guestfish-actions.pod:3290
26221 msgid ""
26222 "This is the same as the L</mount> command, but it allows you to set the "
26223 "mount options as for the L<mount(8)> I<-o> flag."
26224 msgstr ""
26225
26226 #. type: =head2
26227 #: ../fish/guestfish-actions.pod:3298
26228 msgid "mount-ro"
26229 msgstr ""
26230
26231 #. type: verbatim
26232 #: ../fish/guestfish-actions.pod:3300
26233 #, no-wrap
26234 msgid ""
26235 " mount-ro device mountpoint\n"
26236 "\n"
26237 msgstr ""
26238
26239 #. type: textblock
26240 #: ../fish/guestfish-actions.pod:3302
26241 msgid ""
26242 "This is the same as the L</mount> command, but it mounts the filesystem with "
26243 "the read-only (I<-o ro>) flag."
26244 msgstr ""
26245
26246 #. type: =head2
26247 #: ../fish/guestfish-actions.pod:3305
26248 msgid "mount-vfs"
26249 msgstr ""
26250
26251 #. type: verbatim
26252 #: ../fish/guestfish-actions.pod:3307
26253 #, no-wrap
26254 msgid ""
26255 " mount-vfs options vfstype device mountpoint\n"
26256 "\n"
26257 msgstr ""
26258
26259 #. type: textblock
26260 #: ../fish/guestfish-actions.pod:3309
26261 msgid ""
26262 "This is the same as the L</mount> command, but it allows you to set both the "
26263 "mount options and the vfstype as for the L<mount(8)> I<-o> and I<-t> flags."
26264 msgstr ""
26265
26266 #. type: =head2
26267 #: ../fish/guestfish-actions.pod:3313
26268 msgid "mountpoints"
26269 msgstr ""
26270
26271 #. type: verbatim
26272 #: ../fish/guestfish-actions.pod:3315
26273 #, no-wrap
26274 msgid ""
26275 " mountpoints\n"
26276 "\n"
26277 msgstr ""
26278
26279 #. type: textblock
26280 #: ../fish/guestfish-actions.pod:3317
26281 msgid ""
26282 "This call is similar to L</mounts>.  That call returns a list of devices.  "
26283 "This one returns a hash table (map) of device name to directory where the "
26284 "device is mounted."
26285 msgstr ""
26286
26287 #. type: =head2
26288 #: ../fish/guestfish-actions.pod:3321
26289 msgid "mounts"
26290 msgstr ""
26291
26292 #. type: verbatim
26293 #: ../fish/guestfish-actions.pod:3323
26294 #, no-wrap
26295 msgid ""
26296 " mounts\n"
26297 "\n"
26298 msgstr ""
26299
26300 #. type: textblock
26301 #: ../fish/guestfish-actions.pod:3330
26302 msgid "See also: L</mountpoints>"
26303 msgstr ""
26304
26305 #. type: =head2
26306 #: ../fish/guestfish-actions.pod:3332
26307 msgid "mv"
26308 msgstr ""
26309
26310 #. type: verbatim
26311 #: ../fish/guestfish-actions.pod:3334
26312 #, no-wrap
26313 msgid ""
26314 " mv src dest\n"
26315 "\n"
26316 msgstr ""
26317
26318 #. type: =head2
26319 #: ../fish/guestfish-actions.pod:3339
26320 msgid "ntfs-3g-probe"
26321 msgstr ""
26322
26323 #. type: verbatim
26324 #: ../fish/guestfish-actions.pod:3341
26325 #, no-wrap
26326 msgid ""
26327 " ntfs-3g-probe true|false device\n"
26328 "\n"
26329 msgstr ""
26330
26331 #. type: =head2
26332 #: ../fish/guestfish-actions.pod:3355
26333 msgid "ntfsresize"
26334 msgstr ""
26335
26336 #. type: verbatim
26337 #: ../fish/guestfish-actions.pod:3357
26338 #, no-wrap
26339 msgid ""
26340 " ntfsresize device\n"
26341 "\n"
26342 msgstr ""
26343
26344 #. type: =head2
26345 #: ../fish/guestfish-actions.pod:3379
26346 msgid "ntfsresize-opts"
26347 msgstr ""
26348
26349 #. type: verbatim
26350 #: ../fish/guestfish-actions.pod:3381
26351 #, no-wrap
26352 msgid ""
26353 " ntfsresize-opts device [size:..] [force:..]\n"
26354 "\n"
26355 msgstr ""
26356
26357 #. type: textblock
26358 #: ../fish/guestfish-actions.pod:3400
26359 msgid ""
26360 "After the resize operation, the filesystem is always marked as requiring a "
26361 "consistency check (for safety).  You have to boot into Windows to perform "
26362 "this check and clear this condition.  If you I<don't> set the C<force> "
26363 "option then it is not possible to call L</ntfsresize-opts> multiple times on "
26364 "a single filesystem without booting into Windows between each resize."
26365 msgstr ""
26366
26367 #. type: =head2
26368 #: ../fish/guestfish-actions.pod:3413
26369 msgid "ntfsresize-size"
26370 msgstr ""
26371
26372 #. type: verbatim
26373 #: ../fish/guestfish-actions.pod:3415
26374 #, no-wrap
26375 msgid ""
26376 " ntfsresize-size device size\n"
26377 "\n"
26378 msgstr ""
26379
26380 #. type: textblock
26381 #: ../fish/guestfish-actions.pod:3417
26382 msgid ""
26383 "This command is the same as L</ntfsresize> except that it allows you to "
26384 "specify the new size (in bytes) explicitly."
26385 msgstr ""
26386
26387 #. type: =head2
26388 #: ../fish/guestfish-actions.pod:3427
26389 msgid "part-add"
26390 msgstr ""
26391
26392 #. type: verbatim
26393 #: ../fish/guestfish-actions.pod:3429
26394 #, no-wrap
26395 msgid ""
26396 " part-add device prlogex startsect endsect\n"
26397 "\n"
26398 msgstr ""
26399
26400 #. type: textblock
26401 #: ../fish/guestfish-actions.pod:3431
26402 msgid ""
26403 "This command adds a partition to C<device>.  If there is no partition table "
26404 "on the device, call L</part-init> first."
26405 msgstr ""
26406
26407 #. type: textblock
26408 #: ../fish/guestfish-actions.pod:3443
26409 msgid ""
26410 "Creating a partition which covers the whole disk is not so easy.  Use L</"
26411 "part-disk> to do that."
26412 msgstr ""
26413
26414 #. type: =head2
26415 #: ../fish/guestfish-actions.pod:3446
26416 msgid "part-del"
26417 msgstr ""
26418
26419 #. type: verbatim
26420 #: ../fish/guestfish-actions.pod:3448
26421 #, no-wrap
26422 msgid ""
26423 " part-del device partnum\n"
26424 "\n"
26425 msgstr ""
26426
26427 #. type: =head2
26428 #: ../fish/guestfish-actions.pod:3456
26429 msgid "part-disk"
26430 msgstr ""
26431
26432 #. type: verbatim
26433 #: ../fish/guestfish-actions.pod:3458
26434 #, no-wrap
26435 msgid ""
26436 " part-disk device parttype\n"
26437 "\n"
26438 msgstr ""
26439
26440 #. type: textblock
26441 #: ../fish/guestfish-actions.pod:3460
26442 msgid ""
26443 "This command is simply a combination of L</part-init> followed by L</part-"
26444 "add> to create a single primary partition covering the whole disk."
26445 msgstr ""
26446
26447 #. type: textblock
26448 #: ../fish/guestfish-actions.pod:3464
26449 msgid ""
26450 "C<parttype> is the partition table type, usually C<mbr> or C<gpt>, but other "
26451 "possible values are described in L</part-init>."
26452 msgstr ""
26453
26454 #. type: =head2
26455 #: ../fish/guestfish-actions.pod:3470
26456 msgid "part-get-bootable"
26457 msgstr ""
26458
26459 #. type: verbatim
26460 #: ../fish/guestfish-actions.pod:3472
26461 #, no-wrap
26462 msgid ""
26463 " part-get-bootable device partnum\n"
26464 "\n"
26465 msgstr ""
26466
26467 #. type: textblock
26468 #: ../fish/guestfish-actions.pod:3477
26469 msgid "See also L</part-set-bootable>."
26470 msgstr ""
26471
26472 #. type: =head2
26473 #: ../fish/guestfish-actions.pod:3479
26474 msgid "part-get-mbr-id"
26475 msgstr ""
26476
26477 #. type: verbatim
26478 #: ../fish/guestfish-actions.pod:3481
26479 #, no-wrap
26480 msgid ""
26481 " part-get-mbr-id device partnum\n"
26482 "\n"
26483 msgstr ""
26484
26485 #. type: textblock
26486 #: ../fish/guestfish-actions.pod:3486 ../fish/guestfish-actions.pod:3624
26487 msgid ""
26488 "Note that only MBR (old DOS-style) partitions have type bytes.  You will get "
26489 "undefined results for other partition table types (see L</part-get-"
26490 "parttype>)."
26491 msgstr ""
26492
26493 #. type: =head2
26494 #: ../fish/guestfish-actions.pod:3490
26495 msgid "part-get-parttype"
26496 msgstr ""
26497
26498 #. type: verbatim
26499 #: ../fish/guestfish-actions.pod:3492
26500 #, no-wrap
26501 msgid ""
26502 " part-get-parttype device\n"
26503 "\n"
26504 msgstr ""
26505
26506 #. type: textblock
26507 #: ../fish/guestfish-actions.pod:3497
26508 msgid ""
26509 "Common return values include: C<msdos> (a DOS/Windows style MBR partition "
26510 "table), C<gpt> (a GPT/EFI-style partition table).  Other values are "
26511 "possible, although unusual.  See L</part-init> for a full list."
26512 msgstr ""
26513
26514 #. type: =head2
26515 #: ../fish/guestfish-actions.pod:3502
26516 msgid "part-init"
26517 msgstr ""
26518
26519 #. type: verbatim
26520 #: ../fish/guestfish-actions.pod:3504
26521 #, no-wrap
26522 msgid ""
26523 " part-init device parttype\n"
26524 "\n"
26525 msgstr ""
26526
26527 #. type: textblock
26528 #: ../fish/guestfish-actions.pod:3510
26529 msgid ""
26530 "Initially there are no partitions.  Following this, you should call L</part-"
26531 "add> for each partition required."
26532 msgstr ""
26533
26534 #. type: =head2
26535 #: ../fish/guestfish-actions.pod:3573
26536 msgid "part-list"
26537 msgstr ""
26538
26539 #. type: verbatim
26540 #: ../fish/guestfish-actions.pod:3575
26541 #, no-wrap
26542 msgid ""
26543 " part-list device\n"
26544 "\n"
26545 msgstr ""
26546
26547 #. type: textblock
26548 #: ../fish/guestfish-actions.pod:3590
26549 msgid ""
26550 "Start of the partition I<in bytes>.  To get sectors you have to divide by "
26551 "the device's sector size, see L</blockdev-getss>."
26552 msgstr ""
26553
26554 #. type: =head2
26555 #: ../fish/guestfish-actions.pod:3603
26556 msgid "part-set-bootable"
26557 msgstr ""
26558
26559 #. type: verbatim
26560 #: ../fish/guestfish-actions.pod:3605
26561 #, no-wrap
26562 msgid ""
26563 " part-set-bootable device partnum true|false\n"
26564 "\n"
26565 msgstr ""
26566
26567 #. type: =head2
26568 #: ../fish/guestfish-actions.pod:3614
26569 msgid "part-set-mbr-id"
26570 msgstr ""
26571
26572 #. type: verbatim
26573 #: ../fish/guestfish-actions.pod:3616
26574 #, no-wrap
26575 msgid ""
26576 " part-set-mbr-id device partnum idbyte\n"
26577 "\n"
26578 msgstr ""
26579
26580 #. type: =head2
26581 #: ../fish/guestfish-actions.pod:3628
26582 msgid "part-set-name"
26583 msgstr ""
26584
26585 #. type: verbatim
26586 #: ../fish/guestfish-actions.pod:3630
26587 #, no-wrap
26588 msgid ""
26589 " part-set-name device partnum name\n"
26590 "\n"
26591 msgstr ""
26592
26593 #. type: =head2
26594 #: ../fish/guestfish-actions.pod:3638
26595 msgid "part-to-dev"
26596 msgstr ""
26597
26598 #. type: verbatim
26599 #: ../fish/guestfish-actions.pod:3640
26600 #, no-wrap
26601 msgid ""
26602 " part-to-dev partition\n"
26603 "\n"
26604 msgstr ""
26605
26606 #. type: textblock
26607 #: ../fish/guestfish-actions.pod:3646
26608 msgid ""
26609 "The named partition must exist, for example as a string returned from L</"
26610 "list-partitions>."
26611 msgstr ""
26612
26613 #. type: =head2
26614 #: ../fish/guestfish-actions.pod:3649
26615 msgid "ping-daemon"
26616 msgstr ""
26617
26618 #. type: verbatim
26619 #: ../fish/guestfish-actions.pod:3651
26620 #, no-wrap
26621 msgid ""
26622 " ping-daemon\n"
26623 "\n"
26624 msgstr ""
26625
26626 #. type: =head2
26627 #: ../fish/guestfish-actions.pod:3658
26628 msgid "pread"
26629 msgstr ""
26630
26631 #. type: verbatim
26632 #: ../fish/guestfish-actions.pod:3660
26633 #, no-wrap
26634 msgid ""
26635 " pread path count offset\n"
26636 "\n"
26637 msgstr ""
26638
26639 #. type: textblock
26640 #: ../fish/guestfish-actions.pod:3668
26641 msgid "See also L</pwrite>, L</pread-device>."
26642 msgstr ""
26643
26644 #. type: =head2
26645 #: ../fish/guestfish-actions.pod:3673
26646 msgid "pread-device"
26647 msgstr ""
26648
26649 #. type: verbatim
26650 #: ../fish/guestfish-actions.pod:3675
26651 #, no-wrap
26652 msgid ""
26653 " pread-device device count offset\n"
26654 "\n"
26655 msgstr ""
26656
26657 #. type: textblock
26658 #: ../fish/guestfish-actions.pod:3683
26659 msgid "See also L</pread>."
26660 msgstr ""
26661
26662 #. type: =head2
26663 #: ../fish/guestfish-actions.pod:3688
26664 msgid "pvcreate"
26665 msgstr ""
26666
26667 #. type: verbatim
26668 #: ../fish/guestfish-actions.pod:3690
26669 #, no-wrap
26670 msgid ""
26671 " pvcreate device\n"
26672 "\n"
26673 msgstr ""
26674
26675 #. type: =head2
26676 #: ../fish/guestfish-actions.pod:3696
26677 msgid "pvremove"
26678 msgstr ""
26679
26680 #. type: verbatim
26681 #: ../fish/guestfish-actions.pod:3698
26682 #, no-wrap
26683 msgid ""
26684 " pvremove device\n"
26685 "\n"
26686 msgstr ""
26687
26688 #. type: =head2
26689 #: ../fish/guestfish-actions.pod:3707
26690 msgid "pvresize"
26691 msgstr ""
26692
26693 #. type: verbatim
26694 #: ../fish/guestfish-actions.pod:3709
26695 #, no-wrap
26696 msgid ""
26697 " pvresize device\n"
26698 "\n"
26699 msgstr ""
26700
26701 #. type: =head2
26702 #: ../fish/guestfish-actions.pod:3714
26703 msgid "pvresize-size"
26704 msgstr ""
26705
26706 #. type: verbatim
26707 #: ../fish/guestfish-actions.pod:3716
26708 #, no-wrap
26709 msgid ""
26710 " pvresize-size device size\n"
26711 "\n"
26712 msgstr ""
26713
26714 #. type: textblock
26715 #: ../fish/guestfish-actions.pod:3718
26716 msgid ""
26717 "This command is the same as L</pvresize> except that it allows you to "
26718 "specify the new size (in bytes) explicitly."
26719 msgstr ""
26720
26721 #. type: =head2
26722 #: ../fish/guestfish-actions.pod:3721
26723 msgid "pvs"
26724 msgstr ""
26725
26726 #. type: verbatim
26727 #: ../fish/guestfish-actions.pod:3723
26728 #, no-wrap
26729 msgid ""
26730 " pvs\n"
26731 "\n"
26732 msgstr ""
26733
26734 #. type: textblock
26735 #: ../fish/guestfish-actions.pod:3731
26736 msgid "See also L</pvs-full>."
26737 msgstr ""
26738
26739 #. type: =head2
26740 #: ../fish/guestfish-actions.pod:3733
26741 msgid "pvs-full"
26742 msgstr ""
26743
26744 #. type: verbatim
26745 #: ../fish/guestfish-actions.pod:3735
26746 #, no-wrap
26747 msgid ""
26748 " pvs-full\n"
26749 "\n"
26750 msgstr ""
26751
26752 #. type: =head2
26753 #: ../fish/guestfish-actions.pod:3740
26754 msgid "pvuuid"
26755 msgstr ""
26756
26757 #. type: verbatim
26758 #: ../fish/guestfish-actions.pod:3742
26759 #, no-wrap
26760 msgid ""
26761 " pvuuid device\n"
26762 "\n"
26763 msgstr ""
26764
26765 #. type: =head2
26766 #: ../fish/guestfish-actions.pod:3746
26767 msgid "pwrite"
26768 msgstr ""
26769
26770 #. type: verbatim
26771 #: ../fish/guestfish-actions.pod:3748
26772 #, no-wrap
26773 msgid ""
26774 " pwrite path content offset\n"
26775 "\n"
26776 msgstr ""
26777
26778 #. type: textblock
26779 #: ../fish/guestfish-actions.pod:3759
26780 msgid "See also L</pread>, L</pwrite-device>."
26781 msgstr ""
26782
26783 #. type: =head2
26784 #: ../fish/guestfish-actions.pod:3764
26785 msgid "pwrite-device"
26786 msgstr ""
26787
26788 #. type: verbatim
26789 #: ../fish/guestfish-actions.pod:3766
26790 #, no-wrap
26791 msgid ""
26792 " pwrite-device device content offset\n"
26793 "\n"
26794 msgstr ""
26795
26796 #. type: textblock
26797 #: ../fish/guestfish-actions.pod:3776
26798 msgid "See also L</pwrite>."
26799 msgstr ""
26800
26801 #. type: =head2
26802 #: ../fish/guestfish-actions.pod:3781
26803 msgid "read-file"
26804 msgstr ""
26805
26806 #. type: verbatim
26807 #: ../fish/guestfish-actions.pod:3783
26808 #, no-wrap
26809 msgid ""
26810 " read-file path\n"
26811 "\n"
26812 msgstr ""
26813
26814 #. type: textblock
26815 #: ../fish/guestfish-actions.pod:3788
26816 msgid ""
26817 "Unlike L</cat>, this function can correctly handle files that contain "
26818 "embedded ASCII NUL characters.  However unlike L</download>, this function "
26819 "is limited in the total size of file that can be handled."
26820 msgstr ""
26821
26822 #. type: =head2
26823 #: ../fish/guestfish-actions.pod:3796
26824 msgid "read-lines"
26825 msgstr ""
26826
26827 #. type: verbatim
26828 #: ../fish/guestfish-actions.pod:3798
26829 #, no-wrap
26830 msgid ""
26831 " read-lines path\n"
26832 "\n"
26833 msgstr ""
26834
26835 #. type: textblock
26836 #: ../fish/guestfish-actions.pod:3805
26837 msgid ""
26838 "Note that this function cannot correctly handle binary files (specifically, "
26839 "files containing C<\\0> character which is treated as end of line).  For "
26840 "those you need to use the L</read-file> function which has a more complex "
26841 "interface."
26842 msgstr ""
26843
26844 #. type: =head2
26845 #: ../fish/guestfish-actions.pod:3810
26846 msgid "readdir"
26847 msgstr ""
26848
26849 #. type: verbatim
26850 #: ../fish/guestfish-actions.pod:3812
26851 #, no-wrap
26852 msgid ""
26853 " readdir dir\n"
26854 "\n"
26855 msgstr ""
26856
26857 #. type: textblock
26858 #: ../fish/guestfish-actions.pod:3864
26859 msgid ""
26860 "This function is primarily intended for use by programs.  To get a simple "
26861 "list of names, use L</ls>.  To get a printable directory for human "
26862 "consumption, use L</ll>."
26863 msgstr ""
26864
26865 #. type: =head2
26866 #: ../fish/guestfish-actions.pod:3868
26867 msgid "readlink"
26868 msgstr ""
26869
26870 #. type: verbatim
26871 #: ../fish/guestfish-actions.pod:3870
26872 #, no-wrap
26873 msgid ""
26874 " readlink path\n"
26875 "\n"
26876 msgstr ""
26877
26878 #. type: =head2
26879 #: ../fish/guestfish-actions.pod:3874
26880 msgid "readlinklist"
26881 msgstr ""
26882
26883 #. type: verbatim
26884 #: ../fish/guestfish-actions.pod:3876
26885 #, no-wrap
26886 msgid ""
26887 " readlinklist path 'names ...'\n"
26888 "\n"
26889 msgstr ""
26890
26891 #. type: =head2
26892 #: ../fish/guestfish-actions.pod:3900
26893 msgid "realpath"
26894 msgstr ""
26895
26896 #. type: verbatim
26897 #: ../fish/guestfish-actions.pod:3902
26898 #, no-wrap
26899 msgid ""
26900 " realpath path\n"
26901 "\n"
26902 msgstr ""
26903
26904 #. type: =head2
26905 #: ../fish/guestfish-actions.pod:3907
26906 msgid "removexattr"
26907 msgstr ""
26908
26909 #. type: verbatim
26910 #: ../fish/guestfish-actions.pod:3909
26911 #, no-wrap
26912 msgid ""
26913 " removexattr xattr path\n"
26914 "\n"
26915 msgstr ""
26916
26917 #. type: textblock
26918 #: ../fish/guestfish-actions.pod:3914
26919 msgid "See also: L</lremovexattr>, L<attr(5)>."
26920 msgstr ""
26921
26922 #. type: =head2
26923 #: ../fish/guestfish-actions.pod:3916
26924 msgid "resize2fs"
26925 msgstr ""
26926
26927 #. type: verbatim
26928 #: ../fish/guestfish-actions.pod:3918
26929 #, no-wrap
26930 msgid ""
26931 " resize2fs device\n"
26932 "\n"
26933 msgstr ""
26934
26935 #. type: textblock
26936 #: ../fish/guestfish-actions.pod:3923
26937 msgid ""
26938 "I<Note:> It is sometimes required that you run L</e2fsck-f> on the C<device> "
26939 "before calling this command.  For unknown reasons C<resize2fs> sometimes "
26940 "gives an error about this and sometimes not.  In any case, it is always safe "
26941 "to call L</e2fsck-f> before calling this function."
26942 msgstr ""
26943
26944 #. type: =head2
26945 #: ../fish/guestfish-actions.pod:3929
26946 msgid "resize2fs-M"
26947 msgstr ""
26948
26949 #. type: verbatim
26950 #: ../fish/guestfish-actions.pod:3931
26951 #, no-wrap
26952 msgid ""
26953 " resize2fs-M device\n"
26954 "\n"
26955 msgstr ""
26956
26957 #. type: textblock
26958 #: ../fish/guestfish-actions.pod:3933
26959 msgid ""
26960 "This command is the same as L</resize2fs>, but the filesystem is resized to "
26961 "its minimum size.  This works like the I<-M> option to the C<resize2fs> "
26962 "command."
26963 msgstr ""
26964
26965 #. type: textblock
26966 #: ../fish/guestfish-actions.pod:3937
26967 msgid ""
26968 "To get the resulting size of the filesystem you should call L</tune2fs-l> "
26969 "and read the C<Block size> and C<Block count> values.  These two numbers, "
26970 "multiplied together, give the resulting size of the minimal filesystem in "
26971 "bytes."
26972 msgstr ""
26973
26974 #. type: =head2
26975 #: ../fish/guestfish-actions.pod:3942
26976 msgid "resize2fs-size"
26977 msgstr ""
26978
26979 #. type: verbatim
26980 #: ../fish/guestfish-actions.pod:3944
26981 #, no-wrap
26982 msgid ""
26983 " resize2fs-size device size\n"
26984 "\n"
26985 msgstr ""
26986
26987 #. type: textblock
26988 #: ../fish/guestfish-actions.pod:3946
26989 msgid ""
26990 "This command is the same as L</resize2fs> except that it allows you to "
26991 "specify the new size (in bytes) explicitly."
26992 msgstr ""
26993
26994 #. type: =head2
26995 #: ../fish/guestfish-actions.pod:3949
26996 msgid "rm"
26997 msgstr ""
26998
26999 #. type: verbatim
27000 #: ../fish/guestfish-actions.pod:3951
27001 #, no-wrap
27002 msgid ""
27003 " rm path\n"
27004 "\n"
27005 msgstr ""
27006
27007 #. type: =head2
27008 #: ../fish/guestfish-actions.pod:3955
27009 msgid "rm-rf"
27010 msgstr ""
27011
27012 #. type: verbatim
27013 #: ../fish/guestfish-actions.pod:3957
27014 #, no-wrap
27015 msgid ""
27016 " rm-rf path\n"
27017 "\n"
27018 msgstr ""
27019
27020 #. type: =head2
27021 #: ../fish/guestfish-actions.pod:3963
27022 msgid "rmdir"
27023 msgstr ""
27024
27025 #. type: verbatim
27026 #: ../fish/guestfish-actions.pod:3965
27027 #, no-wrap
27028 msgid ""
27029 " rmdir path\n"
27030 "\n"
27031 msgstr ""
27032
27033 #. type: =head2
27034 #: ../fish/guestfish-actions.pod:3969
27035 msgid "rmmountpoint"
27036 msgstr ""
27037
27038 #. type: verbatim
27039 #: ../fish/guestfish-actions.pod:3971
27040 #, no-wrap
27041 msgid ""
27042 " rmmountpoint exemptpath\n"
27043 "\n"
27044 msgstr ""
27045
27046 #. type: textblock
27047 #: ../fish/guestfish-actions.pod:3973
27048 msgid ""
27049 "This calls removes a mountpoint that was previously created with L</"
27050 "mkmountpoint>.  See L</mkmountpoint> for full details."
27051 msgstr ""
27052
27053 #. type: =head2
27054 #: ../fish/guestfish-actions.pod:3977
27055 msgid "scrub-device"
27056 msgstr ""
27057
27058 #. type: verbatim
27059 #: ../fish/guestfish-actions.pod:3979
27060 #, no-wrap
27061 msgid ""
27062 " scrub-device device\n"
27063 "\n"
27064 msgstr ""
27065
27066 #. type: =head2
27067 #: ../fish/guestfish-actions.pod:3990
27068 msgid "scrub-file"
27069 msgstr ""
27070
27071 #. type: verbatim
27072 #: ../fish/guestfish-actions.pod:3992
27073 #, no-wrap
27074 msgid ""
27075 " scrub-file file\n"
27076 "\n"
27077 msgstr ""
27078
27079 #. type: =head2
27080 #: ../fish/guestfish-actions.pod:4002
27081 msgid "scrub-freespace"
27082 msgstr ""
27083
27084 #. type: verbatim
27085 #: ../fish/guestfish-actions.pod:4004
27086 #, no-wrap
27087 msgid ""
27088 " scrub-freespace dir\n"
27089 "\n"
27090 msgstr ""
27091
27092 #. type: textblock
27093 #: ../fish/guestfish-actions.pod:4006
27094 msgid ""
27095 "This command creates the directory C<dir> and then fills it with files until "
27096 "the filesystem is full, and scrubs the files as for L</scrub-file>, and "
27097 "deletes them.  The intention is to scrub any free space on the partition "
27098 "containing C<dir>."
27099 msgstr ""
27100
27101 #. type: =head2
27102 #: ../fish/guestfish-actions.pod:4015
27103 msgid "set-append"
27104 msgstr ""
27105
27106 #. type: =head2
27107 #: ../fish/guestfish-actions.pod:4017
27108 msgid "append"
27109 msgstr ""
27110
27111 #. type: verbatim
27112 #: ../fish/guestfish-actions.pod:4019
27113 #, no-wrap
27114 msgid ""
27115 " set-append append\n"
27116 "\n"
27117 msgstr ""
27118
27119 #. type: =head2
27120 #: ../fish/guestfish-actions.pod:4030
27121 msgid "set-attach-method"
27122 msgstr ""
27123
27124 #. type: =head2
27125 #: ../fish/guestfish-actions.pod:4032
27126 msgid "attach-method"
27127 msgstr ""
27128
27129 #. type: verbatim
27130 #: ../fish/guestfish-actions.pod:4034
27131 #, no-wrap
27132 msgid ""
27133 " set-attach-method attachmethod\n"
27134 "\n"
27135 msgstr ""
27136
27137 #. type: =head2
27138 #: ../fish/guestfish-actions.pod:4056
27139 msgid "set-autosync"
27140 msgstr ""
27141
27142 #. type: =head2
27143 #: ../fish/guestfish-actions.pod:4058
27144 msgid "autosync"
27145 msgstr ""
27146
27147 #. type: verbatim
27148 #: ../fish/guestfish-actions.pod:4060
27149 #, no-wrap
27150 msgid ""
27151 " set-autosync true|false\n"
27152 "\n"
27153 msgstr ""
27154
27155 #. type: =head2
27156 #: ../fish/guestfish-actions.pod:4070
27157 msgid "set-direct"
27158 msgstr ""
27159
27160 #. type: =head2
27161 #: ../fish/guestfish-actions.pod:4072
27162 msgid "direct"
27163 msgstr ""
27164
27165 #. type: verbatim
27166 #: ../fish/guestfish-actions.pod:4074
27167 #, no-wrap
27168 msgid ""
27169 " set-direct true|false\n"
27170 "\n"
27171 msgstr ""
27172
27173 #. type: textblock
27174 #: ../fish/guestfish-actions.pod:4080
27175 msgid ""
27176 "One consequence of this is that log messages aren't caught by the library "
27177 "and handled by L</set-log-message-callback>, but go straight to stdout."
27178 msgstr ""
27179
27180 #. type: =head2
27181 #: ../fish/guestfish-actions.pod:4089
27182 msgid "set-e2label"
27183 msgstr ""
27184
27185 #. type: verbatim
27186 #: ../fish/guestfish-actions.pod:4091
27187 #, no-wrap
27188 msgid ""
27189 " set-e2label device label\n"
27190 "\n"
27191 msgstr ""
27192
27193 #. type: textblock
27194 #: ../fish/guestfish-actions.pod:4097
27195 msgid ""
27196 "You can use either L</tune2fs-l> or L</get-e2label> to return the existing "
27197 "label on a filesystem."
27198 msgstr ""
27199
27200 #. type: =head2
27201 #: ../fish/guestfish-actions.pod:4100
27202 msgid "set-e2uuid"
27203 msgstr ""
27204
27205 #. type: verbatim
27206 #: ../fish/guestfish-actions.pod:4102
27207 #, no-wrap
27208 msgid ""
27209 " set-e2uuid device uuid\n"
27210 "\n"
27211 msgstr ""
27212
27213 #. type: textblock
27214 #: ../fish/guestfish-actions.pod:4109
27215 msgid ""
27216 "You can use either L</tune2fs-l> or L</get-e2uuid> to return the existing "
27217 "UUID of a filesystem."
27218 msgstr ""
27219
27220 #. type: =head2
27221 #: ../fish/guestfish-actions.pod:4112
27222 msgid "set-memsize"
27223 msgstr ""
27224
27225 #. type: =head2
27226 #: ../fish/guestfish-actions.pod:4114
27227 msgid "memsize"
27228 msgstr ""
27229
27230 #. type: verbatim
27231 #: ../fish/guestfish-actions.pod:4116
27232 #, no-wrap
27233 msgid ""
27234 " set-memsize memsize\n"
27235 "\n"
27236 msgstr ""
27237
27238 #. type: textblock
27239 #: ../fish/guestfish-actions.pod:4118
27240 msgid ""
27241 "This sets the memory size in megabytes allocated to the qemu subprocess.  "
27242 "This only has any effect if called before L</launch>."
27243 msgstr ""
27244
27245 #. type: =head2
27246 #: ../fish/guestfish-actions.pod:4129
27247 msgid "set-network"
27248 msgstr ""
27249
27250 #. type: =head2
27251 #: ../fish/guestfish-actions.pod:4131
27252 msgid "network"
27253 msgstr ""
27254
27255 #. type: verbatim
27256 #: ../fish/guestfish-actions.pod:4133
27257 #, no-wrap
27258 msgid ""
27259 " set-network true|false\n"
27260 "\n"
27261 msgstr ""
27262
27263 #. type: textblock
27264 #: ../fish/guestfish-actions.pod:4141
27265 msgid ""
27266 "You must call this before calling L</launch>, otherwise it has no effect."
27267 msgstr ""
27268
27269 #. type: =head2
27270 #: ../fish/guestfish-actions.pod:4144
27271 msgid "set-path"
27272 msgstr ""
27273
27274 #. type: =head2
27275 #: ../fish/guestfish-actions.pod:4146
27276 msgid "path"
27277 msgstr ""
27278
27279 #. type: verbatim
27280 #: ../fish/guestfish-actions.pod:4148
27281 #, no-wrap
27282 msgid ""
27283 " set-path searchpath\n"
27284 "\n"
27285 msgstr ""
27286
27287 #. type: =head2
27288 #: ../fish/guestfish-actions.pod:4157
27289 msgid "set-qemu"
27290 msgstr ""
27291
27292 #. type: =head2
27293 #: ../fish/guestfish-actions.pod:4159
27294 msgid "qemu"
27295 msgstr ""
27296
27297 #. type: verbatim
27298 #: ../fish/guestfish-actions.pod:4161
27299 #, no-wrap
27300 msgid ""
27301 " set-qemu qemu\n"
27302 "\n"
27303 msgstr ""
27304
27305 #. type: =head2
27306 #: ../fish/guestfish-actions.pod:4181
27307 msgid "set-recovery-proc"
27308 msgstr ""
27309
27310 #. type: =head2
27311 #: ../fish/guestfish-actions.pod:4183
27312 msgid "recovery-proc"
27313 msgstr ""
27314
27315 #. type: verbatim
27316 #: ../fish/guestfish-actions.pod:4185
27317 #, no-wrap
27318 msgid ""
27319 " set-recovery-proc true|false\n"
27320 "\n"
27321 msgstr ""
27322
27323 #. type: textblock
27324 #: ../fish/guestfish-actions.pod:4187
27325 msgid ""
27326 "If this is called with the parameter C<false> then L</launch> does not "
27327 "create a recovery process.  The purpose of the recovery process is to stop "
27328 "runaway qemu processes in the case where the main program aborts abruptly."
27329 msgstr ""
27330
27331 #. type: textblock
27332 #: ../fish/guestfish-actions.pod:4192
27333 msgid ""
27334 "This only has any effect if called before L</launch>, and the default is "
27335 "true."
27336 msgstr ""
27337
27338 #. type: =head2
27339 #: ../fish/guestfish-actions.pod:4201
27340 msgid "set-selinux"
27341 msgstr ""
27342
27343 #. type: =head2
27344 #: ../fish/guestfish-actions.pod:4203
27345 msgid "selinux"
27346 msgstr ""
27347
27348 #. type: verbatim
27349 #: ../fish/guestfish-actions.pod:4205
27350 #, no-wrap
27351 msgid ""
27352 " set-selinux true|false\n"
27353 "\n"
27354 msgstr ""
27355
27356 #. type: =head2
27357 #: ../fish/guestfish-actions.pod:4216
27358 msgid "set-trace"
27359 msgstr ""
27360
27361 #. type: =head2
27362 #: ../fish/guestfish-actions.pod:4218
27363 msgid "trace"
27364 msgstr ""
27365
27366 #. type: verbatim
27367 #: ../fish/guestfish-actions.pod:4220
27368 #, no-wrap
27369 msgid ""
27370 " set-trace true|false\n"
27371 "\n"
27372 msgstr ""
27373
27374 #. type: textblock
27375 #: ../fish/guestfish-actions.pod:4232
27376 msgid ""
27377 "Trace messages are normally sent to C<stderr>, unless you register a "
27378 "callback to send them somewhere else (see L</set-event-callback>)."
27379 msgstr ""
27380
27381 #. type: =head2
27382 #: ../fish/guestfish-actions.pod:4236
27383 msgid "set-verbose"
27384 msgstr ""
27385
27386 #. type: =head2
27387 #: ../fish/guestfish-actions.pod:4238
27388 msgid "verbose"
27389 msgstr ""
27390
27391 #. type: verbatim
27392 #: ../fish/guestfish-actions.pod:4240
27393 #, no-wrap
27394 msgid ""
27395 " set-verbose true|false\n"
27396 "\n"
27397 msgstr ""
27398
27399 #. type: textblock
27400 #: ../fish/guestfish-actions.pod:4247
27401 msgid ""
27402 "Verbose messages are normally sent to C<stderr>, unless you register a "
27403 "callback to send them somewhere else (see L</set-event-callback>)."
27404 msgstr ""
27405
27406 #. type: =head2
27407 #: ../fish/guestfish-actions.pod:4251
27408 msgid "setcon"
27409 msgstr ""
27410
27411 #. type: verbatim
27412 #: ../fish/guestfish-actions.pod:4253
27413 #, no-wrap
27414 msgid ""
27415 " setcon context\n"
27416 "\n"
27417 msgstr ""
27418
27419 #. type: =head2
27420 #: ../fish/guestfish-actions.pod:4260
27421 msgid "setxattr"
27422 msgstr ""
27423
27424 #. type: verbatim
27425 #: ../fish/guestfish-actions.pod:4262
27426 #, no-wrap
27427 msgid ""
27428 " setxattr xattr val vallen path\n"
27429 "\n"
27430 msgstr ""
27431
27432 #. type: textblock
27433 #: ../fish/guestfish-actions.pod:4268
27434 msgid "See also: L</lsetxattr>, L<attr(5)>."
27435 msgstr ""
27436
27437 #. type: =head2
27438 #: ../fish/guestfish-actions.pod:4270
27439 msgid "sfdisk"
27440 msgstr ""
27441
27442 #. type: verbatim
27443 #: ../fish/guestfish-actions.pod:4272
27444 #, no-wrap
27445 msgid ""
27446 " sfdisk device cyls heads sectors 'lines ...'\n"
27447 "\n"
27448 msgstr ""
27449
27450 #. type: textblock
27451 #: ../fish/guestfish-actions.pod:4294
27452 msgid "See also: L</sfdisk-l>, L</sfdisk-N>, L</part-init>"
27453 msgstr ""
27454
27455 #. type: =head2
27456 #: ../fish/guestfish-actions.pod:4307
27457 msgid "sfdiskM"
27458 msgstr ""
27459
27460 #. type: verbatim
27461 #: ../fish/guestfish-actions.pod:4309
27462 #, no-wrap
27463 msgid ""
27464 " sfdiskM device 'lines ...'\n"
27465 "\n"
27466 msgstr ""
27467
27468 #. type: textblock
27469 #: ../fish/guestfish-actions.pod:4311
27470 msgid ""
27471 "This is a simplified interface to the L</sfdisk> command, where partition "
27472 "sizes are specified in megabytes only (rounded to the nearest cylinder) and "
27473 "you don't need to specify the cyls, heads and sectors parameters which were "
27474 "rarely if ever used anyway."
27475 msgstr ""
27476
27477 #. type: textblock
27478 #: ../fish/guestfish-actions.pod:4317
27479 msgid "See also: L</sfdisk>, the L<sfdisk(8)> manpage and L</part-disk>"
27480 msgstr ""
27481
27482 #. type: =head2
27483 #: ../fish/guestfish-actions.pod:4330
27484 msgid "sfdisk-N"
27485 msgstr ""
27486
27487 #. type: verbatim
27488 #: ../fish/guestfish-actions.pod:4332
27489 #, no-wrap
27490 msgid ""
27491 " sfdisk-N device partnum cyls heads sectors line\n"
27492 "\n"
27493 msgstr ""
27494
27495 #. type: textblock
27496 #: ../fish/guestfish-actions.pod:4337
27497 msgid ""
27498 "For other parameters, see L</sfdisk>.  You should usually pass C<0> for the "
27499 "cyls/heads/sectors parameters."
27500 msgstr ""
27501
27502 #. type: textblock
27503 #: ../fish/guestfish-actions.pod:4340
27504 msgid "See also: L</part-add>"
27505 msgstr ""
27506
27507 #. type: =head2
27508 #: ../fish/guestfish-actions.pod:4352
27509 msgid "sfdisk-disk-geometry"
27510 msgstr ""
27511
27512 #. type: verbatim
27513 #: ../fish/guestfish-actions.pod:4354
27514 #, no-wrap
27515 msgid ""
27516 " sfdisk-disk-geometry device\n"
27517 "\n"
27518 msgstr ""
27519
27520 #. type: textblock
27521 #: ../fish/guestfish-actions.pod:4356
27522 msgid ""
27523 "This displays the disk geometry of C<device> read from the partition table.  "
27524 "Especially in the case where the underlying block device has been resized, "
27525 "this can be different from the kernel's idea of the geometry (see L</sfdisk-"
27526 "kernel-geometry>)."
27527 msgstr ""
27528
27529 #. type: =head2
27530 #: ../fish/guestfish-actions.pod:4364
27531 msgid "sfdisk-kernel-geometry"
27532 msgstr ""
27533
27534 #. type: verbatim
27535 #: ../fish/guestfish-actions.pod:4366
27536 #, no-wrap
27537 msgid ""
27538 " sfdisk-kernel-geometry device\n"
27539 "\n"
27540 msgstr ""
27541
27542 #. type: =head2
27543 #: ../fish/guestfish-actions.pod:4373
27544 msgid "sfdisk-l"
27545 msgstr ""
27546
27547 #. type: verbatim
27548 #: ../fish/guestfish-actions.pod:4375
27549 #, no-wrap
27550 msgid ""
27551 " sfdisk-l device\n"
27552 "\n"
27553 msgstr ""
27554
27555 #. type: textblock
27556 #: ../fish/guestfish-actions.pod:4381
27557 msgid "See also: L</part-list>"
27558 msgstr ""
27559
27560 #. type: =head2
27561 #: ../fish/guestfish-actions.pod:4390
27562 msgid "sh"
27563 msgstr ""
27564
27565 #. type: verbatim
27566 #: ../fish/guestfish-actions.pod:4392
27567 #, no-wrap
27568 msgid ""
27569 " sh command\n"
27570 "\n"
27571 msgstr ""
27572
27573 #. type: textblock
27574 #: ../fish/guestfish-actions.pod:4397
27575 msgid "This is like L</command>, but passes the command to:"
27576 msgstr ""
27577
27578 #. type: textblock
27579 #: ../fish/guestfish-actions.pod:4405
27580 msgid "All the provisos about L</command> apply to this call."
27581 msgstr ""
27582
27583 #. type: =head2
27584 #: ../fish/guestfish-actions.pod:4407
27585 msgid "sh-lines"
27586 msgstr ""
27587
27588 #. type: verbatim
27589 #: ../fish/guestfish-actions.pod:4409
27590 #, no-wrap
27591 msgid ""
27592 " sh-lines command\n"
27593 "\n"
27594 msgstr ""
27595
27596 #. type: textblock
27597 #: ../fish/guestfish-actions.pod:4411
27598 msgid "This is the same as L</sh>, but splits the result into a list of lines."
27599 msgstr ""
27600
27601 #. type: textblock
27602 #: ../fish/guestfish-actions.pod:4414
27603 msgid "See also: L</command-lines>"
27604 msgstr ""
27605
27606 #. type: =head2
27607 #: ../fish/guestfish-actions.pod:4416
27608 msgid "sleep"
27609 msgstr ""
27610
27611 #. type: verbatim
27612 #: ../fish/guestfish-actions.pod:4418
27613 #, no-wrap
27614 msgid ""
27615 " sleep secs\n"
27616 "\n"
27617 msgstr ""
27618
27619 #. type: =head2
27620 #: ../fish/guestfish-actions.pod:4422
27621 msgid "stat"
27622 msgstr ""
27623
27624 #. type: verbatim
27625 #: ../fish/guestfish-actions.pod:4424
27626 #, no-wrap
27627 msgid ""
27628 " stat path\n"
27629 "\n"
27630 msgstr ""
27631
27632 #. type: =head2
27633 #: ../fish/guestfish-actions.pod:4430
27634 msgid "statvfs"
27635 msgstr ""
27636
27637 #. type: verbatim
27638 #: ../fish/guestfish-actions.pod:4432
27639 #, no-wrap
27640 msgid ""
27641 " statvfs path\n"
27642 "\n"
27643 msgstr ""
27644
27645 #. type: =head2
27646 #: ../fish/guestfish-actions.pod:4440
27647 msgid "strings"
27648 msgstr ""
27649
27650 #. type: verbatim
27651 #: ../fish/guestfish-actions.pod:4442
27652 #, no-wrap
27653 msgid ""
27654 " strings path\n"
27655 "\n"
27656 msgstr ""
27657
27658 #. type: =head2
27659 #: ../fish/guestfish-actions.pod:4450
27660 msgid "strings-e"
27661 msgstr ""
27662
27663 #. type: verbatim
27664 #: ../fish/guestfish-actions.pod:4452
27665 #, no-wrap
27666 msgid ""
27667 " strings-e encoding path\n"
27668 "\n"
27669 msgstr ""
27670
27671 #. type: textblock
27672 #: ../fish/guestfish-actions.pod:4454
27673 msgid ""
27674 "This is like the L</strings> command, but allows you to specify the encoding "
27675 "of strings that are looked for in the source file C<path>."
27676 msgstr ""
27677
27678 #. type: textblock
27679 #: ../fish/guestfish-actions.pod:4464
27680 msgid ""
27681 "Single 7-bit-byte characters like ASCII and the ASCII-compatible parts of "
27682 "ISO-8859-X (this is what L</strings> uses)."
27683 msgstr ""
27684
27685 #. type: =head2
27686 #: ../fish/guestfish-actions.pod:4496
27687 msgid "swapoff-device"
27688 msgstr ""
27689
27690 #. type: verbatim
27691 #: ../fish/guestfish-actions.pod:4498
27692 #, no-wrap
27693 msgid ""
27694 " swapoff-device device\n"
27695 "\n"
27696 msgstr ""
27697
27698 #. type: textblock
27699 #: ../fish/guestfish-actions.pod:4500
27700 msgid ""
27701 "This command disables the libguestfs appliance swap device or partition "
27702 "named C<device>.  See L</swapon-device>."
27703 msgstr ""
27704
27705 #. type: =head2
27706 #: ../fish/guestfish-actions.pod:4504
27707 msgid "swapoff-file"
27708 msgstr ""
27709
27710 #. type: verbatim
27711 #: ../fish/guestfish-actions.pod:4506
27712 #, no-wrap
27713 msgid ""
27714 " swapoff-file file\n"
27715 "\n"
27716 msgstr ""
27717
27718 #. type: =head2
27719 #: ../fish/guestfish-actions.pod:4510
27720 msgid "swapoff-label"
27721 msgstr ""
27722
27723 #. type: verbatim
27724 #: ../fish/guestfish-actions.pod:4512
27725 #, no-wrap
27726 msgid ""
27727 " swapoff-label label\n"
27728 "\n"
27729 msgstr ""
27730
27731 #. type: =head2
27732 #: ../fish/guestfish-actions.pod:4517
27733 msgid "swapoff-uuid"
27734 msgstr ""
27735
27736 #. type: verbatim
27737 #: ../fish/guestfish-actions.pod:4519
27738 #, no-wrap
27739 msgid ""
27740 " swapoff-uuid uuid\n"
27741 "\n"
27742 msgstr ""
27743
27744 #. type: =head2
27745 #: ../fish/guestfish-actions.pod:4524
27746 msgid "swapon-device"
27747 msgstr ""
27748
27749 #. type: verbatim
27750 #: ../fish/guestfish-actions.pod:4526
27751 #, no-wrap
27752 msgid ""
27753 " swapon-device device\n"
27754 "\n"
27755 msgstr ""
27756
27757 #. type: textblock
27758 #: ../fish/guestfish-actions.pod:4528
27759 msgid ""
27760 "This command enables the libguestfs appliance to use the swap device or "
27761 "partition named C<device>.  The increased memory is made available for all "
27762 "commands, for example those run using L</command> or L</sh>."
27763 msgstr ""
27764
27765 #. type: =head2
27766 #: ../fish/guestfish-actions.pod:4540
27767 msgid "swapon-file"
27768 msgstr ""
27769
27770 #. type: verbatim
27771 #: ../fish/guestfish-actions.pod:4542
27772 #, no-wrap
27773 msgid ""
27774 " swapon-file file\n"
27775 "\n"
27776 msgstr ""
27777
27778 #. type: textblock
27779 #: ../fish/guestfish-actions.pod:4544
27780 msgid ""
27781 "This command enables swap to a file.  See L</swapon-device> for other notes."
27782 msgstr ""
27783
27784 #. type: =head2
27785 #: ../fish/guestfish-actions.pod:4547
27786 msgid "swapon-label"
27787 msgstr ""
27788
27789 #. type: verbatim
27790 #: ../fish/guestfish-actions.pod:4549
27791 #, no-wrap
27792 msgid ""
27793 " swapon-label label\n"
27794 "\n"
27795 msgstr ""
27796
27797 #. type: textblock
27798 #: ../fish/guestfish-actions.pod:4551
27799 msgid ""
27800 "This command enables swap to a labeled swap partition.  See L</swapon-"
27801 "device> for other notes."
27802 msgstr ""
27803
27804 #. type: =head2
27805 #: ../fish/guestfish-actions.pod:4554
27806 msgid "swapon-uuid"
27807 msgstr ""
27808
27809 #. type: verbatim
27810 #: ../fish/guestfish-actions.pod:4556
27811 #, no-wrap
27812 msgid ""
27813 " swapon-uuid uuid\n"
27814 "\n"
27815 msgstr ""
27816
27817 #. type: textblock
27818 #: ../fish/guestfish-actions.pod:4558
27819 msgid ""
27820 "This command enables swap to a swap partition with the given UUID.  See L</"
27821 "swapon-device> for other notes."
27822 msgstr ""
27823
27824 #. type: =head2
27825 #: ../fish/guestfish-actions.pod:4561
27826 msgid "sync"
27827 msgstr ""
27828
27829 #. type: verbatim
27830 #: ../fish/guestfish-actions.pod:4563
27831 #, no-wrap
27832 msgid ""
27833 " sync\n"
27834 "\n"
27835 msgstr ""
27836
27837 #. type: =head2
27838 #: ../fish/guestfish-actions.pod:4571
27839 msgid "tail"
27840 msgstr ""
27841
27842 #. type: verbatim
27843 #: ../fish/guestfish-actions.pod:4573
27844 #, no-wrap
27845 msgid ""
27846 " tail path\n"
27847 "\n"
27848 msgstr ""
27849
27850 #. type: =head2
27851 #: ../fish/guestfish-actions.pod:4581
27852 msgid "tail-n"
27853 msgstr ""
27854
27855 #. type: verbatim
27856 #: ../fish/guestfish-actions.pod:4583
27857 #, no-wrap
27858 msgid ""
27859 " tail-n nrlines path\n"
27860 "\n"
27861 msgstr ""
27862
27863 #. type: =head2
27864 #: ../fish/guestfish-actions.pod:4596
27865 msgid "tar-in"
27866 msgstr ""
27867
27868 #. type: verbatim
27869 #: ../fish/guestfish-actions.pod:4598
27870 #, no-wrap
27871 msgid ""
27872 " tar-in (tarfile|-) directory\n"
27873 "\n"
27874 msgstr ""
27875
27876 #. type: textblock
27877 #: ../fish/guestfish-actions.pod:4603
27878 msgid "To upload a compressed tarball, use L</tgz-in> or L</txz-in>."
27879 msgstr ""
27880
27881 #. type: =head2
27882 #: ../fish/guestfish-actions.pod:4608
27883 msgid "tar-out"
27884 msgstr ""
27885
27886 #. type: verbatim
27887 #: ../fish/guestfish-actions.pod:4610
27888 #, no-wrap
27889 msgid ""
27890 " tar-out directory (tarfile|-)\n"
27891 "\n"
27892 msgstr ""
27893
27894 #. type: textblock
27895 #: ../fish/guestfish-actions.pod:4615
27896 msgid "To download a compressed tarball, use L</tgz-out> or L</txz-out>."
27897 msgstr ""
27898
27899 #. type: =head2
27900 #: ../fish/guestfish-actions.pod:4620
27901 msgid "tgz-in"
27902 msgstr ""
27903
27904 #. type: verbatim
27905 #: ../fish/guestfish-actions.pod:4622
27906 #, no-wrap
27907 msgid ""
27908 " tgz-in (tarball|-) directory\n"
27909 "\n"
27910 msgstr ""
27911
27912 #. type: textblock
27913 #: ../fish/guestfish-actions.pod:4627
27914 msgid "To upload an uncompressed tarball, use L</tar-in>."
27915 msgstr ""
27916
27917 #. type: =head2
27918 #: ../fish/guestfish-actions.pod:4631
27919 msgid "tgz-out"
27920 msgstr ""
27921
27922 #. type: verbatim
27923 #: ../fish/guestfish-actions.pod:4633
27924 #, no-wrap
27925 msgid ""
27926 " tgz-out directory (tarball|-)\n"
27927 "\n"
27928 msgstr ""
27929
27930 #. type: textblock
27931 #: ../fish/guestfish-actions.pod:4638
27932 msgid "To download an uncompressed tarball, use L</tar-out>."
27933 msgstr ""
27934
27935 #. type: =head2
27936 #: ../fish/guestfish-actions.pod:4642
27937 msgid "touch"
27938 msgstr ""
27939
27940 #. type: verbatim
27941 #: ../fish/guestfish-actions.pod:4644
27942 #, no-wrap
27943 msgid ""
27944 " touch path\n"
27945 "\n"
27946 msgstr ""
27947
27948 #. type: =head2
27949 #: ../fish/guestfish-actions.pod:4653
27950 msgid "truncate"
27951 msgstr ""
27952
27953 #. type: verbatim
27954 #: ../fish/guestfish-actions.pod:4655
27955 #, no-wrap
27956 msgid ""
27957 " truncate path\n"
27958 "\n"
27959 msgstr ""
27960
27961 #. type: =head2
27962 #: ../fish/guestfish-actions.pod:4660
27963 msgid "truncate-size"
27964 msgstr ""
27965
27966 #. type: verbatim
27967 #: ../fish/guestfish-actions.pod:4662
27968 #, no-wrap
27969 msgid ""
27970 " truncate-size path size\n"
27971 "\n"
27972 msgstr ""
27973
27974 #. type: textblock
27975 #: ../fish/guestfish-actions.pod:4667
27976 msgid ""
27977 "If the current file size is less than C<size> then the file is extended to "
27978 "the required size with zero bytes.  This creates a sparse file (ie. disk "
27979 "blocks are not allocated for the file until you write to it).  To create a "
27980 "non-sparse file of zeroes, use L</fallocate64> instead."
27981 msgstr ""
27982
27983 #. type: =head2
27984 #: ../fish/guestfish-actions.pod:4673
27985 msgid "tune2fs-l"
27986 msgstr ""
27987
27988 #. type: verbatim
27989 #: ../fish/guestfish-actions.pod:4675
27990 #, no-wrap
27991 msgid ""
27992 " tune2fs-l device\n"
27993 "\n"
27994 msgstr ""
27995
27996 #. type: =head2
27997 #: ../fish/guestfish-actions.pod:4685
27998 msgid "txz-in"
27999 msgstr ""
28000
28001 #. type: verbatim
28002 #: ../fish/guestfish-actions.pod:4687
28003 #, no-wrap
28004 msgid ""
28005 " txz-in (tarball|-) directory\n"
28006 "\n"
28007 msgstr ""
28008
28009 #. type: =head2
28010 #: ../fish/guestfish-actions.pod:4694
28011 msgid "txz-out"
28012 msgstr ""
28013
28014 #. type: verbatim
28015 #: ../fish/guestfish-actions.pod:4696
28016 #, no-wrap
28017 msgid ""
28018 " txz-out directory (tarball|-)\n"
28019 "\n"
28020 msgstr ""
28021
28022 #. type: =head2
28023 #: ../fish/guestfish-actions.pod:4703
28024 msgid "umask"
28025 msgstr ""
28026
28027 #. type: verbatim
28028 #: ../fish/guestfish-actions.pod:4705
28029 #, no-wrap
28030 msgid ""
28031 " umask mask\n"
28032 "\n"
28033 msgstr ""
28034
28035 #. type: textblock
28036 #: ../fish/guestfish-actions.pod:4719
28037 msgid "See also L</get-umask>, L<umask(2)>, L</mknod>, L</mkdir>."
28038 msgstr ""
28039
28040 #. type: =head2
28041 #: ../fish/guestfish-actions.pod:4724
28042 msgid "umount"
28043 msgstr ""
28044
28045 #. type: =head2
28046 #: ../fish/guestfish-actions.pod:4726
28047 msgid "unmount"
28048 msgstr ""
28049
28050 #. type: verbatim
28051 #: ../fish/guestfish-actions.pod:4728
28052 #, no-wrap
28053 msgid ""
28054 " umount pathordevice\n"
28055 "\n"
28056 msgstr ""
28057
28058 #. type: =head2
28059 #: ../fish/guestfish-actions.pod:4734
28060 msgid "umount-all"
28061 msgstr ""
28062
28063 #. type: =head2
28064 #: ../fish/guestfish-actions.pod:4736
28065 msgid "unmount-all"
28066 msgstr ""
28067
28068 #. type: verbatim
28069 #: ../fish/guestfish-actions.pod:4738
28070 #, no-wrap
28071 msgid ""
28072 " umount-all\n"
28073 "\n"
28074 msgstr ""
28075
28076 #. type: =head2
28077 #: ../fish/guestfish-actions.pod:4744
28078 msgid "upload"
28079 msgstr ""
28080
28081 #. type: verbatim
28082 #: ../fish/guestfish-actions.pod:4746
28083 #, no-wrap
28084 msgid ""
28085 " upload (filename|-) remotefilename\n"
28086 "\n"
28087 msgstr ""
28088
28089 #. type: textblock
28090 #: ../fish/guestfish-actions.pod:4753
28091 msgid "See also L</download>."
28092 msgstr ""
28093
28094 #. type: =head2
28095 #: ../fish/guestfish-actions.pod:4757
28096 msgid "upload-offset"
28097 msgstr ""
28098
28099 #. type: verbatim
28100 #: ../fish/guestfish-actions.pod:4759
28101 #, no-wrap
28102 msgid ""
28103 " upload-offset (filename|-) remotefilename offset\n"
28104 "\n"
28105 msgstr ""
28106
28107 #. type: textblock
28108 #: ../fish/guestfish-actions.pod:4771
28109 msgid ""
28110 "Note that there is no limit on the amount of data that can be uploaded with "
28111 "this call, unlike with L</pwrite>, and this call always writes the full "
28112 "amount unless an error occurs."
28113 msgstr ""
28114
28115 #. type: textblock
28116 #: ../fish/guestfish-actions.pod:4776
28117 msgid "See also L</upload>, L</pwrite>."
28118 msgstr ""
28119
28120 #. type: =head2
28121 #: ../fish/guestfish-actions.pod:4780
28122 msgid "utimens"
28123 msgstr ""
28124
28125 #. type: verbatim
28126 #: ../fish/guestfish-actions.pod:4782
28127 #, no-wrap
28128 msgid ""
28129 " utimens path atsecs atnsecs mtsecs mtnsecs\n"
28130 "\n"
28131 msgstr ""
28132
28133 #. type: =head2
28134 #: ../fish/guestfish-actions.pod:4801
28135 msgid "version"
28136 msgstr ""
28137
28138 #. type: verbatim
28139 #: ../fish/guestfish-actions.pod:4803
28140 #, no-wrap
28141 msgid ""
28142 " version\n"
28143 "\n"
28144 msgstr ""
28145
28146 #. type: textblock
28147 #: ../fish/guestfish-actions.pod:4830
28148 msgid ""
28149 "I<Note:> Don't use this call to test for availability of features.  In "
28150 "enterprise distributions we backport features from later versions into "
28151 "earlier versions, making this an unreliable way to test for features.  Use "
28152 "L</available> instead."
28153 msgstr ""
28154
28155 #. type: =head2
28156 #: ../fish/guestfish-actions.pod:4836
28157 msgid "vfs-label"
28158 msgstr ""
28159
28160 #. type: verbatim
28161 #: ../fish/guestfish-actions.pod:4838
28162 #, no-wrap
28163 msgid ""
28164 " vfs-label device\n"
28165 "\n"
28166 msgstr ""
28167
28168 #. type: textblock
28169 #: ../fish/guestfish-actions.pod:4845
28170 msgid "To find a filesystem from the label, use L</findfs-label>."
28171 msgstr ""
28172
28173 #. type: =head2
28174 #: ../fish/guestfish-actions.pod:4847
28175 msgid "vfs-type"
28176 msgstr ""
28177
28178 #. type: verbatim
28179 #: ../fish/guestfish-actions.pod:4849
28180 #, no-wrap
28181 msgid ""
28182 " vfs-type device\n"
28183 "\n"
28184 msgstr ""
28185
28186 #. type: =head2
28187 #: ../fish/guestfish-actions.pod:4859
28188 msgid "vfs-uuid"
28189 msgstr ""
28190
28191 #. type: verbatim
28192 #: ../fish/guestfish-actions.pod:4861
28193 #, no-wrap
28194 msgid ""
28195 " vfs-uuid device\n"
28196 "\n"
28197 msgstr ""
28198
28199 #. type: textblock
28200 #: ../fish/guestfish-actions.pod:4868
28201 msgid "To find a filesystem from the UUID, use L</findfs-uuid>."
28202 msgstr ""
28203
28204 #. type: =head2
28205 #: ../fish/guestfish-actions.pod:4870
28206 msgid "vg-activate"
28207 msgstr ""
28208
28209 #. type: verbatim
28210 #: ../fish/guestfish-actions.pod:4872
28211 #, no-wrap
28212 msgid ""
28213 " vg-activate true|false 'volgroups ...'\n"
28214 "\n"
28215 msgstr ""
28216
28217 #. type: =head2
28218 #: ../fish/guestfish-actions.pod:4882
28219 msgid "vg-activate-all"
28220 msgstr ""
28221
28222 #. type: verbatim
28223 #: ../fish/guestfish-actions.pod:4884
28224 #, no-wrap
28225 msgid ""
28226 " vg-activate-all true|false\n"
28227 "\n"
28228 msgstr ""
28229
28230 #. type: =head2
28231 #: ../fish/guestfish-actions.pod:4891
28232 msgid "vgcreate"
28233 msgstr ""
28234
28235 #. type: verbatim
28236 #: ../fish/guestfish-actions.pod:4893
28237 #, no-wrap
28238 msgid ""
28239 " vgcreate volgroup 'physvols ...'\n"
28240 "\n"
28241 msgstr ""
28242
28243 #. type: =head2
28244 #: ../fish/guestfish-actions.pod:4898
28245 msgid "vglvuuids"
28246 msgstr ""
28247
28248 #. type: verbatim
28249 #: ../fish/guestfish-actions.pod:4900
28250 #, no-wrap
28251 msgid ""
28252 " vglvuuids vgname\n"
28253 "\n"
28254 msgstr ""
28255
28256 #. type: textblock
28257 #: ../fish/guestfish-actions.pod:4905
28258 msgid ""
28259 "You can use this along with L</lvs> and L</lvuuid> calls to associate "
28260 "logical volumes and volume groups."
28261 msgstr ""
28262
28263 #. type: textblock
28264 #: ../fish/guestfish-actions.pod:4908
28265 msgid "See also L</vgpvuuids>."
28266 msgstr ""
28267
28268 #. type: =head2
28269 #: ../fish/guestfish-actions.pod:4910
28270 msgid "vgpvuuids"
28271 msgstr ""
28272
28273 #. type: verbatim
28274 #: ../fish/guestfish-actions.pod:4912
28275 #, no-wrap
28276 msgid ""
28277 " vgpvuuids vgname\n"
28278 "\n"
28279 msgstr ""
28280
28281 #. type: textblock
28282 #: ../fish/guestfish-actions.pod:4917
28283 msgid ""
28284 "You can use this along with L</pvs> and L</pvuuid> calls to associate "
28285 "physical volumes and volume groups."
28286 msgstr ""
28287
28288 #. type: textblock
28289 #: ../fish/guestfish-actions.pod:4920
28290 msgid "See also L</vglvuuids>."
28291 msgstr ""
28292
28293 #. type: =head2
28294 #: ../fish/guestfish-actions.pod:4922
28295 msgid "vgremove"
28296 msgstr ""
28297
28298 #. type: verbatim
28299 #: ../fish/guestfish-actions.pod:4924
28300 #, no-wrap
28301 msgid ""
28302 " vgremove vgname\n"
28303 "\n"
28304 msgstr ""
28305
28306 #. type: =head2
28307 #: ../fish/guestfish-actions.pod:4931
28308 msgid "vgrename"
28309 msgstr ""
28310
28311 #. type: verbatim
28312 #: ../fish/guestfish-actions.pod:4933
28313 #, no-wrap
28314 msgid ""
28315 " vgrename volgroup newvolgroup\n"
28316 "\n"
28317 msgstr ""
28318
28319 #. type: =head2
28320 #: ../fish/guestfish-actions.pod:4937
28321 msgid "vgs"
28322 msgstr ""
28323
28324 #. type: verbatim
28325 #: ../fish/guestfish-actions.pod:4939
28326 #, no-wrap
28327 msgid ""
28328 " vgs\n"
28329 "\n"
28330 msgstr ""
28331
28332 #. type: textblock
28333 #: ../fish/guestfish-actions.pod:4947
28334 msgid "See also L</vgs-full>."
28335 msgstr ""
28336
28337 #. type: =head2
28338 #: ../fish/guestfish-actions.pod:4949
28339 msgid "vgs-full"
28340 msgstr ""
28341
28342 #. type: verbatim
28343 #: ../fish/guestfish-actions.pod:4951
28344 #, no-wrap
28345 msgid ""
28346 " vgs-full\n"
28347 "\n"
28348 msgstr ""
28349
28350 #. type: =head2
28351 #: ../fish/guestfish-actions.pod:4956
28352 msgid "vgscan"
28353 msgstr ""
28354
28355 #. type: verbatim
28356 #: ../fish/guestfish-actions.pod:4958
28357 #, no-wrap
28358 msgid ""
28359 " vgscan\n"
28360 "\n"
28361 msgstr ""
28362
28363 #. type: =head2
28364 #: ../fish/guestfish-actions.pod:4963
28365 msgid "vguuid"
28366 msgstr ""
28367
28368 #. type: verbatim
28369 #: ../fish/guestfish-actions.pod:4965
28370 #, no-wrap
28371 msgid ""
28372 " vguuid vgname\n"
28373 "\n"
28374 msgstr ""
28375
28376 #. type: =head2
28377 #: ../fish/guestfish-actions.pod:4969
28378 msgid "wc-c"
28379 msgstr ""
28380
28381 #. type: verbatim
28382 #: ../fish/guestfish-actions.pod:4971
28383 #, no-wrap
28384 msgid ""
28385 " wc-c path\n"
28386 "\n"
28387 msgstr ""
28388
28389 #. type: =head2
28390 #: ../fish/guestfish-actions.pod:4976
28391 msgid "wc-l"
28392 msgstr ""
28393
28394 #. type: verbatim
28395 #: ../fish/guestfish-actions.pod:4978
28396 #, no-wrap
28397 msgid ""
28398 " wc-l path\n"
28399 "\n"
28400 msgstr ""
28401
28402 #. type: =head2
28403 #: ../fish/guestfish-actions.pod:4983
28404 msgid "wc-w"
28405 msgstr ""
28406
28407 #. type: verbatim
28408 #: ../fish/guestfish-actions.pod:4985
28409 #, no-wrap
28410 msgid ""
28411 " wc-w path\n"
28412 "\n"
28413 msgstr ""
28414
28415 #. type: =head2
28416 #: ../fish/guestfish-actions.pod:4990
28417 msgid "write"
28418 msgstr ""
28419
28420 #. type: verbatim
28421 #: ../fish/guestfish-actions.pod:4992
28422 #, no-wrap
28423 msgid ""
28424 " write path content\n"
28425 "\n"
28426 msgstr ""
28427
28428 #. type: =head2
28429 #: ../fish/guestfish-actions.pod:5000
28430 msgid "write-file"
28431 msgstr ""
28432
28433 #. type: verbatim
28434 #: ../fish/guestfish-actions.pod:5002
28435 #, no-wrap
28436 msgid ""
28437 " write-file path content size\n"
28438 "\n"
28439 msgstr ""
28440
28441 #. type: =head2
28442 #: ../fish/guestfish-actions.pod:5025
28443 msgid "zegrep"
28444 msgstr ""
28445
28446 #. type: verbatim
28447 #: ../fish/guestfish-actions.pod:5027
28448 #, no-wrap
28449 msgid ""
28450 " zegrep regex path\n"
28451 "\n"
28452 msgstr ""
28453
28454 #. type: =head2
28455 #: ../fish/guestfish-actions.pod:5035
28456 msgid "zegrepi"
28457 msgstr ""
28458
28459 #. type: verbatim
28460 #: ../fish/guestfish-actions.pod:5037
28461 #, no-wrap
28462 msgid ""
28463 " zegrepi regex path\n"
28464 "\n"
28465 msgstr ""
28466
28467 #. type: =head2
28468 #: ../fish/guestfish-actions.pod:5045
28469 msgid "zero"
28470 msgstr ""
28471
28472 #. type: verbatim
28473 #: ../fish/guestfish-actions.pod:5047
28474 #, no-wrap
28475 msgid ""
28476 " zero device\n"
28477 "\n"
28478 msgstr ""
28479
28480 #. type: textblock
28481 #: ../fish/guestfish-actions.pod:5055
28482 msgid "See also: L</zero-device>, L</scrub-device>, L</is-zero-device>"
28483 msgstr ""
28484
28485 #. type: =head2
28486 #: ../fish/guestfish-actions.pod:5058
28487 msgid "zero-device"
28488 msgstr ""
28489
28490 #. type: verbatim
28491 #: ../fish/guestfish-actions.pod:5060
28492 #, no-wrap
28493 msgid ""
28494 " zero-device device\n"
28495 "\n"
28496 msgstr ""
28497
28498 #. type: textblock
28499 #: ../fish/guestfish-actions.pod:5062
28500 msgid ""
28501 "This command writes zeroes over the entire C<device>.  Compare with L</zero> "
28502 "which just zeroes the first few blocks of a device."
28503 msgstr ""
28504
28505 #. type: =head2
28506 #: ../fish/guestfish-actions.pod:5069
28507 msgid "zerofree"
28508 msgstr ""
28509
28510 #. type: verbatim
28511 #: ../fish/guestfish-actions.pod:5071
28512 #, no-wrap
28513 msgid ""
28514 " zerofree device\n"
28515 "\n"
28516 msgstr ""
28517
28518 #. type: =head2
28519 #: ../fish/guestfish-actions.pod:5084
28520 msgid "zfgrep"
28521 msgstr ""
28522
28523 #. type: verbatim
28524 #: ../fish/guestfish-actions.pod:5086
28525 #, no-wrap
28526 msgid ""
28527 " zfgrep pattern path\n"
28528 "\n"
28529 msgstr ""
28530
28531 #. type: =head2
28532 #: ../fish/guestfish-actions.pod:5094
28533 msgid "zfgrepi"
28534 msgstr ""
28535
28536 #. type: verbatim
28537 #: ../fish/guestfish-actions.pod:5096
28538 #, no-wrap
28539 msgid ""
28540 " zfgrepi pattern path\n"
28541 "\n"
28542 msgstr ""
28543
28544 #. type: =head2
28545 #: ../fish/guestfish-actions.pod:5104
28546 msgid "zfile"
28547 msgstr ""
28548
28549 #. type: verbatim
28550 #: ../fish/guestfish-actions.pod:5106
28551 #, no-wrap
28552 msgid ""
28553 " zfile meth path\n"
28554 "\n"
28555 msgstr ""
28556
28557 #. type: textblock
28558 #: ../fish/guestfish-actions.pod:5113
28559 msgid ""
28560 "Since 1.0.63, use L</file> instead which can now process compressed files."
28561 msgstr ""
28562
28563 #. type: =head2
28564 #: ../fish/guestfish-actions.pod:5123
28565 msgid "zgrep"
28566 msgstr ""
28567
28568 #. type: verbatim
28569 #: ../fish/guestfish-actions.pod:5125
28570 #, no-wrap
28571 msgid ""
28572 " zgrep regex path\n"
28573 "\n"
28574 msgstr ""
28575
28576 #. type: =head2
28577 #: ../fish/guestfish-actions.pod:5133
28578 msgid "zgrepi"
28579 msgstr ""
28580
28581 #. type: verbatim
28582 #: ../fish/guestfish-actions.pod:5135
28583 #, no-wrap
28584 msgid ""
28585 " zgrepi regex path\n"
28586 "\n"
28587 msgstr ""
28588
28589 #. type: =head2
28590 #: ../fish/guestfish-commands.pod:1
28591 msgid "alloc"
28592 msgstr ""
28593
28594 #. type: =head2
28595 #: ../fish/guestfish-commands.pod:3
28596 msgid "allocate"
28597 msgstr ""
28598
28599 #. type: verbatim
28600 #: ../fish/guestfish-commands.pod:5
28601 #, no-wrap
28602 msgid ""
28603 " alloc filename size\n"
28604 "\n"
28605 msgstr ""
28606
28607 #. type: textblock
28608 #: ../fish/guestfish-commands.pod:7
28609 msgid ""
28610 "This creates an empty (zeroed) file of the given size, and then adds so it "
28611 "can be further examined."
28612 msgstr ""
28613
28614 #. type: textblock
28615 #: ../fish/guestfish-commands.pod:10 ../fish/guestfish-commands.pod:182
28616 msgid "For more advanced image creation, see L<qemu-img(1)> utility."
28617 msgstr ""
28618
28619 #. type: textblock
28620 #: ../fish/guestfish-commands.pod:12 ../fish/guestfish-commands.pod:184
28621 msgid "Size can be specified using standard suffixes, eg. C<1M>."
28622 msgstr ""
28623
28624 #. type: textblock
28625 #: ../fish/guestfish-commands.pod:14
28626 msgid ""
28627 "To create a sparse file, use L</sparse> instead.  To create a prepared disk "
28628 "image, see L</PREPARED DISK IMAGES>."
28629 msgstr ""
28630
28631 #. type: =head2
28632 #: ../fish/guestfish-commands.pod:17
28633 msgid "copy-in"
28634 msgstr ""
28635
28636 #. type: verbatim
28637 #: ../fish/guestfish-commands.pod:19
28638 #, no-wrap
28639 msgid ""
28640 " copy-in local [local ...] /remotedir\n"
28641 "\n"
28642 msgstr ""
28643
28644 #. type: textblock
28645 #: ../fish/guestfish-commands.pod:21
28646 msgid ""
28647 "C<copy-in> copies local files or directories recursively into the disk "
28648 "image, placing them in the directory called C</remotedir> (which must "
28649 "exist).  This guestfish meta-command turns into a sequence of L</tar-in> and "
28650 "other commands as necessary."
28651 msgstr ""
28652
28653 #. type: textblock
28654 #: ../fish/guestfish-commands.pod:26
28655 msgid ""
28656 "Multiple local files and directories can be specified, but the last "
28657 "parameter must always be a remote directory.  Wildcards cannot be used."
28658 msgstr ""
28659
28660 #. type: =head2
28661 #: ../fish/guestfish-commands.pod:30
28662 msgid "copy-out"
28663 msgstr ""
28664
28665 #. type: verbatim
28666 #: ../fish/guestfish-commands.pod:32
28667 #, no-wrap
28668 msgid ""
28669 " copy-out remote [remote ...] localdir\n"
28670 "\n"
28671 msgstr ""
28672
28673 #. type: textblock
28674 #: ../fish/guestfish-commands.pod:34
28675 msgid ""
28676 "C<copy-out> copies remote files or directories recursively out of the disk "
28677 "image, placing them on the host disk in a local directory called C<localdir> "
28678 "(which must exist).  This guestfish meta-command turns into a sequence of L</"
28679 "download>, L</tar-out> and other commands as necessary."
28680 msgstr ""
28681
28682 #. type: textblock
28683 #: ../fish/guestfish-commands.pod:40
28684 msgid ""
28685 "Multiple remote files and directories can be specified, but the last "
28686 "parameter must always be a local directory.  To download to the current "
28687 "directory, use C<.> as in:"
28688 msgstr ""
28689
28690 #. type: verbatim
28691 #: ../fish/guestfish-commands.pod:44
28692 #, no-wrap
28693 msgid ""
28694 " copy-out /home .\n"
28695 "\n"
28696 msgstr ""
28697
28698 #. type: textblock
28699 #: ../fish/guestfish-commands.pod:46
28700 msgid ""
28701 "Wildcards cannot be used in the ordinary command, but you can use them with "
28702 "the help of L</glob> like this:"
28703 msgstr ""
28704
28705 #. type: verbatim
28706 #: ../fish/guestfish-commands.pod:49
28707 #, no-wrap
28708 msgid ""
28709 " glob copy-out /home/* .\n"
28710 "\n"
28711 msgstr ""
28712
28713 #. type: =head2
28714 #: ../fish/guestfish-commands.pod:51
28715 msgid "display"
28716 msgstr ""
28717
28718 #. type: verbatim
28719 #: ../fish/guestfish-commands.pod:53
28720 #, no-wrap
28721 msgid ""
28722 " display filename\n"
28723 "\n"
28724 msgstr ""
28725
28726 #. type: textblock
28727 #: ../fish/guestfish-commands.pod:55
28728 msgid ""
28729 "Use C<display> (a graphical display program) to display an image file.  It "
28730 "downloads the file, and runs C<display> on it."
28731 msgstr ""
28732
28733 #. type: textblock
28734 #: ../fish/guestfish-commands.pod:58
28735 msgid ""
28736 "To use an alternative program, set the C<GUESTFISH_DISPLAY_IMAGE> "
28737 "environment variable.  For example to use the GNOME display program:"
28738 msgstr ""
28739
28740 #. type: verbatim
28741 #: ../fish/guestfish-commands.pod:61
28742 #, no-wrap
28743 msgid ""
28744 " export GUESTFISH_DISPLAY_IMAGE=eog\n"
28745 "\n"
28746 msgstr ""
28747
28748 #. type: textblock
28749 #: ../fish/guestfish-commands.pod:63
28750 #, fuzzy
28751 #| msgid "See L<guestfish(1)>."
28752 msgid "See also L<display(1)>."
28753 msgstr "Див. L<guestfish(1)>."
28754
28755 #. type: =head2
28756 #: ../fish/guestfish-commands.pod:65
28757 msgid "echo"
28758 msgstr ""
28759
28760 #. type: verbatim
28761 #: ../fish/guestfish-commands.pod:67
28762 #, no-wrap
28763 msgid ""
28764 " echo [params ...]\n"
28765 "\n"
28766 msgstr ""
28767
28768 #. type: textblock
28769 #: ../fish/guestfish-commands.pod:69
28770 msgid "This echos the parameters to the terminal."
28771 msgstr ""
28772
28773 #. type: =head2
28774 #: ../fish/guestfish-commands.pod:71
28775 msgid "edit"
28776 msgstr ""
28777
28778 #. type: =head2
28779 #: ../fish/guestfish-commands.pod:73
28780 msgid "vi"
28781 msgstr ""
28782
28783 #. type: =head2
28784 #: ../fish/guestfish-commands.pod:75
28785 msgid "emacs"
28786 msgstr ""
28787
28788 #. type: verbatim
28789 #: ../fish/guestfish-commands.pod:77
28790 #, no-wrap
28791 msgid ""
28792 " edit filename\n"
28793 "\n"
28794 msgstr ""
28795
28796 #. type: textblock
28797 #: ../fish/guestfish-commands.pod:79
28798 msgid ""
28799 "This is used to edit a file.  It downloads the file, edits it locally using "
28800 "your editor, then uploads the result."
28801 msgstr ""
28802
28803 #. type: textblock
28804 #: ../fish/guestfish-commands.pod:82
28805 msgid ""
28806 "The editor is C<$EDITOR>.  However if you use the alternate commands C<vi> "
28807 "or C<emacs> you will get those corresponding editors."
28808 msgstr ""
28809
28810 #. type: =head2
28811 #: ../fish/guestfish-commands.pod:86
28812 msgid "glob"
28813 msgstr ""
28814
28815 #. type: verbatim
28816 #: ../fish/guestfish-commands.pod:88
28817 #, no-wrap
28818 msgid ""
28819 " glob command args...\n"
28820 "\n"
28821 msgstr ""
28822
28823 #. type: textblock
28824 #: ../fish/guestfish-commands.pod:90
28825 msgid ""
28826 "Expand wildcards in any paths in the args list, and run C<command> "
28827 "repeatedly on each matching path."
28828 msgstr ""
28829
28830 #. type: textblock
28831 #: ../fish/guestfish-commands.pod:93
28832 msgid "See L</WILDCARDS AND GLOBBING>."
28833 msgstr ""
28834
28835 #. type: =head2
28836 #: ../fish/guestfish-commands.pod:95
28837 msgid "hexedit"
28838 msgstr ""
28839
28840 #. type: verbatim
28841 #: ../fish/guestfish-commands.pod:97
28842 #, no-wrap
28843 msgid ""
28844 " hexedit <filename|device>\n"
28845 " hexedit <filename|device> <max>\n"
28846 " hexedit <filename|device> <start> <max>\n"
28847 "\n"
28848 msgstr ""
28849
28850 #. type: textblock
28851 #: ../fish/guestfish-commands.pod:101
28852 msgid ""
28853 "Use hexedit (a hex editor) to edit all or part of a binary file or block "
28854 "device."
28855 msgstr ""
28856
28857 #. type: textblock
28858 #: ../fish/guestfish-commands.pod:104
28859 msgid ""
28860 "This command works by downloading potentially the whole file or device, "
28861 "editing it locally, then uploading it.  If the file or device is large, you "
28862 "have to specify which part you wish to edit by using C<max> and/or C<start> "
28863 "C<max> parameters.  C<start> and C<max> are specified in bytes, with the "
28864 "usual modifiers allowed such as C<1M> (1 megabyte)."
28865 msgstr ""
28866
28867 #. type: textblock
28868 #: ../fish/guestfish-commands.pod:111
28869 msgid "For example to edit the first few sectors of a disk you might do:"
28870 msgstr ""
28871
28872 #. type: verbatim
28873 #: ../fish/guestfish-commands.pod:114
28874 #, no-wrap
28875 msgid ""
28876 " hexedit /dev/sda 1M\n"
28877 "\n"
28878 msgstr ""
28879
28880 #. type: textblock
28881 #: ../fish/guestfish-commands.pod:116
28882 msgid ""
28883 "which would allow you to edit anywhere within the first megabyte of the disk."
28884 msgstr ""
28885
28886 #. type: textblock
28887 #: ../fish/guestfish-commands.pod:119
28888 msgid "To edit the superblock of an ext2 filesystem on C</dev/sda1>, do:"
28889 msgstr ""
28890
28891 #. type: verbatim
28892 #: ../fish/guestfish-commands.pod:121
28893 #, no-wrap
28894 msgid ""
28895 " hexedit /dev/sda1 0x400 0x400\n"
28896 "\n"
28897 msgstr ""
28898
28899 #. type: textblock
28900 #: ../fish/guestfish-commands.pod:123
28901 msgid "(assuming the superblock is in the standard location)."
28902 msgstr ""
28903
28904 #. type: textblock
28905 #: ../fish/guestfish-commands.pod:125
28906 msgid ""
28907 "This command requires the external L<hexedit(1)> program.  You can specify "
28908 "another program to use by setting the C<HEXEDITOR> environment variable."
28909 msgstr ""
28910
28911 #. type: textblock
28912 #: ../fish/guestfish-commands.pod:129
28913 msgid "See also L</hexdump>."
28914 msgstr ""
28915
28916 #. type: =head2
28917 #: ../fish/guestfish-commands.pod:131
28918 msgid "lcd"
28919 msgstr ""
28920
28921 #. type: verbatim
28922 #: ../fish/guestfish-commands.pod:133
28923 #, no-wrap
28924 msgid ""
28925 " lcd directory\n"
28926 "\n"
28927 msgstr ""
28928
28929 #. type: textblock
28930 #: ../fish/guestfish-commands.pod:135
28931 msgid ""
28932 "Change the local directory, ie. the current directory of guestfish itself."
28933 msgstr ""
28934
28935 #. type: textblock
28936 #: ../fish/guestfish-commands.pod:138
28937 msgid "Note that C<!cd> won't do what you might expect."
28938 msgstr ""
28939
28940 #. type: =head2
28941 #: ../fish/guestfish-commands.pod:140
28942 msgid "man"
28943 msgstr ""
28944
28945 #. type: =head2
28946 #: ../fish/guestfish-commands.pod:142
28947 msgid "manual"
28948 msgstr ""
28949
28950 #. type: verbatim
28951 #: ../fish/guestfish-commands.pod:144
28952 #, no-wrap
28953 msgid ""
28954 "  man\n"
28955 "\n"
28956 msgstr ""
28957
28958 #. type: textblock
28959 #: ../fish/guestfish-commands.pod:146
28960 msgid "Opens the manual page for guestfish."
28961 msgstr ""
28962
28963 #. type: =head2
28964 #: ../fish/guestfish-commands.pod:148
28965 msgid "more"
28966 msgstr ""
28967
28968 #. type: =head2
28969 #: ../fish/guestfish-commands.pod:150
28970 msgid "less"
28971 msgstr ""
28972
28973 #. type: verbatim
28974 #: ../fish/guestfish-commands.pod:152
28975 #, no-wrap
28976 msgid ""
28977 " more filename\n"
28978 "\n"
28979 msgstr ""
28980
28981 #. type: verbatim
28982 #: ../fish/guestfish-commands.pod:154
28983 #, no-wrap
28984 msgid ""
28985 " less filename\n"
28986 "\n"
28987 msgstr ""
28988
28989 #. type: textblock
28990 #: ../fish/guestfish-commands.pod:156
28991 msgid "This is used to view a file."
28992 msgstr ""
28993
28994 #. type: textblock
28995 #: ../fish/guestfish-commands.pod:158
28996 msgid ""
28997 "The default viewer is C<$PAGER>.  However if you use the alternate command "
28998 "C<less> you will get the C<less> command specifically."
28999 msgstr ""
29000
29001 #. type: =head2
29002 #: ../fish/guestfish-commands.pod:161
29003 msgid "reopen"
29004 msgstr ""
29005
29006 #. type: verbatim
29007 #: ../fish/guestfish-commands.pod:163
29008 #, no-wrap
29009 msgid ""
29010 "  reopen\n"
29011 "\n"
29012 msgstr ""
29013
29014 #. type: textblock
29015 #: ../fish/guestfish-commands.pod:165
29016 msgid ""
29017 "Close and reopen the libguestfs handle.  It is not necessary to use this "
29018 "normally, because the handle is closed properly when guestfish exits.  "
29019 "However this is occasionally useful for testing."
29020 msgstr ""
29021
29022 #. type: =head2
29023 #: ../fish/guestfish-commands.pod:169
29024 msgid "sparse"
29025 msgstr ""
29026
29027 #. type: verbatim
29028 #: ../fish/guestfish-commands.pod:171
29029 #, no-wrap
29030 msgid ""
29031 " sparse filename size\n"
29032 "\n"
29033 msgstr ""
29034
29035 #. type: textblock
29036 #: ../fish/guestfish-commands.pod:173
29037 msgid ""
29038 "This creates an empty sparse file of the given size, and then adds so it can "
29039 "be further examined."
29040 msgstr ""
29041
29042 #. type: textblock
29043 #: ../fish/guestfish-commands.pod:176
29044 msgid ""
29045 "In all respects it works the same as the L</alloc> command, except that the "
29046 "image file is allocated sparsely, which means that disk blocks are not "
29047 "assigned to the file until they are needed.  Sparse disk files only use "
29048 "space when written to, but they are slower and there is a danger you could "
29049 "run out of real disk space during a write operation."
29050 msgstr ""
29051
29052 #. type: =head2
29053 #: ../fish/guestfish-commands.pod:186
29054 msgid "supported"
29055 msgstr ""
29056
29057 #. type: verbatim
29058 #: ../fish/guestfish-commands.pod:188
29059 #, no-wrap
29060 msgid ""
29061 " supported\n"
29062 "\n"
29063 msgstr ""
29064
29065 #. type: textblock
29066 #: ../fish/guestfish-commands.pod:190
29067 msgid ""
29068 "This command returns a list of the optional groups known to the daemon, and "
29069 "indicates which ones are supported by this build of the libguestfs appliance."
29070 msgstr ""
29071
29072 #. type: textblock
29073 #: ../fish/guestfish-commands.pod:194
29074 msgid "See also L<guestfs(3)/AVAILABILITY>."
29075 msgstr ""
29076
29077 #. type: =head2
29078 #: ../fish/guestfish-commands.pod:196
29079 msgid "time"
29080 msgstr ""
29081
29082 #. type: verbatim
29083 #: ../fish/guestfish-commands.pod:198
29084 #, no-wrap
29085 msgid ""
29086 " time command args...\n"
29087 "\n"
29088 msgstr ""
29089
29090 #. type: textblock
29091 #: ../fish/guestfish-commands.pod:200
29092 msgid ""
29093 "Run the command as usual, but print the elapsed time afterwards.  This can "
29094 "be useful for benchmarking operations."
29095 msgstr ""
29096
29097 #. type: textblock
29098 #: ../test-tool/libguestfs-test-tool.pod:5
29099 msgid "libguestfs-test-tool - End user tests for libguestfs"
29100 msgstr ""
29101
29102 #. type: verbatim
29103 #: ../test-tool/libguestfs-test-tool.pod:9
29104 #, no-wrap
29105 msgid ""
29106 " libguestfs-test-tool [--options]\n"
29107 "\n"
29108 msgstr ""
29109
29110 #. type: textblock
29111 #: ../test-tool/libguestfs-test-tool.pod:13
29112 msgid ""
29113 "libguestfs-test-tool is a test program shipped with libguestfs to end users "
29114 "and developers, to allow them to check basic libguestfs functionality is "
29115 "working.  This is needed because libguestfs occasionally breaks for reasons "
29116 "beyond our control: usually because of changes in the underlying qemu or "
29117 "kernel packages, or the host environment."
29118 msgstr ""
29119
29120 #. type: textblock
29121 #: ../test-tool/libguestfs-test-tool.pod:20
29122 msgid "If you suspect a problem in libguestfs, then just run:"
29123 msgstr ""
29124
29125 #. type: verbatim
29126 #: ../test-tool/libguestfs-test-tool.pod:22
29127 #, no-wrap
29128 msgid ""
29129 " libguestfs-test-tool\n"
29130 "\n"
29131 msgstr ""
29132
29133 #. type: textblock
29134 #: ../test-tool/libguestfs-test-tool.pod:24
29135 msgid "It will print lots of diagnostic messages."
29136 msgstr ""
29137
29138 #. type: textblock
29139 #: ../test-tool/libguestfs-test-tool.pod:26
29140 msgid "If it runs to completion successfully, you will see this near the end:"
29141 msgstr ""
29142
29143 #. type: verbatim
29144 #: ../test-tool/libguestfs-test-tool.pod:28
29145 #, no-wrap
29146 msgid ""
29147 " ===== TEST FINISHED OK =====\n"
29148 "\n"
29149 msgstr ""
29150
29151 #. type: textblock
29152 #: ../test-tool/libguestfs-test-tool.pod:30
29153 msgid "and the test tool will exit with code 0."
29154 msgstr ""
29155
29156 #. type: textblock
29157 #: ../test-tool/libguestfs-test-tool.pod:32
29158 msgid ""
29159 "If it fails (and/or exits with non-zero error code), please paste the "
29160 "B<complete, unedited> output of the test tool into a bug report.  More "
29161 "information about reporting bugs can be found on the L<http://libguestfs.org/"
29162 "> website."
29163 msgstr ""
29164
29165 #. type: =item
29166 #: ../test-tool/libguestfs-test-tool.pod:41
29167 msgid "I<--help>"
29168 msgstr ""
29169
29170 #. type: textblock
29171 #: ../test-tool/libguestfs-test-tool.pod:43
29172 msgid "Display short usage information and exit."
29173 msgstr ""
29174
29175 #. type: =item
29176 #: ../test-tool/libguestfs-test-tool.pod:45
29177 msgid "I<--qemu qemu_binary>"
29178 msgstr ""
29179
29180 #. type: textblock
29181 #: ../test-tool/libguestfs-test-tool.pod:47
29182 msgid ""
29183 "If you have downloaded another qemu binary, point this option at the full "
29184 "path of the binary to try it."
29185 msgstr ""
29186
29187 #. type: =item
29188 #: ../test-tool/libguestfs-test-tool.pod:50
29189 msgid "I<--qemudir qemu_source_dir>"
29190 msgstr ""
29191
29192 #. type: textblock
29193 #: ../test-tool/libguestfs-test-tool.pod:52
29194 msgid ""
29195 "If you have compiled qemu from source, point this option at the source "
29196 "directory to try it."
29197 msgstr ""
29198
29199 #. type: =item
29200 #: ../test-tool/libguestfs-test-tool.pod:55
29201 msgid "I<--timeout N>"
29202 msgstr ""
29203
29204 #. type: textblock
29205 #: ../test-tool/libguestfs-test-tool.pod:57
29206 msgid ""
29207 "Set the launch timeout to C<N> seconds.  The default is 120 seconds which "
29208 "does not usually need to be adjusted unless your machine is very slow."
29209 msgstr ""
29210
29211 #. type: =head1
29212 #: ../test-tool/libguestfs-test-tool.pod:63
29213 msgid "TRYING OUT A DIFFERENT VERSION OF QEMU"
29214 msgstr ""
29215
29216 #. type: textblock
29217 #: ../test-tool/libguestfs-test-tool.pod:65
29218 msgid ""
29219 "If you have compiled another version of qemu from source and would like to "
29220 "try that, then you can use the I<--qemudir> option to point to the qemu "
29221 "source directory."
29222 msgstr ""
29223
29224 #. type: textblock
29225 #: ../test-tool/libguestfs-test-tool.pod:69
29226 msgid ""
29227 "If you have downloaded a qemu binary from somewhere, use the I<--qemu> "
29228 "option to point to the binary."
29229 msgstr ""
29230
29231 #. type: textblock
29232 #: ../test-tool/libguestfs-test-tool.pod:72
29233 msgid ""
29234 "When using an alternate qemu with libguestfs, usually you would need to "
29235 "write a qemu wrapper script (see section I<QEMU WRAPPERS> in L<guestfs(3)"
29236 ">).  libguestfs-test-tool writes a temporary qemu wrapper script when you "
29237 "use either of the I<--qemudir> or I<--qemu> options."
29238 msgstr ""
29239
29240 #. type: textblock
29241 #: ../test-tool/libguestfs-test-tool.pod:79
29242 msgid ""
29243 "libguestfs-test-tool returns I<0> if the tests completed without error, or "
29244 "I<1> if there was an error."
29245 msgstr ""
29246
29247 #. type: textblock
29248 #: ../test-tool/libguestfs-test-tool.pod:84
29249 msgid ""
29250 "For the full list of environment variables which may affect libguestfs, "
29251 "please see the L<guestfs(3)> manual page."
29252 msgstr ""
29253
29254 #. type: textblock
29255 #: ../test-tool/libguestfs-test-tool.pod:89
29256 msgid "L<guestfs(3)>, L<http://libguestfs.org/>, L<http://qemu.org/>."
29257 msgstr ""
29258
29259 #. type: textblock
29260 #: ../fuse/guestmount.pod:5
29261 msgid ""
29262 "guestmount - Mount a guest filesystem on the host using FUSE and libguestfs"
29263 msgstr ""
29264
29265 #. type: verbatim
29266 #: ../fuse/guestmount.pod:9
29267 #, no-wrap
29268 msgid ""
29269 " guestmount [--options] -a disk.img -m device [--ro] mountpoint\n"
29270 "\n"
29271 msgstr ""
29272
29273 #. type: verbatim
29274 #: ../fuse/guestmount.pod:11
29275 #, no-wrap
29276 msgid ""
29277 " guestmount [--options] -a disk.img -i [--ro] mountpoint\n"
29278 "\n"
29279 msgstr ""
29280
29281 #. type: verbatim
29282 #: ../fuse/guestmount.pod:13
29283 #, no-wrap
29284 msgid ""
29285 " guestmount [--options] -d Guest -i [--ro] mountpoint\n"
29286 "\n"
29287 msgstr ""
29288
29289 #. type: textblock
29290 #: ../fuse/guestmount.pod:17
29291 msgid ""
29292 "You must I<not> use C<guestmount> in read-write mode on live virtual "
29293 "machines.  If you do this, you risk disk corruption in the VM."
29294 msgstr ""
29295
29296 #. type: textblock
29297 #: ../fuse/guestmount.pod:22
29298 msgid ""
29299 "The guestmount program can be used to mount virtual machine filesystems and "
29300 "other disk images on the host.  It uses libguestfs for access to the guest "
29301 "filesystem, and FUSE (the \"filesystem in userspace\") to make it appear as "
29302 "a mountable device."
29303 msgstr ""
29304
29305 #. type: textblock
29306 #: ../fuse/guestmount.pod:27
29307 msgid ""
29308 "Along with other options, you have to give at least one device (I<-a> "
29309 "option) or libvirt domain (I<-d> option), and at least one mountpoint (I<-m> "
29310 "option) or use the I<-i> inspection option.  How this works is better "
29311 "explained in the L<guestfish(1)> manual page, or by looking at the examples "
29312 "below."
29313 msgstr ""
29314
29315 #. type: textblock
29316 #: ../fuse/guestmount.pod:33
29317 msgid ""
29318 "FUSE lets you mount filesystems as non-root.  The mountpoint must be owned "
29319 "by you, and the filesystem will not be visible to any other users unless you "
29320 "make certain global configuration changes to C</etc/fuse.conf>.  To unmount "
29321 "the filesystem, use the C<fusermount -u> command."
29322 msgstr ""
29323
29324 #. type: textblock
29325 #: ../fuse/guestmount.pod:41
29326 msgid ""
29327 "For a typical Windows guest which has its main filesystem on the first "
29328 "partition:"
29329 msgstr ""
29330
29331 #. type: verbatim
29332 #: ../fuse/guestmount.pod:44
29333 #, no-wrap
29334 msgid ""
29335 " guestmount -a windows.img -m /dev/sda1 --ro /mnt\n"
29336 "\n"
29337 msgstr ""
29338
29339 #. type: textblock
29340 #: ../fuse/guestmount.pod:46
29341 msgid ""
29342 "For a typical Linux guest which has a /boot filesystem on the first "
29343 "partition, and the root filesystem on a logical volume:"
29344 msgstr ""
29345
29346 #. type: verbatim
29347 #: ../fuse/guestmount.pod:49
29348 #, no-wrap
29349 msgid ""
29350 " guestmount -a linux.img -m /dev/VG/LV -m /dev/sda1:/boot --ro /mnt\n"
29351 "\n"
29352 msgstr ""
29353
29354 #. type: textblock
29355 #: ../fuse/guestmount.pod:51
29356 msgid "To get libguestfs to detect guest mountpoints for you:"
29357 msgstr ""
29358
29359 #. type: verbatim
29360 #: ../fuse/guestmount.pod:53
29361 #, no-wrap
29362 msgid ""
29363 " guestmount -a guest.img -i --ro /mnt\n"
29364 "\n"
29365 msgstr ""
29366
29367 #. type: textblock
29368 #: ../fuse/guestmount.pod:55
29369 msgid "For a libvirt guest called \"Guest\" you could do:"
29370 msgstr ""
29371
29372 #. type: verbatim
29373 #: ../fuse/guestmount.pod:57
29374 #, no-wrap
29375 msgid ""
29376 " guestmount -d Guest -i --ro /mnt\n"
29377 "\n"
29378 msgstr ""
29379
29380 #. type: textblock
29381 #: ../fuse/guestmount.pod:59
29382 msgid ""
29383 "If you don't know what filesystems are contained in a guest or disk image, "
29384 "use L<virt-filesystems(1)> first:"
29385 msgstr ""
29386
29387 #. type: verbatim
29388 #: ../fuse/guestmount.pod:62
29389 #, no-wrap
29390 msgid ""
29391 " virt-filesystems MyGuest\n"
29392 "\n"
29393 msgstr ""
29394
29395 #. type: textblock
29396 #: ../fuse/guestmount.pod:64
29397 msgid ""
29398 "If you want to trace the libguestfs calls but without excessive debugging "
29399 "information, we recommend:"
29400 msgstr ""
29401
29402 #. type: verbatim
29403 #: ../fuse/guestmount.pod:67
29404 #, no-wrap
29405 msgid ""
29406 " guestmount [...] --trace /mnt\n"
29407 "\n"
29408 msgstr ""
29409
29410 #. type: textblock
29411 #: ../fuse/guestmount.pod:69
29412 msgid "If you want to debug the program, we recommend:"
29413 msgstr ""
29414
29415 #. type: verbatim
29416 #: ../fuse/guestmount.pod:71
29417 #, no-wrap
29418 msgid ""
29419 " guestmount [...] --trace --verbose /mnt\n"
29420 "\n"
29421 msgstr ""
29422
29423 #. type: =head1
29424 #: ../fuse/guestmount.pod:73
29425 msgid "NOTES"
29426 msgstr ""
29427
29428 #. type: =head2
29429 #: ../fuse/guestmount.pod:75
29430 msgid "Other users cannot see the filesystem by default"
29431 msgstr ""
29432
29433 #. type: textblock
29434 #: ../fuse/guestmount.pod:77
29435 msgid ""
29436 "If you mount a filesystem as one user (eg. root), then other users will not "
29437 "be able to see it by default.  The fix is to add the FUSE C<allow_other> "
29438 "option when mounting:"
29439 msgstr ""
29440
29441 #. type: verbatim
29442 #: ../fuse/guestmount.pod:81
29443 #, no-wrap
29444 msgid ""
29445 " sudo guestmount [...] -o allow_other /mnt\n"
29446 "\n"
29447 msgstr ""
29448
29449 #. type: =item
29450 #: ../fuse/guestmount.pod:87
29451 msgid "B<-a image> | B<--add image>"
29452 msgstr ""
29453
29454 #. type: textblock
29455 #: ../fuse/guestmount.pod:89
29456 msgid "Add a block device or virtual machine image."
29457 msgstr ""
29458
29459 #. type: =item
29460 #: ../fuse/guestmount.pod:94
29461 msgid "B<-c URI> | B<--connect URI>"
29462 msgstr ""
29463
29464 #. type: =item
29465 #: ../fuse/guestmount.pod:100
29466 msgid "B<-d libvirt-domain> | B<--domain libvirt-domain>"
29467 msgstr ""
29468
29469 #. type: =item
29470 #: ../fuse/guestmount.pod:108
29471 msgid "B<--dir-cache-timeout N>"
29472 msgstr ""
29473
29474 #. type: textblock
29475 #: ../fuse/guestmount.pod:110
29476 msgid ""
29477 "Set the readdir cache timeout to I<N> seconds, the default being 60 "
29478 "seconds.  The readdir cache [actually, there are several semi-independent "
29479 "caches] is populated after a readdir(2) call with the stat and extended "
29480 "attributes of the files in the directory, in anticipation that they will be "
29481 "requested soon after."
29482 msgstr ""
29483
29484 #. type: textblock
29485 #: ../fuse/guestmount.pod:116
29486 msgid ""
29487 "There is also a different attribute cache implemented by FUSE (see the FUSE "
29488 "option I<-o attr_timeout>), but the FUSE cache does not anticipate future "
29489 "requests, only cache existing ones."
29490 msgstr ""
29491
29492 #. type: =item
29493 #: ../fuse/guestmount.pod:127
29494 msgid "B<--format=raw|qcow2|..> | B<--format>"
29495 msgstr ""
29496
29497 #. type: textblock
29498 #: ../fuse/guestmount.pod:134
29499 msgid ""
29500 "If you have untrusted raw-format guest disk images, you should use this "
29501 "option to specify the disk format.  This avoids a possible security problem "
29502 "with malicious guests (CVE-2010-3851).  See also L<guestfs(3)/"
29503 "guestfs_add_drive_opts>."
29504 msgstr ""
29505
29506 #. type: =item
29507 #: ../fuse/guestmount.pod:139
29508 msgid "B<--fuse-help>"
29509 msgstr ""
29510
29511 #. type: textblock
29512 #: ../fuse/guestmount.pod:141
29513 msgid "Display help on special FUSE options (see I<-o> below)."
29514 msgstr ""
29515
29516 #. type: textblock
29517 #: ../fuse/guestmount.pod:145
29518 msgid "Display brief help and exit."
29519 msgstr ""
29520
29521 #. type: =item
29522 #: ../fuse/guestmount.pod:147
29523 msgid "B<-i> | B<--inspector>"
29524 msgstr ""
29525
29526 #. type: textblock
29527 #: ../fuse/guestmount.pod:167
29528 msgid ""
29529 "Mount the named partition or logical volume on the given mountpoint B<in the "
29530 "guest> (this has nothing to do with mountpoints in the host)."
29531 msgstr ""
29532
29533 #. type: textblock
29534 #: ../fuse/guestmount.pod:170
29535 msgid ""
29536 "If the mountpoint is omitted, it defaults to C</>.  You have to mount "
29537 "something on C</>."
29538 msgstr ""
29539
29540 #. type: =item
29541 #: ../fuse/guestmount.pod:183
29542 msgid "B<-n> | B<--no-sync>"
29543 msgstr ""
29544
29545 #. type: textblock
29546 #: ../fuse/guestmount.pod:185
29547 msgid ""
29548 "By default, we attempt to sync the guest disk when the FUSE mountpoint is "
29549 "unmounted.  If you specify this option, then we don't attempt to sync the "
29550 "disk.  See the discussion of autosync in the L<guestfs(3)> manpage."
29551 msgstr ""
29552
29553 #. type: =item
29554 #: ../fuse/guestmount.pod:190
29555 msgid "B<-o option> | B<--option option>"
29556 msgstr ""
29557
29558 #. type: textblock
29559 #: ../fuse/guestmount.pod:192
29560 msgid "Pass extra options to FUSE."
29561 msgstr ""
29562
29563 #. type: textblock
29564 #: ../fuse/guestmount.pod:194
29565 msgid ""
29566 "To get a list of all the extra options supported by FUSE, use the command "
29567 "below.  Note that only the FUSE I<-o> options can be passed, and only some "
29568 "of them are a good idea."
29569 msgstr ""
29570
29571 #. type: verbatim
29572 #: ../fuse/guestmount.pod:198
29573 #, no-wrap
29574 msgid ""
29575 " guestmount --fuse-help\n"
29576 "\n"
29577 msgstr ""
29578
29579 #. type: textblock
29580 #: ../fuse/guestmount.pod:200
29581 msgid "Some potentially useful FUSE options:"
29582 msgstr ""
29583
29584 #. type: =item
29585 #: ../fuse/guestmount.pod:204
29586 msgid "B<-o allow_other>"
29587 msgstr ""
29588
29589 #. type: textblock
29590 #: ../fuse/guestmount.pod:206
29591 msgid "Allow other users to see the filesystem."
29592 msgstr ""
29593
29594 #. type: =item
29595 #: ../fuse/guestmount.pod:208
29596 msgid "B<-o attr_timeout=N>"
29597 msgstr ""
29598
29599 #. type: textblock
29600 #: ../fuse/guestmount.pod:210
29601 msgid "Enable attribute caching by FUSE, and set the timeout to I<N> seconds."
29602 msgstr ""
29603
29604 #. type: =item
29605 #: ../fuse/guestmount.pod:212
29606 msgid "B<-o kernel_cache>"
29607 msgstr ""
29608
29609 #. type: textblock
29610 #: ../fuse/guestmount.pod:214
29611 msgid ""
29612 "Allow the kernel to cache files (reduces the number of reads that have to go "
29613 "through the L<guestfs(3)> API).  This is generally a good idea if you can "
29614 "afford the extra memory usage."
29615 msgstr ""
29616
29617 #. type: =item
29618 #: ../fuse/guestmount.pod:218
29619 msgid "B<-o uid=N> B<-o gid=N>"
29620 msgstr ""
29621
29622 #. type: textblock
29623 #: ../fuse/guestmount.pod:220
29624 msgid ""
29625 "Use these options to map all UIDs and GIDs inside the guest filesystem to "
29626 "the chosen values."
29627 msgstr ""
29628
29629 #. type: =item
29630 #: ../fuse/guestmount.pod:225
29631 msgid "B<-r> | B<--ro>"
29632 msgstr ""
29633
29634 #. type: textblock
29635 #: ../fuse/guestmount.pod:227
29636 msgid ""
29637 "Add devices and mount everything read-only.  Also disallow writes and make "
29638 "the disk appear read-only to FUSE."
29639 msgstr ""
29640
29641 #. type: textblock
29642 #: ../fuse/guestmount.pod:230
29643 msgid ""
29644 "This is highly recommended if you are not going to edit the guest disk.  If "
29645 "the guest is running and this option is I<not> supplied, then there is a "
29646 "strong risk of disk corruption in the guest.  We try to prevent this from "
29647 "happening, but it is not always possible."
29648 msgstr ""
29649
29650 #. type: textblock
29651 #: ../fuse/guestmount.pod:235
29652 msgid "See also L<guestfish(1)/OPENING DISKS FOR READ AND WRITE>."
29653 msgstr ""
29654
29655 #. type: textblock
29656 #: ../fuse/guestmount.pod:239
29657 msgid "Enable SELinux support for the guest."
29658 msgstr ""
29659
29660 #. type: =item
29661 #: ../fuse/guestmount.pod:241
29662 msgid "B<-v> | B<--verbose>"
29663 msgstr ""
29664
29665 #. type: textblock
29666 #: ../fuse/guestmount.pod:243
29667 msgid "Enable verbose messages from underlying libguestfs."
29668 msgstr ""
29669
29670 #. type: =item
29671 #: ../fuse/guestmount.pod:245
29672 msgid "B<-V> | B<--version>"
29673 msgstr ""
29674
29675 #. type: textblock
29676 #: ../fuse/guestmount.pod:247
29677 msgid "Display the program version and exit."
29678 msgstr ""
29679
29680 #. type: =item
29681 #: ../fuse/guestmount.pod:249
29682 msgid "B<-w> | B<--rw>"
29683 msgstr ""
29684
29685 #. type: textblock
29686 #: ../fuse/guestmount.pod:254 ../fuse/guestmount.pod:275
29687 msgid "See L<guestfish(1)/OPENING DISKS FOR READ AND WRITE>."
29688 msgstr ""
29689
29690 #. type: =item
29691 #: ../fuse/guestmount.pod:256
29692 msgid "B<-x> | B<--trace>"
29693 msgstr ""
29694
29695 #. type: textblock
29696 #: ../fuse/guestmount.pod:258
29697 msgid "Trace libguestfs calls and entry into each FUSE function."
29698 msgstr ""
29699
29700 #. type: textblock
29701 #: ../fuse/guestmount.pod:260
29702 msgid "This also stops the daemon from forking into the background."
29703 msgstr ""
29704
29705 #. type: textblock
29706 #: ../fuse/guestmount.pod:281
29707 msgid ""
29708 "L<guestfish(1)>, L<virt-inspector(1)>, L<virt-cat(1)>, L<virt-edit(1)>, "
29709 "L<virt-tar(1)>, L<guestfs(3)>, L<http://libguestfs.org/>, L<http://fuse.sf."
29710 "net/>."
29711 msgstr ""
29712
29713 #. type: textblock
29714 #: ../fuse/guestmount.pod:296
29715 msgid "Copyright (C) 2009-2010 Red Hat Inc.  L<http://libguestfs.org/>"
29716 msgstr ""
29717
29718 #. type: textblock
29719 #: ../tools/virt-win-reg.pl:37
29720 msgid ""
29721 "virt-win-reg - Export and merge Windows Registry entries from a Windows guest"
29722 msgstr ""
29723
29724 #. type: verbatim
29725 #: ../tools/virt-win-reg.pl:41
29726 #, no-wrap
29727 msgid ""
29728 " virt-win-reg domname 'HKLM\\Path\\To\\Subkey'\n"
29729 "\n"
29730 msgstr ""
29731
29732 #. type: verbatim
29733 #: ../tools/virt-win-reg.pl:43
29734 #, no-wrap
29735 msgid ""
29736 " virt-win-reg domname 'HKLM\\Path\\To\\Subkey' name\n"
29737 "\n"
29738 msgstr ""
29739
29740 #. type: verbatim
29741 #: ../tools/virt-win-reg.pl:45
29742 #, no-wrap
29743 msgid ""
29744 " virt-win-reg domname 'HKLM\\Path\\To\\Subkey' @\n"
29745 "\n"
29746 msgstr ""
29747
29748 #. type: verbatim
29749 #: ../tools/virt-win-reg.pl:47
29750 #, no-wrap
29751 msgid ""
29752 " virt-win-reg --merge domname [input.reg ...]\n"
29753 "\n"
29754 msgstr ""
29755
29756 #. type: verbatim
29757 #: ../tools/virt-win-reg.pl:49
29758 #, no-wrap
29759 msgid ""
29760 " virt-win-reg [--options] disk.img ... # instead of domname\n"
29761 "\n"
29762 msgstr ""
29763
29764 #. type: textblock
29765 #: ../tools/virt-win-reg.pl:53
29766 msgid ""
29767 "You must I<not> use C<virt-win-reg> with the I<--merge> option on live "
29768 "virtual machines.  If you do this, you I<will> get irreversible disk "
29769 "corruption in the VM.  C<virt-win-reg> tries to stop you from doing this, "
29770 "but doesn't catch all cases."
29771 msgstr ""
29772
29773 #. type: textblock
29774 #: ../tools/virt-win-reg.pl:58
29775 msgid ""
29776 "Modifying the Windows Registry is an inherently risky operation.  The format "
29777 "is deliberately obscure and undocumented, and Registry changes can leave the "
29778 "system unbootable.  Therefore when using the I<--merge> option, make sure "
29779 "you have a reliable backup first."
29780 msgstr ""
29781
29782 #. type: textblock
29783 #: ../tools/virt-win-reg.pl:65
29784 msgid ""
29785 "This program can export and merge Windows Registry entries from a Windows "
29786 "guest."
29787 msgstr ""
29788
29789 #. type: textblock
29790 #: ../tools/virt-win-reg.pl:68
29791 msgid ""
29792 "The first parameter is the libvirt guest name or the raw disk image of a "
29793 "Windows guest."
29794 msgstr ""
29795
29796 #. type: textblock
29797 #: ../tools/virt-win-reg.pl:71
29798 msgid ""
29799 "If I<--merge> is I<not> specified, then the chosen registry key is displayed/"
29800 "exported (recursively).  For example:"
29801 msgstr ""
29802
29803 #. type: verbatim
29804 #: ../tools/virt-win-reg.pl:74
29805 #, no-wrap
29806 msgid ""
29807 " $ virt-win-reg Windows7 'HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft'\n"
29808 "\n"
29809 msgstr ""
29810
29811 #. type: textblock
29812 #: ../tools/virt-win-reg.pl:76
29813 msgid ""
29814 "You can also display single values from within registry keys, for example:"
29815 msgstr ""
29816
29817 #. type: verbatim
29818 #: ../tools/virt-win-reg.pl:79
29819 #, no-wrap
29820 msgid ""
29821 " $ cvkey='HKLM\\SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion'\n"
29822 " $ virt-win-reg Windows7 $cvkey ProductName\n"
29823 " Windows 7 Enterprise\n"
29824 "\n"
29825 msgstr ""
29826
29827 #. type: textblock
29828 #: ../tools/virt-win-reg.pl:83
29829 msgid ""
29830 "With I<--merge>, you can merge a textual regedit file into the Windows "
29831 "Registry:"
29832 msgstr ""
29833
29834 #. type: verbatim
29835 #: ../tools/virt-win-reg.pl:86
29836 #, no-wrap
29837 msgid ""
29838 " $ virt-win-reg --merge Windows7 changes.reg\n"
29839 "\n"
29840 msgstr ""
29841
29842 #. type: =head1
29843 #: ../tools/virt-win-reg.pl:88 ../tools/virt-tar.pl:45
29844 msgid "NOTE"
29845 msgstr ""
29846
29847 #. type: textblock
29848 #: ../tools/virt-win-reg.pl:90
29849 msgid ""
29850 "This program is only meant for simple access to the registry.  If you want "
29851 "to do complicated things with the registry, we suggest you download the "
29852 "Registry hive files from the guest using L<libguestfs(3)> or L<guestfish(1)> "
29853 "and access them locally, eg. using L<hivex(3)>, L<hivexsh(1)> or "
29854 "L<hivexregedit(1)>."
29855 msgstr ""
29856
29857 #. type: textblock
29858 #: ../tools/virt-win-reg.pl:106 ../tools/virt-list-filesystems.pl:63
29859 #: ../tools/virt-tar.pl:113 ../tools/virt-make-fs.pl:163
29860 #: ../tools/virt-list-partitions.pl:64
29861 msgid "Display brief help."
29862 msgstr ""
29863
29864 #. type: textblock
29865 #: ../tools/virt-win-reg.pl:114 ../tools/virt-list-filesystems.pl:71
29866 #: ../tools/virt-tar.pl:121 ../tools/virt-make-fs.pl:171
29867 #: ../tools/virt-list-partitions.pl:72
29868 msgid "Display version number and exit."
29869 msgstr ""
29870
29871 #. type: =item
29872 #: ../tools/virt-win-reg.pl:120 ../tools/virt-make-fs.pl:177
29873 msgid "B<--debug>"
29874 msgstr ""
29875
29876 #. type: textblock
29877 #: ../tools/virt-win-reg.pl:122
29878 msgid "Enable debugging messages."
29879 msgstr ""
29880
29881 #. type: =item
29882 #: ../tools/virt-win-reg.pl:128 ../tools/virt-list-filesystems.pl:77
29883 #: ../tools/virt-tar.pl:127 ../tools/virt-list-partitions.pl:78
29884 msgid "B<--connect URI> | B<-c URI>"
29885 msgstr ""
29886
29887 #. type: textblock
29888 #: ../tools/virt-win-reg.pl:130 ../tools/virt-list-filesystems.pl:79
29889 #: ../tools/virt-tar.pl:129 ../tools/virt-list-partitions.pl:80
29890 msgid ""
29891 "If using libvirt, connect to the given I<URI>.  If omitted, then we connect "
29892 "to the default libvirt hypervisor."
29893 msgstr ""
29894
29895 #. type: textblock
29896 #: ../tools/virt-win-reg.pl:133 ../tools/virt-list-filesystems.pl:82
29897 #: ../tools/virt-tar.pl:132 ../tools/virt-list-partitions.pl:83
29898 msgid ""
29899 "If you specify guest block devices directly, then libvirt is not used at all."
29900 msgstr ""
29901
29902 #. type: =item
29903 #: ../tools/virt-win-reg.pl:140 ../tools/virt-list-filesystems.pl:89
29904 #: ../tools/virt-tar.pl:139 ../tools/virt-list-partitions.pl:90
29905 msgid "B<--format> raw"
29906 msgstr ""
29907
29908 #. type: textblock
29909 #: ../tools/virt-win-reg.pl:142 ../tools/virt-list-filesystems.pl:91
29910 #: ../tools/virt-tar.pl:141 ../tools/virt-list-partitions.pl:92
29911 msgid ""
29912 "Specify the format of disk images given on the command line.  If this is "
29913 "omitted then the format is autodetected from the content of the disk image."
29914 msgstr ""
29915
29916 #. type: textblock
29917 #: ../tools/virt-win-reg.pl:146 ../tools/virt-list-filesystems.pl:95
29918 #: ../tools/virt-tar.pl:145 ../tools/virt-list-partitions.pl:96
29919 msgid ""
29920 "If disk images are requested from libvirt, then this program asks libvirt "
29921 "for this information.  In this case, the value of the format parameter is "
29922 "ignored."
29923 msgstr ""
29924
29925 #. type: textblock
29926 #: ../tools/virt-win-reg.pl:150 ../tools/virt-list-filesystems.pl:99
29927 #: ../tools/virt-tar.pl:149 ../tools/virt-list-partitions.pl:100
29928 msgid ""
29929 "If working with untrusted raw-format guest disk images, you should ensure "
29930 "the format is always specified."
29931 msgstr ""
29932
29933 #. type: =item
29934 #: ../tools/virt-win-reg.pl:157
29935 msgid "B<--merge>"
29936 msgstr ""
29937
29938 #. type: textblock
29939 #: ../tools/virt-win-reg.pl:159
29940 msgid ""
29941 "In merge mode, this merges a textual regedit file into the Windows Registry "
29942 "of the virtual machine.  If this flag is I<not> given then virt-win-reg "
29943 "displays or exports Registry entries instead."
29944 msgstr ""
29945
29946 #. type: textblock
29947 #: ../tools/virt-win-reg.pl:163
29948 msgid ""
29949 "Note that I<--merge> is I<unsafe> to use on live virtual machines, and will "
29950 "result in disk corruption.  However exporting (without this flag)  is always "
29951 "safe."
29952 msgstr ""
29953
29954 #. type: =item
29955 #: ../tools/virt-win-reg.pl:171
29956 msgid "B<--encoding> UTF-16LE|ASCII"
29957 msgstr ""
29958
29959 #. type: textblock
29960 #: ../tools/virt-win-reg.pl:173
29961 msgid ""
29962 "When merging (only), you may need to specify the encoding for strings to be "
29963 "used in the hive file.  This is explained in detail in L<Win::Hivex::Regedit"
29964 "(3)/ENCODING STRINGS>."
29965 msgstr ""
29966
29967 #. type: textblock
29968 #: ../tools/virt-win-reg.pl:177
29969 msgid ""
29970 "The default is to use UTF-16LE, which should work with recent versions of "
29971 "Windows."
29972 msgstr ""
29973
29974 #. type: =item
29975 #: ../tools/virt-win-reg.pl:184
29976 msgid "B<--unsafe-printable-strings>"
29977 msgstr ""
29978
29979 #. type: textblock
29980 #: ../tools/virt-win-reg.pl:186
29981 msgid ""
29982 "When exporting (only), assume strings are UTF-16LE and print them as strings "
29983 "instead of hex sequences.  Remove the final zero codepoint from strings if "
29984 "present."
29985 msgstr ""
29986
29987 #. type: textblock
29988 #: ../tools/virt-win-reg.pl:190
29989 msgid ""
29990 "This is unsafe and does not preserve the fidelity of strings in the original "
29991 "Registry for various reasons:"
29992 msgstr ""
29993
29994 #. type: textblock
29995 #: ../tools/virt-win-reg.pl:197
29996 msgid ""
29997 "Assumes the original encoding is UTF-16LE.  ASCII strings and strings in "
29998 "other encodings will be corrupted by this transformation."
29999 msgstr ""
30000
30001 #. type: textblock
30002 #: ../tools/virt-win-reg.pl:202
30003 msgid ""
30004 "Assumes that everything which has type 1 or 2 is really a string and that "
30005 "everything else is not a string, but the type field in real Registries is "
30006 "not reliable."
30007 msgstr ""
30008
30009 #. type: textblock
30010 #: ../tools/virt-win-reg.pl:208
30011 msgid ""
30012 "Loses information about whether a zero codepoint followed the string in the "
30013 "Registry or not."
30014 msgstr ""
30015
30016 #. type: textblock
30017 #: ../tools/virt-win-reg.pl:213
30018 msgid ""
30019 "This all happens because the Registry itself contains no information about "
30020 "how strings are encoded (see L<Win::Hivex::Regedit(3)/ENCODING STRINGS>)."
30021 msgstr ""
30022
30023 #. type: textblock
30024 #: ../tools/virt-win-reg.pl:217
30025 msgid ""
30026 "You should only use this option for quick hacking and debugging of the "
30027 "Registry contents, and I<never> use it if the output is going to be passed "
30028 "into another program or stored in another Registry."
30029 msgstr ""
30030
30031 #. type: =head1
30032 #: ../tools/virt-win-reg.pl:554
30033 msgid "SUPPORTED SYSTEMS"
30034 msgstr ""
30035
30036 #. type: textblock
30037 #: ../tools/virt-win-reg.pl:556
30038 msgid ""
30039 "The program currently supports Windows NT-derived guests starting with "
30040 "Windows XP through to at least Windows 7."
30041 msgstr ""
30042
30043 #. type: textblock
30044 #: ../tools/virt-win-reg.pl:559
30045 msgid "The following Registry keys are supported:"
30046 msgstr ""
30047
30048 #. type: =item
30049 #: ../tools/virt-win-reg.pl:563
30050 msgid "C<HKEY_LOCAL_MACHINE\\SAM>"
30051 msgstr ""
30052
30053 #. type: =item
30054 #: ../tools/virt-win-reg.pl:565
30055 msgid "C<HKEY_LOCAL_MACHINE\\SECURITY>"
30056 msgstr ""
30057
30058 #. type: =item
30059 #: ../tools/virt-win-reg.pl:567
30060 msgid "C<HKEY_LOCAL_MACHINE\\SOFTWARE>"
30061 msgstr ""
30062
30063 #. type: =item
30064 #: ../tools/virt-win-reg.pl:569
30065 msgid "C<HKEY_LOCAL_MACHINE\\SYSTEM>"
30066 msgstr ""
30067
30068 #. type: =item
30069 #: ../tools/virt-win-reg.pl:571
30070 msgid "C<HKEY_USERS\\.DEFAULT>"
30071 msgstr ""
30072
30073 #. type: =item
30074 #: ../tools/virt-win-reg.pl:573
30075 msgid "C<HKEY_USERS\\I<SID>>"
30076 msgstr ""
30077
30078 #. type: textblock
30079 #: ../tools/virt-win-reg.pl:575
30080 msgid "where I<SID> is a Windows User SID (eg. C<S-1-5-18>)."
30081 msgstr ""
30082
30083 #. type: =item
30084 #: ../tools/virt-win-reg.pl:577
30085 msgid "C<HKEY_USERS\\I<username>>"
30086 msgstr ""
30087
30088 #. type: textblock
30089 #: ../tools/virt-win-reg.pl:579
30090 msgid ""
30091 "where I<username> is a local user name (this is a libguestfs extension)."
30092 msgstr ""
30093
30094 #. type: textblock
30095 #: ../tools/virt-win-reg.pl:583
30096 msgid ""
30097 "You can use C<HKLM> as a shorthand for C<HKEY_LOCAL_MACHINE>, and C<HKU> for "
30098 "C<HKEY_USERS>."
30099 msgstr ""
30100
30101 #. type: textblock
30102 #: ../tools/virt-win-reg.pl:586
30103 msgid ""
30104 "The literal keys C<HKEY_USERS\\$SID> and C<HKEY_CURRENT_USER> are not "
30105 "supported (there is no \"current user\")."
30106 msgstr ""
30107
30108 #. type: =head1
30109 #: ../tools/virt-win-reg.pl:589
30110 msgid "ENCODING"
30111 msgstr ""
30112
30113 #. type: textblock
30114 #: ../tools/virt-win-reg.pl:591
30115 msgid ""
30116 "C<virt-win-reg> expects that regedit files have already been reencoded in "
30117 "the local encoding.  Usually on Linux hosts, this means UTF-8 with Unix-"
30118 "style line endings.  Since Windows regedit files are often in UTF-16LE with "
30119 "Windows-style line endings, you may need to reencode the whole file before "
30120 "or after processing."
30121 msgstr ""
30122
30123 #. type: textblock
30124 #: ../tools/virt-win-reg.pl:597
30125 msgid ""
30126 "To reencode a file from Windows format to Linux (before processing it with "
30127 "the I<--merge> option), you would do something like this:"
30128 msgstr ""
30129
30130 #. type: verbatim
30131 #: ../tools/virt-win-reg.pl:600
30132 #, no-wrap
30133 msgid ""
30134 " iconv -f utf-16le -t utf-8 < win.reg | dos2unix > linux.reg\n"
30135 "\n"
30136 msgstr ""
30137
30138 #. type: textblock
30139 #: ../tools/virt-win-reg.pl:602
30140 msgid ""
30141 "To go in the opposite direction, after exporting and before sending the file "
30142 "to a Windows user, do something like this:"
30143 msgstr ""
30144
30145 #. type: verbatim
30146 #: ../tools/virt-win-reg.pl:605
30147 #, no-wrap
30148 msgid ""
30149 " unix2dos linux.reg | iconv -f utf-8 -t utf-16le > win.reg\n"
30150 "\n"
30151 msgstr ""
30152
30153 #. type: textblock
30154 #: ../tools/virt-win-reg.pl:607
30155 msgid "For more information about encoding, see L<Win::Hivex::Regedit(3)>."
30156 msgstr ""
30157
30158 #. type: textblock
30159 #: ../tools/virt-win-reg.pl:609
30160 msgid ""
30161 "If you are unsure about the current encoding, use the L<file(1)> command.  "
30162 "Recent versions of Windows regedit.exe produce a UTF-16LE file with Windows-"
30163 "style (CRLF) line endings, like this:"
30164 msgstr ""
30165
30166 #. type: verbatim
30167 #: ../tools/virt-win-reg.pl:613
30168 #, no-wrap
30169 msgid ""
30170 " $ file software.reg\n"
30171 " software.reg: Little-endian UTF-16 Unicode text, with very long lines,\n"
30172 " with CRLF line terminators\n"
30173 "\n"
30174 msgstr ""
30175
30176 #. type: textblock
30177 #: ../tools/virt-win-reg.pl:617
30178 msgid "This file would need conversion before you could I<--merge> it."
30179 msgstr ""
30180
30181 #. type: =head1
30182 #: ../tools/virt-win-reg.pl:619
30183 msgid "CurrentControlSet etc."
30184 msgstr ""
30185
30186 #. type: textblock
30187 #: ../tools/virt-win-reg.pl:621
30188 msgid ""
30189 "Registry keys like C<CurrentControlSet> don't really exist in the Windows "
30190 "Registry at the level of the hive file, and therefore you cannot modify "
30191 "these."
30192 msgstr ""
30193
30194 #. type: textblock
30195 #: ../tools/virt-win-reg.pl:625
30196 msgid ""
30197 "C<CurrentControlSet> is usually an alias for C<ControlSet001>.  In some "
30198 "circumstances it might refer to another control set.  The way to find out is "
30199 "to look at the C<HKLM\\SYSTEM\\Select> key:"
30200 msgstr ""
30201
30202 #. type: verbatim
30203 #: ../tools/virt-win-reg.pl:629
30204 #, no-wrap
30205 msgid ""
30206 " # virt-win-reg WindowsGuest 'HKLM\\SYSTEM\\Select'\n"
30207 " [HKEY_LOCAL_MACHINE\\SYSTEM\\Select]\n"
30208 " \"Current\"=dword:00000001\n"
30209 " \"Default\"=dword:00000001\n"
30210 " \"Failed\"=dword:00000000\n"
30211 " \"LastKnownGood\"=dword:00000002\n"
30212 "\n"
30213 msgstr ""
30214
30215 #. type: textblock
30216 #: ../tools/virt-win-reg.pl:636
30217 msgid "\"Current\" is the one which Windows will choose when it boots."
30218 msgstr ""
30219
30220 #. type: textblock
30221 #: ../tools/virt-win-reg.pl:638
30222 msgid ""
30223 "Similarly, other C<Current...> keys in the path may need to be replaced."
30224 msgstr ""
30225
30226 #. type: =head1
30227 #: ../tools/virt-win-reg.pl:641
30228 msgid "WINDOWS TIPS"
30229 msgstr ""
30230
30231 #. type: textblock
30232 #: ../tools/virt-win-reg.pl:643
30233 msgid ""
30234 "Note that some of these tips modify the guest disk image.  The guest I<must> "
30235 "be shut off, else you will get disk corruption."
30236 msgstr ""
30237
30238 #. type: =head2
30239 #: ../tools/virt-win-reg.pl:646
30240 msgid "RUNNING A BATCH SCRIPT WHEN A USER LOGS IN"
30241 msgstr ""
30242
30243 #. type: textblock
30244 #: ../tools/virt-win-reg.pl:648
30245 msgid ""
30246 "Prepare a DOS batch script, VBScript or executable.  Upload this using "
30247 "L<guestfish(1)>.  For this example the script is called C<test.bat> and it "
30248 "is uploaded into C<C:\\>:"
30249 msgstr ""
30250
30251 #. type: verbatim
30252 #: ../tools/virt-win-reg.pl:652
30253 #, no-wrap
30254 msgid ""
30255 " guestfish -i -d WindowsGuest upload test.bat /test.bat\n"
30256 "\n"
30257 msgstr ""
30258
30259 #. type: textblock
30260 #: ../tools/virt-win-reg.pl:654
30261 msgid "Prepare a regedit file containing the registry change:"
30262 msgstr ""
30263
30264 #. type: verbatim
30265 #: ../tools/virt-win-reg.pl:656
30266 #, no-wrap
30267 msgid ""
30268 " cat > test.reg <<'EOF'\n"
30269 " [HKLM\\Software\\Microsoft\\Windows\\CurrentVersion\\RunOnce]\n"
30270 " \"Test\"=\"c:\\\\test.bat\"\n"
30271 " EOF\n"
30272 "\n"
30273 msgstr ""
30274
30275 #. type: textblock
30276 #: ../tools/virt-win-reg.pl:661
30277 msgid ""
30278 "In this example we use the key C<RunOnce> which means that the script will "
30279 "run precisely once when the first user logs in.  If you want it to run every "
30280 "time a user logs in, replace C<RunOnce> with C<Run>."
30281 msgstr ""
30282
30283 #. type: textblock
30284 #: ../tools/virt-win-reg.pl:665
30285 msgid "Now update the registry:"
30286 msgstr ""
30287
30288 #. type: verbatim
30289 #: ../tools/virt-win-reg.pl:667
30290 #, no-wrap
30291 msgid ""
30292 " virt-win-reg --merge WindowsGuest test.reg\n"
30293 "\n"
30294 msgstr ""
30295
30296 #. type: =head2
30297 #: ../tools/virt-win-reg.pl:669
30298 msgid "INSTALLING A SERVICE"
30299 msgstr ""
30300
30301 #. type: textblock
30302 #: ../tools/virt-win-reg.pl:671
30303 msgid ""
30304 "This section assumes you are familiar with Windows services, and you either "
30305 "have a program which handles the Windows Service Control Protocol directly "
30306 "or you want to run any program using a service wrapper like SrvAny or the "
30307 "free RHSrvAny."
30308 msgstr ""
30309
30310 #. type: textblock
30311 #: ../tools/virt-win-reg.pl:676
30312 msgid ""
30313 "First upload the program and optionally the service wrapper.  In this case "
30314 "the test program is called C<test.exe> and we are using the RHSrvAny wrapper:"
30315 msgstr ""
30316
30317 #. type: verbatim
30318 #: ../tools/virt-win-reg.pl:680
30319 #, no-wrap
30320 msgid ""
30321 " guestfish -i -d WindowsGuest <<EOF\n"
30322 "   upload rhsrvany.exe /rhsrvany.exe\n"
30323 "   upload test.exe /test.exe\n"
30324 " EOF\n"
30325 "\n"
30326 msgstr ""
30327
30328 #. type: textblock
30329 #: ../tools/virt-win-reg.pl:685
30330 msgid ""
30331 "Prepare a regedit file containing the registry changes.  In this example, "
30332 "the first registry change is needed for the service itself or the service "
30333 "wrapper (if used).  The second registry change is only needed because I am "
30334 "using the RHSrvAny service wrapper."
30335 msgstr ""
30336
30337 #. type: verbatim
30338 #: ../tools/virt-win-reg.pl:690
30339 #, no-wrap
30340 msgid ""
30341 " cat > service.reg <<'EOF'\n"
30342 " [HKLM\\SYSTEM\\ControlSet001\\services\\RHSrvAny]\n"
30343 " \"Type\"=dword:00000010\n"
30344 " \"Start\"=dword:00000002\n"
30345 " \"ErrorControl\"=dword:00000001\n"
30346 " \"ImagePath\"=\"c:\\\\rhsrvany.exe\"\n"
30347 " \"DisplayName\"=\"RHSrvAny\"\n"
30348 " \"ObjectName\"=\"NetworkService\"\n"
30349 " \n"
30350 msgstr ""
30351
30352 #. type: verbatim
30353 #: ../tools/virt-win-reg.pl:699
30354 #, no-wrap
30355 msgid ""
30356 " [HKLM\\SYSTEM\\ControlSet001\\services\\RHSrvAny\\Parameters]\n"
30357 " \"CommandLine\"=\"c:\\\\test.exe\"\n"
30358 " \"PWD\"=\"c:\\\\Temp\"\n"
30359 " EOF\n"
30360 "\n"
30361 msgstr ""
30362
30363 #. type: textblock
30364 #: ../tools/virt-win-reg.pl:710
30365 msgid ""
30366 "For use of C<ControlSet001> see the section above in this manual page.  You "
30367 "may need to adjust this according to the control set that is in use by the "
30368 "guest."
30369 msgstr ""
30370
30371 #. type: textblock
30372 #: ../tools/virt-win-reg.pl:716
30373 msgid ""
30374 "C<\"ObjectName\"> controls the privileges that the service will have.  An "
30375 "alternative is C<\"ObjectName\"=\"LocalSystem\"> which would be the most "
30376 "privileged account."
30377 msgstr ""
30378
30379 #. type: textblock
30380 #: ../tools/virt-win-reg.pl:722
30381 msgid ""
30382 "For the meaning of the magic numbers, see this Microsoft KB article: "
30383 "L<http://support.microsoft.com/kb/103000>."
30384 msgstr ""
30385
30386 #. type: textblock
30387 #: ../tools/virt-win-reg.pl:727
30388 msgid "Update the registry:"
30389 msgstr ""
30390
30391 #. type: verbatim
30392 #: ../tools/virt-win-reg.pl:729
30393 #, no-wrap
30394 msgid ""
30395 " virt-win-reg --merge WindowsGuest service.reg\n"
30396 "\n"
30397 msgstr ""
30398
30399 #. type: =head1
30400 #: ../tools/virt-win-reg.pl:731 ../tools/virt-list-filesystems.pl:182
30401 #: ../tools/virt-tar.pl:279 ../tools/virt-make-fs.pl:532
30402 #: ../tools/virt-list-partitions.pl:250
30403 msgid "SHELL QUOTING"
30404 msgstr ""
30405
30406 #. type: textblock
30407 #: ../tools/virt-win-reg.pl:733
30408 msgid ""
30409 "Be careful when passing parameters containing C<\\> (backslash) in the "
30410 "shell.  Usually you will have to use 'single quotes' or double backslashes "
30411 "(but not both) to protect them from the shell."
30412 msgstr ""
30413
30414 #. type: textblock
30415 #: ../tools/virt-win-reg.pl:737
30416 msgid "Paths and value names are case-insensitive."
30417 msgstr ""
30418
30419 #. type: textblock
30420 #: ../tools/virt-win-reg.pl:739 ../tools/virt-list-filesystems.pl:184
30421 #: ../tools/virt-tar.pl:281 ../tools/virt-make-fs.pl:534
30422 #: ../tools/virt-list-partitions.pl:252
30423 msgid ""
30424 "Libvirt guest names can contain arbitrary characters, some of which have "
30425 "meaning to the shell such as C<#> and space.  You may need to quote or "
30426 "escape these characters on the command line.  See the shell manual page L<sh"
30427 "(1)> for details."
30428 msgstr ""
30429
30430 #. type: textblock
30431 #: ../tools/virt-win-reg.pl:746
30432 msgid ""
30433 "L<hivex(3)>, L<hivexsh(1)>, L<hivexregedit(1)>, L<guestfs(3)>, L<guestfish(1)"
30434 ">, L<virt-cat(1)>, L<Sys::Guestfs(3)>, L<Sys::Guestfs::Lib(3)>, L<Win::Hivex"
30435 "(3)>, L<Win::Hivex::Regedit(3)>, L<Sys::Virt(3)>, L<http://libguestfs.org/>."
30436 msgstr ""
30437
30438 #. type: textblock
30439 #: ../tools/virt-win-reg.pl:761 ../tools/virt-make-fs.pl:555
30440 msgid ""
30441 "When reporting bugs, please enable debugging and capture the I<complete> "
30442 "output:"
30443 msgstr ""
30444
30445 #. type: verbatim
30446 #: ../tools/virt-win-reg.pl:764
30447 #, no-wrap
30448 msgid ""
30449 " export LIBGUESTFS_DEBUG=1\n"
30450 " virt-win-reg --debug [... rest ...] > /tmp/virt-win-reg.log 2>&1\n"
30451 "\n"
30452 msgstr ""
30453
30454 #. type: textblock
30455 #: ../tools/virt-win-reg.pl:767
30456 msgid ""
30457 "Attach /tmp/virt-win-reg.log to a new bug report at L<https://bugzilla."
30458 "redhat.com/>"
30459 msgstr ""
30460
30461 #. type: =head1
30462 #: ../tools/virt-win-reg.pl:770 ../tools/virt-list-filesystems.pl:202
30463 #: ../tools/virt-tar.pl:301 ../tools/virt-make-fs.pl:564
30464 #: ../tools/virt-list-partitions.pl:269
30465 msgid "AUTHOR"
30466 msgstr ""
30467
30468 #. type: textblock
30469 #: ../tools/virt-win-reg.pl:772 ../tools/virt-list-filesystems.pl:204
30470 #: ../tools/virt-tar.pl:303 ../tools/virt-make-fs.pl:566
30471 #: ../tools/virt-list-partitions.pl:271
30472 msgid "Richard W.M. Jones L<http://people.redhat.com/~rjones/>"
30473 msgstr ""
30474
30475 #. type: textblock
30476 #: ../tools/virt-win-reg.pl:776 ../tools/virt-make-fs.pl:570
30477 msgid "Copyright (C) 2010 Red Hat Inc."
30478 msgstr ""
30479
30480 #. type: textblock
30481 #: ../tools/virt-list-filesystems.pl:32
30482 msgid ""
30483 "virt-list-filesystems - List filesystems in a virtual machine or disk image"
30484 msgstr ""
30485
30486 #. type: verbatim
30487 #: ../tools/virt-list-filesystems.pl:36
30488 #, no-wrap
30489 msgid ""
30490 " virt-list-filesystems [--options] domname\n"
30491 "\n"
30492 msgstr ""
30493
30494 #. type: verbatim
30495 #: ../tools/virt-list-filesystems.pl:38
30496 #, no-wrap
30497 msgid ""
30498 " virt-list-filesystems [--options] disk.img [disk.img ...]\n"
30499 "\n"
30500 msgstr ""
30501
30502 #. type: textblock
30503 #: ../tools/virt-list-filesystems.pl:42 ../tools/virt-list-partitions.pl:42
30504 msgid ""
30505 "This tool is obsolete.  Use L<virt-filesystems(1)> as a more flexible "
30506 "replacement."
30507 msgstr ""
30508
30509 #. type: textblock
30510 #: ../tools/virt-list-filesystems.pl:45
30511 msgid ""
30512 "C<virt-list-filesystems> is a command line tool to list the filesystems that "
30513 "are contained in a virtual machine or disk image."
30514 msgstr ""
30515
30516 #. type: textblock
30517 #: ../tools/virt-list-filesystems.pl:49
30518 msgid ""
30519 "C<virt-list-filesystems> is just a simple wrapper around L<libguestfs(3)> "
30520 "functionality.  For more complex cases you should look at the L<guestfish(1)"
30521 "> tool."
30522 msgstr ""
30523
30524 #. type: =item
30525 #: ../tools/virt-list-filesystems.pl:106 ../tools/virt-list-partitions.pl:115
30526 msgid "B<-l> | B<--long>"
30527 msgstr ""
30528
30529 #. type: textblock
30530 #: ../tools/virt-list-filesystems.pl:108
30531 msgid ""
30532 "With this option, C<virt-list-filesystems> displays the type of each "
30533 "filesystem too (where \"type\" means C<ext3>, C<xfs> etc.)"
30534 msgstr ""
30535
30536 #. type: =item
30537 #: ../tools/virt-list-filesystems.pl:115
30538 msgid "B<-a> | B<--all>"
30539 msgstr ""
30540
30541 #. type: textblock
30542 #: ../tools/virt-list-filesystems.pl:117
30543 msgid ""
30544 "Normally we only show mountable filesystems.  If this option is given then "
30545 "swap devices are shown too."
30546 msgstr ""
30547
30548 #. type: textblock
30549 #: ../tools/virt-list-filesystems.pl:191
30550 msgid ""
30551 "L<guestfs(3)>, L<guestfish(1)>, L<virt-cat(1)>, L<virt-tar(1)>, L<virt-"
30552 "filesystems(1)>, L<virt-list-partitions(1)>, L<Sys::Guestfs(3)>, L<Sys::"
30553 "Guestfs::Lib(3)>, L<Sys::Virt(3)>, L<http://libguestfs.org/>."
30554 msgstr ""
30555
30556 #. type: textblock
30557 #: ../tools/virt-list-filesystems.pl:208 ../tools/virt-tar.pl:307
30558 msgid "Copyright (C) 2009 Red Hat Inc."
30559 msgstr ""
30560
30561 #. type: textblock
30562 #: ../tools/virt-tar.pl:33
30563 msgid "virt-tar - Extract or upload files to a virtual machine"
30564 msgstr ""
30565
30566 #. type: verbatim
30567 #: ../tools/virt-tar.pl:37
30568 #, no-wrap
30569 msgid ""
30570 " virt-tar [--options] -x domname directory tarball\n"
30571 "\n"
30572 msgstr ""
30573
30574 #. type: verbatim
30575 #: ../tools/virt-tar.pl:39
30576 #, no-wrap
30577 msgid ""
30578 " virt-tar [--options] -u domname tarball directory\n"
30579 "\n"
30580 msgstr ""
30581
30582 #. type: verbatim
30583 #: ../tools/virt-tar.pl:41
30584 #, no-wrap
30585 msgid ""
30586 " virt-tar [--options] disk.img [disk.img ...] -x directory tarball\n"
30587 "\n"
30588 msgstr ""
30589
30590 #. type: verbatim
30591 #: ../tools/virt-tar.pl:43
30592 #, no-wrap
30593 msgid ""
30594 " virt-tar [--options] disk.img [disk.img ...] -u tarball directory\n"
30595 "\n"
30596 msgstr ""
30597
30598 #. type: textblock
30599 #: ../tools/virt-tar.pl:47
30600 msgid ""
30601 "This tool is obsolete.  Use L<virt-copy-in(1)>, L<virt-copy-out(1)>, L<virt-"
30602 "tar-in(1)>, L<virt-tar-out(1)> as replacements."
30603 msgstr ""
30604
30605 #. type: textblock
30606 #: ../tools/virt-tar.pl:52
30607 msgid "Download C</home> from the VM into a local tarball:"
30608 msgstr ""
30609
30610 #. type: verbatim
30611 #: ../tools/virt-tar.pl:54
30612 #, no-wrap
30613 msgid ""
30614 " virt-tar -x domname /home home.tar\n"
30615 "\n"
30616 msgstr ""
30617
30618 #. type: verbatim
30619 #: ../tools/virt-tar.pl:56
30620 #, no-wrap
30621 msgid ""
30622 " virt-tar -zx domname /home home.tar.gz\n"
30623 "\n"
30624 msgstr ""
30625
30626 #. type: textblock
30627 #: ../tools/virt-tar.pl:58
30628 msgid "Upload a local tarball and unpack it inside C</tmp> in the VM:"
30629 msgstr ""
30630
30631 #. type: verbatim
30632 #: ../tools/virt-tar.pl:60
30633 #, no-wrap
30634 msgid ""
30635 " virt-tar -u domname uploadstuff.tar /tmp\n"
30636 "\n"
30637 msgstr ""
30638
30639 #. type: verbatim
30640 #: ../tools/virt-tar.pl:62
30641 #, no-wrap
30642 msgid ""
30643 " virt-tar -zu domname uploadstuff.tar.gz /tmp\n"
30644 "\n"
30645 msgstr ""
30646
30647 #. type: textblock
30648 #: ../tools/virt-tar.pl:66
30649 msgid ""
30650 "You must I<not> use C<virt-tar> with the I<-u> option (upload) on live "
30651 "virtual machines.  If you do this, you risk disk corruption in the VM.  "
30652 "C<virt-tar> tries to stop you from doing this, but doesn't catch all cases."
30653 msgstr ""
30654
30655 #. type: textblock
30656 #: ../tools/virt-tar.pl:71
30657 msgid ""
30658 "You can use I<-x> (extract) on live virtual machines, but you might get "
30659 "inconsistent results or errors if there is filesystem activity inside the "
30660 "VM.  If the live VM is synched and quiescent, then C<virt-tar> will usually "
30661 "work, but the only way to guarantee consistent results is if the virtual "
30662 "machine is shut down."
30663 msgstr ""
30664
30665 #. type: textblock
30666 #: ../tools/virt-tar.pl:79
30667 msgid ""
30668 "C<virt-tar> is a general purpose archive tool for downloading and uploading "
30669 "parts of a guest filesystem.  There are many possibilities: making backups, "
30670 "uploading data files, snooping on guest activity, fixing or customizing "
30671 "guests, etc."
30672 msgstr ""
30673
30674 #. type: textblock
30675 #: ../tools/virt-tar.pl:84
30676 msgid ""
30677 "If you want to just view a single file, use L<virt-cat(1)>.  If you just "
30678 "want to edit a single file, use L<virt-edit(1)>.  For more complex cases you "
30679 "should look at the L<guestfish(1)> tool."
30680 msgstr ""
30681
30682 #. type: textblock
30683 #: ../tools/virt-tar.pl:88
30684 msgid ""
30685 "There are two modes of operation: I<-x> (eXtract) downloads a directory and "
30686 "its contents (recursively) from the virtual machine into a local tarball.  "
30687 "I<-u> uploads from a local tarball, unpacking it into a directory inside the "
30688 "virtual machine.  You cannot use these two options together."
30689 msgstr ""
30690
30691 #. type: textblock
30692 #: ../tools/virt-tar.pl:94
30693 msgid ""
30694 "In addition, you may need to use the I<-z> (gZip) option to enable "
30695 "compression.  When uploading, you have to specify I<-z> if the upload file "
30696 "is compressed because virt-tar won't detect this on its own."
30697 msgstr ""
30698
30699 #. type: textblock
30700 #: ../tools/virt-tar.pl:98
30701 msgid ""
30702 "C<virt-tar> can only handle tar (optionally gzipped) format tarballs.  For "
30703 "example it cannot do PKZip files or bzip2 compression.  If you want that "
30704 "then you'll have to rebuild the tarballs yourself.  (This is a limitation of "
30705 "the L<libguestfs(3)> API)."
30706 msgstr ""
30707
30708 #. type: =item
30709 #: ../tools/virt-tar.pl:156
30710 msgid "B<-x> | B<--extract> | B<--download>"
30711 msgstr ""
30712
30713 #. type: =item
30714 #: ../tools/virt-tar.pl:158
30715 msgid "B<-u> | B<--upload>"
30716 msgstr ""
30717
30718 #. type: textblock
30719 #: ../tools/virt-tar.pl:160
30720 msgid ""
30721 "Use I<-x> to extract (download) a directory from a virtual machine to a "
30722 "local tarball."
30723 msgstr ""
30724
30725 #. type: textblock
30726 #: ../tools/virt-tar.pl:163
30727 msgid ""
30728 "Use I<-u> to upload and unpack from a local tarball into a virtual machine.  "
30729 "Please read the L</WARNING> section above before using this option."
30730 msgstr ""
30731
30732 #. type: textblock
30733 #: ../tools/virt-tar.pl:167
30734 msgid "You must specify exactly one of these options."
30735 msgstr ""
30736
30737 #. type: =item
30738 #: ../tools/virt-tar.pl:173
30739 msgid "B<-z> | B<--gzip>"
30740 msgstr ""
30741
30742 #. type: textblock
30743 #: ../tools/virt-tar.pl:175
30744 msgid "Specify that the input or output tarball is gzip-compressed."
30745 msgstr ""
30746
30747 #. type: textblock
30748 #: ../tools/virt-tar.pl:288
30749 msgid ""
30750 "L<guestfs(3)>, L<guestfish(1)>, L<virt-cat(1)>, L<virt-edit(1)>, L<virt-copy-"
30751 "in(1)>, L<virt-copy-out(1)>, L<virt-tar-in(1)>, L<virt-tar-out(1)>, L<Sys::"
30752 "Guestfs(3)>, L<Sys::Guestfs::Lib(3)>, L<Sys::Virt(3)>, L<http://libguestfs."
30753 "org/>."
30754 msgstr ""
30755
30756 #. type: textblock
30757 #: ../tools/virt-make-fs.pl:37
30758 msgid "virt-make-fs - Make a filesystem from a tar archive or files"
30759 msgstr ""
30760
30761 #. type: verbatim
30762 #: ../tools/virt-make-fs.pl:41
30763 #, no-wrap
30764 msgid ""
30765 " virt-make-fs [--options] input.tar output.img\n"
30766 "\n"
30767 msgstr ""
30768
30769 #. type: verbatim
30770 #: ../tools/virt-make-fs.pl:43
30771 #, no-wrap
30772 msgid ""
30773 " virt-make-fs [--options] input.tar.gz output.img\n"
30774 "\n"
30775 msgstr ""
30776
30777 #. type: verbatim
30778 #: ../tools/virt-make-fs.pl:45
30779 #, no-wrap
30780 msgid ""
30781 " virt-make-fs [--options] directory output.img\n"
30782 "\n"
30783 msgstr ""
30784
30785 #. type: textblock
30786 #: ../tools/virt-make-fs.pl:49
30787 msgid ""
30788 "Virt-make-fs is a command line tool for creating a filesystem from a tar "
30789 "archive or some files in a directory.  It is similar to tools like L<mkisofs"
30790 "(1)>, L<genisoimage(1)> and L<mksquashfs(1)>.  Unlike those tools, it can "
30791 "create common filesystem types like ext2/3 or NTFS, which can be useful if "
30792 "you want to attach these filesystems to existing virtual machines (eg. to "
30793 "import large amounts of read-only data to a VM)."
30794 msgstr ""
30795
30796 #. type: textblock
30797 #: ../tools/virt-make-fs.pl:57
30798 msgid "Basic usage is:"
30799 msgstr ""
30800
30801 #. type: verbatim
30802 #: ../tools/virt-make-fs.pl:59
30803 #, no-wrap
30804 msgid ""
30805 " virt-make-fs input output\n"
30806 "\n"
30807 msgstr ""
30808
30809 #. type: textblock
30810 #: ../tools/virt-make-fs.pl:61
30811 msgid ""
30812 "where C<input> is either a directory containing files that you want to add, "
30813 "or a tar archive (either uncompressed tar or gzip-compressed tar); and "
30814 "C<output> is a disk image.  The input type is detected automatically.  The "
30815 "output disk image defaults to a raw ext2 image unless you specify extra "
30816 "flags (see L</OPTIONS> below)."
30817 msgstr ""
30818
30819 #. type: =head2
30820 #: ../tools/virt-make-fs.pl:67
30821 msgid "EXTRA SPACE"
30822 msgstr ""
30823
30824 #. type: textblock
30825 #: ../tools/virt-make-fs.pl:69
30826 msgid ""
30827 "Unlike formats such as tar and squashfs, a filesystem does not \"just fit\" "
30828 "the files that it contains, but might have extra space.  Depending on how "
30829 "you are going to use the output, you might think this extra space is wasted "
30830 "and want to minimize it, or you might want to leave space so that more files "
30831 "can be added later.  Virt-make-fs defaults to minimizing the extra space, "
30832 "but you can use the I<--size> flag to leave space in the filesystem if you "
30833 "want it."
30834 msgstr ""
30835
30836 #. type: textblock
30837 #: ../tools/virt-make-fs.pl:77
30838 msgid ""
30839 "An alternative way to leave extra space but not make the output image any "
30840 "bigger is to use an alternative disk image format (instead of the default "
30841 "\"raw\" format).  Using I<--format=qcow2> will use the native QEmu/KVM qcow2 "
30842 "image format (check your hypervisor supports this before using it).  This "
30843 "allows you to choose a large I<--size> but the extra space won't actually be "
30844 "allocated in the image until you try to store something in it."
30845 msgstr ""
30846
30847 #. type: textblock
30848 #: ../tools/virt-make-fs.pl:85
30849 msgid ""
30850 "Don't forget that you can also use local commands including L<resize2fs(8)> "
30851 "and L<virt-resize(1)> to resize existing filesystems, or rerun virt-make-fs "
30852 "to build another image from scratch."
30853 msgstr ""
30854
30855 #. type: =head3
30856 #: ../tools/virt-make-fs.pl:89 ../tools/virt-make-fs.pl:123
30857 #: ../tools/virt-make-fs.pl:142
30858 msgid "EXAMPLE"
30859 msgstr ""
30860
30861 #. type: verbatim
30862 #: ../tools/virt-make-fs.pl:91
30863 #, no-wrap
30864 msgid ""
30865 " virt-make-fs --format=qcow2 --size=+200M input output.img\n"
30866 "\n"
30867 msgstr ""
30868
30869 #. type: =head2
30870 #: ../tools/virt-make-fs.pl:93
30871 msgid "FILESYSTEM TYPE"
30872 msgstr ""
30873
30874 #. type: textblock
30875 #: ../tools/virt-make-fs.pl:95
30876 msgid ""
30877 "The default filesystem type is C<ext2>.  Just about any filesystem type that "
30878 "libguestfs supports can be used (but I<not> read-only formats like "
30879 "ISO9660).  Here are some of the more common choices:"
30880 msgstr ""
30881
30882 #. type: =item
30883 #: ../tools/virt-make-fs.pl:101
30884 msgid "I<ext3>"
30885 msgstr ""
30886
30887 #. type: textblock
30888 #: ../tools/virt-make-fs.pl:103
30889 msgid ""
30890 "Note that ext3 filesystems contain a journal, typically 1-32 MB in size.  If "
30891 "you are not going to use the filesystem in a way that requires the journal, "
30892 "then this is just wasted overhead."
30893 msgstr ""
30894
30895 #. type: =item
30896 #: ../tools/virt-make-fs.pl:107
30897 msgid "I<ntfs> or I<vfat>"
30898 msgstr ""
30899
30900 #. type: textblock
30901 #: ../tools/virt-make-fs.pl:109
30902 msgid "Useful if exporting data to a Windows guest."
30903 msgstr ""
30904
30905 #. type: textblock
30906 #: ../tools/virt-make-fs.pl:111
30907 msgid ""
30908 "I<Note for vfat>: The tar archive or local directory must only contain files "
30909 "which are owned by root (ie. UID:GID = 0:0).  The reason is that the tar "
30910 "program running within libguestfs is unable to change the ownership of non-"
30911 "root files, since vfat itself does not support this."
30912 msgstr ""
30913
30914 #. type: =item
30915 #: ../tools/virt-make-fs.pl:116
30916 msgid "I<minix>"
30917 msgstr ""
30918
30919 #. type: textblock
30920 #: ../tools/virt-make-fs.pl:118
30921 msgid ""
30922 "Lower overhead than C<ext2>, but certain limitations on filename length and "
30923 "total filesystem size."
30924 msgstr ""
30925
30926 #. type: verbatim
30927 #: ../tools/virt-make-fs.pl:125
30928 #, no-wrap
30929 msgid ""
30930 " virt-make-fs --type=minix input minixfs.img\n"
30931 "\n"
30932 msgstr ""
30933
30934 #. type: =head2
30935 #: ../tools/virt-make-fs.pl:127
30936 msgid "TO PARTITION OR NOT TO PARTITION"
30937 msgstr ""
30938
30939 #. type: textblock
30940 #: ../tools/virt-make-fs.pl:129
30941 msgid "Optionally virt-make-fs can add a partition table to the output disk."
30942 msgstr ""
30943
30944 #. type: textblock
30945 #: ../tools/virt-make-fs.pl:131
30946 msgid ""
30947 "Adding a partition can make the disk image more compatible with certain "
30948 "virtualized operating systems which don't expect to see a filesystem "
30949 "directly located on a block device (Linux doesn't care and will happily "
30950 "handle both types)."
30951 msgstr ""
30952
30953 #. type: textblock
30954 #: ../tools/virt-make-fs.pl:136
30955 msgid ""
30956 "On the other hand, if you have a partition table then the output image is no "
30957 "longer a straight filesystem.  For example you cannot run L<fsck(8)> "
30958 "directly on a partitioned disk image.  (However libguestfs tools such as "
30959 "L<guestfish(1)> and L<virt-resize(1)> can still be used)."
30960 msgstr ""
30961
30962 #. type: textblock
30963 #: ../tools/virt-make-fs.pl:144
30964 msgid "Add an MBR partition:"
30965 msgstr ""
30966
30967 #. type: verbatim
30968 #: ../tools/virt-make-fs.pl:146
30969 #, no-wrap
30970 msgid ""
30971 " virt-make-fs --partition -- input disk.img\n"
30972 "\n"
30973 msgstr ""
30974
30975 #. type: textblock
30976 #: ../tools/virt-make-fs.pl:148
30977 msgid ""
30978 "If the output disk image could be terabyte-sized or larger, it's better to "
30979 "use an EFI/GPT-compatible partition table:"
30980 msgstr ""
30981
30982 #. type: verbatim
30983 #: ../tools/virt-make-fs.pl:151
30984 #, no-wrap
30985 msgid ""
30986 " virt-make-fs --partition=gpt --size=+4T --format=qcow2 input disk.img\n"
30987 "\n"
30988 msgstr ""
30989
30990 #. type: textblock
30991 #: ../tools/virt-make-fs.pl:179
30992 msgid "Enable debugging information."
30993 msgstr ""
30994
30995 #. type: =item
30996 #: ../tools/virt-make-fs.pl:185
30997 msgid "B<--size=E<lt>NE<gt>>"
30998 msgstr ""
30999
31000 #. type: =item
31001 #: ../tools/virt-make-fs.pl:187
31002 msgid "B<--size=+E<lt>NE<gt>>"
31003 msgstr ""
31004
31005 #. type: =item
31006 #: ../tools/virt-make-fs.pl:189
31007 msgid "B<-s E<lt>NE<gt>>"
31008 msgstr ""
31009
31010 #. type: =item
31011 #: ../tools/virt-make-fs.pl:191
31012 msgid "B<-s +E<lt>NE<gt>>"
31013 msgstr ""
31014
31015 #. type: textblock
31016 #: ../tools/virt-make-fs.pl:193
31017 msgid ""
31018 "Use the I<--size> (or I<-s>) option to choose the size of the output image."
31019 msgstr ""
31020
31021 #. type: textblock
31022 #: ../tools/virt-make-fs.pl:196
31023 msgid ""
31024 "If this option is I<not> given, then the output image will be just large "
31025 "enough to contain all the files, with not much wasted space."
31026 msgstr ""
31027
31028 #. type: textblock
31029 #: ../tools/virt-make-fs.pl:199
31030 msgid ""
31031 "To choose a fixed size output disk, specify an absolute number followed by b/"
31032 "K/M/G/T/P/E to mean bytes, Kilobytes, Megabytes, Gigabytes, Terabytes, "
31033 "Petabytes or Exabytes.  This must be large enough to contain all the input "
31034 "files, else you will get an error."
31035 msgstr ""
31036
31037 #. type: textblock
31038 #: ../tools/virt-make-fs.pl:204
31039 msgid ""
31040 "To leave extra space, specify C<+> (plus sign) and a number followed by b/K/"
31041 "M/G/T/P/E to mean bytes, Kilobytes, Megabytes, Gigabytes, Terabytes, "
31042 "Petabytes or Exabytes.  For example: I<--size=+200M> means enough space for "
31043 "the input files, and (approximately) an extra 200 MB free space."
31044 msgstr ""
31045
31046 #. type: textblock
31047 #: ../tools/virt-make-fs.pl:210
31048 msgid ""
31049 "Note that virt-make-fs estimates free space, and therefore will not produce "
31050 "filesystems containing precisely the free space requested.  (It is much more "
31051 "expensive and time-consuming to produce a filesystem which has precisely the "
31052 "desired free space)."
31053 msgstr ""
31054
31055 #. type: =item
31056 #: ../tools/virt-make-fs.pl:219
31057 msgid "B<--format=E<lt>fmtE<gt>>"
31058 msgstr ""
31059
31060 #. type: =item
31061 #: ../tools/virt-make-fs.pl:221
31062 msgid "B<-F E<lt>fmtE<gt>>"
31063 msgstr ""
31064
31065 #. type: textblock
31066 #: ../tools/virt-make-fs.pl:223
31067 msgid "Choose the output disk image format."
31068 msgstr ""
31069
31070 #. type: textblock
31071 #: ../tools/virt-make-fs.pl:225
31072 msgid "The default is C<raw> (raw disk image)."
31073 msgstr ""
31074
31075 #. type: textblock
31076 #: ../tools/virt-make-fs.pl:227
31077 msgid ""
31078 "For other choices, see the L<qemu-img(1)> manpage.  The only other choice "
31079 "that would really make sense here is C<qcow2>."
31080 msgstr ""
31081
31082 #. type: =item
31083 #: ../tools/virt-make-fs.pl:234
31084 msgid "B<--type=E<lt>fsE<gt>>"
31085 msgstr ""
31086
31087 #. type: =item
31088 #: ../tools/virt-make-fs.pl:236
31089 msgid "B<-t E<lt>fsE<gt>>"
31090 msgstr ""
31091
31092 #. type: textblock
31093 #: ../tools/virt-make-fs.pl:238
31094 msgid "Choose the output filesystem type."
31095 msgstr ""
31096
31097 #. type: textblock
31098 #: ../tools/virt-make-fs.pl:240
31099 msgid "The default is C<ext2>."
31100 msgstr ""
31101
31102 #. type: textblock
31103 #: ../tools/virt-make-fs.pl:242
31104 msgid ""
31105 "Any filesystem which is supported read-write by libguestfs can be used here."
31106 msgstr ""
31107
31108 #. type: =item
31109 #: ../tools/virt-make-fs.pl:249
31110 msgid "B<--partition>"
31111 msgstr ""
31112
31113 #. type: =item
31114 #: ../tools/virt-make-fs.pl:251
31115 msgid "B<--partition=E<lt>parttypeE<gt>>"
31116 msgstr ""
31117
31118 #. type: textblock
31119 #: ../tools/virt-make-fs.pl:253
31120 msgid ""
31121 "If specified, this flag adds an MBR partition table to the output disk image."
31122 msgstr ""
31123
31124 #. type: textblock
31125 #: ../tools/virt-make-fs.pl:256
31126 msgid ""
31127 "You can change the partition table type, eg. I<--partition=gpt> for large "
31128 "disks."
31129 msgstr ""
31130
31131 #. type: textblock
31132 #: ../tools/virt-make-fs.pl:259
31133 msgid ""
31134 "Note that if you just use a lonesome I<--partition>, the Perl option parser "
31135 "might consider the next parameter to be the partition type.  For example:"
31136 msgstr ""
31137
31138 #. type: verbatim
31139 #: ../tools/virt-make-fs.pl:263
31140 #, no-wrap
31141 msgid ""
31142 " virt-make-fs --partition input.tar ...\n"
31143 "\n"
31144 msgstr ""
31145
31146 #. type: textblock
31147 #: ../tools/virt-make-fs.pl:265
31148 msgid ""
31149 "would cause virt-make-fs to think you wanted to use a partition type of "
31150 "C<input.tar> which is completely wrong.  To avoid this, use I<--> (a double "
31151 "dash) between options and the input file argument:"
31152 msgstr ""
31153
31154 #. type: verbatim
31155 #: ../tools/virt-make-fs.pl:269
31156 #, no-wrap
31157 msgid ""
31158 " virt-make-fs --partition -- input.tar ...\n"
31159 "\n"
31160 msgstr ""
31161
31162 #. type: textblock
31163 #: ../tools/virt-make-fs.pl:541
31164 msgid ""
31165 "L<guestfish(1)>, L<virt-resize(1)>, L<virt-tar-in(1)>, L<mkisofs(1)>, "
31166 "L<genisoimage(1)>, L<mksquashfs(1)>, L<mke2fs(8)>, L<resize2fs(8)>, L<guestfs"
31167 "(3)>, L<Sys::Guestfs(3)>, L<http://libguestfs.org/>."
31168 msgstr ""
31169
31170 #. type: verbatim
31171 #: ../tools/virt-make-fs.pl:558
31172 #, no-wrap
31173 msgid ""
31174 " export LIBGUESTFS_DEBUG=1\n"
31175 " virt-make-fs --debug [...] > /tmp/virt-make-fs.log 2>&1\n"
31176 "\n"
31177 msgstr ""
31178
31179 #. type: textblock
31180 #: ../tools/virt-make-fs.pl:561
31181 msgid ""
31182 "Attach /tmp/virt-make-fs.log to a new bug report at L<https://bugzilla."
31183 "redhat.com/>"
31184 msgstr ""
31185
31186 #. type: textblock
31187 #: ../tools/virt-list-partitions.pl:32
31188 msgid ""
31189 "virt-list-partitions - List partitions in a virtual machine or disk image"
31190 msgstr ""
31191
31192 #. type: verbatim
31193 #: ../tools/virt-list-partitions.pl:36
31194 #, no-wrap
31195 msgid ""
31196 " virt-list-partitions [--options] domname\n"
31197 "\n"
31198 msgstr ""
31199
31200 #. type: verbatim
31201 #: ../tools/virt-list-partitions.pl:38
31202 #, no-wrap
31203 msgid ""
31204 " virt-list-partitions [--options] disk.img [disk.img ...]\n"
31205 "\n"
31206 msgstr ""
31207
31208 #. type: textblock
31209 #: ../tools/virt-list-partitions.pl:45
31210 msgid ""
31211 "C<virt-list-partitions> is a command line tool to list the partitions that "
31212 "are contained in a virtual machine or disk image.  It is mainly useful as a "
31213 "first step to using L<virt-resize(1)>."
31214 msgstr ""
31215
31216 #. type: textblock
31217 #: ../tools/virt-list-partitions.pl:50
31218 msgid ""
31219 "C<virt-list-partitions> is just a simple wrapper around L<libguestfs(3)> "
31220 "functionality.  For more complex cases you should look at the L<guestfish(1)"
31221 "> tool."
31222 msgstr ""
31223
31224 #. type: =item
31225 #: ../tools/virt-list-partitions.pl:107
31226 msgid "B<-h> | B<--human-readable>"
31227 msgstr ""
31228
31229 #. type: textblock
31230 #: ../tools/virt-list-partitions.pl:109
31231 msgid "Show sizes in human-readable form (eg. \"1G\")."
31232 msgstr ""
31233
31234 #. type: textblock
31235 #: ../tools/virt-list-partitions.pl:117
31236 msgid ""
31237 "With this option, C<virt-list-partitions> displays the type and size of each "
31238 "partition too (where \"type\" means C<ext3>, C<pv> etc.)"
31239 msgstr ""
31240
31241 #. type: =item
31242 #: ../tools/virt-list-partitions.pl:124
31243 msgid "B<-t> | B<--total>"
31244 msgstr ""
31245
31246 #. type: textblock
31247 #: ../tools/virt-list-partitions.pl:126
31248 msgid ""
31249 "Display the total size of each block device (as a separate row or rows)."
31250 msgstr ""
31251
31252 #. type: textblock
31253 #: ../tools/virt-list-partitions.pl:259
31254 msgid ""
31255 "L<guestfs(3)>, L<guestfish(1)>, L<virt-filesystems(1)>, L<virt-list-"
31256 "filesystems(1)>, L<virt-resize(1)>, L<Sys::Guestfs(3)>, L<Sys::Guestfs::Lib"
31257 "(3)>, L<Sys::Virt(3)>, L<http://libguestfs.org/>."
31258 msgstr ""
31259
31260 #. type: textblock
31261 #: ../tools/virt-list-partitions.pl:275
31262 msgid "Copyright (C) 2009-2010 Red Hat Inc."
31263 msgstr ""