edit: Reorganize options alphabetically.
[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-05-08 12:57+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-edit.pl:32 ../tools/virt-win-reg.pl:35
25 #: ../tools/virt-list-filesystems.pl:30 ../tools/virt-tar.pl:31
26 #: ../tools/virt-make-fs.pl:35 ../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-edit.pl:36 ../tools/virt-win-reg.pl:39
41 #: ../tools/virt-list-filesystems.pl:34 ../tools/virt-tar.pl:35
42 #: ../tools/virt-make-fs.pl:39 ../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-edit.pl:50 ../tools/virt-win-reg.pl:63
96 #: ../tools/virt-list-filesystems.pl:40 ../tools/virt-tar.pl:77
97 #: ../tools/virt-make-fs.pl:47 ../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:2963 ../src/guestfs.pod:2967 ../src/guestfs.pod:2971
868 #: ../src/guestfs.pod:2975 ../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:1606
872 #: ../src/guestfs-actions.pod:1610 ../src/guestfs-actions.pod:1614
873 #: ../src/guestfs-actions.pod:1618 ../src/guestfs-actions.pod:1626
874 #: ../src/guestfs-actions.pod:1630 ../src/guestfs-actions.pod:1634
875 #: ../src/guestfs-actions.pod:1644 ../src/guestfs-actions.pod:1648
876 #: ../src/guestfs-actions.pod:1652 ../src/guestfs-actions.pod:1790
877 #: ../src/guestfs-actions.pod:1794 ../src/guestfs-actions.pod:1799
878 #: ../src/guestfs-actions.pod:1804 ../src/guestfs-actions.pod:1865
879 #: ../src/guestfs-actions.pod:1869 ../src/guestfs-actions.pod:1874
880 #: ../fish/guestfish.pod:445 ../fish/guestfish.pod:449
881 #: ../fish/guestfish.pod:453 ../fish/guestfish.pod:457
882 #: ../fish/guestfish-actions.pod:13 ../fish/guestfish-actions.pod:20
883 #: ../fish/guestfish-actions.pod:385 ../fish/guestfish-actions.pod:393
884 #: ../fish/guestfish-actions.pod:400 ../fish/guestfish-actions.pod:407
885 #: ../fish/guestfish-actions.pod:1077 ../fish/guestfish-actions.pod:1081
886 #: ../fish/guestfish-actions.pod:1085 ../fish/guestfish-actions.pod:1089
887 #: ../fish/guestfish-actions.pod:1097 ../fish/guestfish-actions.pod:1101
888 #: ../fish/guestfish-actions.pod:1105 ../fish/guestfish-actions.pod:1115
889 #: ../fish/guestfish-actions.pod:1119 ../fish/guestfish-actions.pod:1123
890 #: ../fish/guestfish-actions.pod:1213 ../fish/guestfish-actions.pod:1217
891 #: ../fish/guestfish-actions.pod:1222 ../fish/guestfish-actions.pod:1227
892 #: ../fish/guestfish-actions.pod:1269 ../fish/guestfish-actions.pod:1273
893 #: ../fish/guestfish-actions.pod:1278 ../tools/virt-edit.pl:351
894 #: ../tools/virt-edit.pl:356 ../tools/virt-edit.pl:361
895 #: ../tools/virt-edit.pl:372 ../tools/virt-edit.pl:376
896 #: ../tools/virt-win-reg.pl:536 ../tools/virt-win-reg.pl:542
897 #: ../tools/virt-win-reg.pl:548
898 msgid "*"
899 msgstr ""
900
901 #. type: textblock
902 #: ../src/guestfs.pod:390
903 msgid ""
904 "The kernel version that the command runs under will be different from what "
905 "it expects."
906 msgstr ""
907
908 #. type: textblock
909 #: ../src/guestfs.pod:395
910 msgid ""
911 "If the command needs to communicate with daemons, then most likely they "
912 "won't be running."
913 msgstr ""
914
915 #. type: textblock
916 #: ../src/guestfs.pod:400
917 msgid "The command will be running in limited memory."
918 msgstr ""
919
920 #. type: textblock
921 #: ../src/guestfs.pod:404
922 msgid ""
923 "The network may not be available unless you enable it (see L</"
924 "guestfs_set_network>)."
925 msgstr ""
926
927 #. type: textblock
928 #: ../src/guestfs.pod:409
929 msgid "Only supports Linux guests (not Windows, BSD, etc)."
930 msgstr ""
931
932 #. type: textblock
933 #: ../src/guestfs.pod:413
934 msgid ""
935 "Architecture limitations (eg. won't work for a PPC guest on an X86 host)."
936 msgstr ""
937
938 #. type: textblock
939 #: ../src/guestfs.pod:418
940 msgid ""
941 "For SELinux guests, you may need to enable SELinux and load policy first.  "
942 "See L</SELINUX> in this manpage."
943 msgstr ""
944
945 #. type: textblock
946 #: ../src/guestfs.pod:423
947 msgid ""
948 "I<Security:> It is not safe to run commands from untrusted, possibly "
949 "malicious guests.  These commands may attempt to exploit your program by "
950 "sending unexpected output.  They could also try to exploit the Linux kernel "
951 "or qemu provided by the libguestfs appliance.  They could use the network "
952 "provided by the libguestfs appliance to bypass ordinary network partitions "
953 "and firewalls.  They could use the elevated privileges or different SELinux "
954 "context of your program to their advantage."
955 msgstr ""
956
957 #. type: textblock
958 #: ../src/guestfs.pod:432
959 msgid ""
960 "A secure alternative is to use libguestfs to install a \"firstboot\" script "
961 "(a script which runs when the guest next boots normally), and to have this "
962 "script run the commands you want in the normal context of the running guest, "
963 "network security and so on.  For information about other security issues, "
964 "see L</SECURITY>."
965 msgstr ""
966
967 #. type: textblock
968 #: ../src/guestfs.pod:440
969 msgid ""
970 "The two main API calls to run commands are L</guestfs_command> and L</"
971 "guestfs_sh> (there are also variations)."
972 msgstr ""
973
974 #. type: textblock
975 #: ../src/guestfs.pod:443
976 msgid ""
977 "The difference is that L</guestfs_sh> runs commands using the shell, so any "
978 "shell globs, redirections, etc will work."
979 msgstr ""
980
981 #. type: =head2
982 #: ../src/guestfs.pod:446
983 msgid "CONFIGURATION FILES"
984 msgstr "ФАЙЛИ НАЛАШТУВАННЯ"
985
986 #. type: textblock
987 #: ../src/guestfs.pod:448
988 msgid ""
989 "To read and write configuration files in Linux guest filesystems, we "
990 "strongly recommend using Augeas.  For example, Augeas understands how to "
991 "read and write, say, a Linux shadow password file or X.org configuration "
992 "file, and so avoids you having to write that code."
993 msgstr ""
994
995 #. type: textblock
996 #: ../src/guestfs.pod:453
997 msgid ""
998 "The main Augeas calls are bound through the C<guestfs_aug_*> APIs.  We don't "
999 "document Augeas itself here because there is excellent documentation on the "
1000 "L<http://augeas.net/> website."
1001 msgstr ""
1002
1003 #. type: textblock
1004 #: ../src/guestfs.pod:457
1005 msgid ""
1006 "If you don't want to use Augeas (you fool!) then try calling L</"
1007 "guestfs_read_lines> to get the file as a list of lines which you can iterate "
1008 "over."
1009 msgstr ""
1010
1011 #. type: =head2
1012 #: ../src/guestfs.pod:461
1013 msgid "SELINUX"
1014 msgstr "SELINUX"
1015
1016 #. type: textblock
1017 #: ../src/guestfs.pod:463
1018 msgid ""
1019 "We support SELinux guests.  To ensure that labeling happens correctly in "
1020 "SELinux guests, you need to enable SELinux and load the guest's policy:"
1021 msgstr ""
1022
1023 #. type: =item
1024 #: ../src/guestfs.pod:469 ../src/guestfs.pod:1257 ../src/guestfs.pod:1395
1025 #: ../src/guestfs.pod:2426
1026 msgid "1."
1027 msgstr ""
1028
1029 #. type: textblock
1030 #: ../src/guestfs.pod:471
1031 msgid "Before launching, do:"
1032 msgstr ""
1033
1034 #. type: verbatim
1035 #: ../src/guestfs.pod:473
1036 #, no-wrap
1037 msgid ""
1038 " guestfs_set_selinux (g, 1);\n"
1039 "\n"
1040 msgstr ""
1041
1042 #. type: =item
1043 #: ../src/guestfs.pod:475 ../src/guestfs.pod:1261 ../src/guestfs.pod:1399
1044 #: ../src/guestfs.pod:2451
1045 msgid "2."
1046 msgstr ""
1047
1048 #. type: textblock
1049 #: ../src/guestfs.pod:477
1050 msgid ""
1051 "After mounting the guest's filesystem(s), load the policy.  This is best "
1052 "done by running the L<load_policy(8)> command in the guest itself:"
1053 msgstr ""
1054
1055 #. type: verbatim
1056 #: ../src/guestfs.pod:481
1057 #, no-wrap
1058 msgid ""
1059 " guestfs_sh (g, \"/usr/sbin/load_policy\");\n"
1060 "\n"
1061 msgstr ""
1062
1063 #. type: textblock
1064 #: ../src/guestfs.pod:483
1065 msgid ""
1066 "(Older versions of C<load_policy> require you to specify the name of the "
1067 "policy file)."
1068 msgstr ""
1069
1070 #. type: =item
1071 #: ../src/guestfs.pod:486 ../src/guestfs.pod:1405
1072 msgid "3."
1073 msgstr ""
1074
1075 #. type: textblock
1076 #: ../src/guestfs.pod:488
1077 msgid ""
1078 "Optionally, set the security context for the API.  The correct security "
1079 "context to use can only be known by inspecting the guest.  As an example:"
1080 msgstr ""
1081
1082 #. type: verbatim
1083 #: ../src/guestfs.pod:492
1084 #, no-wrap
1085 msgid ""
1086 " guestfs_setcon (g, \"unconfined_u:unconfined_r:unconfined_t:s0\");\n"
1087 "\n"
1088 msgstr ""
1089
1090 #. type: textblock
1091 #: ../src/guestfs.pod:496
1092 msgid "This will work for running commands and editing existing files."
1093 msgstr ""
1094
1095 #. type: textblock
1096 #: ../src/guestfs.pod:498
1097 msgid ""
1098 "When new files are created, you may need to label them explicitly, for "
1099 "example by running the external command C<restorecon pathname>."
1100 msgstr ""
1101
1102 #. type: =head2
1103 #: ../src/guestfs.pod:502
1104 msgid "UMASK"
1105 msgstr ""
1106
1107 #. type: textblock
1108 #: ../src/guestfs.pod:504
1109 msgid ""
1110 "Certain calls are affected by the current file mode creation mask (the "
1111 "\"umask\").  In particular ones which create files or directories, such as "
1112 "L</guestfs_touch>, L</guestfs_mknod> or L</guestfs_mkdir>.  This affects "
1113 "either the default mode that the file is created with or modifies the mode "
1114 "that you supply."
1115 msgstr ""
1116
1117 #. type: textblock
1118 #: ../src/guestfs.pod:510
1119 msgid ""
1120 "The default umask is C<022>, so files are created with modes such as C<0644> "
1121 "and directories with C<0755>."
1122 msgstr ""
1123
1124 #. type: textblock
1125 #: ../src/guestfs.pod:513
1126 msgid ""
1127 "There are two ways to avoid being affected by umask.  Either set umask to 0 "
1128 "(call C<guestfs_umask (g, 0)> early after launching).  Or call L</"
1129 "guestfs_chmod> after creating each file or directory."
1130 msgstr ""
1131
1132 #. type: textblock
1133 #: ../src/guestfs.pod:517
1134 msgid "For more information about umask, see L<umask(2)>."
1135 msgstr ""
1136
1137 #. type: =head1
1138 #: ../src/guestfs.pod:519 ../fish/guestfish.pod:767
1139 msgid "ENCRYPTED DISKS"
1140 msgstr ""
1141
1142 #. type: textblock
1143 #: ../src/guestfs.pod:521
1144 msgid ""
1145 "Libguestfs allows you to access Linux guests which have been encrypted using "
1146 "whole disk encryption that conforms to the Linux Unified Key Setup (LUKS) "
1147 "standard.  This includes nearly all whole disk encryption systems used by "
1148 "modern Linux guests."
1149 msgstr ""
1150
1151 #. type: textblock
1152 #: ../src/guestfs.pod:527
1153 msgid ""
1154 "Use L</guestfs_vfs_type> to identify LUKS-encrypted block devices (it "
1155 "returns the string C<crypto_LUKS>)."
1156 msgstr ""
1157
1158 #. type: textblock
1159 #: ../src/guestfs.pod:530
1160 msgid ""
1161 "Then open these devices by calling L</guestfs_luks_open>.  Obviously you "
1162 "will require the passphrase!"
1163 msgstr ""
1164
1165 #. type: textblock
1166 #: ../src/guestfs.pod:533
1167 msgid ""
1168 "Opening a LUKS device creates a new device mapper device called C</dev/"
1169 "mapper/mapname> (where C<mapname> is the string you supply to L</"
1170 "guestfs_luks_open>).  Reads and writes to this mapper device are decrypted "
1171 "from and encrypted to the underlying block device respectively."
1172 msgstr ""
1173
1174 #. type: textblock
1175 #: ../src/guestfs.pod:539
1176 msgid ""
1177 "LVM volume groups on the device can be made visible by calling L</"
1178 "guestfs_vgscan> followed by L</guestfs_vg_activate_all>.  The logical volume"
1179 "(s) can now be mounted in the usual way."
1180 msgstr ""
1181
1182 #. type: textblock
1183 #: ../src/guestfs.pod:543
1184 msgid ""
1185 "Use the reverse process to close a LUKS device.  Unmount any logical volumes "
1186 "on it, deactivate the volume groups by caling C<guestfs_vg_activate (g, 0, "
1187 "[\"/dev/VG\"])>.  Then close the mapper device by calling L</"
1188 "guestfs_luks_close> on the C</dev/mapper/mapname> device (I<not> the "
1189 "underlying encrypted block device)."
1190 msgstr ""
1191
1192 #. type: =head2
1193 #: ../src/guestfs.pod:550
1194 msgid "INSPECTION"
1195 msgstr "ПЕРЕВІРКА"
1196
1197 #. type: textblock
1198 #: ../src/guestfs.pod:552
1199 msgid ""
1200 "Libguestfs has APIs for inspecting an unknown disk image to find out if it "
1201 "contains operating systems, an install CD or a live CD.  (These APIs used to "
1202 "be in a separate Perl-only library called L<Sys::Guestfs::Lib(3)> but since "
1203 "version 1.5.3 the most frequently used part of this library has been "
1204 "rewritten in C and moved into the core code)."
1205 msgstr ""
1206
1207 #. type: textblock
1208 #: ../src/guestfs.pod:559
1209 msgid ""
1210 "Add all disks belonging to the unknown virtual machine and call L</"
1211 "guestfs_launch> in the usual way."
1212 msgstr ""
1213
1214 #. type: textblock
1215 #: ../src/guestfs.pod:562
1216 msgid ""
1217 "Then call L</guestfs_inspect_os>.  This function uses other libguestfs calls "
1218 "and certain heuristics, and returns a list of operating systems that were "
1219 "found.  An empty list means none were found.  A single element is the root "
1220 "filesystem of the operating system.  For dual- or multi-boot guests, "
1221 "multiple roots can be returned, each one corresponding to a separate "
1222 "operating system.  (Multi-boot virtual machines are extremely rare in the "
1223 "world of virtualization, but since this scenario can happen, we have built "
1224 "libguestfs to deal with it.)"
1225 msgstr ""
1226
1227 #. type: textblock
1228 #: ../src/guestfs.pod:571
1229 msgid ""
1230 "For each root, you can then call various C<guestfs_inspect_get_*> functions "
1231 "to get additional details about that operating system.  For example, call L</"
1232 "guestfs_inspect_get_type> to return the string C<windows> or C<linux> for "
1233 "Windows and Linux-based operating systems respectively."
1234 msgstr ""
1235
1236 #. type: textblock
1237 #: ../src/guestfs.pod:577
1238 msgid ""
1239 "Un*x-like and Linux-based operating systems usually consist of several "
1240 "filesystems which are mounted at boot time (for example, a separate boot "
1241 "partition mounted on C</boot>).  The inspection rules are able to detect how "
1242 "filesystems correspond to mount points.  Call "
1243 "C<guestfs_inspect_get_mountpoints> to get this mapping.  It might return a "
1244 "hash table like this example:"
1245 msgstr ""
1246
1247 #. type: verbatim
1248 #: ../src/guestfs.pod:584
1249 #, no-wrap
1250 msgid ""
1251 " /boot => /dev/sda1\n"
1252 " /     => /dev/vg_guest/lv_root\n"
1253 " /usr  => /dev/vg_guest/lv_usr\n"
1254 "\n"
1255 msgstr ""
1256
1257 #. type: textblock
1258 #: ../src/guestfs.pod:588
1259 msgid ""
1260 "The caller can then make calls to L</guestfs_mount_options> to mount the "
1261 "filesystems as suggested."
1262 msgstr ""
1263
1264 #. type: textblock
1265 #: ../src/guestfs.pod:591
1266 msgid ""
1267 "Be careful to mount filesystems in the right order (eg. C</> before C</"
1268 "usr>).  Sorting the keys of the hash by length, shortest first, should work."
1269 msgstr ""
1270
1271 #. type: textblock
1272 #: ../src/guestfs.pod:595
1273 msgid ""
1274 "Inspection currently only works for some common operating systems.  "
1275 "Contributors are welcome to send patches for other operating systems that we "
1276 "currently cannot detect."
1277 msgstr ""
1278
1279 #. type: textblock
1280 #: ../src/guestfs.pod:599
1281 msgid ""
1282 "Encrypted disks must be opened before inspection.  See L</ENCRYPTED DISKS> "
1283 "for more details.  The L</guestfs_inspect_os> function just ignores any "
1284 "encrypted devices."
1285 msgstr ""
1286
1287 #. type: textblock
1288 #: ../src/guestfs.pod:603
1289 msgid ""
1290 "A note on the implementation: The call L</guestfs_inspect_os> performs "
1291 "inspection and caches the results in the guest handle.  Subsequent calls to "
1292 "C<guestfs_inspect_get_*> return this cached information, but I<do not> re-"
1293 "read the disks.  If you change the content of the guest disks, you can redo "
1294 "inspection by calling L</guestfs_inspect_os> again.  (L</"
1295 "guestfs_inspect_list_applications> works a little differently from the other "
1296 "calls and does read the disks.  See documentation for that function for "
1297 "details)."
1298 msgstr ""
1299
1300 #. type: =head3
1301 #: ../src/guestfs.pod:612
1302 msgid "INSPECTING INSTALL DISKS"
1303 msgstr ""
1304
1305 #. type: textblock
1306 #: ../src/guestfs.pod:614
1307 msgid ""
1308 "Libguestfs (since 1.9.4) can detect some install disks, install CDs, live "
1309 "CDs and more."
1310 msgstr ""
1311
1312 #. type: textblock
1313 #: ../src/guestfs.pod:617
1314 msgid ""
1315 "Call L</guestfs_inspect_get_format> to return the format of the operating "
1316 "system, which currently can be C<installed> (a regular operating system) or "
1317 "C<installer> (some sort of install disk)."
1318 msgstr ""
1319
1320 #. type: textblock
1321 #: ../src/guestfs.pod:621
1322 msgid ""
1323 "Further information is available about the operating system that can be "
1324 "installed using the regular inspection APIs like L</"
1325 "guestfs_inspect_get_product_name>, L</guestfs_inspect_get_major_version> etc."
1326 msgstr ""
1327
1328 #. type: textblock
1329 #: ../src/guestfs.pod:626
1330 msgid ""
1331 "Some additional information specific to installer disks is also available "
1332 "from the L</guestfs_inspect_is_live>, L</guestfs_inspect_is_netinst> and L</"
1333 "guestfs_inspect_is_multipart> calls."
1334 msgstr ""
1335
1336 #. type: =head2
1337 #: ../src/guestfs.pod:631
1338 msgid "SPECIAL CONSIDERATIONS FOR WINDOWS GUESTS"
1339 msgstr ""
1340
1341 #. type: textblock
1342 #: ../src/guestfs.pod:633
1343 msgid ""
1344 "Libguestfs can mount NTFS partitions.  It does this using the L<http://www."
1345 "ntfs-3g.org/> driver."
1346 msgstr ""
1347
1348 #. type: =head3
1349 #: ../src/guestfs.pod:636
1350 msgid "DRIVE LETTERS AND PATHS"
1351 msgstr ""
1352
1353 #. type: textblock
1354 #: ../src/guestfs.pod:638
1355 msgid ""
1356 "DOS and Windows still use drive letters, and the filesystems are always "
1357 "treated as case insensitive by Windows itself, and therefore you might find "
1358 "a Windows configuration file referring to a path like C<c:\\windows"
1359 "\\system32>.  When the filesystem is mounted in libguestfs, that directory "
1360 "might be referred to as C</WINDOWS/System32>."
1361 msgstr ""
1362
1363 #. type: textblock
1364 #: ../src/guestfs.pod:644
1365 msgid ""
1366 "Drive letter mappings can be found using inspection (see L</INSPECTION> and "
1367 "L</guestfs_inspect_get_drive_mappings>)"
1368 msgstr ""
1369
1370 #. type: textblock
1371 #: ../src/guestfs.pod:647
1372 msgid ""
1373 "Dealing with separator characters (backslash vs forward slash) is outside "
1374 "the scope of libguestfs, but usually a simple character replacement will "
1375 "work."
1376 msgstr ""
1377
1378 #. type: textblock
1379 #: ../src/guestfs.pod:651
1380 msgid ""
1381 "To resolve the case insensitivity of paths, call L</"
1382 "guestfs_case_sensitive_path>."
1383 msgstr ""
1384
1385 #. type: =head3
1386 #: ../src/guestfs.pod:654
1387 msgid "ACCESSING THE WINDOWS REGISTRY"
1388 msgstr ""
1389
1390 #. type: textblock
1391 #: ../src/guestfs.pod:656
1392 msgid ""
1393 "Libguestfs also provides some help for decoding Windows Registry \"hive\" "
1394 "files, through the library C<hivex> which is part of the libguestfs project "
1395 "although ships as a separate tarball.  You have to locate and download the "
1396 "hive file(s) yourself, and then pass them to C<hivex> functions.  See also "
1397 "the programs L<hivexml(1)>, L<hivexsh(1)>, L<hivexregedit(1)> and L<virt-win-"
1398 "reg(1)> for more help on this issue."
1399 msgstr ""
1400
1401 #. type: =head3
1402 #: ../src/guestfs.pod:664
1403 msgid "SYMLINKS ON NTFS-3G FILESYSTEMS"
1404 msgstr ""
1405
1406 #. type: textblock
1407 #: ../src/guestfs.pod:666
1408 msgid ""
1409 "Ntfs-3g tries to rewrite \"Junction Points\" and NTFS \"symbolic links\" to "
1410 "provide something which looks like a Linux symlink.  The way it tries to do "
1411 "the rewriting is described here:"
1412 msgstr ""
1413
1414 #. type: textblock
1415 #: ../src/guestfs.pod:670
1416 msgid ""
1417 "L<http://www.tuxera.com/community/ntfs-3g-advanced/junction-points-and-"
1418 "symbolic-links/>"
1419 msgstr ""
1420 "L<http://www.tuxera.com/community/ntfs-3g-advanced/junction-points-and-"
1421 "symbolic-links/>"
1422
1423 #. type: textblock
1424 #: ../src/guestfs.pod:672
1425 msgid ""
1426 "The essential problem is that ntfs-3g simply does not have enough "
1427 "information to do a correct job.  NTFS links can contain drive letters and "
1428 "references to external device GUIDs that ntfs-3g has no way of resolving.  "
1429 "It is almost certainly the case that libguestfs callers should ignore what "
1430 "ntfs-3g does (ie. don't use L</guestfs_readlink> on NTFS volumes)."
1431 msgstr ""
1432
1433 #. type: textblock
1434 #: ../src/guestfs.pod:679
1435 msgid ""
1436 "Instead if you encounter a symbolic link on an ntfs-3g filesystem, use L</"
1437 "guestfs_lgetxattr> to read the C<system.ntfs_reparse_data> extended "
1438 "attribute, and read the raw reparse data from that (you can find the format "
1439 "documented in various places around the web)."
1440 msgstr ""
1441
1442 #. type: =head3
1443 #: ../src/guestfs.pod:684
1444 msgid "EXTENDED ATTRIBUTES ON NTFS-3G FILESYSTEMS"
1445 msgstr ""
1446
1447 #. type: textblock
1448 #: ../src/guestfs.pod:686
1449 msgid ""
1450 "There are other useful extended attributes that can be read from ntfs-3g "
1451 "filesystems (using L</guestfs_getxattr>).  See:"
1452 msgstr ""
1453
1454 #. type: textblock
1455 #: ../src/guestfs.pod:689
1456 msgid ""
1457 "L<http://www.tuxera.com/community/ntfs-3g-advanced/extended-attributes/>"
1458 msgstr ""
1459 "L<http://www.tuxera.com/community/ntfs-3g-advanced/extended-attributes/>"
1460
1461 #. type: =head2
1462 #: ../src/guestfs.pod:691
1463 msgid "USING LIBGUESTFS WITH OTHER PROGRAMMING LANGUAGES"
1464 msgstr ""
1465
1466 #. type: textblock
1467 #: ../src/guestfs.pod:693
1468 msgid ""
1469 "Although we don't want to discourage you from using the C API, we will "
1470 "mention here that the same API is also available in other languages."
1471 msgstr ""
1472
1473 #. type: textblock
1474 #: ../src/guestfs.pod:696
1475 msgid ""
1476 "The API is broadly identical in all supported languages.  This means that "
1477 "the C call C<guestfs_add_drive_ro(g,file)> is C<$g-E<gt>add_drive_ro($file)> "
1478 "in Perl, C<g.add_drive_ro(file)> in Python, and C<g#add_drive_ro file> in "
1479 "OCaml.  In other words, a straightforward, predictable isomorphism between "
1480 "each language."
1481 msgstr ""
1482
1483 #. type: textblock
1484 #: ../src/guestfs.pod:702
1485 msgid ""
1486 "Error messages are automatically transformed into exceptions if the language "
1487 "supports it."
1488 msgstr ""
1489
1490 #. type: textblock
1491 #: ../src/guestfs.pod:705
1492 msgid ""
1493 "We don't try to \"object orientify\" parts of the API in OO languages, "
1494 "although contributors are welcome to write higher level APIs above what we "
1495 "provide in their favourite languages if they wish."
1496 msgstr ""
1497
1498 #. type: =item
1499 #: ../src/guestfs.pod:711
1500 msgid "B<C++>"
1501 msgstr "B<C++>"
1502
1503 #. type: textblock
1504 #: ../src/guestfs.pod:713
1505 msgid ""
1506 "You can use the I<guestfs.h> header file from C++ programs.  The C++ API is "
1507 "identical to the C API.  C++ classes and exceptions are not used."
1508 msgstr ""
1509
1510 #. type: =item
1511 #: ../src/guestfs.pod:717
1512 msgid "B<C#>"
1513 msgstr "B<C#>"
1514
1515 #. type: textblock
1516 #: ../src/guestfs.pod:719
1517 msgid ""
1518 "The C# bindings are highly experimental.  Please read the warnings at the "
1519 "top of C<csharp/Libguestfs.cs>."
1520 msgstr ""
1521
1522 #. type: =item
1523 #: ../src/guestfs.pod:722
1524 msgid "B<Haskell>"
1525 msgstr "B<Haskell>"
1526
1527 #. type: textblock
1528 #: ../src/guestfs.pod:724
1529 msgid ""
1530 "This is the only language binding that is working but incomplete.  Only "
1531 "calls which return simple integers have been bound in Haskell, and we are "
1532 "looking for help to complete this binding."
1533 msgstr ""
1534
1535 #. type: =item
1536 #: ../src/guestfs.pod:728
1537 msgid "B<Java>"
1538 msgstr "B<Java>"
1539
1540 #. type: textblock
1541 #: ../src/guestfs.pod:730
1542 msgid ""
1543 "Full documentation is contained in the Javadoc which is distributed with "
1544 "libguestfs."
1545 msgstr ""
1546
1547 #. type: =item
1548 #: ../src/guestfs.pod:733
1549 msgid "B<OCaml>"
1550 msgstr "B<OCaml>"
1551
1552 #. type: textblock
1553 #: ../src/guestfs.pod:735
1554 msgid "See L<guestfs-ocaml(3)>."
1555 msgstr "Див. L<guestfs-ocaml(3)>."
1556
1557 #. type: =item
1558 #: ../src/guestfs.pod:737
1559 msgid "B<Perl>"
1560 msgstr "B<Perl>"
1561
1562 #. type: textblock
1563 #: ../src/guestfs.pod:739
1564 msgid "See L<guestfs-perl(3)> and L<Sys::Guestfs(3)>."
1565 msgstr "Див. L<guestfs-perl(3)> та L<Sys::Guestfs(3)>."
1566
1567 #. type: =item
1568 #: ../src/guestfs.pod:741
1569 msgid "B<PHP>"
1570 msgstr "B<PHP>"
1571
1572 #. type: textblock
1573 #: ../src/guestfs.pod:743
1574 msgid ""
1575 "For documentation see C<README-PHP> supplied with libguestfs sources or in "
1576 "the php-libguestfs package for your distribution."
1577 msgstr ""
1578
1579 #. type: textblock
1580 #: ../src/guestfs.pod:746
1581 msgid "The PHP binding only works correctly on 64 bit machines."
1582 msgstr ""
1583
1584 #. type: =item
1585 #: ../src/guestfs.pod:748
1586 msgid "B<Python>"
1587 msgstr "B<Python>"
1588
1589 #. type: textblock
1590 #: ../src/guestfs.pod:750
1591 msgid "See L<guestfs-python(3)>."
1592 msgstr "Див. L<guestfs-python(3)>."
1593
1594 #. type: =item
1595 #: ../src/guestfs.pod:752
1596 msgid "B<Ruby>"
1597 msgstr "B<Ruby>"
1598
1599 #. type: textblock
1600 #: ../src/guestfs.pod:754
1601 msgid "See L<guestfs-ruby(3)>."
1602 msgstr "Див. L<guestfs-ruby(3)>."
1603
1604 #. type: =item
1605 #: ../src/guestfs.pod:756
1606 msgid "B<shell scripts>"
1607 msgstr "B<скрипти оболонки>"
1608
1609 #. type: textblock
1610 #: ../src/guestfs.pod:758
1611 msgid "See L<guestfish(1)>."
1612 msgstr "Див. L<guestfish(1)>."
1613
1614 #. type: =head2
1615 #: ../src/guestfs.pod:762
1616 msgid "LIBGUESTFS GOTCHAS"
1617 msgstr ""
1618
1619 #. type: textblock
1620 #: ../src/guestfs.pod:764
1621 msgid ""
1622 "L<http://en.wikipedia.org/wiki/Gotcha_(programming)>: \"A feature of a "
1623 "system [...] that works in the way it is documented but is counterintuitive "
1624 "and almost invites mistakes.\""
1625 msgstr ""
1626
1627 #. type: textblock
1628 #: ../src/guestfs.pod:768
1629 msgid ""
1630 "Since we developed libguestfs and the associated tools, there are several "
1631 "things we would have designed differently, but are now stuck with for "
1632 "backwards compatibility or other reasons.  If there is ever a libguestfs 2.0 "
1633 "release, you can expect these to change.  Beware of them."
1634 msgstr ""
1635
1636 #. type: =item
1637 #: ../src/guestfs.pod:776
1638 msgid "Autosync / forgetting to sync."
1639 msgstr ""
1640
1641 #. type: textblock
1642 #: ../src/guestfs.pod:778
1643 msgid ""
1644 "I<Update:> Autosync is enabled by default for all API users starting from "
1645 "libguestfs 1.5.24.  This section only applies to older versions."
1646 msgstr ""
1647
1648 #. type: textblock
1649 #: ../src/guestfs.pod:781
1650 msgid ""
1651 "When modifying a filesystem from C or another language, you B<must> unmount "
1652 "all filesystems and call L</guestfs_sync> explicitly before you close the "
1653 "libguestfs handle.  You can also call:"
1654 msgstr ""
1655
1656 #. type: verbatim
1657 #: ../src/guestfs.pod:785
1658 #, no-wrap
1659 msgid ""
1660 " guestfs_set_autosync (g, 1);\n"
1661 "\n"
1662 msgstr ""
1663
1664 #. type: textblock
1665 #: ../src/guestfs.pod:787
1666 msgid ""
1667 "to have the unmount/sync done automatically for you when the handle 'g' is "
1668 "closed.  (This feature is called \"autosync\", L</guestfs_set_autosync> q.v.)"
1669 msgstr ""
1670
1671 #. type: textblock
1672 #: ../src/guestfs.pod:791
1673 msgid ""
1674 "If you forget to do this, then it is entirely possible that your changes "
1675 "won't be written out, or will be partially written, or (very rarely) that "
1676 "you'll get disk corruption."
1677 msgstr ""
1678
1679 #. type: textblock
1680 #: ../src/guestfs.pod:795
1681 msgid ""
1682 "Note that in L<guestfish(3)> autosync is the default.  So quick and dirty "
1683 "guestfish scripts that forget to sync will work just fine, which can make "
1684 "this very puzzling if you are trying to debug a problem."
1685 msgstr ""
1686
1687 #. type: =item
1688 #: ../src/guestfs.pod:799
1689 msgid "Mount option C<-o sync> should not be the default."
1690 msgstr ""
1691
1692 #. type: textblock
1693 #: ../src/guestfs.pod:801
1694 msgid ""
1695 "If you use L</guestfs_mount>, then C<-o sync,noatime> are added implicitly.  "
1696 "However C<-o sync> does not add any reliability benefit, but does have a "
1697 "very large performance impact."
1698 msgstr ""
1699
1700 #. type: textblock
1701 #: ../src/guestfs.pod:805
1702 msgid ""
1703 "The work around is to use L</guestfs_mount_options> and set the mount "
1704 "options that you actually want to use."
1705 msgstr ""
1706
1707 #. type: =item
1708 #: ../src/guestfs.pod:808
1709 msgid "Read-only should be the default."
1710 msgstr ""
1711
1712 #. type: textblock
1713 #: ../src/guestfs.pod:810
1714 msgid ""
1715 "In L<guestfish(3)>, I<--ro> should be the default, and you should have to "
1716 "specify I<--rw> if you want to make changes to the image."
1717 msgstr ""
1718
1719 #. type: textblock
1720 #: ../src/guestfs.pod:813
1721 msgid "This would reduce the potential to corrupt live VM images."
1722 msgstr ""
1723
1724 #. type: textblock
1725 #: ../src/guestfs.pod:815
1726 msgid ""
1727 "Note that many filesystems change the disk when you just mount and unmount, "
1728 "even if you didn't perform any writes.  You need to use L</"
1729 "guestfs_add_drive_ro> to guarantee that the disk is not changed."
1730 msgstr ""
1731
1732 #. type: =item
1733 #: ../src/guestfs.pod:819
1734 msgid "guestfish command line is hard to use."
1735 msgstr ""
1736
1737 #. type: textblock
1738 #: ../src/guestfs.pod:821
1739 msgid ""
1740 "C<guestfish disk.img> doesn't do what people expect (open C<disk.img> for "
1741 "examination).  It tries to run a guestfish command C<disk.img> which doesn't "
1742 "exist, so it fails.  In earlier versions of guestfish the error message was "
1743 "also unintuitive, but we have corrected this since.  Like the Bourne shell, "
1744 "we should have used C<guestfish -c command> to run commands."
1745 msgstr ""
1746
1747 #. type: =item
1748 #: ../src/guestfs.pod:828
1749 msgid "guestfish megabyte modifiers don't work right on all commands"
1750 msgstr ""
1751
1752 #. type: textblock
1753 #: ../src/guestfs.pod:830
1754 msgid ""
1755 "In recent guestfish you can use C<1M> to mean 1 megabyte (and similarly for "
1756 "other modifiers).  What guestfish actually does is to multiply the number "
1757 "part by the modifier part and pass the result to the C API.  However this "
1758 "doesn't work for a few APIs which aren't expecting bytes, but are already "
1759 "expecting some other unit (eg. megabytes)."
1760 msgstr ""
1761
1762 #. type: textblock
1763 #: ../src/guestfs.pod:837
1764 msgid "The most common is L</guestfs_lvcreate>.  The guestfish command:"
1765 msgstr ""
1766
1767 #. type: verbatim
1768 #: ../src/guestfs.pod:839
1769 #, no-wrap
1770 msgid ""
1771 " lvcreate LV VG 100M\n"
1772 "\n"
1773 msgstr ""
1774
1775 #. type: textblock
1776 #: ../src/guestfs.pod:841
1777 msgid ""
1778 "does not do what you might expect.  Instead because L</guestfs_lvcreate> is "
1779 "already expecting megabytes, this tries to create a 100 I<terabyte> (100 "
1780 "megabytes * megabytes) logical volume.  The error message you get from this "
1781 "is also a little obscure."
1782 msgstr ""
1783
1784 #. type: textblock
1785 #: ../src/guestfs.pod:846
1786 msgid ""
1787 "This could be fixed in the generator by specially marking parameters and "
1788 "return values which take bytes or other units."
1789 msgstr ""
1790
1791 #. type: =item
1792 #: ../src/guestfs.pod:849
1793 msgid "Ambiguity between devices and paths"
1794 msgstr ""
1795
1796 #. type: textblock
1797 #: ../src/guestfs.pod:851
1798 msgid ""
1799 "There is a subtle ambiguity in the API between a device name (eg. C</dev/"
1800 "sdb2>) and a similar pathname.  A file might just happen to be called "
1801 "C<sdb2> in the directory C</dev> (consider some non-Unix VM image)."
1802 msgstr ""
1803
1804 #. type: textblock
1805 #: ../src/guestfs.pod:856
1806 msgid ""
1807 "In the current API we usually resolve this ambiguity by having two separate "
1808 "calls, for example L</guestfs_checksum> and L</guestfs_checksum_device>.  "
1809 "Some API calls are ambiguous and (incorrectly) resolve the problem by "
1810 "detecting if the path supplied begins with C</dev/>."
1811 msgstr ""
1812
1813 #. type: textblock
1814 #: ../src/guestfs.pod:862
1815 msgid ""
1816 "To avoid both the ambiguity and the need to duplicate some calls, we could "
1817 "make paths/devices into structured names.  One way to do this would be to "
1818 "use a notation like grub (C<hd(0,0)>), although nobody really likes this "
1819 "aspect of grub.  Another way would be to use a structured type, equivalent "
1820 "to this OCaml type:"
1821 msgstr ""
1822
1823 #. type: verbatim
1824 #: ../src/guestfs.pod:868
1825 #, no-wrap
1826 msgid ""
1827 " type path = Path of string | Device of int | Partition of int * int\n"
1828 "\n"
1829 msgstr ""
1830
1831 #. type: textblock
1832 #: ../src/guestfs.pod:870
1833 msgid "which would allow you to pass arguments like:"
1834 msgstr ""
1835
1836 #. type: verbatim
1837 #: ../src/guestfs.pod:872
1838 #, no-wrap
1839 msgid ""
1840 " Path \"/foo/bar\"\n"
1841 " Device 1            (* /dev/sdb, or perhaps /dev/sda *)\n"
1842 " Partition (1, 2)    (* /dev/sdb2 (or is it /dev/sda2 or /dev/sdb3?) *)\n"
1843 " Path \"/dev/sdb2\"    (* not a device *)\n"
1844 "\n"
1845 msgstr ""
1846
1847 #. type: textblock
1848 #: ../src/guestfs.pod:877
1849 msgid ""
1850 "As you can see there are still problems to resolve even with this "
1851 "representation.  Also consider how it might work in guestfish."
1852 msgstr ""
1853
1854 #. type: =head2
1855 #: ../src/guestfs.pod:882
1856 msgid "KEYS AND PASSPHRASES"
1857 msgstr ""
1858
1859 #. type: textblock
1860 #: ../src/guestfs.pod:884
1861 msgid ""
1862 "Certain libguestfs calls take a parameter that contains sensitive key "
1863 "material, passed in as a C string."
1864 msgstr ""
1865
1866 #. type: textblock
1867 #: ../src/guestfs.pod:887
1868 msgid ""
1869 "In the future we would hope to change the libguestfs implementation so that "
1870 "keys are L<mlock(2)>-ed into physical RAM, and thus can never end up in "
1871 "swap.  However this is I<not> done at the moment, because of the complexity "
1872 "of such an implementation."
1873 msgstr ""
1874
1875 #. type: textblock
1876 #: ../src/guestfs.pod:892
1877 msgid ""
1878 "Therefore you should be aware that any key parameter you pass to libguestfs "
1879 "might end up being written out to the swap partition.  If this is a concern, "
1880 "scrub the swap partition or don't use libguestfs on encrypted devices."
1881 msgstr ""
1882
1883 #. type: =head2
1884 #: ../src/guestfs.pod:897
1885 msgid "MULTIPLE HANDLES AND MULTIPLE THREADS"
1886 msgstr ""
1887
1888 #. type: textblock
1889 #: ../src/guestfs.pod:899
1890 msgid ""
1891 "All high-level libguestfs actions are synchronous.  If you want to use "
1892 "libguestfs asynchronously then you must create a thread."
1893 msgstr ""
1894
1895 #. type: textblock
1896 #: ../src/guestfs.pod:902
1897 msgid ""
1898 "Only use the handle from a single thread.  Either use the handle exclusively "
1899 "from one thread, or provide your own mutex so that two threads cannot issue "
1900 "calls on the same handle at the same time."
1901 msgstr ""
1902
1903 #. type: textblock
1904 #: ../src/guestfs.pod:906
1905 msgid ""
1906 "See the graphical program guestfs-browser for one possible architecture for "
1907 "multithreaded programs using libvirt and libguestfs."
1908 msgstr ""
1909
1910 #. type: =head2
1911 #: ../src/guestfs.pod:909
1912 msgid "PATH"
1913 msgstr "ШЛЯХ"
1914
1915 #. type: textblock
1916 #: ../src/guestfs.pod:911
1917 msgid ""
1918 "Libguestfs needs a supermin appliance, which it finds by looking along an "
1919 "internal path."
1920 msgstr ""
1921
1922 #. type: textblock
1923 #: ../src/guestfs.pod:914
1924 msgid ""
1925 "By default it looks for these in the directory C<$libdir/guestfs> (eg. C</"
1926 "usr/local/lib/guestfs> or C</usr/lib64/guestfs>)."
1927 msgstr ""
1928
1929 #. type: textblock
1930 #: ../src/guestfs.pod:917
1931 msgid ""
1932 "Use L</guestfs_set_path> or set the environment variable L</LIBGUESTFS_PATH> "
1933 "to change the directories that libguestfs will search in.  The value is a "
1934 "colon-separated list of paths.  The current directory is I<not> searched "
1935 "unless the path contains an empty element or C<.>.  For example "
1936 "C<LIBGUESTFS_PATH=:/usr/lib/guestfs> would search the current directory and "
1937 "then C</usr/lib/guestfs>."
1938 msgstr ""
1939
1940 #. type: =head2
1941 #: ../src/guestfs.pod:924
1942 msgid "QEMU WRAPPERS"
1943 msgstr ""
1944
1945 #. type: textblock
1946 #: ../src/guestfs.pod:926
1947 msgid ""
1948 "If you want to compile your own qemu, run qemu from a non-standard location, "
1949 "or pass extra arguments to qemu, then you can write a shell-script wrapper "
1950 "around qemu."
1951 msgstr ""
1952
1953 #. type: textblock
1954 #: ../src/guestfs.pod:930
1955 msgid ""
1956 "There is one important rule to remember: you I<must C<exec qemu>> as the "
1957 "last command in the shell script (so that qemu replaces the shell and "
1958 "becomes the direct child of the libguestfs-using program).  If you don't do "
1959 "this, then the qemu process won't be cleaned up correctly."
1960 msgstr ""
1961
1962 #. type: textblock
1963 #: ../src/guestfs.pod:935
1964 msgid ""
1965 "Here is an example of a wrapper, where I have built my own copy of qemu from "
1966 "source:"
1967 msgstr ""
1968
1969 #. type: verbatim
1970 #: ../src/guestfs.pod:938
1971 #, no-wrap
1972 msgid ""
1973 " #!/bin/sh -\n"
1974 " qemudir=/home/rjones/d/qemu\n"
1975 " exec $qemudir/x86_64-softmmu/qemu-system-x86_64 -L $qemudir/pc-bios \"$@\"\n"
1976 "\n"
1977 msgstr ""
1978
1979 #. type: textblock
1980 #: ../src/guestfs.pod:942
1981 msgid ""
1982 "Save this script as C</tmp/qemu.wrapper> (or wherever), C<chmod +x>, and "
1983 "then use it by setting the LIBGUESTFS_QEMU environment variable.  For "
1984 "example:"
1985 msgstr ""
1986
1987 #. type: verbatim
1988 #: ../src/guestfs.pod:946
1989 #, no-wrap
1990 msgid ""
1991 " LIBGUESTFS_QEMU=/tmp/qemu.wrapper guestfish\n"
1992 "\n"
1993 msgstr ""
1994
1995 #. type: textblock
1996 #: ../src/guestfs.pod:948
1997 msgid ""
1998 "Note that libguestfs also calls qemu with the -help and -version options in "
1999 "order to determine features."
2000 msgstr ""
2001
2002 #. type: =head2
2003 #: ../src/guestfs.pod:951
2004 msgid "ATTACHING TO RUNNING DAEMONS"
2005 msgstr ""
2006
2007 #. type: textblock
2008 #: ../src/guestfs.pod:953
2009 msgid ""
2010 "I<Note (1):> This is B<highly experimental> and has a tendency to eat "
2011 "babies.  Use with caution."
2012 msgstr ""
2013
2014 #. type: textblock
2015 #: ../src/guestfs.pod:956
2016 msgid ""
2017 "I<Note (2):> This section explains how to attach to a running daemon from a "
2018 "low level perspective.  For most users, simply using virt tools such as "
2019 "L<guestfish(1)> with the I<--live> option will \"just work\"."
2020 msgstr ""
2021
2022 #. type: =head3
2023 #: ../src/guestfs.pod:960
2024 msgid "Using guestfs_set_attach_method"
2025 msgstr ""
2026
2027 #. type: textblock
2028 #: ../src/guestfs.pod:962
2029 msgid ""
2030 "By calling L</guestfs_set_attach_method> you can change how the library "
2031 "connects to the C<guestfsd> daemon in L</guestfs_launch> (read L</"
2032 "ARCHITECTURE> for some background)."
2033 msgstr ""
2034
2035 #. type: textblock
2036 #: ../src/guestfs.pod:966
2037 msgid ""
2038 "The normal attach method is C<appliance>, where a small appliance is created "
2039 "containing the daemon, and then the library connects to this."
2040 msgstr ""
2041
2042 #. type: textblock
2043 #: ../src/guestfs.pod:969
2044 msgid ""
2045 "Setting attach method to C<unix:I<path>> (where I<path> is the path of a "
2046 "Unix domain socket) causes L</guestfs_launch> to connect to an existing "
2047 "daemon over the Unix domain socket."
2048 msgstr ""
2049
2050 #. type: textblock
2051 #: ../src/guestfs.pod:973
2052 msgid ""
2053 "The normal use for this is to connect to a running virtual machine that "
2054 "contains a C<guestfsd> daemon, and send commands so you can read and write "
2055 "files inside the live virtual machine."
2056 msgstr ""
2057
2058 #. type: =head3
2059 #: ../src/guestfs.pod:977
2060 msgid "Using guestfs_add_domain with live flag"
2061 msgstr ""
2062
2063 #. type: textblock
2064 #: ../src/guestfs.pod:979
2065 msgid ""
2066 "L</guestfs_add_domain> provides some help for getting the correct attach "
2067 "method.  If you pass the C<live> option to this function, then (if the "
2068 "virtual machine is running) it will examine the libvirt XML looking for a "
2069 "virtio-serial channel to connect to:"
2070 msgstr ""
2071
2072 #. type: verbatim
2073 #: ../src/guestfs.pod:985
2074 #, no-wrap
2075 msgid ""
2076 " <domain>\n"
2077 "   ...\n"
2078 "   <devices>\n"
2079 "     ...\n"
2080 "     <channel type='unix'>\n"
2081 "       <source mode='bind' path='/path/to/socket'/>\n"
2082 "       <target type='virtio' name='org.libguestfs.channel.0'/>\n"
2083 "     </channel>\n"
2084 "     ...\n"
2085 "   </devices>\n"
2086 " </domain>\n"
2087 "\n"
2088 msgstr ""
2089
2090 #. type: textblock
2091 #: ../src/guestfs.pod:997
2092 msgid ""
2093 "L</guestfs_add_domain> extracts C</path/to/socket> and sets the attach "
2094 "method to C<unix:/path/to/socket>."
2095 msgstr ""
2096
2097 #. type: textblock
2098 #: ../src/guestfs.pod:1000
2099 msgid ""
2100 "Some of the libguestfs tools (including guestfish) support a I<--live> "
2101 "option which is passed through to L</guestfs_add_domain> thus allowing you "
2102 "to attach to and modify live virtual machines."
2103 msgstr ""
2104
2105 #. type: textblock
2106 #: ../src/guestfs.pod:1004
2107 msgid ""
2108 "The virtual machine needs to have been set up beforehand so that it has the "
2109 "virtio-serial channel and so that guestfsd is running inside it."
2110 msgstr ""
2111
2112 #. type: =head2
2113 #: ../src/guestfs.pod:1008
2114 msgid "ABI GUARANTEE"
2115 msgstr ""
2116
2117 #. type: textblock
2118 #: ../src/guestfs.pod:1010
2119 msgid ""
2120 "We guarantee the libguestfs ABI (binary interface), for public, high-level "
2121 "actions as outlined in this section.  Although we will deprecate some "
2122 "actions, for example if they get replaced by newer calls, we will keep the "
2123 "old actions forever.  This allows you the developer to program in confidence "
2124 "against the libguestfs API."
2125 msgstr ""
2126
2127 #. type: =head2
2128 #: ../src/guestfs.pod:1016
2129 msgid "BLOCK DEVICE NAMING"
2130 msgstr ""
2131
2132 #. type: textblock
2133 #: ../src/guestfs.pod:1018
2134 msgid ""
2135 "In the kernel there is now quite a profusion of schemata for naming block "
2136 "devices (in this context, by I<block device> I mean a physical or virtual "
2137 "hard drive).  The original Linux IDE driver used names starting with C</dev/"
2138 "hd*>.  SCSI devices have historically used a different naming scheme, C</dev/"
2139 "sd*>.  When the Linux kernel I<libata> driver became a popular replacement "
2140 "for the old IDE driver (particularly for SATA devices) those devices also "
2141 "used the C</dev/sd*> scheme.  Additionally we now have virtual machines with "
2142 "paravirtualized drivers.  This has created several different naming systems, "
2143 "such as C</dev/vd*> for virtio disks and C</dev/xvd*> for Xen PV disks."
2144 msgstr ""
2145
2146 #. type: textblock
2147 #: ../src/guestfs.pod:1030
2148 msgid ""
2149 "As discussed above, libguestfs uses a qemu appliance running an embedded "
2150 "Linux kernel to access block devices.  We can run a variety of appliances "
2151 "based on a variety of Linux kernels."
2152 msgstr ""
2153
2154 #. type: textblock
2155 #: ../src/guestfs.pod:1034
2156 msgid ""
2157 "This causes a problem for libguestfs because many API calls use device or "
2158 "partition names.  Working scripts and the recipe (example) scripts that we "
2159 "make available over the internet could fail if the naming scheme changes."
2160 msgstr ""
2161
2162 #. type: textblock
2163 #: ../src/guestfs.pod:1039
2164 msgid ""
2165 "Therefore libguestfs defines C</dev/sd*> as the I<standard naming scheme>.  "
2166 "Internally C</dev/sd*> names are translated, if necessary, to other names as "
2167 "required.  For example, under RHEL 5 which uses the C</dev/hd*> scheme, any "
2168 "device parameter C</dev/sda2> is translated to C</dev/hda2> transparently."
2169 msgstr ""
2170
2171 #. type: textblock
2172 #: ../src/guestfs.pod:1045
2173 msgid ""
2174 "Note that this I<only> applies to parameters.  The L</guestfs_list_devices>, "
2175 "L</guestfs_list_partitions> and similar calls return the true names of the "
2176 "devices and partitions as known to the appliance."
2177 msgstr ""
2178
2179 #. type: =head3
2180 #: ../src/guestfs.pod:1050
2181 msgid "ALGORITHM FOR BLOCK DEVICE NAME TRANSLATION"
2182 msgstr ""
2183
2184 #. type: textblock
2185 #: ../src/guestfs.pod:1052
2186 msgid ""
2187 "Usually this translation is transparent.  However in some (very rare)  cases "
2188 "you may need to know the exact algorithm.  Such cases include where you use "
2189 "L</guestfs_config> to add a mixture of virtio and IDE devices to the qemu-"
2190 "based appliance, so have a mixture of C</dev/sd*> and C</dev/vd*> devices."
2191 msgstr ""
2192
2193 #. type: textblock
2194 #: ../src/guestfs.pod:1058
2195 msgid ""
2196 "The algorithm is applied only to I<parameters> which are known to be either "
2197 "device or partition names.  Return values from functions such as L</"
2198 "guestfs_list_devices> are never changed."
2199 msgstr ""
2200
2201 #. type: textblock
2202 #: ../src/guestfs.pod:1066
2203 msgid "Is the string a parameter which is a device or partition name?"
2204 msgstr ""
2205
2206 #. type: textblock
2207 #: ../src/guestfs.pod:1070
2208 msgid "Does the string begin with C</dev/sd>?"
2209 msgstr ""
2210
2211 #. type: textblock
2212 #: ../src/guestfs.pod:1074
2213 msgid ""
2214 "Does the named device exist? If so, we use that device.  However if I<not> "
2215 "then we continue with this algorithm."
2216 msgstr ""
2217
2218 #. type: textblock
2219 #: ../src/guestfs.pod:1079
2220 msgid "Replace initial C</dev/sd> string with C</dev/hd>."
2221 msgstr ""
2222
2223 #. type: textblock
2224 #: ../src/guestfs.pod:1081
2225 msgid "For example, change C</dev/sda2> to C</dev/hda2>."
2226 msgstr ""
2227
2228 #. type: textblock
2229 #: ../src/guestfs.pod:1083
2230 msgid "If that named device exists, use it.  If not, continue."
2231 msgstr ""
2232
2233 #. type: textblock
2234 #: ../src/guestfs.pod:1087
2235 msgid "Replace initial C</dev/sd> string with C</dev/vd>."
2236 msgstr ""
2237
2238 #. type: textblock
2239 #: ../src/guestfs.pod:1089
2240 msgid "If that named device exists, use it.  If not, return an error."
2241 msgstr ""
2242
2243 #. type: =head3
2244 #: ../src/guestfs.pod:1093
2245 msgid "PORTABILITY CONCERNS WITH BLOCK DEVICE NAMING"
2246 msgstr ""
2247
2248 #. type: textblock
2249 #: ../src/guestfs.pod:1095
2250 msgid ""
2251 "Although the standard naming scheme and automatic translation is useful for "
2252 "simple programs and guestfish scripts, for larger programs it is best not to "
2253 "rely on this mechanism."
2254 msgstr ""
2255
2256 #. type: textblock
2257 #: ../src/guestfs.pod:1099
2258 msgid ""
2259 "Where possible for maximum future portability programs using libguestfs "
2260 "should use these future-proof techniques:"
2261 msgstr ""
2262
2263 #. type: textblock
2264 #: ../src/guestfs.pod:1106
2265 msgid ""
2266 "Use L</guestfs_list_devices> or L</guestfs_list_partitions> to list actual "
2267 "device names, and then use those names directly."
2268 msgstr ""
2269
2270 #. type: textblock
2271 #: ../src/guestfs.pod:1109
2272 msgid ""
2273 "Since those device names exist by definition, they will never be translated."
2274 msgstr ""
2275
2276 #. type: textblock
2277 #: ../src/guestfs.pod:1114
2278 msgid ""
2279 "Use higher level ways to identify filesystems, such as LVM names, UUIDs and "
2280 "filesystem labels."
2281 msgstr ""
2282
2283 #. type: =head1
2284 #: ../src/guestfs.pod:1119
2285 msgid "SECURITY"
2286 msgstr "БЕЗПЕКА"
2287
2288 #. type: textblock
2289 #: ../src/guestfs.pod:1121
2290 msgid ""
2291 "This section discusses security implications of using libguestfs, "
2292 "particularly with untrusted or malicious guests or disk images."
2293 msgstr ""
2294
2295 #. type: =head2
2296 #: ../src/guestfs.pod:1124
2297 msgid "GENERAL SECURITY CONSIDERATIONS"
2298 msgstr ""
2299
2300 #. type: textblock
2301 #: ../src/guestfs.pod:1126
2302 msgid ""
2303 "Be careful with any files or data that you download from a guest (by "
2304 "\"download\" we mean not just the L</guestfs_download> command but any "
2305 "command that reads files, filenames, directories or anything else from a "
2306 "disk image).  An attacker could manipulate the data to fool your program "
2307 "into doing the wrong thing.  Consider cases such as:"
2308 msgstr ""
2309
2310 #. type: textblock
2311 #: ../src/guestfs.pod:1136
2312 msgid "the data (file etc) not being present"
2313 msgstr ""
2314
2315 #. type: textblock
2316 #: ../src/guestfs.pod:1140
2317 msgid "being present but empty"
2318 msgstr ""
2319
2320 #. type: textblock
2321 #: ../src/guestfs.pod:1144
2322 msgid "being much larger than normal"
2323 msgstr ""
2324
2325 #. type: textblock
2326 #: ../src/guestfs.pod:1148
2327 msgid "containing arbitrary 8 bit data"
2328 msgstr ""
2329
2330 #. type: textblock
2331 #: ../src/guestfs.pod:1152
2332 msgid "being in an unexpected character encoding"
2333 msgstr ""
2334
2335 #. type: textblock
2336 #: ../src/guestfs.pod:1156
2337 msgid "containing homoglyphs."
2338 msgstr ""
2339
2340 #. type: =head2
2341 #: ../src/guestfs.pod:1160
2342 msgid "SECURITY OF MOUNTING FILESYSTEMS"
2343 msgstr ""
2344
2345 #. type: textblock
2346 #: ../src/guestfs.pod:1162
2347 msgid ""
2348 "When you mount a filesystem under Linux, mistakes in the kernel filesystem "
2349 "(VFS) module can sometimes be escalated into exploits by deliberately "
2350 "creating a malicious, malformed filesystem.  These exploits are very severe "
2351 "for two reasons.  Firstly there are very many filesystem drivers in the "
2352 "kernel, and many of them are infrequently used and not much developer "
2353 "attention has been paid to the code.  Linux userspace helps potential "
2354 "crackers by detecting the filesystem type and automatically choosing the "
2355 "right VFS driver, even if that filesystem type is obscure or unexpected for "
2356 "the administrator.  Secondly, a kernel-level exploit is like a local root "
2357 "exploit (worse in some ways), giving immediate and total access to the "
2358 "system right down to the hardware level."
2359 msgstr ""
2360
2361 #. type: textblock
2362 #: ../src/guestfs.pod:1175
2363 msgid ""
2364 "That explains why you should never mount a filesystem from an untrusted "
2365 "guest on your host kernel.  How about libguestfs? We run a Linux kernel "
2366 "inside a qemu virtual machine, usually running as a non-root user.  The "
2367 "attacker would need to write a filesystem which first exploited the kernel, "
2368 "and then exploited either qemu virtualization (eg. a faulty qemu driver) or "
2369 "the libguestfs protocol, and finally to be as serious as the host kernel "
2370 "exploit it would need to escalate its privileges to root.  This multi-step "
2371 "escalation, performed by a static piece of data, is thought to be extremely "
2372 "hard to do, although we never say 'never' about security issues."
2373 msgstr ""
2374
2375 #. type: textblock
2376 #: ../src/guestfs.pod:1186
2377 msgid ""
2378 "In any case callers can reduce the attack surface by forcing the filesystem "
2379 "type when mounting (use L</guestfs_mount_vfs>)."
2380 msgstr ""
2381
2382 #. type: =head2
2383 #: ../src/guestfs.pod:1189
2384 msgid "PROTOCOL SECURITY"
2385 msgstr ""
2386
2387 #. type: textblock
2388 #: ../src/guestfs.pod:1191
2389 msgid ""
2390 "The protocol is designed to be secure, being based on RFC 4506 (XDR)  with a "
2391 "defined upper message size.  However a program that uses libguestfs must "
2392 "also take care - for example you can write a program that downloads a binary "
2393 "from a disk image and executes it locally, and no amount of protocol "
2394 "security will save you from the consequences."
2395 msgstr ""
2396
2397 #. type: =head2
2398 #: ../src/guestfs.pod:1197
2399 msgid "INSPECTION SECURITY"
2400 msgstr ""
2401
2402 #. type: textblock
2403 #: ../src/guestfs.pod:1199
2404 msgid ""
2405 "Parts of the inspection API (see L</INSPECTION>) return untrusted strings "
2406 "directly from the guest, and these could contain any 8 bit data.  Callers "
2407 "should be careful to escape these before printing them to a structured file "
2408 "(for example, use HTML escaping if creating a web page)."
2409 msgstr ""
2410
2411 #. type: textblock
2412 #: ../src/guestfs.pod:1205
2413 msgid ""
2414 "Guest configuration may be altered in unusual ways by the administrator of "
2415 "the virtual machine, and may not reflect reality (particularly for untrusted "
2416 "or actively malicious guests).  For example we parse the hostname from "
2417 "configuration files like C</etc/sysconfig/network> that we find in the "
2418 "guest, but the guest administrator can easily manipulate these files to "
2419 "provide the wrong hostname."
2420 msgstr ""
2421
2422 #. type: textblock
2423 #: ../src/guestfs.pod:1213
2424 msgid ""
2425 "The inspection API parses guest configuration using two external libraries: "
2426 "Augeas (Linux configuration) and hivex (Windows Registry).  Both are "
2427 "designed to be robust in the face of malicious data, although denial of "
2428 "service attacks are still possible, for example with oversized configuration "
2429 "files."
2430 msgstr ""
2431
2432 #. type: =head2
2433 #: ../src/guestfs.pod:1219
2434 msgid "RUNNING UNTRUSTED GUEST COMMANDS"
2435 msgstr ""
2436
2437 #. type: textblock
2438 #: ../src/guestfs.pod:1221
2439 msgid ""
2440 "Be very cautious about running commands from the guest.  By running a "
2441 "command in the guest, you are giving CPU time to a binary that you do not "
2442 "control, under the same user account as the library, albeit wrapped in qemu "
2443 "virtualization.  More information and alternatives can be found in the "
2444 "section L</RUNNING COMMANDS>."
2445 msgstr ""
2446
2447 #. type: =head2
2448 #: ../src/guestfs.pod:1227
2449 msgid "CVE-2010-3851"
2450 msgstr "CVE-2010-3851"
2451
2452 #. type: textblock
2453 #: ../src/guestfs.pod:1229
2454 msgid "https://bugzilla.redhat.com/642934"
2455 msgstr "https://bugzilla.redhat.com/642934"
2456
2457 #. type: textblock
2458 #: ../src/guestfs.pod:1231
2459 msgid ""
2460 "This security bug concerns the automatic disk format detection that qemu "
2461 "does on disk images."
2462 msgstr ""
2463
2464 #. type: textblock
2465 #: ../src/guestfs.pod:1234
2466 msgid ""
2467 "A raw disk image is just the raw bytes, there is no header.  Other disk "
2468 "images like qcow2 contain a special header.  Qemu deals with this by looking "
2469 "for one of the known headers, and if none is found then assuming the disk "
2470 "image must be raw."
2471 msgstr ""
2472
2473 #. type: textblock
2474 #: ../src/guestfs.pod:1239
2475 msgid ""
2476 "This allows a guest which has been given a raw disk image to write some "
2477 "other header.  At next boot (or when the disk image is accessed by "
2478 "libguestfs) qemu would do autodetection and think the disk image format was, "
2479 "say, qcow2 based on the header written by the guest."
2480 msgstr ""
2481
2482 #. type: textblock
2483 #: ../src/guestfs.pod:1244
2484 msgid ""
2485 "This in itself would not be a problem, but qcow2 offers many features, one "
2486 "of which is to allow a disk image to refer to another image (called the "
2487 "\"backing disk\").  It does this by placing the path to the backing disk "
2488 "into the qcow2 header.  This path is not validated and could point to any "
2489 "host file (eg. \"/etc/passwd\").  The backing disk is then exposed through "
2490 "\"holes\" in the qcow2 disk image, which of course is completely under the "
2491 "control of the attacker."
2492 msgstr ""
2493
2494 #. type: textblock
2495 #: ../src/guestfs.pod:1252
2496 msgid ""
2497 "In libguestfs this is rather hard to exploit except under two circumstances:"
2498 msgstr ""
2499
2500 #. type: textblock
2501 #: ../src/guestfs.pod:1259
2502 msgid "You have enabled the network or have opened the disk in write mode."
2503 msgstr ""
2504
2505 #. type: textblock
2506 #: ../src/guestfs.pod:1263
2507 msgid ""
2508 "You are also running untrusted code from the guest (see L</RUNNING "
2509 "COMMANDS>)."
2510 msgstr ""
2511
2512 #. type: textblock
2513 #: ../src/guestfs.pod:1268
2514 msgid ""
2515 "The way to avoid this is to specify the expected disk format when adding "
2516 "disks (the optional C<format> option to L</guestfs_add_drive_opts>).  You "
2517 "should always do this if the disk is raw format, and it's a good idea for "
2518 "other cases too."
2519 msgstr ""
2520
2521 #. type: textblock
2522 #: ../src/guestfs.pod:1273
2523 msgid ""
2524 "For disks added from libvirt using calls like L</guestfs_add_domain>, the "
2525 "format is fetched from libvirt and passed through."
2526 msgstr ""
2527
2528 #. type: textblock
2529 #: ../src/guestfs.pod:1276
2530 msgid ""
2531 "For libguestfs tools, use the I<--format> command line parameter as "
2532 "appropriate."
2533 msgstr ""
2534
2535 #. type: =head1
2536 #: ../src/guestfs.pod:1279
2537 msgid "CONNECTION MANAGEMENT"
2538 msgstr ""
2539
2540 #. type: =head2
2541 #: ../src/guestfs.pod:1281
2542 msgid "guestfs_h *"
2543 msgstr ""
2544
2545 #. type: textblock
2546 #: ../src/guestfs.pod:1283
2547 msgid ""
2548 "C<guestfs_h> is the opaque type representing a connection handle.  Create a "
2549 "handle by calling L</guestfs_create>.  Call L</guestfs_close> to free the "
2550 "handle and release all resources used."
2551 msgstr ""
2552
2553 #. type: textblock
2554 #: ../src/guestfs.pod:1287
2555 msgid ""
2556 "For information on using multiple handles and threads, see the section L</"
2557 "MULTIPLE HANDLES AND MULTIPLE THREADS> above."
2558 msgstr ""
2559
2560 #. type: =head2
2561 #: ../src/guestfs.pod:1290
2562 msgid "guestfs_create"
2563 msgstr ""
2564
2565 #. type: verbatim
2566 #: ../src/guestfs.pod:1292
2567 #, no-wrap
2568 msgid ""
2569 " guestfs_h *guestfs_create (void);\n"
2570 "\n"
2571 msgstr ""
2572
2573 #. type: textblock
2574 #: ../src/guestfs.pod:1294
2575 msgid "Create a connection handle."
2576 msgstr ""
2577
2578 #. type: textblock
2579 #: ../src/guestfs.pod:1296
2580 msgid ""
2581 "On success this returns a non-NULL pointer to a handle.  On error it returns "
2582 "NULL."
2583 msgstr ""
2584
2585 #. type: textblock
2586 #: ../src/guestfs.pod:1299
2587 msgid ""
2588 "You have to \"configure\" the handle after creating it.  This includes "
2589 "calling L</guestfs_add_drive_opts> (or one of the equivalent calls) on the "
2590 "handle at least once."
2591 msgstr ""
2592
2593 #. type: textblock
2594 #: ../src/guestfs.pod:1303
2595 msgid "After configuring the handle, you have to call L</guestfs_launch>."
2596 msgstr ""
2597
2598 #. type: textblock
2599 #: ../src/guestfs.pod:1305
2600 msgid ""
2601 "You may also want to configure error handling for the handle.  See the L</"
2602 "ERROR HANDLING> section below."
2603 msgstr ""
2604
2605 #. type: =head2
2606 #: ../src/guestfs.pod:1308
2607 msgid "guestfs_close"
2608 msgstr ""
2609
2610 #. type: verbatim
2611 #: ../src/guestfs.pod:1310
2612 #, no-wrap
2613 msgid ""
2614 " void guestfs_close (guestfs_h *g);\n"
2615 "\n"
2616 msgstr ""
2617
2618 #. type: textblock
2619 #: ../src/guestfs.pod:1312
2620 msgid "This closes the connection handle and frees up all resources used."
2621 msgstr ""
2622
2623 #. type: textblock
2624 #: ../src/guestfs.pod:1314
2625 msgid ""
2626 "If autosync was set on the handle and the handle was launched, then this "
2627 "implicitly calls various functions to unmount filesystems and sync the "
2628 "disk.  See L</guestfs_set_autosync> for more details."
2629 msgstr ""
2630
2631 #. type: textblock
2632 #: ../src/guestfs.pod:1318
2633 msgid "If a close callback was set on the handle, then it is called."
2634 msgstr ""
2635
2636 #. type: =head1
2637 #: ../src/guestfs.pod:1320
2638 msgid "ERROR HANDLING"
2639 msgstr "ОБРОБКА ПОМИЛОК"
2640
2641 #. type: textblock
2642 #: ../src/guestfs.pod:1322
2643 msgid ""
2644 "API functions can return errors.  For example, almost all functions that "
2645 "return C<int> will return C<-1> to indicate an error."
2646 msgstr ""
2647
2648 #. type: textblock
2649 #: ../src/guestfs.pod:1325
2650 msgid ""
2651 "Additional information is available for errors: an error message string and "
2652 "optionally an error number (errno) if the thing that failed was a system "
2653 "call."
2654 msgstr ""
2655
2656 #. type: textblock
2657 #: ../src/guestfs.pod:1329
2658 msgid ""
2659 "You can get at the additional information about the last error on the handle "
2660 "by calling L</guestfs_last_error>, L</guestfs_last_errno>, and/or by setting "
2661 "up an error handler with L</guestfs_set_error_handler>."
2662 msgstr ""
2663
2664 #. type: textblock
2665 #: ../src/guestfs.pod:1334
2666 msgid ""
2667 "When the handle is created, a default error handler is installed which "
2668 "prints the error message string to C<stderr>.  For small short-running "
2669 "command line programs it is sufficient to do:"
2670 msgstr ""
2671
2672 #. type: verbatim
2673 #: ../src/guestfs.pod:1338
2674 #, no-wrap
2675 msgid ""
2676 " if (guestfs_launch (g) == -1)\n"
2677 "   exit (EXIT_FAILURE);\n"
2678 "\n"
2679 msgstr ""
2680
2681 #. type: textblock
2682 #: ../src/guestfs.pod:1341
2683 msgid ""
2684 "since the default error handler will ensure that an error message has been "
2685 "printed to C<stderr> before the program exits."
2686 msgstr ""
2687
2688 #. type: textblock
2689 #: ../src/guestfs.pod:1344
2690 msgid ""
2691 "For other programs the caller will almost certainly want to install an "
2692 "alternate error handler or do error handling in-line like this:"
2693 msgstr ""
2694
2695 #. type: verbatim
2696 #: ../src/guestfs.pod:1347
2697 #, no-wrap
2698 msgid ""
2699 " g = guestfs_create ();\n"
2700 " \n"
2701 msgstr ""
2702
2703 #. type: verbatim
2704 #: ../src/guestfs.pod:1349
2705 #, no-wrap
2706 msgid ""
2707 " /* This disables the default behaviour of printing errors\n"
2708 "    on stderr. */\n"
2709 " guestfs_set_error_handler (g, NULL, NULL);\n"
2710 " \n"
2711 msgstr ""
2712
2713 #. type: verbatim
2714 #: ../src/guestfs.pod:1353
2715 #, no-wrap
2716 msgid ""
2717 " if (guestfs_launch (g) == -1) {\n"
2718 "   /* Examine the error message and print it etc. */\n"
2719 "   char *msg = guestfs_last_error (g);\n"
2720 "   int errnum = guestfs_last_errno (g);\n"
2721 "   fprintf (stderr, \"%s\\n\", msg);\n"
2722 "   /* ... */\n"
2723 "  }\n"
2724 "\n"
2725 msgstr ""
2726
2727 #. type: textblock
2728 #: ../src/guestfs.pod:1361
2729 msgid ""
2730 "Out of memory errors are handled differently.  The default action is to call "
2731 "L<abort(3)>.  If this is undesirable, then you can set a handler using L</"
2732 "guestfs_set_out_of_memory_handler>."
2733 msgstr ""
2734
2735 #. type: textblock
2736 #: ../src/guestfs.pod:1365
2737 msgid ""
2738 "L</guestfs_create> returns C<NULL> if the handle cannot be created, and "
2739 "because there is no handle if this happens there is no way to get additional "
2740 "error information.  However L</guestfs_create> is supposed to be a "
2741 "lightweight operation which can only fail because of insufficient memory (it "
2742 "returns NULL in this case)."
2743 msgstr ""
2744
2745 #. type: =head2
2746 #: ../src/guestfs.pod:1371
2747 msgid "guestfs_last_error"
2748 msgstr ""
2749
2750 #. type: verbatim
2751 #: ../src/guestfs.pod:1373
2752 #, no-wrap
2753 msgid ""
2754 " const char *guestfs_last_error (guestfs_h *g);\n"
2755 "\n"
2756 msgstr ""
2757
2758 #. type: textblock
2759 #: ../src/guestfs.pod:1375
2760 msgid ""
2761 "This returns the last error message that happened on C<g>.  If there has not "
2762 "been an error since the handle was created, then this returns C<NULL>."
2763 msgstr ""
2764
2765 #. type: textblock
2766 #: ../src/guestfs.pod:1379
2767 msgid ""
2768 "The lifetime of the returned string is until the next error occurs, or L</"
2769 "guestfs_close> is called."
2770 msgstr ""
2771
2772 #. type: =head2
2773 #: ../src/guestfs.pod:1382
2774 msgid "guestfs_last_errno"
2775 msgstr ""
2776
2777 #. type: verbatim
2778 #: ../src/guestfs.pod:1384
2779 #, no-wrap
2780 msgid ""
2781 " int guestfs_last_errno (guestfs_h *g);\n"
2782 "\n"
2783 msgstr ""
2784
2785 #. type: textblock
2786 #: ../src/guestfs.pod:1386
2787 msgid "This returns the last error number (errno) that happened on C<g>."
2788 msgstr ""
2789
2790 #. type: textblock
2791 #: ../src/guestfs.pod:1388
2792 msgid "If successful, an errno integer not equal to zero is returned."
2793 msgstr ""
2794
2795 #. type: textblock
2796 #: ../src/guestfs.pod:1390
2797 msgid ""
2798 "If no error, this returns 0.  This call can return 0 in three situations:"
2799 msgstr ""
2800
2801 #. type: textblock
2802 #: ../src/guestfs.pod:1397
2803 msgid "There has not been any error on the handle."
2804 msgstr ""
2805
2806 #. type: textblock
2807 #: ../src/guestfs.pod:1401
2808 msgid ""
2809 "There has been an error but the errno was meaningless.  This corresponds to "
2810 "the case where the error did not come from a failed system call, but for "
2811 "some other reason."
2812 msgstr ""
2813
2814 #. type: textblock
2815 #: ../src/guestfs.pod:1407
2816 msgid ""
2817 "There was an error from a failed system call, but for some reason the errno "
2818 "was not captured and returned.  This usually indicates a bug in libguestfs."
2819 msgstr ""
2820
2821 #. type: textblock
2822 #: ../src/guestfs.pod:1413
2823 msgid ""
2824 "Libguestfs tries to convert the errno from inside the applicance into a "
2825 "corresponding errno for the caller (not entirely trivial: the appliance "
2826 "might be running a completely different operating system from the library "
2827 "and error numbers are not standardized across Un*xen).  If this could not be "
2828 "done, then the error is translated to C<EINVAL>.  In practice this should "
2829 "only happen in very rare circumstances."
2830 msgstr ""
2831
2832 #. type: =head2
2833 #: ../src/guestfs.pod:1421
2834 msgid "guestfs_set_error_handler"
2835 msgstr ""
2836
2837 #. type: verbatim
2838 #: ../src/guestfs.pod:1423
2839 #, no-wrap
2840 msgid ""
2841 " typedef void (*guestfs_error_handler_cb) (guestfs_h *g,\n"
2842 "                                           void *opaque,\n"
2843 "                                           const char *msg);\n"
2844 " void guestfs_set_error_handler (guestfs_h *g,\n"
2845 "                                 guestfs_error_handler_cb cb,\n"
2846 "                                 void *opaque);\n"
2847 "\n"
2848 msgstr ""
2849
2850 #. type: textblock
2851 #: ../src/guestfs.pod:1430
2852 msgid ""
2853 "The callback C<cb> will be called if there is an error.  The parameters "
2854 "passed to the callback are an opaque data pointer and the error message "
2855 "string."
2856 msgstr ""
2857
2858 #. type: textblock
2859 #: ../src/guestfs.pod:1434
2860 msgid ""
2861 "C<errno> is not passed to the callback.  To get that the callback must call "
2862 "L</guestfs_last_errno>."
2863 msgstr ""
2864
2865 #. type: textblock
2866 #: ../src/guestfs.pod:1437
2867 msgid ""
2868 "Note that the message string C<msg> is freed as soon as the callback "
2869 "function returns, so if you want to stash it somewhere you must make your "
2870 "own copy."
2871 msgstr ""
2872
2873 #. type: textblock
2874 #: ../src/guestfs.pod:1441
2875 msgid "The default handler prints messages on C<stderr>."
2876 msgstr ""
2877
2878 #. type: textblock
2879 #: ../src/guestfs.pod:1443
2880 msgid "If you set C<cb> to C<NULL> then I<no> handler is called."
2881 msgstr ""
2882
2883 #. type: =head2
2884 #: ../src/guestfs.pod:1445
2885 msgid "guestfs_get_error_handler"
2886 msgstr ""
2887
2888 #. type: verbatim
2889 #: ../src/guestfs.pod:1447
2890 #, no-wrap
2891 msgid ""
2892 " guestfs_error_handler_cb guestfs_get_error_handler (guestfs_h *g,\n"
2893 "                                                     void **opaque_rtn);\n"
2894 "\n"
2895 msgstr ""
2896
2897 #. type: textblock
2898 #: ../src/guestfs.pod:1450
2899 msgid "Returns the current error handler callback."
2900 msgstr ""
2901
2902 #. type: =head2
2903 #: ../src/guestfs.pod:1452
2904 msgid "guestfs_set_out_of_memory_handler"
2905 msgstr ""
2906
2907 #. type: verbatim
2908 #: ../src/guestfs.pod:1454
2909 #, no-wrap
2910 msgid ""
2911 " typedef void (*guestfs_abort_cb) (void);\n"
2912 " int guestfs_set_out_of_memory_handler (guestfs_h *g,\n"
2913 "                                        guestfs_abort_cb);\n"
2914 "\n"
2915 msgstr ""
2916
2917 #. type: textblock
2918 #: ../src/guestfs.pod:1458
2919 msgid ""
2920 "The callback C<cb> will be called if there is an out of memory situation.  "
2921 "I<Note this callback must not return>."
2922 msgstr ""
2923
2924 #. type: textblock
2925 #: ../src/guestfs.pod:1461
2926 msgid "The default is to call L<abort(3)>."
2927 msgstr ""
2928
2929 #. type: textblock
2930 #: ../src/guestfs.pod:1463
2931 msgid ""
2932 "You cannot set C<cb> to C<NULL>.  You can't ignore out of memory situations."
2933 msgstr ""
2934
2935 #. type: =head2
2936 #: ../src/guestfs.pod:1466
2937 msgid "guestfs_get_out_of_memory_handler"
2938 msgstr ""
2939
2940 #. type: verbatim
2941 #: ../src/guestfs.pod:1468
2942 #, no-wrap
2943 msgid ""
2944 " guestfs_abort_fn guestfs_get_out_of_memory_handler (guestfs_h *g);\n"
2945 "\n"
2946 msgstr ""
2947
2948 #. type: textblock
2949 #: ../src/guestfs.pod:1470
2950 msgid "This returns the current out of memory handler."
2951 msgstr ""
2952
2953 #. type: =head1
2954 #: ../src/guestfs.pod:1472
2955 msgid "API CALLS"
2956 msgstr ""
2957
2958 #. type: textblock
2959 #: ../src/guestfs.pod:1474 ../fish/guestfish.pod:1010
2960 msgid "@ACTIONS@"
2961 msgstr "@ACTIONS@"
2962
2963 #. type: =head1
2964 #: ../src/guestfs.pod:1476
2965 msgid "STRUCTURES"
2966 msgstr "СТРУКТУРИ"
2967
2968 #. type: textblock
2969 #: ../src/guestfs.pod:1478
2970 msgid "@STRUCTS@"
2971 msgstr "@STRUCTS@"
2972
2973 #. type: =head1
2974 #: ../src/guestfs.pod:1480
2975 msgid "AVAILABILITY"
2976 msgstr ""
2977
2978 #. type: =head2
2979 #: ../src/guestfs.pod:1482
2980 msgid "GROUPS OF FUNCTIONALITY IN THE APPLIANCE"
2981 msgstr ""
2982
2983 #. type: textblock
2984 #: ../src/guestfs.pod:1484
2985 msgid ""
2986 "Using L</guestfs_available> you can test availability of the following "
2987 "groups of functions.  This test queries the appliance to see if the "
2988 "appliance you are currently using supports the functionality."
2989 msgstr ""
2990
2991 #. type: textblock
2992 #: ../src/guestfs.pod:1489
2993 msgid "@AVAILABILITY@"
2994 msgstr ""
2995
2996 #. type: =head2
2997 #: ../src/guestfs.pod:1491
2998 msgid "GUESTFISH supported COMMAND"
2999 msgstr ""
3000
3001 #. type: textblock
3002 #: ../src/guestfs.pod:1493
3003 msgid ""
3004 "In L<guestfish(3)> there is a handy interactive command C<supported> which "
3005 "prints out the available groups and whether they are supported by this build "
3006 "of libguestfs.  Note however that you have to do C<run> first."
3007 msgstr ""
3008
3009 #. type: =head2
3010 #: ../src/guestfs.pod:1498
3011 msgid "SINGLE CALLS AT COMPILE TIME"
3012 msgstr ""
3013
3014 #. type: textblock
3015 #: ../src/guestfs.pod:1500
3016 msgid ""
3017 "Since version 1.5.8, C<E<lt>guestfs.hE<gt>> defines symbols for each C API "
3018 "function, such as:"
3019 msgstr ""
3020
3021 #. type: verbatim
3022 #: ../src/guestfs.pod:1503
3023 #, no-wrap
3024 msgid ""
3025 " #define LIBGUESTFS_HAVE_DD 1\n"
3026 "\n"
3027 msgstr ""
3028
3029 #. type: textblock
3030 #: ../src/guestfs.pod:1505
3031 msgid "if L</guestfs_dd> is available."
3032 msgstr ""
3033
3034 #. type: textblock
3035 #: ../src/guestfs.pod:1507
3036 msgid ""
3037 "Before version 1.5.8, if you needed to test whether a single libguestfs "
3038 "function is available at compile time, we recommended using build tools such "
3039 "as autoconf or cmake.  For example in autotools you could use:"
3040 msgstr ""
3041
3042 #. type: verbatim
3043 #: ../src/guestfs.pod:1512
3044 #, no-wrap
3045 msgid ""
3046 " AC_CHECK_LIB([guestfs],[guestfs_create])\n"
3047 " AC_CHECK_FUNCS([guestfs_dd])\n"
3048 "\n"
3049 msgstr ""
3050
3051 #. type: textblock
3052 #: ../src/guestfs.pod:1515
3053 msgid ""
3054 "which would result in C<HAVE_GUESTFS_DD> being either defined or not defined "
3055 "in your program."
3056 msgstr ""
3057
3058 #. type: =head2
3059 #: ../src/guestfs.pod:1518
3060 msgid "SINGLE CALLS AT RUN TIME"
3061 msgstr ""
3062
3063 #. type: textblock
3064 #: ../src/guestfs.pod:1520
3065 msgid ""
3066 "Testing at compile time doesn't guarantee that a function really exists in "
3067 "the library.  The reason is that you might be dynamically linked against a "
3068 "previous I<libguestfs.so> (dynamic library)  which doesn't have the call.  "
3069 "This situation unfortunately results in a segmentation fault, which is a "
3070 "shortcoming of the C dynamic linking system itself."
3071 msgstr ""
3072
3073 #. type: textblock
3074 #: ../src/guestfs.pod:1527
3075 msgid ""
3076 "You can use L<dlopen(3)> to test if a function is available at run time, as "
3077 "in this example program (note that you still need the compile time check as "
3078 "well):"
3079 msgstr ""
3080
3081 #. type: verbatim
3082 #: ../src/guestfs.pod:1531
3083 #, no-wrap
3084 msgid ""
3085 " #include <stdio.h>\n"
3086 " #include <stdlib.h>\n"
3087 " #include <unistd.h>\n"
3088 " #include <dlfcn.h>\n"
3089 " #include <guestfs.h>\n"
3090 " \n"
3091 msgstr ""
3092
3093 #. type: verbatim
3094 #: ../src/guestfs.pod:1537
3095 #, no-wrap
3096 msgid ""
3097 " main ()\n"
3098 " {\n"
3099 " #ifdef LIBGUESTFS_HAVE_DD\n"
3100 "   void *dl;\n"
3101 "   int has_function;\n"
3102 " \n"
3103 msgstr ""
3104
3105 #. type: verbatim
3106 #: ../src/guestfs.pod:1543
3107 #, no-wrap
3108 msgid ""
3109 "   /* Test if the function guestfs_dd is really available. */\n"
3110 "   dl = dlopen (NULL, RTLD_LAZY);\n"
3111 "   if (!dl) {\n"
3112 "     fprintf (stderr, \"dlopen: %s\\n\", dlerror ());\n"
3113 "     exit (EXIT_FAILURE);\n"
3114 "   }\n"
3115 "   has_function = dlsym (dl, \"guestfs_dd\") != NULL;\n"
3116 "   dlclose (dl);\n"
3117 " \n"
3118 msgstr ""
3119
3120 #. type: verbatim
3121 #: ../src/guestfs.pod:1552
3122 #, no-wrap
3123 msgid ""
3124 "   if (!has_function)\n"
3125 "     printf (\"this libguestfs.so does NOT have guestfs_dd function\\n\");\n"
3126 "   else {\n"
3127 "     printf (\"this libguestfs.so has guestfs_dd function\\n\");\n"
3128 "     /* Now it's safe to call\n"
3129 "     guestfs_dd (g, \"foo\", \"bar\");\n"
3130 "     */\n"
3131 "   }\n"
3132 " #else\n"
3133 "   printf (\"guestfs_dd function was not found at compile time\\n\");\n"
3134 " #endif\n"
3135 "  }\n"
3136 "\n"
3137 msgstr ""
3138
3139 #. type: textblock
3140 #: ../src/guestfs.pod:1565
3141 msgid ""
3142 "You may think the above is an awful lot of hassle, and it is.  There are "
3143 "other ways outside of the C linking system to ensure that this kind of "
3144 "incompatibility never arises, such as using package versioning:"
3145 msgstr ""
3146
3147 #. type: verbatim
3148 #: ../src/guestfs.pod:1570
3149 #, no-wrap
3150 msgid ""
3151 " Requires: libguestfs >= 1.0.80\n"
3152 "\n"
3153 msgstr ""
3154
3155 #. type: =head1
3156 #: ../src/guestfs.pod:1572
3157 msgid "CALLS WITH OPTIONAL ARGUMENTS"
3158 msgstr ""
3159
3160 #. type: textblock
3161 #: ../src/guestfs.pod:1574
3162 msgid ""
3163 "A recent feature of the API is the introduction of calls which take optional "
3164 "arguments.  In C these are declared 3 ways.  The main way is as a call which "
3165 "takes variable arguments (ie. C<...>), as in this example:"
3166 msgstr ""
3167
3168 #. type: verbatim
3169 #: ../src/guestfs.pod:1579
3170 #, no-wrap
3171 msgid ""
3172 " int guestfs_add_drive_opts (guestfs_h *g, const char *filename, ...);\n"
3173 "\n"
3174 msgstr ""
3175
3176 #. type: textblock
3177 #: ../src/guestfs.pod:1581
3178 msgid ""
3179 "Call this with a list of optional arguments, terminated by C<-1>.  So to "
3180 "call with no optional arguments specified:"
3181 msgstr ""
3182
3183 #. type: verbatim
3184 #: ../src/guestfs.pod:1584
3185 #, no-wrap
3186 msgid ""
3187 " guestfs_add_drive_opts (g, filename, -1);\n"
3188 "\n"
3189 msgstr ""
3190
3191 #. type: textblock
3192 #: ../src/guestfs.pod:1586
3193 msgid "With a single optional argument:"
3194 msgstr ""
3195
3196 #. type: verbatim
3197 #: ../src/guestfs.pod:1588
3198 #, no-wrap
3199 msgid ""
3200 " guestfs_add_drive_opts (g, filename,\n"
3201 "                         GUESTFS_ADD_DRIVE_OPTS_FORMAT, \"qcow2\",\n"
3202 "                         -1);\n"
3203 "\n"
3204 msgstr ""
3205
3206 #. type: textblock
3207 #: ../src/guestfs.pod:1592
3208 msgid "With two:"
3209 msgstr ""
3210
3211 #. type: verbatim
3212 #: ../src/guestfs.pod:1594
3213 #, no-wrap
3214 msgid ""
3215 " guestfs_add_drive_opts (g, filename,\n"
3216 "                         GUESTFS_ADD_DRIVE_OPTS_FORMAT, \"qcow2\",\n"
3217 "                         GUESTFS_ADD_DRIVE_OPTS_READONLY, 1,\n"
3218 "                         -1);\n"
3219 "\n"
3220 msgstr ""
3221
3222 #. type: textblock
3223 #: ../src/guestfs.pod:1599
3224 msgid ""
3225 "and so forth.  Don't forget the terminating C<-1> otherwise Bad Things will "
3226 "happen!"
3227 msgstr ""
3228
3229 #. type: =head2
3230 #: ../src/guestfs.pod:1602
3231 msgid "USING va_list FOR OPTIONAL ARGUMENTS"
3232 msgstr ""
3233
3234 #. type: textblock
3235 #: ../src/guestfs.pod:1604
3236 msgid ""
3237 "The second variant has the same name with the suffix C<_va>, which works the "
3238 "same way but takes a C<va_list>.  See the C manual for details.  For the "
3239 "example function, this is declared:"
3240 msgstr ""
3241
3242 #. type: verbatim
3243 #: ../src/guestfs.pod:1608
3244 #, no-wrap
3245 msgid ""
3246 " int guestfs_add_drive_opts_va (guestfs_h *g, const char *filename,\n"
3247 "                                va_list args);\n"
3248 "\n"
3249 msgstr ""
3250
3251 #. type: =head2
3252 #: ../src/guestfs.pod:1611
3253 msgid "CONSTRUCTING OPTIONAL ARGUMENTS"
3254 msgstr ""
3255
3256 #. type: textblock
3257 #: ../src/guestfs.pod:1613
3258 msgid ""
3259 "The third variant is useful where you need to construct these calls.  You "
3260 "pass in a structure where you fill in the optional fields.  The structure "
3261 "has a bitmask as the first element which you must set to indicate which "
3262 "fields you have filled in.  For our example function the structure and call "
3263 "are declared:"
3264 msgstr ""
3265
3266 #. type: verbatim
3267 #: ../src/guestfs.pod:1619
3268 #, no-wrap
3269 msgid ""
3270 " struct guestfs_add_drive_opts_argv {\n"
3271 "   uint64_t bitmask;\n"
3272 "   int readonly;\n"
3273 "   const char *format;\n"
3274 "   /* ... */\n"
3275 " };\n"
3276 " int guestfs_add_drive_opts_argv (guestfs_h *g, const char *filename,\n"
3277 "              const struct guestfs_add_drive_opts_argv *optargs);\n"
3278 "\n"
3279 msgstr ""
3280
3281 #. type: textblock
3282 #: ../src/guestfs.pod:1628
3283 msgid "You could call it like this:"
3284 msgstr ""
3285
3286 #. type: verbatim
3287 #: ../src/guestfs.pod:1630
3288 #, no-wrap
3289 msgid ""
3290 " struct guestfs_add_drive_opts_argv optargs = {\n"
3291 "   .bitmask = GUESTFS_ADD_DRIVE_OPTS_READONLY_BITMASK |\n"
3292 "              GUESTFS_ADD_DRIVE_OPTS_FORMAT_BITMASK,\n"
3293 "   .readonly = 1,\n"
3294 "   .format = \"qcow2\"\n"
3295 " };\n"
3296 " \n"
3297 msgstr ""
3298
3299 #. type: verbatim
3300 #: ../src/guestfs.pod:1637
3301 #, no-wrap
3302 msgid ""
3303 " guestfs_add_drive_opts_argv (g, filename, &optargs);\n"
3304 "\n"
3305 msgstr ""
3306
3307 #. type: textblock
3308 #: ../src/guestfs.pod:1639 ../src/guestfs-actions.pod:11
3309 #: ../src/guestfs-actions.pod:1861 ../fish/guestfish-actions.pod:9
3310 #: ../fish/guestfish-actions.pod:1265 ../tools/virt-win-reg.pl:532
3311 msgid "Notes:"
3312 msgstr "Нотатки:"
3313
3314 #. type: textblock
3315 #: ../src/guestfs.pod:1645
3316 msgid "The C<_BITMASK> suffix on each option name when specifying the bitmask."
3317 msgstr ""
3318
3319 #. type: textblock
3320 #: ../src/guestfs.pod:1650
3321 msgid "You do not need to fill in all fields of the structure."
3322 msgstr ""
3323
3324 #. type: textblock
3325 #: ../src/guestfs.pod:1654
3326 msgid ""
3327 "There must be a one-to-one correspondence between fields of the structure "
3328 "that are filled in, and bits set in the bitmask."
3329 msgstr ""
3330
3331 #. type: =head2
3332 #: ../src/guestfs.pod:1659
3333 msgid "OPTIONAL ARGUMENTS IN OTHER LANGUAGES"
3334 msgstr ""
3335
3336 #. type: textblock
3337 #: ../src/guestfs.pod:1661
3338 msgid ""
3339 "In other languages, optional arguments are expressed in the way that is "
3340 "natural for that language.  We refer you to the language-specific "
3341 "documentation for more details on that."
3342 msgstr ""
3343
3344 #. type: textblock
3345 #: ../src/guestfs.pod:1665
3346 msgid "For guestfish, see L<guestfish(1)/OPTIONAL ARGUMENTS>."
3347 msgstr ""
3348
3349 #. type: =head2
3350 #: ../src/guestfs.pod:1667
3351 msgid "SETTING CALLBACKS TO HANDLE EVENTS"
3352 msgstr ""
3353
3354 #. type: textblock
3355 #: ../src/guestfs.pod:1669
3356 msgid ""
3357 "B<Note:> This section documents the generic event mechanism introduced in "
3358 "libguestfs 1.10, which you should use in new code if possible.  The old "
3359 "functions C<guestfs_set_log_message_callback>, "
3360 "C<guestfs_set_subprocess_quit_callback>, "
3361 "C<guestfs_set_launch_done_callback>, C<guestfs_set_close_callback> and "
3362 "C<guestfs_set_progress_callback> are no longer documented in this manual "
3363 "page.  Because of the ABI guarantee, the old functions continue to work."
3364 msgstr ""
3365
3366 #. type: textblock
3367 #: ../src/guestfs.pod:1678
3368 msgid ""
3369 "Handles generate events when certain things happen, such as log messages "
3370 "being generated, progress messages during long-running operations, or the "
3371 "handle being closed.  The API calls described below let you register a "
3372 "callback to be called when events happen.  You can register multiple "
3373 "callbacks (for the same, different or overlapping sets of events), and "
3374 "individually remove callbacks.  If callbacks are not removed, then they "
3375 "remain in force until the handle is closed."
3376 msgstr ""
3377
3378 #. type: textblock
3379 #: ../src/guestfs.pod:1686
3380 msgid ""
3381 "In the current implementation, events are only generated synchronously: that "
3382 "means that events (and hence callbacks) can only happen while you are in the "
3383 "middle of making another libguestfs call.  The callback is called in the "
3384 "same thread."
3385 msgstr ""
3386
3387 #. type: textblock
3388 #: ../src/guestfs.pod:1691
3389 msgid ""
3390 "Events may contain a payload, usually nothing (void), an array of 64 bit "
3391 "unsigned integers, or a message buffer.  Payloads are discussed later on."
3392 msgstr ""
3393
3394 #. type: =head3
3395 #: ../src/guestfs.pod:1695
3396 msgid "CLASSES OF EVENTS"
3397 msgstr ""
3398
3399 #. type: =item
3400 #: ../src/guestfs.pod:1699
3401 msgid "GUESTFS_EVENT_CLOSE (payload type: void)"
3402 msgstr ""
3403
3404 #. type: textblock
3405 #: ../src/guestfs.pod:1702
3406 msgid ""
3407 "The callback function will be called while the handle is being closed "
3408 "(synchronously from L</guestfs_close>)."
3409 msgstr ""
3410
3411 #. type: textblock
3412 #: ../src/guestfs.pod:1705
3413 msgid ""
3414 "Note that libguestfs installs an L<atexit(3)> handler to try to clean up "
3415 "handles that are open when the program exits.  This means that this callback "
3416 "might be called indirectly from L<exit(3)>, which can cause unexpected "
3417 "problems in higher-level languages (eg. if your HLL interpreter has already "
3418 "been cleaned up by the time this is called, and if your callback then jumps "
3419 "into some HLL function)."
3420 msgstr ""
3421
3422 #. type: textblock
3423 #: ../src/guestfs.pod:1712
3424 msgid ""
3425 "If no callback is registered: the handle is closed without any callback "
3426 "being invoked."
3427 msgstr ""
3428
3429 #. type: =item
3430 #: ../src/guestfs.pod:1715
3431 msgid "GUESTFS_EVENT_SUBPROCESS_QUIT (payload type: void)"
3432 msgstr ""
3433
3434 #. type: textblock
3435 #: ../src/guestfs.pod:1718
3436 msgid ""
3437 "The callback function will be called when the child process quits, either "
3438 "asynchronously or if killed by L</guestfs_kill_subprocess>.  (This "
3439 "corresponds to a transition from any state to the CONFIG state)."
3440 msgstr ""
3441
3442 #. type: textblock
3443 #: ../src/guestfs.pod:1722 ../src/guestfs.pod:1731
3444 msgid "If no callback is registered: the event is ignored."
3445 msgstr ""
3446
3447 #. type: =item
3448 #: ../src/guestfs.pod:1724
3449 msgid "GUESTFS_EVENT_LAUNCH_DONE (payload type: void)"
3450 msgstr ""
3451
3452 #. type: textblock
3453 #: ../src/guestfs.pod:1727
3454 msgid ""
3455 "The callback function will be called when the child process becomes ready "
3456 "first time after it has been launched.  (This corresponds to a transition "
3457 "from LAUNCHING to the READY state)."
3458 msgstr ""
3459
3460 #. type: =item
3461 #: ../src/guestfs.pod:1733
3462 msgid "GUESTFS_EVENT_PROGRESS (payload type: array of 4 x uint64_t)"
3463 msgstr ""
3464
3465 #. type: textblock
3466 #: ../src/guestfs.pod:1736
3467 msgid ""
3468 "Some long-running operations can generate progress messages.  If this "
3469 "callback is registered, then it will be called each time a progress message "
3470 "is generated (usually two seconds after the operation started, and three "
3471 "times per second thereafter until it completes, although the frequency may "
3472 "change in future versions)."
3473 msgstr ""
3474
3475 #. type: textblock
3476 #: ../src/guestfs.pod:1742
3477 msgid ""
3478 "The callback receives in the payload four unsigned 64 bit numbers which are "
3479 "(in order): C<proc_nr>, C<serial>, C<position>, C<total>."
3480 msgstr ""
3481
3482 #. type: textblock
3483 #: ../src/guestfs.pod:1745
3484 msgid ""
3485 "The units of C<total> are not defined, although for some operations C<total> "
3486 "may relate in some way to the amount of data to be transferred (eg. in bytes "
3487 "or megabytes), and C<position> may be the portion which has been transferred."
3488 msgstr ""
3489
3490 #. type: textblock
3491 #: ../src/guestfs.pod:1750
3492 msgid "The only defined and stable parts of the API are:"
3493 msgstr ""
3494
3495 #. type: textblock
3496 #: ../src/guestfs.pod:1756
3497 msgid ""
3498 "The callback can display to the user some type of progress bar or indicator "
3499 "which shows the ratio of C<position>:C<total>."
3500 msgstr ""
3501
3502 #. type: textblock
3503 #: ../src/guestfs.pod:1761
3504 msgid "0 E<lt>= C<position> E<lt>= C<total>"
3505 msgstr ""
3506
3507 #. type: textblock
3508 #: ../src/guestfs.pod:1765
3509 msgid ""
3510 "If any progress notification is sent during a call, then a final progress "
3511 "notification is always sent when C<position> = C<total> (I<unless> the call "
3512 "fails with an error)."
3513 msgstr ""
3514
3515 #. type: textblock
3516 #: ../src/guestfs.pod:1769
3517 msgid ""
3518 "This is to simplify caller code, so callers can easily set the progress "
3519 "indicator to \"100%\" at the end of the operation, without requiring special "
3520 "code to detect this case."
3521 msgstr ""
3522
3523 #. type: textblock
3524 #: ../src/guestfs.pod:1775
3525 msgid ""
3526 "For some calls we are unable to estimate the progress of the call, but we "
3527 "can still generate progress messages to indicate activity.  This is known as "
3528 "\"pulse mode\", and is directly supported by certain progress bar "
3529 "implementations (eg. GtkProgressBar)."
3530 msgstr ""
3531
3532 #. type: textblock
3533 #: ../src/guestfs.pod:1780
3534 msgid ""
3535 "For these calls, zero or more progress messages are generated with "
3536 "C<position = 0> and C<total = 1>, followed by a final message with "
3537 "C<position = total = 1>."
3538 msgstr ""
3539
3540 #. type: textblock
3541 #: ../src/guestfs.pod:1784
3542 msgid ""
3543 "As noted above, if the call fails with an error then the final message may "
3544 "not be generated."
3545 msgstr ""
3546
3547 #. type: textblock
3548 #: ../src/guestfs.pod:1789
3549 msgid ""
3550 "The callback also receives the procedure number (C<proc_nr>) and serial "
3551 "number (C<serial>) of the call.  These are only useful for debugging "
3552 "protocol issues, and the callback can normally ignore them.  The callback "
3553 "may want to print these numbers in error messages or debugging messages."
3554 msgstr ""
3555
3556 #. type: textblock
3557 #: ../src/guestfs.pod:1795
3558 msgid "If no callback is registered: progress messages are discarded."
3559 msgstr ""
3560
3561 #. type: =item
3562 #: ../src/guestfs.pod:1797
3563 msgid "GUESTFS_EVENT_APPLIANCE (payload type: message buffer)"
3564 msgstr ""
3565
3566 #. type: textblock
3567 #: ../src/guestfs.pod:1800
3568 msgid ""
3569 "The callback function is called whenever a log message is generated by qemu, "
3570 "the appliance kernel, guestfsd (daemon), or utility programs."
3571 msgstr ""
3572
3573 #. type: textblock
3574 #: ../src/guestfs.pod:1803
3575 msgid ""
3576 "If the verbose flag (L</guestfs_set_verbose>) is set before launch (L</"
3577 "guestfs_launch>) then additional debug messages are generated."
3578 msgstr ""
3579
3580 #. type: textblock
3581 #: ../src/guestfs.pod:1806 ../src/guestfs.pod:1820
3582 msgid ""
3583 "If no callback is registered: the messages are discarded unless the verbose "
3584 "flag is set in which case they are sent to stderr.  You can override the "
3585 "printing of verbose messages to stderr by setting up a callback."
3586 msgstr ""
3587
3588 #. type: =item
3589 #: ../src/guestfs.pod:1811
3590 msgid "GUESTFS_EVENT_LIBRARY (payload type: message buffer)"
3591 msgstr ""
3592
3593 #. type: textblock
3594 #: ../src/guestfs.pod:1814
3595 msgid ""
3596 "The callback function is called whenever a log message is generated by the "
3597 "library part of libguestfs."
3598 msgstr ""
3599
3600 #. type: textblock
3601 #: ../src/guestfs.pod:1817
3602 msgid ""
3603 "If the verbose flag (L</guestfs_set_verbose>) is set then additional debug "
3604 "messages are generated."
3605 msgstr ""
3606
3607 #. type: =item
3608 #: ../src/guestfs.pod:1825
3609 msgid "GUESTFS_EVENT_TRACE (payload type: message buffer)"
3610 msgstr ""
3611
3612 #. type: textblock
3613 #: ../src/guestfs.pod:1828
3614 msgid ""
3615 "The callback function is called whenever a trace message is generated.  This "
3616 "only applies if the trace flag (L</guestfs_set_trace>) is set."
3617 msgstr ""
3618
3619 #. type: textblock
3620 #: ../src/guestfs.pod:1831
3621 msgid ""
3622 "If no callback is registered: the messages are sent to stderr.  You can "
3623 "override the printing of trace messages to stderr by setting up a callback."
3624 msgstr ""
3625
3626 #. type: =head3
3627 #: ../src/guestfs.pod:1837
3628 msgid "guestfs_set_event_callback"
3629 msgstr ""
3630
3631 #. type: verbatim
3632 #: ../src/guestfs.pod:1839
3633 #, no-wrap
3634 msgid ""
3635 " int guestfs_set_event_callback (guestfs_h *g,\n"
3636 "                                 guestfs_event_callback cb,\n"
3637 "                                 uint64_t event_bitmask,\n"
3638 "                                 int flags,\n"
3639 "                                 void *opaque);\n"
3640 "\n"
3641 msgstr ""
3642
3643 #. type: textblock
3644 #: ../src/guestfs.pod:1845
3645 msgid ""
3646 "This function registers a callback (C<cb>) for all event classes in the "
3647 "C<event_bitmask>."
3648 msgstr ""
3649
3650 #. type: textblock
3651 #: ../src/guestfs.pod:1848
3652 msgid ""
3653 "For example, to register for all log message events, you could call this "
3654 "function with the bitmask C<GUESTFS_EVENT_APPLIANCE|GUESTFS_EVENT_LIBRARY>.  "
3655 "To register a single callback for all possible classes of events, use "
3656 "C<GUESTFS_EVENT_ALL>."
3657 msgstr ""
3658
3659 #. type: textblock
3660 #: ../src/guestfs.pod:1854
3661 msgid "C<flags> should always be passed as 0."
3662 msgstr ""
3663
3664 #. type: textblock
3665 #: ../src/guestfs.pod:1856
3666 msgid ""
3667 "C<opaque> is an opaque pointer which is passed to the callback.  You can use "
3668 "it for any purpose."
3669 msgstr ""
3670
3671 #. type: textblock
3672 #: ../src/guestfs.pod:1859
3673 msgid ""
3674 "The return value is the event handle (an integer) which you can use to "
3675 "delete the callback (see below)."
3676 msgstr ""
3677
3678 #. type: textblock
3679 #: ../src/guestfs.pod:1862
3680 msgid ""
3681 "If there is an error, this function returns C<-1>, and sets the error in the "
3682 "handle in the usual way (see L</guestfs_last_error> etc.)"
3683 msgstr ""
3684
3685 #. type: textblock
3686 #: ../src/guestfs.pod:1865
3687 msgid ""
3688 "Callbacks remain in effect until they are deleted, or until the handle is "
3689 "closed."
3690 msgstr ""
3691
3692 #. type: textblock
3693 #: ../src/guestfs.pod:1868
3694 msgid ""
3695 "In the case where multiple callbacks are registered for a particular event "
3696 "class, all of the callbacks are called.  The order in which multiple "
3697 "callbacks are called is not defined."
3698 msgstr ""
3699
3700 #. type: =head3
3701 #: ../src/guestfs.pod:1872
3702 msgid "guestfs_delete_event_callback"
3703 msgstr ""
3704
3705 #. type: verbatim
3706 #: ../src/guestfs.pod:1874
3707 #, no-wrap
3708 msgid ""
3709 " void guestfs_delete_event_callback (guestfs_h *g, int event_handle);\n"
3710 "\n"
3711 msgstr ""
3712
3713 #. type: textblock
3714 #: ../src/guestfs.pod:1876
3715 msgid ""
3716 "Delete a callback that was previously registered.  C<event_handle> should be "
3717 "the integer that was returned by a previous call to "
3718 "C<guestfs_set_event_callback> on the same handle."
3719 msgstr ""
3720
3721 #. type: =head3
3722 #: ../src/guestfs.pod:1880
3723 msgid "guestfs_event_callback"
3724 msgstr ""
3725
3726 #. type: verbatim
3727 #: ../src/guestfs.pod:1882
3728 #, no-wrap
3729 msgid ""
3730 " typedef void (*guestfs_event_callback) (\n"
3731 "                  guestfs_h *g,\n"
3732 "                  void *opaque,\n"
3733 "                  uint64_t event,\n"
3734 "                  int event_handle,\n"
3735 "                  int flags,\n"
3736 "                  const char *buf, size_t buf_len,\n"
3737 "                  const uint64_t *array, size_t array_len);\n"
3738 "\n"
3739 msgstr ""
3740
3741 #. type: textblock
3742 #: ../src/guestfs.pod:1891
3743 msgid ""
3744 "This is the type of the event callback function that you have to provide."
3745 msgstr ""
3746
3747 #. type: textblock
3748 #: ../src/guestfs.pod:1894
3749 msgid ""
3750 "The basic parameters are: the handle (C<g>), the opaque user pointer "
3751 "(C<opaque>), the event class (eg. C<GUESTFS_EVENT_PROGRESS>), the event "
3752 "handle, and C<flags> which in the current API you should ignore."
3753 msgstr ""
3754
3755 #. type: textblock
3756 #: ../src/guestfs.pod:1898
3757 msgid ""
3758 "The remaining parameters contain the event payload (if any).  Each event may "
3759 "contain a payload, which usually relates to the event class, but for future "
3760 "proofing your code should be written to handle any payload for any event "
3761 "class."
3762 msgstr ""
3763
3764 #. type: textblock
3765 #: ../src/guestfs.pod:1903
3766 msgid ""
3767 "C<buf> and C<buf_len> contain a message buffer (if C<buf_len == 0>, then "
3768 "there is no message buffer).  Note that this message buffer can contain "
3769 "arbitrary 8 bit data, including NUL bytes."
3770 msgstr ""
3771
3772 #. type: textblock
3773 #: ../src/guestfs.pod:1907
3774 msgid ""
3775 "C<array> and C<array_len> is an array of 64 bit unsigned integers.  At the "
3776 "moment this is only used for progress messages."
3777 msgstr ""
3778
3779 #. type: =head3
3780 #: ../src/guestfs.pod:1910
3781 msgid "EXAMPLE: CAPTURING LOG MESSAGES"
3782 msgstr ""
3783
3784 #. type: textblock
3785 #: ../src/guestfs.pod:1912
3786 msgid ""
3787 "One motivation for the generic event API was to allow GUI programs to "
3788 "capture debug and other messages.  In libguestfs E<le> 1.8 these were sent "
3789 "unconditionally to C<stderr>."
3790 msgstr ""
3791
3792 #. type: textblock
3793 #: ../src/guestfs.pod:1916
3794 msgid ""
3795 "Events associated with log messages are: C<GUESTFS_EVENT_LIBRARY>, "
3796 "C<GUESTFS_EVENT_APPLIANCE> and C<GUESTFS_EVENT_TRACE>.  (Note that error "
3797 "messages are not events; you must capture error messages separately)."
3798 msgstr ""
3799
3800 #. type: textblock
3801 #: ../src/guestfs.pod:1921
3802 msgid ""
3803 "Programs have to set up a callback to capture the classes of events of "
3804 "interest:"
3805 msgstr ""
3806
3807 #. type: verbatim
3808 #: ../src/guestfs.pod:1924
3809 #, no-wrap
3810 msgid ""
3811 " int eh =\n"
3812 "   guestfs_set_event_callback\n"
3813 "     (g, message_callback,\n"
3814 "      GUESTFS_EVENT_LIBRARY|GUESTFS_EVENT_APPLIANCE|\n"
3815 "      GUESTFS_EVENT_TRACE,\n"
3816 "      0, NULL) == -1)\n"
3817 " if (eh == -1) {\n"
3818 "   // handle error in the usual way\n"
3819 " }\n"
3820 "\n"
3821 msgstr ""
3822
3823 #. type: textblock
3824 #: ../src/guestfs.pod:1934
3825 msgid ""
3826 "The callback can then direct messages to the appropriate place.  In this "
3827 "example, messages are directed to syslog:"
3828 msgstr ""
3829
3830 #. type: verbatim
3831 #: ../src/guestfs.pod:1937
3832 #, no-wrap
3833 msgid ""
3834 " static void\n"
3835 " message_callback (\n"
3836 "         guestfs_h *g,\n"
3837 "         void *opaque,\n"
3838 "         uint64_t event,\n"
3839 "         int event_handle,\n"
3840 "         int flags,\n"
3841 "         const char *buf, size_t buf_len,\n"
3842 "         const uint64_t *array, size_t array_len)\n"
3843 " {\n"
3844 "   const int priority = LOG_USER|LOG_INFO;\n"
3845 "   if (buf_len > 0)\n"
3846 "     syslog (priority, \"event 0x%lx: %s\", event, buf);\n"
3847 " }\n"
3848 "\n"
3849 msgstr ""
3850
3851 #. type: =head1
3852 #: ../src/guestfs.pod:1952
3853 msgid "PRIVATE DATA AREA"
3854 msgstr ""
3855
3856 #. type: textblock
3857 #: ../src/guestfs.pod:1954
3858 msgid ""
3859 "You can attach named pieces of private data to the libguestfs handle, fetch "
3860 "them by name, and walk over them, for the lifetime of the handle.  This is "
3861 "called the private data area and is only available from the C API."
3862 msgstr ""
3863
3864 #. type: textblock
3865 #: ../src/guestfs.pod:1959
3866 msgid "To attach a named piece of data, use the following call:"
3867 msgstr ""
3868
3869 #. type: verbatim
3870 #: ../src/guestfs.pod:1961
3871 #, no-wrap
3872 msgid ""
3873 " void guestfs_set_private (guestfs_h *g, const char *key, void *data);\n"
3874 "\n"
3875 msgstr ""
3876
3877 #. type: textblock
3878 #: ../src/guestfs.pod:1963
3879 msgid ""
3880 "C<key> is the name to associate with this data, and C<data> is an arbitrary "
3881 "pointer (which can be C<NULL>).  Any previous item with the same key is "
3882 "overwritten."
3883 msgstr ""
3884
3885 #. type: textblock
3886 #: ../src/guestfs.pod:1967
3887 msgid ""
3888 "You can use any C<key> you want, but your key should I<not> start with an "
3889 "underscore character.  Keys beginning with an underscore character are "
3890 "reserved for internal libguestfs purposes (eg. for implementing language "
3891 "bindings).  It is recommended that you prefix the key with some unique "
3892 "string to avoid collisions with other users."
3893 msgstr ""
3894
3895 #. type: textblock
3896 #: ../src/guestfs.pod:1973
3897 msgid "To retrieve the pointer, use:"
3898 msgstr ""
3899
3900 #. type: verbatim
3901 #: ../src/guestfs.pod:1975
3902 #, no-wrap
3903 msgid ""
3904 " void *guestfs_get_private (guestfs_h *g, const char *key);\n"
3905 "\n"
3906 msgstr ""
3907
3908 #. type: textblock
3909 #: ../src/guestfs.pod:1977
3910 msgid ""
3911 "This function returns C<NULL> if either no data is found associated with "
3912 "C<key>, or if the user previously set the C<key>'s C<data> pointer to "
3913 "C<NULL>."
3914 msgstr ""
3915
3916 #. type: textblock
3917 #: ../src/guestfs.pod:1981
3918 msgid ""
3919 "Libguestfs does not try to look at or interpret the C<data> pointer in any "
3920 "way.  As far as libguestfs is concerned, it need not be a valid pointer at "
3921 "all.  In particular, libguestfs does I<not> try to free the data when the "
3922 "handle is closed.  If the data must be freed, then the caller must either "
3923 "free it before calling L</guestfs_close> or must set up a close callback to "
3924 "do it (see L</GUESTFS_EVENT_CLOSE>)."
3925 msgstr ""
3926
3927 #. type: textblock
3928 #: ../src/guestfs.pod:1988
3929 msgid "To walk over all entries, use these two functions:"
3930 msgstr ""
3931
3932 #. type: verbatim
3933 #: ../src/guestfs.pod:1990
3934 #, no-wrap
3935 msgid ""
3936 " void *guestfs_first_private (guestfs_h *g, const char **key_rtn);\n"
3937 "\n"
3938 msgstr ""
3939
3940 #. type: verbatim
3941 #: ../src/guestfs.pod:1992
3942 #, no-wrap
3943 msgid ""
3944 " void *guestfs_next_private (guestfs_h *g, const char **key_rtn);\n"
3945 "\n"
3946 msgstr ""
3947
3948 #. type: textblock
3949 #: ../src/guestfs.pod:1994
3950 msgid ""
3951 "C<guestfs_first_private> returns the first key, pointer pair (\"first\" does "
3952 "not have any particular meaning -- keys are not returned in any defined "
3953 "order).  A pointer to the key is returned in C<*key_rtn> and the "
3954 "corresponding data pointer is returned from the function.  C<NULL> is "
3955 "returned if there are no keys stored in the handle."
3956 msgstr ""
3957
3958 #. type: textblock
3959 #: ../src/guestfs.pod:2000
3960 msgid ""
3961 "C<guestfs_next_private> returns the next key, pointer pair.  The return "
3962 "value of this function is also C<NULL> is there are no further entries to "
3963 "return."
3964 msgstr ""
3965
3966 #. type: textblock
3967 #: ../src/guestfs.pod:2004
3968 msgid "Notes about walking over entries:"
3969 msgstr ""
3970
3971 #. type: textblock
3972 #: ../src/guestfs.pod:2010
3973 msgid ""
3974 "You must not call C<guestfs_set_private> while walking over the entries."
3975 msgstr ""
3976
3977 #. type: textblock
3978 #: ../src/guestfs.pod:2015
3979 msgid ""
3980 "The handle maintains an internal iterator which is reset when you call "
3981 "C<guestfs_first_private>.  This internal iterator is invalidated when you "
3982 "call C<guestfs_set_private>."
3983 msgstr ""
3984
3985 #. type: textblock
3986 #: ../src/guestfs.pod:2021
3987 msgid "If you have set the data pointer associated with a key to C<NULL>, ie:"
3988 msgstr ""
3989
3990 #. type: verbatim
3991 #: ../src/guestfs.pod:2023
3992 #, no-wrap
3993 msgid ""
3994 " guestfs_set_private (g, key, NULL);\n"
3995 "\n"
3996 msgstr ""
3997
3998 #. type: textblock
3999 #: ../src/guestfs.pod:2025
4000 msgid "then that C<key> is not returned when walking."
4001 msgstr ""
4002
4003 #. type: textblock
4004 #: ../src/guestfs.pod:2029
4005 msgid ""
4006 "C<*key_rtn> is only valid until the next call to C<guestfs_first_private>, "
4007 "C<guestfs_next_private> or C<guestfs_set_private>."
4008 msgstr ""
4009
4010 #. type: textblock
4011 #: ../src/guestfs.pod:2035
4012 msgid ""
4013 "The following example code shows how to print all keys and data pointers "
4014 "that are associated with the handle C<g>:"
4015 msgstr ""
4016
4017 #. type: verbatim
4018 #: ../src/guestfs.pod:2038
4019 #, no-wrap
4020 msgid ""
4021 " const char *key;\n"
4022 " void *data = guestfs_first_private (g, &key);\n"
4023 " while (data != NULL)\n"
4024 "   {\n"
4025 "     printf (\"key = %s, data = %p\\n\", key, data);\n"
4026 "     data = guestfs_next_private (g, &key);\n"
4027 "   }\n"
4028 "\n"
4029 msgstr ""
4030
4031 #. type: textblock
4032 #: ../src/guestfs.pod:2046
4033 msgid ""
4034 "More commonly you are only interested in keys that begin with an application-"
4035 "specific prefix C<foo_>.  Modify the loop like so:"
4036 msgstr ""
4037
4038 #. type: verbatim
4039 #: ../src/guestfs.pod:2049
4040 #, no-wrap
4041 msgid ""
4042 " const char *key;\n"
4043 " void *data = guestfs_first_private (g, &key);\n"
4044 " while (data != NULL)\n"
4045 "   {\n"
4046 "     if (strncmp (key, \"foo_\", strlen (\"foo_\")) == 0)\n"
4047 "       printf (\"key = %s, data = %p\\n\", key, data);\n"
4048 "     data = guestfs_next_private (g, &key);\n"
4049 "   }\n"
4050 "\n"
4051 msgstr ""
4052
4053 #. type: textblock
4054 #: ../src/guestfs.pod:2058
4055 msgid ""
4056 "If you need to modify keys while walking, then you have to jump back to the "
4057 "beginning of the loop.  For example, to delete all keys prefixed with "
4058 "C<foo_>:"
4059 msgstr ""
4060
4061 #. type: verbatim
4062 #: ../src/guestfs.pod:2062
4063 #, no-wrap
4064 msgid ""
4065 "  const char *key;\n"
4066 "  void *data;\n"
4067 " again:\n"
4068 "  data = guestfs_first_private (g, &key);\n"
4069 "  while (data != NULL)\n"
4070 "    {\n"
4071 "      if (strncmp (key, \"foo_\", strlen (\"foo_\")) == 0)\n"
4072 "        {\n"
4073 "          guestfs_set_private (g, key, NULL);\n"
4074 "          /* note that 'key' pointer is now invalid, and so is\n"
4075 "             the internal iterator */\n"
4076 "          goto again;\n"
4077 "        }\n"
4078 "      data = guestfs_next_private (g, &key);\n"
4079 "    }\n"
4080 "\n"
4081 msgstr ""
4082
4083 #. type: textblock
4084 #: ../src/guestfs.pod:2078
4085 msgid ""
4086 "Note that the above loop is guaranteed to terminate because the keys are "
4087 "being deleted, but other manipulations of keys within the loop might not "
4088 "terminate unless you also maintain an indication of which keys have been "
4089 "visited."
4090 msgstr ""
4091
4092 #. type: =end
4093 #: ../src/guestfs.pod:2083 ../src/guestfs.pod:2088
4094 msgid "html"
4095 msgstr "html"
4096
4097 #. type: textblock
4098 #: ../src/guestfs.pod:2085
4099 msgid ""
4100 "<!-- old anchor for the next section --> <a name="
4101 "\"state_machine_and_low_level_event_api\"/>"
4102 msgstr ""
4103 "<!-- old anchor for the next section --> <a name="
4104 "\"state_machine_and_low_level_event_api\"/>"
4105
4106 #. type: =head1
4107 #: ../src/guestfs.pod:2090
4108 msgid "ARCHITECTURE"
4109 msgstr "АРХІТЕКТУРА"
4110
4111 #. type: textblock
4112 #: ../src/guestfs.pod:2092
4113 msgid ""
4114 "Internally, libguestfs is implemented by running an appliance (a special "
4115 "type of small virtual machine) using L<qemu(1)>.  Qemu runs as a child "
4116 "process of the main program."
4117 msgstr ""
4118
4119 #. type: verbatim
4120 #: ../src/guestfs.pod:2096
4121 #, no-wrap
4122 msgid ""
4123 "  ___________________\n"
4124 " /                   \\\n"
4125 " | main program      |\n"
4126 " |                   |\n"
4127 " |                   |           child process / appliance\n"
4128 " |                   |           __________________________\n"
4129 " |                   |          / qemu                     \\\n"
4130 " +-------------------+   RPC    |      +-----------------+ |\n"
4131 " | libguestfs     <--------------------> guestfsd        | |\n"
4132 " |                   |          |      +-----------------+ |\n"
4133 " \\___________________/          |      | Linux kernel    | |\n"
4134 "                                |      +--^--------------+ |\n"
4135 "                                \\_________|________________/\n"
4136 "                                          |\n"
4137 "                                   _______v______\n"
4138 "                                  /              \\\n"
4139 "                                  | Device or    |\n"
4140 "                                  | disk image   |\n"
4141 "                                  \\______________/\n"
4142 "\n"
4143 msgstr ""
4144
4145 #. type: textblock
4146 #: ../src/guestfs.pod:2116
4147 msgid ""
4148 "The library, linked to the main program, creates the child process and hence "
4149 "the appliance in the L</guestfs_launch> function."
4150 msgstr ""
4151
4152 #. type: textblock
4153 #: ../src/guestfs.pod:2119
4154 msgid ""
4155 "Inside the appliance is a Linux kernel and a complete stack of userspace "
4156 "tools (such as LVM and ext2 programs) and a small controlling daemon called "
4157 "L</guestfsd>.  The library talks to L</guestfsd> using remote procedure "
4158 "calls (RPC).  There is a mostly one-to-one correspondence between libguestfs "
4159 "API calls and RPC calls to the daemon.  Lastly the disk image(s) are "
4160 "attached to the qemu process which translates device access by the "
4161 "appliance's Linux kernel into accesses to the image."
4162 msgstr ""
4163
4164 #. type: textblock
4165 #: ../src/guestfs.pod:2128
4166 msgid ""
4167 "A common misunderstanding is that the appliance \"is\" the virtual machine.  "
4168 "Although the disk image you are attached to might also be used by some "
4169 "virtual machine, libguestfs doesn't know or care about this.  (But you will "
4170 "care if both libguestfs's qemu process and your virtual machine are trying "
4171 "to update the disk image at the same time, since these usually results in "
4172 "massive disk corruption)."
4173 msgstr ""
4174
4175 #. type: =head1
4176 #: ../src/guestfs.pod:2135
4177 msgid "STATE MACHINE"
4178 msgstr "СКІНЧЕННИЙ АВТОМАТ"
4179
4180 #. type: textblock
4181 #: ../src/guestfs.pod:2137
4182 msgid "libguestfs uses a state machine to model the child process:"
4183 msgstr ""
4184
4185 #. type: verbatim
4186 #: ../src/guestfs.pod:2139
4187 #, no-wrap
4188 msgid ""
4189 "                         |\n"
4190 "                    guestfs_create\n"
4191 "                         |\n"
4192 "                         |\n"
4193 "                     ____V_____\n"
4194 "                    /          \\\n"
4195 "                    |  CONFIG  |\n"
4196 "                    \\__________/\n"
4197 "                     ^ ^   ^  \\\n"
4198 "                    /  |    \\  \\ guestfs_launch\n"
4199 "                   /   |    _\\__V______\n"
4200 "                  /    |   /           \\\n"
4201 "                 /     |   | LAUNCHING |\n"
4202 "                /      |   \\___________/\n"
4203 "               /       |       /\n"
4204 "              /        |  guestfs_launch\n"
4205 "             /         |     /\n"
4206 "    ______  /        __|____V\n"
4207 "   /      \\ ------> /        \\\n"
4208 "   | BUSY |         | READY  |\n"
4209 "   \\______/ <------ \\________/\n"
4210 "\n"
4211 msgstr ""
4212
4213 #. type: textblock
4214 #: ../src/guestfs.pod:2161
4215 msgid ""
4216 "The normal transitions are (1) CONFIG (when the handle is created, but there "
4217 "is no child process), (2) LAUNCHING (when the child process is booting up), "
4218 "(3) alternating between READY and BUSY as commands are issued to, and "
4219 "carried out by, the child process."
4220 msgstr ""
4221
4222 #. type: textblock
4223 #: ../src/guestfs.pod:2166
4224 msgid ""
4225 "The guest may be killed by L</guestfs_kill_subprocess>, or may die "
4226 "asynchronously at any time (eg. due to some internal error), and that causes "
4227 "the state to transition back to CONFIG."
4228 msgstr ""
4229
4230 #. type: textblock
4231 #: ../src/guestfs.pod:2170
4232 msgid ""
4233 "Configuration commands for qemu such as L</guestfs_add_drive> can only be "
4234 "issued when in the CONFIG state."
4235 msgstr ""
4236
4237 #. type: textblock
4238 #: ../src/guestfs.pod:2173
4239 msgid ""
4240 "The API offers one call that goes from CONFIG through LAUNCHING to READY.  "
4241 "L</guestfs_launch> blocks until the child process is READY to accept "
4242 "commands (or until some failure or timeout).  L</guestfs_launch> internally "
4243 "moves the state from CONFIG to LAUNCHING while it is running."
4244 msgstr ""
4245
4246 #. type: textblock
4247 #: ../src/guestfs.pod:2179
4248 msgid ""
4249 "API actions such as L</guestfs_mount> can only be issued when in the READY "
4250 "state.  These API calls block waiting for the command to be carried out (ie. "
4251 "the state to transition to BUSY and then back to READY).  There are no non-"
4252 "blocking versions, and no way to issue more than one command per handle at "
4253 "the same time."
4254 msgstr ""
4255
4256 #. type: textblock
4257 #: ../src/guestfs.pod:2185
4258 msgid ""
4259 "Finally, the child process sends asynchronous messages back to the main "
4260 "program, such as kernel log messages.  You can register a callback to "
4261 "receive these messages."
4262 msgstr ""
4263
4264 #. type: =head1
4265 #: ../src/guestfs.pod:2189
4266 msgid "INTERNALS"
4267 msgstr ""
4268
4269 #. type: =head2
4270 #: ../src/guestfs.pod:2191
4271 msgid "COMMUNICATION PROTOCOL"
4272 msgstr ""
4273
4274 #. type: textblock
4275 #: ../src/guestfs.pod:2193
4276 msgid ""
4277 "Don't rely on using this protocol directly.  This section documents how it "
4278 "currently works, but it may change at any time."
4279 msgstr ""
4280
4281 #. type: textblock
4282 #: ../src/guestfs.pod:2196
4283 msgid ""
4284 "The protocol used to talk between the library and the daemon running inside "
4285 "the qemu virtual machine is a simple RPC mechanism built on top of XDR (RFC "
4286 "1014, RFC 1832, RFC 4506)."
4287 msgstr ""
4288
4289 #. type: textblock
4290 #: ../src/guestfs.pod:2200
4291 msgid ""
4292 "The detailed format of structures is in C<src/guestfs_protocol.x> (note: "
4293 "this file is automatically generated)."
4294 msgstr ""
4295
4296 #. type: textblock
4297 #: ../src/guestfs.pod:2203
4298 msgid ""
4299 "There are two broad cases, ordinary functions that don't have any C<FileIn> "
4300 "and C<FileOut> parameters, which are handled with very simple request/reply "
4301 "messages.  Then there are functions that have any C<FileIn> or C<FileOut> "
4302 "parameters, which use the same request and reply messages, but they may also "
4303 "be followed by files sent using a chunked encoding."
4304 msgstr ""
4305
4306 #. type: =head3
4307 #: ../src/guestfs.pod:2210
4308 msgid "ORDINARY FUNCTIONS (NO FILEIN/FILEOUT PARAMS)"
4309 msgstr ""
4310
4311 #. type: textblock
4312 #: ../src/guestfs.pod:2212
4313 msgid "For ordinary functions, the request message is:"
4314 msgstr ""
4315
4316 #. type: verbatim
4317 #: ../src/guestfs.pod:2214
4318 #, no-wrap
4319 msgid ""
4320 " total length (header + arguments,\n"
4321 "      but not including the length word itself)\n"
4322 " struct guestfs_message_header (encoded as XDR)\n"
4323 " struct guestfs_<foo>_args (encoded as XDR)\n"
4324 "\n"
4325 msgstr ""
4326
4327 #. type: textblock
4328 #: ../src/guestfs.pod:2219
4329 msgid ""
4330 "The total length field allows the daemon to allocate a fixed size buffer "
4331 "into which it slurps the rest of the message.  As a result, the total length "
4332 "is limited to C<GUESTFS_MESSAGE_MAX> bytes (currently 4MB), which means the "
4333 "effective size of any request is limited to somewhere under this size."
4334 msgstr ""
4335
4336 #. type: textblock
4337 #: ../src/guestfs.pod:2225
4338 msgid ""
4339 "Note also that many functions don't take any arguments, in which case the "
4340 "C<guestfs_I<foo>_args> is completely omitted."
4341 msgstr ""
4342
4343 #. type: textblock
4344 #: ../src/guestfs.pod:2228
4345 msgid ""
4346 "The header contains the procedure number (C<guestfs_proc>) which is how the "
4347 "receiver knows what type of args structure to expect, or none at all."
4348 msgstr ""
4349
4350 #. type: textblock
4351 #: ../src/guestfs.pod:2232
4352 msgid ""
4353 "For functions that take optional arguments, the optional arguments are "
4354 "encoded in the C<guestfs_I<foo>_args> structure in the same way as ordinary "
4355 "arguments.  A bitmask in the header indicates which optional arguments are "
4356 "meaningful.  The bitmask is also checked to see if it contains bits set "
4357 "which the daemon does not know about (eg. if more optional arguments were "
4358 "added in a later version of the library), and this causes the call to be "
4359 "rejected."
4360 msgstr ""
4361
4362 #. type: textblock
4363 #: ../src/guestfs.pod:2240
4364 msgid "The reply message for ordinary functions is:"
4365 msgstr ""
4366
4367 #. type: verbatim
4368 #: ../src/guestfs.pod:2242
4369 #, no-wrap
4370 msgid ""
4371 " total length (header + ret,\n"
4372 "      but not including the length word itself)\n"
4373 " struct guestfs_message_header (encoded as XDR)\n"
4374 " struct guestfs_<foo>_ret (encoded as XDR)\n"
4375 "\n"
4376 msgstr ""
4377
4378 #. type: textblock
4379 #: ../src/guestfs.pod:2247
4380 msgid ""
4381 "As above the C<guestfs_I<foo>_ret> structure may be completely omitted for "
4382 "functions that return no formal return values."
4383 msgstr ""
4384
4385 #. type: textblock
4386 #: ../src/guestfs.pod:2250
4387 msgid ""
4388 "As above the total length of the reply is limited to C<GUESTFS_MESSAGE_MAX>."
4389 msgstr ""
4390
4391 #. type: textblock
4392 #: ../src/guestfs.pod:2253
4393 msgid ""
4394 "In the case of an error, a flag is set in the header, and the reply message "
4395 "is slightly changed:"
4396 msgstr ""
4397
4398 #. type: verbatim
4399 #: ../src/guestfs.pod:2256
4400 #, no-wrap
4401 msgid ""
4402 " total length (header + error,\n"
4403 "      but not including the length word itself)\n"
4404 " struct guestfs_message_header (encoded as XDR)\n"
4405 " struct guestfs_message_error (encoded as XDR)\n"
4406 "\n"
4407 msgstr ""
4408
4409 #. type: textblock
4410 #: ../src/guestfs.pod:2261
4411 msgid ""
4412 "The C<guestfs_message_error> structure contains the error message as a "
4413 "string."
4414 msgstr ""
4415
4416 #. type: =head3
4417 #: ../src/guestfs.pod:2264
4418 msgid "FUNCTIONS THAT HAVE FILEIN PARAMETERS"
4419 msgstr ""
4420
4421 #. type: textblock
4422 #: ../src/guestfs.pod:2266
4423 msgid ""
4424 "A C<FileIn> parameter indicates that we transfer a file I<into> the guest.  "
4425 "The normal request message is sent (see above).  However this is followed by "
4426 "a sequence of file chunks."
4427 msgstr ""
4428
4429 #. type: verbatim
4430 #: ../src/guestfs.pod:2270
4431 #, no-wrap
4432 msgid ""
4433 " total length (header + arguments,\n"
4434 "      but not including the length word itself,\n"
4435 "      and not including the chunks)\n"
4436 " struct guestfs_message_header (encoded as XDR)\n"
4437 " struct guestfs_<foo>_args (encoded as XDR)\n"
4438 " sequence of chunks for FileIn param #0\n"
4439 " sequence of chunks for FileIn param #1 etc.\n"
4440 "\n"
4441 msgstr ""
4442
4443 #. type: textblock
4444 #: ../src/guestfs.pod:2278
4445 msgid "The \"sequence of chunks\" is:"
4446 msgstr ""
4447
4448 #. type: verbatim
4449 #: ../src/guestfs.pod:2280
4450 #, no-wrap
4451 msgid ""
4452 " length of chunk (not including length word itself)\n"
4453 " struct guestfs_chunk (encoded as XDR)\n"
4454 " length of chunk\n"
4455 " struct guestfs_chunk (encoded as XDR)\n"
4456 "   ...\n"
4457 " length of chunk\n"
4458 " struct guestfs_chunk (with data.data_len == 0)\n"
4459 "\n"
4460 msgstr ""
4461
4462 #. type: textblock
4463 #: ../src/guestfs.pod:2288
4464 msgid ""
4465 "The final chunk has the C<data_len> field set to zero.  Additionally a flag "
4466 "is set in the final chunk to indicate either successful completion or early "
4467 "cancellation."
4468 msgstr ""
4469
4470 #. type: textblock
4471 #: ../src/guestfs.pod:2292
4472 msgid ""
4473 "At time of writing there are no functions that have more than one FileIn "
4474 "parameter.  However this is (theoretically) supported, by sending the "
4475 "sequence of chunks for each FileIn parameter one after another (from left to "
4476 "right)."
4477 msgstr ""
4478
4479 #. type: textblock
4480 #: ../src/guestfs.pod:2297
4481 msgid ""
4482 "Both the library (sender) I<and> the daemon (receiver) may cancel the "
4483 "transfer.  The library does this by sending a chunk with a special flag set "
4484 "to indicate cancellation.  When the daemon sees this, it cancels the whole "
4485 "RPC, does I<not> send any reply, and goes back to reading the next request."
4486 msgstr ""
4487
4488 #. type: textblock
4489 #: ../src/guestfs.pod:2303
4490 msgid ""
4491 "The daemon may also cancel.  It does this by writing a special word "
4492 "C<GUESTFS_CANCEL_FLAG> to the socket.  The library listens for this during "
4493 "the transfer, and if it gets it, it will cancel the transfer (it sends a "
4494 "cancel chunk).  The special word is chosen so that even if cancellation "
4495 "happens right at the end of the transfer (after the library has finished "
4496 "writing and has started listening for the reply), the \"spurious\" cancel "
4497 "flag will not be confused with the reply message."
4498 msgstr ""
4499
4500 #. type: textblock
4501 #: ../src/guestfs.pod:2312
4502 msgid ""
4503 "This protocol allows the transfer of arbitrary sized files (no 32 bit "
4504 "limit), and also files where the size is not known in advance (eg. from "
4505 "pipes or sockets).  However the chunks are rather small "
4506 "(C<GUESTFS_MAX_CHUNK_SIZE>), so that neither the library nor the daemon need "
4507 "to keep much in memory."
4508 msgstr ""
4509
4510 #. type: =head3
4511 #: ../src/guestfs.pod:2318
4512 msgid "FUNCTIONS THAT HAVE FILEOUT PARAMETERS"
4513 msgstr ""
4514
4515 #. type: textblock
4516 #: ../src/guestfs.pod:2320
4517 msgid ""
4518 "The protocol for FileOut parameters is exactly the same as for FileIn "
4519 "parameters, but with the roles of daemon and library reversed."
4520 msgstr ""
4521
4522 #. type: verbatim
4523 #: ../src/guestfs.pod:2323
4524 #, no-wrap
4525 msgid ""
4526 " total length (header + ret,\n"
4527 "      but not including the length word itself,\n"
4528 "      and not including the chunks)\n"
4529 " struct guestfs_message_header (encoded as XDR)\n"
4530 " struct guestfs_<foo>_ret (encoded as XDR)\n"
4531 " sequence of chunks for FileOut param #0\n"
4532 " sequence of chunks for FileOut param #1 etc.\n"
4533 "\n"
4534 msgstr ""
4535
4536 #. type: =head3
4537 #: ../src/guestfs.pod:2331
4538 msgid "INITIAL MESSAGE"
4539 msgstr ""
4540
4541 #. type: textblock
4542 #: ../src/guestfs.pod:2333
4543 msgid ""
4544 "When the daemon launches it sends an initial word (C<GUESTFS_LAUNCH_FLAG>) "
4545 "which indicates that the guest and daemon is alive.  This is what L</"
4546 "guestfs_launch> waits for."
4547 msgstr ""
4548
4549 #. type: =head3
4550 #: ../src/guestfs.pod:2337
4551 msgid "PROGRESS NOTIFICATION MESSAGES"
4552 msgstr ""
4553
4554 #. type: textblock
4555 #: ../src/guestfs.pod:2339
4556 msgid ""
4557 "The daemon may send progress notification messages at any time.  These are "
4558 "distinguished by the normal length word being replaced by "
4559 "C<GUESTFS_PROGRESS_FLAG>, followed by a fixed size progress message."
4560 msgstr ""
4561
4562 #. type: textblock
4563 #: ../src/guestfs.pod:2343
4564 msgid ""
4565 "The library turns them into progress callbacks (see L</"
4566 "GUESTFS_EVENT_PROGRESS>) if there is a callback registered, or discards them "
4567 "if not."
4568 msgstr ""
4569
4570 #. type: textblock
4571 #: ../src/guestfs.pod:2347
4572 msgid ""
4573 "The daemon self-limits the frequency of progress messages it sends (see "
4574 "C<daemon/proto.c:notify_progress>).  Not all calls generate progress "
4575 "messages."
4576 msgstr ""
4577
4578 #. type: =head1
4579 #: ../src/guestfs.pod:2351
4580 msgid "LIBGUESTFS VERSION NUMBERS"
4581 msgstr ""
4582
4583 #. type: textblock
4584 #: ../src/guestfs.pod:2353
4585 msgid ""
4586 "Since April 2010, libguestfs has started to make separate development and "
4587 "stable releases, along with corresponding branches in our git repository.  "
4588 "These separate releases can be identified by version number:"
4589 msgstr ""
4590
4591 #. type: verbatim
4592 #: ../src/guestfs.pod:2358
4593 #, no-wrap
4594 msgid ""
4595 "                 even numbers for stable: 1.2.x, 1.4.x, ...\n"
4596 "       .-------- odd numbers for development: 1.3.x, 1.5.x, ...\n"
4597 "       |\n"
4598 "       v\n"
4599 " 1  .  3  .  5\n"
4600 " ^           ^\n"
4601 " |           |\n"
4602 " |           `-------- sub-version\n"
4603 " |\n"
4604 " `------ always '1' because we don't change the ABI\n"
4605 "\n"
4606 msgstr ""
4607
4608 #. type: textblock
4609 #: ../src/guestfs.pod:2369
4610 msgid "Thus \"1.3.5\" is the 5th update to the development branch \"1.3\"."
4611 msgstr ""
4612
4613 #. type: textblock
4614 #: ../src/guestfs.pod:2371
4615 msgid ""
4616 "As time passes we cherry pick fixes from the development branch and backport "
4617 "those into the stable branch, the effect being that the stable branch should "
4618 "get more stable and less buggy over time.  So the stable releases are ideal "
4619 "for people who don't need new features but would just like the software to "
4620 "work."
4621 msgstr ""
4622
4623 #. type: textblock
4624 #: ../src/guestfs.pod:2377
4625 msgid "Our criteria for backporting changes are:"
4626 msgstr ""
4627
4628 #. type: textblock
4629 #: ../src/guestfs.pod:2383
4630 msgid ""
4631 "Documentation changes which don't affect any code are backported unless the "
4632 "documentation refers to a future feature which is not in stable."
4633 msgstr ""
4634
4635 #. type: textblock
4636 #: ../src/guestfs.pod:2389
4637 msgid ""
4638 "Bug fixes which are not controversial, fix obvious problems, and have been "
4639 "well tested are backported."
4640 msgstr ""
4641
4642 #. type: textblock
4643 #: ../src/guestfs.pod:2394
4644 msgid ""
4645 "Simple rearrangements of code which shouldn't affect how it works get "
4646 "backported.  This is so that the code in the two branches doesn't get too "
4647 "far out of step, allowing us to backport future fixes more easily."
4648 msgstr ""
4649
4650 #. type: textblock
4651 #: ../src/guestfs.pod:2400
4652 msgid ""
4653 "We I<don't> backport new features, new APIs, new tools etc, except in one "
4654 "exceptional case: the new feature is required in order to implement an "
4655 "important bug fix."
4656 msgstr ""
4657
4658 #. type: textblock
4659 #: ../src/guestfs.pod:2406
4660 msgid ""
4661 "A new stable branch starts when we think the new features in development are "
4662 "substantial and compelling enough over the current stable branch to warrant "
4663 "it.  When that happens we create new stable and development versions 1.N.0 "
4664 "and 1.(N+1).0 [N is even].  The new dot-oh release won't necessarily be so "
4665 "stable at this point, but by backporting fixes from development, that branch "
4666 "will stabilize over time."
4667 msgstr ""
4668
4669 #. type: =head1
4670 #: ../src/guestfs.pod:2414
4671 msgid "EXTENDING LIBGUESTFS"
4672 msgstr ""
4673
4674 #. type: =head2
4675 #: ../src/guestfs.pod:2416
4676 msgid "ADDING A NEW API ACTION"
4677 msgstr ""
4678
4679 #. type: textblock
4680 #: ../src/guestfs.pod:2418
4681 msgid ""
4682 "Large amounts of boilerplate code in libguestfs (RPC, bindings, "
4683 "documentation) are generated, and this makes it easy to extend the "
4684 "libguestfs API."
4685 msgstr ""
4686
4687 #. type: textblock
4688 #: ../src/guestfs.pod:2422
4689 msgid "To add a new API action there are two changes:"
4690 msgstr ""
4691
4692 #. type: textblock
4693 #: ../src/guestfs.pod:2428
4694 msgid ""
4695 "You need to add a description of the call (name, parameters, return type, "
4696 "tests, documentation) to C<generator/generator_actions.ml>."
4697 msgstr ""
4698
4699 #. type: textblock
4700 #: ../src/guestfs.pod:2431
4701 msgid ""
4702 "There are two sorts of API action, depending on whether the call goes "
4703 "through to the daemon in the appliance, or is serviced entirely by the "
4704 "library (see L</ARCHITECTURE> above).  L</guestfs_sync> is an example of the "
4705 "former, since the sync is done in the appliance.  L</guestfs_set_trace> is "
4706 "an example of the latter, since a trace flag is maintained in the handle and "
4707 "all tracing is done on the library side."
4708 msgstr ""
4709
4710 #. type: textblock
4711 #: ../src/guestfs.pod:2439
4712 msgid ""
4713 "Most new actions are of the first type, and get added to the "
4714 "C<daemon_functions> list.  Each function has a unique procedure number used "
4715 "in the RPC protocol which is assigned to that action when we publish "
4716 "libguestfs and cannot be reused.  Take the latest procedure number and "
4717 "increment it."
4718 msgstr ""
4719
4720 #. type: textblock
4721 #: ../src/guestfs.pod:2445
4722 msgid ""
4723 "For library-only actions of the second type, add to the "
4724 "C<non_daemon_functions> list.  Since these functions are serviced by the "
4725 "library and do not travel over the RPC mechanism to the daemon, these "
4726 "functions do not need a procedure number, and so the procedure number is set "
4727 "to C<-1>."
4728 msgstr ""
4729
4730 #. type: textblock
4731 #: ../src/guestfs.pod:2453
4732 msgid "Implement the action (in C):"
4733 msgstr ""
4734
4735 #. type: textblock
4736 #: ../src/guestfs.pod:2455
4737 msgid ""
4738 "For daemon actions, implement the function C<do_E<lt>nameE<gt>> in the "
4739 "C<daemon/> directory."
4740 msgstr ""
4741
4742 #. type: textblock
4743 #: ../src/guestfs.pod:2458
4744 msgid ""
4745 "For library actions, implement the function C<guestfs__E<lt>nameE<gt>> "
4746 "(note: double underscore) in the C<src/> directory."
4747 msgstr ""
4748
4749 #. type: textblock
4750 #: ../src/guestfs.pod:2461
4751 msgid "In either case, use another function as an example of what to do."
4752 msgstr ""
4753
4754 #. type: textblock
4755 #: ../src/guestfs.pod:2465
4756 msgid "After making these changes, use C<make> to compile."
4757 msgstr ""
4758
4759 #. type: textblock
4760 #: ../src/guestfs.pod:2467
4761 msgid ""
4762 "Note that you don't need to implement the RPC, language bindings, manual "
4763 "pages or anything else.  It's all automatically generated from the OCaml "
4764 "description."
4765 msgstr ""
4766
4767 #. type: =head2
4768 #: ../src/guestfs.pod:2471
4769 msgid "ADDING TESTS FOR AN API ACTION"
4770 msgstr ""
4771
4772 #. type: textblock
4773 #: ../src/guestfs.pod:2473
4774 msgid ""
4775 "You can supply zero or as many tests as you want per API call.  The tests "
4776 "can either be added as part of the API description (C<generator/"
4777 "generator_actions.ml>), or in some rarer cases you may want to drop a script "
4778 "into C<regressions/>.  Note that adding a script to C<regressions/> is "
4779 "slower, so if possible use the first method."
4780 msgstr ""
4781
4782 #. type: textblock
4783 #: ../src/guestfs.pod:2479
4784 msgid ""
4785 "The following describes the test environment used when you add an API test "
4786 "in C<generator_actions.ml>."
4787 msgstr ""
4788
4789 #. type: textblock
4790 #: ../src/guestfs.pod:2482
4791 msgid "The test environment has 4 block devices:"
4792 msgstr ""
4793
4794 #. type: =item
4795 #: ../src/guestfs.pod:2486
4796 msgid "C</dev/sda> 500MB"
4797 msgstr ""
4798
4799 #. type: textblock
4800 #: ../src/guestfs.pod:2488
4801 msgid "General block device for testing."
4802 msgstr ""
4803
4804 #. type: =item
4805 #: ../src/guestfs.pod:2490
4806 msgid "C</dev/sdb> 50MB"
4807 msgstr ""
4808
4809 #. type: textblock
4810 #: ../src/guestfs.pod:2492
4811 msgid ""
4812 "C</dev/sdb1> is an ext2 filesystem used for testing filesystem write "
4813 "operations."
4814 msgstr ""
4815
4816 #. type: =item
4817 #: ../src/guestfs.pod:2495
4818 msgid "C</dev/sdc> 10MB"
4819 msgstr ""
4820
4821 #. type: textblock
4822 #: ../src/guestfs.pod:2497
4823 msgid "Used in a few tests where two block devices are needed."
4824 msgstr ""
4825
4826 #. type: =item
4827 #: ../src/guestfs.pod:2499
4828 msgid "C</dev/sdd>"
4829 msgstr "C</dev/sdd>"
4830
4831 #. type: textblock
4832 #: ../src/guestfs.pod:2501
4833 msgid "ISO with fixed content (see C<images/test.iso>)."
4834 msgstr ""
4835
4836 #. type: textblock
4837 #: ../src/guestfs.pod:2505
4838 msgid ""
4839 "To be able to run the tests in a reasonable amount of time, the libguestfs "
4840 "appliance and block devices are reused between tests.  So don't try testing "
4841 "L</guestfs_kill_subprocess> :-x"
4842 msgstr ""
4843
4844 #. type: textblock
4845 #: ../src/guestfs.pod:2509
4846 msgid ""
4847 "Each test starts with an initial scenario, selected using one of the "
4848 "C<Init*> expressions, described in C<generator/generator_types.ml>.  These "
4849 "initialize the disks mentioned above in a particular way as documented in "
4850 "C<generator_types.ml>.  You should not assume anything about the previous "
4851 "contents of other disks that are not initialized."
4852 msgstr ""
4853
4854 #. type: textblock
4855 #: ../src/guestfs.pod:2515
4856 msgid ""
4857 "You can add a prerequisite clause to any individual test.  This is a run-"
4858 "time check, which, if it fails, causes the test to be skipped.  Useful if "
4859 "testing a command which might not work on all variations of libguestfs "
4860 "builds.  A test that has prerequisite of C<Always> means to run "
4861 "unconditionally."
4862 msgstr ""
4863
4864 #. type: textblock
4865 #: ../src/guestfs.pod:2521
4866 msgid ""
4867 "In addition, packagers can skip individual tests by setting environment "
4868 "variables before running C<make check>."
4869 msgstr ""
4870
4871 #. type: verbatim
4872 #: ../src/guestfs.pod:2524
4873 #, no-wrap
4874 msgid ""
4875 " SKIP_TEST_<CMD>_<NUM>=1\n"
4876 "\n"
4877 msgstr ""
4878
4879 #. type: textblock
4880 #: ../src/guestfs.pod:2526
4881 msgid "eg: C<SKIP_TEST_COMMAND_3=1> skips test #3 of L</guestfs_command>."
4882 msgstr ""
4883
4884 #. type: textblock
4885 #: ../src/guestfs.pod:2528
4886 msgid "or:"
4887 msgstr "або:"
4888
4889 #. type: verbatim
4890 #: ../src/guestfs.pod:2530
4891 #, no-wrap
4892 msgid ""
4893 " SKIP_TEST_<CMD>=1\n"
4894 "\n"
4895 msgstr ""
4896
4897 #. type: textblock
4898 #: ../src/guestfs.pod:2532
4899 msgid "eg: C<SKIP_TEST_ZEROFREE=1> skips all L</guestfs_zerofree> tests."
4900 msgstr ""
4901
4902 #. type: textblock
4903 #: ../src/guestfs.pod:2534
4904 msgid "Packagers can run only certain tests by setting for example:"
4905 msgstr ""
4906
4907 #. type: verbatim
4908 #: ../src/guestfs.pod:2536
4909 #, no-wrap
4910 msgid ""
4911 " TEST_ONLY=\"vfs_type zerofree\"\n"
4912 "\n"
4913 msgstr ""
4914
4915 #. type: textblock
4916 #: ../src/guestfs.pod:2538
4917 msgid ""
4918 "See C<capitests/tests.c> for more details of how these environment variables "
4919 "work."
4920 msgstr ""
4921
4922 #. type: =head2
4923 #: ../src/guestfs.pod:2541
4924 msgid "DEBUGGING NEW API ACTIONS"
4925 msgstr ""
4926
4927 #. type: textblock
4928 #: ../src/guestfs.pod:2543
4929 msgid "Test new actions work before submitting them."
4930 msgstr ""
4931
4932 #. type: textblock
4933 #: ../src/guestfs.pod:2545
4934 msgid "You can use guestfish to try out new commands."
4935 msgstr ""
4936
4937 #. type: textblock
4938 #: ../src/guestfs.pod:2547
4939 msgid ""
4940 "Debugging the daemon is a problem because it runs inside a minimal "
4941 "environment.  However you can fprintf messages in the daemon to stderr, and "
4942 "they will show up if you use C<guestfish -v>."
4943 msgstr ""
4944
4945 #. type: =head2
4946 #: ../src/guestfs.pod:2551
4947 msgid "FORMATTING CODE AND OTHER CONVENTIONS"
4948 msgstr ""
4949
4950 #. type: textblock
4951 #: ../src/guestfs.pod:2553
4952 msgid ""
4953 "Our C source code generally adheres to some basic code-formatting "
4954 "conventions.  The existing code base is not totally consistent on this "
4955 "front, but we do prefer that contributed code be formatted similarly.  In "
4956 "short, use spaces-not-TABs for indentation, use 2 spaces for each "
4957 "indentation level, and other than that, follow the K&R style."
4958 msgstr ""
4959
4960 #. type: textblock
4961 #: ../src/guestfs.pod:2559
4962 msgid ""
4963 "If you use Emacs, add the following to one of one of your start-up files (e."
4964 "g., ~/.emacs), to help ensure that you get indentation right:"
4965 msgstr ""
4966
4967 #. type: verbatim
4968 #: ../src/guestfs.pod:2562
4969 #, no-wrap
4970 msgid ""
4971 " ;;; In libguestfs, indent with spaces everywhere (not TABs).\n"
4972 " ;;; Exceptions: Makefile and ChangeLog modes.\n"
4973 " (add-hook 'find-file-hook\n"
4974 "     '(lambda () (if (and buffer-file-name\n"
4975 "                          (string-match \"/libguestfs\\\\>\"\n"
4976 "                              (buffer-file-name))\n"
4977 "                          (not (string-equal mode-name \"Change Log\"))\n"
4978 "                          (not (string-equal mode-name \"Makefile\")))\n"
4979 "                     (setq indent-tabs-mode nil))))\n"
4980 " \n"
4981 msgstr ""
4982
4983 #. type: verbatim
4984 #: ../src/guestfs.pod:2572
4985 #, no-wrap
4986 msgid ""
4987 " ;;; When editing C sources in libguestfs, use this style.\n"
4988 " (defun libguestfs-c-mode ()\n"
4989 "   \"C mode with adjusted defaults for use with libguestfs.\"\n"
4990 "   (interactive)\n"
4991 "   (c-set-style \"K&R\")\n"
4992 "   (setq c-indent-level 2)\n"
4993 "   (setq c-basic-offset 2))\n"
4994 " (add-hook 'c-mode-hook\n"
4995 "           '(lambda () (if (string-match \"/libguestfs\\\\>\"\n"
4996 "                               (buffer-file-name))\n"
4997 "                           (libguestfs-c-mode))))\n"
4998 "\n"
4999 msgstr ""
5000
5001 #. type: textblock
5002 #: ../src/guestfs.pod:2584
5003 msgid "Enable warnings when compiling (and fix any problems this finds):"
5004 msgstr ""
5005
5006 #. type: verbatim
5007 #: ../src/guestfs.pod:2587
5008 #, no-wrap
5009 msgid ""
5010 " ./configure --enable-gcc-warnings\n"
5011 "\n"
5012 msgstr ""
5013
5014 #. type: textblock
5015 #: ../src/guestfs.pod:2589
5016 msgid "Useful targets are:"
5017 msgstr ""
5018
5019 #. type: verbatim
5020 #: ../src/guestfs.pod:2591
5021 #, no-wrap
5022 msgid ""
5023 " make syntax-check  # checks the syntax of the C code\n"
5024 " make check         # runs the test suite\n"
5025 "\n"
5026 msgstr ""
5027
5028 #. type: =head2
5029 #: ../src/guestfs.pod:2594
5030 msgid "DAEMON CUSTOM PRINTF FORMATTERS"
5031 msgstr ""
5032
5033 #. type: textblock
5034 #: ../src/guestfs.pod:2596
5035 msgid ""
5036 "In the daemon code we have created custom printf formatters C<%Q> and C<%R>, "
5037 "which are used to do shell quoting."
5038 msgstr ""
5039
5040 #. type: =item
5041 #: ../src/guestfs.pod:2601
5042 msgid "%Q"
5043 msgstr "%Q"
5044
5045 #. type: textblock
5046 #: ../src/guestfs.pod:2603
5047 msgid ""
5048 "Simple shell quoted string.  Any spaces or other shell characters are "
5049 "escaped for you."
5050 msgstr ""
5051
5052 #. type: =item
5053 #: ../src/guestfs.pod:2606
5054 msgid "%R"
5055 msgstr "%R"
5056
5057 #. type: textblock
5058 #: ../src/guestfs.pod:2608
5059 msgid ""
5060 "Same as C<%Q> except the string is treated as a path which is prefixed by "
5061 "the sysroot."
5062 msgstr ""
5063
5064 #. type: textblock
5065 #: ../src/guestfs.pod:2613 ../fish/guestfish.pod:242 ../fish/guestfish.pod:615
5066 msgid "For example:"
5067 msgstr "Приклад:"
5068
5069 #. type: verbatim
5070 #: ../src/guestfs.pod:2615
5071 #, no-wrap
5072 msgid ""
5073 " asprintf (&cmd, \"cat %R\", path);\n"
5074 "\n"
5075 msgstr ""
5076
5077 #. type: textblock
5078 #: ../src/guestfs.pod:2617
5079 msgid "would produce C<cat /sysroot/some\\ path\\ with\\ spaces>"
5080 msgstr ""
5081
5082 #. type: textblock
5083 #: ../src/guestfs.pod:2619
5084 msgid ""
5085 "I<Note:> Do I<not> use these when you are passing parameters to the C<command"
5086 "{,r,v,rv}()> functions.  These parameters do NOT need to be quoted because "
5087 "they are not passed via the shell (instead, straight to exec).  You probably "
5088 "want to use the C<sysroot_path()> function however."
5089 msgstr ""
5090
5091 #. type: =head2
5092 #: ../src/guestfs.pod:2625
5093 msgid "SUBMITTING YOUR NEW API ACTIONS"
5094 msgstr ""
5095
5096 #. type: textblock
5097 #: ../src/guestfs.pod:2627
5098 msgid ""
5099 "Submit patches to the mailing list: L<http://www.redhat.com/mailman/listinfo/"
5100 "libguestfs> and CC to L<rjones@redhat.com>."
5101 msgstr ""
5102
5103 #. type: =head2
5104 #: ../src/guestfs.pod:2631
5105 msgid "INTERNATIONALIZATION (I18N) SUPPORT"
5106 msgstr ""
5107
5108 #. type: textblock
5109 #: ../src/guestfs.pod:2633
5110 msgid "We support i18n (gettext anyhow) in the library."
5111 msgstr ""
5112
5113 #. type: textblock
5114 #: ../src/guestfs.pod:2635
5115 msgid ""
5116 "However many messages come from the daemon, and we don't translate those at "
5117 "the moment.  One reason is that the appliance generally has all locale files "
5118 "removed from it, because they take up a lot of space.  So we'd have to readd "
5119 "some of those, as well as copying our PO files into the appliance."
5120 msgstr ""
5121
5122 #. type: textblock
5123 #: ../src/guestfs.pod:2641
5124 msgid ""
5125 "Debugging messages are never translated, since they are intended for the "
5126 "programmers."
5127 msgstr ""
5128
5129 #. type: =head2
5130 #: ../src/guestfs.pod:2644
5131 msgid "SOURCE CODE SUBDIRECTORIES"
5132 msgstr ""
5133
5134 #. type: =item
5135 #: ../src/guestfs.pod:2648 ../src/guestfs-actions.pod:5820
5136 #: ../fish/guestfish-actions.pod:3913
5137 msgid "C<appliance>"
5138 msgstr "C<appliance>"
5139
5140 #. type: textblock
5141 #: ../src/guestfs.pod:2650
5142 msgid "The libguestfs appliance, build scripts and so on."
5143 msgstr ""
5144
5145 #. type: =item
5146 #: ../src/guestfs.pod:2652
5147 msgid "C<capitests>"
5148 msgstr "C<capitests>"
5149
5150 #. type: textblock
5151 #: ../src/guestfs.pod:2654
5152 msgid "Automated tests of the C API."
5153 msgstr ""
5154
5155 #. type: =item
5156 #: ../src/guestfs.pod:2656
5157 msgid "C<cat>"
5158 msgstr "C<cat>"
5159
5160 #. type: textblock
5161 #: ../src/guestfs.pod:2658
5162 msgid ""
5163 "The L<virt-cat(1)>, L<virt-filesystems(1)> and L<virt-ls(1)> commands and "
5164 "documentation."
5165 msgstr ""
5166
5167 #. type: =item
5168 #: ../src/guestfs.pod:2661
5169 msgid "C<contrib>"
5170 msgstr "C<contrib>"
5171
5172 #. type: textblock
5173 #: ../src/guestfs.pod:2663
5174 msgid "Outside contributions, experimental parts."
5175 msgstr ""
5176
5177 #. type: =item
5178 #: ../src/guestfs.pod:2665
5179 msgid "C<daemon>"
5180 msgstr "C<daemon>"
5181
5182 #. type: textblock
5183 #: ../src/guestfs.pod:2667
5184 msgid ""
5185 "The daemon that runs inside the libguestfs appliance and carries out actions."
5186 msgstr ""
5187
5188 #. type: =item
5189 #: ../src/guestfs.pod:2670
5190 msgid "C<df>"
5191 msgstr "C<df>"
5192
5193 #. type: textblock
5194 #: ../src/guestfs.pod:2672
5195 msgid "L<virt-df(1)> command and documentation."
5196 msgstr ""
5197
5198 #. type: =item
5199 #: ../src/guestfs.pod:2674
5200 msgid "C<examples>"
5201 msgstr "C<examples>"
5202
5203 #. type: textblock
5204 #: ../src/guestfs.pod:2676
5205 msgid "C API example code."
5206 msgstr "Код прикладів використання програмного інтерфейсу мовою C."
5207
5208 #. type: =item
5209 #: ../src/guestfs.pod:2678
5210 msgid "C<fish>"
5211 msgstr "C<fish>"
5212
5213 #. type: textblock
5214 #: ../src/guestfs.pod:2680
5215 msgid ""
5216 "L<guestfish(1)>, the command-line shell, and various shell scripts built on "
5217 "top such as L<virt-copy-in(1)>, L<virt-copy-out(1)>, L<virt-tar-in(1)>, "
5218 "L<virt-tar-out(1)>."
5219 msgstr ""
5220
5221 #. type: =item
5222 #: ../src/guestfs.pod:2684
5223 msgid "C<fuse>"
5224 msgstr "C<fuse>"
5225
5226 #. type: textblock
5227 #: ../src/guestfs.pod:2686
5228 msgid ""
5229 "L<guestmount(1)>, FUSE (userspace filesystem) built on top of libguestfs."
5230 msgstr ""
5231
5232 #. type: =item
5233 #: ../src/guestfs.pod:2688
5234 msgid "C<generator>"
5235 msgstr "C<generator>"
5236
5237 #. type: textblock
5238 #: ../src/guestfs.pod:2690
5239 msgid ""
5240 "The crucially important generator, used to automatically generate large "
5241 "amounts of boilerplate C code for things like RPC and bindings."
5242 msgstr ""
5243
5244 #. type: =item
5245 #: ../src/guestfs.pod:2693
5246 msgid "C<images>"
5247 msgstr "C<images>"
5248
5249 #. type: textblock
5250 #: ../src/guestfs.pod:2695
5251 msgid "Files used by the test suite."
5252 msgstr ""
5253
5254 #. type: textblock
5255 #: ../src/guestfs.pod:2697
5256 msgid "Some \"phony\" guest images which we test against."
5257 msgstr ""
5258
5259 #. type: =item
5260 #: ../src/guestfs.pod:2699
5261 msgid "C<inspector>"
5262 msgstr "C<inspector>"
5263
5264 #. type: textblock
5265 #: ../src/guestfs.pod:2701
5266 msgid "L<virt-inspector(1)>, the virtual machine image inspector."
5267 msgstr ""
5268
5269 #. type: =item
5270 #: ../src/guestfs.pod:2703
5271 msgid "C<logo>"
5272 msgstr "C<logo>"
5273
5274 #. type: textblock
5275 #: ../src/guestfs.pod:2705
5276 msgid "Logo used on the website.  The fish is called Arthur by the way."
5277 msgstr ""
5278
5279 #. type: =item
5280 #: ../src/guestfs.pod:2707
5281 msgid "C<m4>"
5282 msgstr "C<m4>"
5283
5284 #. type: textblock
5285 #: ../src/guestfs.pod:2709
5286 msgid "M4 macros used by autoconf."
5287 msgstr ""
5288
5289 #. type: =item
5290 #: ../src/guestfs.pod:2711
5291 msgid "C<po>"
5292 msgstr "C<po>"
5293
5294 #. type: textblock
5295 #: ../src/guestfs.pod:2713
5296 msgid "Translations of simple gettext strings."
5297 msgstr "Переклади простих рядків gettext."
5298
5299 #. type: =item
5300 #: ../src/guestfs.pod:2715
5301 msgid "C<po-docs>"
5302 msgstr "C<po-docs>"
5303
5304 #. type: textblock
5305 #: ../src/guestfs.pod:2717
5306 msgid ""
5307 "The build infrastructure and PO files for translations of manpages and POD "
5308 "files.  Eventually this will be combined with the C<po> directory, but that "
5309 "is rather complicated."
5310 msgstr ""
5311
5312 #. type: =item
5313 #: ../src/guestfs.pod:2721
5314 msgid "C<regressions>"
5315 msgstr "C<regressions>"
5316
5317 #. type: textblock
5318 #: ../src/guestfs.pod:2723
5319 msgid "Regression tests."
5320 msgstr "Тести на регресії."
5321
5322 #. type: =item
5323 #: ../src/guestfs.pod:2725
5324 msgid "C<rescue>"
5325 msgstr "C<rescue>"
5326
5327 #. type: textblock
5328 #: ../src/guestfs.pod:2727
5329 msgid "L<virt-rescue(1)> command and documentation."
5330 msgstr ""
5331
5332 #. type: =item
5333 #: ../src/guestfs.pod:2729
5334 msgid "C<src>"
5335 msgstr "C<src>"
5336
5337 #. type: textblock
5338 #: ../src/guestfs.pod:2731
5339 msgid "Source code to the C library."
5340 msgstr ""
5341
5342 #. type: =item
5343 #: ../src/guestfs.pod:2733
5344 msgid "C<tools>"
5345 msgstr "C<tools>"
5346
5347 #. type: textblock
5348 #: ../src/guestfs.pod:2735
5349 msgid "Command line tools written in Perl (L<virt-resize(1)> and many others)."
5350 msgstr ""
5351
5352 #. type: =item
5353 #: ../src/guestfs.pod:2737
5354 msgid "C<test-tool>"
5355 msgstr "C<test-tool>"
5356
5357 #. type: textblock
5358 #: ../src/guestfs.pod:2739
5359 msgid ""
5360 "Test tool for end users to test if their qemu/kernel combination will work "
5361 "with libguestfs."
5362 msgstr ""
5363
5364 #. type: =item
5365 #: ../src/guestfs.pod:2742
5366 msgid "C<csharp>"
5367 msgstr "C<csharp>"
5368
5369 #. type: =item
5370 #: ../src/guestfs.pod:2744
5371 msgid "C<haskell>"
5372 msgstr "C<haskell>"
5373
5374 #. type: =item
5375 #: ../src/guestfs.pod:2746
5376 msgid "C<java>"
5377 msgstr "C<java>"
5378
5379 #. type: =item
5380 #: ../src/guestfs.pod:2748
5381 msgid "C<ocaml>"
5382 msgstr "C<ocaml>"
5383
5384 #. type: =item
5385 #: ../src/guestfs.pod:2750
5386 msgid "C<php>"
5387 msgstr "C<php>"
5388
5389 #. type: =item
5390 #: ../src/guestfs.pod:2752
5391 msgid "C<perl>"
5392 msgstr "C<perl>"
5393
5394 #. type: =item
5395 #: ../src/guestfs.pod:2754
5396 msgid "C<python>"
5397 msgstr "C<python>"
5398
5399 #. type: =item
5400 #: ../src/guestfs.pod:2756
5401 msgid "C<ruby>"
5402 msgstr "C<ruby>"
5403
5404 #. type: textblock
5405 #: ../src/guestfs.pod:2758
5406 msgid "Language bindings."
5407 msgstr "Прив’язки до мов програмування."
5408
5409 #. type: =head1
5410 #: ../src/guestfs.pod:2762
5411 msgid "LIMITS"
5412 msgstr ""
5413
5414 #. type: =head2
5415 #: ../src/guestfs.pod:2764
5416 msgid "PROTOCOL LIMITS"
5417 msgstr ""
5418
5419 #. type: textblock
5420 #: ../src/guestfs.pod:2766
5421 msgid ""
5422 "Internally libguestfs uses a message-based protocol to pass API calls and "
5423 "their responses to and from a small \"appliance\" (see L</INTERNALS> for "
5424 "plenty more detail about this).  The maximum message size used by the "
5425 "protocol is slightly less than 4 MB.  For some API calls you may need to be "
5426 "aware of this limit.  The API calls which may be affected are individually "
5427 "documented, with a link back to this section of the documentation."
5428 msgstr ""
5429
5430 #. type: textblock
5431 #: ../src/guestfs.pod:2774
5432 msgid ""
5433 "A simple call such as L</guestfs_cat> returns its result (the file data) in "
5434 "a simple string.  Because this string is at some point internally encoded as "
5435 "a message, the maximum size that it can return is slightly under 4 MB.  If "
5436 "the requested file is larger than this then you will get an error."
5437 msgstr ""
5438
5439 #. type: textblock
5440 #: ../src/guestfs.pod:2780
5441 msgid ""
5442 "In order to transfer large files into and out of the guest filesystem, you "
5443 "need to use particular calls that support this.  The sections L</UPLOADING> "
5444 "and L</DOWNLOADING> document how to do this."
5445 msgstr ""
5446
5447 #. type: textblock
5448 #: ../src/guestfs.pod:2784
5449 msgid ""
5450 "You might also consider mounting the disk image using our FUSE filesystem "
5451 "support (L<guestmount(1)>)."
5452 msgstr ""
5453
5454 #. type: =head2
5455 #: ../src/guestfs.pod:2787
5456 msgid "MAXIMUM NUMBER OF DISKS"
5457 msgstr ""
5458
5459 #. type: textblock
5460 #: ../src/guestfs.pod:2789
5461 msgid "When using virtio disks (the default) the current limit is B<25> disks."
5462 msgstr ""
5463
5464 #. type: textblock
5465 #: ../src/guestfs.pod:2792
5466 msgid ""
5467 "Virtio itself consumes 1 virtual PCI slot per disk, and PCI is limited to 31 "
5468 "slots.  However febootstrap only understands disks with names C</dev/vda> "
5469 "through C</dev/vdz> (26 letters) and it reserves one disk for its own "
5470 "purposes."
5471 msgstr ""
5472
5473 #. type: textblock
5474 #: ../src/guestfs.pod:2797
5475 msgid ""
5476 "We are working to substantially raise this limit in future versions but it "
5477 "requires complex changes to qemu."
5478 msgstr ""
5479
5480 #. type: textblock
5481 #: ../src/guestfs.pod:2800
5482 msgid ""
5483 "In future versions of libguestfs it should also be possible to \"hot plug\" "
5484 "disks (add and remove disks after calling L</guestfs_launch>).  This also "
5485 "requires changes to qemu."
5486 msgstr ""
5487
5488 #. type: =head2
5489 #: ../src/guestfs.pod:2804
5490 msgid "MAXIMUM NUMBER OF PARTITIONS PER DISK"
5491 msgstr ""
5492
5493 #. type: textblock
5494 #: ../src/guestfs.pod:2806
5495 msgid "Virtio limits the maximum number of partitions per disk to B<15>."
5496 msgstr ""
5497
5498 #. type: textblock
5499 #: ../src/guestfs.pod:2808
5500 msgid ""
5501 "This is because it reserves 4 bits for the minor device number (thus C</dev/"
5502 "vda>, and C</dev/vda1> through C</dev/vda15>)."
5503 msgstr ""
5504
5505 #. type: textblock
5506 #: ../src/guestfs.pod:2811
5507 msgid ""
5508 "If you attach a disk with more than 15 partitions, the extra partitions are "
5509 "ignored by libguestfs."
5510 msgstr ""
5511
5512 #. type: =head2
5513 #: ../src/guestfs.pod:2814
5514 msgid "MAXIMUM SIZE OF A DISK"
5515 msgstr ""
5516
5517 #. type: textblock
5518 #: ../src/guestfs.pod:2816
5519 msgid "Probably the limit is between 2**63-1 and 2**64-1 bytes."
5520 msgstr ""
5521
5522 #. type: textblock
5523 #: ../src/guestfs.pod:2818
5524 msgid ""
5525 "We have tested block devices up to 1 exabyte (2**60 or "
5526 "1,152,921,504,606,846,976 bytes) using sparse files backed by an XFS host "
5527 "filesystem."
5528 msgstr ""
5529
5530 #. type: textblock
5531 #: ../src/guestfs.pod:2822
5532 msgid ""
5533 "Although libguestfs probably does not impose any limit, the underlying host "
5534 "storage will.  If you store disk images on a host ext4 filesystem, then the "
5535 "maximum size will be limited by the maximum ext4 file size (currently 16 "
5536 "TB).  If you store disk images as host logical volumes then you are limited "
5537 "by the maximum size of an LV."
5538 msgstr ""
5539
5540 #. type: textblock
5541 #: ../src/guestfs.pod:2828
5542 msgid ""
5543 "For the hugest disk image files, we recommend using XFS on the host for "
5544 "storage."
5545 msgstr ""
5546
5547 #. type: =head2
5548 #: ../src/guestfs.pod:2831
5549 msgid "MAXIMUM SIZE OF A PARTITION"
5550 msgstr ""
5551
5552 #. type: textblock
5553 #: ../src/guestfs.pod:2833
5554 msgid ""
5555 "The MBR (ie. classic MS-DOS) partitioning scheme uses 32 bit sector "
5556 "numbers.  Assuming a 512 byte sector size, this means that MBR cannot "
5557 "address a partition located beyond 2 TB on the disk."
5558 msgstr ""
5559
5560 #. type: textblock
5561 #: ../src/guestfs.pod:2837
5562 msgid ""
5563 "It is recommended that you use GPT partitions on disks which are larger than "
5564 "this size.  GPT uses 64 bit sector numbers and so can address partitions "
5565 "which are theoretically larger than the largest disk we could support."
5566 msgstr ""
5567
5568 #. type: =head2
5569 #: ../src/guestfs.pod:2842
5570 msgid "MAXIMUM SIZE OF A FILESYSTEM, FILES, DIRECTORIES"
5571 msgstr ""
5572
5573 #. type: textblock
5574 #: ../src/guestfs.pod:2844
5575 msgid ""
5576 "This depends on the filesystem type.  libguestfs itself does not impose any "
5577 "known limit.  Consult Wikipedia or the filesystem documentation to find out "
5578 "what these limits are."
5579 msgstr ""
5580
5581 #. type: =head2
5582 #: ../src/guestfs.pod:2848
5583 msgid "MAXIMUM UPLOAD AND DOWNLOAD"
5584 msgstr ""
5585
5586 #. type: textblock
5587 #: ../src/guestfs.pod:2850
5588 msgid ""
5589 "The API functions L</guestfs_upload>, L</guestfs_download>, L</"
5590 "guestfs_tar_in>, L</guestfs_tar_out> and the like allow unlimited sized "
5591 "uploads and downloads."
5592 msgstr ""
5593
5594 #. type: =head2
5595 #: ../src/guestfs.pod:2854
5596 #, fuzzy
5597 #| msgid "INSPECTION"
5598 msgid "INSPECTION LIMITS"
5599 msgstr "ПЕРЕВІРКА"
5600
5601 #. type: textblock
5602 #: ../src/guestfs.pod:2856
5603 msgid ""
5604 "The inspection code has several arbitrary limits on things like the size of "
5605 "Windows Registry hive it will read, and the length of product name.  These "
5606 "are intended to stop a malicious guest from consuming arbitrary amounts of "
5607 "memory and disk space on the host, and should not be reached in practice.  "
5608 "See the source code for more information."
5609 msgstr ""
5610
5611 #. type: =head1
5612 #: ../src/guestfs.pod:2862 ../fish/guestfish.pod:1017
5613 #: ../test-tool/libguestfs-test-tool.pod:82 ../tools/virt-edit.pl:476
5614 msgid "ENVIRONMENT VARIABLES"
5615 msgstr "ЗМІННІ СЕРЕДОВИЩА"
5616
5617 #. type: =item
5618 #: ../src/guestfs.pod:2866 ../fish/guestfish.pod:1043
5619 msgid "LIBGUESTFS_APPEND"
5620 msgstr ""
5621
5622 #. type: textblock
5623 #: ../src/guestfs.pod:2868 ../fish/guestfish.pod:1045
5624 msgid "Pass additional options to the guest kernel."
5625 msgstr ""
5626
5627 #. type: =item
5628 #: ../src/guestfs.pod:2870 ../fish/guestfish.pod:1047
5629 msgid "LIBGUESTFS_DEBUG"
5630 msgstr ""
5631
5632 #. type: textblock
5633 #: ../src/guestfs.pod:2872
5634 msgid ""
5635 "Set C<LIBGUESTFS_DEBUG=1> to enable verbose messages.  This has the same "
5636 "effect as calling C<guestfs_set_verbose (g, 1)>."
5637 msgstr ""
5638
5639 #. type: =item
5640 #: ../src/guestfs.pod:2875 ../fish/guestfish.pod:1052
5641 msgid "LIBGUESTFS_MEMSIZE"
5642 msgstr ""
5643
5644 #. type: textblock
5645 #: ../src/guestfs.pod:2877 ../fish/guestfish.pod:1054
5646 msgid ""
5647 "Set the memory allocated to the qemu process, in megabytes.  For example:"
5648 msgstr ""
5649
5650 #. type: verbatim
5651 #: ../src/guestfs.pod:2880 ../fish/guestfish.pod:1057
5652 #, no-wrap
5653 msgid ""
5654 " LIBGUESTFS_MEMSIZE=700\n"
5655 "\n"
5656 msgstr ""
5657
5658 #. type: =item
5659 #: ../src/guestfs.pod:2882 ../fish/guestfish.pod:1059
5660 msgid "LIBGUESTFS_PATH"
5661 msgstr ""
5662
5663 #. type: textblock
5664 #: ../src/guestfs.pod:2884
5665 msgid ""
5666 "Set the path that libguestfs uses to search for a supermin appliance.  See "
5667 "the discussion of paths in section L</PATH> above."
5668 msgstr ""
5669
5670 #. type: =item
5671 #: ../src/guestfs.pod:2887 ../fish/guestfish.pod:1064
5672 msgid "LIBGUESTFS_QEMU"
5673 msgstr ""
5674
5675 #. type: textblock
5676 #: ../src/guestfs.pod:2889 ../fish/guestfish.pod:1066
5677 msgid ""
5678 "Set the default qemu binary that libguestfs uses.  If not set, then the qemu "
5679 "which was found at compile time by the configure script is used."
5680 msgstr ""
5681
5682 #. type: textblock
5683 #: ../src/guestfs.pod:2893
5684 msgid "See also L</QEMU WRAPPERS> above."
5685 msgstr ""
5686
5687 #. type: =item
5688 #: ../src/guestfs.pod:2895 ../fish/guestfish.pod:1070
5689 msgid "LIBGUESTFS_TRACE"
5690 msgstr ""
5691
5692 #. type: textblock
5693 #: ../src/guestfs.pod:2897
5694 msgid ""
5695 "Set C<LIBGUESTFS_TRACE=1> to enable command traces.  This has the same "
5696 "effect as calling C<guestfs_set_trace (g, 1)>."
5697 msgstr ""
5698
5699 #. type: =item
5700 #: ../src/guestfs.pod:2900 ../fish/guestfish.pod:1079
5701 msgid "TMPDIR"
5702 msgstr ""
5703
5704 #. type: textblock
5705 #: ../src/guestfs.pod:2902 ../fish/guestfish.pod:1081
5706 msgid ""
5707 "Location of temporary directory, defaults to C</tmp> except for the cached "
5708 "supermin appliance which defaults to C</var/tmp>."
5709 msgstr ""
5710
5711 #. type: textblock
5712 #: ../src/guestfs.pod:2905 ../fish/guestfish.pod:1084
5713 msgid ""
5714 "If libguestfs was compiled to use the supermin appliance then the real "
5715 "appliance is cached in this directory, shared between all handles belonging "
5716 "to the same EUID.  You can use C<$TMPDIR> to configure another directory to "
5717 "use in case C</var/tmp> is not large enough."
5718 msgstr ""
5719
5720 #. type: =head1
5721 #: ../src/guestfs.pod:2913 ../fish/guestfish.pod:1151
5722 #: ../test-tool/libguestfs-test-tool.pod:87 ../fuse/guestmount.pod:269
5723 #: ../tools/virt-edit.pl:496 ../tools/virt-win-reg.pl:572
5724 #: ../tools/virt-list-filesystems.pl:189 ../tools/virt-tar.pl:286
5725 #: ../tools/virt-make-fs.pl:539 ../tools/virt-list-partitions.pl:257
5726 msgid "SEE ALSO"
5727 msgstr "ТАКОЖ ПЕРЕГЛЯНЬТЕ"
5728
5729 #. type: textblock
5730 #: ../src/guestfs.pod:2915
5731 msgid ""
5732 "L<guestfs-examples(3)>, L<guestfs-ocaml(3)>, L<guestfs-python(3)>, L<guestfs-"
5733 "ruby(3)>, L<guestfish(1)>, L<guestmount(1)>, L<virt-cat(1)>, L<virt-copy-in"
5734 "(1)>, L<virt-copy-out(1)>, L<virt-df(1)>, L<virt-edit(1)>, L<virt-filesystems"
5735 "(1)>, L<virt-inspector(1)>, L<virt-list-filesystems(1)>, L<virt-list-"
5736 "partitions(1)>, L<virt-ls(1)>, L<virt-make-fs(1)>, L<virt-rescue(1)>, L<virt-"
5737 "tar(1)>, L<virt-tar-in(1)>, L<virt-tar-out(1)>, L<virt-win-reg(1)>, L<qemu(1)"
5738 ">, L<febootstrap(1)>, L<hivex(3)>, L<http://libguestfs.org/>."
5739 msgstr ""
5740
5741 #. type: textblock
5742 #: ../src/guestfs.pod:2942
5743 msgid ""
5744 "Tools with a similar purpose: L<fdisk(8)>, L<parted(8)>, L<kpartx(8)>, L<lvm"
5745 "(8)>, L<disktype(1)>."
5746 msgstr ""
5747
5748 #. type: =head1
5749 #: ../src/guestfs.pod:2949 ../tools/virt-win-reg.pl:587
5750 #: ../tools/virt-make-fs.pl:553
5751 msgid "BUGS"
5752 msgstr "ВАДИ"
5753
5754 #. type: textblock
5755 #: ../src/guestfs.pod:2951
5756 msgid "To get a list of bugs against libguestfs use this link:"
5757 msgstr ""
5758 "Щоб переглянути список відомих вад у libguestfs, скористайтеся таким "
5759 "посиланням:"
5760
5761 #. type: textblock
5762 #: ../src/guestfs.pod:2953
5763 msgid ""
5764 "L<https://bugzilla.redhat.com/buglist.cgi?"
5765 "component=libguestfs&product=Virtualization+Tools>"
5766 msgstr ""
5767 "L<https://bugzilla.redhat.com/buglist.cgi?"
5768 "component=libguestfs&product=Virtualization+Tools>"
5769
5770 #. type: textblock
5771 #: ../src/guestfs.pod:2955
5772 msgid "To report a new bug against libguestfs use this link:"
5773 msgstr "Для звітування щодо вад у libguestfs скористайтеся цим посиланням:"
5774
5775 #. type: textblock
5776 #: ../src/guestfs.pod:2957
5777 msgid ""
5778 "L<https://bugzilla.redhat.com/enter_bug.cgi?"
5779 "component=libguestfs&product=Virtualization+Tools>"
5780 msgstr ""
5781 "L<https://bugzilla.redhat.com/enter_bug.cgi?"
5782 "component=libguestfs&product=Virtualization+Tools>"
5783
5784 #. type: textblock
5785 #: ../src/guestfs.pod:2959
5786 msgid "When reporting a bug, please check:"
5787 msgstr ""
5788
5789 #. type: textblock
5790 #: ../src/guestfs.pod:2965
5791 msgid "That the bug hasn't been reported already."
5792 msgstr ""
5793
5794 #. type: textblock
5795 #: ../src/guestfs.pod:2969
5796 msgid "That you are testing a recent version."
5797 msgstr ""
5798
5799 #. type: textblock
5800 #: ../src/guestfs.pod:2973
5801 msgid "Describe the bug accurately, and give a way to reproduce it."
5802 msgstr ""
5803
5804 #. type: textblock
5805 #: ../src/guestfs.pod:2977
5806 msgid ""
5807 "Run libguestfs-test-tool and paste the B<complete, unedited> output into the "
5808 "bug report."
5809 msgstr ""
5810
5811 #. type: =head1
5812 #: ../src/guestfs.pod:2982 ../fish/guestfish.pod:1174
5813 #: ../test-tool/libguestfs-test-tool.pod:93 ../fuse/guestmount.pod:280
5814 msgid "AUTHORS"
5815 msgstr "АВТОРИ"
5816
5817 #. type: textblock
5818 #: ../src/guestfs.pod:2984 ../fish/guestfish.pod:1176
5819 #: ../test-tool/libguestfs-test-tool.pod:95 ../fuse/guestmount.pod:282
5820 msgid "Richard W.M. Jones (C<rjones at redhat dot com>)"
5821 msgstr ""
5822
5823 #. type: =head1
5824 #: ../src/guestfs.pod:2986 ../fish/guestfish.pod:1178
5825 #: ../test-tool/libguestfs-test-tool.pod:97 ../fuse/guestmount.pod:284
5826 #: ../tools/virt-edit.pl:514 ../tools/virt-win-reg.pl:602
5827 #: ../tools/virt-list-filesystems.pl:206 ../tools/virt-tar.pl:305
5828 #: ../tools/virt-make-fs.pl:568 ../tools/virt-list-partitions.pl:273
5829 msgid "COPYRIGHT"
5830 msgstr "АВТОРСЬКІ ПРАВА"
5831
5832 #. type: textblock
5833 #: ../src/guestfs.pod:2988 ../fish/guestfish.pod:1180
5834 #: ../test-tool/libguestfs-test-tool.pod:99
5835 msgid "Copyright (C) 2009-2011 Red Hat Inc.  L<http://libguestfs.org/>"
5836 msgstr ""
5837
5838 #. type: textblock
5839 #: ../src/guestfs.pod:2991
5840 msgid ""
5841 "This library is free software; you can redistribute it and/or modify it "
5842 "under the terms of the GNU Lesser General Public License as published by the "
5843 "Free Software Foundation; either version 2 of the License, or (at your "
5844 "option) any later version."
5845 msgstr ""
5846
5847 #. type: textblock
5848 #: ../src/guestfs.pod:2996
5849 msgid ""
5850 "This library is distributed in the hope that it will be useful, but WITHOUT "
5851 "ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or "
5852 "FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public License "
5853 "for more details."
5854 msgstr ""
5855
5856 #. type: textblock
5857 #: ../src/guestfs.pod:3001
5858 msgid ""
5859 "You should have received a copy of the GNU Lesser General Public License "
5860 "along with this library; if not, write to the Free Software Foundation, "
5861 "Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA"
5862 msgstr ""
5863
5864 #. type: =head2
5865 #: ../src/guestfs-actions.pod:1
5866 msgid "guestfs_add_cdrom"
5867 msgstr ""
5868
5869 #. type: verbatim
5870 #: ../src/guestfs-actions.pod:3
5871 #, no-wrap
5872 msgid ""
5873 " int\n"
5874 " guestfs_add_cdrom (guestfs_h *g,\n"
5875 "                    const char *filename);\n"
5876 "\n"
5877 msgstr ""
5878
5879 #. type: textblock
5880 #: ../src/guestfs-actions.pod:7 ../fish/guestfish-actions.pod:5
5881 msgid "This function adds a virtual CD-ROM disk image to the guest."
5882 msgstr ""
5883
5884 #. type: textblock
5885 #: ../src/guestfs-actions.pod:9 ../fish/guestfish-actions.pod:7
5886 msgid "This is equivalent to the qemu parameter I<-cdrom filename>."
5887 msgstr ""
5888
5889 #. type: textblock
5890 #: ../src/guestfs-actions.pod:17
5891 msgid ""
5892 "This call checks for the existence of C<filename>.  This stops you from "
5893 "specifying other types of drive which are supported by qemu such as C<nbd:> "
5894 "and C<http:> URLs.  To specify those, use the general C<guestfs_config> call "
5895 "instead."
5896 msgstr ""
5897
5898 #. type: textblock
5899 #: ../src/guestfs-actions.pod:24
5900 msgid ""
5901 "If you just want to add an ISO file (often you use this as an efficient way "
5902 "to transfer large files into the guest), then you should probably use "
5903 "C<guestfs_add_drive_ro> instead."
5904 msgstr ""
5905
5906 #. type: textblock
5907 #: ../src/guestfs-actions.pod:30 ../src/guestfs-actions.pod:140
5908 #: ../src/guestfs-actions.pod:201 ../src/guestfs-actions.pod:238
5909 #: ../src/guestfs-actions.pod:252 ../src/guestfs-actions.pod:273
5910 #: ../src/guestfs-actions.pod:293 ../src/guestfs-actions.pod:307
5911 #: ../src/guestfs-actions.pod:422 ../src/guestfs-actions.pod:442
5912 #: ../src/guestfs-actions.pod:456 ../src/guestfs-actions.pod:501
5913 #: ../src/guestfs-actions.pod:529 ../src/guestfs-actions.pod:547
5914 #: ../src/guestfs-actions.pod:614 ../src/guestfs-actions.pod:647
5915 #: ../src/guestfs-actions.pod:661 ../src/guestfs-actions.pod:676
5916 #: ../src/guestfs-actions.pod:775 ../src/guestfs-actions.pod:793
5917 #: ../src/guestfs-actions.pod:807 ../src/guestfs-actions.pod:821
5918 #: ../src/guestfs-actions.pod:982 ../src/guestfs-actions.pod:1002
5919 #: ../src/guestfs-actions.pod:1020 ../src/guestfs-actions.pod:1104
5920 #: ../src/guestfs-actions.pod:1122 ../src/guestfs-actions.pod:1141
5921 #: ../src/guestfs-actions.pod:1155 ../src/guestfs-actions.pod:1175
5922 #: ../src/guestfs-actions.pod:1245 ../src/guestfs-actions.pod:1276
5923 #: ../src/guestfs-actions.pod:1301 ../src/guestfs-actions.pod:1343
5924 #: ../src/guestfs-actions.pod:1449 ../src/guestfs-actions.pod:1483
5925 #: ../src/guestfs-actions.pod:1701 ../src/guestfs-actions.pod:1723
5926 #: ../src/guestfs-actions.pod:1810 ../src/guestfs-actions.pod:2272
5927 #: ../src/guestfs-actions.pod:2416 ../src/guestfs-actions.pod:2477
5928 #: ../src/guestfs-actions.pod:2512 ../src/guestfs-actions.pod:3465
5929 #: ../src/guestfs-actions.pod:3480 ../src/guestfs-actions.pod:3505
5930 #: ../src/guestfs-actions.pod:3660 ../src/guestfs-actions.pod:3674
5931 #: ../src/guestfs-actions.pod:3687 ../src/guestfs-actions.pod:3701
5932 #: ../src/guestfs-actions.pod:3716 ../src/guestfs-actions.pod:3752
5933 #: ../src/guestfs-actions.pod:3824 ../src/guestfs-actions.pod:3844
5934 #: ../src/guestfs-actions.pod:3861 ../src/guestfs-actions.pod:3884
5935 #: ../src/guestfs-actions.pod:3907 ../src/guestfs-actions.pod:3939
5936 #: ../src/guestfs-actions.pod:3958 ../src/guestfs-actions.pod:3977
5937 #: ../src/guestfs-actions.pod:4012 ../src/guestfs-actions.pod:4024
5938 #: ../src/guestfs-actions.pod:4060 ../src/guestfs-actions.pod:4076
5939 #: ../src/guestfs-actions.pod:4089 ../src/guestfs-actions.pod:4104
5940 #: ../src/guestfs-actions.pod:4121 ../src/guestfs-actions.pod:4214
5941 #: ../src/guestfs-actions.pod:4234 ../src/guestfs-actions.pod:4247
5942 #: ../src/guestfs-actions.pod:4298 ../src/guestfs-actions.pod:4316
5943 #: ../src/guestfs-actions.pod:4334 ../src/guestfs-actions.pod:4350
5944 #: ../src/guestfs-actions.pod:4364 ../src/guestfs-actions.pod:4378
5945 #: ../src/guestfs-actions.pod:4395 ../src/guestfs-actions.pod:4410
5946 #: ../src/guestfs-actions.pod:4430 ../src/guestfs-actions.pod:4488
5947 #: ../src/guestfs-actions.pod:4561 ../src/guestfs-actions.pod:4592
5948 #: ../src/guestfs-actions.pod:4611 ../src/guestfs-actions.pod:4630
5949 #: ../src/guestfs-actions.pod:4642 ../src/guestfs-actions.pod:4659
5950 #: ../src/guestfs-actions.pod:4672 ../src/guestfs-actions.pod:4687
5951 #: ../src/guestfs-actions.pod:4702 ../src/guestfs-actions.pod:4737
5952 #: ../src/guestfs-actions.pod:4752 ../src/guestfs-actions.pod:4772
5953 #: ../src/guestfs-actions.pod:4786 ../src/guestfs-actions.pod:4803
5954 #: ../src/guestfs-actions.pod:4852 ../src/guestfs-actions.pod:4889
5955 #: ../src/guestfs-actions.pod:4903 ../src/guestfs-actions.pod:4931
5956 #: ../src/guestfs-actions.pod:4948 ../src/guestfs-actions.pod:4966
5957 #: ../src/guestfs-actions.pod:5100 ../src/guestfs-actions.pod:5157
5958 #: ../src/guestfs-actions.pod:5179 ../src/guestfs-actions.pod:5197
5959 #: ../src/guestfs-actions.pod:5229 ../src/guestfs-actions.pod:5295
5960 #: ../src/guestfs-actions.pod:5312 ../src/guestfs-actions.pod:5325
5961 #: ../src/guestfs-actions.pod:5339 ../src/guestfs-actions.pod:5628
5962 #: ../src/guestfs-actions.pod:5647 ../src/guestfs-actions.pod:5666
5963 #: ../src/guestfs-actions.pod:5678 ../src/guestfs-actions.pod:5690
5964 #: ../src/guestfs-actions.pod:5704 ../src/guestfs-actions.pod:5716
5965 #: ../src/guestfs-actions.pod:5730 ../src/guestfs-actions.pod:5746
5966 #: ../src/guestfs-actions.pod:5767 ../src/guestfs-actions.pod:5786
5967 #: ../src/guestfs-actions.pod:5805 ../src/guestfs-actions.pod:5835
5968 #: ../src/guestfs-actions.pod:5851 ../src/guestfs-actions.pod:5874
5969 #: ../src/guestfs-actions.pod:5892 ../src/guestfs-actions.pod:5911
5970 #: ../src/guestfs-actions.pod:5932 ../src/guestfs-actions.pod:5951
5971 #: ../src/guestfs-actions.pod:5968 ../src/guestfs-actions.pod:5996
5972 #: ../src/guestfs-actions.pod:6020 ../src/guestfs-actions.pod:6039
5973 #: ../src/guestfs-actions.pod:6063 ../src/guestfs-actions.pod:6082
5974 #: ../src/guestfs-actions.pod:6097 ../src/guestfs-actions.pod:6116
5975 #: ../src/guestfs-actions.pod:6153 ../src/guestfs-actions.pod:6176
5976 #: ../src/guestfs-actions.pod:6202 ../src/guestfs-actions.pod:6310
5977 #: ../src/guestfs-actions.pod:6431 ../src/guestfs-actions.pod:6443
5978 #: ../src/guestfs-actions.pod:6456 ../src/guestfs-actions.pod:6469
5979 #: ../src/guestfs-actions.pod:6491 ../src/guestfs-actions.pod:6504
5980 #: ../src/guestfs-actions.pod:6517 ../src/guestfs-actions.pod:6530
5981 #: ../src/guestfs-actions.pod:6545 ../src/guestfs-actions.pod:6604
5982 #: ../src/guestfs-actions.pod:6621 ../src/guestfs-actions.pod:6637
5983 #: ../src/guestfs-actions.pod:6653 ../src/guestfs-actions.pod:6670
5984 #: ../src/guestfs-actions.pod:6683 ../src/guestfs-actions.pod:6703
5985 #: ../src/guestfs-actions.pod:6739 ../src/guestfs-actions.pod:6753
5986 #: ../src/guestfs-actions.pod:6794 ../src/guestfs-actions.pod:6807
5987 #: ../src/guestfs-actions.pod:6825 ../src/guestfs-actions.pod:6859
5988 #: ../src/guestfs-actions.pod:6895 ../src/guestfs-actions.pod:7014
5989 #: ../src/guestfs-actions.pod:7032 ../src/guestfs-actions.pod:7046
5990 #: ../src/guestfs-actions.pod:7101 ../src/guestfs-actions.pod:7114
5991 #: ../src/guestfs-actions.pod:7159 ../src/guestfs-actions.pod:7192
5992 #: ../src/guestfs-actions.pod:7246 ../src/guestfs-actions.pod:7272
5993 #: ../src/guestfs-actions.pod:7338 ../src/guestfs-actions.pod:7357
5994 #: ../src/guestfs-actions.pod:7386
5995 msgid "This function returns 0 on success or -1 on error."
5996 msgstr ""
5997
5998 #. type: textblock
5999 #: ../src/guestfs-actions.pod:32 ../src/guestfs-actions.pod:254
6000 #: ../src/guestfs-actions.pod:275 ../fish/guestfish-actions.pod:28
6001 #: ../fish/guestfish-actions.pod:163 ../fish/guestfish-actions.pod:177
6002 msgid ""
6003 "This function is deprecated.  In new code, use the C<add_drive_opts> call "
6004 "instead."
6005 msgstr ""
6006
6007 #. type: textblock
6008 #: ../src/guestfs-actions.pod:35 ../src/guestfs-actions.pod:257
6009 #: ../src/guestfs-actions.pod:278 ../src/guestfs-actions.pod:1454
6010 #: ../src/guestfs-actions.pod:1950 ../src/guestfs-actions.pod:1971
6011 #: ../src/guestfs-actions.pod:4435 ../src/guestfs-actions.pod:7280
6012 #: ../src/guestfs-actions.pod:7449 ../fish/guestfish-actions.pod:31
6013 #: ../fish/guestfish-actions.pod:166 ../fish/guestfish-actions.pod:180
6014 #: ../fish/guestfish-actions.pod:961 ../fish/guestfish-actions.pod:1324
6015 #: ../fish/guestfish-actions.pod:1338 ../fish/guestfish-actions.pod:3013
6016 #: ../fish/guestfish-actions.pod:4871 ../fish/guestfish-actions.pod:4968
6017 msgid ""
6018 "Deprecated functions will not be removed from the API, but the fact that "
6019 "they are deprecated indicates that there are problems with correct use of "
6020 "these functions."
6021 msgstr ""
6022
6023 #. type: textblock
6024 #: ../src/guestfs-actions.pod:39 ../src/guestfs-actions.pod:142
6025 #: ../src/guestfs-actions.pod:1106 ../src/guestfs-actions.pod:1922
6026 #: ../src/guestfs-actions.pod:2020 ../src/guestfs-actions.pod:2123
6027 #: ../src/guestfs-actions.pod:3467 ../src/guestfs-actions.pod:3487
6028 #: ../src/guestfs-actions.pod:4739 ../src/guestfs-actions.pod:5853
6029 #: ../src/guestfs-actions.pod:5970 ../src/guestfs-actions.pod:6084
6030 #: ../src/guestfs-actions.pod:6547 ../src/guestfs-actions.pod:6672
6031 #: ../src/guestfs-actions.pod:7194
6032 msgid "(Added in 0.3)"
6033 msgstr ""
6034
6035 #. type: =head2
6036 #: ../src/guestfs-actions.pod:41
6037 msgid "guestfs_add_domain"
6038 msgstr ""
6039
6040 #. type: verbatim
6041 #: ../src/guestfs-actions.pod:43
6042 #, no-wrap
6043 msgid ""
6044 " int\n"
6045 " guestfs_add_domain (guestfs_h *g,\n"
6046 "                     const char *dom,\n"
6047 "                     ...);\n"
6048 "\n"
6049 msgstr ""
6050
6051 #. type: textblock
6052 #: ../src/guestfs-actions.pod:48 ../src/guestfs-actions.pod:151
6053 #: ../src/guestfs-actions.pod:4449
6054 msgid ""
6055 "You may supply a list of optional arguments to this call.  Use zero or more "
6056 "of the following pairs of parameters, and terminate the list with C<-1> on "
6057 "its own.  See L</CALLS WITH OPTIONAL ARGUMENTS>."
6058 msgstr ""
6059
6060 #. type: verbatim
6061 #: ../src/guestfs-actions.pod:53
6062 #, no-wrap
6063 msgid ""
6064 " GUESTFS_ADD_DOMAIN_LIBVIRTURI, const char *libvirturi,\n"
6065 " GUESTFS_ADD_DOMAIN_READONLY, int readonly,\n"
6066 " GUESTFS_ADD_DOMAIN_IFACE, const char *iface,\n"
6067 " GUESTFS_ADD_DOMAIN_LIVE, int live,\n"
6068 " GUESTFS_ADD_DOMAIN_ALLOWUUID, int allowuuid,\n"
6069 "\n"
6070 msgstr ""
6071
6072 #. type: textblock
6073 #: ../src/guestfs-actions.pod:59
6074 msgid ""
6075 "This function adds the disk(s) attached to the named libvirt domain C<dom>.  "
6076 "It works by connecting to libvirt, requesting the domain and domain XML from "
6077 "libvirt, parsing it for disks, and calling C<guestfs_add_drive_opts> on each "
6078 "one."
6079 msgstr ""
6080
6081 #. type: textblock
6082 #: ../src/guestfs-actions.pod:64 ../fish/guestfish-actions.pod:46
6083 msgid ""
6084 "The number of disks added is returned.  This operation is atomic: if an "
6085 "error is returned, then no disks are added."
6086 msgstr ""
6087
6088 #. type: textblock
6089 #: ../src/guestfs-actions.pod:67 ../fish/guestfish-actions.pod:49
6090 msgid ""
6091 "This function does some minimal checks to make sure the libvirt domain is "
6092 "not running (unless C<readonly> is true).  In a future version we will try "
6093 "to acquire the libvirt lock on each disk."
6094 msgstr ""
6095
6096 #. type: textblock
6097 #: ../src/guestfs-actions.pod:71 ../fish/guestfish-actions.pod:53
6098 msgid ""
6099 "Disks must be accessible locally.  This often means that adding disks from a "
6100 "remote libvirt connection (see L<http://libvirt.org/remote.html>)  will fail "
6101 "unless those disks are accessible via the same device path locally too."
6102 msgstr ""
6103
6104 #. type: textblock
6105 #: ../src/guestfs-actions.pod:76 ../fish/guestfish-actions.pod:58
6106 msgid ""
6107 "The optional C<libvirturi> parameter sets the libvirt URI (see L<http://"
6108 "libvirt.org/uri.html>).  If this is not set then we connect to the default "
6109 "libvirt URI (or one set through an environment variable, see the libvirt "
6110 "documentation for full details)."
6111 msgstr ""
6112
6113 #. type: textblock
6114 #: ../src/guestfs-actions.pod:82 ../fish/guestfish-actions.pod:64
6115 msgid ""
6116 "The optional C<live> flag controls whether this call will try to connect to "
6117 "a running virtual machine C<guestfsd> process if it sees a suitable "
6118 "E<lt>channelE<gt> element in the libvirt XML definition.  The default (if "
6119 "the flag is omitted) is never to try.  See L<guestfs(3)/ATTACHING TO RUNNING "
6120 "DAEMONS> for more information."
6121 msgstr ""
6122
6123 #. type: textblock
6124 #: ../src/guestfs-actions.pod:89 ../fish/guestfish-actions.pod:71
6125 msgid ""
6126 "If the C<allowuuid> flag is true (default is false) then a UUID I<may> be "
6127 "passed instead of the domain name.  The C<dom> string is treated as a UUID "
6128 "first and looked up, and if that lookup fails then we treat C<dom> as a name "
6129 "as usual."
6130 msgstr ""
6131
6132 #. type: textblock
6133 #: ../src/guestfs-actions.pod:94
6134 msgid ""
6135 "The other optional parameters are passed directly through to "
6136 "C<guestfs_add_drive_opts>."
6137 msgstr ""
6138
6139 #. type: textblock
6140 #: ../src/guestfs-actions.pod:97 ../src/guestfs-actions.pod:350
6141 #: ../src/guestfs-actions.pod:515 ../src/guestfs-actions.pod:693
6142 #: ../src/guestfs-actions.pod:724 ../src/guestfs-actions.pod:742
6143 #: ../src/guestfs-actions.pod:761 ../src/guestfs-actions.pod:1321
6144 #: ../src/guestfs-actions.pod:1680 ../src/guestfs-actions.pod:1883
6145 #: ../src/guestfs-actions.pod:1992 ../src/guestfs-actions.pod:2032
6146 #: ../src/guestfs-actions.pod:2087 ../src/guestfs-actions.pod:2110
6147 #: ../src/guestfs-actions.pod:2403 ../src/guestfs-actions.pod:2786
6148 #: ../src/guestfs-actions.pod:2807 ../src/guestfs-actions.pod:4875
6149 #: ../src/guestfs-actions.pod:5003 ../src/guestfs-actions.pod:5409
6150 #: ../src/guestfs-actions.pod:5435 ../src/guestfs-actions.pod:6780
6151 #: ../src/guestfs-actions.pod:7205 ../src/guestfs-actions.pod:7218
6152 #: ../src/guestfs-actions.pod:7231
6153 msgid "On error this function returns -1."
6154 msgstr ""
6155
6156 #. type: textblock
6157 #: ../src/guestfs-actions.pod:99
6158 msgid "(Added in 1.7.4)"
6159 msgstr ""
6160
6161 #. type: =head2
6162 #: ../src/guestfs-actions.pod:101
6163 msgid "guestfs_add_domain_va"
6164 msgstr ""
6165
6166 #. type: verbatim
6167 #: ../src/guestfs-actions.pod:103
6168 #, no-wrap
6169 msgid ""
6170 " int\n"
6171 " guestfs_add_domain_va (guestfs_h *g,\n"
6172 "                        const char *dom,\n"
6173 "                        va_list args);\n"
6174 "\n"
6175 msgstr ""
6176
6177 #. type: textblock
6178 #: ../src/guestfs-actions.pod:108
6179 msgid "This is the \"va_list variant\" of L</guestfs_add_domain>."
6180 msgstr ""
6181
6182 #. type: textblock
6183 #: ../src/guestfs-actions.pod:110 ../src/guestfs-actions.pod:121
6184 #: ../src/guestfs-actions.pod:214 ../src/guestfs-actions.pod:225
6185 #: ../src/guestfs-actions.pod:4502 ../src/guestfs-actions.pod:4514
6186 msgid "See L</CALLS WITH OPTIONAL ARGUMENTS>."
6187 msgstr ""
6188
6189 #. type: =head2
6190 #: ../src/guestfs-actions.pod:112
6191 msgid "guestfs_add_domain_argv"
6192 msgstr ""
6193
6194 #. type: verbatim
6195 #: ../src/guestfs-actions.pod:114
6196 #, no-wrap
6197 msgid ""
6198 " int\n"
6199 " guestfs_add_domain_argv (guestfs_h *g,\n"
6200 "                          const char *dom,\n"
6201 "                          const struct guestfs_add_domain_argv *optargs);\n"
6202 "\n"
6203 msgstr ""
6204
6205 #. type: textblock
6206 #: ../src/guestfs-actions.pod:119
6207 msgid "This is the \"argv variant\" of L</guestfs_add_domain>."
6208 msgstr ""
6209
6210 #. type: =head2
6211 #: ../src/guestfs-actions.pod:123
6212 msgid "guestfs_add_drive"
6213 msgstr ""
6214
6215 #. type: verbatim
6216 #: ../src/guestfs-actions.pod:125
6217 #, no-wrap
6218 msgid ""
6219 " int\n"
6220 " guestfs_add_drive (guestfs_h *g,\n"
6221 "                    const char *filename);\n"
6222 "\n"
6223 msgstr ""
6224
6225 #. type: textblock
6226 #: ../src/guestfs-actions.pod:129
6227 msgid ""
6228 "This function is the equivalent of calling C<guestfs_add_drive_opts> with no "
6229 "optional parameters, so the disk is added writable, with the format being "
6230 "detected automatically."
6231 msgstr ""
6232
6233 #. type: textblock
6234 #: ../src/guestfs-actions.pod:133
6235 msgid ""
6236 "Automatic detection of the format opens you up to a potential security hole "
6237 "when dealing with untrusted raw-format images.  See CVE-2010-3851 and "
6238 "RHBZ#642934.  Specifying the format closes this security hole.  Therefore "
6239 "you should think about replacing calls to this function with calls to "
6240 "C<guestfs_add_drive_opts>, and specifying the format."
6241 msgstr ""
6242
6243 #. type: =head2
6244 #: ../src/guestfs-actions.pod:144
6245 msgid "guestfs_add_drive_opts"
6246 msgstr ""
6247
6248 #. type: verbatim
6249 #: ../src/guestfs-actions.pod:146
6250 #, no-wrap
6251 msgid ""
6252 " int\n"
6253 " guestfs_add_drive_opts (guestfs_h *g,\n"
6254 "                         const char *filename,\n"
6255 "                         ...);\n"
6256 "\n"
6257 msgstr ""
6258
6259 #. type: verbatim
6260 #: ../src/guestfs-actions.pod:156
6261 #, no-wrap
6262 msgid ""
6263 " GUESTFS_ADD_DRIVE_OPTS_READONLY, int readonly,\n"
6264 " GUESTFS_ADD_DRIVE_OPTS_FORMAT, const char *format,\n"
6265 " GUESTFS_ADD_DRIVE_OPTS_IFACE, const char *iface,\n"
6266 "\n"
6267 msgstr ""
6268
6269 #. type: textblock
6270 #: ../src/guestfs-actions.pod:160 ../fish/guestfish-actions.pod:102
6271 msgid ""
6272 "This function adds a virtual machine disk image C<filename> to libguestfs.  "
6273 "The first time you call this function, the disk appears as C</dev/sda>, the "
6274 "second time as C</dev/sdb>, and so on."
6275 msgstr ""
6276
6277 #. type: textblock
6278 #: ../src/guestfs-actions.pod:165 ../fish/guestfish-actions.pod:107
6279 msgid ""
6280 "You don't necessarily need to be root when using libguestfs.  However you "
6281 "obviously do need sufficient permissions to access the filename for whatever "
6282 "operations you want to perform (ie. read access if you just want to read the "
6283 "image or write access if you want to modify the image)."
6284 msgstr ""
6285
6286 #. type: textblock
6287 #: ../src/guestfs-actions.pod:171 ../fish/guestfish-actions.pod:113
6288 msgid "This call checks that C<filename> exists."
6289 msgstr ""
6290
6291 #. type: textblock
6292 #: ../src/guestfs-actions.pod:173 ../src/guestfs-actions.pod:4460
6293 #: ../fish/guestfish-actions.pod:115 ../fish/guestfish-actions.pod:3024
6294 msgid "The optional arguments are:"
6295 msgstr ""
6296
6297 #. type: =item
6298 #: ../src/guestfs-actions.pod:177 ../fish/guestfish-actions.pod:119
6299 msgid "C<readonly>"
6300 msgstr "C<readonly>"
6301
6302 #. type: textblock
6303 #: ../src/guestfs-actions.pod:179 ../fish/guestfish-actions.pod:121
6304 msgid ""
6305 "If true then the image is treated as read-only.  Writes are still allowed, "
6306 "but they are stored in a temporary snapshot overlay which is discarded at "
6307 "the end.  The disk that you add is not modified."
6308 msgstr ""
6309
6310 #. type: =item
6311 #: ../src/guestfs-actions.pod:183 ../fish/guestfish-actions.pod:125
6312 msgid "C<format>"
6313 msgstr "C<format>"
6314
6315 #. type: textblock
6316 #: ../src/guestfs-actions.pod:185
6317 msgid ""
6318 "This forces the image format.  If you omit this (or use C<guestfs_add_drive> "
6319 "or C<guestfs_add_drive_ro>) then the format is automatically detected.  "
6320 "Possible formats include C<raw> and C<qcow2>."
6321 msgstr ""
6322
6323 #. type: textblock
6324 #: ../src/guestfs-actions.pod:189 ../fish/guestfish-actions.pod:131
6325 msgid ""
6326 "Automatic detection of the format opens you up to a potential security hole "
6327 "when dealing with untrusted raw-format images.  See CVE-2010-3851 and "
6328 "RHBZ#642934.  Specifying the format closes this security hole."
6329 msgstr ""
6330
6331 #. type: =item
6332 #: ../src/guestfs-actions.pod:194 ../fish/guestfish-actions.pod:136
6333 msgid "C<iface>"
6334 msgstr "C<iface>"
6335
6336 #. type: textblock
6337 #: ../src/guestfs-actions.pod:196
6338 msgid ""
6339 "This rarely-used option lets you emulate the behaviour of the deprecated "
6340 "C<guestfs_add_drive_with_if> call (q.v.)"
6341 msgstr ""
6342
6343 #. type: textblock
6344 #: ../src/guestfs-actions.pod:203
6345 msgid "(Added in 1.5.23)"
6346 msgstr ""
6347
6348 #. type: =head2
6349 #: ../src/guestfs-actions.pod:205
6350 msgid "guestfs_add_drive_opts_va"
6351 msgstr ""
6352
6353 #. type: verbatim
6354 #: ../src/guestfs-actions.pod:207
6355 #, no-wrap
6356 msgid ""
6357 " int\n"
6358 " guestfs_add_drive_opts_va (guestfs_h *g,\n"
6359 "                            const char *filename,\n"
6360 "                            va_list args);\n"
6361 "\n"
6362 msgstr ""
6363
6364 #. type: textblock
6365 #: ../src/guestfs-actions.pod:212
6366 msgid "This is the \"va_list variant\" of L</guestfs_add_drive_opts>."
6367 msgstr ""
6368
6369 #. type: =head2
6370 #: ../src/guestfs-actions.pod:216
6371 msgid "guestfs_add_drive_opts_argv"
6372 msgstr ""
6373
6374 #. type: verbatim
6375 #: ../src/guestfs-actions.pod:218
6376 #, no-wrap
6377 msgid ""
6378 " int\n"
6379 " guestfs_add_drive_opts_argv (guestfs_h *g,\n"
6380 "                              const char *filename,\n"
6381 "                              const struct guestfs_add_drive_opts_argv *optargs);\n"
6382 "\n"
6383 msgstr ""
6384
6385 #. type: textblock
6386 #: ../src/guestfs-actions.pod:223
6387 msgid "This is the \"argv variant\" of L</guestfs_add_drive_opts>."
6388 msgstr ""
6389
6390 #. type: =head2
6391 #: ../src/guestfs-actions.pod:227
6392 msgid "guestfs_add_drive_ro"
6393 msgstr ""
6394
6395 #. type: verbatim
6396 #: ../src/guestfs-actions.pod:229
6397 #, no-wrap
6398 msgid ""
6399 " int\n"
6400 " guestfs_add_drive_ro (guestfs_h *g,\n"
6401 "                       const char *filename);\n"
6402 "\n"
6403 msgstr ""
6404
6405 #. type: textblock
6406 #: ../src/guestfs-actions.pod:233
6407 msgid ""
6408 "This function is the equivalent of calling C<guestfs_add_drive_opts> with "
6409 "the optional parameter C<GUESTFS_ADD_DRIVE_OPTS_READONLY> set to 1, so the "
6410 "disk is added read-only, with the format being detected automatically."
6411 msgstr ""
6412
6413 #. type: textblock
6414 #: ../src/guestfs-actions.pod:240
6415 msgid "(Added in 1.0.38)"
6416 msgstr ""
6417
6418 #. type: =head2
6419 #: ../src/guestfs-actions.pod:242
6420 msgid "guestfs_add_drive_ro_with_if"
6421 msgstr ""
6422
6423 #. type: verbatim
6424 #: ../src/guestfs-actions.pod:244
6425 #, no-wrap
6426 msgid ""
6427 " int\n"
6428 " guestfs_add_drive_ro_with_if (guestfs_h *g,\n"
6429 "                               const char *filename,\n"
6430 "                               const char *iface);\n"
6431 "\n"
6432 msgstr ""
6433
6434 #. type: textblock
6435 #: ../src/guestfs-actions.pod:249
6436 msgid ""
6437 "This is the same as C<guestfs_add_drive_ro> but it allows you to specify the "
6438 "QEMU interface emulation to use at run time."
6439 msgstr ""
6440
6441 #. type: textblock
6442 #: ../src/guestfs-actions.pod:261 ../src/guestfs-actions.pod:282
6443 #: ../src/guestfs-actions.pod:2362
6444 msgid "(Added in 1.0.84)"
6445 msgstr ""
6446
6447 #. type: =head2
6448 #: ../src/guestfs-actions.pod:263
6449 msgid "guestfs_add_drive_with_if"
6450 msgstr ""
6451
6452 #. type: verbatim
6453 #: ../src/guestfs-actions.pod:265
6454 #, no-wrap
6455 msgid ""
6456 " int\n"
6457 " guestfs_add_drive_with_if (guestfs_h *g,\n"
6458 "                            const char *filename,\n"
6459 "                            const char *iface);\n"
6460 "\n"
6461 msgstr ""
6462
6463 #. type: textblock
6464 #: ../src/guestfs-actions.pod:270
6465 msgid ""
6466 "This is the same as C<guestfs_add_drive> but it allows you to specify the "
6467 "QEMU interface emulation to use at run time."
6468 msgstr ""
6469
6470 #. type: =head2
6471 #: ../src/guestfs-actions.pod:284
6472 msgid "guestfs_aug_clear"
6473 msgstr ""
6474
6475 #. type: verbatim
6476 #: ../src/guestfs-actions.pod:286
6477 #, no-wrap
6478 msgid ""
6479 " int\n"
6480 " guestfs_aug_clear (guestfs_h *g,\n"
6481 "                    const char *augpath);\n"
6482 "\n"
6483 msgstr ""
6484
6485 #. type: textblock
6486 #: ../src/guestfs-actions.pod:290 ../fish/guestfish-actions.pod:188
6487 msgid ""
6488 "Set the value associated with C<path> to C<NULL>.  This is the same as the "
6489 "L<augtool(1)> C<clear> command."
6490 msgstr ""
6491
6492 #. type: textblock
6493 #: ../src/guestfs-actions.pod:295 ../src/guestfs-actions.pod:2112
6494 msgid "(Added in 1.3.4)"
6495 msgstr ""
6496
6497 #. type: =head2
6498 #: ../src/guestfs-actions.pod:297
6499 msgid "guestfs_aug_close"
6500 msgstr ""
6501
6502 #. type: verbatim
6503 #: ../src/guestfs-actions.pod:299
6504 #, no-wrap
6505 msgid ""
6506 " int\n"
6507 " guestfs_aug_close (guestfs_h *g);\n"
6508 "\n"
6509 msgstr ""
6510
6511 #. type: textblock
6512 #: ../src/guestfs-actions.pod:302
6513 msgid ""
6514 "Close the current Augeas handle and free up any resources used by it.  After "
6515 "calling this, you have to call C<guestfs_aug_init> again before you can use "
6516 "any other Augeas functions."
6517 msgstr ""
6518
6519 #. type: textblock
6520 #: ../src/guestfs-actions.pod:309 ../src/guestfs-actions.pod:334
6521 #: ../src/guestfs-actions.pod:352 ../src/guestfs-actions.pod:366
6522 #: ../src/guestfs-actions.pod:424 ../src/guestfs-actions.pod:444
6523 #: ../src/guestfs-actions.pod:458 ../src/guestfs-actions.pod:489
6524 #: ../src/guestfs-actions.pod:503 ../src/guestfs-actions.pod:517
6525 #: ../src/guestfs-actions.pod:531 ../src/guestfs-actions.pod:549
6526 #: ../src/guestfs-actions.pod:5486
6527 msgid "(Added in 0.7)"
6528 msgstr ""
6529
6530 #. type: =head2
6531 #: ../src/guestfs-actions.pod:311
6532 msgid "guestfs_aug_defnode"
6533 msgstr ""
6534
6535 #. type: verbatim
6536 #: ../src/guestfs-actions.pod:313
6537 #, no-wrap
6538 msgid ""
6539 " struct guestfs_int_bool *\n"
6540 " guestfs_aug_defnode (guestfs_h *g,\n"
6541 "                      const char *name,\n"
6542 "                      const char *expr,\n"
6543 "                      const char *val);\n"
6544 "\n"
6545 msgstr ""
6546
6547 #. type: textblock
6548 #: ../src/guestfs-actions.pod:319 ../fish/guestfish-actions.pod:204
6549 msgid ""
6550 "Defines a variable C<name> whose value is the result of evaluating C<expr>."
6551 msgstr ""
6552
6553 #. type: textblock
6554 #: ../src/guestfs-actions.pod:322
6555 msgid ""
6556 "If C<expr> evaluates to an empty nodeset, a node is created, equivalent to "
6557 "calling C<guestfs_aug_set> C<expr>, C<value>.  C<name> will be the nodeset "
6558 "containing that single node."
6559 msgstr ""
6560
6561 #. type: textblock
6562 #: ../src/guestfs-actions.pod:326 ../fish/guestfish-actions.pod:211
6563 msgid ""
6564 "On success this returns a pair containing the number of nodes in the "
6565 "nodeset, and a boolean flag if a node was created."
6566 msgstr ""
6567
6568 #. type: textblock
6569 #: ../src/guestfs-actions.pod:330
6570 msgid ""
6571 "This function returns a C<struct guestfs_int_bool *>, or NULL if there was "
6572 "an error.  I<The caller must call C<guestfs_free_int_bool> after use>."
6573 msgstr ""
6574
6575 #. type: =head2
6576 #: ../src/guestfs-actions.pod:336
6577 msgid "guestfs_aug_defvar"
6578 msgstr ""
6579
6580 #. type: verbatim
6581 #: ../src/guestfs-actions.pod:338
6582 #, no-wrap
6583 msgid ""
6584 " int\n"
6585 " guestfs_aug_defvar (guestfs_h *g,\n"
6586 "                     const char *name,\n"
6587 "                     const char *expr);\n"
6588 "\n"
6589 msgstr ""
6590
6591 #. type: textblock
6592 #: ../src/guestfs-actions.pod:343 ../fish/guestfish-actions.pod:219
6593 msgid ""
6594 "Defines an Augeas variable C<name> whose value is the result of evaluating "
6595 "C<expr>.  If C<expr> is NULL, then C<name> is undefined."
6596 msgstr ""
6597
6598 #. type: textblock
6599 #: ../src/guestfs-actions.pod:347 ../fish/guestfish-actions.pod:223
6600 msgid ""
6601 "On success this returns the number of nodes in C<expr>, or C<0> if C<expr> "
6602 "evaluates to something which is not a nodeset."
6603 msgstr ""
6604
6605 #. type: =head2
6606 #: ../src/guestfs-actions.pod:354
6607 msgid "guestfs_aug_get"
6608 msgstr ""
6609
6610 #. type: verbatim
6611 #: ../src/guestfs-actions.pod:356
6612 #, no-wrap
6613 msgid ""
6614 " char *\n"
6615 " guestfs_aug_get (guestfs_h *g,\n"
6616 "                  const char *augpath);\n"
6617 "\n"
6618 msgstr ""
6619
6620 #. type: textblock
6621 #: ../src/guestfs-actions.pod:360 ../fish/guestfish-actions.pod:230
6622 msgid ""
6623 "Look up the value associated with C<path>.  If C<path> matches exactly one "
6624 "node, the C<value> is returned."
6625 msgstr ""
6626
6627 #. type: textblock
6628 #: ../src/guestfs-actions.pod:363 ../src/guestfs-actions.pod:863
6629 #: ../src/guestfs-actions.pod:881 ../src/guestfs-actions.pod:941
6630 #: ../src/guestfs-actions.pod:957 ../src/guestfs-actions.pod:1060
6631 #: ../src/guestfs-actions.pod:1190 ../src/guestfs-actions.pod:1207
6632 #: ../src/guestfs-actions.pod:1226 ../src/guestfs-actions.pod:1360
6633 #: ../src/guestfs-actions.pod:1551 ../src/guestfs-actions.pod:1663
6634 #: ../src/guestfs-actions.pod:1826 ../src/guestfs-actions.pod:1843
6635 #: ../src/guestfs-actions.pod:1910 ../src/guestfs-actions.pod:1944
6636 #: ../src/guestfs-actions.pod:1965 ../src/guestfs-actions.pod:2135
6637 #: ../src/guestfs-actions.pod:2327 ../src/guestfs-actions.pod:2534
6638 #: ../src/guestfs-actions.pod:2627 ../src/guestfs-actions.pod:2738
6639 #: ../src/guestfs-actions.pod:2758 ../src/guestfs-actions.pod:2878
6640 #: ../src/guestfs-actions.pod:2909 ../src/guestfs-actions.pod:2933
6641 #: ../src/guestfs-actions.pod:2970 ../src/guestfs-actions.pod:3030
6642 #: ../src/guestfs-actions.pod:3053 ../src/guestfs-actions.pod:3074
6643 #: ../src/guestfs-actions.pod:3646 ../src/guestfs-actions.pod:3996
6644 #: ../src/guestfs-actions.pod:4166 ../src/guestfs-actions.pod:4276
6645 #: ../src/guestfs-actions.pod:5021 ../src/guestfs-actions.pod:5214
6646 #: ../src/guestfs-actions.pod:5384 ../src/guestfs-actions.pod:5562
6647 #: ../src/guestfs-actions.pod:5611 ../src/guestfs-actions.pod:6223
6648 #: ../src/guestfs-actions.pod:6239 ../src/guestfs-actions.pod:6256
6649 #: ../src/guestfs-actions.pod:6280 ../src/guestfs-actions.pod:6954
6650 #: ../src/guestfs-actions.pod:6973 ../src/guestfs-actions.pod:6991
6651 #: ../src/guestfs-actions.pod:7171 ../src/guestfs-actions.pod:7443
6652 msgid ""
6653 "This function returns a string, or NULL on error.  I<The caller must free "
6654 "the returned string after use>."
6655 msgstr ""
6656
6657 #. type: =head2
6658 #: ../src/guestfs-actions.pod:368
6659 msgid "guestfs_aug_init"
6660 msgstr ""
6661
6662 #. type: verbatim
6663 #: ../src/guestfs-actions.pod:370
6664 #, no-wrap
6665 msgid ""
6666 " int\n"
6667 " guestfs_aug_init (guestfs_h *g,\n"
6668 "                   const char *root,\n"
6669 "                   int flags);\n"
6670 "\n"
6671 msgstr ""
6672
6673 #. type: textblock
6674 #: ../src/guestfs-actions.pod:375 ../fish/guestfish-actions.pod:237
6675 msgid ""
6676 "Create a new Augeas handle for editing configuration files.  If there was "
6677 "any previous Augeas handle associated with this guestfs session, then it is "
6678 "closed."
6679 msgstr ""
6680
6681 #. type: textblock
6682 #: ../src/guestfs-actions.pod:379
6683 msgid "You must call this before using any other C<guestfs_aug_*> commands."
6684 msgstr ""
6685
6686 #. type: textblock
6687 #: ../src/guestfs-actions.pod:382 ../fish/guestfish-actions.pod:244
6688 msgid ""
6689 "C<root> is the filesystem root.  C<root> must not be NULL, use C</> instead."
6690 msgstr ""
6691
6692 #. type: textblock
6693 #: ../src/guestfs-actions.pod:385 ../fish/guestfish-actions.pod:247
6694 msgid ""
6695 "The flags are the same as the flags defined in E<lt>augeas.hE<gt>, the "
6696 "logical I<or> of the following integers:"
6697 msgstr ""
6698
6699 #. type: =item
6700 #: ../src/guestfs-actions.pod:391 ../fish/guestfish-actions.pod:253
6701 msgid "C<AUG_SAVE_BACKUP> = 1"
6702 msgstr "C<AUG_SAVE_BACKUP> = 1"
6703
6704 #. type: textblock
6705 #: ../src/guestfs-actions.pod:393 ../fish/guestfish-actions.pod:255
6706 msgid "Keep the original file with a C<.augsave> extension."
6707 msgstr ""
6708
6709 #. type: =item
6710 #: ../src/guestfs-actions.pod:395 ../fish/guestfish-actions.pod:257
6711 msgid "C<AUG_SAVE_NEWFILE> = 2"
6712 msgstr "C<AUG_SAVE_NEWFILE> = 2"
6713
6714 #. type: textblock
6715 #: ../src/guestfs-actions.pod:397 ../fish/guestfish-actions.pod:259
6716 msgid ""
6717 "Save changes into a file with extension C<.augnew>, and do not overwrite "
6718 "original.  Overrides C<AUG_SAVE_BACKUP>."
6719 msgstr ""
6720
6721 #. type: =item
6722 #: ../src/guestfs-actions.pod:400 ../fish/guestfish-actions.pod:262
6723 msgid "C<AUG_TYPE_CHECK> = 4"
6724 msgstr "C<AUG_TYPE_CHECK> = 4"
6725
6726 #. type: textblock
6727 #: ../src/guestfs-actions.pod:402 ../fish/guestfish-actions.pod:264
6728 msgid "Typecheck lenses (can be expensive)."
6729 msgstr ""
6730
6731 #. type: =item
6732 #: ../src/guestfs-actions.pod:404 ../fish/guestfish-actions.pod:266
6733 msgid "C<AUG_NO_STDINC> = 8"
6734 msgstr "C<AUG_NO_STDINC> = 8"
6735
6736 #. type: textblock
6737 #: ../src/guestfs-actions.pod:406 ../fish/guestfish-actions.pod:268
6738 msgid "Do not use standard load path for modules."
6739 msgstr ""
6740
6741 #. type: =item
6742 #: ../src/guestfs-actions.pod:408 ../fish/guestfish-actions.pod:270
6743 msgid "C<AUG_SAVE_NOOP> = 16"
6744 msgstr "C<AUG_SAVE_NOOP> = 16"
6745
6746 #. type: textblock
6747 #: ../src/guestfs-actions.pod:410 ../fish/guestfish-actions.pod:272
6748 msgid "Make save a no-op, just record what would have been changed."
6749 msgstr ""
6750
6751 #. type: =item
6752 #: ../src/guestfs-actions.pod:412 ../fish/guestfish-actions.pod:274
6753 msgid "C<AUG_NO_LOAD> = 32"
6754 msgstr "C<AUG_NO_LOAD> = 32"
6755
6756 #. type: textblock
6757 #: ../src/guestfs-actions.pod:414
6758 msgid "Do not load the tree in C<guestfs_aug_init>."
6759 msgstr ""
6760
6761 #. type: textblock
6762 #: ../src/guestfs-actions.pod:418
6763 msgid "To close the handle, you can call C<guestfs_aug_close>."
6764 msgstr ""
6765
6766 #. type: textblock
6767 #: ../src/guestfs-actions.pod:420 ../fish/guestfish-actions.pod:282
6768 msgid "To find out more about Augeas, see L<http://augeas.net/>."
6769 msgstr ""
6770
6771 #. type: =head2
6772 #: ../src/guestfs-actions.pod:426
6773 msgid "guestfs_aug_insert"
6774 msgstr ""
6775
6776 #. type: verbatim
6777 #: ../src/guestfs-actions.pod:428
6778 #, no-wrap
6779 msgid ""
6780 " int\n"
6781 " guestfs_aug_insert (guestfs_h *g,\n"
6782 "                     const char *augpath,\n"
6783 "                     const char *label,\n"
6784 "                     int before);\n"
6785 "\n"
6786 msgstr ""
6787
6788 #. type: textblock
6789 #: ../src/guestfs-actions.pod:434 ../fish/guestfish-actions.pod:288
6790 msgid ""
6791 "Create a new sibling C<label> for C<path>, inserting it into the tree before "
6792 "or after C<path> (depending on the boolean flag C<before>)."
6793 msgstr ""
6794
6795 #. type: textblock
6796 #: ../src/guestfs-actions.pod:438 ../fish/guestfish-actions.pod:292
6797 msgid ""
6798 "C<path> must match exactly one existing node in the tree, and C<label> must "
6799 "be a label, ie. not contain C</>, C<*> or end with a bracketed index C<[N]>."
6800 msgstr ""
6801
6802 #. type: =head2
6803 #: ../src/guestfs-actions.pod:446
6804 msgid "guestfs_aug_load"
6805 msgstr ""
6806
6807 #. type: verbatim
6808 #: ../src/guestfs-actions.pod:448
6809 #, no-wrap
6810 msgid ""
6811 " int\n"
6812 " guestfs_aug_load (guestfs_h *g);\n"
6813 "\n"
6814 msgstr ""
6815
6816 #. type: textblock
6817 #: ../src/guestfs-actions.pod:451 ../fish/guestfish-actions.pod:300
6818 msgid "Load files into the tree."
6819 msgstr "Завантажити файли до ієрархії."
6820
6821 #. type: textblock
6822 #: ../src/guestfs-actions.pod:453 ../fish/guestfish-actions.pod:302
6823 msgid "See C<aug_load> in the Augeas documentation for the full gory details."
6824 msgstr ""
6825
6826 #. type: =head2
6827 #: ../src/guestfs-actions.pod:460
6828 msgid "guestfs_aug_ls"
6829 msgstr ""
6830
6831 #. type: verbatim
6832 #: ../src/guestfs-actions.pod:462
6833 #, no-wrap
6834 msgid ""
6835 " char **\n"
6836 " guestfs_aug_ls (guestfs_h *g,\n"
6837 "                 const char *augpath);\n"
6838 "\n"
6839 msgstr ""
6840
6841 #. type: textblock
6842 #: ../src/guestfs-actions.pod:466
6843 msgid ""
6844 "This is just a shortcut for listing C<guestfs_aug_match> C<path/*> and "
6845 "sorting the resulting nodes into alphabetical order."
6846 msgstr ""
6847
6848 #. type: textblock
6849 #: ../src/guestfs-actions.pod:469 ../src/guestfs-actions.pod:485
6850 #: ../src/guestfs-actions.pod:631 ../src/guestfs-actions.pod:1079
6851 #: ../src/guestfs-actions.pod:1375 ../src/guestfs-actions.pod:1394
6852 #: ../src/guestfs-actions.pod:1497 ../src/guestfs-actions.pod:1516
6853 #: ../src/guestfs-actions.pod:1765 ../src/guestfs-actions.pod:2207
6854 #: ../src/guestfs-actions.pod:2223 ../src/guestfs-actions.pod:2242
6855 #: ../src/guestfs-actions.pod:2285 ../src/guestfs-actions.pod:2309
6856 #: ../src/guestfs-actions.pod:2380 ../src/guestfs-actions.pod:2429
6857 #: ../src/guestfs-actions.pod:2696 ../src/guestfs-actions.pod:2987
6858 #: ../src/guestfs-actions.pod:3276 ../src/guestfs-actions.pod:3566
6859 #: ../src/guestfs-actions.pod:3628 ../src/guestfs-actions.pod:3733
6860 #: ../src/guestfs-actions.pod:4138 ../src/guestfs-actions.pod:4836
6861 #: ../src/guestfs-actions.pod:5356 ../src/guestfs-actions.pod:5482
6862 #: ../src/guestfs-actions.pod:5596 ../src/guestfs-actions.pod:6296
6863 #: ../src/guestfs-actions.pod:6357 ../src/guestfs-actions.pod:6412
6864 #: ../src/guestfs-actions.pod:6558 ../src/guestfs-actions.pod:6582
6865 #: ../src/guestfs-actions.pod:7064 ../src/guestfs-actions.pod:7084
6866 #: ../src/guestfs-actions.pod:7131 ../src/guestfs-actions.pod:7296
6867 #: ../src/guestfs-actions.pod:7315 ../src/guestfs-actions.pod:7400
6868 #: ../src/guestfs-actions.pod:7419 ../src/guestfs-actions.pod:7465
6869 #: ../src/guestfs-actions.pod:7484
6870 msgid ""
6871 "This function returns a NULL-terminated array of strings (like L<environ(3)"
6872 ">), or NULL if there was an error.  I<The caller must free the strings and "
6873 "the array after use>."
6874 msgstr ""
6875
6876 #. type: textblock
6877 #: ../src/guestfs-actions.pod:473 ../src/guestfs-actions.pod:1004
6878 #: ../src/guestfs-actions.pod:1022 ../src/guestfs-actions.pod:1432
6879 #: ../src/guestfs-actions.pod:3354 ../src/guestfs-actions.pod:3385
6880 #: ../src/guestfs-actions.pod:3979 ../src/guestfs-actions.pod:4029
6881 #: ../src/guestfs-actions.pod:4216 ../src/guestfs-actions.pod:4249
6882 #: ../src/guestfs-actions.pod:4412 ../src/guestfs-actions.pod:4840
6883 #: ../src/guestfs-actions.pod:5297 ../src/guestfs-actions.pod:5692
6884 #: ../src/guestfs-actions.pod:5706 ../src/guestfs-actions.pod:5718
6885 #: ../src/guestfs-actions.pod:6158 ../src/guestfs-actions.pod:6796
6886 #: ../src/guestfs-actions.pod:6809 ../src/guestfs-actions.pod:7048
6887 #: ../src/guestfs-actions.pod:7284
6888 msgid "(Added in 0.8)"
6889 msgstr ""
6890
6891 #. type: =head2
6892 #: ../src/guestfs-actions.pod:475
6893 msgid "guestfs_aug_match"
6894 msgstr ""
6895
6896 #. type: verbatim
6897 #: ../src/guestfs-actions.pod:477
6898 #, no-wrap
6899 msgid ""
6900 " char **\n"
6901 " guestfs_aug_match (guestfs_h *g,\n"
6902 "                    const char *augpath);\n"
6903 "\n"
6904 msgstr ""
6905
6906 #. type: textblock
6907 #: ../src/guestfs-actions.pod:481 ../fish/guestfish-actions.pod:316
6908 msgid ""
6909 "Returns a list of paths which match the path expression C<path>.  The "
6910 "returned paths are sufficiently qualified so that they match exactly one "
6911 "node in the current tree."
6912 msgstr ""
6913
6914 #. type: =head2
6915 #: ../src/guestfs-actions.pod:491
6916 msgid "guestfs_aug_mv"
6917 msgstr ""
6918
6919 #. type: verbatim
6920 #: ../src/guestfs-actions.pod:493
6921 #, no-wrap
6922 msgid ""
6923 " int\n"
6924 " guestfs_aug_mv (guestfs_h *g,\n"
6925 "                 const char *src,\n"
6926 "                 const char *dest);\n"
6927 "\n"
6928 msgstr ""
6929
6930 #. type: textblock
6931 #: ../src/guestfs-actions.pod:498 ../fish/guestfish-actions.pod:324
6932 msgid ""
6933 "Move the node C<src> to C<dest>.  C<src> must match exactly one node.  "
6934 "C<dest> is overwritten if it exists."
6935 msgstr ""
6936
6937 #. type: =head2
6938 #: ../src/guestfs-actions.pod:505
6939 msgid "guestfs_aug_rm"
6940 msgstr ""
6941
6942 #. type: verbatim
6943 #: ../src/guestfs-actions.pod:507
6944 #, no-wrap
6945 msgid ""
6946 " int\n"
6947 " guestfs_aug_rm (guestfs_h *g,\n"
6948 "                 const char *augpath);\n"
6949 "\n"
6950 msgstr ""
6951
6952 #. type: textblock
6953 #: ../src/guestfs-actions.pod:511 ../fish/guestfish-actions.pod:331
6954 msgid "Remove C<path> and all of its children."
6955 msgstr ""
6956
6957 #. type: textblock
6958 #: ../src/guestfs-actions.pod:513 ../fish/guestfish-actions.pod:333
6959 msgid "On success this returns the number of entries which were removed."
6960 msgstr ""
6961
6962 #. type: =head2
6963 #: ../src/guestfs-actions.pod:519
6964 msgid "guestfs_aug_save"
6965 msgstr ""
6966
6967 #. type: verbatim
6968 #: ../src/guestfs-actions.pod:521
6969 #, no-wrap
6970 msgid ""
6971 " int\n"
6972 " guestfs_aug_save (guestfs_h *g);\n"
6973 "\n"
6974 msgstr ""
6975
6976 #. type: textblock
6977 #: ../src/guestfs-actions.pod:524 ../fish/guestfish-actions.pod:339
6978 msgid "This writes all pending changes to disk."
6979 msgstr ""
6980
6981 #. type: textblock
6982 #: ../src/guestfs-actions.pod:526
6983 msgid ""
6984 "The flags which were passed to C<guestfs_aug_init> affect exactly how files "
6985 "are saved."
6986 msgstr ""
6987
6988 #. type: =head2
6989 #: ../src/guestfs-actions.pod:533
6990 msgid "guestfs_aug_set"
6991 msgstr ""
6992
6993 #. type: verbatim
6994 #: ../src/guestfs-actions.pod:535
6995 #, no-wrap
6996 msgid ""
6997 " int\n"
6998 " guestfs_aug_set (guestfs_h *g,\n"
6999 "                  const char *augpath,\n"
7000 "                  const char *val);\n"
7001 "\n"
7002 msgstr ""
7003
7004 #. type: textblock
7005 #: ../src/guestfs-actions.pod:540 ../fish/guestfish-actions.pod:348
7006 msgid "Set the value associated with C<path> to C<val>."
7007 msgstr ""
7008
7009 #. type: textblock
7010 #: ../src/guestfs-actions.pod:542
7011 msgid ""
7012 "In the Augeas API, it is possible to clear a node by setting the value to "
7013 "NULL.  Due to an oversight in the libguestfs API you cannot do that with "
7014 "this call.  Instead you must use the C<guestfs_aug_clear> call."
7015 msgstr ""
7016
7017 #. type: =head2
7018 #: ../src/guestfs-actions.pod:551
7019 msgid "guestfs_available"
7020 msgstr ""
7021
7022 #. type: verbatim
7023 #: ../src/guestfs-actions.pod:553
7024 #, no-wrap
7025 msgid ""
7026 " int\n"
7027 " guestfs_available (guestfs_h *g,\n"
7028 "                    char *const *groups);\n"
7029 "\n"
7030 msgstr ""
7031
7032 #. type: textblock
7033 #: ../src/guestfs-actions.pod:557 ../fish/guestfish-actions.pod:359
7034 msgid ""
7035 "This command is used to check the availability of some groups of "
7036 "functionality in the appliance, which not all builds of the libguestfs "
7037 "appliance will be able to provide."
7038 msgstr ""
7039
7040 #. type: textblock
7041 #: ../src/guestfs-actions.pod:561
7042 msgid ""
7043 "The libguestfs groups, and the functions that those groups correspond to, "
7044 "are listed in L<guestfs(3)/AVAILABILITY>.  You can also fetch this list at "
7045 "runtime by calling C<guestfs_available_all_groups>."
7046 msgstr ""
7047
7048 #. type: textblock
7049 #: ../src/guestfs-actions.pod:566 ../fish/guestfish-actions.pod:368
7050 msgid ""
7051 "The argument C<groups> is a list of group names, eg: C<[\"inotify\", \"augeas"
7052 "\"]> would check for the availability of the Linux inotify functions and "
7053 "Augeas (configuration file editing) functions."
7054 msgstr ""
7055
7056 #. type: textblock
7057 #: ../src/guestfs-actions.pod:571 ../fish/guestfish-actions.pod:373
7058 msgid "The command returns no error if I<all> requested groups are available."
7059 msgstr ""
7060
7061 #. type: textblock
7062 #: ../src/guestfs-actions.pod:573 ../fish/guestfish-actions.pod:375
7063 msgid ""
7064 "It fails with an error if one or more of the requested groups is unavailable "
7065 "in the appliance."
7066 msgstr ""
7067
7068 #. type: textblock
7069 #: ../src/guestfs-actions.pod:576 ../fish/guestfish-actions.pod:378
7070 msgid ""
7071 "If an unknown group name is included in the list of groups then an error is "
7072 "always returned."
7073 msgstr ""
7074
7075 #. type: textblock
7076 #: ../src/guestfs-actions.pod:579 ../fish/guestfish-actions.pod:381
7077 msgid "I<Notes:>"
7078 msgstr "I<Нотатки:>"
7079
7080 #. type: textblock
7081 #: ../src/guestfs-actions.pod:585
7082 msgid "You must call C<guestfs_launch> before calling this function."
7083 msgstr ""
7084
7085 #. type: textblock
7086 #: ../src/guestfs-actions.pod:587 ../fish/guestfish-actions.pod:389
7087 msgid ""
7088 "The reason is because we don't know what groups are supported by the "
7089 "appliance/daemon until it is running and can be queried."
7090 msgstr ""
7091
7092 #. type: textblock
7093 #: ../src/guestfs-actions.pod:593 ../fish/guestfish-actions.pod:395
7094 msgid ""
7095 "If a group of functions is available, this does not necessarily mean that "
7096 "they will work.  You still have to check for errors when calling individual "
7097 "API functions even if they are available."
7098 msgstr ""
7099
7100 #. type: textblock
7101 #: ../src/guestfs-actions.pod:600 ../fish/guestfish-actions.pod:402
7102 msgid ""
7103 "It is usually the job of distro packagers to build complete functionality "
7104 "into the libguestfs appliance.  Upstream libguestfs, if built from source "
7105 "with all requirements satisfied, will support everything."
7106 msgstr ""
7107
7108 #. type: textblock
7109 #: ../src/guestfs-actions.pod:607
7110 msgid ""
7111 "This call was added in version C<1.0.80>.  In previous versions of "
7112 "libguestfs all you could do would be to speculatively execute a command to "
7113 "find out if the daemon implemented it.  See also C<guestfs_version>."
7114 msgstr ""
7115
7116 #. type: textblock
7117 #: ../src/guestfs-actions.pod:616 ../src/guestfs-actions.pod:1177
7118 msgid "(Added in 1.0.80)"
7119 msgstr ""
7120
7121 #. type: =head2
7122 #: ../src/guestfs-actions.pod:618
7123 msgid "guestfs_available_all_groups"
7124 msgstr ""
7125
7126 #. type: verbatim
7127 #: ../src/guestfs-actions.pod:620
7128 #, no-wrap
7129 msgid ""
7130 " char **\n"
7131 " guestfs_available_all_groups (guestfs_h *g);\n"
7132 "\n"
7133 msgstr ""
7134
7135 #. type: textblock
7136 #: ../src/guestfs-actions.pod:623
7137 msgid ""
7138 "This command returns a list of all optional groups that this daemon knows "
7139 "about.  Note this returns both supported and unsupported groups.  To find "
7140 "out which ones the daemon can actually support you have to call "
7141 "C<guestfs_available> on each member of the returned list."
7142 msgstr ""
7143
7144 #. type: textblock
7145 #: ../src/guestfs-actions.pod:629
7146 msgid "See also C<guestfs_available> and L<guestfs(3)/AVAILABILITY>."
7147 msgstr ""
7148
7149 #. type: textblock
7150 #: ../src/guestfs-actions.pod:635
7151 msgid "(Added in 1.3.15)"
7152 msgstr ""
7153
7154 #. type: =head2
7155 #: ../src/guestfs-actions.pod:637
7156 msgid "guestfs_base64_in"
7157 msgstr ""
7158
7159 #. type: verbatim
7160 #: ../src/guestfs-actions.pod:639
7161 #, no-wrap
7162 msgid ""
7163 " int\n"
7164 " guestfs_base64_in (guestfs_h *g,\n"
7165 "                    const char *base64file,\n"
7166 "                    const char *filename);\n"
7167 "\n"
7168 msgstr ""
7169
7170 #. type: textblock
7171 #: ../src/guestfs-actions.pod:644 ../fish/guestfish-actions.pod:432
7172 msgid ""
7173 "This command uploads base64-encoded data from C<base64file> to C<filename>."
7174 msgstr ""
7175
7176 #. type: textblock
7177 #: ../src/guestfs-actions.pod:649 ../src/guestfs-actions.pod:663
7178 msgid "(Added in 1.3.5)"
7179 msgstr ""
7180
7181 #. type: =head2
7182 #: ../src/guestfs-actions.pod:651
7183 msgid "guestfs_base64_out"
7184 msgstr ""
7185
7186 #. type: verbatim
7187 #: ../src/guestfs-actions.pod:653
7188 #, no-wrap
7189 msgid ""
7190 " int\n"
7191 " guestfs_base64_out (guestfs_h *g,\n"
7192 "                     const char *filename,\n"
7193 "                     const char *base64file);\n"
7194 "\n"
7195 msgstr ""
7196
7197 #. type: textblock
7198 #: ../src/guestfs-actions.pod:658 ../fish/guestfish-actions.pod:441
7199 msgid ""
7200 "This command downloads the contents of C<filename>, writing it out to local "
7201 "file C<base64file> encoded as base64."
7202 msgstr ""
7203
7204 #. type: =head2
7205 #: ../src/guestfs-actions.pod:665
7206 msgid "guestfs_blockdev_flushbufs"
7207 msgstr ""
7208
7209 #. type: verbatim
7210 #: ../src/guestfs-actions.pod:667
7211 #, no-wrap
7212 msgid ""
7213 " int\n"
7214 " guestfs_blockdev_flushbufs (guestfs_h *g,\n"
7215 "                             const char *device);\n"
7216 "\n"
7217 msgstr ""
7218
7219 #. type: textblock
7220 #: ../src/guestfs-actions.pod:671 ../fish/guestfish-actions.pod:450
7221 msgid ""
7222 "This tells the kernel to flush internal buffers associated with C<device>."
7223 msgstr ""
7224
7225 #. type: textblock
7226 #: ../src/guestfs-actions.pod:674 ../src/guestfs-actions.pod:691
7227 #: ../src/guestfs-actions.pod:706 ../src/guestfs-actions.pod:722
7228 #: ../src/guestfs-actions.pod:740 ../src/guestfs-actions.pod:759
7229 #: ../src/guestfs-actions.pod:773 ../src/guestfs-actions.pod:791
7230 #: ../src/guestfs-actions.pod:805 ../src/guestfs-actions.pod:819
7231 #: ../fish/guestfish-actions.pod:453 ../fish/guestfish-actions.pod:464
7232 #: ../fish/guestfish-actions.pod:473 ../fish/guestfish-actions.pod:483
7233 #: ../fish/guestfish-actions.pod:495 ../fish/guestfish-actions.pod:508
7234 #: ../fish/guestfish-actions.pod:516 ../fish/guestfish-actions.pod:527
7235 #: ../fish/guestfish-actions.pod:535 ../fish/guestfish-actions.pod:543
7236 msgid "This uses the L<blockdev(8)> command."
7237 msgstr ""
7238
7239 #. type: textblock
7240 #: ../src/guestfs-actions.pod:678 ../src/guestfs-actions.pod:695
7241 #: ../src/guestfs-actions.pod:710 ../src/guestfs-actions.pod:726
7242 #: ../src/guestfs-actions.pod:744 ../src/guestfs-actions.pod:763
7243 #: ../src/guestfs-actions.pod:777 ../src/guestfs-actions.pod:795
7244 #: ../src/guestfs-actions.pod:809 ../src/guestfs-actions.pod:823
7245 msgid "(Added in 0.9.3)"
7246 msgstr ""
7247
7248 #. type: =head2
7249 #: ../src/guestfs-actions.pod:680
7250 msgid "guestfs_blockdev_getbsz"
7251 msgstr ""
7252
7253 #. type: verbatim
7254 #: ../src/guestfs-actions.pod:682
7255 #, no-wrap
7256 msgid ""
7257 " int\n"
7258 " guestfs_blockdev_getbsz (guestfs_h *g,\n"
7259 "                          const char *device);\n"
7260 "\n"
7261 msgstr ""
7262
7263 #. type: textblock
7264 #: ../src/guestfs-actions.pod:686 ../fish/guestfish-actions.pod:459
7265 msgid "This returns the block size of a device."
7266 msgstr ""
7267
7268 #. type: textblock
7269 #: ../src/guestfs-actions.pod:688 ../src/guestfs-actions.pod:788
7270 #: ../fish/guestfish-actions.pod:461 ../fish/guestfish-actions.pod:524
7271 msgid ""
7272 "(Note this is different from both I<size in blocks> and I<filesystem block "
7273 "size>)."
7274 msgstr ""
7275
7276 #. type: =head2
7277 #: ../src/guestfs-actions.pod:697
7278 msgid "guestfs_blockdev_getro"
7279 msgstr ""
7280
7281 #. type: verbatim
7282 #: ../src/guestfs-actions.pod:699
7283 #, no-wrap
7284 msgid ""
7285 " int\n"
7286 " guestfs_blockdev_getro (guestfs_h *g,\n"
7287 "                         const char *device);\n"
7288 "\n"
7289 msgstr ""
7290
7291 #. type: textblock
7292 #: ../src/guestfs-actions.pod:703 ../fish/guestfish-actions.pod:470
7293 msgid ""
7294 "Returns a boolean indicating if the block device is read-only (true if read-"
7295 "only, false if not)."
7296 msgstr ""
7297
7298 #. type: textblock
7299 #: ../src/guestfs-actions.pod:708 ../src/guestfs-actions.pod:1415
7300 #: ../src/guestfs-actions.pod:1430 ../src/guestfs-actions.pod:1920
7301 #: ../src/guestfs-actions.pod:1931 ../src/guestfs-actions.pod:2003
7302 #: ../src/guestfs-actions.pod:2058 ../src/guestfs-actions.pod:2073
7303 #: ../src/guestfs-actions.pod:2098 ../src/guestfs-actions.pod:2121
7304 #: ../src/guestfs-actions.pod:3094 ../src/guestfs-actions.pod:3111
7305 #: ../src/guestfs-actions.pod:3130 ../src/guestfs-actions.pod:3293
7306 #: ../src/guestfs-actions.pod:3307 ../src/guestfs-actions.pod:3322
7307 #: ../src/guestfs-actions.pod:3336 ../src/guestfs-actions.pod:3352
7308 #: ../src/guestfs-actions.pod:3367 ../src/guestfs-actions.pod:3383
7309 #: ../src/guestfs-actions.pod:3397 ../src/guestfs-actions.pod:3410
7310 #: ../src/guestfs-actions.pod:3424 ../src/guestfs-actions.pod:3439
7311 #: ../src/guestfs-actions.pod:3454 ../src/guestfs-actions.pod:4985
7312 msgid "This function returns a C truth value on success or -1 on error."
7313 msgstr ""
7314
7315 #. type: =head2
7316 #: ../src/guestfs-actions.pod:712
7317 msgid "guestfs_blockdev_getsize64"
7318 msgstr ""
7319
7320 #. type: verbatim
7321 #: ../src/guestfs-actions.pod:714
7322 #, no-wrap
7323 msgid ""
7324 " int64_t\n"
7325 " guestfs_blockdev_getsize64 (guestfs_h *g,\n"
7326 "                             const char *device);\n"
7327 "\n"
7328 msgstr ""
7329
7330 #. type: textblock
7331 #: ../src/guestfs-actions.pod:718 ../fish/guestfish-actions.pod:479
7332 msgid "This returns the size of the device in bytes."
7333 msgstr ""
7334
7335 #. type: textblock
7336 #: ../src/guestfs-actions.pod:720
7337 msgid "See also C<guestfs_blockdev_getsz>."
7338 msgstr ""
7339
7340 #. type: =head2
7341 #: ../src/guestfs-actions.pod:728
7342 msgid "guestfs_blockdev_getss"
7343 msgstr ""
7344
7345 #. type: verbatim
7346 #: ../src/guestfs-actions.pod:730
7347 #, no-wrap
7348 msgid ""
7349 " int\n"
7350 " guestfs_blockdev_getss (guestfs_h *g,\n"
7351 "                         const char *device);\n"
7352 "\n"
7353 msgstr ""
7354
7355 #. type: textblock
7356 #: ../src/guestfs-actions.pod:734 ../fish/guestfish-actions.pod:489
7357 msgid ""
7358 "This returns the size of sectors on a block device.  Usually 512, but can be "
7359 "larger for modern devices."
7360 msgstr ""
7361
7362 #. type: textblock
7363 #: ../src/guestfs-actions.pod:737
7364 msgid ""
7365 "(Note, this is not the size in sectors, use C<guestfs_blockdev_getsz> for "
7366 "that)."
7367 msgstr ""
7368
7369 #. type: =head2
7370 #: ../src/guestfs-actions.pod:746
7371 msgid "guestfs_blockdev_getsz"
7372 msgstr ""
7373
7374 #. type: verbatim
7375 #: ../src/guestfs-actions.pod:748
7376 #, no-wrap
7377 msgid ""
7378 " int64_t\n"
7379 " guestfs_blockdev_getsz (guestfs_h *g,\n"
7380 "                         const char *device);\n"
7381 "\n"
7382 msgstr ""
7383
7384 #. type: textblock
7385 #: ../src/guestfs-actions.pod:752 ../fish/guestfish-actions.pod:501
7386 msgid ""
7387 "This returns the size of the device in units of 512-byte sectors (even if "
7388 "the sectorsize isn't 512 bytes ... weird)."
7389 msgstr ""
7390
7391 #. type: textblock
7392 #: ../src/guestfs-actions.pod:755
7393 msgid ""
7394 "See also C<guestfs_blockdev_getss> for the real sector size of the device, "
7395 "and C<guestfs_blockdev_getsize64> for the more useful I<size in bytes>."
7396 msgstr ""
7397
7398 #. type: =head2
7399 #: ../src/guestfs-actions.pod:765
7400 msgid "guestfs_blockdev_rereadpt"
7401 msgstr ""
7402
7403 #. type: verbatim
7404 #: ../src/guestfs-actions.pod:767
7405 #, no-wrap
7406 msgid ""
7407 " int\n"
7408 " guestfs_blockdev_rereadpt (guestfs_h *g,\n"
7409 "                            const char *device);\n"
7410 "\n"
7411 msgstr ""
7412
7413 #. type: textblock
7414 #: ../src/guestfs-actions.pod:771 ../fish/guestfish-actions.pod:514
7415 msgid "Reread the partition table on C<device>."
7416 msgstr ""
7417
7418 #. type: =head2
7419 #: ../src/guestfs-actions.pod:779
7420 msgid "guestfs_blockdev_setbsz"
7421 msgstr ""
7422
7423 #. type: verbatim
7424 #: ../src/guestfs-actions.pod:781
7425 #, no-wrap
7426 msgid ""
7427 " int\n"
7428 " guestfs_blockdev_setbsz (guestfs_h *g,\n"
7429 "                          const char *device,\n"
7430 "                          int blocksize);\n"
7431 "\n"
7432 msgstr ""
7433
7434 #. type: textblock
7435 #: ../src/guestfs-actions.pod:786 ../fish/guestfish-actions.pod:522
7436 msgid "This sets the block size of a device."
7437 msgstr ""
7438
7439 #. type: =head2
7440 #: ../src/guestfs-actions.pod:797
7441 msgid "guestfs_blockdev_setro"
7442 msgstr ""
7443
7444 #. type: verbatim
7445 #: ../src/guestfs-actions.pod:799
7446 #, no-wrap
7447 msgid ""
7448 " int\n"
7449 " guestfs_blockdev_setro (guestfs_h *g,\n"
7450 "                         const char *device);\n"
7451 "\n"
7452 msgstr ""
7453
7454 #. type: textblock
7455 #: ../src/guestfs-actions.pod:803 ../fish/guestfish-actions.pod:533
7456 msgid "Sets the block device named C<device> to read-only."
7457 msgstr ""
7458
7459 #. type: =head2
7460 #: ../src/guestfs-actions.pod:811
7461 msgid "guestfs_blockdev_setrw"
7462 msgstr ""
7463
7464 #. type: verbatim
7465 #: ../src/guestfs-actions.pod:813
7466 #, no-wrap
7467 msgid ""
7468 " int\n"
7469 " guestfs_blockdev_setrw (guestfs_h *g,\n"
7470 "                         const char *device);\n"
7471 "\n"
7472 msgstr ""
7473
7474 #. type: textblock
7475 #: ../src/guestfs-actions.pod:817 ../fish/guestfish-actions.pod:541
7476 msgid "Sets the block device named C<device> to read-write."
7477 msgstr ""
7478
7479 #. type: =head2
7480 #: ../src/guestfs-actions.pod:825
7481 msgid "guestfs_case_sensitive_path"
7482 msgstr ""
7483
7484 #. type: verbatim
7485 #: ../src/guestfs-actions.pod:827
7486 #, no-wrap
7487 msgid ""
7488 " char *\n"
7489 " guestfs_case_sensitive_path (guestfs_h *g,\n"
7490 "                              const char *path);\n"
7491 "\n"
7492 msgstr ""
7493
7494 #. type: textblock
7495 #: ../src/guestfs-actions.pod:831 ../fish/guestfish-actions.pod:549
7496 msgid ""
7497 "This can be used to resolve case insensitive paths on a filesystem which is "
7498 "case sensitive.  The use case is to resolve paths which you have read from "
7499 "Windows configuration files or the Windows Registry, to the true path."
7500 msgstr ""
7501
7502 #. type: textblock
7503 #: ../src/guestfs-actions.pod:836 ../fish/guestfish-actions.pod:554
7504 msgid ""
7505 "The command handles a peculiarity of the Linux ntfs-3g filesystem driver "
7506 "(and probably others), which is that although the underlying filesystem is "
7507 "case-insensitive, the driver exports the filesystem to Linux as case-"
7508 "sensitive."
7509 msgstr ""
7510
7511 #. type: textblock
7512 #: ../src/guestfs-actions.pod:841 ../fish/guestfish-actions.pod:559
7513 msgid ""
7514 "One consequence of this is that special directories such as C<c:\\windows> "
7515 "may appear as C</WINDOWS> or C</windows> (or other things) depending on the "
7516 "precise details of how they were created.  In Windows itself this would not "
7517 "be a problem."
7518 msgstr ""
7519
7520 #. type: textblock
7521 #: ../src/guestfs-actions.pod:847 ../fish/guestfish-actions.pod:565
7522 msgid ""
7523 "Bug or feature? You decide: L<http://www.tuxera.com/community/ntfs-3g-faq/"
7524 "#posixfilenames1>"
7525 msgstr ""
7526
7527 #. type: textblock
7528 #: ../src/guestfs-actions.pod:850 ../fish/guestfish-actions.pod:568
7529 msgid ""
7530 "This function resolves the true case of each element in the path and returns "
7531 "the case-sensitive path."
7532 msgstr ""
7533
7534 #. type: textblock
7535 #: ../src/guestfs-actions.pod:853
7536 msgid ""
7537 "Thus C<guestfs_case_sensitive_path> (\"/Windows/System32\")  might return C<"
7538 "\"/WINDOWS/system32\"> (the exact return value would depend on details of "
7539 "how the directories were originally created under Windows)."
7540 msgstr ""
7541
7542 #. type: textblock
7543 #: ../src/guestfs-actions.pod:858 ../fish/guestfish-actions.pod:576
7544 msgid "I<Note>: This function does not handle drive names, backslashes etc."
7545 msgstr ""
7546
7547 #. type: textblock
7548 #: ../src/guestfs-actions.pod:861
7549 msgid "See also C<guestfs_realpath>."
7550 msgstr ""
7551
7552 #. type: textblock
7553 #: ../src/guestfs-actions.pod:866 ../src/guestfs-actions.pod:6976
7554 msgid "(Added in 1.0.75)"
7555 msgstr ""
7556
7557 #. type: =head2
7558 #: ../src/guestfs-actions.pod:868
7559 msgid "guestfs_cat"
7560 msgstr ""
7561
7562 #. type: verbatim
7563 #: ../src/guestfs-actions.pod:870
7564 #, no-wrap
7565 msgid ""
7566 " char *\n"
7567 " guestfs_cat (guestfs_h *g,\n"
7568 "              const char *path);\n"
7569 "\n"
7570 msgstr ""
7571
7572 #. type: textblock
7573 #: ../src/guestfs-actions.pod:874 ../src/guestfs-actions.pod:5472
7574 #: ../fish/guestfish-actions.pod:585 ../fish/guestfish-actions.pod:3672
7575 msgid "Return the contents of the file named C<path>."
7576 msgstr ""
7577
7578 #. type: textblock
7579 #: ../src/guestfs-actions.pod:876
7580 msgid ""
7581 "Note that this function cannot correctly handle binary files (specifically, "
7582 "files containing C<\\0> character which is treated as end of string).  For "
7583 "those you need to use the C<guestfs_read_file> or C<guestfs_download> "
7584 "functions which have a more complex interface."
7585 msgstr ""
7586
7587 #. type: textblock
7588 #: ../src/guestfs-actions.pod:884 ../src/guestfs-actions.pod:1063
7589 #: ../src/guestfs-actions.pod:1083 ../src/guestfs-actions.pod:1379
7590 #: ../src/guestfs-actions.pod:1398 ../src/guestfs-actions.pod:1501
7591 #: ../src/guestfs-actions.pod:1520 ../src/guestfs-actions.pod:1769
7592 #: ../src/guestfs-actions.pod:2227 ../src/guestfs-actions.pod:2246
7593 #: ../src/guestfs-actions.pod:2289 ../src/guestfs-actions.pod:2313
7594 #: ../src/guestfs-actions.pod:2330 ../src/guestfs-actions.pod:2359
7595 #: ../src/guestfs-actions.pod:5254 ../src/guestfs-actions.pod:5280
7596 #: ../src/guestfs-actions.pod:5411 ../src/guestfs-actions.pod:5437
7597 #: ../src/guestfs-actions.pod:5461 ../src/guestfs-actions.pod:6361
7598 #: ../src/guestfs-actions.pod:6416 ../src/guestfs-actions.pod:6562
7599 #: ../src/guestfs-actions.pod:6586 ../src/guestfs-actions.pod:7248
7600 #: ../src/guestfs-actions.pod:7274 ../src/guestfs-actions.pod:7300
7601 #: ../src/guestfs-actions.pod:7319 ../src/guestfs-actions.pod:7404
7602 #: ../src/guestfs-actions.pod:7423 ../src/guestfs-actions.pod:7469
7603 #: ../src/guestfs-actions.pod:7488 ../fish/guestfish-actions.pod:592
7604 #: ../fish/guestfish-actions.pod:727 ../fish/guestfish-actions.pod:739
7605 #: ../fish/guestfish-actions.pod:915 ../fish/guestfish-actions.pod:925
7606 #: ../fish/guestfish-actions.pod:992 ../fish/guestfish-actions.pod:1002
7607 #: ../fish/guestfish-actions.pod:1197 ../fish/guestfish-actions.pod:1498
7608 #: ../fish/guestfish-actions.pod:1508 ../fish/guestfish-actions.pod:1536
7609 #: ../fish/guestfish-actions.pod:1551 ../fish/guestfish-actions.pod:1561
7610 #: ../fish/guestfish-actions.pod:1580 ../fish/guestfish-actions.pod:3542
7611 #: ../fish/guestfish-actions.pod:3557 ../fish/guestfish-actions.pod:3633
7612 #: ../fish/guestfish-actions.pod:3650 ../fish/guestfish-actions.pod:3665
7613 #: ../fish/guestfish-actions.pod:4291 ../fish/guestfish-actions.pod:4337
7614 #: ../fish/guestfish-actions.pod:4422 ../fish/guestfish-actions.pod:4437
7615 #: ../fish/guestfish-actions.pod:4847 ../fish/guestfish-actions.pod:4865
7616 #: ../fish/guestfish-actions.pod:4882 ../fish/guestfish-actions.pod:4892
7617 #: ../fish/guestfish-actions.pod:4940 ../fish/guestfish-actions.pod:4950
7618 #: ../fish/guestfish-actions.pod:4979 ../fish/guestfish-actions.pod:4989
7619 msgid ""
7620 "Because of the message protocol, there is a transfer limit of somewhere "
7621 "between 2MB and 4MB.  See L<guestfs(3)/PROTOCOL LIMITS>."
7622 msgstr ""
7623
7624 #. type: textblock
7625 #: ../src/guestfs-actions.pod:887 ../src/guestfs-actions.pod:3570
7626 #: ../src/guestfs-actions.pod:3632 ../src/guestfs-actions.pod:3649
7627 #: ../src/guestfs-actions.pod:3737 ../src/guestfs-actions.pod:4142
7628 #: ../src/guestfs-actions.pod:4156 ../src/guestfs-actions.pod:5360
7629 #: ../src/guestfs-actions.pod:5374 ../src/guestfs-actions.pod:7135
7630 #: ../src/guestfs-actions.pod:7149
7631 msgid "(Added in 0.4)"
7632 msgstr ""
7633
7634 #. type: =head2
7635 #: ../src/guestfs-actions.pod:889
7636 msgid "guestfs_checksum"
7637 msgstr ""
7638
7639 #. type: verbatim
7640 #: ../src/guestfs-actions.pod:891
7641 #, no-wrap
7642 msgid ""
7643 " char *\n"
7644 " guestfs_checksum (guestfs_h *g,\n"
7645 "                   const char *csumtype,\n"
7646 "                   const char *path);\n"
7647 "\n"
7648 msgstr ""
7649
7650 #. type: textblock
7651 #: ../src/guestfs-actions.pod:896 ../fish/guestfish-actions.pod:599
7652 msgid ""
7653 "This call computes the MD5, SHAx or CRC checksum of the file named C<path>."
7654 msgstr ""
7655
7656 #. type: textblock
7657 #: ../src/guestfs-actions.pod:899 ../fish/guestfish-actions.pod:602
7658 msgid ""
7659 "The type of checksum to compute is given by the C<csumtype> parameter which "
7660 "must have one of the following values:"
7661 msgstr ""
7662
7663 #. type: =item
7664 #: ../src/guestfs-actions.pod:904 ../fish/guestfish-actions.pod:607
7665 msgid "C<crc>"
7666 msgstr "C<crc>"
7667
7668 #. type: textblock
7669 #: ../src/guestfs-actions.pod:906 ../fish/guestfish-actions.pod:609
7670 msgid ""
7671 "Compute the cyclic redundancy check (CRC) specified by POSIX for the "
7672 "C<cksum> command."
7673 msgstr ""
7674
7675 #. type: =item
7676 #: ../src/guestfs-actions.pod:909 ../fish/guestfish-actions.pod:612
7677 msgid "C<md5>"
7678 msgstr "C<md5>"
7679
7680 #. type: textblock
7681 #: ../src/guestfs-actions.pod:911 ../fish/guestfish-actions.pod:614
7682 msgid "Compute the MD5 hash (using the C<md5sum> program)."
7683 msgstr ""
7684
7685 #. type: =item
7686 #: ../src/guestfs-actions.pod:913 ../fish/guestfish-actions.pod:616
7687 msgid "C<sha1>"
7688 msgstr "C<sha1>"
7689
7690 #. type: textblock
7691 #: ../src/guestfs-actions.pod:915 ../fish/guestfish-actions.pod:618
7692 msgid "Compute the SHA1 hash (using the C<sha1sum> program)."
7693 msgstr ""
7694
7695 #. type: =item
7696 #: ../src/guestfs-actions.pod:917 ../fish/guestfish-actions.pod:620
7697 msgid "C<sha224>"
7698 msgstr "C<sha224>"
7699
7700 #. type: textblock
7701 #: ../src/guestfs-actions.pod:919 ../fish/guestfish-actions.pod:622
7702 msgid "Compute the SHA224 hash (using the C<sha224sum> program)."
7703 msgstr ""
7704
7705 #. type: =item
7706 #: ../src/guestfs-actions.pod:921 ../fish/guestfish-actions.pod:624
7707 msgid "C<sha256>"
7708 msgstr "C<sha256>"
7709
7710 #. type: textblock
7711 #: ../src/guestfs-actions.pod:923 ../fish/guestfish-actions.pod:626
7712 msgid "Compute the SHA256 hash (using the C<sha256sum> program)."
7713 msgstr ""
7714
7715 #. type: =item
7716 #: ../src/guestfs-actions.pod:925 ../fish/guestfish-actions.pod:628
7717 msgid "C<sha384>"
7718 msgstr "C<sha384>"
7719
7720 #. type: textblock
7721 #: ../src/guestfs-actions.pod:927 ../fish/guestfish-actions.pod:630
7722 msgid "Compute the SHA384 hash (using the C<sha384sum> program)."
7723 msgstr ""
7724
7725 #. type: =item
7726 #: ../src/guestfs-actions.pod:929 ../fish/guestfish-actions.pod:632
7727 msgid "C<sha512>"
7728 msgstr "C<sha512>"
7729
7730 #. type: textblock
7731 #: ../src/guestfs-actions.pod:931 ../fish/guestfish-actions.pod:634
7732 msgid "Compute the SHA512 hash (using the C<sha512sum> program)."
7733 msgstr ""
7734
7735 #. type: textblock
7736 #: ../src/guestfs-actions.pod:935 ../fish/guestfish-actions.pod:638
7737 msgid "The checksum is returned as a printable string."
7738 msgstr ""
7739
7740 #. type: textblock
7741 #: ../src/guestfs-actions.pod:937
7742 msgid "To get the checksum for a device, use C<guestfs_checksum_device>."
7743 msgstr ""
7744
7745 #. type: textblock
7746 #: ../src/guestfs-actions.pod:939
7747 msgid "To get the checksums for many files, use C<guestfs_checksums_out>."
7748 msgstr ""
7749
7750 #. type: textblock
7751 #: ../src/guestfs-actions.pod:944 ../src/guestfs-actions.pod:1252
7752 #: ../src/guestfs-actions.pod:2089 ../src/guestfs-actions.pod:3309
7753 #: ../src/guestfs-actions.pod:3338 ../src/guestfs-actions.pod:3399
7754 #: ../src/guestfs-actions.pod:3426 ../src/guestfs-actions.pod:6832
7755 msgid "(Added in 1.0.2)"
7756 msgstr ""
7757
7758 #. type: =head2
7759 #: ../src/guestfs-actions.pod:946
7760 msgid "guestfs_checksum_device"
7761 msgstr ""
7762
7763 #. type: verbatim
7764 #: ../src/guestfs-actions.pod:948
7765 #, no-wrap
7766 msgid ""
7767 " char *\n"
7768 " guestfs_checksum_device (guestfs_h *g,\n"
7769 "                          const char *csumtype,\n"
7770 "                          const char *device);\n"
7771 "\n"
7772 msgstr ""
7773
7774 #. type: textblock
7775 #: ../src/guestfs-actions.pod:953
7776 msgid ""
7777 "This call computes the MD5, SHAx or CRC checksum of the contents of the "
7778 "device named C<device>.  For the types of checksums supported see the "
7779 "C<guestfs_checksum> command."
7780 msgstr ""
7781
7782 #. type: textblock
7783 #: ../src/guestfs-actions.pod:960 ../src/guestfs-actions.pod:4891
7784 #: ../src/guestfs-actions.pod:4950 ../src/guestfs-actions.pod:4987
7785 #: ../src/guestfs-actions.pod:5005 ../src/guestfs-actions.pod:5181
7786 #: ../src/guestfs-actions.pod:6741 ../src/guestfs-actions.pod:6755
7787 #: ../src/guestfs-actions.pod:7161
7788 msgid "(Added in 1.3.2)"
7789 msgstr ""
7790
7791 #. type: =head2
7792 #: ../src/guestfs-actions.pod:962
7793 msgid "guestfs_checksums_out"
7794 msgstr ""
7795
7796 #. type: verbatim
7797 #: ../src/guestfs-actions.pod:964
7798 #, no-wrap
7799 msgid ""
7800 " int\n"
7801 " guestfs_checksums_out (guestfs_h *g,\n"
7802 "                        const char *csumtype,\n"
7803 "                        const char *directory,\n"
7804 "                        const char *sumsfile);\n"
7805 "\n"
7806 msgstr ""
7807
7808 #. type: textblock
7809 #: ../src/guestfs-actions.pod:970 ../fish/guestfish-actions.pod:656
7810 msgid ""
7811 "This command computes the checksums of all regular files in C<directory> and "
7812 "then emits a list of those checksums to the local output file C<sumsfile>."
7813 msgstr ""
7814
7815 #. type: textblock
7816 #: ../src/guestfs-actions.pod:974 ../fish/guestfish-actions.pod:660
7817 msgid ""
7818 "This can be used for verifying the integrity of a virtual machine.  However "
7819 "to be properly secure you should pay attention to the output of the checksum "
7820 "command (it uses the ones from GNU coreutils).  In particular when the "
7821 "filename is not printable, coreutils uses a special backslash syntax.  For "
7822 "more information, see the GNU coreutils info file."
7823 msgstr ""
7824
7825 #. type: textblock
7826 #: ../src/guestfs-actions.pod:984
7827 msgid "(Added in 1.3.7)"
7828 msgstr ""
7829
7830 #. type: =head2
7831 #: ../src/guestfs-actions.pod:986
7832 msgid "guestfs_chmod"
7833 msgstr ""
7834
7835 #. type: verbatim
7836 #: ../src/guestfs-actions.pod:988
7837 #, no-wrap
7838 msgid ""
7839 " int\n"
7840 " guestfs_chmod (guestfs_h *g,\n"
7841 "                int mode,\n"
7842 "                const char *path);\n"
7843 "\n"
7844 msgstr ""
7845
7846 #. type: textblock
7847 #: ../src/guestfs-actions.pod:993 ../fish/guestfish-actions.pod:674
7848 msgid ""
7849 "Change the mode (permissions) of C<path> to C<mode>.  Only numeric modes are "
7850 "supported."
7851 msgstr ""
7852
7853 #. type: textblock
7854 #: ../src/guestfs-actions.pod:996 ../fish/guestfish-actions.pod:677
7855 msgid ""
7856 "I<Note>: When using this command from guestfish, C<mode> by default would be "
7857 "decimal, unless you prefix it with C<0> to get octal, ie. use C<0700> not "
7858 "C<700>."
7859 msgstr ""
7860
7861 #. type: textblock
7862 #: ../src/guestfs-actions.pod:1000 ../src/guestfs-actions.pod:4393
7863 #: ../src/guestfs-actions.pod:4590 ../src/guestfs-actions.pod:4609
7864 #: ../src/guestfs-actions.pod:4628 ../fish/guestfish-actions.pod:681
7865 #: ../fish/guestfish-actions.pod:2988 ../fish/guestfish-actions.pod:3117
7866 #: ../fish/guestfish-actions.pod:3127 ../fish/guestfish-actions.pod:3137
7867 msgid "The mode actually set is affected by the umask."
7868 msgstr ""
7869
7870 #. type: =head2
7871 #: ../src/guestfs-actions.pod:1006
7872 msgid "guestfs_chown"
7873 msgstr ""
7874
7875 #. type: verbatim
7876 #: ../src/guestfs-actions.pod:1008
7877 #, no-wrap
7878 msgid ""
7879 " int\n"
7880 " guestfs_chown (guestfs_h *g,\n"
7881 "                int owner,\n"
7882 "                int group,\n"
7883 "                const char *path);\n"
7884 "\n"
7885 msgstr ""
7886
7887 #. type: textblock
7888 #: ../src/guestfs-actions.pod:1014 ../fish/guestfish-actions.pod:687
7889 msgid "Change the file owner to C<owner> and group to C<group>."
7890 msgstr ""
7891
7892 #. type: textblock
7893 #: ../src/guestfs-actions.pod:1016 ../src/guestfs-actions.pod:3501
7894 #: ../fish/guestfish-actions.pod:689 ../fish/guestfish-actions.pod:2446
7895 msgid ""
7896 "Only numeric uid and gid are supported.  If you want to use names, you will "
7897 "need to locate and parse the password file yourself (Augeas support makes "
7898 "this relatively easy)."
7899 msgstr ""
7900
7901 #. type: =head2
7902 #: ../src/guestfs-actions.pod:1024
7903 msgid "guestfs_command"
7904 msgstr ""
7905
7906 #. type: verbatim
7907 #: ../src/guestfs-actions.pod:1026
7908 #, no-wrap
7909 msgid ""
7910 " char *\n"
7911 " guestfs_command (guestfs_h *g,\n"
7912 "                  char *const *arguments);\n"
7913 "\n"
7914 msgstr ""
7915
7916 #. type: textblock
7917 #: ../src/guestfs-actions.pod:1030 ../fish/guestfish-actions.pod:697
7918 msgid ""
7919 "This call runs a command from the guest filesystem.  The filesystem must be "
7920 "mounted, and must contain a compatible operating system (ie. something "
7921 "Linux, with the same or compatible processor architecture)."
7922 msgstr ""
7923
7924 #. type: textblock
7925 #: ../src/guestfs-actions.pod:1035
7926 msgid ""
7927 "The single parameter is an argv-style list of arguments.  The first element "
7928 "is the name of the program to run.  Subsequent elements are parameters.  The "
7929 "list must be non-empty (ie. must contain a program name).  Note that the "
7930 "command runs directly, and is I<not> invoked via the shell (see "
7931 "C<guestfs_sh>)."
7932 msgstr ""
7933
7934 #. type: textblock
7935 #: ../src/guestfs-actions.pod:1042 ../fish/guestfish-actions.pod:709
7936 msgid "The return value is anything printed to I<stdout> by the command."
7937 msgstr ""
7938
7939 #. type: textblock
7940 #: ../src/guestfs-actions.pod:1045 ../fish/guestfish-actions.pod:712
7941 msgid ""
7942 "If the command returns a non-zero exit status, then this function returns an "
7943 "error message.  The error message string is the content of I<stderr> from "
7944 "the command."
7945 msgstr ""
7946
7947 #. type: textblock
7948 #: ../src/guestfs-actions.pod:1049 ../fish/guestfish-actions.pod:716
7949 msgid ""
7950 "The C<$PATH> environment variable will contain at least C</usr/bin> and C</"
7951 "bin>.  If you require a program from another location, you should provide "
7952 "the full path in the first parameter."
7953 msgstr ""
7954
7955 #. type: textblock
7956 #: ../src/guestfs-actions.pod:1054 ../fish/guestfish-actions.pod:721
7957 msgid ""
7958 "Shared libraries and data files required by the program must be available on "
7959 "filesystems which are mounted in the correct places.  It is the caller's "
7960 "responsibility to ensure all filesystems that are needed are mounted at the "
7961 "right locations."
7962 msgstr ""
7963
7964 #. type: textblock
7965 #: ../src/guestfs-actions.pod:1066 ../src/guestfs-actions.pod:1086
7966 #: ../src/guestfs-actions.pod:1554
7967 msgid "(Added in 0.9.1)"
7968 msgstr ""
7969
7970 #. type: =head2
7971 #: ../src/guestfs-actions.pod:1068
7972 msgid "guestfs_command_lines"
7973 msgstr ""
7974
7975 #. type: verbatim
7976 #: ../src/guestfs-actions.pod:1070
7977 #, no-wrap
7978 msgid ""
7979 " char **\n"
7980 " guestfs_command_lines (guestfs_h *g,\n"
7981 "                        char *const *arguments);\n"
7982 "\n"
7983 msgstr ""
7984
7985 #. type: textblock
7986 #: ../src/guestfs-actions.pod:1074
7987 msgid ""
7988 "This is the same as C<guestfs_command>, but splits the result into a list of "
7989 "lines."
7990 msgstr ""
7991
7992 #. type: textblock
7993 #: ../src/guestfs-actions.pod:1077
7994 msgid "See also: C<guestfs_sh_lines>"
7995 msgstr ""
7996
7997 #. type: =head2
7998 #: ../src/guestfs-actions.pod:1088
7999 msgid "guestfs_config"
8000 msgstr ""
8001
8002 #. type: verbatim
8003 #: ../src/guestfs-actions.pod:1090
8004 #, no-wrap
8005 msgid ""
8006 " int\n"
8007 " guestfs_config (guestfs_h *g,\n"
8008 "                 const char *qemuparam,\n"
8009 "                 const char *qemuvalue);\n"
8010 "\n"
8011 msgstr ""
8012
8013 #. type: textblock
8014 #: ../src/guestfs-actions.pod:1095 ../fish/guestfish-actions.pod:746
8015 msgid ""
8016 "This can be used to add arbitrary qemu command line parameters of the form "
8017 "I<-param value>.  Actually it's not quite arbitrary - we prevent you from "
8018 "setting some parameters which would interfere with parameters that we use."
8019 msgstr ""
8020
8021 #. type: textblock
8022 #: ../src/guestfs-actions.pod:1100 ../fish/guestfish-actions.pod:751
8023 msgid "The first character of C<param> string must be a C<-> (dash)."
8024 msgstr ""
8025
8026 #. type: textblock
8027 #: ../src/guestfs-actions.pod:1102 ../fish/guestfish-actions.pod:753
8028 msgid "C<value> can be NULL."
8029 msgstr ""
8030
8031 #. type: =head2
8032 #: ../src/guestfs-actions.pod:1108
8033 msgid "guestfs_copy_size"
8034 msgstr ""
8035
8036 #. type: verbatim
8037 #: ../src/guestfs-actions.pod:1110
8038 #, no-wrap
8039 msgid ""
8040 " int\n"
8041 " guestfs_copy_size (guestfs_h *g,\n"
8042 "                    const char *src,\n"
8043 "                    const char *dest,\n"
8044 "                    int64_t size);\n"
8045 "\n"
8046 msgstr ""
8047
8048 #. type: textblock
8049 #: ../src/guestfs-actions.pod:1116 ../fish/guestfish-actions.pod:759
8050 msgid ""
8051 "This command copies exactly C<size> bytes from one source device or file "
8052 "C<src> to another destination device or file C<dest>."
8053 msgstr ""
8054
8055 #. type: textblock
8056 #: ../src/guestfs-actions.pod:1119 ../fish/guestfish-actions.pod:762
8057 msgid ""
8058 "Note this will fail if the source is too short or if the destination is not "
8059 "large enough."
8060 msgstr ""
8061
8062 #. type: textblock
8063 #: ../src/guestfs-actions.pod:1124 ../src/guestfs-actions.pod:1247
8064 #: ../src/guestfs-actions.pod:1278 ../src/guestfs-actions.pod:1323
8065 #: ../src/guestfs-actions.pod:1703 ../src/guestfs-actions.pod:1725
8066 #: ../src/guestfs-actions.pod:3482 ../src/guestfs-actions.pod:6827
8067 #: ../src/guestfs-actions.pod:6861 ../src/guestfs-actions.pod:7340
8068 #: ../src/guestfs-actions.pod:7359
8069 msgid ""
8070 "This long-running command can generate progress notification messages so "
8071 "that the caller can display a progress bar or indicator.  To receive these "
8072 "messages, the caller must register a progress event callback.  See L<guestfs"
8073 "(3)/GUESTFS_EVENT_PROGRESS>."
8074 msgstr ""
8075
8076 #. type: textblock
8077 #: ../src/guestfs-actions.pod:1129 ../src/guestfs-actions.pod:4169
8078 #: ../src/guestfs-actions.pod:5387 ../src/guestfs-actions.pod:7068
8079 #: ../src/guestfs-actions.pod:7088 ../src/guestfs-actions.pod:7174
8080 msgid "(Added in 1.0.87)"
8081 msgstr ""
8082
8083 #. type: =head2
8084 #: ../src/guestfs-actions.pod:1131
8085 msgid "guestfs_cp"
8086 msgstr ""
8087
8088 #. type: verbatim
8089 #: ../src/guestfs-actions.pod:1133
8090 #, no-wrap
8091 msgid ""
8092 " int\n"
8093 " guestfs_cp (guestfs_h *g,\n"
8094 "             const char *src,\n"
8095 "             const char *dest);\n"
8096 "\n"
8097 msgstr ""
8098
8099 #. type: textblock
8100 #: ../src/guestfs-actions.pod:1138 ../fish/guestfish-actions.pod:769
8101 msgid ""
8102 "This copies a file from C<src> to C<dest> where C<dest> is either a "
8103 "destination filename or destination directory."
8104 msgstr ""
8105
8106 #. type: textblock
8107 #: ../src/guestfs-actions.pod:1143 ../src/guestfs-actions.pod:1157
8108 #: ../src/guestfs-actions.pod:1229 ../src/guestfs-actions.pod:1303
8109 #: ../src/guestfs-actions.pod:1417 ../src/guestfs-actions.pod:4854
8110 #: ../src/guestfs-actions.pod:5231
8111 msgid "(Added in 1.0.18)"
8112 msgstr ""
8113
8114 #. type: =head2
8115 #: ../src/guestfs-actions.pod:1145
8116 msgid "guestfs_cp_a"
8117 msgstr ""
8118
8119 #. type: verbatim
8120 #: ../src/guestfs-actions.pod:1147
8121 #, no-wrap
8122 msgid ""
8123 " int\n"
8124 " guestfs_cp_a (guestfs_h *g,\n"
8125 "               const char *src,\n"
8126 "               const char *dest);\n"
8127 "\n"
8128 msgstr ""
8129
8130 #. type: textblock
8131 #: ../src/guestfs-actions.pod:1152 ../fish/guestfish-actions.pod:776
8132 msgid ""
8133 "This copies a file or directory from C<src> to C<dest> recursively using the "
8134 "C<cp -a> command."
8135 msgstr ""
8136
8137 #. type: =head2
8138 #: ../src/guestfs-actions.pod:1159
8139 msgid "guestfs_dd"
8140 msgstr ""
8141
8142 #. type: verbatim
8143 #: ../src/guestfs-actions.pod:1161
8144 #, no-wrap
8145 msgid ""
8146 " int\n"
8147 " guestfs_dd (guestfs_h *g,\n"
8148 "             const char *src,\n"
8149 "             const char *dest);\n"
8150 "\n"
8151 msgstr ""
8152
8153 #. type: textblock
8154 #: ../src/guestfs-actions.pod:1166 ../fish/guestfish-actions.pod:783
8155 msgid ""
8156 "This command copies from one source device or file C<src> to another "
8157 "destination device or file C<dest>.  Normally you would use this to copy to "
8158 "or from a device or partition, for example to duplicate a filesystem."
8159 msgstr ""
8160
8161 #. type: textblock
8162 #: ../src/guestfs-actions.pod:1171
8163 msgid ""
8164 "If the destination is a device, it must be as large or larger than the "
8165 "source file or device, otherwise the copy will fail.  This command cannot do "
8166 "partial copies (see C<guestfs_copy_size>)."
8167 msgstr ""
8168
8169 #. type: =head2
8170 #: ../src/guestfs-actions.pod:1179
8171 msgid "guestfs_df"
8172 msgstr ""
8173
8174 #. type: verbatim
8175 #: ../src/guestfs-actions.pod:1181
8176 #, no-wrap
8177 msgid ""
8178 " char *\n"
8179 " guestfs_df (guestfs_h *g);\n"
8180 "\n"
8181 msgstr ""
8182
8183 #. type: textblock
8184 #: ../src/guestfs-actions.pod:1184 ../fish/guestfish-actions.pod:796
8185 msgid "This command runs the C<df> command to report disk space used."
8186 msgstr ""
8187
8188 #. type: textblock
8189 #: ../src/guestfs-actions.pod:1186 ../src/guestfs-actions.pod:1203
8190 msgid ""
8191 "This command is mostly useful for interactive sessions.  It is I<not> "
8192 "intended that you try to parse the output string.  Use C<guestfs_statvfs> "
8193 "from programs."
8194 msgstr ""
8195
8196 #. type: textblock
8197 #: ../src/guestfs-actions.pod:1193 ../src/guestfs-actions.pod:1210
8198 #: ../src/guestfs-actions.pod:1328 ../src/guestfs-actions.pod:2292
8199 #: ../src/guestfs-actions.pod:2316 ../src/guestfs-actions.pod:2384
8200 #: ../src/guestfs-actions.pod:4279 ../src/guestfs-actions.pod:4754
8201 #: ../src/guestfs-actions.pod:6565 ../src/guestfs-actions.pod:6589
8202 #: ../src/guestfs-actions.pod:7207 ../src/guestfs-actions.pod:7220
8203 #: ../src/guestfs-actions.pod:7233
8204 msgid "(Added in 1.0.54)"
8205 msgstr ""
8206
8207 #. type: =head2
8208 #: ../src/guestfs-actions.pod:1195
8209 msgid "guestfs_df_h"
8210 msgstr ""
8211
8212 #. type: verbatim
8213 #: ../src/guestfs-actions.pod:1197
8214 #, no-wrap
8215 msgid ""
8216 " char *\n"
8217 " guestfs_df_h (guestfs_h *g);\n"
8218 "\n"
8219 msgstr ""
8220
8221 #. type: textblock
8222 #: ../src/guestfs-actions.pod:1200 ../fish/guestfish-actions.pod:806
8223 msgid ""
8224 "This command runs the C<df -h> command to report disk space used in human-"
8225 "readable format."
8226 msgstr ""
8227
8228 #. type: =head2
8229 #: ../src/guestfs-actions.pod:1212
8230 msgid "guestfs_dmesg"
8231 msgstr ""
8232
8233 #. type: verbatim
8234 #: ../src/guestfs-actions.pod:1214
8235 #, no-wrap
8236 msgid ""
8237 " char *\n"
8238 " guestfs_dmesg (guestfs_h *g);\n"
8239 "\n"
8240 msgstr ""
8241
8242 #. type: textblock
8243 #: ../src/guestfs-actions.pod:1217 ../fish/guestfish-actions.pod:817
8244 msgid ""
8245 "This returns the kernel messages (C<dmesg> output) from the guest kernel.  "
8246 "This is sometimes useful for extended debugging of problems."
8247 msgstr ""
8248
8249 #. type: textblock
8250 #: ../src/guestfs-actions.pod:1221
8251 msgid ""
8252 "Another way to get the same information is to enable verbose messages with "
8253 "C<guestfs_set_verbose> or by setting the environment variable "
8254 "C<LIBGUESTFS_DEBUG=1> before running the program."
8255 msgstr ""
8256
8257 #. type: =head2
8258 #: ../src/guestfs-actions.pod:1231
8259 msgid "guestfs_download"
8260 msgstr ""
8261
8262 #. type: verbatim
8263 #: ../src/guestfs-actions.pod:1233
8264 #, no-wrap
8265 msgid ""
8266 " int\n"
8267 " guestfs_download (guestfs_h *g,\n"
8268 "                   const char *remotefilename,\n"
8269 "                   const char *filename);\n"
8270 "\n"
8271 msgstr ""
8272
8273 #. type: textblock
8274 #: ../src/guestfs-actions.pod:1238 ../src/guestfs-actions.pod:1263
8275 #: ../fish/guestfish-actions.pod:830 ../fish/guestfish-actions.pod:843
8276 msgid ""
8277 "Download file C<remotefilename> and save it as C<filename> on the local "
8278 "machine."
8279 msgstr ""
8280
8281 #. type: textblock
8282 #: ../src/guestfs-actions.pod:1241 ../src/guestfs-actions.pod:6821
8283 #: ../fish/guestfish-actions.pod:833 ../fish/guestfish-actions.pod:4595
8284 msgid "C<filename> can also be a named pipe."
8285 msgstr ""
8286
8287 #. type: textblock
8288 #: ../src/guestfs-actions.pod:1243
8289 msgid "See also C<guestfs_upload>, C<guestfs_cat>."
8290 msgstr ""
8291
8292 #. type: =head2
8293 #: ../src/guestfs-actions.pod:1254
8294 msgid "guestfs_download_offset"
8295 msgstr ""
8296
8297 #. type: verbatim
8298 #: ../src/guestfs-actions.pod:1256
8299 #, no-wrap
8300 msgid ""
8301 " int\n"
8302 " guestfs_download_offset (guestfs_h *g,\n"
8303 "                          const char *remotefilename,\n"
8304 "                          const char *filename,\n"
8305 "                          int64_t offset,\n"
8306 "                          int64_t size);\n"
8307 "\n"
8308 msgstr ""
8309
8310 #. type: textblock
8311 #: ../src/guestfs-actions.pod:1266 ../fish/guestfish-actions.pod:846
8312 msgid ""
8313 "C<remotefilename> is read for C<size> bytes starting at C<offset> (this "
8314 "region must be within the file or device)."
8315 msgstr ""
8316
8317 #. type: textblock
8318 #: ../src/guestfs-actions.pod:1269
8319 msgid ""
8320 "Note that there is no limit on the amount of data that can be downloaded "
8321 "with this call, unlike with C<guestfs_pread>, and this call always reads the "
8322 "full amount unless an error occurs."
8323 msgstr ""
8324
8325 #. type: textblock
8326 #: ../src/guestfs-actions.pod:1274
8327 msgid "See also C<guestfs_download>, C<guestfs_pread>."
8328 msgstr ""
8329
8330 #. type: textblock
8331 #: ../src/guestfs-actions.pod:1283 ../src/guestfs-actions.pod:6866
8332 msgid "(Added in 1.5.17)"
8333 msgstr ""
8334
8335 #. type: =head2
8336 #: ../src/guestfs-actions.pod:1285
8337 msgid "guestfs_drop_caches"
8338 msgstr ""
8339
8340 #. type: verbatim
8341 #: ../src/guestfs-actions.pod:1287
8342 #, no-wrap
8343 msgid ""
8344 " int\n"
8345 " guestfs_drop_caches (guestfs_h *g,\n"
8346 "                      int whattodrop);\n"
8347 "\n"
8348 msgstr ""
8349
8350 #. type: textblock
8351 #: ../src/guestfs-actions.pod:1291 ../fish/guestfish-actions.pod:862
8352 msgid ""
8353 "This instructs the guest kernel to drop its page cache, and/or dentries and "
8354 "inode caches.  The parameter C<whattodrop> tells the kernel what precisely "
8355 "to drop, see L<http://linux-mm.org/Drop_Caches>"
8356 msgstr ""
8357
8358 #. type: textblock
8359 #: ../src/guestfs-actions.pod:1296 ../fish/guestfish-actions.pod:867
8360 msgid "Setting C<whattodrop> to 3 should drop everything."
8361 msgstr ""
8362
8363 #. type: textblock
8364 #: ../src/guestfs-actions.pod:1298 ../fish/guestfish-actions.pod:869
8365 msgid ""
8366 "This automatically calls L<sync(2)> before the operation, so that the "
8367 "maximum guest memory is freed."
8368 msgstr ""
8369
8370 #. type: =head2
8371 #: ../src/guestfs-actions.pod:1305
8372 msgid "guestfs_du"
8373 msgstr ""
8374
8375 #. type: verbatim
8376 #: ../src/guestfs-actions.pod:1307
8377 #, no-wrap
8378 msgid ""
8379 " int64_t\n"
8380 " guestfs_du (guestfs_h *g,\n"
8381 "             const char *path);\n"
8382 "\n"
8383 msgstr ""
8384
8385 #. type: textblock
8386 #: ../src/guestfs-actions.pod:1311 ../fish/guestfish-actions.pod:876
8387 msgid ""
8388 "This command runs the C<du -s> command to estimate file space usage for "
8389 "C<path>."
8390 msgstr ""
8391
8392 #. type: textblock
8393 #: ../src/guestfs-actions.pod:1314 ../fish/guestfish-actions.pod:879
8394 msgid ""
8395 "C<path> can be a file or a directory.  If C<path> is a directory then the "
8396 "estimate includes the contents of the directory and all subdirectories "
8397 "(recursively)."
8398 msgstr ""
8399
8400 #. type: textblock
8401 #: ../src/guestfs-actions.pod:1318 ../fish/guestfish-actions.pod:883
8402 msgid ""
8403 "The result is the estimated size in I<kilobytes> (ie. units of 1024 bytes)."
8404 msgstr ""
8405
8406 #. type: =head2
8407 #: ../src/guestfs-actions.pod:1330
8408 msgid "guestfs_e2fsck_f"
8409 msgstr ""
8410
8411 #. type: verbatim
8412 #: ../src/guestfs-actions.pod:1332
8413 #, no-wrap
8414 msgid ""
8415 " int\n"
8416 " guestfs_e2fsck_f (guestfs_h *g,\n"
8417 "                   const char *device);\n"
8418 "\n"
8419 msgstr ""
8420
8421 #. type: textblock
8422 #: ../src/guestfs-actions.pod:1336 ../fish/guestfish-actions.pod:890
8423 msgid ""
8424 "This runs C<e2fsck -p -f device>, ie. runs the ext2/ext3 filesystem checker "
8425 "on C<device>, noninteractively (I<-p>), even if the filesystem appears to be "
8426 "clean (I<-f>)."
8427 msgstr ""
8428
8429 #. type: textblock
8430 #: ../src/guestfs-actions.pod:1340
8431 msgid ""
8432 "This command is only needed because of C<guestfs_resize2fs> (q.v.).  "
8433 "Normally you should use C<guestfs_fsck>."
8434 msgstr ""
8435
8436 #. type: textblock
8437 #: ../src/guestfs-actions.pod:1345
8438 msgid "(Added in 1.0.29)"
8439 msgstr ""
8440
8441 #. type: =head2
8442 #: ../src/guestfs-actions.pod:1347
8443 msgid "guestfs_echo_daemon"
8444 msgstr ""
8445
8446 #. type: verbatim
8447 #: ../src/guestfs-actions.pod:1349
8448 #, no-wrap
8449 msgid ""
8450 " char *\n"
8451 " guestfs_echo_daemon (guestfs_h *g,\n"
8452 "                      char *const *words);\n"
8453 "\n"
8454 msgstr ""
8455
8456 #. type: textblock
8457 #: ../src/guestfs-actions.pod:1353 ../fish/guestfish-actions.pod:901
8458 msgid ""
8459 "This command concatenates the list of C<words> passed with single spaces "
8460 "between them and returns the resulting string."
8461 msgstr ""
8462
8463 #. type: textblock
8464 #: ../src/guestfs-actions.pod:1356 ../fish/guestfish-actions.pod:904
8465 msgid "You can use this command to test the connection through to the daemon."
8466 msgstr ""
8467
8468 #. type: textblock
8469 #: ../src/guestfs-actions.pod:1358
8470 msgid "See also C<guestfs_ping_daemon>."
8471 msgstr ""
8472
8473 #. type: textblock
8474 #: ../src/guestfs-actions.pod:1363 ../src/guestfs-actions.pod:2100
8475 #: ../src/guestfs-actions.pod:6065
8476 msgid "(Added in 1.0.69)"
8477 msgstr ""
8478
8479 #. type: =head2
8480 #: ../src/guestfs-actions.pod:1365
8481 msgid "guestfs_egrep"
8482 msgstr ""
8483
8484 #. type: verbatim
8485 #: ../src/guestfs-actions.pod:1367
8486 #, no-wrap
8487 msgid ""
8488 " char **\n"
8489 " guestfs_egrep (guestfs_h *g,\n"
8490 "                const char *regex,\n"
8491 "                const char *path);\n"
8492 "\n"
8493 msgstr ""
8494
8495 #. type: textblock
8496 #: ../src/guestfs-actions.pod:1372 ../fish/guestfish-actions.pod:912
8497 msgid ""
8498 "This calls the external C<egrep> program and returns the matching lines."
8499 msgstr ""
8500
8501 #. type: textblock
8502 #: ../src/guestfs-actions.pod:1382 ../src/guestfs-actions.pod:1401
8503 #: ../src/guestfs-actions.pod:1458 ../src/guestfs-actions.pod:1504
8504 #: ../src/guestfs-actions.pod:1523 ../src/guestfs-actions.pod:2230
8505 #: ../src/guestfs-actions.pod:2249 ../src/guestfs-actions.pod:2405
8506 #: ../src/guestfs-actions.pod:2418 ../src/guestfs-actions.pod:2433
8507 #: ../src/guestfs-actions.pod:2479 ../src/guestfs-actions.pod:2501
8508 #: ../src/guestfs-actions.pod:2514 ../src/guestfs-actions.pod:3662
8509 #: ../src/guestfs-actions.pod:3676 ../src/guestfs-actions.pod:3689
8510 #: ../src/guestfs-actions.pod:3703 ../src/guestfs-actions.pod:4689
8511 #: ../src/guestfs-actions.pod:5565 ../src/guestfs-actions.pod:5614
8512 #: ../src/guestfs-actions.pod:6433 ../src/guestfs-actions.pod:6445
8513 #: ../src/guestfs-actions.pod:6458 ../src/guestfs-actions.pod:6471
8514 #: ../src/guestfs-actions.pod:6493 ../src/guestfs-actions.pod:6506
8515 #: ../src/guestfs-actions.pod:6519 ../src/guestfs-actions.pod:6532
8516 #: ../src/guestfs-actions.pod:7303 ../src/guestfs-actions.pod:7322
8517 #: ../src/guestfs-actions.pod:7407 ../src/guestfs-actions.pod:7426
8518 #: ../src/guestfs-actions.pod:7472 ../src/guestfs-actions.pod:7491
8519 msgid "(Added in 1.0.66)"
8520 msgstr ""
8521
8522 #. type: =head2
8523 #: ../src/guestfs-actions.pod:1384
8524 msgid "guestfs_egrepi"
8525 msgstr ""
8526
8527 #. type: verbatim
8528 #: ../src/guestfs-actions.pod:1386
8529 #, no-wrap
8530 msgid ""
8531 " char **\n"
8532 " guestfs_egrepi (guestfs_h *g,\n"
8533 "                 const char *regex,\n"
8534 "                 const char *path);\n"
8535 "\n"
8536 msgstr ""
8537
8538 #. type: textblock
8539 #: ../src/guestfs-actions.pod:1391 ../fish/guestfish-actions.pod:922
8540 msgid ""
8541 "This calls the external C<egrep -i> program and returns the matching lines."
8542 msgstr ""
8543
8544 #. type: =head2
8545 #: ../src/guestfs-actions.pod:1403
8546 msgid "guestfs_equal"
8547 msgstr ""
8548
8549 #. type: verbatim
8550 #: ../src/guestfs-actions.pod:1405
8551 #, no-wrap
8552 msgid ""
8553 " int\n"
8554 " guestfs_equal (guestfs_h *g,\n"
8555 "                const char *file1,\n"
8556 "                const char *file2);\n"
8557 "\n"
8558 msgstr ""
8559
8560 #. type: textblock
8561 #: ../src/guestfs-actions.pod:1410 ../fish/guestfish-actions.pod:932
8562 msgid ""
8563 "This compares the two files C<file1> and C<file2> and returns true if their "
8564 "content is exactly equal, or false otherwise."
8565 msgstr ""
8566
8567 #. type: textblock
8568 #: ../src/guestfs-actions.pod:1413 ../fish/guestfish-actions.pod:935
8569 msgid "The external L<cmp(1)> program is used for the comparison."
8570 msgstr ""
8571
8572 #. type: =head2
8573 #: ../src/guestfs-actions.pod:1419
8574 msgid "guestfs_exists"
8575 msgstr ""
8576
8577 #. type: verbatim
8578 #: ../src/guestfs-actions.pod:1421
8579 #, no-wrap
8580 msgid ""
8581 " int\n"
8582 " guestfs_exists (guestfs_h *g,\n"
8583 "                 const char *path);\n"
8584 "\n"
8585 msgstr ""
8586
8587 #. type: textblock
8588 #: ../src/guestfs-actions.pod:1425 ../fish/guestfish-actions.pod:941
8589 msgid ""
8590 "This returns C<true> if and only if there is a file, directory (or anything) "
8591 "with the given C<path> name."
8592 msgstr ""
8593
8594 #. type: textblock
8595 #: ../src/guestfs-actions.pod:1428
8596 msgid "See also C<guestfs_is_file>, C<guestfs_is_dir>, C<guestfs_stat>."
8597 msgstr ""
8598
8599 #. type: =head2
8600 #: ../src/guestfs-actions.pod:1434
8601 msgid "guestfs_fallocate"
8602 msgstr ""
8603
8604 #. type: verbatim
8605 #: ../src/guestfs-actions.pod:1436
8606 #, no-wrap
8607 msgid ""
8608 " int\n"
8609 " guestfs_fallocate (guestfs_h *g,\n"
8610 "                    const char *path,\n"
8611 "                    int len);\n"
8612 "\n"
8613 msgstr ""
8614
8615 #. type: textblock
8616 #: ../src/guestfs-actions.pod:1441 ../src/guestfs-actions.pod:1467
8617 #: ../fish/guestfish-actions.pod:950 ../fish/guestfish-actions.pod:969
8618 msgid ""
8619 "This command preallocates a file (containing zero bytes) named C<path> of "
8620 "size C<len> bytes.  If the file exists already, it is overwritten."
8621 msgstr ""
8622
8623 #. type: textblock
8624 #: ../src/guestfs-actions.pod:1445 ../fish/guestfish-actions.pod:954
8625 msgid ""
8626 "Do not confuse this with the guestfish-specific C<alloc> command which "
8627 "allocates a file in the host and attaches it as a device."
8628 msgstr ""
8629
8630 #. type: textblock
8631 #: ../src/guestfs-actions.pod:1451 ../fish/guestfish-actions.pod:958
8632 msgid ""
8633 "This function is deprecated.  In new code, use the C<fallocate64> call "
8634 "instead."
8635 msgstr ""
8636
8637 #. type: =head2
8638 #: ../src/guestfs-actions.pod:1460
8639 msgid "guestfs_fallocate64"
8640 msgstr ""
8641
8642 #. type: verbatim
8643 #: ../src/guestfs-actions.pod:1462
8644 #, no-wrap
8645 msgid ""
8646 " int\n"
8647 " guestfs_fallocate64 (guestfs_h *g,\n"
8648 "                      const char *path,\n"
8649 "                      int64_t len);\n"
8650 "\n"
8651 msgstr ""
8652
8653 #. type: textblock
8654 #: ../src/guestfs-actions.pod:1471
8655 msgid ""
8656 "Note that this call allocates disk blocks for the file.  To create a sparse "
8657 "file use C<guestfs_truncate_size> instead."
8658 msgstr ""
8659
8660 #. type: textblock
8661 #: ../src/guestfs-actions.pod:1474
8662 msgid ""
8663 "The deprecated call C<guestfs_fallocate> does the same, but owing to an "
8664 "oversight it only allowed 30 bit lengths to be specified, effectively "
8665 "limiting the maximum size of files created through that call to 1GB."
8666 msgstr ""
8667
8668 #. type: textblock
8669 #: ../src/guestfs-actions.pod:1479 ../fish/guestfish-actions.pod:981
8670 msgid ""
8671 "Do not confuse this with the guestfish-specific C<alloc> and C<sparse> "
8672 "commands which create a file in the host and attach it as a device."
8673 msgstr ""
8674
8675 #. type: textblock
8676 #: ../src/guestfs-actions.pod:1485
8677 msgid "(Added in 1.3.17)"
8678 msgstr ""
8679
8680 #. type: =head2
8681 #: ../src/guestfs-actions.pod:1487
8682 msgid "guestfs_fgrep"
8683 msgstr ""
8684
8685 #. type: verbatim
8686 #: ../src/guestfs-actions.pod:1489
8687 #, no-wrap
8688 msgid ""
8689 " char **\n"
8690 " guestfs_fgrep (guestfs_h *g,\n"
8691 "                const char *pattern,\n"
8692 "                const char *path);\n"
8693 "\n"
8694 msgstr ""
8695
8696 #. type: textblock
8697 #: ../src/guestfs-actions.pod:1494 ../fish/guestfish-actions.pod:989
8698 msgid ""
8699 "This calls the external C<fgrep> program and returns the matching lines."
8700 msgstr ""
8701
8702 #. type: =head2
8703 #: ../src/guestfs-actions.pod:1506
8704 msgid "guestfs_fgrepi"
8705 msgstr ""
8706
8707 #. type: verbatim
8708 #: ../src/guestfs-actions.pod:1508
8709 #, no-wrap
8710 msgid ""
8711 " char **\n"
8712 " guestfs_fgrepi (guestfs_h *g,\n"
8713 "                 const char *pattern,\n"
8714 "                 const char *path);\n"
8715 "\n"
8716 msgstr ""
8717
8718 #. type: textblock
8719 #: ../src/guestfs-actions.pod:1513 ../fish/guestfish-actions.pod:999
8720 msgid ""
8721 "This calls the external C<fgrep -i> program and returns the matching lines."
8722 msgstr ""
8723
8724 #. type: =head2
8725 #: ../src/guestfs-actions.pod:1525
8726 msgid "guestfs_file"
8727 msgstr ""
8728
8729 #. type: verbatim
8730 #: ../src/guestfs-actions.pod:1527
8731 #, no-wrap
8732 msgid ""
8733 " char *\n"
8734 " guestfs_file (guestfs_h *g,\n"
8735 "               const char *path);\n"
8736 "\n"
8737 msgstr ""
8738
8739 #. type: textblock
8740 #: ../src/guestfs-actions.pod:1531 ../fish/guestfish-actions.pod:1009
8741 msgid ""
8742 "This call uses the standard L<file(1)> command to determine the type or "
8743 "contents of the file."
8744 msgstr ""
8745
8746 #. type: textblock
8747 #: ../src/guestfs-actions.pod:1534 ../fish/guestfish-actions.pod:1012
8748 msgid ""
8749 "This call will also transparently look inside various types of compressed "
8750 "file."
8751 msgstr ""
8752
8753 #. type: textblock
8754 #: ../src/guestfs-actions.pod:1537 ../fish/guestfish-actions.pod:1015
8755 msgid ""
8756 "The exact command which runs is C<file -zb path>.  Note in particular that "
8757 "the filename is not prepended to the output (the I<-b> option)."
8758 msgstr ""
8759
8760 #. type: textblock
8761 #: ../src/guestfs-actions.pod:1541
8762 msgid ""
8763 "This command can also be used on C</dev/> devices (and partitions, LV "
8764 "names).  You can for example use this to determine if a device contains a "
8765 "filesystem, although it's usually better to use C<guestfs_vfs_type>."
8766 msgstr ""
8767
8768 #. type: textblock
8769 #: ../src/guestfs-actions.pod:1546 ../fish/guestfish-actions.pod:1024
8770 msgid ""
8771 "If the C<path> does not begin with C</dev/> then this command only works for "
8772 "the content of regular files.  For other file types (directory, symbolic "
8773 "link etc) it will just return the string C<directory> etc."
8774 msgstr ""
8775
8776 #. type: =head2
8777 #: ../src/guestfs-actions.pod:1556
8778 msgid "guestfs_file_architecture"
8779 msgstr ""
8780
8781 #. type: verbatim
8782 #: ../src/guestfs-actions.pod:1558
8783 #, no-wrap
8784 msgid ""
8785 " char *\n"
8786 " guestfs_file_architecture (guestfs_h *g,\n"
8787 "                            const char *filename);\n"
8788 "\n"
8789 msgstr ""
8790
8791 #. type: textblock
8792 #: ../src/guestfs-actions.pod:1562 ../fish/guestfish-actions.pod:1033
8793 msgid ""
8794 "This detects the architecture of the binary C<filename>, and returns it if "
8795 "known."
8796 msgstr ""
8797
8798 #. type: textblock
8799 #: ../src/guestfs-actions.pod:1565 ../fish/guestfish-actions.pod:1036
8800 msgid "Currently defined architectures are:"
8801 msgstr ""
8802
8803 #. type: =item
8804 #: ../src/guestfs-actions.pod:1569 ../fish/guestfish-actions.pod:1040
8805 msgid "\"i386\""
8806 msgstr "\"i386\""
8807
8808 #. type: textblock
8809 #: ../src/guestfs-actions.pod:1571 ../fish/guestfish-actions.pod:1042
8810 msgid ""
8811 "This string is returned for all 32 bit i386, i486, i586, i686 binaries "
8812 "irrespective of the precise processor requirements of the binary."
8813 msgstr ""
8814
8815 #. type: =item
8816 #: ../src/guestfs-actions.pod:1574 ../fish/guestfish-actions.pod:1045
8817 msgid "\"x86_64\""
8818 msgstr "\"x86_64\""
8819
8820 #. type: textblock
8821 #: ../src/guestfs-actions.pod:1576 ../fish/guestfish-actions.pod:1047
8822 msgid "64 bit x86-64."
8823 msgstr ""
8824
8825 #. type: =item
8826 #: ../src/guestfs-actions.pod:1578 ../fish/guestfish-actions.pod:1049
8827 msgid "\"sparc\""
8828 msgstr ""
8829
8830 #. type: textblock
8831 #: ../src/guestfs-actions.pod:1580 ../fish/guestfish-actions.pod:1051
8832 msgid "32 bit SPARC."
8833 msgstr ""
8834
8835 #. type: =item
8836 #: ../src/guestfs-actions.pod:1582 ../fish/guestfish-actions.pod:1053
8837 msgid "\"sparc64\""
8838 msgstr ""
8839
8840 #. type: textblock
8841 #: ../src/guestfs-actions.pod:1584 ../fish/guestfish-actions.pod:1055
8842 msgid "64 bit SPARC V9 and above."
8843 msgstr ""
8844
8845 #. type: =item
8846 #: ../src/guestfs-actions.pod:1586 ../fish/guestfish-actions.pod:1057
8847 msgid "\"ia64\""
8848 msgstr "\"ia64\""
8849
8850 #. type: textblock
8851 #: ../src/guestfs-actions.pod:1588 ../fish/guestfish-actions.pod:1059
8852 msgid "Intel Itanium."
8853 msgstr "Intel Itanium."
8854
8855 #. type: =item
8856 #: ../src/guestfs-actions.pod:1590 ../fish/guestfish-actions.pod:1061
8857 msgid "\"ppc\""
8858 msgstr ""
8859
8860 #. type: textblock
8861 #: ../src/guestfs-actions.pod:1592 ../fish/guestfish-actions.pod:1063
8862 msgid "32 bit Power PC."
8863 msgstr ""
8864
8865 #. type: =item
8866 #: ../src/guestfs-actions.pod:1594 ../fish/guestfish-actions.pod:1065
8867 msgid "\"ppc64\""
8868 msgstr ""
8869
8870 #. type: textblock
8871 #: ../src/guestfs-actions.pod:1596 ../fish/guestfish-actions.pod:1067
8872 msgid "64 bit Power PC."
8873 msgstr ""
8874
8875 #. type: textblock
8876 #: ../src/guestfs-actions.pod:1600 ../fish/guestfish-actions.pod:1071
8877 msgid "Libguestfs may return other architecture strings in future."
8878 msgstr ""
8879
8880 #. type: textblock
8881 #: ../src/guestfs-actions.pod:1602 ../fish/guestfish-actions.pod:1073
8882 msgid "The function works on at least the following types of files:"
8883 msgstr ""
8884
8885 #. type: textblock
8886 #: ../src/guestfs-actions.pod:1608 ../fish/guestfish-actions.pod:1079
8887 msgid "many types of Un*x and Linux binary"
8888 msgstr ""
8889
8890 #. type: textblock
8891 #: ../src/guestfs-actions.pod:1612 ../fish/guestfish-actions.pod:1083
8892 msgid "many types of Un*x and Linux shared library"
8893 msgstr ""
8894
8895 #. type: textblock
8896 #: ../src/guestfs-actions.pod:1616 ../fish/guestfish-actions.pod:1087
8897 msgid "Windows Win32 and Win64 binaries"
8898 msgstr ""
8899
8900 #. type: textblock
8901 #: ../src/guestfs-actions.pod:1620 ../fish/guestfish-actions.pod:1091
8902 msgid "Windows Win32 and Win64 DLLs"
8903 msgstr ""
8904
8905 #. type: textblock
8906 #: ../src/guestfs-actions.pod:1622 ../fish/guestfish-actions.pod:1093
8907 msgid "Win32 binaries and DLLs return C<i386>."
8908 msgstr ""
8909
8910 #. type: textblock
8911 #: ../src/guestfs-actions.pod:1624 ../fish/guestfish-actions.pod:1095
8912 msgid "Win64 binaries and DLLs return C<x86_64>."
8913 msgstr ""
8914
8915 #. type: textblock
8916 #: ../src/guestfs-actions.pod:1628 ../fish/guestfish-actions.pod:1099
8917 msgid "Linux kernel modules"
8918 msgstr ""
8919
8920 #. type: textblock
8921 #: ../src/guestfs-actions.pod:1632 ../fish/guestfish-actions.pod:1103
8922 msgid "Linux new-style initrd images"
8923 msgstr ""
8924
8925 #. type: textblock
8926 #: ../src/guestfs-actions.pod:1636 ../fish/guestfish-actions.pod:1107
8927 msgid "some non-x86 Linux vmlinuz kernels"
8928 msgstr ""
8929
8930 #. type: textblock
8931 #: ../src/guestfs-actions.pod:1640 ../fish/guestfish-actions.pod:1111
8932 msgid "What it can't do currently:"
8933 msgstr ""
8934
8935 #. type: textblock
8936 #: ../src/guestfs-actions.pod:1646 ../fish/guestfish-actions.pod:1117
8937 msgid "static libraries (libfoo.a)"
8938 msgstr ""
8939
8940 #. type: textblock
8941 #: ../src/guestfs-actions.pod:1650 ../fish/guestfish-actions.pod:1121
8942 msgid "Linux old-style initrd as compressed ext2 filesystem (RHEL 3)"
8943 msgstr ""
8944
8945 #. type: textblock
8946 #: ../src/guestfs-actions.pod:1654 ../fish/guestfish-actions.pod:1125
8947 msgid "x86 Linux vmlinuz kernels"
8948 msgstr ""
8949
8950 #. type: textblock
8951 #: ../src/guestfs-actions.pod:1656 ../fish/guestfish-actions.pod:1127
8952 msgid ""
8953 "x86 vmlinuz images (bzImage format) consist of a mix of 16-, 32- and "
8954 "compressed code, and are horribly hard to unpack.  If you want to find the "
8955 "architecture of a kernel, use the architecture of the associated initrd or "
8956 "kernel module(s) instead."
8957 msgstr ""
8958
8959 #. type: textblock
8960 #: ../src/guestfs-actions.pod:1666 ../src/guestfs-actions.pod:1829
8961 #: ../src/guestfs-actions.pod:1846 ../src/guestfs-actions.pod:2537
8962 #: ../src/guestfs-actions.pod:2630 ../src/guestfs-actions.pod:2700
8963 #: ../src/guestfs-actions.pod:2788 ../src/guestfs-actions.pod:2809
8964 #: ../src/guestfs-actions.pod:2852 ../src/guestfs-actions.pod:2936
8965 #: ../src/guestfs-actions.pod:3033 ../src/guestfs-actions.pod:3280
8966 #: ../src/guestfs-actions.pod:3412
8967 msgid "(Added in 1.5.3)"
8968 msgstr ""
8969
8970 #. type: =head2
8971 #: ../src/guestfs-actions.pod:1668
8972 msgid "guestfs_filesize"
8973 msgstr ""
8974
8975 #. type: verbatim
8976 #: ../src/guestfs-actions.pod:1670
8977 #, no-wrap
8978 msgid ""
8979 " int64_t\n"
8980 " guestfs_filesize (guestfs_h *g,\n"
8981 "                   const char *file);\n"
8982 "\n"
8983 msgstr ""
8984
8985 #. type: textblock
8986 #: ../src/guestfs-actions.pod:1674 ../fish/guestfish-actions.pod:1138
8987 msgid "This command returns the size of C<file> in bytes."
8988 msgstr ""
8989
8990 #. type: textblock
8991 #: ../src/guestfs-actions.pod:1676
8992 msgid ""
8993 "To get other stats about a file, use C<guestfs_stat>, C<guestfs_lstat>, "
8994 "C<guestfs_is_dir>, C<guestfs_is_file> etc.  To get the size of block "
8995 "devices, use C<guestfs_blockdev_getsize64>."
8996 msgstr ""
8997
8998 #. type: textblock
8999 #: ../src/guestfs-actions.pod:1682
9000 msgid "(Added in 1.0.82)"
9001 msgstr ""
9002
9003 #. type: =head2
9004 #: ../src/guestfs-actions.pod:1684
9005 msgid "guestfs_fill"
9006 msgstr ""
9007
9008 #. type: verbatim
9009 #: ../src/guestfs-actions.pod:1686
9010 #, no-wrap
9011 msgid ""
9012 " int\n"
9013 " guestfs_fill (guestfs_h *g,\n"
9014 "               int c,\n"
9015 "               int len,\n"
9016 "               const char *path);\n"
9017 "\n"
9018 msgstr ""
9019
9020 #. type: textblock
9021 #: ../src/guestfs-actions.pod:1692 ../fish/guestfish-actions.pod:1148
9022 msgid ""
9023 "This command creates a new file called C<path>.  The initial content of the "
9024 "file is C<len> octets of C<c>, where C<c> must be a number in the range C<"
9025 "[0..255]>."
9026 msgstr ""
9027
9028 #. type: textblock
9029 #: ../src/guestfs-actions.pod:1696
9030 msgid ""
9031 "To fill a file with zero bytes (sparsely), it is much more efficient to use "
9032 "C<guestfs_truncate_size>.  To create a file with a pattern of repeating "
9033 "bytes use C<guestfs_fill_pattern>."
9034 msgstr ""
9035
9036 #. type: textblock
9037 #: ../src/guestfs-actions.pod:1708
9038 msgid "(Added in 1.0.79)"
9039 msgstr ""
9040
9041 #. type: =head2
9042 #: ../src/guestfs-actions.pod:1710
9043 msgid "guestfs_fill_pattern"
9044 msgstr ""
9045
9046 #. type: verbatim
9047 #: ../src/guestfs-actions.pod:1712
9048 #, no-wrap
9049 msgid ""
9050 " int\n"
9051 " guestfs_fill_pattern (guestfs_h *g,\n"
9052 "                       const char *pattern,\n"
9053 "                       int len,\n"
9054 "                       const char *path);\n"
9055 "\n"
9056 msgstr ""
9057
9058 #. type: textblock
9059 #: ../src/guestfs-actions.pod:1718
9060 msgid ""
9061 "This function is like C<guestfs_fill> except that it creates a new file of "
9062 "length C<len> containing the repeating pattern of bytes in C<pattern>.  The "
9063 "pattern is truncated if necessary to ensure the length of the file is "
9064 "exactly C<len> bytes."
9065 msgstr ""
9066
9067 #. type: textblock
9068 #: ../src/guestfs-actions.pod:1730
9069 msgid "(Added in 1.3.12)"
9070 msgstr ""
9071
9072 #. type: =head2
9073 #: ../src/guestfs-actions.pod:1732
9074 msgid "guestfs_find"
9075 msgstr ""
9076
9077 #. type: verbatim
9078 #: ../src/guestfs-actions.pod:1734
9079 #, no-wrap
9080 msgid ""
9081 " char **\n"
9082 " guestfs_find (guestfs_h *g,\n"
9083 "               const char *directory);\n"
9084 "\n"
9085 msgstr ""
9086
9087 #. type: textblock
9088 #: ../src/guestfs-actions.pod:1738 ../fish/guestfish-actions.pod:1170
9089 msgid ""
9090 "This command lists out all files and directories, recursively, starting at "
9091 "C<directory>.  It is essentially equivalent to running the shell command "
9092 "C<find directory -print> but some post-processing happens on the output, "
9093 "described below."
9094 msgstr ""
9095
9096 #. type: textblock
9097 #: ../src/guestfs-actions.pod:1743 ../fish/guestfish-actions.pod:1175
9098 msgid ""
9099 "This returns a list of strings I<without any prefix>.  Thus if the directory "
9100 "structure was:"
9101 msgstr ""
9102
9103 #. type: verbatim
9104 #: ../src/guestfs-actions.pod:1746 ../fish/guestfish-actions.pod:1178
9105 #, no-wrap
9106 msgid ""
9107 " /tmp/a\n"
9108 " /tmp/b\n"
9109 " /tmp/c/d\n"
9110 "\n"
9111 msgstr ""
9112
9113 #. type: textblock
9114 #: ../src/guestfs-actions.pod:1750
9115 msgid ""
9116 "then the returned list from C<guestfs_find> C</tmp> would be 4 elements:"
9117 msgstr ""
9118
9119 #. type: verbatim
9120 #: ../src/guestfs-actions.pod:1753 ../fish/guestfish-actions.pod:1185
9121 #, no-wrap
9122 msgid ""
9123 " a\n"
9124 " b\n"
9125 " c\n"
9126 " c/d\n"
9127 "\n"
9128 msgstr ""
9129
9130 #. type: textblock
9131 #: ../src/guestfs-actions.pod:1758 ../fish/guestfish-actions.pod:1190
9132 msgid "If C<directory> is not a directory, then this command returns an error."
9133 msgstr ""
9134
9135 #. type: textblock
9136 #: ../src/guestfs-actions.pod:1761 ../fish/guestfish-actions.pod:1193
9137 msgid "The returned list is sorted."
9138 msgstr ""
9139
9140 #. type: textblock
9141 #: ../src/guestfs-actions.pod:1763
9142 msgid "See also C<guestfs_find0>."
9143 msgstr ""
9144
9145 #. type: textblock
9146 #: ../src/guestfs-actions.pod:1772 ../src/guestfs-actions.pod:4106
9147 #: ../src/guestfs-actions.pod:5649
9148 msgid "(Added in 1.0.27)"
9149 msgstr ""
9150
9151 #. type: =head2
9152 #: ../src/guestfs-actions.pod:1774
9153 msgid "guestfs_find0"
9154 msgstr ""
9155
9156 #. type: verbatim
9157 #: ../src/guestfs-actions.pod:1776
9158 #, no-wrap
9159 msgid ""
9160 " int\n"
9161 " guestfs_find0 (guestfs_h *g,\n"
9162 "                const char *directory,\n"
9163 "                const char *files);\n"
9164 "\n"
9165 msgstr ""
9166
9167 #. type: textblock
9168 #: ../src/guestfs-actions.pod:1781 ../fish/guestfish-actions.pod:1204
9169 msgid ""
9170 "This command lists out all files and directories, recursively, starting at "
9171 "C<directory>, placing the resulting list in the external file called "
9172 "C<files>."
9173 msgstr ""
9174
9175 #. type: textblock
9176 #: ../src/guestfs-actions.pod:1785
9177 msgid ""
9178 "This command works the same way as C<guestfs_find> with the following "
9179 "exceptions:"
9180 msgstr ""
9181
9182 #. type: textblock
9183 #: ../src/guestfs-actions.pod:1792 ../fish/guestfish-actions.pod:1215
9184 msgid "The resulting list is written to an external file."
9185 msgstr ""
9186
9187 #. type: textblock
9188 #: ../src/guestfs-actions.pod:1796 ../fish/guestfish-actions.pod:1219
9189 msgid ""
9190 "Items (filenames) in the result are separated by C<\\0> characters.  See "
9191 "L<find(1)> option I<-print0>."
9192 msgstr ""
9193
9194 #. type: textblock
9195 #: ../src/guestfs-actions.pod:1801 ../fish/guestfish-actions.pod:1224
9196 msgid "This command is not limited in the number of names that it can return."
9197 msgstr ""
9198
9199 #. type: textblock
9200 #: ../src/guestfs-actions.pod:1806 ../fish/guestfish-actions.pod:1229
9201 msgid "The result list is not sorted."
9202 msgstr ""
9203
9204 #. type: textblock
9205 #: ../src/guestfs-actions.pod:1812
9206 msgid "(Added in 1.0.74)"
9207 msgstr ""
9208
9209 #. type: =head2
9210 #: ../src/guestfs-actions.pod:1814
9211 msgid "guestfs_findfs_label"
9212 msgstr ""
9213
9214 #. type: verbatim
9215 #: ../src/guestfs-actions.pod:1816
9216 #, no-wrap
9217 msgid ""
9218 " char *\n"
9219 " guestfs_findfs_label (guestfs_h *g,\n"
9220 "                       const char *label);\n"
9221 "\n"
9222 msgstr ""
9223
9224 #. type: textblock
9225 #: ../src/guestfs-actions.pod:1820 ../fish/guestfish-actions.pod:1239
9226 msgid ""
9227 "This command searches the filesystems and returns the one which has the "
9228 "given label.  An error is returned if no such filesystem can be found."
9229 msgstr ""
9230
9231 #. type: textblock
9232 #: ../src/guestfs-actions.pod:1824
9233 msgid "To find the label of a filesystem, use C<guestfs_vfs_label>."
9234 msgstr ""
9235
9236 #. type: =head2
9237 #: ../src/guestfs-actions.pod:1831
9238 msgid "guestfs_findfs_uuid"
9239 msgstr ""
9240
9241 #. type: verbatim
9242 #: ../src/guestfs-actions.pod:1833
9243 #, no-wrap
9244 msgid ""
9245 " char *\n"
9246 " guestfs_findfs_uuid (guestfs_h *g,\n"
9247 "                      const char *uuid);\n"
9248 "\n"
9249 msgstr ""
9250
9251 #. type: textblock
9252 #: ../src/guestfs-actions.pod:1837 ../fish/guestfish-actions.pod:1249
9253 msgid ""
9254 "This command searches the filesystems and returns the one which has the "
9255 "given UUID.  An error is returned if no such filesystem can be found."
9256 msgstr ""
9257
9258 #. type: textblock
9259 #: ../src/guestfs-actions.pod:1841
9260 msgid "To find the UUID of a filesystem, use C<guestfs_vfs_uuid>."
9261 msgstr ""
9262
9263 #. type: =head2
9264 #: ../src/guestfs-actions.pod:1848
9265 msgid "guestfs_fsck"
9266 msgstr ""
9267
9268 #. type: verbatim
9269 #: ../src/guestfs-actions.pod:1850
9270 #, no-wrap
9271 msgid ""
9272 " int\n"
9273 " guestfs_fsck (guestfs_h *g,\n"
9274 "               const char *fstype,\n"
9275 "               const char *device);\n"
9276 "\n"
9277 msgstr ""
9278
9279 #. type: textblock
9280 #: ../src/guestfs-actions.pod:1855 ../fish/guestfish-actions.pod:1259
9281 msgid ""
9282 "This runs the filesystem checker (fsck) on C<device> which should have "
9283 "filesystem type C<fstype>."
9284 msgstr ""
9285
9286 #. type: textblock
9287 #: ../src/guestfs-actions.pod:1858 ../fish/guestfish-actions.pod:1262
9288 msgid ""
9289 "The returned integer is the status.  See L<fsck(8)> for the list of status "
9290 "codes from C<fsck>."
9291 msgstr ""
9292
9293 #. type: textblock
9294 #: ../src/guestfs-actions.pod:1867 ../fish/guestfish-actions.pod:1271
9295 msgid "Multiple status codes can be summed together."
9296 msgstr ""
9297
9298 #. type: textblock
9299 #: ../src/guestfs-actions.pod:1871 ../fish/guestfish-actions.pod:1275
9300 msgid ""
9301 "A non-zero return code can mean \"success\", for example if errors have been "
9302 "corrected on the filesystem."
9303 msgstr ""
9304
9305 #. type: textblock
9306 #: ../src/guestfs-actions.pod:1876 ../fish/guestfish-actions.pod:1280
9307 msgid "Checking or repairing NTFS volumes is not supported (by linux-ntfs)."
9308 msgstr ""
9309
9310 #. type: textblock
9311 #: ../src/guestfs-actions.pod:1881 ../fish/guestfish-actions.pod:1285
9312 msgid ""
9313 "This command is entirely equivalent to running C<fsck -a -t fstype device>."
9314 msgstr ""
9315
9316 #. type: textblock
9317 #: ../src/guestfs-actions.pod:1885 ../src/guestfs-actions.pod:7345
9318 msgid "(Added in 1.0.16)"
9319 msgstr ""
9320
9321 #. type: =head2
9322 #: ../src/guestfs-actions.pod:1887
9323 msgid "guestfs_get_append"
9324 msgstr ""
9325
9326 #. type: verbatim
9327 #: ../src/guestfs-actions.pod:1889
9328 #, no-wrap
9329 msgid ""
9330 " const char *\n"
9331 " guestfs_get_append (guestfs_h *g);\n"
9332 "\n"
9333 msgstr ""
9334
9335 #. type: textblock
9336 #: ../src/guestfs-actions.pod:1892 ../fish/guestfish-actions.pod:1291
9337 msgid ""
9338 "Return the additional kernel options which are added to the guest kernel "
9339 "command line."
9340 msgstr ""
9341
9342 #. type: textblock
9343 #: ../src/guestfs-actions.pod:1895 ../fish/guestfish-actions.pod:1294
9344 msgid "If C<NULL> then no options are added."
9345 msgstr ""
9346
9347 #. type: textblock
9348 #: ../src/guestfs-actions.pod:1897
9349 msgid ""
9350 "This function returns a string which may be NULL.  There is no way to return "
9351 "an error from this function.  The string is owned by the guest handle and "
9352 "must I<not> be freed."
9353 msgstr ""
9354
9355 #. type: textblock
9356 #: ../src/guestfs-actions.pod:1901 ../src/guestfs-actions.pod:5327
9357 #: ../src/guestfs-actions.pod:5807 ../src/guestfs-actions.pod:6207
9358 #: ../src/guestfs-actions.pod:6226 ../src/guestfs-actions.pod:6242
9359 #: ../src/guestfs-actions.pod:6259 ../src/guestfs-actions.pod:7016
9360 #: ../src/guestfs-actions.pod:7034 ../src/guestfs-actions.pod:7388
9361 msgid "(Added in 1.0.26)"
9362 msgstr ""
9363
9364 #. type: =head2
9365 #: ../src/guestfs-actions.pod:1903
9366 msgid "guestfs_get_attach_method"
9367 msgstr ""
9368
9369 #. type: verbatim
9370 #: ../src/guestfs-actions.pod:1905
9371 #, no-wrap
9372 msgid ""
9373 " char *\n"
9374 " guestfs_get_attach_method (guestfs_h *g);\n"
9375 "\n"
9376 msgstr ""
9377
9378 #. type: textblock
9379 #: ../src/guestfs-actions.pod:1908
9380 msgid "Return the current attach method.  See C<guestfs_set_attach_method>."
9381 msgstr ""
9382
9383 #. type: =head2
9384 #: ../src/guestfs-actions.pod:1913
9385 msgid "guestfs_get_autosync"
9386 msgstr ""
9387
9388 #. type: verbatim
9389 #: ../src/guestfs-actions.pod:1915
9390 #, no-wrap
9391 msgid ""
9392 " int\n"
9393 " guestfs_get_autosync (guestfs_h *g);\n"
9394 "\n"
9395 msgstr ""
9396
9397 #. type: textblock
9398 #: ../src/guestfs-actions.pod:1918 ../fish/guestfish-actions.pod:1306
9399 msgid "Get the autosync flag."
9400 msgstr ""
9401
9402 #. type: =head2
9403 #: ../src/guestfs-actions.pod:1924
9404 msgid "guestfs_get_direct"
9405 msgstr ""
9406
9407 #. type: verbatim
9408 #: ../src/guestfs-actions.pod:1926
9409 #, no-wrap
9410 msgid ""
9411 " int\n"
9412 " guestfs_get_direct (guestfs_h *g);\n"
9413 "\n"
9414 msgstr ""
9415
9416 #. type: textblock
9417 #: ../src/guestfs-actions.pod:1929 ../fish/guestfish-actions.pod:1312
9418 msgid "Return the direct appliance mode flag."
9419 msgstr ""
9420
9421 #. type: textblock
9422 #: ../src/guestfs-actions.pod:1933 ../src/guestfs-actions.pod:5876
9423 msgid "(Added in 1.0.72)"
9424 msgstr ""
9425
9426 #. type: =head2
9427 #: ../src/guestfs-actions.pod:1935
9428 msgid "guestfs_get_e2label"
9429 msgstr ""
9430
9431 #. type: verbatim
9432 #: ../src/guestfs-actions.pod:1937
9433 #, no-wrap
9434 msgid ""
9435 " char *\n"
9436 " guestfs_get_e2label (guestfs_h *g,\n"
9437 "                      const char *device);\n"
9438 "\n"
9439 msgstr ""
9440
9441 #. type: textblock
9442 #: ../src/guestfs-actions.pod:1941 ../fish/guestfish-actions.pod:1318
9443 msgid ""
9444 "This returns the ext2/3/4 filesystem label of the filesystem on C<device>."
9445 msgstr ""
9446
9447 #. type: textblock
9448 #: ../src/guestfs-actions.pod:1947 ../fish/guestfish-actions.pod:1321
9449 msgid ""
9450 "This function is deprecated.  In new code, use the C<vfs_label> call instead."
9451 msgstr ""
9452
9453 #. type: textblock
9454 #: ../src/guestfs-actions.pod:1954 ../src/guestfs-actions.pod:1975
9455 #: ../src/guestfs-actions.pod:5894 ../src/guestfs-actions.pod:5913
9456 msgid "(Added in 1.0.15)"
9457 msgstr ""
9458
9459 #. type: =head2
9460 #: ../src/guestfs-actions.pod:1956
9461 msgid "guestfs_get_e2uuid"
9462 msgstr ""
9463
9464 #. type: verbatim
9465 #: ../src/guestfs-actions.pod:1958
9466 #, no-wrap
9467 msgid ""
9468 " char *\n"
9469 " guestfs_get_e2uuid (guestfs_h *g,\n"
9470 "                     const char *device);\n"
9471 "\n"
9472 msgstr ""
9473
9474 #. type: textblock
9475 #: ../src/guestfs-actions.pod:1962 ../fish/guestfish-actions.pod:1332
9476 msgid ""
9477 "This returns the ext2/3/4 filesystem UUID of the filesystem on C<device>."
9478 msgstr ""
9479
9480 #. type: textblock
9481 #: ../src/guestfs-actions.pod:1968 ../fish/guestfish-actions.pod:1335
9482 msgid ""
9483 "This function is deprecated.  In new code, use the C<vfs_uuid> call instead."
9484 msgstr ""
9485
9486 #. type: =head2
9487 #: ../src/guestfs-actions.pod:1977
9488 msgid "guestfs_get_memsize"
9489 msgstr ""
9490
9491 #. type: verbatim
9492 #: ../src/guestfs-actions.pod:1979
9493 #, no-wrap
9494 msgid ""
9495 " int\n"
9496 " guestfs_get_memsize (guestfs_h *g);\n"
9497 "\n"
9498 msgstr ""
9499
9500 #. type: textblock
9501 #: ../src/guestfs-actions.pod:1982 ../fish/guestfish-actions.pod:1346
9502 msgid ""
9503 "This gets the memory size in megabytes allocated to the qemu subprocess."
9504 msgstr ""
9505
9506 #. type: textblock
9507 #: ../src/guestfs-actions.pod:1985
9508 msgid ""
9509 "If C<guestfs_set_memsize> was not called on this handle, and if "
9510 "C<LIBGUESTFS_MEMSIZE> was not set, then this returns the compiled-in default "
9511 "value for memsize."
9512 msgstr ""
9513
9514 #. type: textblock
9515 #: ../src/guestfs-actions.pod:1989 ../src/guestfs-actions.pod:2070
9516 #: ../src/guestfs-actions.pod:5929 ../src/guestfs-actions.pod:6036
9517 #: ../fish/guestfish-actions.pod:1353 ../fish/guestfish-actions.pod:1404
9518 #: ../fish/guestfish-actions.pod:3998 ../fish/guestfish-actions.pod:4085
9519 msgid ""
9520 "For more information on the architecture of libguestfs, see L<guestfs(3)>."
9521 msgstr ""
9522
9523 #. type: textblock
9524 #: ../src/guestfs-actions.pod:1994 ../src/guestfs-actions.pod:4397
9525 #: ../src/guestfs-actions.pod:4594 ../src/guestfs-actions.pod:4613
9526 #: ../src/guestfs-actions.pod:4632 ../src/guestfs-actions.pod:4644
9527 #: ../src/guestfs-actions.pod:4661 ../src/guestfs-actions.pod:4674
9528 #: ../src/guestfs-actions.pod:5552 ../src/guestfs-actions.pod:5934
9529 #: ../src/guestfs-actions.pod:6181 ../src/guestfs-actions.pod:6782
9530 msgid "(Added in 1.0.55)"
9531 msgstr ""
9532
9533 #. type: =head2
9534 #: ../src/guestfs-actions.pod:1996
9535 msgid "guestfs_get_network"
9536 msgstr ""
9537
9538 #. type: verbatim
9539 #: ../src/guestfs-actions.pod:1998
9540 #, no-wrap
9541 msgid ""
9542 " int\n"
9543 " guestfs_get_network (guestfs_h *g);\n"
9544 "\n"
9545 msgstr ""
9546
9547 #. type: textblock
9548 #: ../src/guestfs-actions.pod:2001 ../fish/guestfish-actions.pod:1360
9549 msgid "This returns the enable network flag."
9550 msgstr ""
9551
9552 #. type: textblock
9553 #: ../src/guestfs-actions.pod:2005 ../src/guestfs-actions.pod:5953
9554 msgid "(Added in 1.5.4)"
9555 msgstr ""
9556
9557 #. type: =head2
9558 #: ../src/guestfs-actions.pod:2007
9559 msgid "guestfs_get_path"
9560 msgstr ""
9561
9562 #. type: verbatim
9563 #: ../src/guestfs-actions.pod:2009
9564 #, no-wrap
9565 msgid ""
9566 " const char *\n"
9567 " guestfs_get_path (guestfs_h *g);\n"
9568 "\n"
9569 msgstr ""
9570
9571 #. type: textblock
9572 #: ../src/guestfs-actions.pod:2012 ../fish/guestfish-actions.pod:1366
9573 msgid "Return the current search path."
9574 msgstr ""
9575
9576 #. type: textblock
9577 #: ../src/guestfs-actions.pod:2014 ../fish/guestfish-actions.pod:1368
9578 msgid ""
9579 "This is always non-NULL.  If it wasn't set already, then this will return "
9580 "the default path."
9581 msgstr ""
9582
9583 #. type: textblock
9584 #: ../src/guestfs-actions.pod:2017 ../src/guestfs-actions.pod:2046
9585 msgid ""
9586 "This function returns a string, or NULL on error.  The string is owned by "
9587 "the guest handle and must I<not> be freed."
9588 msgstr ""
9589
9590 #. type: =head2
9591 #: ../src/guestfs-actions.pod:2022
9592 msgid "guestfs_get_pid"
9593 msgstr ""
9594
9595 #. type: verbatim
9596 #: ../src/guestfs-actions.pod:2024
9597 #, no-wrap
9598 msgid ""
9599 " int\n"
9600 " guestfs_get_pid (guestfs_h *g);\n"
9601 "\n"
9602 msgstr ""
9603
9604 #. type: textblock
9605 #: ../src/guestfs-actions.pod:2027 ../fish/guestfish-actions.pod:1377
9606 msgid ""
9607 "Return the process ID of the qemu subprocess.  If there is no qemu "
9608 "subprocess, then this will return an error."
9609 msgstr ""
9610
9611 #. type: textblock
9612 #: ../src/guestfs-actions.pod:2030 ../fish/guestfish-actions.pod:1380
9613 msgid "This is an internal call used for debugging and testing."
9614 msgstr ""
9615
9616 #. type: textblock
9617 #: ../src/guestfs-actions.pod:2034
9618 msgid "(Added in 1.0.56)"
9619 msgstr ""
9620
9621 #. type: =head2
9622 #: ../src/guestfs-actions.pod:2036
9623 msgid "guestfs_get_qemu"
9624 msgstr ""
9625
9626 #. type: verbatim
9627 #: ../src/guestfs-actions.pod:2038
9628 #, no-wrap
9629 msgid ""
9630 " const char *\n"
9631 " guestfs_get_qemu (guestfs_h *g);\n"
9632 "\n"
9633 msgstr ""
9634
9635 #. type: textblock
9636 #: ../src/guestfs-actions.pod:2041 ../fish/guestfish-actions.pod:1386
9637 msgid "Return the current qemu binary."
9638 msgstr ""
9639
9640 #. type: textblock
9641 #: ../src/guestfs-actions.pod:2043 ../fish/guestfish-actions.pod:1388
9642 msgid ""
9643 "This is always non-NULL.  If it wasn't set already, then this will return "
9644 "the default qemu binary name."
9645 msgstr ""
9646
9647 #. type: textblock
9648 #: ../src/guestfs-actions.pod:2049 ../src/guestfs-actions.pod:5998
9649 msgid "(Added in 1.0.6)"
9650 msgstr ""
9651
9652 #. type: =head2
9653 #: ../src/guestfs-actions.pod:2051
9654 msgid "guestfs_get_recovery_proc"
9655 msgstr ""
9656
9657 #. type: verbatim
9658 #: ../src/guestfs-actions.pod:2053
9659 #, no-wrap
9660 msgid ""
9661 " int\n"
9662 " guestfs_get_recovery_proc (guestfs_h *g);\n"
9663 "\n"
9664 msgstr ""
9665
9666 #. type: textblock
9667 #: ../src/guestfs-actions.pod:2056 ../fish/guestfish-actions.pod:1395
9668 msgid "Return the recovery process enabled flag."
9669 msgstr ""
9670
9671 #. type: textblock
9672 #: ../src/guestfs-actions.pod:2060 ../src/guestfs-actions.pod:3507
9673 #: ../src/guestfs-actions.pod:3804 ../src/guestfs-actions.pod:4204
9674 #: ../src/guestfs-actions.pod:4236 ../src/guestfs-actions.pod:5257
9675 #: ../src/guestfs-actions.pod:5600 ../src/guestfs-actions.pod:6022
9676 #: ../src/guestfs-actions.pod:6685 ../src/guestfs-actions.pod:6705
9677 #: ../src/guestfs-actions.pod:6897
9678 msgid "(Added in 1.0.77)"
9679 msgstr ""
9680
9681 #. type: =head2
9682 #: ../src/guestfs-actions.pod:2062
9683 msgid "guestfs_get_selinux"
9684 msgstr ""
9685
9686 #. type: verbatim
9687 #: ../src/guestfs-actions.pod:2064
9688 #, no-wrap
9689 msgid ""
9690 " int\n"
9691 " guestfs_get_selinux (guestfs_h *g);\n"
9692 "\n"
9693 msgstr ""
9694
9695 #. type: textblock
9696 #: ../src/guestfs-actions.pod:2067
9697 msgid ""
9698 "This returns the current setting of the selinux flag which is passed to the "
9699 "appliance at boot time.  See C<guestfs_set_selinux>."
9700 msgstr ""
9701
9702 #. type: textblock
9703 #: ../src/guestfs-actions.pod:2075 ../src/guestfs-actions.pod:2138
9704 #: ../src/guestfs-actions.pod:6041 ../src/guestfs-actions.pod:6099
9705 msgid "(Added in 1.0.67)"
9706 msgstr ""
9707
9708 #. type: =head2
9709 #: ../src/guestfs-actions.pod:2077
9710 msgid "guestfs_get_state"
9711 msgstr ""
9712
9713 #. type: verbatim
9714 #: ../src/guestfs-actions.pod:2079
9715 #, no-wrap
9716 msgid ""
9717 " int\n"
9718 " guestfs_get_state (guestfs_h *g);\n"
9719 "\n"
9720 msgstr ""
9721
9722 #. type: textblock
9723 #: ../src/guestfs-actions.pod:2082 ../fish/guestfish-actions.pod:1411
9724 msgid ""
9725 "This returns the current state as an opaque integer.  This is only useful "
9726 "for printing debug and internal error messages."
9727 msgstr ""
9728
9729 #. type: textblock
9730 #: ../src/guestfs-actions.pod:2085 ../src/guestfs-actions.pod:3305
9731 #: ../src/guestfs-actions.pod:3334 ../src/guestfs-actions.pod:3395
9732 #: ../src/guestfs-actions.pod:3422 ../fish/guestfish-actions.pod:1414
9733 #: ../fish/guestfish-actions.pod:2328 ../fish/guestfish-actions.pod:2346
9734 #: ../fish/guestfish-actions.pod:2384 ../fish/guestfish-actions.pod:2400
9735 msgid "For more information on states, see L<guestfs(3)>."
9736 msgstr ""
9737
9738 #. type: =head2
9739 #: ../src/guestfs-actions.pod:2091
9740 msgid "guestfs_get_trace"
9741 msgstr ""
9742
9743 #. type: verbatim
9744 #: ../src/guestfs-actions.pod:2093
9745 #, no-wrap
9746 msgid ""
9747 " int\n"
9748 " guestfs_get_trace (guestfs_h *g);\n"
9749 "\n"
9750 msgstr ""
9751
9752 #. type: textblock
9753 #: ../src/guestfs-actions.pod:2096 ../fish/guestfish-actions.pod:1420
9754 msgid "Return the command trace flag."
9755 msgstr ""
9756
9757 #. type: =head2
9758 #: ../src/guestfs-actions.pod:2102
9759 msgid "guestfs_get_umask"
9760 msgstr ""
9761
9762 #. type: verbatim
9763 #: ../src/guestfs-actions.pod:2104
9764 #, no-wrap
9765 msgid ""
9766 " int\n"
9767 " guestfs_get_umask (guestfs_h *g);\n"
9768 "\n"
9769 msgstr ""
9770
9771 #. type: textblock
9772 #: ../src/guestfs-actions.pod:2107
9773 msgid ""
9774 "Return the current umask.  By default the umask is C<022> unless it has been "
9775 "set by calling C<guestfs_umask>."
9776 msgstr ""
9777
9778 #. type: =head2
9779 #: ../src/guestfs-actions.pod:2114
9780 msgid "guestfs_get_verbose"
9781 msgstr ""
9782
9783 #. type: verbatim
9784 #: ../src/guestfs-actions.pod:2116
9785 #, no-wrap
9786 msgid ""
9787 " int\n"
9788 " guestfs_get_verbose (guestfs_h *g);\n"
9789 "\n"
9790 msgstr ""
9791
9792 #. type: textblock
9793 #: ../src/guestfs-actions.pod:2119 ../fish/guestfish-actions.pod:1433
9794 msgid "This returns the verbose messages flag."
9795 msgstr ""
9796
9797 #. type: =head2
9798 #: ../src/guestfs-actions.pod:2125
9799 msgid "guestfs_getcon"
9800 msgstr ""
9801
9802 #. type: verbatim
9803 #: ../src/guestfs-actions.pod:2127
9804 #, no-wrap
9805 msgid ""
9806 " char *\n"
9807 " guestfs_getcon (guestfs_h *g);\n"
9808 "\n"
9809 msgstr ""
9810
9811 #. type: textblock
9812 #: ../src/guestfs-actions.pod:2130 ../fish/guestfish-actions.pod:1439
9813 msgid "This gets the SELinux security context of the daemon."
9814 msgstr ""
9815
9816 #. type: textblock
9817 #: ../src/guestfs-actions.pod:2132
9818 msgid ""
9819 "See the documentation about SELINUX in L<guestfs(3)>, and C<guestfs_setcon>"
9820 msgstr ""
9821
9822 #. type: =head2
9823 #: ../src/guestfs-actions.pod:2140
9824 msgid "guestfs_getxattr"
9825 msgstr ""
9826
9827 #. type: verbatim
9828 #: ../src/guestfs-actions.pod:2142
9829 #, no-wrap
9830 msgid ""
9831 " char *\n"
9832 " guestfs_getxattr (guestfs_h *g,\n"
9833 "                   const char *path,\n"
9834 "                   const char *name,\n"
9835 "                   size_t *size_r);\n"
9836 "\n"
9837 msgstr ""
9838
9839 #. type: textblock
9840 #: ../src/guestfs-actions.pod:2148
9841 msgid ""
9842 "Get a single extended attribute from file C<path> named C<name>.  This call "
9843 "follows symlinks.  If you want to lookup an extended attribute for the "
9844 "symlink itself, use C<guestfs_lgetxattr>."
9845 msgstr ""
9846
9847 #. type: textblock
9848 #: ../src/guestfs-actions.pod:2152 ../src/guestfs-actions.pod:3521
9849 msgid ""
9850 "Normally it is better to get all extended attributes from a file in one go "
9851 "by calling C<guestfs_getxattrs>.  However some Linux filesystem "
9852 "implementations are buggy and do not provide a way to list out attributes.  "
9853 "For these filesystems (notably ntfs-3g)  you have to know the names of the "
9854 "extended attributes you want in advance and call this function."
9855 msgstr ""
9856
9857 #. type: textblock
9858 #: ../src/guestfs-actions.pod:2159 ../src/guestfs-actions.pod:3528
9859 #: ../fish/guestfish-actions.pod:1459 ../fish/guestfish-actions.pod:2465
9860 msgid ""
9861 "Extended attribute values are blobs of binary data.  If there is no extended "
9862 "attribute named C<name>, this returns an error."
9863 msgstr ""
9864
9865 #. type: textblock
9866 #: ../src/guestfs-actions.pod:2162
9867 msgid "See also: C<guestfs_getxattrs>, C<guestfs_lgetxattr>, L<attr(5)>."
9868 msgstr ""
9869
9870 #. type: textblock
9871 #: ../src/guestfs-actions.pod:2164 ../src/guestfs-actions.pod:2355
9872 #: ../src/guestfs-actions.pod:3533 ../src/guestfs-actions.pod:5250
9873 #: ../src/guestfs-actions.pod:5276 ../src/guestfs-actions.pod:5457
9874 msgid ""
9875 "This function returns a buffer, or NULL on error.  The size of the returned "
9876 "buffer is written to C<*size_r>.  I<The caller must free the returned buffer "
9877 "after use>."
9878 msgstr ""
9879
9880 #. type: textblock
9881 #: ../src/guestfs-actions.pod:2168 ../src/guestfs-actions.pod:3537
9882 msgid "(Added in 1.7.24)"
9883 msgstr ""
9884
9885 #. type: =head2
9886 #: ../src/guestfs-actions.pod:2170
9887 msgid "guestfs_getxattrs"
9888 msgstr ""
9889
9890 #. type: verbatim
9891 #: ../src/guestfs-actions.pod:2172
9892 #, no-wrap
9893 msgid ""
9894 " struct guestfs_xattr_list *\n"
9895 " guestfs_getxattrs (guestfs_h *g,\n"
9896 "                    const char *path);\n"
9897 "\n"
9898 msgstr ""
9899
9900 #. type: textblock
9901 #: ../src/guestfs-actions.pod:2176 ../fish/guestfish-actions.pod:1468
9902 msgid ""
9903 "This call lists the extended attributes of the file or directory C<path>."
9904 msgstr ""
9905
9906 #. type: textblock
9907 #: ../src/guestfs-actions.pod:2179 ../fish/guestfish-actions.pod:1471
9908 msgid ""
9909 "At the system call level, this is a combination of the L<listxattr(2)> and "
9910 "L<getxattr(2)> calls."
9911 msgstr ""
9912
9913 #. type: textblock
9914 #: ../src/guestfs-actions.pod:2182
9915 msgid "See also: C<guestfs_lgetxattrs>, L<attr(5)>."
9916 msgstr ""
9917
9918 #. type: textblock
9919 #: ../src/guestfs-actions.pod:2184 ../src/guestfs-actions.pod:3549
9920 #: ../src/guestfs-actions.pod:4200
9921 msgid ""
9922 "This function returns a C<struct guestfs_xattr_list *>, or NULL if there was "
9923 "an error.  I<The caller must call C<guestfs_free_xattr_list> after use>."
9924 msgstr ""
9925
9926 #. type: textblock
9927 #: ../src/guestfs-actions.pod:2188 ../src/guestfs-actions.pod:3553
9928 #: ../src/guestfs-actions.pod:3718 ../src/guestfs-actions.pod:3754
9929 #: ../src/guestfs-actions.pod:5630 ../src/guestfs-actions.pod:6118
9930 #: ../src/guestfs-actions.pod:7453
9931 msgid "(Added in 1.0.59)"
9932 msgstr ""
9933
9934 #. type: =head2
9935 #: ../src/guestfs-actions.pod:2190
9936 msgid "guestfs_glob_expand"
9937 msgstr ""
9938
9939 #. type: verbatim
9940 #: ../src/guestfs-actions.pod:2192
9941 #, no-wrap
9942 msgid ""
9943 " char **\n"
9944 " guestfs_glob_expand (guestfs_h *g,\n"
9945 "                      const char *pattern);\n"
9946 "\n"
9947 msgstr ""
9948
9949 #. type: textblock
9950 #: ../src/guestfs-actions.pod:2196 ../fish/guestfish-actions.pod:1480
9951 msgid ""
9952 "This command searches for all the pathnames matching C<pattern> according to "
9953 "the wildcard expansion rules used by the shell."
9954 msgstr ""
9955
9956 #. type: textblock
9957 #: ../src/guestfs-actions.pod:2200 ../fish/guestfish-actions.pod:1484
9958 msgid ""
9959 "If no paths match, then this returns an empty list (note: not an error)."
9960 msgstr ""
9961
9962 #. type: textblock
9963 #: ../src/guestfs-actions.pod:2203 ../fish/guestfish-actions.pod:1487
9964 msgid ""
9965 "It is just a wrapper around the C L<glob(3)> function with flags C<GLOB_MARK|"
9966 "GLOB_BRACE>.  See that manual page for more details."
9967 msgstr ""
9968
9969 #. type: textblock
9970 #: ../src/guestfs-actions.pod:2211 ../src/guestfs-actions.pod:6283
9971 #: ../src/guestfs-actions.pod:6300
9972 msgid "(Added in 1.0.50)"
9973 msgstr ""
9974
9975 #. type: =head2
9976 #: ../src/guestfs-actions.pod:2213
9977 msgid "guestfs_grep"
9978 msgstr ""
9979
9980 #. type: verbatim
9981 #: ../src/guestfs-actions.pod:2215
9982 #, no-wrap
9983 msgid ""
9984 " char **\n"
9985 " guestfs_grep (guestfs_h *g,\n"
9986 "               const char *regex,\n"
9987 "               const char *path);\n"
9988 "\n"
9989 msgstr ""
9990
9991 #. type: textblock
9992 #: ../src/guestfs-actions.pod:2220 ../fish/guestfish-actions.pod:1495
9993 msgid "This calls the external C<grep> program and returns the matching lines."
9994 msgstr ""
9995
9996 #. type: =head2
9997 #: ../src/guestfs-actions.pod:2232
9998 msgid "guestfs_grepi"
9999 msgstr ""
10000
10001 #. type: verbatim
10002 #: ../src/guestfs-actions.pod:2234
10003 #, no-wrap
10004 msgid ""
10005 " char **\n"
10006 " guestfs_grepi (guestfs_h *g,\n"
10007 "                const char *regex,\n"
10008 "                const char *path);\n"
10009 "\n"
10010 msgstr ""
10011
10012 #. type: textblock
10013 #: ../src/guestfs-actions.pod:2239 ../fish/guestfish-actions.pod:1505
10014 msgid ""
10015 "This calls the external C<grep -i> program and returns the matching lines."
10016 msgstr ""
10017
10018 #. type: =head2
10019 #: ../src/guestfs-actions.pod:2251
10020 msgid "guestfs_grub_install"
10021 msgstr ""
10022
10023 #. type: verbatim
10024 #: ../src/guestfs-actions.pod:2253
10025 #, no-wrap
10026 msgid ""
10027 " int\n"
10028 " guestfs_grub_install (guestfs_h *g,\n"
10029 "                       const char *root,\n"
10030 "                       const char *device);\n"
10031 "\n"
10032 msgstr ""
10033
10034 #. type: textblock
10035 #: ../src/guestfs-actions.pod:2258 ../fish/guestfish-actions.pod:1515
10036 msgid ""
10037 "This command installs GRUB (the Grand Unified Bootloader) on C<device>, with "
10038 "the root directory being C<root>."
10039 msgstr ""
10040
10041 #. type: textblock
10042 #: ../src/guestfs-actions.pod:2261 ../fish/guestfish-actions.pod:1518
10043 msgid ""
10044 "Note: If grub-install reports the error \"No suitable drive was found in the "
10045 "generated device map.\" it may be that you need to create a C</boot/grub/"
10046 "device.map> file first that contains the mapping between grub device names "
10047 "and Linux device names.  It is usually sufficient to create a file "
10048 "containing:"
10049 msgstr ""
10050
10051 #. type: verbatim
10052 #: ../src/guestfs-actions.pod:2268 ../fish/guestfish-actions.pod:1525
10053 #, no-wrap
10054 msgid ""
10055 " (hd0) /dev/vda\n"
10056 "\n"
10057 msgstr ""
10058
10059 #. type: textblock
10060 #: ../src/guestfs-actions.pod:2270 ../fish/guestfish-actions.pod:1527
10061 msgid "replacing C</dev/vda> with the name of the installation device."
10062 msgstr ""
10063
10064 #. type: textblock
10065 #: ../src/guestfs-actions.pod:2274
10066 msgid "(Added in 1.0.17)"
10067 msgstr ""
10068
10069 #. type: =head2
10070 #: ../src/guestfs-actions.pod:2276
10071 msgid "guestfs_head"
10072 msgstr ""
10073
10074 #. type: verbatim
10075 #: ../src/guestfs-actions.pod:2278
10076 #, no-wrap
10077 msgid ""
10078 " char **\n"
10079 " guestfs_head (guestfs_h *g,\n"
10080 "               const char *path);\n"
10081 "\n"
10082 msgstr ""
10083
10084 #. type: textblock
10085 #: ../src/guestfs-actions.pod:2282 ../fish/guestfish-actions.pod:1533
10086 msgid ""
10087 "This command returns up to the first 10 lines of a file as a list of strings."
10088 msgstr ""
10089
10090 #. type: =head2
10091 #: ../src/guestfs-actions.pod:2294
10092 msgid "guestfs_head_n"
10093 msgstr ""
10094
10095 #. type: verbatim
10096 #: ../src/guestfs-actions.pod:2296
10097 #, no-wrap
10098 msgid ""
10099 " char **\n"
10100 " guestfs_head_n (guestfs_h *g,\n"
10101 "                 int nrlines,\n"
10102 "                 const char *path);\n"
10103 "\n"
10104 msgstr ""
10105
10106 #. type: textblock
10107 #: ../src/guestfs-actions.pod:2301 ../fish/guestfish-actions.pod:1543
10108 msgid ""
10109 "If the parameter C<nrlines> is a positive number, this returns the first "
10110 "C<nrlines> lines of the file C<path>."
10111 msgstr ""
10112
10113 #. type: textblock
10114 #: ../src/guestfs-actions.pod:2304 ../fish/guestfish-actions.pod:1546
10115 msgid ""
10116 "If the parameter C<nrlines> is a negative number, this returns lines from "
10117 "the file C<path>, excluding the last C<nrlines> lines."
10118 msgstr ""
10119
10120 #. type: textblock
10121 #: ../src/guestfs-actions.pod:2307 ../src/guestfs-actions.pod:6580
10122 #: ../fish/guestfish-actions.pod:1549 ../fish/guestfish-actions.pod:4435
10123 msgid "If the parameter C<nrlines> is zero, this returns an empty list."
10124 msgstr ""
10125
10126 #. type: =head2
10127 #: ../src/guestfs-actions.pod:2318
10128 msgid "guestfs_hexdump"
10129 msgstr ""
10130
10131 #. type: verbatim
10132 #: ../src/guestfs-actions.pod:2320
10133 #, no-wrap
10134 msgid ""
10135 " char *\n"
10136 " guestfs_hexdump (guestfs_h *g,\n"
10137 "                  const char *path);\n"
10138 "\n"
10139 msgstr ""
10140
10141 #. type: textblock
10142 #: ../src/guestfs-actions.pod:2324 ../fish/guestfish-actions.pod:1558
10143 msgid ""
10144 "This runs C<hexdump -C> on the given C<path>.  The result is the human-"
10145 "readable, canonical hex dump of the file."
10146 msgstr ""
10147
10148 #. type: textblock
10149 #: ../src/guestfs-actions.pod:2333 ../src/guestfs-actions.pod:6364
10150 #: ../src/guestfs-actions.pod:6419
10151 msgid "(Added in 1.0.22)"
10152 msgstr ""
10153
10154 #. type: =head2
10155 #: ../src/guestfs-actions.pod:2335
10156 msgid "guestfs_initrd_cat"
10157 msgstr ""
10158
10159 #. type: verbatim
10160 #: ../src/guestfs-actions.pod:2337
10161 #, no-wrap
10162 msgid ""
10163 " char *\n"
10164 " guestfs_initrd_cat (guestfs_h *g,\n"
10165 "                     const char *initrdpath,\n"
10166 "                     const char *filename,\n"
10167 "                     size_t *size_r);\n"
10168 "\n"
10169 msgstr ""
10170
10171 #. type: textblock
10172 #: ../src/guestfs-actions.pod:2343 ../fish/guestfish-actions.pod:1568
10173 msgid ""
10174 "This command unpacks the file C<filename> from the initrd file called "
10175 "C<initrdpath>.  The filename must be given I<without> the initial C</> "
10176 "character."
10177 msgstr ""
10178
10179 #. type: textblock
10180 #: ../src/guestfs-actions.pod:2347 ../fish/guestfish-actions.pod:1572
10181 msgid ""
10182 "For example, in guestfish you could use the following command to examine the "
10183 "boot script (usually called C</init>)  contained in a Linux initrd or "
10184 "initramfs image:"
10185 msgstr ""
10186
10187 #. type: verbatim
10188 #: ../src/guestfs-actions.pod:2351 ../fish/guestfish-actions.pod:1576
10189 #, no-wrap
10190 msgid ""
10191 " initrd-cat /boot/initrd-<version>.img init\n"
10192 "\n"
10193 msgstr ""
10194
10195 #. type: textblock
10196 #: ../src/guestfs-actions.pod:2353
10197 msgid "See also C<guestfs_initrd_list>."
10198 msgstr ""
10199
10200 #. type: =head2
10201 #: ../src/guestfs-actions.pod:2364
10202 msgid "guestfs_initrd_list"
10203 msgstr ""
10204
10205 #. type: verbatim
10206 #: ../src/guestfs-actions.pod:2366
10207 #, no-wrap
10208 msgid ""
10209 " char **\n"
10210 " guestfs_initrd_list (guestfs_h *g,\n"
10211 "                      const char *path);\n"
10212 "\n"
10213 msgstr ""
10214
10215 #. type: textblock
10216 #: ../src/guestfs-actions.pod:2370 ../fish/guestfish-actions.pod:1587
10217 msgid "This command lists out files contained in an initrd."
10218 msgstr ""
10219
10220 #. type: textblock
10221 #: ../src/guestfs-actions.pod:2372 ../fish/guestfish-actions.pod:1589
10222 msgid ""
10223 "The files are listed without any initial C</> character.  The files are "
10224 "listed in the order they appear (not necessarily alphabetical).  Directory "
10225 "names are listed as separate items."
10226 msgstr ""
10227
10228 #. type: textblock
10229 #: ../src/guestfs-actions.pod:2376 ../fish/guestfish-actions.pod:1593
10230 msgid ""
10231 "Old Linux kernels (2.4 and earlier) used a compressed ext2 filesystem as "
10232 "initrd.  We I<only> support the newer initramfs format (compressed cpio "
10233 "files)."
10234 msgstr ""
10235
10236 #. type: =head2
10237 #: ../src/guestfs-actions.pod:2386
10238 msgid "guestfs_inotify_add_watch"
10239 msgstr ""
10240
10241 #. type: verbatim
10242 #: ../src/guestfs-actions.pod:2388
10243 #, no-wrap
10244 msgid ""
10245 " int64_t\n"
10246 " guestfs_inotify_add_watch (guestfs_h *g,\n"
10247 "                            const char *path,\n"
10248 "                            int mask);\n"
10249 "\n"
10250 msgstr ""
10251
10252 #. type: textblock
10253 #: ../src/guestfs-actions.pod:2393 ../fish/guestfish-actions.pod:1601
10254 msgid "Watch C<path> for the events listed in C<mask>."
10255 msgstr ""
10256
10257 #. type: textblock
10258 #: ../src/guestfs-actions.pod:2395 ../fish/guestfish-actions.pod:1603
10259 msgid ""
10260 "Note that if C<path> is a directory then events within that directory are "
10261 "watched, but this does I<not> happen recursively (in subdirectories)."
10262 msgstr ""
10263
10264 #. type: textblock
10265 #: ../src/guestfs-actions.pod:2399 ../fish/guestfish-actions.pod:1607
10266 msgid ""
10267 "Note for non-C or non-Linux callers: the inotify events are defined by the "
10268 "Linux kernel ABI and are listed in C</usr/include/sys/inotify.h>."
10269 msgstr ""
10270
10271 #. type: =head2
10272 #: ../src/guestfs-actions.pod:2407
10273 msgid "guestfs_inotify_close"
10274 msgstr ""
10275
10276 #. type: verbatim
10277 #: ../src/guestfs-actions.pod:2409
10278 #, no-wrap
10279 msgid ""
10280 " int\n"
10281 " guestfs_inotify_close (guestfs_h *g);\n"
10282 "\n"
10283 msgstr ""
10284
10285 #. type: textblock
10286 #: ../src/guestfs-actions.pod:2412 ../fish/guestfish-actions.pod:1615
10287 msgid ""
10288 "This closes the inotify handle which was previously opened by inotify_init.  "
10289 "It removes all watches, throws away any pending events, and deallocates all "
10290 "resources."
10291 msgstr ""
10292
10293 #. type: =head2
10294 #: ../src/guestfs-actions.pod:2420
10295 msgid "guestfs_inotify_files"
10296 msgstr ""
10297
10298 #. type: verbatim
10299 #: ../src/guestfs-actions.pod:2422
10300 #, no-wrap
10301 msgid ""
10302 " char **\n"
10303 " guestfs_inotify_files (guestfs_h *g);\n"
10304 "\n"
10305 msgstr ""
10306
10307 #. type: textblock
10308 #: ../src/guestfs-actions.pod:2425
10309 msgid ""
10310 "This function is a helpful wrapper around C<guestfs_inotify_read> which just "
10311 "returns a list of pathnames of objects that were touched.  The returned "
10312 "pathnames are sorted and deduplicated."
10313 msgstr ""
10314
10315 #. type: =head2
10316 #: ../src/guestfs-actions.pod:2435
10317 msgid "guestfs_inotify_init"
10318 msgstr ""
10319
10320 #. type: verbatim
10321 #: ../src/guestfs-actions.pod:2437
10322 #, no-wrap
10323 msgid ""
10324 " int\n"
10325 " guestfs_inotify_init (guestfs_h *g,\n"
10326 "                       int maxevents);\n"
10327 "\n"
10328 msgstr ""
10329
10330 #. type: textblock
10331 #: ../src/guestfs-actions.pod:2441 ../fish/guestfish-actions.pod:1631
10332 msgid ""
10333 "This command creates a new inotify handle.  The inotify subsystem can be "
10334 "used to notify events which happen to objects in the guest filesystem."
10335 msgstr ""
10336
10337 #. type: textblock
10338 #: ../src/guestfs-actions.pod:2445
10339 msgid ""
10340 "C<maxevents> is the maximum number of events which will be queued up between "
10341 "calls to C<guestfs_inotify_read> or C<guestfs_inotify_files>.  If this is "
10342 "passed as C<0>, then the kernel (or previously set)  default is used.  For "
10343 "Linux 2.6.29 the default was 16384 events.  Beyond this limit, the kernel "
10344 "throws away events, but records the fact that it threw them away by setting "
10345 "a flag C<IN_Q_OVERFLOW> in the returned structure list (see "
10346 "C<guestfs_inotify_read>)."
10347 msgstr ""
10348
10349 #. type: textblock
10350 #: ../src/guestfs-actions.pod:2455
10351 msgid ""
10352 "Before any events are generated, you have to add some watches to the "
10353 "internal watch list.  See: C<guestfs_inotify_add_watch>, "
10354 "C<guestfs_inotify_rm_watch> and C<guestfs_inotify_watch_all>."
10355 msgstr ""
10356
10357 #. type: textblock
10358 #: ../src/guestfs-actions.pod:2461
10359 msgid ""
10360 "Queued up events should be read periodically by calling "
10361 "C<guestfs_inotify_read> (or C<guestfs_inotify_files> which is just a helpful "
10362 "wrapper around C<guestfs_inotify_read>).  If you don't read the events out "
10363 "often enough then you risk the internal queue overflowing."
10364 msgstr ""
10365
10366 #. type: textblock
10367 #: ../src/guestfs-actions.pod:2468
10368 msgid ""
10369 "The handle should be closed after use by calling C<guestfs_inotify_close>.  "
10370 "This also removes any watches automatically."
10371 msgstr ""
10372
10373 #. type: textblock
10374 #: ../src/guestfs-actions.pod:2472 ../fish/guestfish-actions.pod:1662
10375 msgid ""
10376 "See also L<inotify(7)> for an overview of the inotify interface as exposed "
10377 "by the Linux kernel, which is roughly what we expose via libguestfs.  Note "
10378 "that there is one global inotify handle per libguestfs instance."
10379 msgstr ""
10380
10381 #. type: =head2
10382 #: ../src/guestfs-actions.pod:2481
10383 msgid "guestfs_inotify_read"
10384 msgstr ""
10385
10386 #. type: verbatim
10387 #: ../src/guestfs-actions.pod:2483
10388 #, no-wrap
10389 msgid ""
10390 " struct guestfs_inotify_event_list *\n"
10391 " guestfs_inotify_read (guestfs_h *g);\n"
10392 "\n"
10393 msgstr ""
10394
10395 #. type: textblock
10396 #: ../src/guestfs-actions.pod:2486 ../fish/guestfish-actions.pod:1671
10397 msgid ""
10398 "Return the complete queue of events that have happened since the previous "
10399 "read call."
10400 msgstr ""
10401
10402 #. type: textblock
10403 #: ../src/guestfs-actions.pod:2489 ../fish/guestfish-actions.pod:1674
10404 msgid "If no events have happened, this returns an empty list."
10405 msgstr ""
10406
10407 #. type: textblock
10408 #: ../src/guestfs-actions.pod:2491 ../fish/guestfish-actions.pod:1676
10409 msgid ""
10410 "I<Note>: In order to make sure that all events have been read, you must call "
10411 "this function repeatedly until it returns an empty list.  The reason is that "
10412 "the call will read events up to the maximum appliance-to-host message size "
10413 "and leave remaining events in the queue."
10414 msgstr ""
10415
10416 #. type: textblock
10417 #: ../src/guestfs-actions.pod:2497
10418 msgid ""
10419 "This function returns a C<struct guestfs_inotify_event_list *>, or NULL if "
10420 "there was an error.  I<The caller must call "
10421 "C<guestfs_free_inotify_event_list> after use>."
10422 msgstr ""
10423
10424 #. type: =head2
10425 #: ../src/guestfs-actions.pod:2503
10426 msgid "guestfs_inotify_rm_watch"
10427 msgstr ""
10428
10429 #. type: verbatim
10430 #: ../src/guestfs-actions.pod:2505
10431 #, no-wrap
10432 msgid ""
10433 " int\n"
10434 " guestfs_inotify_rm_watch (guestfs_h *g,\n"
10435 "                           int wd);\n"
10436 "\n"
10437 msgstr ""
10438
10439 #. type: textblock
10440 #: ../src/guestfs-actions.pod:2509
10441 msgid ""
10442 "Remove a previously defined inotify watch.  See C<guestfs_inotify_add_watch>."
10443 msgstr ""
10444
10445 #. type: =head2
10446 #: ../src/guestfs-actions.pod:2516
10447 msgid "guestfs_inspect_get_arch"
10448 msgstr ""
10449
10450 #. type: verbatim
10451 #: ../src/guestfs-actions.pod:2518
10452 #, no-wrap
10453 msgid ""
10454 " char *\n"
10455 " guestfs_inspect_get_arch (guestfs_h *g,\n"
10456 "                           const char *root);\n"
10457 "\n"
10458 msgstr ""
10459
10460 #. type: textblock
10461 #: ../src/guestfs-actions.pod:2522 ../src/guestfs-actions.pod:2545
10462 #: ../src/guestfs-actions.pod:2638 ../src/guestfs-actions.pod:2682
10463 #: ../src/guestfs-actions.pod:2708 ../src/guestfs-actions.pod:2747
10464 #: ../src/guestfs-actions.pod:2769 ../src/guestfs-actions.pod:2796
10465 #: ../src/guestfs-actions.pod:2817 ../src/guestfs-actions.pod:2860
10466 #: ../src/guestfs-actions.pod:2889 ../src/guestfs-actions.pod:2920
10467 #: ../src/guestfs-actions.pod:2944 ../src/guestfs-actions.pod:2999
10468 #: ../src/guestfs-actions.pod:3041 ../src/guestfs-actions.pod:3062
10469 #: ../src/guestfs-actions.pod:3085 ../src/guestfs-actions.pod:3102
10470 #: ../src/guestfs-actions.pod:3119 ../src/guestfs-actions.pod:3138
10471 msgid ""
10472 "This function should only be called with a root device string as returned by "
10473 "C<guestfs_inspect_os>."
10474 msgstr ""
10475
10476 #. type: textblock
10477 #: ../src/guestfs-actions.pod:2525
10478 msgid ""
10479 "This returns the architecture of the inspected operating system.  The "
10480 "possible return values are listed under C<guestfs_file_architecture>."
10481 msgstr ""
10482
10483 #. type: textblock
10484 #: ../src/guestfs-actions.pod:2529 ../fish/guestfish-actions.pod:1700
10485 msgid ""
10486 "If the architecture could not be determined, then the string C<unknown> is "
10487 "returned."
10488 msgstr ""
10489
10490 #. type: textblock
10491 #: ../src/guestfs-actions.pod:2532 ../src/guestfs-actions.pod:2625
10492 #: ../src/guestfs-actions.pod:2736 ../src/guestfs-actions.pod:2756
10493 #: ../src/guestfs-actions.pod:2784 ../src/guestfs-actions.pod:2876
10494 #: ../src/guestfs-actions.pod:2907 ../src/guestfs-actions.pod:2931
10495 #: ../src/guestfs-actions.pod:2985 ../src/guestfs-actions.pod:3028
10496 #: ../src/guestfs-actions.pod:3051 ../src/guestfs-actions.pod:3072
10497 #: ../src/guestfs-actions.pod:3092 ../src/guestfs-actions.pod:3109
10498 #: ../src/guestfs-actions.pod:3128 ../src/guestfs-actions.pod:3231
10499 #: ../src/guestfs-actions.pod:3272 ../fish/guestfish-actions.pod:1703
10500 #: ../fish/guestfish-actions.pod:1789 ../fish/guestfish-actions.pod:1877
10501 #: ../fish/guestfish-actions.pod:1892 ../fish/guestfish-actions.pod:1913
10502 #: ../fish/guestfish-actions.pod:1983 ../fish/guestfish-actions.pod:2007
10503 #: ../fish/guestfish-actions.pod:2024 ../fish/guestfish-actions.pod:2067
10504 #: ../fish/guestfish-actions.pod:2102 ../fish/guestfish-actions.pod:2118
10505 #: ../fish/guestfish-actions.pod:2134 ../fish/guestfish-actions.pod:2147
10506 #: ../fish/guestfish-actions.pod:2160 ../fish/guestfish-actions.pod:2175
10507 #: ../fish/guestfish-actions.pod:2274 ../fish/guestfish-actions.pod:2308
10508 msgid "Please read L<guestfs(3)/INSPECTION> for more details."
10509 msgstr ""
10510
10511 #. type: =head2
10512 #: ../src/guestfs-actions.pod:2539
10513 msgid "guestfs_inspect_get_distro"
10514 msgstr ""
10515
10516 #. type: verbatim
10517 #: ../src/guestfs-actions.pod:2541
10518 #, no-wrap
10519 msgid ""
10520 " char *\n"
10521 " guestfs_inspect_get_distro (guestfs_h *g,\n"
10522 "                             const char *root);\n"
10523 "\n"
10524 msgstr ""
10525
10526 #. type: textblock
10527 #: ../src/guestfs-actions.pod:2548 ../fish/guestfish-actions.pod:1712
10528 msgid ""
10529 "This returns the distro (distribution) of the inspected operating system."
10530 msgstr ""
10531
10532 #. type: textblock
10533 #: ../src/guestfs-actions.pod:2551 ../fish/guestfish-actions.pod:1715
10534 msgid "Currently defined distros are:"
10535 msgstr ""
10536
10537 #. type: =item
10538 #: ../src/guestfs-actions.pod:2555 ../fish/guestfish-actions.pod:1719
10539 msgid "\"archlinux\""
10540 msgstr "\"archlinux\""
10541
10542 #. type: textblock
10543 #: ../src/guestfs-actions.pod:2557 ../fish/guestfish-actions.pod:1721
10544 msgid "Arch Linux."
10545 msgstr "Arch Linux."
10546
10547 #. type: =item
10548 #: ../src/guestfs-actions.pod:2559 ../fish/guestfish-actions.pod:1723
10549 #, fuzzy
10550 #| msgid "\"gentoo\""
10551 msgid "\"centos\""
10552 msgstr "\"gentoo\""
10553
10554 #. type: textblock
10555 #: ../src/guestfs-actions.pod:2561 ../fish/guestfish-actions.pod:1725
10556 msgid "CentOS."
10557 msgstr ""
10558
10559 #. type: =item
10560 #: ../src/guestfs-actions.pod:2563 ../fish/guestfish-actions.pod:1727
10561 msgid "\"debian\""
10562 msgstr "\"debian\""
10563
10564 #. type: textblock
10565 #: ../src/guestfs-actions.pod:2565 ../fish/guestfish-actions.pod:1729
10566 msgid "Debian."
10567 msgstr "Debian."
10568
10569 #. type: =item
10570 #: ../src/guestfs-actions.pod:2567 ../fish/guestfish-actions.pod:1731
10571 msgid "\"fedora\""
10572 msgstr "\"fedora\""
10573
10574 #. type: textblock
10575 #: ../src/guestfs-actions.pod:2569 ../fish/guestfish-actions.pod:1733
10576 msgid "Fedora."
10577 msgstr "Fedora."
10578
10579 #. type: =item
10580 #: ../src/guestfs-actions.pod:2571 ../fish/guestfish-actions.pod:1735
10581 msgid "\"gentoo\""
10582 msgstr "\"gentoo\""
10583
10584 #. type: textblock
10585 #: ../src/guestfs-actions.pod:2573 ../fish/guestfish-actions.pod:1737
10586 msgid "Gentoo."
10587 msgstr "Gentoo."
10588
10589 #. type: =item
10590 #: ../src/guestfs-actions.pod:2575 ../fish/guestfish-actions.pod:1739
10591 msgid "\"linuxmint\""
10592 msgstr "\"linuxmint\""
10593
10594 #. type: textblock
10595 #: ../src/guestfs-actions.pod:2577 ../fish/guestfish-actions.pod:1741
10596 msgid "Linux Mint."
10597 msgstr "Linux Mint."
10598
10599 #. type: =item
10600 #: ../src/guestfs-actions.pod:2579 ../fish/guestfish-actions.pod:1743
10601 msgid "\"mandriva\""
10602 msgstr "\"mandriva\""
10603
10604 #. type: textblock
10605 #: ../src/guestfs-actions.pod:2581 ../fish/guestfish-actions.pod:1745
10606 msgid "Mandriva."
10607 msgstr "Mandriva."
10608
10609 #. type: =item
10610 #: ../src/guestfs-actions.pod:2583 ../fish/guestfish-actions.pod:1747
10611 msgid "\"meego\""
10612 msgstr "\"meego\""
10613
10614 #. type: textblock
10615 #: ../src/guestfs-actions.pod:2585 ../fish/guestfish-actions.pod:1749
10616 msgid "MeeGo."
10617 msgstr "MeeGo."
10618
10619 #. type: =item
10620 #: ../src/guestfs-actions.pod:2587 ../fish/guestfish-actions.pod:1751
10621 msgid "\"pardus\""
10622 msgstr "\"pardus\""
10623
10624 #. type: textblock
10625 #: ../src/guestfs-actions.pod:2589 ../fish/guestfish-actions.pod:1753
10626 msgid "Pardus."
10627 msgstr "Pardus."
10628
10629 #. type: =item
10630 #: ../src/guestfs-actions.pod:2591 ../fish/guestfish-actions.pod:1755
10631 msgid "\"redhat-based\""
10632 msgstr "\"redhat-based\""
10633
10634 #. type: textblock
10635 #: ../src/guestfs-actions.pod:2593 ../fish/guestfish-actions.pod:1757
10636 msgid "Some Red Hat-derived distro."
10637 msgstr "Дистрибутив, що походить від Red Hat."
10638
10639 #. type: =item
10640 #: ../src/guestfs-actions.pod:2595 ../fish/guestfish-actions.pod:1759
10641 msgid "\"rhel\""
10642 msgstr "\"rhel\""
10643
10644 #. type: textblock
10645 #: ../src/guestfs-actions.pod:2597 ../fish/guestfish-actions.pod:1761
10646 #, fuzzy
10647 #| msgid "Red Hat Enterprise Linux and some derivatives."
10648 msgid "Red Hat Enterprise Linux."
10649 msgstr "Red Hat Enterprise Linux та деякі з похідних дистрибутивів."
10650
10651 #. type: =item
10652 #: ../src/guestfs-actions.pod:2599 ../fish/guestfish-actions.pod:1763
10653 msgid "\"scientificlinux\""
10654 msgstr ""
10655
10656 #. type: textblock
10657 #: ../src/guestfs-actions.pod:2601 ../fish/guestfish-actions.pod:1765
10658 msgid "Scientific Linux."
10659 msgstr ""
10660
10661 #. type: =item
10662 #: ../src/guestfs-actions.pod:2603 ../fish/guestfish-actions.pod:1767
10663 msgid "\"slackware\""
10664 msgstr ""
10665
10666 #. type: textblock
10667 #: ../src/guestfs-actions.pod:2605 ../fish/guestfish-actions.pod:1769
10668 msgid "Slackware."
10669 msgstr ""
10670
10671 #. type: =item
10672 #: ../src/guestfs-actions.pod:2607 ../fish/guestfish-actions.pod:1771
10673 msgid "\"ubuntu\""
10674 msgstr "\"ubuntu\""
10675
10676 #. type: textblock
10677 #: ../src/guestfs-actions.pod:2609 ../fish/guestfish-actions.pod:1773
10678 msgid "Ubuntu."
10679 msgstr "Ubuntu."
10680
10681 #. type: =item
10682 #: ../src/guestfs-actions.pod:2611 ../src/guestfs-actions.pod:2727
10683 #: ../src/guestfs-actions.pod:3019 ../fish/guestfish-actions.pod:1775
10684 #: ../fish/guestfish-actions.pod:1868 ../fish/guestfish-actions.pod:2093
10685 msgid "\"unknown\""
10686 msgstr "\"unknown\""
10687
10688 #. type: textblock
10689 #: ../src/guestfs-actions.pod:2613 ../fish/guestfish-actions.pod:1777
10690 msgid "The distro could not be determined."
10691 msgstr "Дистрибутив, тип якого не вдалося визначити."
10692
10693 #. type: =item
10694 #: ../src/guestfs-actions.pod:2615 ../src/guestfs-actions.pod:3011
10695 #: ../fish/guestfish-actions.pod:1779 ../fish/guestfish-actions.pod:2085
10696 msgid "\"windows\""
10697 msgstr "\"windows\""
10698
10699 #. type: textblock
10700 #: ../src/guestfs-actions.pod:2617 ../fish/guestfish-actions.pod:1781
10701 msgid ""
10702 "Windows does not have distributions.  This string is returned if the OS type "
10703 "is Windows."
10704 msgstr ""
10705
10706 #. type: textblock
10707 #: ../src/guestfs-actions.pod:2622 ../src/guestfs-actions.pod:2733
10708 #: ../src/guestfs-actions.pod:3025 ../fish/guestfish-actions.pod:1786
10709 #: ../fish/guestfish-actions.pod:1874 ../fish/guestfish-actions.pod:2099
10710 msgid ""
10711 "Future versions of libguestfs may return other strings here.  The caller "
10712 "should be prepared to handle any string."
10713 msgstr ""
10714
10715 #. type: =head2
10716 #: ../src/guestfs-actions.pod:2632
10717 msgid "guestfs_inspect_get_drive_mappings"
10718 msgstr ""
10719
10720 #. type: verbatim
10721 #: ../src/guestfs-actions.pod:2634
10722 #, no-wrap
10723 msgid ""
10724 " char **\n"
10725 " guestfs_inspect_get_drive_mappings (guestfs_h *g,\n"
10726 "                                     const char *root);\n"
10727 "\n"
10728 msgstr ""
10729
10730 #. type: textblock
10731 #: ../src/guestfs-actions.pod:2641 ../fish/guestfish-actions.pod:1798
10732 msgid ""
10733 "This call is useful for Windows which uses a primitive system of assigning "
10734 "drive letters (like \"C:\") to partitions.  This inspection API examines the "
10735 "Windows Registry to find out how disks/partitions are mapped to drive "
10736 "letters, and returns a hash table as in the example below:"
10737 msgstr ""
10738
10739 #. type: verbatim
10740 #: ../src/guestfs-actions.pod:2647 ../fish/guestfish-actions.pod:1804
10741 #, no-wrap
10742 msgid ""
10743 " C      =>     /dev/vda2\n"
10744 " E      =>     /dev/vdb1\n"
10745 " F      =>     /dev/vdc1\n"
10746 "\n"
10747 msgstr ""
10748
10749 #. type: textblock
10750 #: ../src/guestfs-actions.pod:2651 ../fish/guestfish-actions.pod:1808
10751 msgid ""
10752 "Note that keys are drive letters.  For Windows, the key is case insensitive "
10753 "and just contains the drive letter, without the customary colon separator "
10754 "character."
10755 msgstr ""
10756
10757 #. type: textblock
10758 #: ../src/guestfs-actions.pod:2655 ../fish/guestfish-actions.pod:1812
10759 msgid ""
10760 "In future we may support other operating systems that also used drive "
10761 "letters, but the keys for those might not be case insensitive and might be "
10762 "longer than 1 character.  For example in OS-9, hard drives were named C<h0>, "
10763 "C<h1> etc."
10764 msgstr ""
10765
10766 #. type: textblock
10767 #: ../src/guestfs-actions.pod:2660 ../fish/guestfish-actions.pod:1817
10768 msgid ""
10769 "For Windows guests, currently only hard drive mappings are returned.  "
10770 "Removable disks (eg. DVD-ROMs) are ignored."
10771 msgstr ""
10772
10773 #. type: textblock
10774 #: ../src/guestfs-actions.pod:2663 ../fish/guestfish-actions.pod:1820
10775 msgid ""
10776 "For guests that do not use drive mappings, or if the drive mappings could "
10777 "not be determined, this returns an empty hash table."
10778 msgstr ""
10779
10780 #. type: textblock
10781 #: ../src/guestfs-actions.pod:2666
10782 msgid ""
10783 "Please read L<guestfs(3)/INSPECTION> for more details.  See also "
10784 "C<guestfs_inspect_get_mountpoints>, C<guestfs_inspect_get_filesystems>."
10785 msgstr ""
10786
10787 #. type: textblock
10788 #: ../src/guestfs-actions.pod:2670 ../src/guestfs-actions.pod:2846
10789 #: ../src/guestfs-actions.pod:3606 ../src/guestfs-actions.pod:4816
10790 #: ../src/guestfs-actions.pod:6721
10791 msgid ""
10792 "This function returns a NULL-terminated array of strings, or NULL if there "
10793 "was an error.  The array of strings will always have length C<2n+1>, where "
10794 "C<n> keys and values alternate, followed by the trailing NULL entry.  I<The "
10795 "caller must free the strings and the array after use>."
10796 msgstr ""
10797
10798 #. type: =head2
10799 #: ../src/guestfs-actions.pod:2676
10800 msgid "guestfs_inspect_get_filesystems"
10801 msgstr ""
10802
10803 #. type: verbatim
10804 #: ../src/guestfs-actions.pod:2678
10805 #, no-wrap
10806 msgid ""
10807 " char **\n"
10808 " guestfs_inspect_get_filesystems (guestfs_h *g,\n"
10809 "                                  const char *root);\n"
10810 "\n"
10811 msgstr ""
10812
10813 #. type: textblock
10814 #: ../src/guestfs-actions.pod:2685 ../fish/guestfish-actions.pod:1834
10815 msgid ""
10816 "This returns a list of all the filesystems that we think are associated with "
10817 "this operating system.  This includes the root filesystem, other ordinary "
10818 "filesystems, and non-mounted devices like swap partitions."
10819 msgstr ""
10820
10821 #. type: textblock
10822 #: ../src/guestfs-actions.pod:2690 ../fish/guestfish-actions.pod:1839
10823 msgid ""
10824 "In the case of a multi-boot virtual machine, it is possible for a filesystem "
10825 "to be shared between operating systems."
10826 msgstr ""
10827
10828 #. type: textblock
10829 #: ../src/guestfs-actions.pod:2693
10830 msgid ""
10831 "Please read L<guestfs(3)/INSPECTION> for more details.  See also "
10832 "C<guestfs_inspect_get_mountpoints>."
10833 msgstr ""
10834
10835 #. type: =head2
10836 #: ../src/guestfs-actions.pod:2702
10837 msgid "guestfs_inspect_get_format"
10838 msgstr ""
10839
10840 #. type: verbatim
10841 #: ../src/guestfs-actions.pod:2704
10842 #, no-wrap
10843 msgid ""
10844 " char *\n"
10845 " guestfs_inspect_get_format (guestfs_h *g,\n"
10846 "                             const char *root);\n"
10847 "\n"
10848 msgstr ""
10849
10850 #. type: textblock
10851 #: ../src/guestfs-actions.pod:2711 ../fish/guestfish-actions.pod:1852
10852 msgid ""
10853 "This returns the format of the inspected operating system.  You can use it "
10854 "to detect install images, live CDs and similar."
10855 msgstr ""
10856
10857 #. type: textblock
10858 #: ../src/guestfs-actions.pod:2714 ../fish/guestfish-actions.pod:1855
10859 msgid "Currently defined formats are:"
10860 msgstr ""
10861
10862 #. type: =item
10863 #: ../src/guestfs-actions.pod:2718 ../fish/guestfish-actions.pod:1859
10864 msgid "\"installed\""
10865 msgstr "\"installed\""
10866
10867 #. type: textblock
10868 #: ../src/guestfs-actions.pod:2720 ../fish/guestfish-actions.pod:1861
10869 msgid "This is an installed operating system."
10870 msgstr "Це встановлена операційна система."
10871
10872 #. type: =item
10873 #: ../src/guestfs-actions.pod:2722 ../fish/guestfish-actions.pod:1863
10874 msgid "\"installer\""
10875 msgstr ""
10876
10877 #. type: textblock
10878 #: ../src/guestfs-actions.pod:2724 ../fish/guestfish-actions.pod:1865
10879 msgid ""
10880 "The disk image being inspected is not an installed operating system, but a "
10881 "I<bootable> install disk, live CD, or similar."
10882 msgstr ""
10883
10884 #. type: textblock
10885 #: ../src/guestfs-actions.pod:2729 ../fish/guestfish-actions.pod:1870
10886 msgid "The format of this disk image is not known."
10887 msgstr ""
10888
10889 #. type: =head2
10890 #: ../src/guestfs-actions.pod:2741
10891 msgid "guestfs_inspect_get_hostname"
10892 msgstr ""
10893
10894 #. type: verbatim
10895 #: ../src/guestfs-actions.pod:2743
10896 #, no-wrap
10897 msgid ""
10898 " char *\n"
10899 " guestfs_inspect_get_hostname (guestfs_h *g,\n"
10900 "                               const char *root);\n"
10901 "\n"
10902 msgstr ""
10903
10904 #. type: textblock
10905 #: ../src/guestfs-actions.pod:2750 ../fish/guestfish-actions.pod:1886
10906 msgid ""
10907 "This function returns the hostname of the operating system as found by "
10908 "inspection of the guest's configuration files."
10909 msgstr ""
10910
10911 #. type: textblock
10912 #: ../src/guestfs-actions.pod:2753 ../fish/guestfish-actions.pod:1889
10913 msgid ""
10914 "If the hostname could not be determined, then the string C<unknown> is "
10915 "returned."
10916 msgstr ""
10917
10918 #. type: textblock
10919 #: ../src/guestfs-actions.pod:2761
10920 msgid "(Added in 1.7.9)"
10921 msgstr ""
10922
10923 #. type: =head2
10924 #: ../src/guestfs-actions.pod:2763
10925 msgid "guestfs_inspect_get_major_version"
10926 msgstr ""
10927
10928 #. type: verbatim
10929 #: ../src/guestfs-actions.pod:2765
10930 #, no-wrap
10931 msgid ""
10932 " int\n"
10933 " guestfs_inspect_get_major_version (guestfs_h *g,\n"
10934 "                                    const char *root);\n"
10935 "\n"
10936 msgstr ""
10937
10938 #. type: textblock
10939 #: ../src/guestfs-actions.pod:2772 ../fish/guestfish-actions.pod:1901
10940 msgid ""
10941 "This returns the major version number of the inspected operating system."
10942 msgstr ""
10943
10944 #. type: textblock
10945 #: ../src/guestfs-actions.pod:2775 ../fish/guestfish-actions.pod:1904
10946 msgid ""
10947 "Windows uses a consistent versioning scheme which is I<not> reflected in the "
10948 "popular public names used by the operating system.  Notably the operating "
10949 "system known as \"Windows 7\" is really version 6.1 (ie. major = 6, minor = "
10950 "1).  You can find out the real versions corresponding to releases of Windows "
10951 "by consulting Wikipedia or MSDN."
10952 msgstr ""
10953
10954 #. type: textblock
10955 #: ../src/guestfs-actions.pod:2782 ../src/guestfs-actions.pod:2802
10956 #: ../fish/guestfish-actions.pod:1911 ../fish/guestfish-actions.pod:1925
10957 msgid "If the version could not be determined, then C<0> is returned."
10958 msgstr ""
10959
10960 #. type: =head2
10961 #: ../src/guestfs-actions.pod:2790
10962 msgid "guestfs_inspect_get_minor_version"
10963 msgstr ""
10964
10965 #. type: verbatim
10966 #: ../src/guestfs-actions.pod:2792
10967 #, no-wrap
10968 msgid ""
10969 " int\n"
10970 " guestfs_inspect_get_minor_version (guestfs_h *g,\n"
10971 "                                    const char *root);\n"
10972 "\n"
10973 msgstr ""
10974
10975 #. type: textblock
10976 #: ../src/guestfs-actions.pod:2799 ../fish/guestfish-actions.pod:1922
10977 msgid ""
10978 "This returns the minor version number of the inspected operating system."
10979 msgstr ""
10980
10981 #. type: textblock
10982 #: ../src/guestfs-actions.pod:2804
10983 msgid ""
10984 "Please read L<guestfs(3)/INSPECTION> for more details.  See also "
10985 "C<guestfs_inspect_get_major_version>."
10986 msgstr ""
10987
10988 #. type: =head2
10989 #: ../src/guestfs-actions.pod:2811
10990 msgid "guestfs_inspect_get_mountpoints"
10991 msgstr ""
10992
10993 #. type: verbatim
10994 #: ../src/guestfs-actions.pod:2813
10995 #, no-wrap
10996 msgid ""
10997 " char **\n"
10998 " guestfs_inspect_get_mountpoints (guestfs_h *g,\n"
10999 "                                  const char *root);\n"
11000 "\n"
11001 msgstr ""
11002
11003 #. type: textblock
11004 #: ../src/guestfs-actions.pod:2820 ../fish/guestfish-actions.pod:1937
11005 msgid ""
11006 "This returns a hash of where we think the filesystems associated with this "
11007 "operating system should be mounted.  Callers should note that this is at "
11008 "best an educated guess made by reading configuration files such as C</etc/"
11009 "fstab>.  I<In particular note> that this may return filesystems which are "
11010 "non-existent or not mountable and callers should be prepared to handle or "
11011 "ignore failures if they try to mount them."
11012 msgstr ""
11013
11014 #. type: textblock
11015 #: ../src/guestfs-actions.pod:2829 ../fish/guestfish-actions.pod:1946
11016 msgid ""
11017 "Each element in the returned hashtable has a key which is the path of the "
11018 "mountpoint (eg. C</boot>) and a value which is the filesystem that would be "
11019 "mounted there (eg. C</dev/sda1>)."
11020 msgstr ""
11021
11022 #. type: textblock
11023 #: ../src/guestfs-actions.pod:2834 ../fish/guestfish-actions.pod:1951
11024 msgid ""
11025 "Non-mounted devices such as swap devices are I<not> returned in this list."
11026 msgstr ""
11027
11028 #. type: textblock
11029 #: ../src/guestfs-actions.pod:2837
11030 msgid ""
11031 "For operating systems like Windows which still use drive letters, this call "
11032 "will only return an entry for the first drive \"mounted on\" C</>.  For "
11033 "information about the mapping of drive letters to partitions, see "
11034 "C<guestfs_inspect_get_drive_mappings>."
11035 msgstr ""
11036
11037 #. type: textblock
11038 #: ../src/guestfs-actions.pod:2843
11039 msgid ""
11040 "Please read L<guestfs(3)/INSPECTION> for more details.  See also "
11041 "C<guestfs_inspect_get_filesystems>."
11042 msgstr ""
11043
11044 #. type: =head2
11045 #: ../src/guestfs-actions.pod:2854
11046 msgid "guestfs_inspect_get_package_format"
11047 msgstr ""
11048
11049 #. type: verbatim
11050 #: ../src/guestfs-actions.pod:2856
11051 #, no-wrap
11052 msgid ""
11053 " char *\n"
11054 " guestfs_inspect_get_package_format (guestfs_h *g,\n"
11055 "                                     const char *root);\n"
11056 "\n"
11057 msgstr ""
11058
11059 #. type: textblock
11060 #: ../src/guestfs-actions.pod:2863
11061 msgid ""
11062 "This function and C<guestfs_inspect_get_package_management> return the "
11063 "package format and package management tool used by the inspected operating "
11064 "system.  For example for Fedora these functions would return C<rpm> (package "
11065 "format) and C<yum> (package management)."
11066 msgstr ""
11067
11068 #. type: textblock
11069 #: ../src/guestfs-actions.pod:2869 ../fish/guestfish-actions.pod:1976
11070 msgid ""
11071 "This returns the string C<unknown> if we could not determine the package "
11072 "format I<or> if the operating system does not have a real packaging system "
11073 "(eg. Windows)."
11074 msgstr ""
11075
11076 #. type: textblock
11077 #: ../src/guestfs-actions.pod:2873 ../fish/guestfish-actions.pod:1980
11078 msgid ""
11079 "Possible strings include: C<rpm>, C<deb>, C<ebuild>, C<pisi>, C<pacman>.  "
11080 "Future versions of libguestfs may return other strings."
11081 msgstr ""
11082
11083 #. type: textblock
11084 #: ../src/guestfs-actions.pod:2881 ../src/guestfs-actions.pod:2912
11085 msgid "(Added in 1.7.5)"
11086 msgstr ""
11087
11088 #. type: =head2
11089 #: ../src/guestfs-actions.pod:2883
11090 msgid "guestfs_inspect_get_package_management"
11091 msgstr ""
11092
11093 #. type: verbatim
11094 #: ../src/guestfs-actions.pod:2885
11095 #, no-wrap
11096 msgid ""
11097 " char *\n"
11098 " guestfs_inspect_get_package_management (guestfs_h *g,\n"
11099 "                                         const char *root);\n"
11100 "\n"
11101 msgstr ""
11102
11103 #. type: textblock
11104 #: ../src/guestfs-actions.pod:2892
11105 msgid ""
11106 "C<guestfs_inspect_get_package_format> and this function return the package "
11107 "format and package management tool used by the inspected operating system.  "
11108 "For example for Fedora these functions would return C<rpm> (package format) "
11109 "and C<yum> (package management)."
11110 msgstr ""
11111
11112 #. type: textblock
11113 #: ../src/guestfs-actions.pod:2898 ../fish/guestfish-actions.pod:1998
11114 msgid ""
11115 "This returns the string C<unknown> if we could not determine the package "
11116 "management tool I<or> if the operating system does not have a real packaging "
11117 "system (eg. Windows)."
11118 msgstr ""
11119
11120 #. type: textblock
11121 #: ../src/guestfs-actions.pod:2902 ../fish/guestfish-actions.pod:2002
11122 msgid ""
11123 "Possible strings include: C<yum>, C<up2date>, C<apt> (for all Debian "
11124 "derivatives), C<portage>, C<pisi>, C<pacman>, C<urpmi>.  Future versions of "
11125 "libguestfs may return other strings."
11126 msgstr ""
11127
11128 #. type: =head2
11129 #: ../src/guestfs-actions.pod:2914
11130 msgid "guestfs_inspect_get_product_name"
11131 msgstr ""
11132
11133 #. type: verbatim
11134 #: ../src/guestfs-actions.pod:2916
11135 #, no-wrap
11136 msgid ""
11137 " char *\n"
11138 " guestfs_inspect_get_product_name (guestfs_h *g,\n"
11139 "                                   const char *root);\n"
11140 "\n"
11141 msgstr ""
11142
11143 #. type: textblock
11144 #: ../src/guestfs-actions.pod:2923 ../fish/guestfish-actions.pod:2016
11145 msgid ""
11146 "This returns the product name of the inspected operating system.  The "
11147 "product name is generally some freeform string which can be displayed to the "
11148 "user, but should not be parsed by programs."
11149 msgstr ""
11150
11151 #. type: textblock
11152 #: ../src/guestfs-actions.pod:2928 ../fish/guestfish-actions.pod:2021
11153 msgid ""
11154 "If the product name could not be determined, then the string C<unknown> is "
11155 "returned."
11156 msgstr ""
11157
11158 #. type: =head2
11159 #: ../src/guestfs-actions.pod:2938
11160 msgid "guestfs_inspect_get_product_variant"
11161 msgstr ""
11162
11163 #. type: verbatim
11164 #: ../src/guestfs-actions.pod:2940
11165 #, no-wrap
11166 msgid ""
11167 " char *\n"
11168 " guestfs_inspect_get_product_variant (guestfs_h *g,\n"
11169 "                                      const char *root);\n"
11170 "\n"
11171 msgstr ""
11172
11173 #. type: textblock
11174 #: ../src/guestfs-actions.pod:2947 ../fish/guestfish-actions.pod:2033
11175 #, fuzzy
11176 #| msgid "This is an installed operating system."
11177 msgid "This returns the product variant of the inspected operating system."
11178 msgstr "Це встановлена операційна система."
11179
11180 #. type: textblock
11181 #: ../src/guestfs-actions.pod:2950 ../fish/guestfish-actions.pod:2036
11182 msgid ""
11183 "For Windows guests, this returns the contents of the Registry key C<HKLM"
11184 "\\Software\\Microsoft\\Windows NT\\CurrentVersion> C<InstallationType> which "
11185 "is usually a string such as C<Client> or C<Server> (other values are "
11186 "possible).  This can be used to distinguish consumer and enterprise versions "
11187 "of Windows that have the same version number (for example, Windows 7 and "
11188 "Windows 2008 Server are both version 6.1, but the former is C<Client> and "
11189 "the latter is C<Server>)."
11190 msgstr ""
11191
11192 #. type: textblock
11193 #: ../src/guestfs-actions.pod:2959 ../fish/guestfish-actions.pod:2045
11194 msgid ""
11195 "For enterprise Linux guests, in future we intend this to return the product "
11196 "variant such as C<Desktop>, C<Server> and so on.  But this is not "
11197 "implemented at present."
11198 msgstr ""
11199
11200 #. type: textblock
11201 #: ../src/guestfs-actions.pod:2963 ../fish/guestfish-actions.pod:2049
11202 msgid ""
11203 "If the product variant could not be determined, then the string C<unknown> "
11204 "is returned."
11205 msgstr ""
11206
11207 #. type: textblock
11208 #: ../src/guestfs-actions.pod:2966
11209 msgid ""
11210 "Please read L<guestfs(3)/INSPECTION> for more details.  See also "
11211 "C<guestfs_inspect_get_product_name>, C<guestfs_inspect_get_major_version>."
11212 msgstr ""
11213
11214 #. type: =head2
11215 #: ../src/guestfs-actions.pod:2973
11216 msgid "guestfs_inspect_get_roots"
11217 msgstr ""
11218
11219 #. type: verbatim
11220 #: ../src/guestfs-actions.pod:2975
11221 #, no-wrap
11222 msgid ""
11223 " char **\n"
11224 " guestfs_inspect_get_roots (guestfs_h *g);\n"
11225 "\n"
11226 msgstr ""
11227
11228 #. type: textblock
11229 #: ../src/guestfs-actions.pod:2978
11230 msgid ""
11231 "This function is a convenient way to get the list of root devices, as "
11232 "returned from a previous call to C<guestfs_inspect_os>, but without redoing "
11233 "the whole inspection process."
11234 msgstr ""
11235
11236 #. type: textblock
11237 #: ../src/guestfs-actions.pod:2982
11238 msgid ""
11239 "This returns an empty list if either no root devices were found or the "
11240 "caller has not called C<guestfs_inspect_os>."
11241 msgstr ""
11242
11243 #. type: textblock
11244 #: ../src/guestfs-actions.pod:2991
11245 msgid "(Added in 1.7.3)"
11246 msgstr ""
11247
11248 #. type: =head2
11249 #: ../src/guestfs-actions.pod:2993
11250 msgid "guestfs_inspect_get_type"
11251 msgstr ""
11252
11253 #. type: verbatim
11254 #: ../src/guestfs-actions.pod:2995
11255 #, no-wrap
11256 msgid ""
11257 " char *\n"
11258 " guestfs_inspect_get_type (guestfs_h *g,\n"
11259 "                           const char *root);\n"
11260 "\n"
11261 msgstr ""
11262
11263 #. type: textblock
11264 #: ../src/guestfs-actions.pod:3002 ../fish/guestfish-actions.pod:2076
11265 msgid ""
11266 "This returns the type of the inspected operating system.  Currently defined "
11267 "types are:"
11268 msgstr ""
11269
11270 #. type: =item
11271 #: ../src/guestfs-actions.pod:3007 ../fish/guestfish-actions.pod:2081
11272 msgid "\"linux\""
11273 msgstr "\"linux\""
11274
11275 #. type: textblock
11276 #: ../src/guestfs-actions.pod:3009 ../fish/guestfish-actions.pod:2083
11277 msgid "Any Linux-based operating system."
11278 msgstr ""
11279
11280 #. type: textblock
11281 #: ../src/guestfs-actions.pod:3013 ../fish/guestfish-actions.pod:2087
11282 msgid "Any Microsoft Windows operating system."
11283 msgstr ""
11284
11285 #. type: =item
11286 #: ../src/guestfs-actions.pod:3015 ../fish/guestfish-actions.pod:2089
11287 msgid "\"freebsd\""
11288 msgstr "\"freebsd\""
11289
11290 #. type: textblock
11291 #: ../src/guestfs-actions.pod:3017 ../fish/guestfish-actions.pod:2091
11292 msgid "FreeBSD."
11293 msgstr "FreeBSD."
11294
11295 #. type: textblock
11296 #: ../src/guestfs-actions.pod:3021 ../fish/guestfish-actions.pod:2095
11297 msgid "The operating system type could not be determined."
11298 msgstr ""
11299
11300 #. type: =head2
11301 #: ../src/guestfs-actions.pod:3035
11302 msgid "guestfs_inspect_get_windows_current_control_set"
11303 msgstr ""
11304
11305 #. type: verbatim
11306 #: ../src/guestfs-actions.pod:3037
11307 #, no-wrap
11308 msgid ""
11309 " char *\n"
11310 " guestfs_inspect_get_windows_current_control_set (guestfs_h *g,\n"
11311 "                                                  const char *root);\n"
11312 "\n"
11313 msgstr ""
11314
11315 #. type: textblock
11316 #: ../src/guestfs-actions.pod:3044 ../fish/guestfish-actions.pod:2111
11317 msgid ""
11318 "This returns the Windows CurrentControlSet of the inspected guest.  The "
11319 "CurrentControlSet is a registry key name such as C<ControlSet001>."
11320 msgstr ""
11321
11322 #. type: textblock
11323 #: ../src/guestfs-actions.pod:3047 ../fish/guestfish-actions.pod:2114
11324 msgid ""
11325 "This call assumes that the guest is Windows and that the Registry could be "
11326 "examined by inspection.  If this is not the case then an error is returned."
11327 msgstr ""
11328
11329 #. type: =head2
11330 #: ../src/guestfs-actions.pod:3056
11331 msgid "guestfs_inspect_get_windows_systemroot"
11332 msgstr ""
11333
11334 #. type: verbatim
11335 #: ../src/guestfs-actions.pod:3058
11336 #, no-wrap
11337 msgid ""
11338 " char *\n"
11339 " guestfs_inspect_get_windows_systemroot (guestfs_h *g,\n"
11340 "                                         const char *root);\n"
11341 "\n"
11342 msgstr ""
11343
11344 #. type: textblock
11345 #: ../src/guestfs-actions.pod:3065 ../fish/guestfish-actions.pod:2127
11346 msgid ""
11347 "This returns the Windows systemroot of the inspected guest.  The systemroot "
11348 "is a directory path such as C</WINDOWS>."
11349 msgstr ""
11350
11351 #. type: textblock
11352 #: ../src/guestfs-actions.pod:3068 ../fish/guestfish-actions.pod:2130
11353 msgid ""
11354 "This call assumes that the guest is Windows and that the systemroot could be "
11355 "determined by inspection.  If this is not the case then an error is returned."
11356 msgstr ""
11357
11358 #. type: textblock
11359 #: ../src/guestfs-actions.pod:3077
11360 msgid "(Added in 1.5.25)"
11361 msgstr ""
11362
11363 #. type: =head2
11364 #: ../src/guestfs-actions.pod:3079
11365 msgid "guestfs_inspect_is_live"
11366 msgstr ""
11367
11368 #. type: verbatim
11369 #: ../src/guestfs-actions.pod:3081
11370 #, no-wrap
11371 msgid ""
11372 " int\n"
11373 " guestfs_inspect_is_live (guestfs_h *g,\n"
11374 "                          const char *root);\n"
11375 "\n"
11376 msgstr ""
11377
11378 #. type: textblock
11379 #: ../src/guestfs-actions.pod:3088
11380 msgid ""
11381 "If C<guestfs_inspect_get_format> returns C<installer> (this is an install "
11382 "disk), then this returns true if a live image was detected on the disk."
11383 msgstr ""
11384
11385 #. type: =head2
11386 #: ../src/guestfs-actions.pod:3096
11387 msgid "guestfs_inspect_is_multipart"
11388 msgstr ""
11389
11390 #. type: verbatim
11391 #: ../src/guestfs-actions.pod:3098
11392 #, no-wrap
11393 msgid ""
11394 " int\n"
11395 " guestfs_inspect_is_multipart (guestfs_h *g,\n"
11396 "                               const char *root);\n"
11397 "\n"
11398 msgstr ""
11399
11400 #. type: textblock
11401 #: ../src/guestfs-actions.pod:3105
11402 msgid ""
11403 "If C<guestfs_inspect_get_format> returns C<installer> (this is an install "
11404 "disk), then this returns true if the disk is part of a set."
11405 msgstr ""
11406
11407 #. type: =head2
11408 #: ../src/guestfs-actions.pod:3113
11409 msgid "guestfs_inspect_is_netinst"
11410 msgstr ""
11411
11412 #. type: verbatim
11413 #: ../src/guestfs-actions.pod:3115
11414 #, no-wrap
11415 msgid ""
11416 " int\n"
11417 " guestfs_inspect_is_netinst (guestfs_h *g,\n"
11418 "                             const char *root);\n"
11419 "\n"
11420 msgstr ""
11421
11422 #. type: textblock
11423 #: ../src/guestfs-actions.pod:3122
11424 msgid ""
11425 "If C<guestfs_inspect_get_format> returns C<installer> (this is an install "
11426 "disk), then this returns true if the disk is a network installer, ie. not a "
11427 "self-contained install CD but one which is likely to require network access "
11428 "to complete the install."
11429 msgstr ""
11430
11431 #. type: =head2
11432 #: ../src/guestfs-actions.pod:3132
11433 msgid "guestfs_inspect_list_applications"
11434 msgstr ""
11435
11436 #. type: verbatim
11437 #: ../src/guestfs-actions.pod:3134
11438 #, no-wrap
11439 msgid ""
11440 " struct guestfs_application_list *\n"
11441 " guestfs_inspect_list_applications (guestfs_h *g,\n"
11442 "                                    const char *root);\n"
11443 "\n"
11444 msgstr ""
11445
11446 #. type: textblock
11447 #: ../src/guestfs-actions.pod:3141 ../fish/guestfish-actions.pod:2184
11448 msgid "Return the list of applications installed in the operating system."
11449 msgstr ""
11450
11451 #. type: textblock
11452 #: ../src/guestfs-actions.pod:3143
11453 msgid ""
11454 "I<Note:> This call works differently from other parts of the inspection "
11455 "API.  You have to call C<guestfs_inspect_os>, then "
11456 "C<guestfs_inspect_get_mountpoints>, then mount up the disks, before calling "
11457 "this.  Listing applications is a significantly more difficult operation "
11458 "which requires access to the full filesystem.  Also note that unlike the "
11459 "other C<guestfs_inspect_get_*> calls which are just returning data cached in "
11460 "the libguestfs handle, this call actually reads parts of the mounted "
11461 "filesystems during the call."
11462 msgstr ""
11463
11464 #. type: textblock
11465 #: ../src/guestfs-actions.pod:3153 ../fish/guestfish-actions.pod:2196
11466 msgid ""
11467 "This returns an empty list if the inspection code was not able to determine "
11468 "the list of applications."
11469 msgstr ""
11470
11471 #. type: textblock
11472 #: ../src/guestfs-actions.pod:3156 ../fish/guestfish-actions.pod:2199
11473 msgid "The application structure contains the following fields:"
11474 msgstr ""
11475
11476 #. type: =item
11477 #: ../src/guestfs-actions.pod:3160 ../fish/guestfish-actions.pod:2203
11478 msgid "C<app_name>"
11479 msgstr "C<app_name>"
11480
11481 #. type: textblock
11482 #: ../src/guestfs-actions.pod:3162 ../fish/guestfish-actions.pod:2205
11483 msgid ""
11484 "The name of the application.  For Red Hat-derived and Debian-derived Linux "
11485 "guests, this is the package name."
11486 msgstr ""
11487
11488 #. type: =item
11489 #: ../src/guestfs-actions.pod:3165 ../fish/guestfish-actions.pod:2208
11490 msgid "C<app_display_name>"
11491 msgstr "C<app_display_name>"
11492
11493 #. type: textblock
11494 #: ../src/guestfs-actions.pod:3167 ../fish/guestfish-actions.pod:2210
11495 msgid ""
11496 "The display name of the application, sometimes localized to the install "
11497 "language of the guest operating system."
11498 msgstr ""
11499
11500 #. type: textblock
11501 #: ../src/guestfs-actions.pod:3170 ../fish/guestfish-actions.pod:2213
11502 msgid ""
11503 "If unavailable this is returned as an empty string C<\"\">.  Callers needing "
11504 "to display something can use C<app_name> instead."
11505 msgstr ""
11506
11507 #. type: =item
11508 #: ../src/guestfs-actions.pod:3173 ../fish/guestfish-actions.pod:2216
11509 msgid "C<app_epoch>"
11510 msgstr "C<app_epoch>"
11511
11512 #. type: textblock
11513 #: ../src/guestfs-actions.pod:3175 ../fish/guestfish-actions.pod:2218
11514 msgid ""
11515 "For package managers which use epochs, this contains the epoch of the "
11516 "package (an integer).  If unavailable, this is returned as C<0>."
11517 msgstr ""
11518
11519 #. type: =item
11520 #: ../src/guestfs-actions.pod:3178 ../fish/guestfish-actions.pod:2221
11521 msgid "C<app_version>"
11522 msgstr "C<app_version>"
11523
11524 #. type: textblock
11525 #: ../src/guestfs-actions.pod:3180 ../fish/guestfish-actions.pod:2223
11526 msgid ""
11527 "The version string of the application or package.  If unavailable this is "
11528 "returned as an empty string C<\"\">."
11529 msgstr ""
11530
11531 #. type: =item
11532 #: ../src/guestfs-actions.pod:3183 ../fish/guestfish-actions.pod:2226
11533 msgid "C<app_release>"
11534 msgstr "C<app_release>"
11535
11536 #. type: textblock
11537 #: ../src/guestfs-actions.pod:3185 ../fish/guestfish-actions.pod:2228
11538 msgid ""
11539 "The release string of the application or package, for package managers that "
11540 "use this.  If unavailable this is returned as an empty string C<\"\">."
11541 msgstr ""
11542
11543 #. type: =item
11544 #: ../src/guestfs-actions.pod:3189 ../fish/guestfish-actions.pod:2232
11545 msgid "C<app_install_path>"
11546 msgstr "C<app_install_path>"
11547
11548 #. type: textblock
11549 #: ../src/guestfs-actions.pod:3191 ../fish/guestfish-actions.pod:2234
11550 msgid ""
11551 "The installation path of the application (on operating systems such as "
11552 "Windows which use installation paths).  This path is in the format used by "
11553 "the guest operating system, it is not a libguestfs path."
11554 msgstr ""
11555
11556 #. type: textblock
11557 #: ../src/guestfs-actions.pod:3196 ../fish/guestfish-actions.pod:2239
11558 msgid "If unavailable this is returned as an empty string C<\"\">."
11559 msgstr ""
11560
11561 #. type: =item
11562 #: ../src/guestfs-actions.pod:3198 ../fish/guestfish-actions.pod:2241
11563 msgid "C<app_trans_path>"
11564 msgstr "C<app_trans_path>"
11565
11566 #. type: textblock
11567 #: ../src/guestfs-actions.pod:3200 ../fish/guestfish-actions.pod:2243
11568 msgid ""
11569 "The install path translated into a libguestfs path.  If unavailable this is "
11570 "returned as an empty string C<\"\">."
11571 msgstr ""
11572
11573 #. type: =item
11574 #: ../src/guestfs-actions.pod:3203 ../fish/guestfish-actions.pod:2246
11575 msgid "C<app_publisher>"
11576 msgstr "C<app_publisher>"
11577
11578 #. type: textblock
11579 #: ../src/guestfs-actions.pod:3205 ../fish/guestfish-actions.pod:2248
11580 msgid ""
11581 "The name of the publisher of the application, for package managers that use "
11582 "this.  If unavailable this is returned as an empty string C<\"\">."
11583 msgstr ""
11584
11585 #. type: =item
11586 #: ../src/guestfs-actions.pod:3209 ../fish/guestfish-actions.pod:2252
11587 msgid "C<app_url>"
11588 msgstr "C<app_url>"
11589
11590 #. type: textblock
11591 #: ../src/guestfs-actions.pod:3211 ../fish/guestfish-actions.pod:2254
11592 msgid ""
11593 "The URL (eg. upstream URL) of the application.  If unavailable this is "
11594 "returned as an empty string C<\"\">."
11595 msgstr ""
11596
11597 #. type: =item
11598 #: ../src/guestfs-actions.pod:3214 ../fish/guestfish-actions.pod:2257
11599 msgid "C<app_source_package>"
11600 msgstr ""
11601
11602 #. type: textblock
11603 #: ../src/guestfs-actions.pod:3216 ../fish/guestfish-actions.pod:2259
11604 msgid ""
11605 "For packaging systems which support this, the name of the source package.  "
11606 "If unavailable this is returned as an empty string C<\"\">."
11607 msgstr ""
11608
11609 #. type: =item
11610 #: ../src/guestfs-actions.pod:3219 ../fish/guestfish-actions.pod:2262
11611 msgid "C<app_summary>"
11612 msgstr ""
11613
11614 #. type: textblock
11615 #: ../src/guestfs-actions.pod:3221 ../fish/guestfish-actions.pod:2264
11616 msgid ""
11617 "A short (usually one line) description of the application or package.  If "
11618 "unavailable this is returned as an empty string C<\"\">."
11619 msgstr ""
11620
11621 #. type: =item
11622 #: ../src/guestfs-actions.pod:3224 ../fish/guestfish-actions.pod:2267
11623 msgid "C<app_description>"
11624 msgstr ""
11625
11626 #. type: textblock
11627 #: ../src/guestfs-actions.pod:3226 ../fish/guestfish-actions.pod:2269
11628 msgid ""
11629 "A longer description of the application or package.  If unavailable this is "
11630 "returned as an empty string C<\"\">."
11631 msgstr ""
11632
11633 #. type: textblock
11634 #: ../src/guestfs-actions.pod:3233
11635 msgid ""
11636 "This function returns a C<struct guestfs_application_list *>, or NULL if "
11637 "there was an error.  I<The caller must call C<guestfs_free_application_list> "
11638 "after use>."
11639 msgstr ""
11640
11641 #. type: textblock
11642 #: ../src/guestfs-actions.pod:3237
11643 msgid "(Added in 1.7.8)"
11644 msgstr ""
11645
11646 #. type: =head2
11647 #: ../src/guestfs-actions.pod:3239
11648 msgid "guestfs_inspect_os"
11649 msgstr ""
11650
11651 #. type: verbatim
11652 #: ../src/guestfs-actions.pod:3241
11653 #, no-wrap
11654 msgid ""
11655 " char **\n"
11656 " guestfs_inspect_os (guestfs_h *g);\n"
11657 "\n"
11658 msgstr ""
11659
11660 #. type: textblock
11661 #: ../src/guestfs-actions.pod:3244 ../fish/guestfish-actions.pod:2280
11662 msgid ""
11663 "This function uses other libguestfs functions and certain heuristics to "
11664 "inspect the disk(s) (usually disks belonging to a virtual machine), looking "
11665 "for operating systems."
11666 msgstr ""
11667
11668 #. type: textblock
11669 #: ../src/guestfs-actions.pod:3248 ../fish/guestfish-actions.pod:2284
11670 msgid "The list returned is empty if no operating systems were found."
11671 msgstr ""
11672
11673 #. type: textblock
11674 #: ../src/guestfs-actions.pod:3250 ../fish/guestfish-actions.pod:2286
11675 msgid ""
11676 "If one operating system was found, then this returns a list with a single "
11677 "element, which is the name of the root filesystem of this operating system.  "
11678 "It is also possible for this function to return a list containing more than "
11679 "one element, indicating a dual-boot or multi-boot virtual machine, with each "
11680 "element being the root filesystem of one of the operating systems."
11681 msgstr ""
11682
11683 #. type: textblock
11684 #: ../src/guestfs-actions.pod:3257
11685 msgid ""
11686 "You can pass the root string(s) returned to other C<guestfs_inspect_get_*> "
11687 "functions in order to query further information about each operating system, "
11688 "such as the name and version."
11689 msgstr ""
11690
11691 #. type: textblock
11692 #: ../src/guestfs-actions.pod:3262
11693 msgid ""
11694 "This function uses other libguestfs features such as C<guestfs_mount_ro> and "
11695 "C<guestfs_umount_all> in order to mount and unmount filesystems and look at "
11696 "the contents.  This should be called with no disks currently mounted.  The "
11697 "function may also use Augeas, so any existing Augeas handle will be closed."
11698 msgstr ""
11699
11700 #. type: textblock
11701 #: ../src/guestfs-actions.pod:3268 ../fish/guestfish-actions.pod:2304
11702 msgid ""
11703 "This function cannot decrypt encrypted disks.  The caller must do that first "
11704 "(supplying the necessary keys) if the disk is encrypted."
11705 msgstr ""
11706
11707 #. type: textblock
11708 #: ../src/guestfs-actions.pod:3274 ../src/guestfs-actions.pod:3564
11709 #: ../src/guestfs-actions.pod:3626
11710 msgid "See also C<guestfs_list_filesystems>."
11711 msgstr ""
11712
11713 #. type: =head2
11714 #: ../src/guestfs-actions.pod:3282
11715 msgid "guestfs_is_blockdev"
11716 msgstr ""
11717
11718 #. type: verbatim
11719 #: ../src/guestfs-actions.pod:3284
11720 #, no-wrap
11721 msgid ""
11722 " int\n"
11723 " guestfs_is_blockdev (guestfs_h *g,\n"
11724 "                      const char *path);\n"
11725 "\n"
11726 msgstr ""
11727
11728 #. type: textblock
11729 #: ../src/guestfs-actions.pod:3288 ../fish/guestfish-actions.pod:2316
11730 msgid ""
11731 "This returns C<true> if and only if there is a block device with the given "
11732 "C<path> name."
11733 msgstr ""
11734
11735 #. type: textblock
11736 #: ../src/guestfs-actions.pod:3291 ../src/guestfs-actions.pod:3320
11737 #: ../src/guestfs-actions.pod:3350 ../src/guestfs-actions.pod:3365
11738 #: ../src/guestfs-actions.pod:3381 ../src/guestfs-actions.pod:3437
11739 #: ../src/guestfs-actions.pod:3452
11740 msgid "See also C<guestfs_stat>."
11741 msgstr ""
11742
11743 #. type: textblock
11744 #: ../src/guestfs-actions.pod:3295 ../src/guestfs-actions.pod:3324
11745 #: ../src/guestfs-actions.pod:3369 ../src/guestfs-actions.pod:3441
11746 #: ../src/guestfs-actions.pod:3456
11747 msgid "(Added in 1.5.10)"
11748 msgstr ""
11749
11750 #. type: =head2
11751 #: ../src/guestfs-actions.pod:3297
11752 msgid "guestfs_is_busy"
11753 msgstr ""
11754
11755 #. type: verbatim
11756 #: ../src/guestfs-actions.pod:3299
11757 #, no-wrap
11758 msgid ""
11759 " int\n"
11760 " guestfs_is_busy (guestfs_h *g);\n"
11761 "\n"
11762 msgstr ""
11763
11764 #. type: textblock
11765 #: ../src/guestfs-actions.pod:3302 ../fish/guestfish-actions.pod:2325
11766 msgid ""
11767 "This returns true iff this handle is busy processing a command (in the "
11768 "C<BUSY> state)."
11769 msgstr ""
11770
11771 #. type: =head2
11772 #: ../src/guestfs-actions.pod:3311
11773 msgid "guestfs_is_chardev"
11774 msgstr ""
11775
11776 #. type: verbatim
11777 #: ../src/guestfs-actions.pod:3313
11778 #, no-wrap
11779 msgid ""
11780 " int\n"
11781 " guestfs_is_chardev (guestfs_h *g,\n"
11782 "                     const char *path);\n"
11783 "\n"
11784 msgstr ""
11785
11786 #. type: textblock
11787 #: ../src/guestfs-actions.pod:3317 ../fish/guestfish-actions.pod:2334
11788 msgid ""
11789 "This returns C<true> if and only if there is a character device with the "
11790 "given C<path> name."
11791 msgstr ""
11792
11793 #. type: =head2
11794 #: ../src/guestfs-actions.pod:3326
11795 msgid "guestfs_is_config"
11796 msgstr ""
11797
11798 #. type: verbatim
11799 #: ../src/guestfs-actions.pod:3328
11800 #, no-wrap
11801 msgid ""
11802 " int\n"
11803 " guestfs_is_config (guestfs_h *g);\n"
11804 "\n"
11805 msgstr ""
11806
11807 #. type: textblock
11808 #: ../src/guestfs-actions.pod:3331 ../fish/guestfish-actions.pod:2343
11809 msgid ""
11810 "This returns true iff this handle is being configured (in the C<CONFIG> "
11811 "state)."
11812 msgstr ""
11813
11814 #. type: =head2
11815 #: ../src/guestfs-actions.pod:3340
11816 msgid "guestfs_is_dir"
11817 msgstr ""
11818
11819 #. type: verbatim
11820 #: ../src/guestfs-actions.pod:3342
11821 #, no-wrap
11822 msgid ""
11823 " int\n"
11824 " guestfs_is_dir (guestfs_h *g,\n"
11825 "                 const char *path);\n"
11826 "\n"
11827 msgstr ""
11828
11829 #. type: textblock
11830 #: ../src/guestfs-actions.pod:3346 ../fish/guestfish-actions.pod:2352
11831 msgid ""
11832 "This returns C<true> if and only if there is a directory with the given "
11833 "C<path> name.  Note that it returns false for other objects like files."
11834 msgstr ""
11835
11836 #. type: =head2
11837 #: ../src/guestfs-actions.pod:3356
11838 msgid "guestfs_is_fifo"
11839 msgstr ""
11840
11841 #. type: verbatim
11842 #: ../src/guestfs-actions.pod:3358
11843 #, no-wrap
11844 msgid ""
11845 " int\n"
11846 " guestfs_is_fifo (guestfs_h *g,\n"
11847 "                  const char *path);\n"
11848 "\n"
11849 msgstr ""
11850
11851 #. type: textblock
11852 #: ../src/guestfs-actions.pod:3362 ../fish/guestfish-actions.pod:2362
11853 msgid ""
11854 "This returns C<true> if and only if there is a FIFO (named pipe)  with the "
11855 "given C<path> name."
11856 msgstr ""
11857
11858 #. type: =head2
11859 #: ../src/guestfs-actions.pod:3371
11860 msgid "guestfs_is_file"
11861 msgstr ""
11862
11863 #. type: verbatim
11864 #: ../src/guestfs-actions.pod:3373
11865 #, no-wrap
11866 msgid ""
11867 " int\n"
11868 " guestfs_is_file (guestfs_h *g,\n"
11869 "                  const char *path);\n"
11870 "\n"
11871 msgstr ""
11872
11873 #. type: textblock
11874 #: ../src/guestfs-actions.pod:3377 ../fish/guestfish-actions.pod:2371
11875 msgid ""
11876 "This returns C<true> if and only if there is a regular file with the given "
11877 "C<path> name.  Note that it returns false for other objects like directories."
11878 msgstr ""
11879
11880 #. type: =head2
11881 #: ../src/guestfs-actions.pod:3387
11882 msgid "guestfs_is_launching"
11883 msgstr ""
11884
11885 #. type: verbatim
11886 #: ../src/guestfs-actions.pod:3389
11887 #, no-wrap
11888 msgid ""
11889 " int\n"
11890 " guestfs_is_launching (guestfs_h *g);\n"
11891 "\n"
11892 msgstr ""
11893
11894 #. type: textblock
11895 #: ../src/guestfs-actions.pod:3392 ../fish/guestfish-actions.pod:2381
11896 msgid ""
11897 "This returns true iff this handle is launching the subprocess (in the "
11898 "C<LAUNCHING> state)."
11899 msgstr ""
11900
11901 #. type: =head2
11902 #: ../src/guestfs-actions.pod:3401
11903 msgid "guestfs_is_lv"
11904 msgstr ""
11905
11906 #. type: verbatim
11907 #: ../src/guestfs-actions.pod:3403
11908 #, no-wrap
11909 msgid ""
11910 " int\n"
11911 " guestfs_is_lv (guestfs_h *g,\n"
11912 "                const char *device);\n"
11913 "\n"
11914 msgstr ""
11915
11916 #. type: textblock
11917 #: ../src/guestfs-actions.pod:3407 ../fish/guestfish-actions.pod:2390
11918 msgid ""
11919 "This command tests whether C<device> is a logical volume, and returns true "
11920 "iff this is the case."
11921 msgstr ""
11922
11923 #. type: =head2
11924 #: ../src/guestfs-actions.pod:3414
11925 msgid "guestfs_is_ready"
11926 msgstr ""
11927
11928 #. type: verbatim
11929 #: ../src/guestfs-actions.pod:3416
11930 #, no-wrap
11931 msgid ""
11932 " int\n"
11933 " guestfs_is_ready (guestfs_h *g);\n"
11934 "\n"
11935 msgstr ""
11936
11937 #. type: textblock
11938 #: ../src/guestfs-actions.pod:3419 ../fish/guestfish-actions.pod:2397
11939 msgid ""
11940 "This returns true iff this handle is ready to accept commands (in the "
11941 "C<READY> state)."
11942 msgstr ""
11943
11944 #. type: =head2
11945 #: ../src/guestfs-actions.pod:3428
11946 msgid "guestfs_is_socket"
11947 msgstr ""
11948
11949 #. type: verbatim
11950 #: ../src/guestfs-actions.pod:3430
11951 #, no-wrap
11952 msgid ""
11953 " int\n"
11954 " guestfs_is_socket (guestfs_h *g,\n"
11955 "                    const char *path);\n"
11956 "\n"
11957 msgstr ""
11958
11959 #. type: textblock
11960 #: ../src/guestfs-actions.pod:3434 ../fish/guestfish-actions.pod:2406
11961 msgid ""
11962 "This returns C<true> if and only if there is a Unix domain socket with the "
11963 "given C<path> name."
11964 msgstr ""
11965
11966 #. type: =head2
11967 #: ../src/guestfs-actions.pod:3443
11968 msgid "guestfs_is_symlink"
11969 msgstr ""
11970
11971 #. type: verbatim
11972 #: ../src/guestfs-actions.pod:3445
11973 #, no-wrap
11974 msgid ""
11975 " int\n"
11976 " guestfs_is_symlink (guestfs_h *g,\n"
11977 "                     const char *path);\n"
11978 "\n"
11979 msgstr ""
11980
11981 #. type: textblock
11982 #: ../src/guestfs-actions.pod:3449 ../fish/guestfish-actions.pod:2415
11983 msgid ""
11984 "This returns C<true> if and only if there is a symbolic link with the given "
11985 "C<path> name."
11986 msgstr ""
11987
11988 #. type: =head2
11989 #: ../src/guestfs-actions.pod:3458
11990 msgid "guestfs_kill_subprocess"
11991 msgstr ""
11992
11993 #. type: verbatim
11994 #: ../src/guestfs-actions.pod:3460
11995 #, no-wrap
11996 msgid ""
11997 " int\n"
11998 " guestfs_kill_subprocess (guestfs_h *g);\n"
11999 "\n"
12000 msgstr ""
12001
12002 #. type: textblock
12003 #: ../src/guestfs-actions.pod:3463 ../fish/guestfish-actions.pod:2424
12004 msgid "This kills the qemu subprocess.  You should never need to call this."
12005 msgstr ""
12006
12007 #. type: =head2
12008 #: ../src/guestfs-actions.pod:3469
12009 msgid "guestfs_launch"
12010 msgstr ""
12011
12012 #. type: verbatim
12013 #: ../src/guestfs-actions.pod:3471
12014 #, no-wrap
12015 msgid ""
12016 " int\n"
12017 " guestfs_launch (guestfs_h *g);\n"
12018 "\n"
12019 msgstr ""
12020
12021 #. type: textblock
12022 #: ../src/guestfs-actions.pod:3474 ../fish/guestfish-actions.pod:2432
12023 msgid ""
12024 "Internally libguestfs is implemented by running a virtual machine using "
12025 "L<qemu(1)>."
12026 msgstr ""
12027
12028 #. type: textblock
12029 #: ../src/guestfs-actions.pod:3477 ../fish/guestfish-actions.pod:2435
12030 msgid ""
12031 "You should call this after configuring the handle (eg. adding drives) but "
12032 "before performing any actions."
12033 msgstr ""
12034
12035 #. type: =head2
12036 #: ../src/guestfs-actions.pod:3489
12037 msgid "guestfs_lchown"
12038 msgstr ""
12039
12040 #. type: verbatim
12041 #: ../src/guestfs-actions.pod:3491
12042 #, no-wrap
12043 msgid ""
12044 " int\n"
12045 " guestfs_lchown (guestfs_h *g,\n"
12046 "                 int owner,\n"
12047 "                 int group,\n"
12048 "                 const char *path);\n"
12049 "\n"
12050 msgstr ""
12051
12052 #. type: textblock
12053 #: ../src/guestfs-actions.pod:3497
12054 msgid ""
12055 "Change the file owner to C<owner> and group to C<group>.  This is like "
12056 "C<guestfs_chown> but if C<path> is a symlink then the link itself is "
12057 "changed, not the target."
12058 msgstr ""
12059
12060 #. type: =head2
12061 #: ../src/guestfs-actions.pod:3509
12062 msgid "guestfs_lgetxattr"
12063 msgstr ""
12064
12065 #. type: verbatim
12066 #: ../src/guestfs-actions.pod:3511
12067 #, no-wrap
12068 msgid ""
12069 " char *\n"
12070 " guestfs_lgetxattr (guestfs_h *g,\n"
12071 "                    const char *path,\n"
12072 "                    const char *name,\n"
12073 "                    size_t *size_r);\n"
12074 "\n"
12075 msgstr ""
12076
12077 #. type: textblock
12078 #: ../src/guestfs-actions.pod:3517 ../fish/guestfish-actions.pod:2454
12079 msgid ""
12080 "Get a single extended attribute from file C<path> named C<name>.  If C<path> "
12081 "is a symlink, then this call returns an extended attribute from the symlink."
12082 msgstr ""
12083
12084 #. type: textblock
12085 #: ../src/guestfs-actions.pod:3531
12086 msgid "See also: C<guestfs_lgetxattrs>, C<guestfs_getxattr>, L<attr(5)>."
12087 msgstr ""
12088
12089 #. type: =head2
12090 #: ../src/guestfs-actions.pod:3539
12091 msgid "guestfs_lgetxattrs"
12092 msgstr ""
12093
12094 #. type: verbatim
12095 #: ../src/guestfs-actions.pod:3541
12096 #, no-wrap
12097 msgid ""
12098 " struct guestfs_xattr_list *\n"
12099 " guestfs_lgetxattrs (guestfs_h *g,\n"
12100 "                     const char *path);\n"
12101 "\n"
12102 msgstr ""
12103
12104 #. type: textblock
12105 #: ../src/guestfs-actions.pod:3545
12106 msgid ""
12107 "This is the same as C<guestfs_getxattrs>, but if C<path> is a symbolic link, "
12108 "then it returns the extended attributes of the link itself."
12109 msgstr ""
12110
12111 #. type: =head2
12112 #: ../src/guestfs-actions.pod:3555
12113 msgid "guestfs_list_devices"
12114 msgstr ""
12115
12116 #. type: verbatim
12117 #: ../src/guestfs-actions.pod:3557
12118 #, no-wrap
12119 msgid ""
12120 " char **\n"
12121 " guestfs_list_devices (guestfs_h *g);\n"
12122 "\n"
12123 msgstr ""
12124
12125 #. type: textblock
12126 #: ../src/guestfs-actions.pod:3560 ../fish/guestfish-actions.pod:2482
12127 msgid "List all the block devices."
12128 msgstr ""
12129
12130 #. type: textblock
12131 #: ../src/guestfs-actions.pod:3562 ../fish/guestfish-actions.pod:2484
12132 msgid "The full block device names are returned, eg. C</dev/sda>."
12133 msgstr ""
12134
12135 #. type: =head2
12136 #: ../src/guestfs-actions.pod:3572
12137 msgid "guestfs_list_filesystems"
12138 msgstr ""
12139
12140 #. type: verbatim
12141 #: ../src/guestfs-actions.pod:3574
12142 #, no-wrap
12143 msgid ""
12144 " char **\n"
12145 " guestfs_list_filesystems (guestfs_h *g);\n"
12146 "\n"
12147 msgstr ""
12148
12149 #. type: textblock
12150 #: ../src/guestfs-actions.pod:3577 ../fish/guestfish-actions.pod:2492
12151 msgid ""
12152 "This inspection command looks for filesystems on partitions, block devices "
12153 "and logical volumes, returning a list of devices containing filesystems and "
12154 "their type."
12155 msgstr ""
12156
12157 #. type: textblock
12158 #: ../src/guestfs-actions.pod:3581 ../fish/guestfish-actions.pod:2496
12159 msgid ""
12160 "The return value is a hash, where the keys are the devices containing "
12161 "filesystems, and the values are the filesystem types.  For example:"
12162 msgstr ""
12163
12164 #. type: verbatim
12165 #: ../src/guestfs-actions.pod:3585 ../fish/guestfish-actions.pod:2500
12166 #, no-wrap
12167 msgid ""
12168 " \"/dev/sda1\" => \"ntfs\"\n"
12169 " \"/dev/sda2\" => \"ext2\"\n"
12170 " \"/dev/vg_guest/lv_root\" => \"ext4\"\n"
12171 " \"/dev/vg_guest/lv_swap\" => \"swap\"\n"
12172 "\n"
12173 msgstr ""
12174
12175 #. type: textblock
12176 #: ../src/guestfs-actions.pod:3590 ../fish/guestfish-actions.pod:2505
12177 msgid ""
12178 "The value can have the special value \"unknown\", meaning the content of the "
12179 "device is undetermined or empty.  \"swap\" means a Linux swap partition."
12180 msgstr ""
12181
12182 #. type: textblock
12183 #: ../src/guestfs-actions.pod:3594
12184 msgid ""
12185 "This command runs other libguestfs commands, which might include "
12186 "C<guestfs_mount> and C<guestfs_umount>, and therefore you should use this "
12187 "soon after launch and only when nothing is mounted."
12188 msgstr ""
12189
12190 #. type: textblock
12191 #: ../src/guestfs-actions.pod:3598
12192 msgid ""
12193 "Not all of the filesystems returned will be mountable.  In particular, swap "
12194 "partitions are returned in the list.  Also this command does not check that "
12195 "each filesystem found is valid and mountable, and some filesystems might be "
12196 "mountable but require special options.  Filesystems may not all belong to a "
12197 "single logical operating system (use C<guestfs_inspect_os> to look for OSes)."
12198 msgstr ""
12199
12200 #. type: textblock
12201 #: ../src/guestfs-actions.pod:3612 ../src/guestfs-actions.pod:5217
12202 msgid "(Added in 1.5.15)"
12203 msgstr ""
12204
12205 #. type: =head2
12206 #: ../src/guestfs-actions.pod:3614
12207 msgid "guestfs_list_partitions"
12208 msgstr ""
12209
12210 #. type: verbatim
12211 #: ../src/guestfs-actions.pod:3616
12212 #, no-wrap
12213 msgid ""
12214 " char **\n"
12215 " guestfs_list_partitions (guestfs_h *g);\n"
12216 "\n"
12217 msgstr ""
12218
12219 #. type: textblock
12220 #: ../src/guestfs-actions.pod:3619 ../fish/guestfish-actions.pod:2525
12221 msgid "List all the partitions detected on all block devices."
12222 msgstr ""
12223
12224 #. type: textblock
12225 #: ../src/guestfs-actions.pod:3621 ../fish/guestfish-actions.pod:2527
12226 msgid "The full partition device names are returned, eg. C</dev/sda1>"
12227 msgstr ""
12228
12229 #. type: textblock
12230 #: ../src/guestfs-actions.pod:3623
12231 msgid ""
12232 "This does not return logical volumes.  For that you will need to call "
12233 "C<guestfs_lvs>."
12234 msgstr ""
12235
12236 #. type: =head2
12237 #: ../src/guestfs-actions.pod:3634
12238 msgid "guestfs_ll"
12239 msgstr ""
12240
12241 #. type: verbatim
12242 #: ../src/guestfs-actions.pod:3636
12243 #, no-wrap
12244 msgid ""
12245 " char *\n"
12246 " guestfs_ll (guestfs_h *g,\n"
12247 "             const char *directory);\n"
12248 "\n"
12249 msgstr ""
12250
12251 #. type: textblock
12252 #: ../src/guestfs-actions.pod:3640 ../fish/guestfish-actions.pod:2538
12253 msgid ""
12254 "List the files in C<directory> (relative to the root directory, there is no "
12255 "cwd) in the format of 'ls -la'."
12256 msgstr ""
12257
12258 #. type: textblock
12259 #: ../src/guestfs-actions.pod:3643 ../fish/guestfish-actions.pod:2541
12260 msgid ""
12261 "This command is mostly useful for interactive sessions.  It is I<not> "
12262 "intended that you try to parse the output string."
12263 msgstr ""
12264
12265 #. type: =head2
12266 #: ../src/guestfs-actions.pod:3651
12267 msgid "guestfs_ln"
12268 msgstr ""
12269
12270 #. type: verbatim
12271 #: ../src/guestfs-actions.pod:3653
12272 #, no-wrap
12273 msgid ""
12274 " int\n"
12275 " guestfs_ln (guestfs_h *g,\n"
12276 "             const char *target,\n"
12277 "             const char *linkname);\n"
12278 "\n"
12279 msgstr ""
12280
12281 #. type: textblock
12282 #: ../src/guestfs-actions.pod:3658 ../fish/guestfish-actions.pod:2548
12283 msgid "This command creates a hard link using the C<ln> command."
12284 msgstr ""
12285
12286 #. type: =head2
12287 #: ../src/guestfs-actions.pod:3664
12288 msgid "guestfs_ln_f"
12289 msgstr ""
12290
12291 #. type: verbatim
12292 #: ../src/guestfs-actions.pod:3666
12293 #, no-wrap
12294 msgid ""
12295 " int\n"
12296 " guestfs_ln_f (guestfs_h *g,\n"
12297 "               const char *target,\n"
12298 "               const char *linkname);\n"
12299 "\n"
12300 msgstr ""
12301
12302 #. type: textblock
12303 #: ../src/guestfs-actions.pod:3671 ../fish/guestfish-actions.pod:2554
12304 msgid ""
12305 "This command creates a hard link using the C<ln -f> command.  The I<-f> "
12306 "option removes the link (C<linkname>) if it exists already."
12307 msgstr ""
12308
12309 #. type: =head2
12310 #: ../src/guestfs-actions.pod:3678
12311 msgid "guestfs_ln_s"
12312 msgstr ""
12313
12314 #. type: verbatim
12315 #: ../src/guestfs-actions.pod:3680
12316 #, no-wrap
12317 msgid ""
12318 " int\n"
12319 " guestfs_ln_s (guestfs_h *g,\n"
12320 "               const char *target,\n"
12321 "               const char *linkname);\n"
12322 "\n"
12323 msgstr ""
12324
12325 #. type: textblock
12326 #: ../src/guestfs-actions.pod:3685 ../fish/guestfish-actions.pod:2561
12327 msgid "This command creates a symbolic link using the C<ln -s> command."
12328 msgstr ""
12329
12330 #. type: =head2
12331 #: ../src/guestfs-actions.pod:3691
12332 msgid "guestfs_ln_sf"
12333 msgstr ""
12334
12335 #. type: verbatim
12336 #: ../src/guestfs-actions.pod:3693
12337 #, no-wrap
12338 msgid ""
12339 " int\n"
12340 " guestfs_ln_sf (guestfs_h *g,\n"
12341 "                const char *target,\n"
12342 "                const char *linkname);\n"
12343 "\n"
12344 msgstr ""
12345
12346 #. type: textblock
12347 #: ../src/guestfs-actions.pod:3698 ../fish/guestfish-actions.pod:2567
12348 msgid ""
12349 "This command creates a symbolic link using the C<ln -sf> command, The I<-f> "
12350 "option removes the link (C<linkname>) if it exists already."
12351 msgstr ""
12352
12353 #. type: =head2
12354 #: ../src/guestfs-actions.pod:3705
12355 msgid "guestfs_lremovexattr"
12356 msgstr ""
12357
12358 #. type: verbatim
12359 #: ../src/guestfs-actions.pod:3707
12360 #, no-wrap
12361 msgid ""
12362 " int\n"
12363 " guestfs_lremovexattr (guestfs_h *g,\n"
12364 "                       const char *xattr,\n"
12365 "                       const char *path);\n"
12366 "\n"
12367 msgstr ""
12368
12369 #. type: textblock
12370 #: ../src/guestfs-actions.pod:3712
12371 msgid ""
12372 "This is the same as C<guestfs_removexattr>, but if C<path> is a symbolic "
12373 "link, then it removes an extended attribute of the link itself."
12374 msgstr ""
12375
12376 #. type: =head2
12377 #: ../src/guestfs-actions.pod:3720
12378 msgid "guestfs_ls"
12379 msgstr ""
12380
12381 #. type: verbatim
12382 #: ../src/guestfs-actions.pod:3722
12383 #, no-wrap
12384 msgid ""
12385 " char **\n"
12386 " guestfs_ls (guestfs_h *g,\n"
12387 "             const char *directory);\n"
12388 "\n"
12389 msgstr ""
12390
12391 #. type: textblock
12392 #: ../src/guestfs-actions.pod:3726 ../fish/guestfish-actions.pod:2582
12393 msgid ""
12394 "List the files in C<directory> (relative to the root directory, there is no "
12395 "cwd).  The '.' and '..' entries are not returned, but hidden files are shown."
12396 msgstr ""
12397
12398 #. type: textblock
12399 #: ../src/guestfs-actions.pod:3730
12400 msgid ""
12401 "This command is mostly useful for interactive sessions.  Programs should "
12402 "probably use C<guestfs_readdir> instead."
12403 msgstr ""
12404
12405 #. type: =head2
12406 #: ../src/guestfs-actions.pod:3739
12407 msgid "guestfs_lsetxattr"
12408 msgstr ""
12409
12410 #. type: verbatim
12411 #: ../src/guestfs-actions.pod:3741
12412 #, no-wrap
12413 msgid ""
12414 " int\n"
12415 " guestfs_lsetxattr (guestfs_h *g,\n"
12416 "                    const char *xattr,\n"
12417 "                    const char *val,\n"
12418 "                    int vallen,\n"
12419 "                    const char *path);\n"
12420 "\n"
12421 msgstr ""
12422
12423 #. type: textblock
12424 #: ../src/guestfs-actions.pod:3748
12425 msgid ""
12426 "This is the same as C<guestfs_setxattr>, but if C<path> is a symbolic link, "
12427 "then it sets an extended attribute of the link itself."
12428 msgstr ""
12429
12430 #. type: =head2
12431 #: ../src/guestfs-actions.pod:3756
12432 msgid "guestfs_lstat"
12433 msgstr ""
12434
12435 #. type: verbatim
12436 #: ../src/guestfs-actions.pod:3758
12437 #, no-wrap
12438 msgid ""
12439 " struct guestfs_stat *\n"
12440 " guestfs_lstat (guestfs_h *g,\n"
12441 "                const char *path);\n"
12442 "\n"
12443 msgstr ""
12444
12445 #. type: textblock
12446 #: ../src/guestfs-actions.pod:3762 ../src/guestfs-actions.pod:6320
12447 #: ../fish/guestfish-actions.pod:2601 ../fish/guestfish-actions.pod:4270
12448 msgid "Returns file information for the given C<path>."
12449 msgstr ""
12450
12451 #. type: textblock
12452 #: ../src/guestfs-actions.pod:3764
12453 msgid ""
12454 "This is the same as C<guestfs_stat> except that if C<path> is a symbolic "
12455 "link, then the link is stat-ed, not the file it refers to."
12456 msgstr ""
12457
12458 #. type: textblock
12459 #: ../src/guestfs-actions.pod:3768 ../fish/guestfish-actions.pod:2607
12460 msgid "This is the same as the C<lstat(2)> system call."
12461 msgstr ""
12462
12463 #. type: textblock
12464 #: ../src/guestfs-actions.pod:3770 ../src/guestfs-actions.pod:6324
12465 msgid ""
12466 "This function returns a C<struct guestfs_stat *>, or NULL if there was an "
12467 "error.  I<The caller must call C<guestfs_free_stat> after use>."
12468 msgstr ""
12469
12470 #. type: textblock
12471 #: ../src/guestfs-actions.pod:3774 ../src/guestfs-actions.pod:6328
12472 #: ../src/guestfs-actions.pod:6346 ../src/guestfs-actions.pod:6727
12473 msgid "(Added in 0.9.2)"
12474 msgstr ""
12475
12476 #. type: =head2
12477 #: ../src/guestfs-actions.pod:3776
12478 msgid "guestfs_lstatlist"
12479 msgstr ""
12480
12481 #. type: verbatim
12482 #: ../src/guestfs-actions.pod:3778
12483 #, no-wrap
12484 msgid ""
12485 " struct guestfs_stat_list *\n"
12486 " guestfs_lstatlist (guestfs_h *g,\n"
12487 "                    const char *path,\n"
12488 "                    char *const *names);\n"
12489 "\n"
12490 msgstr ""
12491
12492 #. type: textblock
12493 #: ../src/guestfs-actions.pod:3783
12494 msgid ""
12495 "This call allows you to perform the C<guestfs_lstat> operation on multiple "
12496 "files, where all files are in the directory C<path>.  C<names> is the list "
12497 "of files from this directory."
12498 msgstr ""
12499
12500 #. type: textblock
12501 #: ../src/guestfs-actions.pod:3787 ../fish/guestfish-actions.pod:2617
12502 msgid ""
12503 "On return you get a list of stat structs, with a one-to-one correspondence "
12504 "to the C<names> list.  If any name did not exist or could not be lstat'd, "
12505 "then the C<ino> field of that structure is set to C<-1>."
12506 msgstr ""
12507
12508 #. type: textblock
12509 #: ../src/guestfs-actions.pod:3792
12510 msgid ""
12511 "This call is intended for programs that want to efficiently list a directory "
12512 "contents without making many round-trips.  See also C<guestfs_lxattrlist> "
12513 "for a similarly efficient call for getting extended attributes.  Very long "
12514 "directory listings might cause the protocol message size to be exceeded, "
12515 "causing this call to fail.  The caller must split up such requests into "
12516 "smaller groups of names."
12517 msgstr ""
12518
12519 #. type: textblock
12520 #: ../src/guestfs-actions.pod:3800
12521 msgid ""
12522 "This function returns a C<struct guestfs_stat_list *>, or NULL if there was "
12523 "an error.  I<The caller must call C<guestfs_free_stat_list> after use>."
12524 msgstr ""
12525
12526 #. type: =head2
12527 #: ../src/guestfs-actions.pod:3806
12528 msgid "guestfs_luks_add_key"
12529 msgstr ""
12530
12531 #. type: verbatim
12532 #: ../src/guestfs-actions.pod:3808
12533 #, no-wrap
12534 msgid ""
12535 " int\n"
12536 " guestfs_luks_add_key (guestfs_h *g,\n"
12537 "                       const char *device,\n"
12538 "                       const char *key,\n"
12539 "                       const char *newkey,\n"
12540 "                       int keyslot);\n"
12541 "\n"
12542 msgstr ""
12543
12544 #. type: textblock
12545 #: ../src/guestfs-actions.pod:3815 ../fish/guestfish-actions.pod:2634
12546 msgid ""
12547 "This command adds a new key on LUKS device C<device>.  C<key> is any "
12548 "existing key, and is used to access the device.  C<newkey> is the new key to "
12549 "add.  C<keyslot> is the key slot that will be replaced."
12550 msgstr ""
12551
12552 #. type: textblock
12553 #: ../src/guestfs-actions.pod:3820
12554 msgid ""
12555 "Note that if C<keyslot> already contains a key, then this command will "
12556 "fail.  You have to use C<guestfs_luks_kill_slot> first to remove that key."
12557 msgstr ""
12558
12559 #. type: textblock
12560 #: ../src/guestfs-actions.pod:3826 ../src/guestfs-actions.pod:3866
12561 #: ../src/guestfs-actions.pod:3889 ../src/guestfs-actions.pod:3909
12562 #: ../src/guestfs-actions.pod:3941 ../src/guestfs-actions.pod:3960
12563 msgid ""
12564 "This function takes a key or passphrase parameter which could contain "
12565 "sensitive material.  Read the section L</KEYS AND PASSPHRASES> for more "
12566 "information."
12567 msgstr ""
12568
12569 #. type: textblock
12570 #: ../src/guestfs-actions.pod:3830 ../src/guestfs-actions.pod:3870
12571 #: ../src/guestfs-actions.pod:3893 ../src/guestfs-actions.pod:3913
12572 msgid "(Added in 1.5.2)"
12573 msgstr ""
12574
12575 #. type: =head2
12576 #: ../src/guestfs-actions.pod:3832
12577 msgid "guestfs_luks_close"
12578 msgstr ""
12579
12580 #. type: verbatim
12581 #: ../src/guestfs-actions.pod:3834
12582 #, no-wrap
12583 msgid ""
12584 " int\n"
12585 " guestfs_luks_close (guestfs_h *g,\n"
12586 "                     const char *device);\n"
12587 "\n"
12588 msgstr ""
12589
12590 #. type: textblock
12591 #: ../src/guestfs-actions.pod:3838
12592 msgid ""
12593 "This closes a LUKS device that was created earlier by C<guestfs_luks_open> "
12594 "or C<guestfs_luks_open_ro>.  The C<device> parameter must be the name of the "
12595 "LUKS mapping device (ie. C</dev/mapper/mapname>) and I<not> the name of the "
12596 "underlying block device."
12597 msgstr ""
12598
12599 #. type: textblock
12600 #: ../src/guestfs-actions.pod:3846 ../src/guestfs-actions.pod:3945
12601 #: ../src/guestfs-actions.pod:3964 ../src/guestfs-actions.pod:4014
12602 #: ../src/guestfs-actions.pod:4062
12603 msgid "(Added in 1.5.1)"
12604 msgstr ""
12605
12606 #. type: =head2
12607 #: ../src/guestfs-actions.pod:3848
12608 msgid "guestfs_luks_format"
12609 msgstr ""
12610
12611 #. type: verbatim
12612 #: ../src/guestfs-actions.pod:3850
12613 #, no-wrap
12614 msgid ""
12615 " int\n"
12616 " guestfs_luks_format (guestfs_h *g,\n"
12617 "                      const char *device,\n"
12618 "                      const char *key,\n"
12619 "                      int keyslot);\n"
12620 "\n"
12621 msgstr ""
12622
12623 #. type: textblock
12624 #: ../src/guestfs-actions.pod:3856 ../fish/guestfish-actions.pod:2660
12625 msgid ""
12626 "This command erases existing data on C<device> and formats the device as a "
12627 "LUKS encrypted device.  C<key> is the initial key, which is added to key "
12628 "slot C<slot>.  (LUKS supports 8 key slots, numbered 0-7)."
12629 msgstr ""
12630
12631 #. type: textblock
12632 #: ../src/guestfs-actions.pod:3863 ../src/guestfs-actions.pod:3886
12633 #: ../src/guestfs-actions.pod:4026 ../src/guestfs-actions.pod:4968
12634 #: ../src/guestfs-actions.pod:5748 ../src/guestfs-actions.pod:6155
12635 #: ../src/guestfs-actions.pod:6178 ../src/guestfs-actions.pod:6204
12636 #: ../src/guestfs-actions.pod:7364 ../fish/guestfish-actions.pod:2668
12637 #: ../fish/guestfish-actions.pod:2681 ../fish/guestfish-actions.pod:2765
12638 #: ../fish/guestfish-actions.pod:3339 ../fish/guestfish-actions.pod:3859
12639 #: ../fish/guestfish-actions.pod:4169 ../fish/guestfish-actions.pod:4185
12640 #: ../fish/guestfish-actions.pod:4200 ../fish/guestfish-actions.pod:4915
12641 msgid ""
12642 "B<This command is dangerous.  Without careful use you can easily destroy all "
12643 "your data>."
12644 msgstr ""
12645
12646 #. type: =head2
12647 #: ../src/guestfs-actions.pod:3872
12648 msgid "guestfs_luks_format_cipher"
12649 msgstr ""
12650
12651 #. type: verbatim
12652 #: ../src/guestfs-actions.pod:3874
12653 #, no-wrap
12654 msgid ""
12655 " int\n"
12656 " guestfs_luks_format_cipher (guestfs_h *g,\n"
12657 "                             const char *device,\n"
12658 "                             const char *key,\n"
12659 "                             int keyslot,\n"
12660 "                             const char *cipher);\n"
12661 "\n"
12662 msgstr ""
12663
12664 #. type: textblock
12665 #: ../src/guestfs-actions.pod:3881
12666 msgid ""
12667 "This command is the same as C<guestfs_luks_format> but it also allows you to "
12668 "set the C<cipher> used."
12669 msgstr ""
12670
12671 #. type: =head2
12672 #: ../src/guestfs-actions.pod:3895
12673 msgid "guestfs_luks_kill_slot"
12674 msgstr ""
12675
12676 #. type: verbatim
12677 #: ../src/guestfs-actions.pod:3897
12678 #, no-wrap
12679 msgid ""
12680 " int\n"
12681 " guestfs_luks_kill_slot (guestfs_h *g,\n"
12682 "                         const char *device,\n"
12683 "                         const char *key,\n"
12684 "                         int keyslot);\n"
12685 "\n"
12686 msgstr ""
12687
12688 #. type: textblock
12689 #: ../src/guestfs-actions.pod:3903 ../fish/guestfish-actions.pod:2688
12690 msgid ""
12691 "This command deletes the key in key slot C<keyslot> from the encrypted LUKS "
12692 "device C<device>.  C<key> must be one of the I<other> keys."
12693 msgstr ""
12694
12695 #. type: =head2
12696 #: ../src/guestfs-actions.pod:3915
12697 msgid "guestfs_luks_open"
12698 msgstr ""
12699
12700 #. type: verbatim
12701 #: ../src/guestfs-actions.pod:3917
12702 #, no-wrap
12703 msgid ""
12704 " int\n"
12705 " guestfs_luks_open (guestfs_h *g,\n"
12706 "                    const char *device,\n"
12707 "                    const char *key,\n"
12708 "                    const char *mapname);\n"
12709 "\n"
12710 msgstr ""
12711
12712 #. type: textblock
12713 #: ../src/guestfs-actions.pod:3923 ../fish/guestfish-actions.pod:2699
12714 msgid ""
12715 "This command opens a block device which has been encrypted according to the "
12716 "Linux Unified Key Setup (LUKS) standard."
12717 msgstr ""
12718
12719 #. type: textblock
12720 #: ../src/guestfs-actions.pod:3926 ../fish/guestfish-actions.pod:2702
12721 msgid "C<device> is the encrypted block device or partition."
12722 msgstr ""
12723
12724 #. type: textblock
12725 #: ../src/guestfs-actions.pod:3928 ../fish/guestfish-actions.pod:2704
12726 msgid ""
12727 "The caller must supply one of the keys associated with the LUKS block "
12728 "device, in the C<key> parameter."
12729 msgstr ""
12730
12731 #. type: textblock
12732 #: ../src/guestfs-actions.pod:3931 ../fish/guestfish-actions.pod:2707
12733 msgid ""
12734 "This creates a new block device called C</dev/mapper/mapname>.  Reads and "
12735 "writes to this block device are decrypted from and encrypted to the "
12736 "underlying C<device> respectively."
12737 msgstr ""
12738
12739 #. type: textblock
12740 #: ../src/guestfs-actions.pod:3935
12741 msgid ""
12742 "If this block device contains LVM volume groups, then calling "
12743 "C<guestfs_vgscan> followed by C<guestfs_vg_activate_all> will make them "
12744 "visible."
12745 msgstr ""
12746
12747 #. type: =head2
12748 #: ../src/guestfs-actions.pod:3947
12749 msgid "guestfs_luks_open_ro"
12750 msgstr ""
12751
12752 #. type: verbatim
12753 #: ../src/guestfs-actions.pod:3949
12754 #, no-wrap
12755 msgid ""
12756 " int\n"
12757 " guestfs_luks_open_ro (guestfs_h *g,\n"
12758 "                       const char *device,\n"
12759 "                       const char *key,\n"
12760 "                       const char *mapname);\n"
12761 "\n"
12762 msgstr ""
12763
12764 #. type: textblock
12765 #: ../src/guestfs-actions.pod:3955
12766 msgid ""
12767 "This is the same as C<guestfs_luks_open> except that a read-only mapping is "
12768 "created."
12769 msgstr ""
12770
12771 #. type: =head2
12772 #: ../src/guestfs-actions.pod:3966
12773 msgid "guestfs_lvcreate"
12774 msgstr ""
12775
12776 #. type: verbatim
12777 #: ../src/guestfs-actions.pod:3968
12778 #, no-wrap
12779 msgid ""
12780 " int\n"
12781 " guestfs_lvcreate (guestfs_h *g,\n"
12782 "                   const char *logvol,\n"
12783 "                   const char *volgroup,\n"
12784 "                   int mbytes);\n"
12785 "\n"
12786 msgstr ""
12787
12788 #. type: textblock
12789 #: ../src/guestfs-actions.pod:3974 ../fish/guestfish-actions.pod:2732
12790 msgid ""
12791 "This creates an LVM logical volume called C<logvol> on the volume group "
12792 "C<volgroup>, with C<size> megabytes."
12793 msgstr ""
12794
12795 #. type: =head2
12796 #: ../src/guestfs-actions.pod:3981
12797 msgid "guestfs_lvm_canonical_lv_name"
12798 msgstr ""
12799
12800 #. type: verbatim
12801 #: ../src/guestfs-actions.pod:3983
12802 #, no-wrap
12803 msgid ""
12804 " char *\n"
12805 " guestfs_lvm_canonical_lv_name (guestfs_h *g,\n"
12806 "                                const char *lvname);\n"
12807 "\n"
12808 msgstr ""
12809
12810 #. type: textblock
12811 #: ../src/guestfs-actions.pod:3987 ../fish/guestfish-actions.pod:2739
12812 msgid ""
12813 "This converts alternative naming schemes for LVs that you might find to the "
12814 "canonical name.  For example, C</dev/mapper/VG-LV> is converted to C</dev/VG/"
12815 "LV>."
12816 msgstr ""
12817
12818 #. type: textblock
12819 #: ../src/guestfs-actions.pod:3991 ../fish/guestfish-actions.pod:2743
12820 msgid ""
12821 "This command returns an error if the C<lvname> parameter does not refer to a "
12822 "logical volume."
12823 msgstr ""
12824
12825 #. type: textblock
12826 #: ../src/guestfs-actions.pod:3994
12827 msgid "See also C<guestfs_is_lv>."
12828 msgstr ""
12829
12830 #. type: textblock
12831 #: ../src/guestfs-actions.pod:3999
12832 msgid "(Added in 1.5.24)"
12833 msgstr ""
12834
12835 #. type: =head2
12836 #: ../src/guestfs-actions.pod:4001
12837 msgid "guestfs_lvm_clear_filter"
12838 msgstr ""
12839
12840 #. type: verbatim
12841 #: ../src/guestfs-actions.pod:4003
12842 #, no-wrap
12843 msgid ""
12844 " int\n"
12845 " guestfs_lvm_clear_filter (guestfs_h *g);\n"
12846 "\n"
12847 msgstr ""
12848
12849 #. type: textblock
12850 #: ../src/guestfs-actions.pod:4006
12851 msgid ""
12852 "This undoes the effect of C<guestfs_lvm_set_filter>.  LVM will be able to "
12853 "see every block device."
12854 msgstr ""
12855
12856 #. type: textblock
12857 #: ../src/guestfs-actions.pod:4009 ../src/guestfs-actions.pod:4051
12858 #: ../fish/guestfish-actions.pod:2755 ../fish/guestfish-actions.pod:2786
12859 msgid ""
12860 "This command also clears the LVM cache and performs a volume group scan."
12861 msgstr ""
12862
12863 #. type: =head2
12864 #: ../src/guestfs-actions.pod:4016
12865 msgid "guestfs_lvm_remove_all"
12866 msgstr ""
12867
12868 #. type: verbatim
12869 #: ../src/guestfs-actions.pod:4018
12870 #, no-wrap
12871 msgid ""
12872 " int\n"
12873 " guestfs_lvm_remove_all (guestfs_h *g);\n"
12874 "\n"
12875 msgstr ""
12876
12877 #. type: textblock
12878 #: ../src/guestfs-actions.pod:4021 ../fish/guestfish-actions.pod:2762
12879 msgid ""
12880 "This command removes all LVM logical volumes, volume groups and physical "
12881 "volumes."
12882 msgstr ""
12883
12884 #. type: =head2
12885 #: ../src/guestfs-actions.pod:4031
12886 msgid "guestfs_lvm_set_filter"
12887 msgstr ""
12888
12889 #. type: verbatim
12890 #: ../src/guestfs-actions.pod:4033
12891 #, no-wrap
12892 msgid ""
12893 " int\n"
12894 " guestfs_lvm_set_filter (guestfs_h *g,\n"
12895 "                         char *const *devices);\n"
12896 "\n"
12897 msgstr ""
12898
12899 #. type: textblock
12900 #: ../src/guestfs-actions.pod:4037 ../fish/guestfish-actions.pod:2772
12901 msgid ""
12902 "This sets the LVM device filter so that LVM will only be able to \"see\" the "
12903 "block devices in the list C<devices>, and will ignore all other attached "
12904 "block devices."
12905 msgstr ""
12906
12907 #. type: textblock
12908 #: ../src/guestfs-actions.pod:4041 ../fish/guestfish-actions.pod:2776
12909 msgid ""
12910 "Where disk image(s) contain duplicate PVs or VGs, this command is useful to "
12911 "get LVM to ignore the duplicates, otherwise LVM can get confused.  Note also "
12912 "there are two types of duplication possible: either cloned PVs/VGs which "
12913 "have identical UUIDs; or VGs that are not cloned but just happen to have the "
12914 "same name.  In normal operation you cannot create this situation, but you "
12915 "can do it outside LVM, eg.  by cloning disk images or by bit twiddling "
12916 "inside the LVM metadata."
12917 msgstr ""
12918
12919 #. type: textblock
12920 #: ../src/guestfs-actions.pod:4054 ../fish/guestfish-actions.pod:2789
12921 msgid "You can filter whole block devices or individual partitions."
12922 msgstr ""
12923
12924 #. type: textblock
12925 #: ../src/guestfs-actions.pod:4056 ../fish/guestfish-actions.pod:2791
12926 msgid ""
12927 "You cannot use this if any VG is currently in use (eg.  contains a mounted "
12928 "filesystem), even if you are not filtering out that VG."
12929 msgstr ""
12930
12931 #. type: =head2
12932 #: ../src/guestfs-actions.pod:4064
12933 msgid "guestfs_lvremove"
12934 msgstr ""
12935
12936 #. type: verbatim
12937 #: ../src/guestfs-actions.pod:4066
12938 #, no-wrap
12939 msgid ""
12940 " int\n"
12941 " guestfs_lvremove (guestfs_h *g,\n"
12942 "                   const char *device);\n"
12943 "\n"
12944 msgstr ""
12945
12946 #. type: textblock
12947 #: ../src/guestfs-actions.pod:4070 ../fish/guestfish-actions.pod:2799
12948 msgid ""
12949 "Remove an LVM logical volume C<device>, where C<device> is the path to the "
12950 "LV, such as C</dev/VG/LV>."
12951 msgstr ""
12952
12953 #. type: textblock
12954 #: ../src/guestfs-actions.pod:4073 ../fish/guestfish-actions.pod:2802
12955 msgid ""
12956 "You can also remove all LVs in a volume group by specifying the VG name, C</"
12957 "dev/VG>."
12958 msgstr ""
12959
12960 #. type: textblock
12961 #: ../src/guestfs-actions.pod:4078 ../src/guestfs-actions.pod:5314
12962 #: ../src/guestfs-actions.pod:7103
12963 msgid "(Added in 1.0.13)"
12964 msgstr ""
12965
12966 #. type: =head2
12967 #: ../src/guestfs-actions.pod:4080
12968 msgid "guestfs_lvrename"
12969 msgstr ""
12970
12971 #. type: verbatim
12972 #: ../src/guestfs-actions.pod:4082
12973 #, no-wrap
12974 msgid ""
12975 " int\n"
12976 " guestfs_lvrename (guestfs_h *g,\n"
12977 "                   const char *logvol,\n"
12978 "                   const char *newlogvol);\n"
12979 "\n"
12980 msgstr ""
12981
12982 #. type: textblock
12983 #: ../src/guestfs-actions.pod:4087 ../fish/guestfish-actions.pod:2809
12984 msgid "Rename a logical volume C<logvol> with the new name C<newlogvol>."
12985 msgstr ""
12986
12987 #. type: textblock
12988 #: ../src/guestfs-actions.pod:4091 ../src/guestfs-actions.pod:7116
12989 msgid "(Added in 1.0.83)"
12990 msgstr ""
12991
12992 #. type: =head2
12993 #: ../src/guestfs-actions.pod:4093
12994 msgid "guestfs_lvresize"
12995 msgstr ""
12996
12997 #. type: verbatim
12998 #: ../src/guestfs-actions.pod:4095
12999 #, no-wrap
13000 msgid ""
13001 " int\n"
13002 " guestfs_lvresize (guestfs_h *g,\n"
13003 "                   const char *device,\n"
13004 "                   int mbytes);\n"
13005 "\n"
13006 msgstr ""
13007
13008 #. type: textblock
13009 #: ../src/guestfs-actions.pod:4100 ../fish/guestfish-actions.pod:2815
13010 msgid ""
13011 "This resizes (expands or shrinks) an existing LVM logical volume to "
13012 "C<mbytes>.  When reducing, data in the reduced part is lost."
13013 msgstr ""
13014
13015 #. type: =head2
13016 #: ../src/guestfs-actions.pod:4108
13017 msgid "guestfs_lvresize_free"
13018 msgstr ""
13019
13020 #. type: verbatim
13021 #: ../src/guestfs-actions.pod:4110
13022 #, no-wrap
13023 msgid ""
13024 " int\n"
13025 " guestfs_lvresize_free (guestfs_h *g,\n"
13026 "                        const char *lv,\n"
13027 "                        int percent);\n"
13028 "\n"
13029 msgstr ""
13030
13031 #. type: textblock
13032 #: ../src/guestfs-actions.pod:4115 ../fish/guestfish-actions.pod:2823
13033 msgid ""
13034 "This expands an existing logical volume C<lv> so that it fills C<pc>% of the "
13035 "remaining free space in the volume group.  Commonly you would call this with "
13036 "pc = 100 which expands the logical volume as much as possible, using all "
13037 "remaining free space in the volume group."
13038 msgstr ""
13039
13040 #. type: textblock
13041 #: ../src/guestfs-actions.pod:4123
13042 msgid "(Added in 1.3.3)"
13043 msgstr ""
13044
13045 #. type: =head2
13046 #: ../src/guestfs-actions.pod:4125
13047 msgid "guestfs_lvs"
13048 msgstr ""
13049
13050 #. type: verbatim
13051 #: ../src/guestfs-actions.pod:4127
13052 #, no-wrap
13053 msgid ""
13054 " char **\n"
13055 " guestfs_lvs (guestfs_h *g);\n"
13056 "\n"
13057 msgstr ""
13058
13059 #. type: textblock
13060 #: ../src/guestfs-actions.pod:4130 ../fish/guestfish-actions.pod:2833
13061 msgid ""
13062 "List all the logical volumes detected.  This is the equivalent of the L<lvs"
13063 "(8)> command."
13064 msgstr ""
13065
13066 #. type: textblock
13067 #: ../src/guestfs-actions.pod:4133 ../fish/guestfish-actions.pod:2836
13068 msgid ""
13069 "This returns a list of the logical volume device names (eg. C</dev/"
13070 "VolGroup00/LogVol00>)."
13071 msgstr ""
13072
13073 #. type: textblock
13074 #: ../src/guestfs-actions.pod:4136
13075 msgid "See also C<guestfs_lvs_full>, C<guestfs_list_filesystems>."
13076 msgstr ""
13077
13078 #. type: =head2
13079 #: ../src/guestfs-actions.pod:4144
13080 msgid "guestfs_lvs_full"
13081 msgstr ""
13082
13083 #. type: verbatim
13084 #: ../src/guestfs-actions.pod:4146
13085 #, no-wrap
13086 msgid ""
13087 " struct guestfs_lvm_lv_list *\n"
13088 " guestfs_lvs_full (guestfs_h *g);\n"
13089 "\n"
13090 msgstr ""
13091
13092 #. type: textblock
13093 #: ../src/guestfs-actions.pod:4149 ../fish/guestfish-actions.pod:2845
13094 msgid ""
13095 "List all the logical volumes detected.  This is the equivalent of the L<lvs"
13096 "(8)> command.  The \"full\" version includes all fields."
13097 msgstr ""
13098
13099 #. type: textblock
13100 #: ../src/guestfs-actions.pod:4152
13101 msgid ""
13102 "This function returns a C<struct guestfs_lvm_lv_list *>, or NULL if there "
13103 "was an error.  I<The caller must call C<guestfs_free_lvm_lv_list> after use>."
13104 msgstr ""
13105
13106 #. type: =head2
13107 #: ../src/guestfs-actions.pod:4158
13108 msgid "guestfs_lvuuid"
13109 msgstr ""
13110
13111 #. type: verbatim
13112 #: ../src/guestfs-actions.pod:4160
13113 #, no-wrap
13114 msgid ""
13115 " char *\n"
13116 " guestfs_lvuuid (guestfs_h *g,\n"
13117 "                 const char *device);\n"
13118 "\n"
13119 msgstr ""
13120
13121 #. type: textblock
13122 #: ../src/guestfs-actions.pod:4164 ../fish/guestfish-actions.pod:2852
13123 msgid "This command returns the UUID of the LVM LV C<device>."
13124 msgstr ""
13125
13126 #. type: =head2
13127 #: ../src/guestfs-actions.pod:4171
13128 msgid "guestfs_lxattrlist"
13129 msgstr ""
13130
13131 #. type: verbatim
13132 #: ../src/guestfs-actions.pod:4173
13133 #, no-wrap
13134 msgid ""
13135 " struct guestfs_xattr_list *\n"
13136 " guestfs_lxattrlist (guestfs_h *g,\n"
13137 "                     const char *path,\n"
13138 "                     char *const *names);\n"
13139 "\n"
13140 msgstr ""
13141
13142 #. type: textblock
13143 #: ../src/guestfs-actions.pod:4178 ../fish/guestfish-actions.pod:2858
13144 msgid ""
13145 "This call allows you to get the extended attributes of multiple files, where "
13146 "all files are in the directory C<path>.  C<names> is the list of files from "
13147 "this directory."
13148 msgstr ""
13149
13150 #. type: textblock
13151 #: ../src/guestfs-actions.pod:4182 ../fish/guestfish-actions.pod:2862
13152 msgid ""
13153 "On return you get a flat list of xattr structs which must be interpreted "
13154 "sequentially.  The first xattr struct always has a zero-length C<attrname>.  "
13155 "C<attrval> in this struct is zero-length to indicate there was an error "
13156 "doing C<lgetxattr> for this file, I<or> is a C string which is a decimal "
13157 "number (the number of following attributes for this file, which could be C<"
13158 "\"0\">).  Then after the first xattr struct are the zero or more attributes "
13159 "for the first named file.  This repeats for the second and subsequent files."
13160 msgstr ""
13161
13162 #. type: textblock
13163 #: ../src/guestfs-actions.pod:4192
13164 msgid ""
13165 "This call is intended for programs that want to efficiently list a directory "
13166 "contents without making many round-trips.  See also C<guestfs_lstatlist> for "
13167 "a similarly efficient call for getting standard stats.  Very long directory "
13168 "listings might cause the protocol message size to be exceeded, causing this "
13169 "call to fail.  The caller must split up such requests into smaller groups of "
13170 "names."
13171 msgstr ""
13172
13173 #. type: =head2
13174 #: ../src/guestfs-actions.pod:4206
13175 msgid "guestfs_mkdir"
13176 msgstr ""
13177
13178 #. type: verbatim
13179 #: ../src/guestfs-actions.pod:4208
13180 #, no-wrap
13181 msgid ""
13182 " int\n"
13183 " guestfs_mkdir (guestfs_h *g,\n"
13184 "                const char *path);\n"
13185 "\n"
13186 msgstr ""
13187
13188 #. type: textblock
13189 #: ../src/guestfs-actions.pod:4212 ../fish/guestfish-actions.pod:2884
13190 msgid "Create a directory named C<path>."
13191 msgstr ""
13192
13193 #. type: =head2
13194 #: ../src/guestfs-actions.pod:4218
13195 msgid "guestfs_mkdir_mode"
13196 msgstr ""
13197
13198 #. type: verbatim
13199 #: ../src/guestfs-actions.pod:4220
13200 #, no-wrap
13201 msgid ""
13202 " int\n"
13203 " guestfs_mkdir_mode (guestfs_h *g,\n"
13204 "                     const char *path,\n"
13205 "                     int mode);\n"
13206 "\n"
13207 msgstr ""
13208
13209 #. type: textblock
13210 #: ../src/guestfs-actions.pod:4225 ../fish/guestfish-actions.pod:2890
13211 msgid ""
13212 "This command creates a directory, setting the initial permissions of the "
13213 "directory to C<mode>."
13214 msgstr ""
13215
13216 #. type: textblock
13217 #: ../src/guestfs-actions.pod:4228 ../fish/guestfish-actions.pod:2893
13218 msgid ""
13219 "For common Linux filesystems, the actual mode which is set will be C<mode & "
13220 "~umask & 01777>.  Non-native-Linux filesystems may interpret the mode in "
13221 "other ways."
13222 msgstr ""
13223
13224 #. type: textblock
13225 #: ../src/guestfs-actions.pod:4232
13226 msgid "See also C<guestfs_mkdir>, C<guestfs_umask>"
13227 msgstr ""
13228
13229 #. type: =head2
13230 #: ../src/guestfs-actions.pod:4238
13231 msgid "guestfs_mkdir_p"
13232 msgstr ""
13233
13234 #. type: verbatim
13235 #: ../src/guestfs-actions.pod:4240
13236 #, no-wrap
13237 msgid ""
13238 " int\n"
13239 " guestfs_mkdir_p (guestfs_h *g,\n"
13240 "                  const char *path);\n"
13241 "\n"
13242 msgstr ""
13243
13244 #. type: textblock
13245 #: ../src/guestfs-actions.pod:4244 ../fish/guestfish-actions.pod:2903
13246 msgid ""
13247 "Create a directory named C<path>, creating any parent directories as "
13248 "necessary.  This is like the C<mkdir -p> shell command."
13249 msgstr ""
13250
13251 #. type: =head2
13252 #: ../src/guestfs-actions.pod:4251
13253 msgid "guestfs_mkdtemp"
13254 msgstr ""
13255
13256 #. type: verbatim
13257 #: ../src/guestfs-actions.pod:4253
13258 #, no-wrap
13259 msgid ""
13260 " char *\n"
13261 " guestfs_mkdtemp (guestfs_h *g,\n"
13262 "                  const char *template);\n"
13263 "\n"
13264 msgstr ""
13265
13266 #. type: textblock
13267 #: ../src/guestfs-actions.pod:4257 ../fish/guestfish-actions.pod:2910
13268 msgid ""
13269 "This command creates a temporary directory.  The C<template> parameter "
13270 "should be a full pathname for the temporary directory name with the final "
13271 "six characters being \"XXXXXX\"."
13272 msgstr ""
13273
13274 #. type: textblock
13275 #: ../src/guestfs-actions.pod:4262 ../fish/guestfish-actions.pod:2915
13276 msgid ""
13277 "For example: \"/tmp/myprogXXXXXX\" or \"/Temp/myprogXXXXXX\", the second one "
13278 "being suitable for Windows filesystems."
13279 msgstr ""
13280
13281 #. type: textblock
13282 #: ../src/guestfs-actions.pod:4265 ../fish/guestfish-actions.pod:2918
13283 msgid "The name of the temporary directory that was created is returned."
13284 msgstr ""
13285
13286 #. type: textblock
13287 #: ../src/guestfs-actions.pod:4268 ../fish/guestfish-actions.pod:2921
13288 msgid "The temporary directory is created with mode 0700 and is owned by root."
13289 msgstr ""
13290
13291 #. type: textblock
13292 #: ../src/guestfs-actions.pod:4271 ../fish/guestfish-actions.pod:2924
13293 msgid ""
13294 "The caller is responsible for deleting the temporary directory and its "
13295 "contents after use."
13296 msgstr ""
13297
13298 #. type: textblock
13299 #: ../src/guestfs-actions.pod:4274 ../fish/guestfish-actions.pod:2927
13300 msgid "See also: L<mkdtemp(3)>"
13301 msgstr ""
13302
13303 #. type: =head2
13304 #: ../src/guestfs-actions.pod:4281
13305 msgid "guestfs_mke2fs_J"
13306 msgstr ""
13307
13308 #. type: verbatim
13309 #: ../src/guestfs-actions.pod:4283
13310 #, no-wrap
13311 msgid ""
13312 " int\n"
13313 " guestfs_mke2fs_J (guestfs_h *g,\n"
13314 "                   const char *fstype,\n"
13315 "                   int blocksize,\n"
13316 "                   const char *device,\n"
13317 "                   const char *journal);\n"
13318 "\n"
13319 msgstr ""
13320
13321 #. type: textblock
13322 #: ../src/guestfs-actions.pod:4290 ../fish/guestfish-actions.pod:2933
13323 msgid ""
13324 "This creates an ext2/3/4 filesystem on C<device> with an external journal on "
13325 "C<journal>.  It is equivalent to the command:"
13326 msgstr ""
13327
13328 #. type: verbatim
13329 #: ../src/guestfs-actions.pod:4294 ../fish/guestfish-actions.pod:2937
13330 #, no-wrap
13331 msgid ""
13332 " mke2fs -t fstype -b blocksize -J device=<journal> <device>\n"
13333 "\n"
13334 msgstr ""
13335
13336 #. type: textblock
13337 #: ../src/guestfs-actions.pod:4296
13338 msgid "See also C<guestfs_mke2journal>."
13339 msgstr ""
13340
13341 #. type: textblock
13342 #: ../src/guestfs-actions.pod:4300 ../src/guestfs-actions.pod:4318
13343 #: ../src/guestfs-actions.pod:4336 ../src/guestfs-actions.pod:4352
13344 #: ../src/guestfs-actions.pod:4366 ../src/guestfs-actions.pod:4380
13345 #: ../src/guestfs-actions.pod:4439 ../src/guestfs-actions.pod:4704
13346 msgid "(Added in 1.0.68)"
13347 msgstr ""
13348
13349 #. type: =head2
13350 #: ../src/guestfs-actions.pod:4302
13351 msgid "guestfs_mke2fs_JL"
13352 msgstr ""
13353
13354 #. type: verbatim
13355 #: ../src/guestfs-actions.pod:4304
13356 #, no-wrap
13357 msgid ""
13358 " int\n"
13359 " guestfs_mke2fs_JL (guestfs_h *g,\n"
13360 "                    const char *fstype,\n"
13361 "                    int blocksize,\n"
13362 "                    const char *device,\n"
13363 "                    const char *label);\n"
13364 "\n"
13365 msgstr ""
13366
13367 #. type: textblock
13368 #: ../src/guestfs-actions.pod:4311 ../fish/guestfish-actions.pod:2945
13369 msgid ""
13370 "This creates an ext2/3/4 filesystem on C<device> with an external journal on "
13371 "the journal labeled C<label>."
13372 msgstr ""
13373
13374 #. type: textblock
13375 #: ../src/guestfs-actions.pod:4314
13376 msgid "See also C<guestfs_mke2journal_L>."
13377 msgstr ""
13378
13379 #. type: =head2
13380 #: ../src/guestfs-actions.pod:4320
13381 msgid "guestfs_mke2fs_JU"
13382 msgstr ""
13383
13384 #. type: verbatim
13385 #: ../src/guestfs-actions.pod:4322
13386 #, no-wrap
13387 msgid ""
13388 " int\n"
13389 " guestfs_mke2fs_JU (guestfs_h *g,\n"
13390 "                    const char *fstype,\n"
13391 "                    int blocksize,\n"
13392 "                    const char *device,\n"
13393 "                    const char *uuid);\n"
13394 "\n"
13395 msgstr ""
13396
13397 #. type: textblock
13398 #: ../src/guestfs-actions.pod:4329 ../fish/guestfish-actions.pod:2954
13399 msgid ""
13400 "This creates an ext2/3/4 filesystem on C<device> with an external journal on "
13401 "the journal with UUID C<uuid>."
13402 msgstr ""
13403
13404 #. type: textblock
13405 #: ../src/guestfs-actions.pod:4332
13406 msgid "See also C<guestfs_mke2journal_U>."
13407 msgstr ""
13408
13409 #. type: =head2
13410 #: ../src/guestfs-actions.pod:4338
13411 msgid "guestfs_mke2journal"
13412 msgstr ""
13413
13414 #. type: verbatim
13415 #: ../src/guestfs-actions.pod:4340
13416 #, no-wrap
13417 msgid ""
13418 " int\n"
13419 " guestfs_mke2journal (guestfs_h *g,\n"
13420 "                      int blocksize,\n"
13421 "                      const char *device);\n"
13422 "\n"
13423 msgstr ""
13424
13425 #. type: textblock
13426 #: ../src/guestfs-actions.pod:4345 ../fish/guestfish-actions.pod:2963
13427 msgid ""
13428 "This creates an ext2 external journal on C<device>.  It is equivalent to the "
13429 "command:"
13430 msgstr ""
13431
13432 #. type: verbatim
13433 #: ../src/guestfs-actions.pod:4348 ../fish/guestfish-actions.pod:2966
13434 #, no-wrap
13435 msgid ""
13436 " mke2fs -O journal_dev -b blocksize device\n"
13437 "\n"
13438 msgstr ""
13439
13440 #. type: =head2
13441 #: ../src/guestfs-actions.pod:4354
13442 msgid "guestfs_mke2journal_L"
13443 msgstr ""
13444
13445 #. type: verbatim
13446 #: ../src/guestfs-actions.pod:4356
13447 #, no-wrap
13448 msgid ""
13449 " int\n"
13450 " guestfs_mke2journal_L (guestfs_h *g,\n"
13451 "                        int blocksize,\n"
13452 "                        const char *label,\n"
13453 "                        const char *device);\n"
13454 "\n"
13455 msgstr ""
13456
13457 #. type: textblock
13458 #: ../src/guestfs-actions.pod:4362 ../fish/guestfish-actions.pod:2972
13459 msgid "This creates an ext2 external journal on C<device> with label C<label>."
13460 msgstr ""
13461
13462 #. type: =head2
13463 #: ../src/guestfs-actions.pod:4368
13464 msgid "guestfs_mke2journal_U"
13465 msgstr ""
13466
13467 #. type: verbatim
13468 #: ../src/guestfs-actions.pod:4370
13469 #, no-wrap
13470 msgid ""
13471 " int\n"
13472 " guestfs_mke2journal_U (guestfs_h *g,\n"
13473 "                        int blocksize,\n"
13474 "                        const char *uuid,\n"
13475 "                        const char *device);\n"
13476 "\n"
13477 msgstr ""
13478
13479 #. type: textblock
13480 #: ../src/guestfs-actions.pod:4376 ../fish/guestfish-actions.pod:2978
13481 msgid "This creates an ext2 external journal on C<device> with UUID C<uuid>."
13482 msgstr ""
13483
13484 #. type: =head2
13485 #: ../src/guestfs-actions.pod:4382
13486 msgid "guestfs_mkfifo"
13487 msgstr ""
13488
13489 #. type: verbatim
13490 #: ../src/guestfs-actions.pod:4384
13491 #, no-wrap
13492 msgid ""
13493 " int\n"
13494 " guestfs_mkfifo (guestfs_h *g,\n"
13495 "                 int mode,\n"
13496 "                 const char *path);\n"
13497 "\n"
13498 msgstr ""
13499
13500 #. type: textblock
13501 #: ../src/guestfs-actions.pod:4389
13502 msgid ""
13503 "This call creates a FIFO (named pipe) called C<path> with mode C<mode>.  It "
13504 "is just a convenient wrapper around C<guestfs_mknod>."
13505 msgstr ""
13506
13507 #. type: =head2
13508 #: ../src/guestfs-actions.pod:4399
13509 msgid "guestfs_mkfs"
13510 msgstr ""
13511
13512 #. type: verbatim
13513 #: ../src/guestfs-actions.pod:4401
13514 #, no-wrap
13515 msgid ""
13516 " int\n"
13517 " guestfs_mkfs (guestfs_h *g,\n"
13518 "               const char *fstype,\n"
13519 "               const char *device);\n"
13520 "\n"
13521 msgstr ""
13522
13523 #. type: textblock
13524 #: ../src/guestfs-actions.pod:4406 ../fish/guestfish-actions.pod:2994
13525 msgid ""
13526 "This creates a filesystem on C<device> (usually a partition or LVM logical "
13527 "volume).  The filesystem type is C<fstype>, for example C<ext3>."
13528 msgstr ""
13529
13530 #. type: =head2
13531 #: ../src/guestfs-actions.pod:4414
13532 msgid "guestfs_mkfs_b"
13533 msgstr ""
13534
13535 #. type: verbatim
13536 #: ../src/guestfs-actions.pod:4416
13537 #, no-wrap
13538 msgid ""
13539 " int\n"
13540 " guestfs_mkfs_b (guestfs_h *g,\n"
13541 "                 const char *fstype,\n"
13542 "                 int blocksize,\n"
13543 "                 const char *device);\n"
13544 "\n"
13545 msgstr ""
13546
13547 #. type: textblock
13548 #: ../src/guestfs-actions.pod:4422
13549 msgid ""
13550 "This call is similar to C<guestfs_mkfs>, but it allows you to control the "
13551 "block size of the resulting filesystem.  Supported block sizes depend on the "
13552 "filesystem type, but typically they are C<1024>, C<2048> or C<4096> only."
13553 msgstr ""
13554
13555 #. type: textblock
13556 #: ../src/guestfs-actions.pod:4427 ../src/guestfs-actions.pod:4470
13557 #: ../fish/guestfish-actions.pod:3007 ../fish/guestfish-actions.pod:3034
13558 msgid ""
13559 "For VFAT and NTFS the C<blocksize> parameter is treated as the requested "
13560 "cluster size."
13561 msgstr ""
13562
13563 #. type: textblock
13564 #: ../src/guestfs-actions.pod:4432 ../fish/guestfish-actions.pod:3010
13565 msgid ""
13566 "This function is deprecated.  In new code, use the C<mkfs_opts> call instead."
13567 msgstr ""
13568
13569 #. type: =head2
13570 #: ../src/guestfs-actions.pod:4441
13571 msgid "guestfs_mkfs_opts"
13572 msgstr ""
13573
13574 #. type: verbatim
13575 #: ../src/guestfs-actions.pod:4443
13576 #, no-wrap
13577 msgid ""
13578 " int\n"
13579 " guestfs_mkfs_opts (guestfs_h *g,\n"
13580 "                    const char *fstype,\n"
13581 "                    const char *device,\n"
13582 "                    ...);\n"
13583 "\n"
13584 msgstr ""
13585
13586 #. type: verbatim
13587 #: ../src/guestfs-actions.pod:4454
13588 #, no-wrap
13589 msgid ""
13590 " GUESTFS_MKFS_OPTS_BLOCKSIZE, int blocksize,\n"
13591 " GUESTFS_MKFS_OPTS_FEATURES, const char *features,\n"
13592 "\n"
13593 msgstr ""
13594
13595 #. type: textblock
13596 #: ../src/guestfs-actions.pod:4457 ../fish/guestfish-actions.pod:3021
13597 msgid ""
13598 "This function creates a filesystem on C<device>.  The filesystem type is "
13599 "C<fstype>, for example C<ext3>."
13600 msgstr ""
13601
13602 #. type: =item
13603 #: ../src/guestfs-actions.pod:4464 ../fish/guestfish-actions.pod:3028
13604 msgid "C<blocksize>"
13605 msgstr ""
13606
13607 #. type: textblock
13608 #: ../src/guestfs-actions.pod:4466 ../fish/guestfish-actions.pod:3030
13609 msgid ""
13610 "The filesystem block size.  Supported block sizes depend on the filesystem "
13611 "type, but typically they are C<1024>, C<2048> or C<4096> for Linux ext2/3 "
13612 "filesystems."
13613 msgstr ""
13614
13615 #. type: textblock
13616 #: ../src/guestfs-actions.pod:4473 ../fish/guestfish-actions.pod:3037
13617 msgid "For UFS block sizes, please see L<mkfs.ufs(8)>."
13618 msgstr ""
13619
13620 #. type: =item
13621 #: ../src/guestfs-actions.pod:4475 ../fish/guestfish-actions.pod:3039
13622 msgid "C<features>"
13623 msgstr ""
13624
13625 #. type: textblock
13626 #: ../src/guestfs-actions.pod:4477 ../fish/guestfish-actions.pod:3041
13627 msgid "This passes the I<-O> parameter to the external mkfs program."
13628 msgstr ""
13629
13630 #. type: textblock
13631 #: ../src/guestfs-actions.pod:4479 ../fish/guestfish-actions.pod:3043
13632 msgid ""
13633 "For certain filesystem types, this allows extra filesystem features to be "
13634 "selected.  See L<mke2fs(8)> and L<mkfs.ufs(8)> for more details."
13635 msgstr ""
13636
13637 #. type: textblock
13638 #: ../src/guestfs-actions.pod:4483 ../fish/guestfish-actions.pod:3047
13639 msgid ""
13640 "You cannot use this optional parameter with the C<gfs> or C<gfs2> filesystem "
13641 "type."
13642 msgstr ""
13643
13644 #. type: textblock
13645 #: ../src/guestfs-actions.pod:4490
13646 msgid "(Added in 1.7.19)"
13647 msgstr ""
13648
13649 #. type: =head2
13650 #: ../src/guestfs-actions.pod:4492
13651 msgid "guestfs_mkfs_opts_va"
13652 msgstr ""
13653
13654 #. type: verbatim
13655 #: ../src/guestfs-actions.pod:4494
13656 #, no-wrap
13657 msgid ""
13658 " int\n"
13659 " guestfs_mkfs_opts_va (guestfs_h *g,\n"
13660 "                       const char *fstype,\n"
13661 "                       const char *device,\n"
13662 "                       va_list args);\n"
13663 "\n"
13664 msgstr ""
13665
13666 #. type: textblock
13667 #: ../src/guestfs-actions.pod:4500
13668 msgid "This is the \"va_list variant\" of L</guestfs_mkfs_opts>."
13669 msgstr ""
13670
13671 #. type: =head2
13672 #: ../src/guestfs-actions.pod:4504
13673 msgid "guestfs_mkfs_opts_argv"
13674 msgstr ""
13675
13676 #. type: verbatim
13677 #: ../src/guestfs-actions.pod:4506
13678 #, no-wrap
13679 msgid ""
13680 " int\n"
13681 " guestfs_mkfs_opts_argv (guestfs_h *g,\n"
13682 "                         const char *fstype,\n"
13683 "                         const char *device,\n"
13684 "                         const struct guestfs_mkfs_opts_argv *optargs);\n"
13685 "\n"
13686 msgstr ""
13687
13688 #. type: textblock
13689 #: ../src/guestfs-actions.pod:4512
13690 msgid "This is the \"argv variant\" of L</guestfs_mkfs_opts>."
13691 msgstr ""
13692
13693 #. type: =head2
13694 #: ../src/guestfs-actions.pod:4516
13695 msgid "guestfs_mkmountpoint"
13696 msgstr ""
13697
13698 #. type: verbatim
13699 #: ../src/guestfs-actions.pod:4518
13700 #, no-wrap
13701 msgid ""
13702 " int\n"
13703 " guestfs_mkmountpoint (guestfs_h *g,\n"
13704 "                       const char *exemptpath);\n"
13705 "\n"
13706 msgstr ""
13707
13708 #. type: textblock
13709 #: ../src/guestfs-actions.pod:4522
13710 msgid ""
13711 "C<guestfs_mkmountpoint> and C<guestfs_rmmountpoint> are specialized calls "
13712 "that can be used to create extra mountpoints before mounting the first "
13713 "filesystem."
13714 msgstr ""
13715
13716 #. type: textblock
13717 #: ../src/guestfs-actions.pod:4526 ../fish/guestfish-actions.pod:3062
13718 msgid ""
13719 "These calls are I<only> necessary in some very limited circumstances, mainly "
13720 "the case where you want to mount a mix of unrelated and/or read-only "
13721 "filesystems together."
13722 msgstr ""
13723
13724 #. type: textblock
13725 #: ../src/guestfs-actions.pod:4530 ../fish/guestfish-actions.pod:3066
13726 msgid ""
13727 "For example, live CDs often contain a \"Russian doll\" nest of filesystems, "
13728 "an ISO outer layer, with a squashfs image inside, with an ext2/3 image "
13729 "inside that.  You can unpack this as follows in guestfish:"
13730 msgstr ""
13731
13732 #. type: verbatim
13733 #: ../src/guestfs-actions.pod:4535 ../fish/guestfish-actions.pod:3071
13734 #, no-wrap
13735 msgid ""
13736 " add-ro Fedora-11-i686-Live.iso\n"
13737 " run\n"
13738 " mkmountpoint /cd\n"
13739 " mkmountpoint /sqsh\n"
13740 " mkmountpoint /ext3fs\n"
13741 " mount /dev/sda /cd\n"
13742 " mount-loop /cd/LiveOS/squashfs.img /sqsh\n"
13743 " mount-loop /sqsh/LiveOS/ext3fs.img /ext3fs\n"
13744 "\n"
13745 msgstr ""
13746
13747 #. type: textblock
13748 #: ../src/guestfs-actions.pod:4544 ../fish/guestfish-actions.pod:3080
13749 msgid "The inner filesystem is now unpacked under the /ext3fs mountpoint."
13750 msgstr ""
13751
13752 #. type: textblock
13753 #: ../src/guestfs-actions.pod:4546
13754 msgid ""
13755 "C<guestfs_mkmountpoint> is not compatible with C<guestfs_umount_all>.  You "
13756 "may get unexpected errors if you try to mix these calls.  It is safest to "
13757 "manually unmount filesystems and remove mountpoints after use."
13758 msgstr ""
13759
13760 #. type: textblock
13761 #: ../src/guestfs-actions.pod:4550
13762 msgid ""
13763 "C<guestfs_umount_all> unmounts filesystems by sorting the paths longest "
13764 "first, so for this to work for manual mountpoints, you must ensure that the "
13765 "innermost mountpoints have the longest pathnames, as in the example code "
13766 "above."
13767 msgstr ""
13768
13769 #. type: textblock
13770 #: ../src/guestfs-actions.pod:4555 ../fish/guestfish-actions.pod:3091
13771 msgid ""
13772 "For more details see L<https://bugzilla.redhat.com/show_bug.cgi?id=599503>"
13773 msgstr ""
13774
13775 #. type: textblock
13776 #: ../src/guestfs-actions.pod:4557
13777 msgid ""
13778 "Autosync [see C<guestfs_set_autosync>, this is set by default on handles] "
13779 "can cause C<guestfs_umount_all> to be called when the handle is closed which "
13780 "can also trigger these issues."
13781 msgstr ""
13782
13783 #. type: textblock
13784 #: ../src/guestfs-actions.pod:4563 ../src/guestfs-actions.pod:4822
13785 #: ../src/guestfs-actions.pod:5732
13786 msgid "(Added in 1.0.62)"
13787 msgstr ""
13788
13789 #. type: =head2
13790 #: ../src/guestfs-actions.pod:4565
13791 msgid "guestfs_mknod"
13792 msgstr ""
13793
13794 #. type: verbatim
13795 #: ../src/guestfs-actions.pod:4567
13796 #, no-wrap
13797 msgid ""
13798 " int\n"
13799 " guestfs_mknod (guestfs_h *g,\n"
13800 "                int mode,\n"
13801 "                int devmajor,\n"
13802 "                int devminor,\n"
13803 "                const char *path);\n"
13804 "\n"
13805 msgstr ""
13806
13807 #. type: textblock
13808 #: ../src/guestfs-actions.pod:4574 ../fish/guestfish-actions.pod:3101
13809 msgid ""
13810 "This call creates block or character special devices, or named pipes (FIFOs)."
13811 msgstr ""
13812
13813 #. type: textblock
13814 #: ../src/guestfs-actions.pod:4577 ../fish/guestfish-actions.pod:3104
13815 msgid ""
13816 "The C<mode> parameter should be the mode, using the standard constants.  "
13817 "C<devmajor> and C<devminor> are the device major and minor numbers, only "
13818 "used when creating block and character special devices."
13819 msgstr ""
13820
13821 #. type: textblock
13822 #: ../src/guestfs-actions.pod:4582
13823 msgid ""
13824 "Note that, just like L<mknod(2)>, the mode must be bitwise OR'd with "
13825 "S_IFBLK, S_IFCHR, S_IFIFO or S_IFSOCK (otherwise this call just creates a "
13826 "regular file).  These constants are available in the standard Linux header "
13827 "files, or you can use C<guestfs_mknod_b>, C<guestfs_mknod_c> or "
13828 "C<guestfs_mkfifo> which are wrappers around this command which bitwise OR in "
13829 "the appropriate constant for you."
13830 msgstr ""
13831
13832 #. type: =head2
13833 #: ../src/guestfs-actions.pod:4596
13834 msgid "guestfs_mknod_b"
13835 msgstr ""
13836
13837 #. type: verbatim
13838 #: ../src/guestfs-actions.pod:4598
13839 #, no-wrap
13840 msgid ""
13841 " int\n"
13842 " guestfs_mknod_b (guestfs_h *g,\n"
13843 "                  int mode,\n"
13844 "                  int devmajor,\n"
13845 "                  int devminor,\n"
13846 "                  const char *path);\n"
13847 "\n"
13848 msgstr ""
13849
13850 #. type: textblock
13851 #: ../src/guestfs-actions.pod:4605
13852 msgid ""
13853 "This call creates a block device node called C<path> with mode C<mode> and "
13854 "device major/minor C<devmajor> and C<devminor>.  It is just a convenient "
13855 "wrapper around C<guestfs_mknod>."
13856 msgstr ""
13857
13858 #. type: =head2
13859 #: ../src/guestfs-actions.pod:4615
13860 msgid "guestfs_mknod_c"
13861 msgstr ""
13862
13863 #. type: verbatim
13864 #: ../src/guestfs-actions.pod:4617
13865 #, no-wrap
13866 msgid ""
13867 " int\n"
13868 " guestfs_mknod_c (guestfs_h *g,\n"
13869 "                  int mode,\n"
13870 "                  int devmajor,\n"
13871 "                  int devminor,\n"
13872 "                  const char *path);\n"
13873 "\n"
13874 msgstr ""
13875
13876 #. type: textblock
13877 #: ../src/guestfs-actions.pod:4624
13878 msgid ""
13879 "This call creates a char device node called C<path> with mode C<mode> and "
13880 "device major/minor C<devmajor> and C<devminor>.  It is just a convenient "
13881 "wrapper around C<guestfs_mknod>."
13882 msgstr ""
13883
13884 #. type: =head2
13885 #: ../src/guestfs-actions.pod:4634
13886 msgid "guestfs_mkswap"
13887 msgstr ""
13888
13889 #. type: verbatim
13890 #: ../src/guestfs-actions.pod:4636
13891 #, no-wrap
13892 msgid ""
13893 " int\n"
13894 " guestfs_mkswap (guestfs_h *g,\n"
13895 "                 const char *device);\n"
13896 "\n"
13897 msgstr ""
13898
13899 #. type: textblock
13900 #: ../src/guestfs-actions.pod:4640 ../fish/guestfish-actions.pod:3143
13901 msgid "Create a swap partition on C<device>."
13902 msgstr ""
13903
13904 #. type: =head2
13905 #: ../src/guestfs-actions.pod:4646
13906 msgid "guestfs_mkswap_L"
13907 msgstr ""
13908
13909 #. type: verbatim
13910 #: ../src/guestfs-actions.pod:4648
13911 #, no-wrap
13912 msgid ""
13913 " int\n"
13914 " guestfs_mkswap_L (guestfs_h *g,\n"
13915 "                   const char *label,\n"
13916 "                   const char *device);\n"
13917 "\n"
13918 msgstr ""
13919
13920 #. type: textblock
13921 #: ../src/guestfs-actions.pod:4653 ../fish/guestfish-actions.pod:3149
13922 msgid "Create a swap partition on C<device> with label C<label>."
13923 msgstr ""
13924
13925 #. type: textblock
13926 #: ../src/guestfs-actions.pod:4655 ../fish/guestfish-actions.pod:3151
13927 msgid ""
13928 "Note that you cannot attach a swap label to a block device (eg. C</dev/"
13929 "sda>), just to a partition.  This appears to be a limitation of the kernel "
13930 "or swap tools."
13931 msgstr ""
13932
13933 #. type: =head2
13934 #: ../src/guestfs-actions.pod:4663
13935 msgid "guestfs_mkswap_U"
13936 msgstr ""
13937
13938 #. type: verbatim
13939 #: ../src/guestfs-actions.pod:4665
13940 #, no-wrap
13941 msgid ""
13942 " int\n"
13943 " guestfs_mkswap_U (guestfs_h *g,\n"
13944 "                   const char *uuid,\n"
13945 "                   const char *device);\n"
13946 "\n"
13947 msgstr ""
13948
13949 #. type: textblock
13950 #: ../src/guestfs-actions.pod:4670 ../fish/guestfish-actions.pod:3159
13951 msgid "Create a swap partition on C<device> with UUID C<uuid>."
13952 msgstr ""
13953
13954 #. type: =head2
13955 #: ../src/guestfs-actions.pod:4676
13956 msgid "guestfs_mkswap_file"
13957 msgstr ""
13958
13959 #. type: verbatim
13960 #: ../src/guestfs-actions.pod:4678
13961 #, no-wrap
13962 msgid ""
13963 " int\n"
13964 " guestfs_mkswap_file (guestfs_h *g,\n"
13965 "                      const char *path);\n"
13966 "\n"
13967 msgstr ""
13968
13969 #. type: textblock
13970 #: ../src/guestfs-actions.pod:4682 ../fish/guestfish-actions.pod:3165
13971 msgid "Create a swap file."
13972 msgstr ""
13973
13974 #. type: textblock
13975 #: ../src/guestfs-actions.pod:4684
13976 msgid ""
13977 "This command just writes a swap file signature to an existing file.  To "
13978 "create the file itself, use something like C<guestfs_fallocate>."
13979 msgstr ""
13980
13981 #. type: =head2
13982 #: ../src/guestfs-actions.pod:4691
13983 msgid "guestfs_modprobe"
13984 msgstr ""
13985
13986 #. type: verbatim
13987 #: ../src/guestfs-actions.pod:4693
13988 #, no-wrap
13989 msgid ""
13990 " int\n"
13991 " guestfs_modprobe (guestfs_h *g,\n"
13992 "                   const char *modulename);\n"
13993 "\n"
13994 msgstr ""
13995
13996 #. type: textblock
13997 #: ../src/guestfs-actions.pod:4697 ../fish/guestfish-actions.pod:3174
13998 msgid "This loads a kernel module in the appliance."
13999 msgstr ""
14000
14001 #. type: textblock
14002 #: ../src/guestfs-actions.pod:4699 ../fish/guestfish-actions.pod:3176
14003 msgid ""
14004 "The kernel module must have been whitelisted when libguestfs was built (see "
14005 "C<appliance/kmod.whitelist.in> in the source)."
14006 msgstr ""
14007
14008 #. type: =head2
14009 #: ../src/guestfs-actions.pod:4706
14010 msgid "guestfs_mount"
14011 msgstr ""
14012
14013 #. type: verbatim
14014 #: ../src/guestfs-actions.pod:4708
14015 #, no-wrap
14016 msgid ""
14017 " int\n"
14018 " guestfs_mount (guestfs_h *g,\n"
14019 "                const char *device,\n"
14020 "                const char *mountpoint);\n"
14021 "\n"
14022 msgstr ""
14023
14024 #. type: textblock
14025 #: ../src/guestfs-actions.pod:4713 ../fish/guestfish-actions.pod:3183
14026 msgid ""
14027 "Mount a guest disk at a position in the filesystem.  Block devices are named "
14028 "C</dev/sda>, C</dev/sdb> and so on, as they were added to the guest.  If "
14029 "those block devices contain partitions, they will have the usual names (eg. "
14030 "C</dev/sda1>).  Also LVM C</dev/VG/LV>-style names can be used."
14031 msgstr ""
14032
14033 #. type: textblock
14034 #: ../src/guestfs-actions.pod:4719 ../fish/guestfish-actions.pod:3189
14035 msgid ""
14036 "The rules are the same as for L<mount(2)>: A filesystem must first be "
14037 "mounted on C</> before others can be mounted.  Other filesystems can only be "
14038 "mounted on directories which already exist."
14039 msgstr ""
14040
14041 #. type: textblock
14042 #: ../src/guestfs-actions.pod:4724 ../fish/guestfish-actions.pod:3194
14043 msgid ""
14044 "The mounted filesystem is writable, if we have sufficient permissions on the "
14045 "underlying device."
14046 msgstr ""
14047
14048 #. type: textblock
14049 #: ../src/guestfs-actions.pod:4727
14050 msgid ""
14051 "B<Important note:> When you use this call, the filesystem options C<sync> "
14052 "and C<noatime> are set implicitly.  This was originally done because we "
14053 "thought it would improve reliability, but it turns out that I<-o sync> has a "
14054 "very large negative performance impact and negligible effect on "
14055 "reliability.  Therefore we recommend that you avoid using C<guestfs_mount> "
14056 "in any code that needs performance, and instead use C<guestfs_mount_options> "
14057 "(use an empty string for the first parameter if you don't want any options)."
14058 msgstr ""
14059
14060 #. type: =head2
14061 #: ../src/guestfs-actions.pod:4741
14062 msgid "guestfs_mount_loop"
14063 msgstr ""
14064
14065 #. type: verbatim
14066 #: ../src/guestfs-actions.pod:4743
14067 #, no-wrap
14068 msgid ""
14069 " int\n"
14070 " guestfs_mount_loop (guestfs_h *g,\n"
14071 "                     const char *file,\n"
14072 "                     const char *mountpoint);\n"
14073 "\n"
14074 msgstr ""
14075
14076 #. type: textblock
14077 #: ../src/guestfs-actions.pod:4748 ../fish/guestfish-actions.pod:3211
14078 msgid ""
14079 "This command lets you mount C<file> (a filesystem image in a file) on a "
14080 "mount point.  It is entirely equivalent to the command C<mount -o loop file "
14081 "mountpoint>."
14082 msgstr ""
14083
14084 #. type: =head2
14085 #: ../src/guestfs-actions.pod:4756
14086 msgid "guestfs_mount_options"
14087 msgstr ""
14088
14089 #. type: verbatim
14090 #: ../src/guestfs-actions.pod:4758
14091 #, no-wrap
14092 msgid ""
14093 " int\n"
14094 " guestfs_mount_options (guestfs_h *g,\n"
14095 "                        const char *options,\n"
14096 "                        const char *device,\n"
14097 "                        const char *mountpoint);\n"
14098 "\n"
14099 msgstr ""
14100
14101 #. type: textblock
14102 #: ../src/guestfs-actions.pod:4764
14103 msgid ""
14104 "This is the same as the C<guestfs_mount> command, but it allows you to set "
14105 "the mount options as for the L<mount(8)> I<-o> flag."
14106 msgstr ""
14107
14108 #. type: textblock
14109 #: ../src/guestfs-actions.pod:4768 ../fish/guestfish-actions.pod:3223
14110 msgid ""
14111 "If the C<options> parameter is an empty string, then no options are passed "
14112 "(all options default to whatever the filesystem uses)."
14113 msgstr ""
14114
14115 #. type: textblock
14116 #: ../src/guestfs-actions.pod:4774 ../src/guestfs-actions.pod:4788
14117 #: ../src/guestfs-actions.pod:4805
14118 msgid "(Added in 1.0.10)"
14119 msgstr ""
14120
14121 #. type: =head2
14122 #: ../src/guestfs-actions.pod:4776
14123 msgid "guestfs_mount_ro"
14124 msgstr ""
14125
14126 #. type: verbatim
14127 #: ../src/guestfs-actions.pod:4778
14128 #, no-wrap
14129 msgid ""
14130 " int\n"
14131 " guestfs_mount_ro (guestfs_h *g,\n"
14132 "                   const char *device,\n"
14133 "                   const char *mountpoint);\n"
14134 "\n"
14135 msgstr ""
14136
14137 #. type: textblock
14138 #: ../src/guestfs-actions.pod:4783
14139 msgid ""
14140 "This is the same as the C<guestfs_mount> command, but it mounts the "
14141 "filesystem with the read-only (I<-o ro>) flag."
14142 msgstr ""
14143
14144 #. type: =head2
14145 #: ../src/guestfs-actions.pod:4790
14146 msgid "guestfs_mount_vfs"
14147 msgstr ""
14148
14149 #. type: verbatim
14150 #: ../src/guestfs-actions.pod:4792
14151 #, no-wrap
14152 msgid ""
14153 " int\n"
14154 " guestfs_mount_vfs (guestfs_h *g,\n"
14155 "                    const char *options,\n"
14156 "                    const char *vfstype,\n"
14157 "                    const char *device,\n"
14158 "                    const char *mountpoint);\n"
14159 "\n"
14160 msgstr ""
14161
14162 #. type: textblock
14163 #: ../src/guestfs-actions.pod:4799
14164 msgid ""
14165 "This is the same as the C<guestfs_mount> command, but it allows you to set "
14166 "both the mount options and the vfstype as for the L<mount(8)> I<-o> and I<-"
14167 "t> flags."
14168 msgstr ""
14169
14170 #. type: =head2
14171 #: ../src/guestfs-actions.pod:4807
14172 msgid "guestfs_mountpoints"
14173 msgstr ""
14174
14175 #. type: verbatim
14176 #: ../src/guestfs-actions.pod:4809
14177 #, no-wrap
14178 msgid ""
14179 " char **\n"
14180 " guestfs_mountpoints (guestfs_h *g);\n"
14181 "\n"
14182 msgstr ""
14183
14184 #. type: textblock
14185 #: ../src/guestfs-actions.pod:4812
14186 msgid ""
14187 "This call is similar to C<guestfs_mounts>.  That call returns a list of "
14188 "devices.  This one returns a hash table (map) of device name to directory "
14189 "where the device is mounted."
14190 msgstr ""
14191
14192 #. type: =head2
14193 #: ../src/guestfs-actions.pod:4824
14194 msgid "guestfs_mounts"
14195 msgstr ""
14196
14197 #. type: verbatim
14198 #: ../src/guestfs-actions.pod:4826
14199 #, no-wrap
14200 msgid ""
14201 " char **\n"
14202 " guestfs_mounts (guestfs_h *g);\n"
14203 "\n"
14204 msgstr ""
14205
14206 #. type: textblock
14207 #: ../src/guestfs-actions.pod:4829 ../fish/guestfish-actions.pod:3254
14208 msgid ""
14209 "This returns the list of currently mounted filesystems.  It returns the list "
14210 "of devices (eg. C</dev/sda1>, C</dev/VG/LV>)."
14211 msgstr ""
14212
14213 #. type: textblock
14214 #: ../src/guestfs-actions.pod:4832 ../fish/guestfish-actions.pod:3257
14215 msgid "Some internal mounts are not shown."
14216 msgstr ""
14217
14218 #. type: textblock
14219 #: ../src/guestfs-actions.pod:4834
14220 msgid "See also: C<guestfs_mountpoints>"
14221 msgstr ""
14222
14223 #. type: =head2
14224 #: ../src/guestfs-actions.pod:4842
14225 msgid "guestfs_mv"
14226 msgstr ""
14227
14228 #. type: verbatim
14229 #: ../src/guestfs-actions.pod:4844
14230 #, no-wrap
14231 msgid ""
14232 " int\n"
14233 " guestfs_mv (guestfs_h *g,\n"
14234 "             const char *src,\n"
14235 "             const char *dest);\n"
14236 "\n"
14237 msgstr ""
14238
14239 #. type: textblock
14240 #: ../src/guestfs-actions.pod:4849 ../fish/guestfish-actions.pod:3265
14241 msgid ""
14242 "This moves a file from C<src> to C<dest> where C<dest> is either a "
14243 "destination filename or destination directory."
14244 msgstr ""
14245
14246 #. type: =head2
14247 #: ../src/guestfs-actions.pod:4856
14248 msgid "guestfs_ntfs_3g_probe"
14249 msgstr ""
14250
14251 #. type: verbatim
14252 #: ../src/guestfs-actions.pod:4858
14253 #, no-wrap
14254 msgid ""
14255 " int\n"
14256 " guestfs_ntfs_3g_probe (guestfs_h *g,\n"
14257 "                        int rw,\n"
14258 "                        const char *device);\n"
14259 "\n"
14260 msgstr ""
14261
14262 #. type: textblock
14263 #: ../src/guestfs-actions.pod:4863 ../fish/guestfish-actions.pod:3272
14264 msgid ""
14265 "This command runs the L<ntfs-3g.probe(8)> command which probes an NTFS "
14266 "C<device> for mountability.  (Not all NTFS volumes can be mounted read-"
14267 "write, and some cannot be mounted at all)."
14268 msgstr ""
14269
14270 #. type: textblock
14271 #: ../src/guestfs-actions.pod:4867 ../fish/guestfish-actions.pod:3276
14272 msgid ""
14273 "C<rw> is a boolean flag.  Set it to true if you want to test if the volume "
14274 "can be mounted read-write.  Set it to false if you want to test if the "
14275 "volume can be mounted read-only."
14276 msgstr ""
14277
14278 #. type: textblock
14279 #: ../src/guestfs-actions.pod:4871 ../fish/guestfish-actions.pod:3280
14280 msgid ""
14281 "The return value is an integer which C<0> if the operation would succeed, or "
14282 "some non-zero value documented in the L<ntfs-3g.probe(8)> manual page."
14283 msgstr ""
14284
14285 #. type: textblock
14286 #: ../src/guestfs-actions.pod:4877
14287 msgid "(Added in 1.0.43)"
14288 msgstr ""
14289
14290 #. type: =head2
14291 #: ../src/guestfs-actions.pod:4879
14292 msgid "guestfs_ntfsresize"
14293 msgstr ""
14294
14295 #. type: verbatim
14296 #: ../src/guestfs-actions.pod:4881
14297 #, no-wrap
14298 msgid ""
14299 " int\n"
14300 " guestfs_ntfsresize (guestfs_h *g,\n"
14301 "                     const char *device);\n"
14302 "\n"
14303 msgstr ""
14304
14305 #. type: textblock
14306 #: ../src/guestfs-actions.pod:4885 ../fish/guestfish-actions.pod:3288
14307 msgid ""
14308 "This command resizes an NTFS filesystem, expanding or shrinking it to the "
14309 "size of the underlying device.  See also L<ntfsresize(8)>."
14310 msgstr ""
14311
14312 #. type: =head2
14313 #: ../src/guestfs-actions.pod:4893
14314 msgid "guestfs_ntfsresize_size"
14315 msgstr ""
14316
14317 #. type: verbatim
14318 #: ../src/guestfs-actions.pod:4895
14319 #, no-wrap
14320 msgid ""
14321 " int\n"
14322 " guestfs_ntfsresize_size (guestfs_h *g,\n"
14323 "                          const char *device,\n"
14324 "                          int64_t size);\n"
14325 "\n"
14326 msgstr ""
14327
14328 #. type: textblock
14329 #: ../src/guestfs-actions.pod:4900
14330 msgid ""
14331 "This command is the same as C<guestfs_ntfsresize> except that it allows you "
14332 "to specify the new size (in bytes) explicitly."
14333 msgstr ""
14334
14335 #. type: textblock
14336 #: ../src/guestfs-actions.pod:4905 ../src/guestfs-actions.pod:5341
14337 #: ../src/guestfs-actions.pod:5414 ../src/guestfs-actions.pod:5680
14338 #: ../src/guestfs-actions.pod:7251
14339 msgid "(Added in 1.3.14)"
14340 msgstr ""
14341
14342 #. type: =head2
14343 #: ../src/guestfs-actions.pod:4907
14344 msgid "guestfs_part_add"
14345 msgstr ""
14346
14347 #. type: verbatim
14348 #: ../src/guestfs-actions.pod:4909
14349 #, no-wrap
14350 msgid ""
14351 " int\n"
14352 " guestfs_part_add (guestfs_h *g,\n"
14353 "                   const char *device,\n"
14354 "                   const char *prlogex,\n"
14355 "                   int64_t startsect,\n"
14356 "                   int64_t endsect);\n"
14357 "\n"
14358 msgstr ""
14359
14360 #. type: textblock
14361 #: ../src/guestfs-actions.pod:4916
14362 msgid ""
14363 "This command adds a partition to C<device>.  If there is no partition table "
14364 "on the device, call C<guestfs_part_init> first."
14365 msgstr ""
14366
14367 #. type: textblock
14368 #: ../src/guestfs-actions.pod:4919 ../fish/guestfish-actions.pod:3306
14369 msgid ""
14370 "The C<prlogex> parameter is the type of partition.  Normally you should pass "
14371 "C<p> or C<primary> here, but MBR partition tables also support C<l> (or "
14372 "C<logical>) and C<e> (or C<extended>) partition types."
14373 msgstr ""
14374
14375 #. type: textblock
14376 #: ../src/guestfs-actions.pod:4924 ../fish/guestfish-actions.pod:3311
14377 msgid ""
14378 "C<startsect> and C<endsect> are the start and end of the partition in "
14379 "I<sectors>.  C<endsect> may be negative, which means it counts backwards "
14380 "from the end of the disk (C<-1> is the last sector)."
14381 msgstr ""
14382
14383 #. type: textblock
14384 #: ../src/guestfs-actions.pod:4928
14385 msgid ""
14386 "Creating a partition which covers the whole disk is not so easy.  Use "
14387 "C<guestfs_part_disk> to do that."
14388 msgstr ""
14389
14390 #. type: textblock
14391 #: ../src/guestfs-actions.pod:4933 ../src/guestfs-actions.pod:4971
14392 #: ../src/guestfs-actions.pod:5024 ../src/guestfs-actions.pod:5102
14393 #: ../src/guestfs-actions.pod:5140 ../src/guestfs-actions.pod:5159
14394 #: ../src/guestfs-actions.pod:5199
14395 msgid "(Added in 1.0.78)"
14396 msgstr ""
14397
14398 #. type: =head2
14399 #: ../src/guestfs-actions.pod:4935
14400 msgid "guestfs_part_del"
14401 msgstr ""
14402
14403 #. type: verbatim
14404 #: ../src/guestfs-actions.pod:4937
14405 #, no-wrap
14406 msgid ""
14407 " int\n"
14408 " guestfs_part_del (guestfs_h *g,\n"
14409 "                   const char *device,\n"
14410 "                   int partnum);\n"
14411 "\n"
14412 msgstr ""
14413
14414 #. type: textblock
14415 #: ../src/guestfs-actions.pod:4942 ../fish/guestfish-actions.pod:3322
14416 msgid "This command deletes the partition numbered C<partnum> on C<device>."
14417 msgstr ""
14418
14419 #. type: textblock
14420 #: ../src/guestfs-actions.pod:4944 ../fish/guestfish-actions.pod:3324
14421 msgid ""
14422 "Note that in the case of MBR partitioning, deleting an extended partition "
14423 "also deletes any logical partitions it contains."
14424 msgstr ""
14425
14426 #. type: =head2
14427 #: ../src/guestfs-actions.pod:4952
14428 msgid "guestfs_part_disk"
14429 msgstr ""
14430
14431 #. type: verbatim
14432 #: ../src/guestfs-actions.pod:4954
14433 #, no-wrap
14434 msgid ""
14435 " int\n"
14436 " guestfs_part_disk (guestfs_h *g,\n"
14437 "                    const char *device,\n"
14438 "                    const char *parttype);\n"
14439 "\n"
14440 msgstr ""
14441
14442 #. type: textblock
14443 #: ../src/guestfs-actions.pod:4959
14444 msgid ""
14445 "This command is simply a combination of C<guestfs_part_init> followed by "
14446 "C<guestfs_part_add> to create a single primary partition covering the whole "
14447 "disk."
14448 msgstr ""
14449
14450 #. type: textblock
14451 #: ../src/guestfs-actions.pod:4963
14452 msgid ""
14453 "C<parttype> is the partition table type, usually C<mbr> or C<gpt>, but other "
14454 "possible values are described in C<guestfs_part_init>."
14455 msgstr ""
14456
14457 #. type: =head2
14458 #: ../src/guestfs-actions.pod:4973
14459 msgid "guestfs_part_get_bootable"
14460 msgstr ""
14461
14462 #. type: verbatim
14463 #: ../src/guestfs-actions.pod:4975
14464 #, no-wrap
14465 msgid ""
14466 " int\n"
14467 " guestfs_part_get_bootable (guestfs_h *g,\n"
14468 "                            const char *device,\n"
14469 "                            int partnum);\n"
14470 "\n"
14471 msgstr ""
14472
14473 #. type: textblock
14474 #: ../src/guestfs-actions.pod:4980 ../fish/guestfish-actions.pod:3346
14475 msgid ""
14476 "This command returns true if the partition C<partnum> on C<device> has the "
14477 "bootable flag set."
14478 msgstr ""
14479
14480 #. type: textblock
14481 #: ../src/guestfs-actions.pod:4983
14482 msgid "See also C<guestfs_part_set_bootable>."
14483 msgstr ""
14484
14485 #. type: =head2
14486 #: ../src/guestfs-actions.pod:4989
14487 msgid "guestfs_part_get_mbr_id"
14488 msgstr ""
14489
14490 #. type: verbatim
14491 #: ../src/guestfs-actions.pod:4991
14492 #, no-wrap
14493 msgid ""
14494 " int\n"
14495 " guestfs_part_get_mbr_id (guestfs_h *g,\n"
14496 "                          const char *device,\n"
14497 "                          int partnum);\n"
14498 "\n"
14499 msgstr ""
14500
14501 #. type: textblock
14502 #: ../src/guestfs-actions.pod:4996 ../fish/guestfish-actions.pod:3355
14503 msgid ""
14504 "Returns the MBR type byte (also known as the ID byte) from the numbered "
14505 "partition C<partnum>."
14506 msgstr ""
14507
14508 #. type: textblock
14509 #: ../src/guestfs-actions.pod:4999 ../src/guestfs-actions.pod:5175
14510 msgid ""
14511 "Note that only MBR (old DOS-style) partitions have type bytes.  You will get "
14512 "undefined results for other partition table types (see "
14513 "C<guestfs_part_get_parttype>)."
14514 msgstr ""
14515
14516 #. type: =head2
14517 #: ../src/guestfs-actions.pod:5007
14518 msgid "guestfs_part_get_parttype"
14519 msgstr ""
14520
14521 #. type: verbatim
14522 #: ../src/guestfs-actions.pod:5009
14523 #, no-wrap
14524 msgid ""
14525 " char *\n"
14526 " guestfs_part_get_parttype (guestfs_h *g,\n"
14527 "                            const char *device);\n"
14528 "\n"
14529 msgstr ""
14530
14531 #. type: textblock
14532 #: ../src/guestfs-actions.pod:5013 ../fish/guestfish-actions.pod:3366
14533 msgid ""
14534 "This command examines the partition table on C<device> and returns the "
14535 "partition table type (format) being used."
14536 msgstr ""
14537
14538 #. type: textblock
14539 #: ../src/guestfs-actions.pod:5016
14540 msgid ""
14541 "Common return values include: C<msdos> (a DOS/Windows style MBR partition "
14542 "table), C<gpt> (a GPT/EFI-style partition table).  Other values are "
14543 "possible, although unusual.  See C<guestfs_part_init> for a full list."
14544 msgstr ""
14545
14546 #. type: =head2
14547 #: ../src/guestfs-actions.pod:5026
14548 msgid "guestfs_part_init"
14549 msgstr ""
14550
14551 #. type: verbatim
14552 #: ../src/guestfs-actions.pod:5028
14553 #, no-wrap
14554 msgid ""
14555 " int\n"
14556 " guestfs_part_init (guestfs_h *g,\n"
14557 "                    const char *device,\n"
14558 "                    const char *parttype);\n"
14559 "\n"
14560 msgstr ""
14561
14562 #. type: textblock
14563 #: ../src/guestfs-actions.pod:5033 ../fish/guestfish-actions.pod:3378
14564 msgid ""
14565 "This creates an empty partition table on C<device> of one of the partition "
14566 "types listed below.  Usually C<parttype> should be either C<msdos> or C<gpt> "
14567 "(for large disks)."
14568 msgstr ""
14569
14570 #. type: textblock
14571 #: ../src/guestfs-actions.pod:5037
14572 msgid ""
14573 "Initially there are no partitions.  Following this, you should call "
14574 "C<guestfs_part_add> for each partition required."
14575 msgstr ""
14576
14577 #. type: textblock
14578 #: ../src/guestfs-actions.pod:5040 ../fish/guestfish-actions.pod:3385
14579 msgid "Possible values for C<parttype> are:"
14580 msgstr ""
14581
14582 #. type: =item
14583 #: ../src/guestfs-actions.pod:5044 ../fish/guestfish-actions.pod:3389
14584 msgid "B<efi> | B<gpt>"
14585 msgstr ""
14586
14587 #. type: textblock
14588 #: ../src/guestfs-actions.pod:5046 ../fish/guestfish-actions.pod:3391
14589 msgid "Intel EFI / GPT partition table."
14590 msgstr ""
14591
14592 #. type: textblock
14593 #: ../src/guestfs-actions.pod:5048 ../fish/guestfish-actions.pod:3393
14594 msgid ""
14595 "This is recommended for >= 2 TB partitions that will be accessed from Linux "
14596 "and Intel-based Mac OS X.  It also has limited backwards compatibility with "
14597 "the C<mbr> format."
14598 msgstr ""
14599
14600 #. type: =item
14601 #: ../src/guestfs-actions.pod:5052 ../fish/guestfish-actions.pod:3397
14602 msgid "B<mbr> | B<msdos>"
14603 msgstr ""
14604
14605 #. type: textblock
14606 #: ../src/guestfs-actions.pod:5054 ../fish/guestfish-actions.pod:3399
14607 msgid ""
14608 "The standard PC \"Master Boot Record\" (MBR) format used by MS-DOS and "
14609 "Windows.  This partition type will B<only> work for device sizes up to 2 "
14610 "TB.  For large disks we recommend using C<gpt>."
14611 msgstr ""
14612
14613 #. type: textblock
14614 #: ../src/guestfs-actions.pod:5061 ../fish/guestfish-actions.pod:3406
14615 msgid ""
14616 "Other partition table types that may work but are not supported include:"
14617 msgstr ""
14618
14619 #. type: =item
14620 #: ../src/guestfs-actions.pod:5066 ../fish/guestfish-actions.pod:3411
14621 msgid "B<aix>"
14622 msgstr ""
14623
14624 #. type: textblock
14625 #: ../src/guestfs-actions.pod:5068 ../fish/guestfish-actions.pod:3413
14626 msgid "AIX disk labels."
14627 msgstr ""
14628
14629 #. type: =item
14630 #: ../src/guestfs-actions.pod:5070 ../fish/guestfish-actions.pod:3415
14631 msgid "B<amiga> | B<rdb>"
14632 msgstr ""
14633
14634 #. type: textblock
14635 #: ../src/guestfs-actions.pod:5072 ../fish/guestfish-actions.pod:3417
14636 msgid "Amiga \"Rigid Disk Block\" format."
14637 msgstr ""
14638
14639 #. type: =item
14640 #: ../src/guestfs-actions.pod:5074 ../fish/guestfish-actions.pod:3419
14641 msgid "B<bsd>"
14642 msgstr ""
14643
14644 #. type: textblock
14645 #: ../src/guestfs-actions.pod:5076 ../fish/guestfish-actions.pod:3421
14646 msgid "BSD disk labels."
14647 msgstr ""
14648
14649 #. type: =item
14650 #: ../src/guestfs-actions.pod:5078 ../fish/guestfish-actions.pod:3423
14651 msgid "B<dasd>"
14652 msgstr ""
14653
14654 #. type: textblock
14655 #: ../src/guestfs-actions.pod:5080 ../fish/guestfish-actions.pod:3425
14656 msgid "DASD, used on IBM mainframes."
14657 msgstr ""
14658
14659 #. type: =item
14660 #: ../src/guestfs-actions.pod:5082 ../fish/guestfish-actions.pod:3427
14661 msgid "B<dvh>"
14662 msgstr ""
14663
14664 #. type: textblock
14665 #: ../src/guestfs-actions.pod:5084 ../fish/guestfish-actions.pod:3429
14666 msgid "MIPS/SGI volumes."
14667 msgstr ""
14668
14669 #. type: =item
14670 #: ../src/guestfs-actions.pod:5086 ../fish/guestfish-actions.pod:3431
14671 msgid "B<mac>"
14672 msgstr ""
14673
14674 #. type: textblock
14675 #: ../src/guestfs-actions.pod:5088 ../fish/guestfish-actions.pod:3433
14676 msgid "Old Mac partition format.  Modern Macs use C<gpt>."
14677 msgstr ""
14678
14679 #. type: =item
14680 #: ../src/guestfs-actions.pod:5090 ../fish/guestfish-actions.pod:3435
14681 msgid "B<pc98>"
14682 msgstr ""
14683
14684 #. type: textblock
14685 #: ../src/guestfs-actions.pod:5092 ../fish/guestfish-actions.pod:3437
14686 msgid "NEC PC-98 format, common in Japan apparently."
14687 msgstr ""
14688
14689 #. type: =item
14690 #: ../src/guestfs-actions.pod:5094 ../fish/guestfish-actions.pod:3439
14691 msgid "B<sun>"
14692 msgstr ""
14693
14694 #. type: textblock
14695 #: ../src/guestfs-actions.pod:5096 ../fish/guestfish-actions.pod:3441
14696 msgid "Sun disk labels."
14697 msgstr ""
14698
14699 #. type: =head2
14700 #: ../src/guestfs-actions.pod:5104
14701 msgid "guestfs_part_list"
14702 msgstr ""
14703
14704 #. type: verbatim
14705 #: ../src/guestfs-actions.pod:5106
14706 #, no-wrap
14707 msgid ""
14708 " struct guestfs_partition_list *\n"
14709 " guestfs_part_list (guestfs_h *g,\n"
14710 "                    const char *device);\n"
14711 "\n"
14712 msgstr ""
14713
14714 #. type: textblock
14715 #: ../src/guestfs-actions.pod:5110 ../fish/guestfish-actions.pod:3449
14716 msgid ""
14717 "This command parses the partition table on C<device> and returns the list of "
14718 "partitions found."
14719 msgstr ""
14720
14721 #. type: textblock
14722 #: ../src/guestfs-actions.pod:5113 ../fish/guestfish-actions.pod:3452
14723 msgid "The fields in the returned structure are:"
14724 msgstr ""
14725
14726 #. type: =item
14727 #: ../src/guestfs-actions.pod:5117 ../fish/guestfish-actions.pod:3456
14728 msgid "B<part_num>"
14729 msgstr ""
14730
14731 #. type: textblock
14732 #: ../src/guestfs-actions.pod:5119 ../fish/guestfish-actions.pod:3458
14733 msgid "Partition number, counting from 1."
14734 msgstr ""
14735
14736 #. type: =item
14737 #: ../src/guestfs-actions.pod:5121 ../fish/guestfish-actions.pod:3460
14738 msgid "B<part_start>"
14739 msgstr ""
14740
14741 #. type: textblock
14742 #: ../src/guestfs-actions.pod:5123
14743 msgid ""
14744 "Start of the partition I<in bytes>.  To get sectors you have to divide by "
14745 "the device's sector size, see C<guestfs_blockdev_getss>."
14746 msgstr ""
14747
14748 #. type: =item
14749 #: ../src/guestfs-actions.pod:5126 ../fish/guestfish-actions.pod:3465
14750 msgid "B<part_end>"
14751 msgstr ""
14752
14753 #. type: textblock
14754 #: ../src/guestfs-actions.pod:5128 ../fish/guestfish-actions.pod:3467
14755 msgid "End of the partition in bytes."
14756 msgstr ""
14757
14758 #. type: =item
14759 #: ../src/guestfs-actions.pod:5130 ../fish/guestfish-actions.pod:3469
14760 msgid "B<part_size>"
14761 msgstr ""
14762
14763 #. type: textblock
14764 #: ../src/guestfs-actions.pod:5132 ../fish/guestfish-actions.pod:3471
14765 msgid "Size of the partition in bytes."
14766 msgstr ""
14767
14768 #. type: textblock
14769 #: ../src/guestfs-actions.pod:5136
14770 msgid ""
14771 "This function returns a C<struct guestfs_partition_list *>, or NULL if there "
14772 "was an error.  I<The caller must call C<guestfs_free_partition_list> after "
14773 "use>."
14774 msgstr ""
14775
14776 #. type: =head2
14777 #: ../src/guestfs-actions.pod:5142
14778 msgid "guestfs_part_set_bootable"
14779 msgstr ""
14780
14781 #. type: verbatim
14782 #: ../src/guestfs-actions.pod:5144
14783 #, no-wrap
14784 msgid ""
14785 " int\n"
14786 " guestfs_part_set_bootable (guestfs_h *g,\n"
14787 "                            const char *device,\n"
14788 "                            int partnum,\n"
14789 "                            int bootable);\n"
14790 "\n"
14791 msgstr ""
14792
14793 #. type: textblock
14794 #: ../src/guestfs-actions.pod:5150 ../fish/guestfish-actions.pod:3479
14795 msgid ""
14796 "This sets the bootable flag on partition numbered C<partnum> on device "
14797 "C<device>.  Note that partitions are numbered from 1."
14798 msgstr ""
14799
14800 #. type: textblock
14801 #: ../src/guestfs-actions.pod:5153 ../fish/guestfish-actions.pod:3482
14802 msgid ""
14803 "The bootable flag is used by some operating systems (notably Windows) to "
14804 "determine which partition to boot from.  It is by no means universally "
14805 "recognized."
14806 msgstr ""
14807
14808 #. type: =head2
14809 #: ../src/guestfs-actions.pod:5161
14810 msgid "guestfs_part_set_mbr_id"
14811 msgstr ""
14812
14813 #. type: verbatim
14814 #: ../src/guestfs-actions.pod:5163
14815 #, no-wrap
14816 msgid ""
14817 " int\n"
14818 " guestfs_part_set_mbr_id (guestfs_h *g,\n"
14819 "                          const char *device,\n"
14820 "                          int partnum,\n"
14821 "                          int idbyte);\n"
14822 "\n"
14823 msgstr ""
14824
14825 #. type: textblock
14826 #: ../src/guestfs-actions.pod:5169 ../fish/guestfish-actions.pod:3490
14827 msgid ""
14828 "Sets the MBR type byte (also known as the ID byte) of the numbered partition "
14829 "C<partnum> to C<idbyte>.  Note that the type bytes quoted in most "
14830 "documentation are in fact hexadecimal numbers, but usually documented "
14831 "without any leading \"0x\" which might be confusing."
14832 msgstr ""
14833
14834 #. type: =head2
14835 #: ../src/guestfs-actions.pod:5183
14836 msgid "guestfs_part_set_name"
14837 msgstr ""
14838
14839 #. type: verbatim
14840 #: ../src/guestfs-actions.pod:5185
14841 #, no-wrap
14842 msgid ""
14843 " int\n"
14844 " guestfs_part_set_name (guestfs_h *g,\n"
14845 "                        const char *device,\n"
14846 "                        int partnum,\n"
14847 "                        const char *name);\n"
14848 "\n"
14849 msgstr ""
14850
14851 #. type: textblock
14852 #: ../src/guestfs-actions.pod:5191 ../fish/guestfish-actions.pod:3504
14853 msgid ""
14854 "This sets the partition name on partition numbered C<partnum> on device "
14855 "C<device>.  Note that partitions are numbered from 1."
14856 msgstr ""
14857
14858 #. type: textblock
14859 #: ../src/guestfs-actions.pod:5194 ../fish/guestfish-actions.pod:3507
14860 msgid ""
14861 "The partition name can only be set on certain types of partition table.  "
14862 "This works on C<gpt> but not on C<mbr> partitions."
14863 msgstr ""
14864
14865 #. type: =head2
14866 #: ../src/guestfs-actions.pod:5201
14867 msgid "guestfs_part_to_dev"
14868 msgstr ""
14869
14870 #. type: verbatim
14871 #: ../src/guestfs-actions.pod:5203
14872 #, no-wrap
14873 msgid ""
14874 " char *\n"
14875 " guestfs_part_to_dev (guestfs_h *g,\n"
14876 "                      const char *partition);\n"
14877 "\n"
14878 msgstr ""
14879
14880 #. type: textblock
14881 #: ../src/guestfs-actions.pod:5207 ../fish/guestfish-actions.pod:3514
14882 msgid ""
14883 "This function takes a partition name (eg. \"/dev/sdb1\") and removes the "
14884 "partition number, returning the device name (eg. \"/dev/sdb\")."
14885 msgstr ""
14886
14887 #. type: textblock
14888 #: ../src/guestfs-actions.pod:5211
14889 msgid ""
14890 "The named partition must exist, for example as a string returned from "
14891 "C<guestfs_list_partitions>."
14892 msgstr ""
14893
14894 #. type: =head2
14895 #: ../src/guestfs-actions.pod:5219
14896 msgid "guestfs_ping_daemon"
14897 msgstr ""
14898
14899 #. type: verbatim
14900 #: ../src/guestfs-actions.pod:5221
14901 #, no-wrap
14902 msgid ""
14903 " int\n"
14904 " guestfs_ping_daemon (guestfs_h *g);\n"
14905 "\n"
14906 msgstr ""
14907
14908 #. type: textblock
14909 #: ../src/guestfs-actions.pod:5224 ../fish/guestfish-actions.pod:3525
14910 msgid ""
14911 "This is a test probe into the guestfs daemon running inside the qemu "
14912 "subprocess.  Calling this function checks that the daemon responds to the "
14913 "ping message, without affecting the daemon or attached block device(s) in "
14914 "any other way."
14915 msgstr ""
14916
14917 #. type: =head2
14918 #: ../src/guestfs-actions.pod:5233
14919 msgid "guestfs_pread"
14920 msgstr ""
14921
14922 #. type: verbatim
14923 #: ../src/guestfs-actions.pod:5235
14924 #, no-wrap
14925 msgid ""
14926 " char *\n"
14927 " guestfs_pread (guestfs_h *g,\n"
14928 "                const char *path,\n"
14929 "                int count,\n"
14930 "                int64_t offset,\n"
14931 "                size_t *size_r);\n"
14932 "\n"
14933 msgstr ""
14934
14935 #. type: textblock
14936 #: ../src/guestfs-actions.pod:5242 ../fish/guestfish-actions.pod:3534
14937 msgid ""
14938 "This command lets you read part of a file.  It reads C<count> bytes of the "
14939 "file, starting at C<offset>, from file C<path>."
14940 msgstr ""
14941
14942 #. type: textblock
14943 #: ../src/guestfs-actions.pod:5245 ../src/guestfs-actions.pod:5271
14944 #: ../fish/guestfish-actions.pod:3537 ../fish/guestfish-actions.pod:3552
14945 msgid ""
14946 "This may read fewer bytes than requested.  For further details see the "
14947 "L<pread(2)> system call."
14948 msgstr ""
14949
14950 #. type: textblock
14951 #: ../src/guestfs-actions.pod:5248
14952 msgid "See also C<guestfs_pwrite>, C<guestfs_pread_device>."
14953 msgstr ""
14954
14955 #. type: =head2
14956 #: ../src/guestfs-actions.pod:5259
14957 msgid "guestfs_pread_device"
14958 msgstr ""
14959
14960 #. type: verbatim
14961 #: ../src/guestfs-actions.pod:5261
14962 #, no-wrap
14963 msgid ""
14964 " char *\n"
14965 " guestfs_pread_device (guestfs_h *g,\n"
14966 "                       const char *device,\n"
14967 "                       int count,\n"
14968 "                       int64_t offset,\n"
14969 "                       size_t *size_r);\n"
14970 "\n"
14971 msgstr ""
14972
14973 #. type: textblock
14974 #: ../src/guestfs-actions.pod:5268 ../fish/guestfish-actions.pod:3549
14975 msgid ""
14976 "This command lets you read part of a file.  It reads C<count> bytes of "
14977 "C<device>, starting at C<offset>."
14978 msgstr ""
14979
14980 #. type: textblock
14981 #: ../src/guestfs-actions.pod:5274
14982 msgid "See also C<guestfs_pread>."
14983 msgstr ""
14984
14985 #. type: textblock
14986 #: ../src/guestfs-actions.pod:5283
14987 msgid "(Added in 1.5.21)"
14988 msgstr ""
14989
14990 #. type: =head2
14991 #: ../src/guestfs-actions.pod:5285
14992 msgid "guestfs_pvcreate"
14993 msgstr ""
14994
14995 #. type: verbatim
14996 #: ../src/guestfs-actions.pod:5287
14997 #, no-wrap
14998 msgid ""
14999 " int\n"
15000 " guestfs_pvcreate (guestfs_h *g,\n"
15001 "                   const char *device);\n"
15002 "\n"
15003 msgstr ""
15004
15005 #. type: textblock
15006 #: ../src/guestfs-actions.pod:5291 ../fish/guestfish-actions.pod:3564
15007 msgid ""
15008 "This creates an LVM physical volume on the named C<device>, where C<device> "
15009 "should usually be a partition name such as C</dev/sda1>."
15010 msgstr ""
15011
15012 #. type: =head2
15013 #: ../src/guestfs-actions.pod:5299
15014 msgid "guestfs_pvremove"
15015 msgstr ""
15016
15017 #. type: verbatim
15018 #: ../src/guestfs-actions.pod:5301
15019 #, no-wrap
15020 msgid ""
15021 " int\n"
15022 " guestfs_pvremove (guestfs_h *g,\n"
15023 "                   const char *device);\n"
15024 "\n"
15025 msgstr ""
15026
15027 #. type: textblock
15028 #: ../src/guestfs-actions.pod:5305 ../fish/guestfish-actions.pod:3572
15029 msgid ""
15030 "This wipes a physical volume C<device> so that LVM will no longer recognise "
15031 "it."
15032 msgstr ""
15033
15034 #. type: textblock
15035 #: ../src/guestfs-actions.pod:5308 ../fish/guestfish-actions.pod:3575
15036 msgid ""
15037 "The implementation uses the C<pvremove> command which refuses to wipe "
15038 "physical volumes that contain any volume groups, so you have to remove those "
15039 "first."
15040 msgstr ""
15041
15042 #. type: =head2
15043 #: ../src/guestfs-actions.pod:5316
15044 msgid "guestfs_pvresize"
15045 msgstr ""
15046
15047 #. type: verbatim
15048 #: ../src/guestfs-actions.pod:5318
15049 #, no-wrap
15050 msgid ""
15051 " int\n"
15052 " guestfs_pvresize (guestfs_h *g,\n"
15053 "                   const char *device);\n"
15054 "\n"
15055 msgstr ""
15056
15057 #. type: textblock
15058 #: ../src/guestfs-actions.pod:5322 ../fish/guestfish-actions.pod:3583
15059 msgid ""
15060 "This resizes (expands or shrinks) an existing LVM physical volume to match "
15061 "the new size of the underlying device."
15062 msgstr ""
15063
15064 #. type: =head2
15065 #: ../src/guestfs-actions.pod:5329
15066 msgid "guestfs_pvresize_size"
15067 msgstr ""
15068
15069 #. type: verbatim
15070 #: ../src/guestfs-actions.pod:5331
15071 #, no-wrap
15072 msgid ""
15073 " int\n"
15074 " guestfs_pvresize_size (guestfs_h *g,\n"
15075 "                        const char *device,\n"
15076 "                        int64_t size);\n"
15077 "\n"
15078 msgstr ""
15079
15080 #. type: textblock
15081 #: ../src/guestfs-actions.pod:5336
15082 msgid ""
15083 "This command is the same as C<guestfs_pvresize> except that it allows you to "
15084 "specify the new size (in bytes) explicitly."
15085 msgstr ""
15086
15087 #. type: =head2
15088 #: ../src/guestfs-actions.pod:5343
15089 msgid "guestfs_pvs"
15090 msgstr ""
15091
15092 #. type: verbatim
15093 #: ../src/guestfs-actions.pod:5345
15094 #, no-wrap
15095 msgid ""
15096 " char **\n"
15097 " guestfs_pvs (guestfs_h *g);\n"
15098 "\n"
15099 msgstr ""
15100
15101 #. type: textblock
15102 #: ../src/guestfs-actions.pod:5348 ../fish/guestfish-actions.pod:3597
15103 msgid ""
15104 "List all the physical volumes detected.  This is the equivalent of the L<pvs"
15105 "(8)> command."
15106 msgstr ""
15107
15108 #. type: textblock
15109 #: ../src/guestfs-actions.pod:5351 ../fish/guestfish-actions.pod:3600
15110 msgid ""
15111 "This returns a list of just the device names that contain PVs (eg. C</dev/"
15112 "sda2>)."
15113 msgstr ""
15114
15115 #. type: textblock
15116 #: ../src/guestfs-actions.pod:5354
15117 msgid "See also C<guestfs_pvs_full>."
15118 msgstr ""
15119
15120 #. type: =head2
15121 #: ../src/guestfs-actions.pod:5362
15122 msgid "guestfs_pvs_full"
15123 msgstr ""
15124
15125 #. type: verbatim
15126 #: ../src/guestfs-actions.pod:5364
15127 #, no-wrap
15128 msgid ""
15129 " struct guestfs_lvm_pv_list *\n"
15130 " guestfs_pvs_full (guestfs_h *g);\n"
15131 "\n"
15132 msgstr ""
15133
15134 #. type: textblock
15135 #: ../src/guestfs-actions.pod:5367 ../fish/guestfish-actions.pod:3609
15136 msgid ""
15137 "List all the physical volumes detected.  This is the equivalent of the L<pvs"
15138 "(8)> command.  The \"full\" version includes all fields."
15139 msgstr ""
15140
15141 #. type: textblock
15142 #: ../src/guestfs-actions.pod:5370
15143 msgid ""
15144 "This function returns a C<struct guestfs_lvm_pv_list *>, or NULL if there "
15145 "was an error.  I<The caller must call C<guestfs_free_lvm_pv_list> after use>."
15146 msgstr ""
15147
15148 #. type: =head2
15149 #: ../src/guestfs-actions.pod:5376
15150 msgid "guestfs_pvuuid"
15151 msgstr ""
15152
15153 #. type: verbatim
15154 #: ../src/guestfs-actions.pod:5378
15155 #, no-wrap
15156 msgid ""
15157 " char *\n"
15158 " guestfs_pvuuid (guestfs_h *g,\n"
15159 "                 const char *device);\n"
15160 "\n"
15161 msgstr ""
15162
15163 #. type: textblock
15164 #: ../src/guestfs-actions.pod:5382 ../fish/guestfish-actions.pod:3616
15165 msgid "This command returns the UUID of the LVM PV C<device>."
15166 msgstr ""
15167
15168 #. type: =head2
15169 #: ../src/guestfs-actions.pod:5389
15170 msgid "guestfs_pwrite"
15171 msgstr ""
15172
15173 #. type: verbatim
15174 #: ../src/guestfs-actions.pod:5391
15175 #, no-wrap
15176 msgid ""
15177 " int\n"
15178 " guestfs_pwrite (guestfs_h *g,\n"
15179 "                 const char *path,\n"
15180 "                 const char *content,\n"
15181 "                 size_t content_size,\n"
15182 "                 int64_t offset);\n"
15183 "\n"
15184 msgstr ""
15185
15186 #. type: textblock
15187 #: ../src/guestfs-actions.pod:5398 ../fish/guestfish-actions.pod:3622
15188 msgid ""
15189 "This command writes to part of a file.  It writes the data buffer C<content> "
15190 "to the file C<path> starting at offset C<offset>."
15191 msgstr ""
15192
15193 #. type: textblock
15194 #: ../src/guestfs-actions.pod:5401 ../fish/guestfish-actions.pod:3625
15195 msgid ""
15196 "This command implements the L<pwrite(2)> system call, and like that system "
15197 "call it may not write the full data requested.  The return value is the "
15198 "number of bytes that were actually written to the file.  This could even be "
15199 "0, although short writes are unlikely for regular files in ordinary "
15200 "circumstances."
15201 msgstr ""
15202
15203 #. type: textblock
15204 #: ../src/guestfs-actions.pod:5407
15205 msgid "See also C<guestfs_pread>, C<guestfs_pwrite_device>."
15206 msgstr ""
15207
15208 #. type: =head2
15209 #: ../src/guestfs-actions.pod:5416
15210 msgid "guestfs_pwrite_device"
15211 msgstr ""
15212
15213 #. type: verbatim
15214 #: ../src/guestfs-actions.pod:5418
15215 #, no-wrap
15216 msgid ""
15217 " int\n"
15218 " guestfs_pwrite_device (guestfs_h *g,\n"
15219 "                        const char *device,\n"
15220 "                        const char *content,\n"
15221 "                        size_t content_size,\n"
15222 "                        int64_t offset);\n"
15223 "\n"
15224 msgstr ""
15225
15226 #. type: textblock
15227 #: ../src/guestfs-actions.pod:5425 ../fish/guestfish-actions.pod:3640
15228 msgid ""
15229 "This command writes to part of a device.  It writes the data buffer "
15230 "C<content> to C<device> starting at offset C<offset>."
15231 msgstr ""
15232
15233 #. type: textblock
15234 #: ../src/guestfs-actions.pod:5428 ../fish/guestfish-actions.pod:3643
15235 msgid ""
15236 "This command implements the L<pwrite(2)> system call, and like that system "
15237 "call it may not write the full data requested (although short writes to disk "
15238 "devices and partitions are probably impossible with standard Linux kernels)."
15239 msgstr ""
15240
15241 #. type: textblock
15242 #: ../src/guestfs-actions.pod:5433
15243 msgid "See also C<guestfs_pwrite>."
15244 msgstr ""
15245
15246 #. type: textblock
15247 #: ../src/guestfs-actions.pod:5440
15248 msgid "(Added in 1.5.20)"
15249 msgstr ""
15250
15251 #. type: =head2
15252 #: ../src/guestfs-actions.pod:5442
15253 msgid "guestfs_read_file"
15254 msgstr ""
15255
15256 #. type: verbatim
15257 #: ../src/guestfs-actions.pod:5444
15258 #, no-wrap
15259 msgid ""
15260 " char *\n"
15261 " guestfs_read_file (guestfs_h *g,\n"
15262 "                    const char *path,\n"
15263 "                    size_t *size_r);\n"
15264 "\n"
15265 msgstr ""
15266
15267 #. type: textblock
15268 #: ../src/guestfs-actions.pod:5449 ../fish/guestfish-actions.pod:3657
15269 msgid "This calls returns the contents of the file C<path> as a buffer."
15270 msgstr ""
15271
15272 #. type: textblock
15273 #: ../src/guestfs-actions.pod:5452
15274 msgid ""
15275 "Unlike C<guestfs_cat>, this function can correctly handle files that contain "
15276 "embedded ASCII NUL characters.  However unlike C<guestfs_download>, this "
15277 "function is limited in the total size of file that can be handled."
15278 msgstr ""
15279
15280 #. type: textblock
15281 #: ../src/guestfs-actions.pod:5464
15282 msgid "(Added in 1.0.63)"
15283 msgstr ""
15284
15285 #. type: =head2
15286 #: ../src/guestfs-actions.pod:5466
15287 msgid "guestfs_read_lines"
15288 msgstr ""
15289
15290 #. type: verbatim
15291 #: ../src/guestfs-actions.pod:5468
15292 #, no-wrap
15293 msgid ""
15294 " char **\n"
15295 " guestfs_read_lines (guestfs_h *g,\n"
15296 "                     const char *path);\n"
15297 "\n"
15298 msgstr ""
15299
15300 #. type: textblock
15301 #: ../src/guestfs-actions.pod:5474 ../fish/guestfish-actions.pod:3674
15302 msgid ""
15303 "The file contents are returned as a list of lines.  Trailing C<LF> and "
15304 "C<CRLF> character sequences are I<not> returned."
15305 msgstr ""
15306
15307 #. type: textblock
15308 #: ../src/guestfs-actions.pod:5477
15309 msgid ""
15310 "Note that this function cannot correctly handle binary files (specifically, "
15311 "files containing C<\\0> character which is treated as end of line).  For "
15312 "those you need to use the C<guestfs_read_file> function which has a more "
15313 "complex interface."
15314 msgstr ""
15315
15316 #. type: =head2
15317 #: ../src/guestfs-actions.pod:5488
15318 msgid "guestfs_readdir"
15319 msgstr ""
15320
15321 #. type: verbatim
15322 #: ../src/guestfs-actions.pod:5490
15323 #, no-wrap
15324 msgid ""
15325 " struct guestfs_dirent_list *\n"
15326 " guestfs_readdir (guestfs_h *g,\n"
15327 "                  const char *dir);\n"
15328 "\n"
15329 msgstr ""
15330
15331 #. type: textblock
15332 #: ../src/guestfs-actions.pod:5494 ../fish/guestfish-actions.pod:3686
15333 msgid "This returns the list of directory entries in directory C<dir>."
15334 msgstr ""
15335
15336 #. type: textblock
15337 #: ../src/guestfs-actions.pod:5496 ../fish/guestfish-actions.pod:3688
15338 msgid ""
15339 "All entries in the directory are returned, including C<.> and C<..>.  The "
15340 "entries are I<not> sorted, but returned in the same order as the underlying "
15341 "filesystem."
15342 msgstr ""
15343
15344 #. type: textblock
15345 #: ../src/guestfs-actions.pod:5500 ../fish/guestfish-actions.pod:3692
15346 msgid ""
15347 "Also this call returns basic file type information about each file.  The "
15348 "C<ftyp> field will contain one of the following characters:"
15349 msgstr ""
15350
15351 #. type: =item
15352 #: ../src/guestfs-actions.pod:5505 ../fish/guestfish-actions.pod:3697
15353 msgid "'b'"
15354 msgstr ""
15355
15356 #. type: textblock
15357 #: ../src/guestfs-actions.pod:5507 ../fish/guestfish-actions.pod:3699
15358 msgid "Block special"
15359 msgstr ""
15360
15361 #. type: =item
15362 #: ../src/guestfs-actions.pod:5509 ../fish/guestfish-actions.pod:3701
15363 msgid "'c'"
15364 msgstr ""
15365
15366 #. type: textblock
15367 #: ../src/guestfs-actions.pod:5511 ../fish/guestfish-actions.pod:3703
15368 msgid "Char special"
15369 msgstr ""
15370
15371 #. type: =item
15372 #: ../src/guestfs-actions.pod:5513 ../fish/guestfish-actions.pod:3705
15373 msgid "'d'"
15374 msgstr ""
15375
15376 #. type: textblock
15377 #: ../src/guestfs-actions.pod:5515 ../fish/guestfish-actions.pod:3707
15378 msgid "Directory"
15379 msgstr ""
15380
15381 #. type: =item
15382 #: ../src/guestfs-actions.pod:5517 ../fish/guestfish-actions.pod:3709
15383 msgid "'f'"
15384 msgstr ""
15385
15386 #. type: textblock
15387 #: ../src/guestfs-actions.pod:5519 ../fish/guestfish-actions.pod:3711
15388 msgid "FIFO (named pipe)"
15389 msgstr ""
15390
15391 #. type: =item
15392 #: ../src/guestfs-actions.pod:5521 ../fish/guestfish-actions.pod:3713
15393 msgid "'l'"
15394 msgstr ""
15395
15396 #. type: textblock
15397 #: ../src/guestfs-actions.pod:5523 ../fish/guestfish-actions.pod:3715
15398 msgid "Symbolic link"
15399 msgstr ""
15400
15401 #. type: =item
15402 #: ../src/guestfs-actions.pod:5525 ../fish/guestfish-actions.pod:3717
15403 msgid "'r'"
15404 msgstr ""
15405
15406 #. type: textblock
15407 #: ../src/guestfs-actions.pod:5527 ../fish/guestfish-actions.pod:3719
15408 msgid "Regular file"
15409 msgstr ""
15410
15411 #. type: =item
15412 #: ../src/guestfs-actions.pod:5529 ../fish/guestfish-actions.pod:3721
15413 msgid "'s'"
15414 msgstr ""
15415
15416 #. type: textblock
15417 #: ../src/guestfs-actions.pod:5531 ../fish/guestfish-actions.pod:3723
15418 msgid "Socket"
15419 msgstr ""
15420
15421 #. type: =item
15422 #: ../src/guestfs-actions.pod:5533 ../fish/guestfish-actions.pod:3725
15423 msgid "'u'"
15424 msgstr ""
15425
15426 #. type: textblock
15427 #: ../src/guestfs-actions.pod:5535 ../fish/guestfish-actions.pod:3727
15428 msgid "Unknown file type"
15429 msgstr ""
15430
15431 #. type: =item
15432 #: ../src/guestfs-actions.pod:5537 ../fish/guestfish-actions.pod:3729
15433 msgid "'?'"
15434 msgstr ""
15435
15436 #. type: textblock
15437 #: ../src/guestfs-actions.pod:5539 ../fish/guestfish-actions.pod:3731
15438 msgid ""
15439 "The L<readdir(3)> call returned a C<d_type> field with an unexpected value"
15440 msgstr ""
15441
15442 #. type: textblock
15443 #: ../src/guestfs-actions.pod:5544
15444 msgid ""
15445 "This function is primarily intended for use by programs.  To get a simple "
15446 "list of names, use C<guestfs_ls>.  To get a printable directory for human "
15447 "consumption, use C<guestfs_ll>."
15448 msgstr ""
15449
15450 #. type: textblock
15451 #: ../src/guestfs-actions.pod:5548
15452 msgid ""
15453 "This function returns a C<struct guestfs_dirent_list *>, or NULL if there "
15454 "was an error.  I<The caller must call C<guestfs_free_dirent_list> after use>."
15455 msgstr ""
15456
15457 #. type: =head2
15458 #: ../src/guestfs-actions.pod:5554
15459 msgid "guestfs_readlink"
15460 msgstr ""
15461
15462 #. type: verbatim
15463 #: ../src/guestfs-actions.pod:5556
15464 #, no-wrap
15465 msgid ""
15466 " char *\n"
15467 " guestfs_readlink (guestfs_h *g,\n"
15468 "                   const char *path);\n"
15469 "\n"
15470 msgstr ""
15471
15472 #. type: textblock
15473 #: ../src/guestfs-actions.pod:5560 ../fish/guestfish-actions.pod:3744
15474 msgid "This command reads the target of a symbolic link."
15475 msgstr ""
15476
15477 #. type: =head2
15478 #: ../src/guestfs-actions.pod:5567
15479 msgid "guestfs_readlinklist"
15480 msgstr ""
15481
15482 #. type: verbatim
15483 #: ../src/guestfs-actions.pod:5569
15484 #, no-wrap
15485 msgid ""
15486 " char **\n"
15487 " guestfs_readlinklist (guestfs_h *g,\n"
15488 "                       const char *path,\n"
15489 "                       char *const *names);\n"
15490 "\n"
15491 msgstr ""
15492
15493 #. type: textblock
15494 #: ../src/guestfs-actions.pod:5574 ../fish/guestfish-actions.pod:3750
15495 msgid ""
15496 "This call allows you to do a C<readlink> operation on multiple files, where "
15497 "all files are in the directory C<path>.  C<names> is the list of files from "
15498 "this directory."
15499 msgstr ""
15500
15501 #. type: textblock
15502 #: ../src/guestfs-actions.pod:5578 ../fish/guestfish-actions.pod:3754
15503 msgid ""
15504 "On return you get a list of strings, with a one-to-one correspondence to the "
15505 "C<names> list.  Each string is the value of the symbolic link."
15506 msgstr ""
15507
15508 #. type: textblock
15509 #: ../src/guestfs-actions.pod:5582 ../fish/guestfish-actions.pod:3758
15510 msgid ""
15511 "If the C<readlink(2)> operation fails on any name, then the corresponding "
15512 "result string is the empty string C<\"\">.  However the whole operation is "
15513 "completed even if there were C<readlink(2)> errors, and so you can call this "
15514 "function with names where you don't know if they are symbolic links already "
15515 "(albeit slightly less efficient)."
15516 msgstr ""
15517
15518 #. type: textblock
15519 #: ../src/guestfs-actions.pod:5589 ../fish/guestfish-actions.pod:3765
15520 msgid ""
15521 "This call is intended for programs that want to efficiently list a directory "
15522 "contents without making many round-trips.  Very long directory listings "
15523 "might cause the protocol message size to be exceeded, causing this call to "
15524 "fail.  The caller must split up such requests into smaller groups of names."
15525 msgstr ""
15526
15527 #. type: =head2
15528 #: ../src/guestfs-actions.pod:5602
15529 msgid "guestfs_realpath"
15530 msgstr ""
15531
15532 #. type: verbatim
15533 #: ../src/guestfs-actions.pod:5604
15534 #, no-wrap
15535 msgid ""
15536 " char *\n"
15537 " guestfs_realpath (guestfs_h *g,\n"
15538 "                   const char *path);\n"
15539 "\n"
15540 msgstr ""
15541
15542 #. type: textblock
15543 #: ../src/guestfs-actions.pod:5608 ../fish/guestfish-actions.pod:3776
15544 msgid ""
15545 "Return the canonicalized absolute pathname of C<path>.  The returned path "
15546 "has no C<.>, C<..> or symbolic link path elements."
15547 msgstr ""
15548
15549 #. type: =head2
15550 #: ../src/guestfs-actions.pod:5616
15551 msgid "guestfs_removexattr"
15552 msgstr ""
15553
15554 #. type: verbatim
15555 #: ../src/guestfs-actions.pod:5618
15556 #, no-wrap
15557 msgid ""
15558 " int\n"
15559 " guestfs_removexattr (guestfs_h *g,\n"
15560 "                      const char *xattr,\n"
15561 "                      const char *path);\n"
15562 "\n"
15563 msgstr ""
15564
15565 #. type: textblock
15566 #: ../src/guestfs-actions.pod:5623 ../fish/guestfish-actions.pod:3783
15567 msgid ""
15568 "This call removes the extended attribute named C<xattr> of the file C<path>."
15569 msgstr ""
15570
15571 #. type: textblock
15572 #: ../src/guestfs-actions.pod:5626
15573 msgid "See also: C<guestfs_lremovexattr>, L<attr(5)>."
15574 msgstr ""
15575
15576 #. type: =head2
15577 #: ../src/guestfs-actions.pod:5632
15578 msgid "guestfs_resize2fs"
15579 msgstr ""
15580
15581 #. type: verbatim
15582 #: ../src/guestfs-actions.pod:5634
15583 #, no-wrap
15584 msgid ""
15585 " int\n"
15586 " guestfs_resize2fs (guestfs_h *g,\n"
15587 "                    const char *device);\n"
15588 "\n"
15589 msgstr ""
15590
15591 #. type: textblock
15592 #: ../src/guestfs-actions.pod:5638 ../fish/guestfish-actions.pod:3792
15593 msgid ""
15594 "This resizes an ext2, ext3 or ext4 filesystem to match the size of the "
15595 "underlying device."
15596 msgstr ""
15597
15598 #. type: textblock
15599 #: ../src/guestfs-actions.pod:5641
15600 msgid ""
15601 "I<Note:> It is sometimes required that you run C<guestfs_e2fsck_f> on the "
15602 "C<device> before calling this command.  For unknown reasons C<resize2fs> "
15603 "sometimes gives an error about this and sometimes not.  In any case, it is "
15604 "always safe to call C<guestfs_e2fsck_f> before calling this function."
15605 msgstr ""
15606
15607 #. type: =head2
15608 #: ../src/guestfs-actions.pod:5651
15609 msgid "guestfs_resize2fs_M"
15610 msgstr ""
15611
15612 #. type: verbatim
15613 #: ../src/guestfs-actions.pod:5653
15614 #, no-wrap
15615 msgid ""
15616 " int\n"
15617 " guestfs_resize2fs_M (guestfs_h *g,\n"
15618 "                      const char *device);\n"
15619 "\n"
15620 msgstr ""
15621
15622 #. type: textblock
15623 #: ../src/guestfs-actions.pod:5657
15624 msgid ""
15625 "This command is the same as C<guestfs_resize2fs>, but the filesystem is "
15626 "resized to its minimum size.  This works like the I<-M> option to the "
15627 "C<resize2fs> command."
15628 msgstr ""
15629
15630 #. type: textblock
15631 #: ../src/guestfs-actions.pod:5661
15632 msgid ""
15633 "To get the resulting size of the filesystem you should call "
15634 "C<guestfs_tune2fs_l> and read the C<Block size> and C<Block count> values.  "
15635 "These two numbers, multiplied together, give the resulting size of the "
15636 "minimal filesystem in bytes."
15637 msgstr ""
15638
15639 #. type: =head2
15640 #: ../src/guestfs-actions.pod:5668
15641 msgid "guestfs_resize2fs_size"
15642 msgstr ""
15643
15644 #. type: verbatim
15645 #: ../src/guestfs-actions.pod:5670
15646 #, no-wrap
15647 msgid ""
15648 " int\n"
15649 " guestfs_resize2fs_size (guestfs_h *g,\n"
15650 "                         const char *device,\n"
15651 "                         int64_t size);\n"
15652 "\n"
15653 msgstr ""
15654
15655 #. type: textblock
15656 #: ../src/guestfs-actions.pod:5675
15657 msgid ""
15658 "This command is the same as C<guestfs_resize2fs> except that it allows you "
15659 "to specify the new size (in bytes) explicitly."
15660 msgstr ""
15661
15662 #. type: =head2
15663 #: ../src/guestfs-actions.pod:5682
15664 msgid "guestfs_rm"
15665 msgstr ""
15666
15667 #. type: verbatim
15668 #: ../src/guestfs-actions.pod:5684
15669 #, no-wrap
15670 msgid ""
15671 " int\n"
15672 " guestfs_rm (guestfs_h *g,\n"
15673 "             const char *path);\n"
15674 "\n"
15675 msgstr ""
15676
15677 #. type: textblock
15678 #: ../src/guestfs-actions.pod:5688 ../fish/guestfish-actions.pod:3825
15679 msgid "Remove the single file C<path>."
15680 msgstr ""
15681
15682 #. type: =head2
15683 #: ../src/guestfs-actions.pod:5694
15684 msgid "guestfs_rm_rf"
15685 msgstr ""
15686
15687 #. type: verbatim
15688 #: ../src/guestfs-actions.pod:5696
15689 #, no-wrap
15690 msgid ""
15691 " int\n"
15692 " guestfs_rm_rf (guestfs_h *g,\n"
15693 "                const char *path);\n"
15694 "\n"
15695 msgstr ""
15696
15697 #. type: textblock
15698 #: ../src/guestfs-actions.pod:5700 ../fish/guestfish-actions.pod:3831
15699 msgid ""
15700 "Remove the file or directory C<path>, recursively removing the contents if "
15701 "its a directory.  This is like the C<rm -rf> shell command."
15702 msgstr ""
15703
15704 #. type: =head2
15705 #: ../src/guestfs-actions.pod:5708
15706 msgid "guestfs_rmdir"
15707 msgstr ""
15708
15709 #. type: verbatim
15710 #: ../src/guestfs-actions.pod:5710
15711 #, no-wrap
15712 msgid ""
15713 " int\n"
15714 " guestfs_rmdir (guestfs_h *g,\n"
15715 "                const char *path);\n"
15716 "\n"
15717 msgstr ""
15718
15719 #. type: textblock
15720 #: ../src/guestfs-actions.pod:5714 ../fish/guestfish-actions.pod:3839
15721 msgid "Remove the single directory C<path>."
15722 msgstr ""
15723
15724 #. type: =head2
15725 #: ../src/guestfs-actions.pod:5720
15726 msgid "guestfs_rmmountpoint"
15727 msgstr ""
15728
15729 #. type: verbatim
15730 #: ../src/guestfs-actions.pod:5722
15731 #, no-wrap
15732 msgid ""
15733 " int\n"
15734 " guestfs_rmmountpoint (guestfs_h *g,\n"
15735 "                       const char *exemptpath);\n"
15736 "\n"
15737 msgstr ""
15738
15739 #. type: textblock
15740 #: ../src/guestfs-actions.pod:5726
15741 msgid ""
15742 "This calls removes a mountpoint that was previously created with "
15743 "C<guestfs_mkmountpoint>.  See C<guestfs_mkmountpoint> for full details."
15744 msgstr ""
15745
15746 #. type: =head2
15747 #: ../src/guestfs-actions.pod:5734
15748 msgid "guestfs_scrub_device"
15749 msgstr ""
15750
15751 #. type: verbatim
15752 #: ../src/guestfs-actions.pod:5736
15753 #, no-wrap
15754 msgid ""
15755 " int\n"
15756 " guestfs_scrub_device (guestfs_h *g,\n"
15757 "                       const char *device);\n"
15758 "\n"
15759 msgstr ""
15760
15761 #. type: textblock
15762 #: ../src/guestfs-actions.pod:5740 ../fish/guestfish-actions.pod:3853
15763 msgid ""
15764 "This command writes patterns over C<device> to make data retrieval more "
15765 "difficult."
15766 msgstr ""
15767
15768 #. type: textblock
15769 #: ../src/guestfs-actions.pod:5743 ../src/guestfs-actions.pod:5764
15770 #: ../src/guestfs-actions.pod:5783 ../fish/guestfish-actions.pod:3856
15771 #: ../fish/guestfish-actions.pod:3871 ../fish/guestfish-actions.pod:3884
15772 msgid ""
15773 "It is an interface to the L<scrub(1)> program.  See that manual page for "
15774 "more details."
15775 msgstr ""
15776
15777 #. type: textblock
15778 #: ../src/guestfs-actions.pod:5751 ../src/guestfs-actions.pod:5769
15779 #: ../src/guestfs-actions.pod:5788
15780 msgid "(Added in 1.0.52)"
15781 msgstr ""
15782
15783 #. type: =head2
15784 #: ../src/guestfs-actions.pod:5753
15785 msgid "guestfs_scrub_file"
15786 msgstr ""
15787
15788 #. type: verbatim
15789 #: ../src/guestfs-actions.pod:5755
15790 #, no-wrap
15791 msgid ""
15792 " int\n"
15793 " guestfs_scrub_file (guestfs_h *g,\n"
15794 "                     const char *file);\n"
15795 "\n"
15796 msgstr ""
15797
15798 #. type: textblock
15799 #: ../src/guestfs-actions.pod:5759 ../fish/guestfish-actions.pod:3866
15800 msgid ""
15801 "This command writes patterns over a file to make data retrieval more "
15802 "difficult."
15803 msgstr ""
15804
15805 #. type: textblock
15806 #: ../src/guestfs-actions.pod:5762 ../fish/guestfish-actions.pod:3869
15807 msgid "The file is I<removed> after scrubbing."
15808 msgstr ""
15809
15810 #. type: =head2
15811 #: ../src/guestfs-actions.pod:5771
15812 msgid "guestfs_scrub_freespace"
15813 msgstr ""
15814
15815 #. type: verbatim
15816 #: ../src/guestfs-actions.pod:5773
15817 #, no-wrap
15818 msgid ""
15819 " int\n"
15820 " guestfs_scrub_freespace (guestfs_h *g,\n"
15821 "                          const char *dir);\n"
15822 "\n"
15823 msgstr ""
15824
15825 #. type: textblock
15826 #: ../src/guestfs-actions.pod:5777
15827 msgid ""
15828 "This command creates the directory C<dir> and then fills it with files until "
15829 "the filesystem is full, and scrubs the files as for C<guestfs_scrub_file>, "
15830 "and deletes them.  The intention is to scrub any free space on the partition "
15831 "containing C<dir>."
15832 msgstr ""
15833
15834 #. type: =head2
15835 #: ../src/guestfs-actions.pod:5790
15836 msgid "guestfs_set_append"
15837 msgstr ""
15838
15839 #. type: verbatim
15840 #: ../src/guestfs-actions.pod:5792
15841 #, no-wrap
15842 msgid ""
15843 " int\n"
15844 " guestfs_set_append (guestfs_h *g,\n"
15845 "                     const char *append);\n"
15846 "\n"
15847 msgstr ""
15848
15849 #. type: textblock
15850 #: ../src/guestfs-actions.pod:5796 ../fish/guestfish-actions.pod:3893
15851 msgid ""
15852 "This function is used to add additional options to the guest kernel command "
15853 "line."
15854 msgstr ""
15855
15856 #. type: textblock
15857 #: ../src/guestfs-actions.pod:5799 ../fish/guestfish-actions.pod:3896
15858 msgid ""
15859 "The default is C<NULL> unless overridden by setting C<LIBGUESTFS_APPEND> "
15860 "environment variable."
15861 msgstr ""
15862
15863 #. type: textblock
15864 #: ../src/guestfs-actions.pod:5802 ../fish/guestfish-actions.pod:3899
15865 msgid ""
15866 "Setting C<append> to C<NULL> means I<no> additional options are passed "
15867 "(libguestfs always adds a few of its own)."
15868 msgstr ""
15869
15870 #. type: =head2
15871 #: ../src/guestfs-actions.pod:5809
15872 msgid "guestfs_set_attach_method"
15873 msgstr ""
15874
15875 #. type: verbatim
15876 #: ../src/guestfs-actions.pod:5811
15877 #, no-wrap
15878 msgid ""
15879 " int\n"
15880 " guestfs_set_attach_method (guestfs_h *g,\n"
15881 "                            const char *attachmethod);\n"
15882 "\n"
15883 msgstr ""
15884
15885 #. type: textblock
15886 #: ../src/guestfs-actions.pod:5815 ../fish/guestfish-actions.pod:3908
15887 msgid ""
15888 "Set the method that libguestfs uses to connect to the back end guestfsd "
15889 "daemon.  Possible methods are:"
15890 msgstr ""
15891
15892 #. type: textblock
15893 #: ../src/guestfs-actions.pod:5822 ../fish/guestfish-actions.pod:3915
15894 msgid ""
15895 "Launch an appliance and connect to it.  This is the ordinary method and the "
15896 "default."
15897 msgstr ""
15898
15899 #. type: =item
15900 #: ../src/guestfs-actions.pod:5825 ../fish/guestfish-actions.pod:3918
15901 msgid "C<unix:I<path>>"
15902 msgstr ""
15903
15904 #. type: textblock
15905 #: ../src/guestfs-actions.pod:5827 ../fish/guestfish-actions.pod:3920
15906 msgid "Connect to the Unix domain socket I<path>."
15907 msgstr ""
15908
15909 #. type: textblock
15910 #: ../src/guestfs-actions.pod:5829 ../fish/guestfish-actions.pod:3922
15911 msgid ""
15912 "This method lets you connect to an existing daemon or (using virtio-serial) "
15913 "to a live guest.  For more information, see L<guestfs(3)/ATTACHING TO "
15914 "RUNNING DAEMONS>."
15915 msgstr ""
15916
15917 #. type: =head2
15918 #: ../src/guestfs-actions.pod:5837
15919 msgid "guestfs_set_autosync"
15920 msgstr ""
15921
15922 #. type: verbatim
15923 #: ../src/guestfs-actions.pod:5839
15924 #, no-wrap
15925 msgid ""
15926 " int\n"
15927 " guestfs_set_autosync (guestfs_h *g,\n"
15928 "                       int autosync);\n"
15929 "\n"
15930 msgstr ""
15931
15932 #. type: textblock
15933 #: ../src/guestfs-actions.pod:5843 ../fish/guestfish-actions.pod:3934
15934 msgid ""
15935 "If C<autosync> is true, this enables autosync.  Libguestfs will make a best "
15936 "effort attempt to make filesystems consistent and synchronized when the "
15937 "handle is closed (also if the program exits without closing handles)."
15938 msgstr ""
15939
15940 #. type: textblock
15941 #: ../src/guestfs-actions.pod:5848 ../fish/guestfish-actions.pod:3939
15942 msgid ""
15943 "This is enabled by default (since libguestfs 1.5.24, previously it was "
15944 "disabled by default)."
15945 msgstr ""
15946
15947 #. type: =head2
15948 #: ../src/guestfs-actions.pod:5855
15949 msgid "guestfs_set_direct"
15950 msgstr ""
15951
15952 #. type: verbatim
15953 #: ../src/guestfs-actions.pod:5857
15954 #, no-wrap
15955 msgid ""
15956 " int\n"
15957 " guestfs_set_direct (guestfs_h *g,\n"
15958 "                     int direct);\n"
15959 "\n"
15960 msgstr ""
15961
15962 #. type: textblock
15963 #: ../src/guestfs-actions.pod:5861 ../fish/guestfish-actions.pod:3948
15964 msgid ""
15965 "If the direct appliance mode flag is enabled, then stdin and stdout are "
15966 "passed directly through to the appliance once it is launched."
15967 msgstr ""
15968
15969 #. type: textblock
15970 #: ../src/guestfs-actions.pod:5865
15971 msgid ""
15972 "One consequence of this is that log messages aren't caught by the library "
15973 "and handled by C<guestfs_set_log_message_callback>, but go straight to "
15974 "stdout."
15975 msgstr ""
15976
15977 #. type: textblock
15978 #: ../src/guestfs-actions.pod:5869 ../fish/guestfish-actions.pod:3956
15979 msgid "You probably don't want to use this unless you know what you are doing."
15980 msgstr ""
15981
15982 #. type: textblock
15983 #: ../src/guestfs-actions.pod:5872 ../fish/guestfish-actions.pod:3959
15984 msgid "The default is disabled."
15985 msgstr ""
15986
15987 #. type: =head2
15988 #: ../src/guestfs-actions.pod:5878
15989 msgid "guestfs_set_e2label"
15990 msgstr ""
15991
15992 #. type: verbatim
15993 #: ../src/guestfs-actions.pod:5880
15994 #, no-wrap
15995 msgid ""
15996 " int\n"
15997 " guestfs_set_e2label (guestfs_h *g,\n"
15998 "                      const char *device,\n"
15999 "                      const char *label);\n"
16000 "\n"
16001 msgstr ""
16002
16003 #. type: textblock
16004 #: ../src/guestfs-actions.pod:5885 ../fish/guestfish-actions.pod:3965
16005 msgid ""
16006 "This sets the ext2/3/4 filesystem label of the filesystem on C<device> to "
16007 "C<label>.  Filesystem labels are limited to 16 characters."
16008 msgstr ""
16009
16010 #. type: textblock
16011 #: ../src/guestfs-actions.pod:5889
16012 msgid ""
16013 "You can use either C<guestfs_tune2fs_l> or C<guestfs_get_e2label> to return "
16014 "the existing label on a filesystem."
16015 msgstr ""
16016
16017 #. type: =head2
16018 #: ../src/guestfs-actions.pod:5896
16019 msgid "guestfs_set_e2uuid"
16020 msgstr ""
16021
16022 #. type: verbatim
16023 #: ../src/guestfs-actions.pod:5898
16024 #, no-wrap
16025 msgid ""
16026 " int\n"
16027 " guestfs_set_e2uuid (guestfs_h *g,\n"
16028 "                     const char *device,\n"
16029 "                     const char *uuid);\n"
16030 "\n"
16031 msgstr ""
16032
16033 #. type: textblock
16034 #: ../src/guestfs-actions.pod:5903 ../fish/guestfish-actions.pod:3976
16035 msgid ""
16036 "This sets the ext2/3/4 filesystem UUID of the filesystem on C<device> to "
16037 "C<uuid>.  The format of the UUID and alternatives such as C<clear>, "
16038 "C<random> and C<time> are described in the L<tune2fs(8)> manpage."
16039 msgstr ""
16040
16041 #. type: textblock
16042 #: ../src/guestfs-actions.pod:5908
16043 msgid ""
16044 "You can use either C<guestfs_tune2fs_l> or C<guestfs_get_e2uuid> to return "
16045 "the existing UUID of a filesystem."
16046 msgstr ""
16047
16048 #. type: =head2
16049 #: ../src/guestfs-actions.pod:5915
16050 msgid "guestfs_set_memsize"
16051 msgstr ""
16052
16053 #. type: verbatim
16054 #: ../src/guestfs-actions.pod:5917
16055 #, no-wrap
16056 msgid ""
16057 " int\n"
16058 " guestfs_set_memsize (guestfs_h *g,\n"
16059 "                      int memsize);\n"
16060 "\n"
16061 msgstr ""
16062
16063 #. type: textblock
16064 #: ../src/guestfs-actions.pod:5921
16065 msgid ""
16066 "This sets the memory size in megabytes allocated to the qemu subprocess.  "
16067 "This only has any effect if called before C<guestfs_launch>."
16068 msgstr ""
16069
16070 #. type: textblock
16071 #: ../src/guestfs-actions.pod:5925 ../fish/guestfish-actions.pod:3994
16072 msgid ""
16073 "You can also change this by setting the environment variable "
16074 "C<LIBGUESTFS_MEMSIZE> before the handle is created."
16075 msgstr ""
16076
16077 #. type: =head2
16078 #: ../src/guestfs-actions.pod:5936
16079 msgid "guestfs_set_network"
16080 msgstr ""
16081
16082 #. type: verbatim
16083 #: ../src/guestfs-actions.pod:5938
16084 #, no-wrap
16085 msgid ""
16086 " int\n"
16087 " guestfs_set_network (guestfs_h *g,\n"
16088 "                      int network);\n"
16089 "\n"
16090 msgstr ""
16091
16092 #. type: textblock
16093 #: ../src/guestfs-actions.pod:5942 ../fish/guestfish-actions.pod:4007
16094 msgid ""
16095 "If C<network> is true, then the network is enabled in the libguestfs "
16096 "appliance.  The default is false."
16097 msgstr ""
16098
16099 #. type: textblock
16100 #: ../src/guestfs-actions.pod:5945 ../fish/guestfish-actions.pod:4010
16101 msgid ""
16102 "This affects whether commands are able to access the network (see L<guestfs"
16103 "(3)/RUNNING COMMANDS>)."
16104 msgstr ""
16105
16106 #. type: textblock
16107 #: ../src/guestfs-actions.pod:5948
16108 msgid ""
16109 "You must call this before calling C<guestfs_launch>, otherwise it has no "
16110 "effect."
16111 msgstr ""
16112
16113 #. type: =head2
16114 #: ../src/guestfs-actions.pod:5955
16115 msgid "guestfs_set_path"
16116 msgstr ""
16117
16118 #. type: verbatim
16119 #: ../src/guestfs-actions.pod:5957
16120 #, no-wrap
16121 msgid ""
16122 " int\n"
16123 " guestfs_set_path (guestfs_h *g,\n"
16124 "                   const char *searchpath);\n"
16125 "\n"
16126 msgstr ""
16127
16128 #. type: textblock
16129 #: ../src/guestfs-actions.pod:5961 ../fish/guestfish-actions.pod:4022
16130 msgid "Set the path that libguestfs searches for kernel and initrd.img."
16131 msgstr ""
16132
16133 #. type: textblock
16134 #: ../src/guestfs-actions.pod:5963 ../fish/guestfish-actions.pod:4024
16135 msgid ""
16136 "The default is C<$libdir/guestfs> unless overridden by setting "
16137 "C<LIBGUESTFS_PATH> environment variable."
16138 msgstr ""
16139
16140 #. type: textblock
16141 #: ../src/guestfs-actions.pod:5966 ../fish/guestfish-actions.pod:4027
16142 msgid "Setting C<path> to C<NULL> restores the default path."
16143 msgstr ""
16144
16145 #. type: =head2
16146 #: ../src/guestfs-actions.pod:5972
16147 msgid "guestfs_set_qemu"
16148 msgstr ""
16149
16150 #. type: verbatim
16151 #: ../src/guestfs-actions.pod:5974
16152 #, no-wrap
16153 msgid ""
16154 " int\n"
16155 " guestfs_set_qemu (guestfs_h *g,\n"
16156 "                   const char *qemu);\n"
16157 "\n"
16158 msgstr ""
16159
16160 #. type: textblock
16161 #: ../src/guestfs-actions.pod:5978 ../fish/guestfish-actions.pod:4035
16162 msgid "Set the qemu binary that we will use."
16163 msgstr ""
16164
16165 #. type: textblock
16166 #: ../src/guestfs-actions.pod:5980 ../fish/guestfish-actions.pod:4037
16167 msgid ""
16168 "The default is chosen when the library was compiled by the configure script."
16169 msgstr ""
16170
16171 #. type: textblock
16172 #: ../src/guestfs-actions.pod:5983 ../fish/guestfish-actions.pod:4040
16173 msgid ""
16174 "You can also override this by setting the C<LIBGUESTFS_QEMU> environment "
16175 "variable."
16176 msgstr ""
16177
16178 #. type: textblock
16179 #: ../src/guestfs-actions.pod:5986 ../fish/guestfish-actions.pod:4043
16180 msgid "Setting C<qemu> to C<NULL> restores the default qemu binary."
16181 msgstr ""
16182
16183 #. type: textblock
16184 #: ../src/guestfs-actions.pod:5988 ../fish/guestfish-actions.pod:4045
16185 msgid ""
16186 "Note that you should call this function as early as possible after creating "
16187 "the handle.  This is because some pre-launch operations depend on testing "
16188 "qemu features (by running C<qemu -help>).  If the qemu binary changes, we "
16189 "don't retest features, and so you might see inconsistent results.  Using the "
16190 "environment variable C<LIBGUESTFS_QEMU> is safest of all since that picks "
16191 "the qemu binary at the same time as the handle is created."
16192 msgstr ""
16193
16194 #. type: =head2
16195 #: ../src/guestfs-actions.pod:6000
16196 msgid "guestfs_set_recovery_proc"
16197 msgstr ""
16198
16199 #. type: verbatim
16200 #: ../src/guestfs-actions.pod:6002
16201 #, no-wrap
16202 msgid ""
16203 " int\n"
16204 " guestfs_set_recovery_proc (guestfs_h *g,\n"
16205 "                            int recoveryproc);\n"
16206 "\n"
16207 msgstr ""
16208
16209 #. type: textblock
16210 #: ../src/guestfs-actions.pod:6006
16211 msgid ""
16212 "If this is called with the parameter C<false> then C<guestfs_launch> does "
16213 "not create a recovery process.  The purpose of the recovery process is to "
16214 "stop runaway qemu processes in the case where the main program aborts "
16215 "abruptly."
16216 msgstr ""
16217
16218 #. type: textblock
16219 #: ../src/guestfs-actions.pod:6011
16220 msgid ""
16221 "This only has any effect if called before C<guestfs_launch>, and the default "
16222 "is true."
16223 msgstr ""
16224
16225 #. type: textblock
16226 #: ../src/guestfs-actions.pod:6014 ../fish/guestfish-actions.pod:4067
16227 msgid ""
16228 "About the only time when you would want to disable this is if the main "
16229 "process will fork itself into the background (\"daemonize\" itself).  In "
16230 "this case the recovery process thinks that the main program has disappeared "
16231 "and so kills qemu, which is not very helpful."
16232 msgstr ""
16233
16234 #. type: =head2
16235 #: ../src/guestfs-actions.pod:6024
16236 msgid "guestfs_set_selinux"
16237 msgstr ""
16238
16239 #. type: verbatim
16240 #: ../src/guestfs-actions.pod:6026
16241 #, no-wrap
16242 msgid ""
16243 " int\n"
16244 " guestfs_set_selinux (guestfs_h *g,\n"
16245 "                      int selinux);\n"
16246 "\n"
16247 msgstr ""
16248
16249 #. type: textblock
16250 #: ../src/guestfs-actions.pod:6030 ../fish/guestfish-actions.pod:4079
16251 msgid ""
16252 "This sets the selinux flag that is passed to the appliance at boot time.  "
16253 "The default is C<selinux=0> (disabled)."
16254 msgstr ""
16255
16256 #. type: textblock
16257 #: ../src/guestfs-actions.pod:6033 ../fish/guestfish-actions.pod:4082
16258 msgid ""
16259 "Note that if SELinux is enabled, it is always in Permissive mode "
16260 "(C<enforcing=0>)."
16261 msgstr ""
16262
16263 #. type: =head2
16264 #: ../src/guestfs-actions.pod:6043
16265 msgid "guestfs_set_trace"
16266 msgstr ""
16267
16268 #. type: verbatim
16269 #: ../src/guestfs-actions.pod:6045
16270 #, no-wrap
16271 msgid ""
16272 " int\n"
16273 " guestfs_set_trace (guestfs_h *g,\n"
16274 "                    int trace);\n"
16275 "\n"
16276 msgstr ""
16277
16278 #. type: textblock
16279 #: ../src/guestfs-actions.pod:6049 ../fish/guestfish-actions.pod:4094
16280 msgid ""
16281 "If the command trace flag is set to 1, then libguestfs calls, parameters and "
16282 "return values are traced."
16283 msgstr ""
16284
16285 #. type: textblock
16286 #: ../src/guestfs-actions.pod:6052 ../fish/guestfish-actions.pod:4097
16287 msgid ""
16288 "If you want to trace C API calls into libguestfs (and other libraries) then "
16289 "possibly a better way is to use the external ltrace(1) command."
16290 msgstr ""
16291
16292 #. type: textblock
16293 #: ../src/guestfs-actions.pod:6056 ../fish/guestfish-actions.pod:4101
16294 msgid ""
16295 "Command traces are disabled unless the environment variable "
16296 "C<LIBGUESTFS_TRACE> is defined and set to C<1>."
16297 msgstr ""
16298
16299 #. type: textblock
16300 #: ../src/guestfs-actions.pod:6059
16301 msgid ""
16302 "Trace messages are normally sent to C<stderr>, unless you register a "
16303 "callback to send them somewhere else (see C<guestfs_set_event_callback>)."
16304 msgstr ""
16305
16306 #. type: =head2
16307 #: ../src/guestfs-actions.pod:6067
16308 msgid "guestfs_set_verbose"
16309 msgstr ""
16310
16311 #. type: verbatim
16312 #: ../src/guestfs-actions.pod:6069
16313 #, no-wrap
16314 msgid ""
16315 " int\n"
16316 " guestfs_set_verbose (guestfs_h *g,\n"
16317 "                      int verbose);\n"
16318 "\n"
16319 msgstr ""
16320
16321 #. type: textblock
16322 #: ../src/guestfs-actions.pod:6073 ../fish/guestfish-actions.pod:4114
16323 msgid "If C<verbose> is true, this turns on verbose messages."
16324 msgstr ""
16325
16326 #. type: textblock
16327 #: ../src/guestfs-actions.pod:6075 ../fish/guestfish-actions.pod:4116
16328 msgid ""
16329 "Verbose messages are disabled unless the environment variable "
16330 "C<LIBGUESTFS_DEBUG> is defined and set to C<1>."
16331 msgstr ""
16332
16333 #. type: textblock
16334 #: ../src/guestfs-actions.pod:6078
16335 msgid ""
16336 "Verbose messages are normally sent to C<stderr>, unless you register a "
16337 "callback to send them somewhere else (see C<guestfs_set_event_callback>)."
16338 msgstr ""
16339
16340 #. type: =head2
16341 #: ../src/guestfs-actions.pod:6086
16342 msgid "guestfs_setcon"
16343 msgstr ""
16344
16345 #. type: verbatim
16346 #: ../src/guestfs-actions.pod:6088
16347 #, no-wrap
16348 msgid ""
16349 " int\n"
16350 " guestfs_setcon (guestfs_h *g,\n"
16351 "                 const char *context);\n"
16352 "\n"
16353 msgstr ""
16354
16355 #. type: textblock
16356 #: ../src/guestfs-actions.pod:6092 ../fish/guestfish-actions.pod:4127
16357 msgid ""
16358 "This sets the SELinux security context of the daemon to the string "
16359 "C<context>."
16360 msgstr ""
16361
16362 #. type: textblock
16363 #: ../src/guestfs-actions.pod:6095 ../fish/guestfish-actions.pod:4130
16364 msgid "See the documentation about SELINUX in L<guestfs(3)>."
16365 msgstr ""
16366
16367 #. type: =head2
16368 #: ../src/guestfs-actions.pod:6101
16369 msgid "guestfs_setxattr"
16370 msgstr ""
16371
16372 #. type: verbatim
16373 #: ../src/guestfs-actions.pod:6103
16374 #, no-wrap
16375 msgid ""
16376 " int\n"
16377 " guestfs_setxattr (guestfs_h *g,\n"
16378 "                   const char *xattr,\n"
16379 "                   const char *val,\n"
16380 "                   int vallen,\n"
16381 "                   const char *path);\n"
16382 "\n"
16383 msgstr ""
16384
16385 #. type: textblock
16386 #: ../src/guestfs-actions.pod:6110 ../fish/guestfish-actions.pod:4136
16387 msgid ""
16388 "This call sets the extended attribute named C<xattr> of the file C<path> to "
16389 "the value C<val> (of length C<vallen>).  The value is arbitrary 8 bit data."
16390 msgstr ""
16391
16392 #. type: textblock
16393 #: ../src/guestfs-actions.pod:6114
16394 msgid "See also: C<guestfs_lsetxattr>, L<attr(5)>."
16395 msgstr ""
16396
16397 #. type: =head2
16398 #: ../src/guestfs-actions.pod:6120
16399 msgid "guestfs_sfdisk"
16400 msgstr ""
16401
16402 #. type: verbatim
16403 #: ../src/guestfs-actions.pod:6122
16404 #, no-wrap
16405 msgid ""
16406 " int\n"
16407 " guestfs_sfdisk (guestfs_h *g,\n"
16408 "                 const char *device,\n"
16409 "                 int cyls,\n"
16410 "                 int heads,\n"
16411 "                 int sectors,\n"
16412 "                 char *const *lines);\n"
16413 "\n"
16414 msgstr ""
16415
16416 #. type: textblock
16417 #: ../src/guestfs-actions.pod:6130 ../fish/guestfish-actions.pod:4146
16418 msgid ""
16419 "This is a direct interface to the L<sfdisk(8)> program for creating "
16420 "partitions on block devices."
16421 msgstr ""
16422
16423 #. type: textblock
16424 #: ../src/guestfs-actions.pod:6133 ../fish/guestfish-actions.pod:4149
16425 msgid "C<device> should be a block device, for example C</dev/sda>."
16426 msgstr ""
16427
16428 #. type: textblock
16429 #: ../src/guestfs-actions.pod:6135 ../fish/guestfish-actions.pod:4151
16430 msgid ""
16431 "C<cyls>, C<heads> and C<sectors> are the number of cylinders, heads and "
16432 "sectors on the device, which are passed directly to sfdisk as the I<-C>, I<-"
16433 "H> and I<-S> parameters.  If you pass C<0> for any of these, then the "
16434 "corresponding parameter is omitted.  Usually for 'large' disks, you can just "
16435 "pass C<0> for these, but for small (floppy-sized) disks, sfdisk (or rather, "
16436 "the kernel) cannot work out the right geometry and you will need to tell it."
16437 msgstr ""
16438
16439 #. type: textblock
16440 #: ../src/guestfs-actions.pod:6143 ../fish/guestfish-actions.pod:4159
16441 msgid ""
16442 "C<lines> is a list of lines that we feed to C<sfdisk>.  For more information "
16443 "refer to the L<sfdisk(8)> manpage."
16444 msgstr ""
16445
16446 #. type: textblock
16447 #: ../src/guestfs-actions.pod:6146 ../fish/guestfish-actions.pod:4162
16448 msgid ""
16449 "To create a single partition occupying the whole disk, you would pass "
16450 "C<lines> as a single element list, when the single element being the string "
16451 "C<,> (comma)."
16452 msgstr ""
16453
16454 #. type: textblock
16455 #: ../src/guestfs-actions.pod:6150
16456 msgid ""
16457 "See also: C<guestfs_sfdisk_l>, C<guestfs_sfdisk_N>, C<guestfs_part_init>"
16458 msgstr ""
16459
16460 #. type: =head2
16461 #: ../src/guestfs-actions.pod:6160
16462 msgid "guestfs_sfdiskM"
16463 msgstr ""
16464
16465 #. type: verbatim
16466 #: ../src/guestfs-actions.pod:6162
16467 #, no-wrap
16468 msgid ""
16469 " int\n"
16470 " guestfs_sfdiskM (guestfs_h *g,\n"
16471 "                  const char *device,\n"
16472 "                  char *const *lines);\n"
16473 "\n"
16474 msgstr ""
16475
16476 #. type: textblock
16477 #: ../src/guestfs-actions.pod:6167
16478 msgid ""
16479 "This is a simplified interface to the C<guestfs_sfdisk> command, where "
16480 "partition sizes are specified in megabytes only (rounded to the nearest "
16481 "cylinder) and you don't need to specify the cyls, heads and sectors "
16482 "parameters which were rarely if ever used anyway."
16483 msgstr ""
16484
16485 #. type: textblock
16486 #: ../src/guestfs-actions.pod:6173
16487 msgid ""
16488 "See also: C<guestfs_sfdisk>, the L<sfdisk(8)> manpage and "
16489 "C<guestfs_part_disk>"
16490 msgstr ""
16491
16492 #. type: =head2
16493 #: ../src/guestfs-actions.pod:6183
16494 msgid "guestfs_sfdisk_N"
16495 msgstr ""
16496
16497 #. type: verbatim
16498 #: ../src/guestfs-actions.pod:6185
16499 #, no-wrap
16500 msgid ""
16501 " int\n"
16502 " guestfs_sfdisk_N (guestfs_h *g,\n"
16503 "                   const char *device,\n"
16504 "                   int partnum,\n"
16505 "                   int cyls,\n"
16506 "                   int heads,\n"
16507 "                   int sectors,\n"
16508 "                   const char *line);\n"
16509 "\n"
16510 msgstr ""
16511
16512 #. type: textblock
16513 #: ../src/guestfs-actions.pod:6194 ../fish/guestfish-actions.pod:4192
16514 msgid ""
16515 "This runs L<sfdisk(8)> option to modify just the single partition C<n> "
16516 "(note: C<n> counts from 1)."
16517 msgstr ""
16518
16519 #. type: textblock
16520 #: ../src/guestfs-actions.pod:6197
16521 msgid ""
16522 "For other parameters, see C<guestfs_sfdisk>.  You should usually pass C<0> "
16523 "for the cyls/heads/sectors parameters."
16524 msgstr ""
16525
16526 #. type: textblock
16527 #: ../src/guestfs-actions.pod:6200
16528 msgid "See also: C<guestfs_part_add>"
16529 msgstr ""
16530
16531 #. type: =head2
16532 #: ../src/guestfs-actions.pod:6209
16533 msgid "guestfs_sfdisk_disk_geometry"
16534 msgstr ""
16535
16536 #. type: verbatim
16537 #: ../src/guestfs-actions.pod:6211
16538 #, no-wrap
16539 msgid ""
16540 " char *\n"
16541 " guestfs_sfdisk_disk_geometry (guestfs_h *g,\n"
16542 "                               const char *device);\n"
16543 "\n"
16544 msgstr ""
16545
16546 #. type: textblock
16547 #: ../src/guestfs-actions.pod:6215
16548 msgid ""
16549 "This displays the disk geometry of C<device> read from the partition table.  "
16550 "Especially in the case where the underlying block device has been resized, "
16551 "this can be different from the kernel's idea of the geometry (see "
16552 "C<guestfs_sfdisk_kernel_geometry>)."
16553 msgstr ""
16554
16555 #. type: textblock
16556 #: ../src/guestfs-actions.pod:6220 ../src/guestfs-actions.pod:6236
16557 #: ../fish/guestfish-actions.pod:4212 ../fish/guestfish-actions.pod:4221
16558 msgid "The result is in human-readable format, and not designed to be parsed."
16559 msgstr ""
16560
16561 #. type: =head2
16562 #: ../src/guestfs-actions.pod:6228
16563 msgid "guestfs_sfdisk_kernel_geometry"
16564 msgstr ""
16565
16566 #. type: verbatim
16567 #: ../src/guestfs-actions.pod:6230
16568 #, no-wrap
16569 msgid ""
16570 " char *\n"
16571 " guestfs_sfdisk_kernel_geometry (guestfs_h *g,\n"
16572 "                                 const char *device);\n"
16573 "\n"
16574 msgstr ""
16575
16576 #. type: textblock
16577 #: ../src/guestfs-actions.pod:6234 ../fish/guestfish-actions.pod:4219
16578 msgid "This displays the kernel's idea of the geometry of C<device>."
16579 msgstr ""
16580
16581 #. type: =head2
16582 #: ../src/guestfs-actions.pod:6244
16583 msgid "guestfs_sfdisk_l"
16584 msgstr ""
16585
16586 #. type: verbatim
16587 #: ../src/guestfs-actions.pod:6246
16588 #, no-wrap
16589 msgid ""
16590 " char *\n"
16591 " guestfs_sfdisk_l (guestfs_h *g,\n"
16592 "                   const char *device);\n"
16593 "\n"
16594 msgstr ""
16595
16596 #. type: textblock
16597 #: ../src/guestfs-actions.pod:6250 ../fish/guestfish-actions.pod:4228
16598 msgid ""
16599 "This displays the partition table on C<device>, in the human-readable output "
16600 "of the L<sfdisk(8)> command.  It is not intended to be parsed."
16601 msgstr ""
16602
16603 #. type: textblock
16604 #: ../src/guestfs-actions.pod:6254
16605 msgid "See also: C<guestfs_part_list>"
16606 msgstr ""
16607
16608 #. type: =head2
16609 #: ../src/guestfs-actions.pod:6261
16610 msgid "guestfs_sh"
16611 msgstr ""
16612
16613 #. type: verbatim
16614 #: ../src/guestfs-actions.pod:6263
16615 #, no-wrap
16616 msgid ""
16617 " char *\n"
16618 " guestfs_sh (guestfs_h *g,\n"
16619 "             const char *command);\n"
16620 "\n"
16621 msgstr ""
16622
16623 #. type: textblock
16624 #: ../src/guestfs-actions.pod:6267 ../fish/guestfish-actions.pod:4238
16625 msgid ""
16626 "This call runs a command from the guest filesystem via the guest's C</bin/"
16627 "sh>."
16628 msgstr ""
16629
16630 #. type: textblock
16631 #: ../src/guestfs-actions.pod:6270
16632 msgid "This is like C<guestfs_command>, but passes the command to:"
16633 msgstr ""
16634
16635 #. type: verbatim
16636 #: ../src/guestfs-actions.pod:6272 ../fish/guestfish-actions.pod:4243
16637 #, no-wrap
16638 msgid ""
16639 " /bin/sh -c \"command\"\n"
16640 "\n"
16641 msgstr ""
16642
16643 #. type: textblock
16644 #: ../src/guestfs-actions.pod:6274 ../fish/guestfish-actions.pod:4245
16645 msgid ""
16646 "Depending on the guest's shell, this usually results in wildcards being "
16647 "expanded, shell expressions being interpolated and so on."
16648 msgstr ""
16649
16650 #. type: textblock
16651 #: ../src/guestfs-actions.pod:6278
16652 msgid "All the provisos about C<guestfs_command> apply to this call."
16653 msgstr ""
16654
16655 #. type: =head2
16656 #: ../src/guestfs-actions.pod:6285
16657 msgid "guestfs_sh_lines"
16658 msgstr ""
16659
16660 #. type: verbatim
16661 #: ../src/guestfs-actions.pod:6287
16662 #, no-wrap
16663 msgid ""
16664 " char **\n"
16665 " guestfs_sh_lines (guestfs_h *g,\n"
16666 "                   const char *command);\n"
16667 "\n"
16668 msgstr ""
16669
16670 #. type: textblock
16671 #: ../src/guestfs-actions.pod:6291
16672 msgid ""
16673 "This is the same as C<guestfs_sh>, but splits the result into a list of "
16674 "lines."
16675 msgstr ""
16676
16677 #. type: textblock
16678 #: ../src/guestfs-actions.pod:6294
16679 msgid "See also: C<guestfs_command_lines>"
16680 msgstr ""
16681
16682 #. type: =head2
16683 #: ../src/guestfs-actions.pod:6302
16684 msgid "guestfs_sleep"
16685 msgstr ""
16686
16687 #. type: verbatim
16688 #: ../src/guestfs-actions.pod:6304
16689 #, no-wrap
16690 msgid ""
16691 " int\n"
16692 " guestfs_sleep (guestfs_h *g,\n"
16693 "                int secs);\n"
16694 "\n"
16695 msgstr ""
16696
16697 #. type: textblock
16698 #: ../src/guestfs-actions.pod:6308 ../fish/guestfish-actions.pod:4264
16699 msgid "Sleep for C<secs> seconds."
16700 msgstr ""
16701
16702 #. type: textblock
16703 #: ../src/guestfs-actions.pod:6312
16704 msgid "(Added in 1.0.41)"
16705 msgstr ""
16706
16707 #. type: =head2
16708 #: ../src/guestfs-actions.pod:6314 ../src/guestfs-structs.pod:109
16709 msgid "guestfs_stat"
16710 msgstr ""
16711
16712 #. type: verbatim
16713 #: ../src/guestfs-actions.pod:6316
16714 #, no-wrap
16715 msgid ""
16716 " struct guestfs_stat *\n"
16717 " guestfs_stat (guestfs_h *g,\n"
16718 "               const char *path);\n"
16719 "\n"
16720 msgstr ""
16721
16722 #. type: textblock
16723 #: ../src/guestfs-actions.pod:6322 ../fish/guestfish-actions.pod:4272
16724 msgid "This is the same as the C<stat(2)> system call."
16725 msgstr ""
16726
16727 #. type: =head2
16728 #: ../src/guestfs-actions.pod:6330 ../src/guestfs-structs.pod:135
16729 msgid "guestfs_statvfs"
16730 msgstr ""
16731
16732 #. type: verbatim
16733 #: ../src/guestfs-actions.pod:6332
16734 #, no-wrap
16735 msgid ""
16736 " struct guestfs_statvfs *\n"
16737 " guestfs_statvfs (guestfs_h *g,\n"
16738 "                  const char *path);\n"
16739 "\n"
16740 msgstr ""
16741
16742 #. type: textblock
16743 #: ../src/guestfs-actions.pod:6336 ../fish/guestfish-actions.pod:4278
16744 msgid ""
16745 "Returns file system statistics for any mounted file system.  C<path> should "
16746 "be a file or directory in the mounted file system (typically it is the mount "
16747 "point itself, but it doesn't need to be)."
16748 msgstr ""
16749
16750 #. type: textblock
16751 #: ../src/guestfs-actions.pod:6340 ../fish/guestfish-actions.pod:4282
16752 msgid "This is the same as the C<statvfs(2)> system call."
16753 msgstr ""
16754
16755 #. type: textblock
16756 #: ../src/guestfs-actions.pod:6342
16757 msgid ""
16758 "This function returns a C<struct guestfs_statvfs *>, or NULL if there was an "
16759 "error.  I<The caller must call C<guestfs_free_statvfs> after use>."
16760 msgstr ""
16761
16762 #. type: =head2
16763 #: ../src/guestfs-actions.pod:6348
16764 msgid "guestfs_strings"
16765 msgstr ""
16766
16767 #. type: verbatim
16768 #: ../src/guestfs-actions.pod:6350
16769 #, no-wrap
16770 msgid ""
16771 " char **\n"
16772 " guestfs_strings (guestfs_h *g,\n"
16773 "                  const char *path);\n"
16774 "\n"
16775 msgstr ""
16776
16777 #. type: textblock
16778 #: ../src/guestfs-actions.pod:6354 ../fish/guestfish-actions.pod:4288
16779 msgid ""
16780 "This runs the L<strings(1)> command on a file and returns the list of "
16781 "printable strings found."
16782 msgstr ""
16783
16784 #. type: =head2
16785 #: ../src/guestfs-actions.pod:6366
16786 msgid "guestfs_strings_e"
16787 msgstr ""
16788
16789 #. type: verbatim
16790 #: ../src/guestfs-actions.pod:6368
16791 #, no-wrap
16792 msgid ""
16793 " char **\n"
16794 " guestfs_strings_e (guestfs_h *g,\n"
16795 "                    const char *encoding,\n"
16796 "                    const char *path);\n"
16797 "\n"
16798 msgstr ""
16799
16800 #. type: textblock
16801 #: ../src/guestfs-actions.pod:6373
16802 msgid ""
16803 "This is like the C<guestfs_strings> command, but allows you to specify the "
16804 "encoding of strings that are looked for in the source file C<path>."
16805 msgstr ""
16806
16807 #. type: textblock
16808 #: ../src/guestfs-actions.pod:6377 ../fish/guestfish-actions.pod:4302
16809 msgid "Allowed encodings are:"
16810 msgstr ""
16811
16812 #. type: =item
16813 #: ../src/guestfs-actions.pod:6381 ../fish/guestfish-actions.pod:4306
16814 msgid "s"
16815 msgstr ""
16816
16817 #. type: textblock
16818 #: ../src/guestfs-actions.pod:6383
16819 msgid ""
16820 "Single 7-bit-byte characters like ASCII and the ASCII-compatible parts of "
16821 "ISO-8859-X (this is what C<guestfs_strings> uses)."
16822 msgstr ""
16823
16824 #. type: =item
16825 #: ../src/guestfs-actions.pod:6386 ../fish/guestfish-actions.pod:4311
16826 msgid "S"
16827 msgstr ""
16828
16829 #. type: textblock
16830 #: ../src/guestfs-actions.pod:6388 ../fish/guestfish-actions.pod:4313
16831 msgid "Single 8-bit-byte characters."
16832 msgstr ""
16833
16834 #. type: =item
16835 #: ../src/guestfs-actions.pod:6390 ../fish/guestfish-actions.pod:4315
16836 msgid "b"
16837 msgstr ""
16838
16839 #. type: textblock
16840 #: ../src/guestfs-actions.pod:6392 ../fish/guestfish-actions.pod:4317
16841 msgid "16-bit big endian strings such as those encoded in UTF-16BE or UCS-2BE."
16842 msgstr ""
16843
16844 #. type: =item
16845 #: ../src/guestfs-actions.pod:6395 ../fish/guestfish-actions.pod:4320
16846 msgid "l (lower case letter L)"
16847 msgstr ""
16848
16849 #. type: textblock
16850 #: ../src/guestfs-actions.pod:6397 ../fish/guestfish-actions.pod:4322
16851 msgid ""
16852 "16-bit little endian such as UTF-16LE and UCS-2LE.  This is useful for "
16853 "examining binaries in Windows guests."
16854 msgstr ""
16855
16856 #. type: =item
16857 #: ../src/guestfs-actions.pod:6400 ../fish/guestfish-actions.pod:4325
16858 msgid "B"
16859 msgstr ""
16860
16861 #. type: textblock
16862 #: ../src/guestfs-actions.pod:6402 ../fish/guestfish-actions.pod:4327
16863 msgid "32-bit big endian such as UCS-4BE."
16864 msgstr ""
16865
16866 #. type: =item
16867 #: ../src/guestfs-actions.pod:6404 ../fish/guestfish-actions.pod:4329
16868 msgid "L"
16869 msgstr ""
16870
16871 #. type: textblock
16872 #: ../src/guestfs-actions.pod:6406 ../fish/guestfish-actions.pod:4331
16873 msgid "32-bit little endian such as UCS-4LE."
16874 msgstr ""
16875
16876 #. type: textblock
16877 #: ../src/guestfs-actions.pod:6410 ../fish/guestfish-actions.pod:4335
16878 msgid "The returned strings are transcoded to UTF-8."
16879 msgstr ""
16880
16881 #. type: =head2
16882 #: ../src/guestfs-actions.pod:6421
16883 msgid "guestfs_swapoff_device"
16884 msgstr ""
16885
16886 #. type: verbatim
16887 #: ../src/guestfs-actions.pod:6423
16888 #, no-wrap
16889 msgid ""
16890 " int\n"
16891 " guestfs_swapoff_device (guestfs_h *g,\n"
16892 "                         const char *device);\n"
16893 "\n"
16894 msgstr ""
16895
16896 #. type: textblock
16897 #: ../src/guestfs-actions.pod:6427
16898 msgid ""
16899 "This command disables the libguestfs appliance swap device or partition "
16900 "named C<device>.  See C<guestfs_swapon_device>."
16901 msgstr ""
16902
16903 #. type: =head2
16904 #: ../src/guestfs-actions.pod:6435
16905 msgid "guestfs_swapoff_file"
16906 msgstr ""
16907
16908 #. type: verbatim
16909 #: ../src/guestfs-actions.pod:6437
16910 #, no-wrap
16911 msgid ""
16912 " int\n"
16913 " guestfs_swapoff_file (guestfs_h *g,\n"
16914 "                       const char *file);\n"
16915 "\n"
16916 msgstr ""
16917
16918 #. type: textblock
16919 #: ../src/guestfs-actions.pod:6441 ../fish/guestfish-actions.pod:4352
16920 msgid "This command disables the libguestfs appliance swap on file."
16921 msgstr ""
16922
16923 #. type: =head2
16924 #: ../src/guestfs-actions.pod:6447
16925 msgid "guestfs_swapoff_label"
16926 msgstr ""
16927
16928 #. type: verbatim
16929 #: ../src/guestfs-actions.pod:6449
16930 #, no-wrap
16931 msgid ""
16932 " int\n"
16933 " guestfs_swapoff_label (guestfs_h *g,\n"
16934 "                        const char *label);\n"
16935 "\n"
16936 msgstr ""
16937
16938 #. type: textblock
16939 #: ../src/guestfs-actions.pod:6453 ../fish/guestfish-actions.pod:4358
16940 msgid ""
16941 "This command disables the libguestfs appliance swap on labeled swap "
16942 "partition."
16943 msgstr ""
16944
16945 #. type: =head2
16946 #: ../src/guestfs-actions.pod:6460
16947 msgid "guestfs_swapoff_uuid"
16948 msgstr ""
16949
16950 #. type: verbatim
16951 #: ../src/guestfs-actions.pod:6462
16952 #, no-wrap
16953 msgid ""
16954 " int\n"
16955 " guestfs_swapoff_uuid (guestfs_h *g,\n"
16956 "                       const char *uuid);\n"
16957 "\n"
16958 msgstr ""
16959
16960 #. type: textblock
16961 #: ../src/guestfs-actions.pod:6466 ../fish/guestfish-actions.pod:4365
16962 msgid ""
16963 "This command disables the libguestfs appliance swap partition with the given "
16964 "UUID."
16965 msgstr ""
16966
16967 #. type: =head2
16968 #: ../src/guestfs-actions.pod:6473
16969 msgid "guestfs_swapon_device"
16970 msgstr ""
16971
16972 #. type: verbatim
16973 #: ../src/guestfs-actions.pod:6475
16974 #, no-wrap
16975 msgid ""
16976 " int\n"
16977 " guestfs_swapon_device (guestfs_h *g,\n"
16978 "                        const char *device);\n"
16979 "\n"
16980 msgstr ""
16981
16982 #. type: textblock
16983 #: ../src/guestfs-actions.pod:6479
16984 msgid ""
16985 "This command enables the libguestfs appliance to use the swap device or "
16986 "partition named C<device>.  The increased memory is made available for all "
16987 "commands, for example those run using C<guestfs_command> or C<guestfs_sh>."
16988 msgstr ""
16989
16990 #. type: textblock
16991 #: ../src/guestfs-actions.pod:6484 ../fish/guestfish-actions.pod:4377
16992 msgid ""
16993 "Note that you should not swap to existing guest swap partitions unless you "
16994 "know what you are doing.  They may contain hibernation information, or other "
16995 "information that the guest doesn't want you to trash.  You also risk leaking "
16996 "information about the host to the guest this way.  Instead, attach a new "
16997 "host device to the guest and swap on that."
16998 msgstr ""
16999
17000 #. type: =head2
17001 #: ../src/guestfs-actions.pod:6495
17002 msgid "guestfs_swapon_file"
17003 msgstr ""
17004
17005 #. type: verbatim
17006 #: ../src/guestfs-actions.pod:6497
17007 #, no-wrap
17008 msgid ""
17009 " int\n"
17010 " guestfs_swapon_file (guestfs_h *g,\n"
17011 "                      const char *file);\n"
17012 "\n"
17013 msgstr ""
17014
17015 #. type: textblock
17016 #: ../src/guestfs-actions.pod:6501
17017 msgid ""
17018 "This command enables swap to a file.  See C<guestfs_swapon_device> for other "
17019 "notes."
17020 msgstr ""
17021
17022 #. type: =head2
17023 #: ../src/guestfs-actions.pod:6508
17024 msgid "guestfs_swapon_label"
17025 msgstr ""
17026
17027 #. type: verbatim
17028 #: ../src/guestfs-actions.pod:6510
17029 #, no-wrap
17030 msgid ""
17031 " int\n"
17032 " guestfs_swapon_label (guestfs_h *g,\n"
17033 "                       const char *label);\n"
17034 "\n"
17035 msgstr ""
17036
17037 #. type: textblock
17038 #: ../src/guestfs-actions.pod:6514
17039 msgid ""
17040 "This command enables swap to a labeled swap partition.  See "
17041 "C<guestfs_swapon_device> for other notes."
17042 msgstr ""
17043
17044 #. type: =head2
17045 #: ../src/guestfs-actions.pod:6521
17046 msgid "guestfs_swapon_uuid"
17047 msgstr ""
17048
17049 #. type: verbatim
17050 #: ../src/guestfs-actions.pod:6523
17051 #, no-wrap
17052 msgid ""
17053 " int\n"
17054 " guestfs_swapon_uuid (guestfs_h *g,\n"
17055 "                      const char *uuid);\n"
17056 "\n"
17057 msgstr ""
17058
17059 #. type: textblock
17060 #: ../src/guestfs-actions.pod:6527
17061 msgid ""
17062 "This command enables swap to a swap partition with the given UUID.  See "
17063 "C<guestfs_swapon_device> for other notes."
17064 msgstr ""
17065
17066 #. type: =head2
17067 #: ../src/guestfs-actions.pod:6534
17068 msgid "guestfs_sync"
17069 msgstr ""
17070
17071 #. type: verbatim
17072 #: ../src/guestfs-actions.pod:6536
17073 #, no-wrap
17074 msgid ""
17075 " int\n"
17076 " guestfs_sync (guestfs_h *g);\n"
17077 "\n"
17078 msgstr ""
17079
17080 #. type: textblock
17081 #: ../src/guestfs-actions.pod:6539 ../fish/guestfish-actions.pod:4409
17082 msgid ""
17083 "This syncs the disk, so that any writes are flushed through to the "
17084 "underlying disk image."
17085 msgstr ""
17086
17087 #. type: textblock
17088 #: ../src/guestfs-actions.pod:6542 ../fish/guestfish-actions.pod:4412
17089 msgid ""
17090 "You should always call this if you have modified a disk image, before "
17091 "closing the handle."
17092 msgstr ""
17093
17094 #. type: =head2
17095 #: ../src/guestfs-actions.pod:6549
17096 msgid "guestfs_tail"
17097 msgstr ""
17098
17099 #. type: verbatim
17100 #: ../src/guestfs-actions.pod:6551
17101 #, no-wrap
17102 msgid ""
17103 " char **\n"
17104 " guestfs_tail (guestfs_h *g,\n"
17105 "               const char *path);\n"
17106 "\n"
17107 msgstr ""
17108
17109 #. type: textblock
17110 #: ../src/guestfs-actions.pod:6555 ../fish/guestfish-actions.pod:4419
17111 msgid ""
17112 "This command returns up to the last 10 lines of a file as a list of strings."
17113 msgstr ""
17114
17115 #. type: =head2
17116 #: ../src/guestfs-actions.pod:6567
17117 msgid "guestfs_tail_n"
17118 msgstr ""
17119
17120 #. type: verbatim
17121 #: ../src/guestfs-actions.pod:6569
17122 #, no-wrap
17123 msgid ""
17124 " char **\n"
17125 " guestfs_tail_n (guestfs_h *g,\n"
17126 "                 int nrlines,\n"
17127 "                 const char *path);\n"
17128 "\n"
17129 msgstr ""
17130
17131 #. type: textblock
17132 #: ../src/guestfs-actions.pod:6574 ../fish/guestfish-actions.pod:4429
17133 msgid ""
17134 "If the parameter C<nrlines> is a positive number, this returns the last "
17135 "C<nrlines> lines of the file C<path>."
17136 msgstr ""
17137
17138 #. type: textblock
17139 #: ../src/guestfs-actions.pod:6577 ../fish/guestfish-actions.pod:4432
17140 msgid ""
17141 "If the parameter C<nrlines> is a negative number, this returns lines from "
17142 "the file C<path>, starting with the C<-nrlines>th line."
17143 msgstr ""
17144
17145 #. type: =head2
17146 #: ../src/guestfs-actions.pod:6591
17147 msgid "guestfs_tar_in"
17148 msgstr ""
17149
17150 #. type: verbatim
17151 #: ../src/guestfs-actions.pod:6593
17152 #, no-wrap
17153 msgid ""
17154 " int\n"
17155 " guestfs_tar_in (guestfs_h *g,\n"
17156 "                 const char *tarfile,\n"
17157 "                 const char *directory);\n"
17158 "\n"
17159 msgstr ""
17160
17161 #. type: textblock
17162 #: ../src/guestfs-actions.pod:6598 ../fish/guestfish-actions.pod:4444
17163 msgid ""
17164 "This command uploads and unpacks local file C<tarfile> (an I<uncompressed> "
17165 "tar file) into C<directory>."
17166 msgstr ""
17167
17168 #. type: textblock
17169 #: ../src/guestfs-actions.pod:6601
17170 msgid ""
17171 "To upload a compressed tarball, use C<guestfs_tgz_in> or C<guestfs_txz_in>."
17172 msgstr ""
17173
17174 #. type: textblock
17175 #: ../src/guestfs-actions.pod:6606 ../src/guestfs-actions.pod:6623
17176 #: ../src/guestfs-actions.pod:6639 ../src/guestfs-actions.pod:6655
17177 msgid "(Added in 1.0.3)"
17178 msgstr ""
17179
17180 #. type: =head2
17181 #: ../src/guestfs-actions.pod:6608
17182 msgid "guestfs_tar_out"
17183 msgstr ""
17184
17185 #. type: verbatim
17186 #: ../src/guestfs-actions.pod:6610
17187 #, no-wrap
17188 msgid ""
17189 " int\n"
17190 " guestfs_tar_out (guestfs_h *g,\n"
17191 "                  const char *directory,\n"
17192 "                  const char *tarfile);\n"
17193 "\n"
17194 msgstr ""
17195
17196 #. type: textblock
17197 #: ../src/guestfs-actions.pod:6615 ../fish/guestfish-actions.pod:4456
17198 msgid ""
17199 "This command packs the contents of C<directory> and downloads it to local "
17200 "file C<tarfile>."
17201 msgstr ""
17202
17203 #. type: textblock
17204 #: ../src/guestfs-actions.pod:6618
17205 msgid ""
17206 "To download a compressed tarball, use C<guestfs_tgz_out> or "
17207 "C<guestfs_txz_out>."
17208 msgstr ""
17209
17210 #. type: =head2
17211 #: ../src/guestfs-actions.pod:6625
17212 msgid "guestfs_tgz_in"
17213 msgstr ""
17214
17215 #. type: verbatim
17216 #: ../src/guestfs-actions.pod:6627
17217 #, no-wrap
17218 msgid ""
17219 " int\n"
17220 " guestfs_tgz_in (guestfs_h *g,\n"
17221 "                 const char *tarball,\n"
17222 "                 const char *directory);\n"
17223 "\n"
17224 msgstr ""
17225
17226 #. type: textblock
17227 #: ../src/guestfs-actions.pod:6632 ../fish/guestfish-actions.pod:4468
17228 msgid ""
17229 "This command uploads and unpacks local file C<tarball> (a I<gzip compressed> "
17230 "tar file) into C<directory>."
17231 msgstr ""
17232
17233 #. type: textblock
17234 #: ../src/guestfs-actions.pod:6635
17235 msgid "To upload an uncompressed tarball, use C<guestfs_tar_in>."
17236 msgstr ""
17237
17238 #. type: =head2
17239 #: ../src/guestfs-actions.pod:6641
17240 msgid "guestfs_tgz_out"
17241 msgstr ""
17242
17243 #. type: verbatim
17244 #: ../src/guestfs-actions.pod:6643
17245 #, no-wrap
17246 msgid ""
17247 " int\n"
17248 " guestfs_tgz_out (guestfs_h *g,\n"
17249 "                  const char *directory,\n"
17250 "                  const char *tarball);\n"
17251 "\n"
17252 msgstr ""
17253
17254 #. type: textblock
17255 #: ../src/guestfs-actions.pod:6648 ../fish/guestfish-actions.pod:4479
17256 msgid ""
17257 "This command packs the contents of C<directory> and downloads it to local "
17258 "file C<tarball>."
17259 msgstr ""
17260
17261 #. type: textblock
17262 #: ../src/guestfs-actions.pod:6651
17263 msgid "To download an uncompressed tarball, use C<guestfs_tar_out>."
17264 msgstr ""
17265
17266 #. type: =head2
17267 #: ../src/guestfs-actions.pod:6657
17268 msgid "guestfs_touch"
17269 msgstr ""
17270
17271 #. type: verbatim
17272 #: ../src/guestfs-actions.pod:6659
17273 #, no-wrap
17274 msgid ""
17275 " int\n"
17276 " guestfs_touch (guestfs_h *g,\n"
17277 "                const char *path);\n"
17278 "\n"
17279 msgstr ""
17280
17281 #. type: textblock
17282 #: ../src/guestfs-actions.pod:6663 ../fish/guestfish-actions.pod:4490
17283 msgid ""
17284 "Touch acts like the L<touch(1)> command.  It can be used to update the "
17285 "timestamps on a file, or, if the file does not exist, to create a new zero-"
17286 "length file."
17287 msgstr ""
17288
17289 #. type: textblock
17290 #: ../src/guestfs-actions.pod:6667 ../fish/guestfish-actions.pod:4494
17291 msgid ""
17292 "This command only works on regular files, and will fail on other file types "
17293 "such as directories, symbolic links, block special etc."
17294 msgstr ""
17295
17296 #. type: =head2
17297 #: ../src/guestfs-actions.pod:6674
17298 msgid "guestfs_truncate"
17299 msgstr ""
17300
17301 #. type: verbatim
17302 #: ../src/guestfs-actions.pod:6676
17303 #, no-wrap
17304 msgid ""
17305 " int\n"
17306 " guestfs_truncate (guestfs_h *g,\n"
17307 "                   const char *path);\n"
17308 "\n"
17309 msgstr ""
17310
17311 #. type: textblock
17312 #: ../src/guestfs-actions.pod:6680 ../fish/guestfish-actions.pod:4501
17313 msgid ""
17314 "This command truncates C<path> to a zero-length file.  The file must exist "
17315 "already."
17316 msgstr ""
17317
17318 #. type: =head2
17319 #: ../src/guestfs-actions.pod:6687
17320 msgid "guestfs_truncate_size"
17321 msgstr ""
17322
17323 #. type: verbatim
17324 #: ../src/guestfs-actions.pod:6689
17325 #, no-wrap
17326 msgid ""
17327 " int\n"
17328 " guestfs_truncate_size (guestfs_h *g,\n"
17329 "                        const char *path,\n"
17330 "                        int64_t size);\n"
17331 "\n"
17332 msgstr ""
17333
17334 #. type: textblock
17335 #: ../src/guestfs-actions.pod:6694 ../fish/guestfish-actions.pod:4508
17336 msgid ""
17337 "This command truncates C<path> to size C<size> bytes.  The file must exist "
17338 "already."
17339 msgstr ""
17340
17341 #. type: textblock
17342 #: ../src/guestfs-actions.pod:6697
17343 msgid ""
17344 "If the current file size is less than C<size> then the file is extended to "
17345 "the required size with zero bytes.  This creates a sparse file (ie. disk "
17346 "blocks are not allocated for the file until you write to it).  To create a "
17347 "non-sparse file of zeroes, use C<guestfs_fallocate64> instead."
17348 msgstr ""
17349
17350 #. type: =head2
17351 #: ../src/guestfs-actions.pod:6707
17352 msgid "guestfs_tune2fs_l"
17353 msgstr ""
17354
17355 #. type: verbatim
17356 #: ../src/guestfs-actions.pod:6709
17357 #, no-wrap
17358 msgid ""
17359 " char **\n"
17360 " guestfs_tune2fs_l (guestfs_h *g,\n"
17361 "                    const char *device);\n"
17362 "\n"
17363 msgstr ""
17364
17365 #. type: textblock
17366 #: ../src/guestfs-actions.pod:6713 ../fish/guestfish-actions.pod:4521
17367 msgid ""
17368 "This returns the contents of the ext2, ext3 or ext4 filesystem superblock on "
17369 "C<device>."
17370 msgstr ""
17371
17372 #. type: textblock
17373 #: ../src/guestfs-actions.pod:6716 ../fish/guestfish-actions.pod:4524
17374 msgid ""
17375 "It is the same as running C<tune2fs -l device>.  See L<tune2fs(8)> manpage "
17376 "for more details.  The list of fields returned isn't clearly defined, and "
17377 "depends on both the version of C<tune2fs> that libguestfs was built against, "
17378 "and the filesystem itself."
17379 msgstr ""
17380
17381 #. type: =head2
17382 #: ../src/guestfs-actions.pod:6729
17383 msgid "guestfs_txz_in"
17384 msgstr ""
17385
17386 #. type: verbatim
17387 #: ../src/guestfs-actions.pod:6731
17388 #, no-wrap
17389 msgid ""
17390 " int\n"
17391 " guestfs_txz_in (guestfs_h *g,\n"
17392 "                 const char *tarball,\n"
17393 "                 const char *directory);\n"
17394 "\n"
17395 msgstr ""
17396
17397 #. type: textblock
17398 #: ../src/guestfs-actions.pod:6736 ../fish/guestfish-actions.pod:4533
17399 msgid ""
17400 "This command uploads and unpacks local file C<tarball> (an I<xz compressed> "
17401 "tar file) into C<directory>."
17402 msgstr ""
17403
17404 #. type: =head2
17405 #: ../src/guestfs-actions.pod:6743
17406 msgid "guestfs_txz_out"
17407 msgstr ""
17408
17409 #. type: verbatim
17410 #: ../src/guestfs-actions.pod:6745
17411 #, no-wrap
17412 msgid ""
17413 " int\n"
17414 " guestfs_txz_out (guestfs_h *g,\n"
17415 "                  const char *directory,\n"
17416 "                  const char *tarball);\n"
17417 "\n"
17418 msgstr ""
17419
17420 #. type: textblock
17421 #: ../src/guestfs-actions.pod:6750 ../fish/guestfish-actions.pod:4542
17422 msgid ""
17423 "This command packs the contents of C<directory> and downloads it to local "
17424 "file C<tarball> (as an xz compressed tar archive)."
17425 msgstr ""
17426
17427 #. type: =head2
17428 #: ../src/guestfs-actions.pod:6757
17429 msgid "guestfs_umask"
17430 msgstr ""
17431
17432 #. type: verbatim
17433 #: ../src/guestfs-actions.pod:6759
17434 #, no-wrap
17435 msgid ""
17436 " int\n"
17437 " guestfs_umask (guestfs_h *g,\n"
17438 "                int mask);\n"
17439 "\n"
17440 msgstr ""
17441
17442 #. type: textblock
17443 #: ../src/guestfs-actions.pod:6763 ../fish/guestfish-actions.pod:4551
17444 msgid ""
17445 "This function sets the mask used for creating new files and device nodes to "
17446 "C<mask & 0777>."
17447 msgstr ""
17448
17449 #. type: textblock
17450 #: ../src/guestfs-actions.pod:6766 ../fish/guestfish-actions.pod:4554
17451 msgid ""
17452 "Typical umask values would be C<022> which creates new files with "
17453 "permissions like \"-rw-r--r--\" or \"-rwxr-xr-x\", and C<002> which creates "
17454 "new files with permissions like \"-rw-rw-r--\" or \"-rwxrwxr-x\"."
17455 msgstr ""
17456
17457 #. type: textblock
17458 #: ../src/guestfs-actions.pod:6771 ../fish/guestfish-actions.pod:4559
17459 msgid ""
17460 "The default umask is C<022>.  This is important because it means that "
17461 "directories and device nodes will be created with C<0644> or C<0755> mode "
17462 "even if you specify C<0777>."
17463 msgstr ""
17464
17465 #. type: textblock
17466 #: ../src/guestfs-actions.pod:6775
17467 msgid ""
17468 "See also C<guestfs_get_umask>, L<umask(2)>, C<guestfs_mknod>, "
17469 "C<guestfs_mkdir>."
17470 msgstr ""
17471
17472 #. type: textblock
17473 #: ../src/guestfs-actions.pod:6778 ../fish/guestfish-actions.pod:4566
17474 msgid "This call returns the previous umask."
17475 msgstr ""
17476
17477 #. type: =head2
17478 #: ../src/guestfs-actions.pod:6784
17479 msgid "guestfs_umount"
17480 msgstr ""
17481
17482 #. type: verbatim
17483 #: ../src/guestfs-actions.pod:6786
17484 #, no-wrap
17485 msgid ""
17486 " int\n"
17487 " guestfs_umount (guestfs_h *g,\n"
17488 "                 const char *pathordevice);\n"
17489 "\n"
17490 msgstr ""
17491
17492 #. type: textblock
17493 #: ../src/guestfs-actions.pod:6790 ../fish/guestfish-actions.pod:4574
17494 msgid ""
17495 "This unmounts the given filesystem.  The filesystem may be specified either "
17496 "by its mountpoint (path) or the device which contains the filesystem."
17497 msgstr ""
17498
17499 #. type: =head2
17500 #: ../src/guestfs-actions.pod:6798
17501 msgid "guestfs_umount_all"
17502 msgstr ""
17503
17504 #. type: verbatim
17505 #: ../src/guestfs-actions.pod:6800
17506 #, no-wrap
17507 msgid ""
17508 " int\n"
17509 " guestfs_umount_all (guestfs_h *g);\n"
17510 "\n"
17511 msgstr ""
17512
17513 #. type: textblock
17514 #: ../src/guestfs-actions.pod:6803 ../fish/guestfish-actions.pod:4584
17515 msgid "This unmounts all mounted filesystems."
17516 msgstr ""
17517
17518 #. type: textblock
17519 #: ../src/guestfs-actions.pod:6805 ../fish/guestfish-actions.pod:4586
17520 msgid "Some internal mounts are not unmounted by this call."
17521 msgstr ""
17522
17523 #. type: =head2
17524 #: ../src/guestfs-actions.pod:6811
17525 msgid "guestfs_upload"
17526 msgstr ""
17527
17528 #. type: verbatim
17529 #: ../src/guestfs-actions.pod:6813
17530 #, no-wrap
17531 msgid ""
17532 " int\n"
17533 " guestfs_upload (guestfs_h *g,\n"
17534 "                 const char *filename,\n"
17535 "                 const char *remotefilename);\n"
17536 "\n"
17537 msgstr ""
17538
17539 #. type: textblock
17540 #: ../src/guestfs-actions.pod:6818 ../src/guestfs-actions.pod:6842
17541 #: ../fish/guestfish-actions.pod:4592 ../fish/guestfish-actions.pod:4605
17542 msgid "Upload local file C<filename> to C<remotefilename> on the filesystem."
17543 msgstr ""
17544
17545 #. type: textblock
17546 #: ../src/guestfs-actions.pod:6823
17547 msgid "See also C<guestfs_download>."
17548 msgstr ""
17549
17550 #. type: =head2
17551 #: ../src/guestfs-actions.pod:6834
17552 msgid "guestfs_upload_offset"
17553 msgstr ""
17554
17555 #. type: verbatim
17556 #: ../src/guestfs-actions.pod:6836
17557 #, no-wrap
17558 msgid ""
17559 " int\n"
17560 " guestfs_upload_offset (guestfs_h *g,\n"
17561 "                        const char *filename,\n"
17562 "                        const char *remotefilename,\n"
17563 "                        int64_t offset);\n"
17564 "\n"
17565 msgstr ""
17566
17567 #. type: textblock
17568 #: ../src/guestfs-actions.pod:6845 ../fish/guestfish-actions.pod:4608
17569 msgid ""
17570 "C<remotefilename> is overwritten starting at the byte C<offset> specified.  "
17571 "The intention is to overwrite parts of existing files or devices, although "
17572 "if a non-existant file is specified then it is created with a \"hole\" "
17573 "before C<offset>.  The size of the data written is implicit in the size of "
17574 "the source C<filename>."
17575 msgstr ""
17576
17577 #. type: textblock
17578 #: ../src/guestfs-actions.pod:6852
17579 msgid ""
17580 "Note that there is no limit on the amount of data that can be uploaded with "
17581 "this call, unlike with C<guestfs_pwrite>, and this call always writes the "
17582 "full amount unless an error occurs."
17583 msgstr ""
17584
17585 #. type: textblock
17586 #: ../src/guestfs-actions.pod:6857
17587 msgid "See also C<guestfs_upload>, C<guestfs_pwrite>."
17588 msgstr ""
17589
17590 #. type: =head2
17591 #: ../src/guestfs-actions.pod:6868
17592 msgid "guestfs_utimens"
17593 msgstr ""
17594
17595 #. type: verbatim
17596 #: ../src/guestfs-actions.pod:6870
17597 #, no-wrap
17598 msgid ""
17599 " int\n"
17600 " guestfs_utimens (guestfs_h *g,\n"
17601 "                  const char *path,\n"
17602 "                  int64_t atsecs,\n"
17603 "                  int64_t atnsecs,\n"
17604 "                  int64_t mtsecs,\n"
17605 "                  int64_t mtnsecs);\n"
17606 "\n"
17607 msgstr ""
17608
17609 #. type: textblock
17610 #: ../src/guestfs-actions.pod:6878 ../fish/guestfish-actions.pod:4628
17611 msgid "This command sets the timestamps of a file with nanosecond precision."
17612 msgstr ""
17613
17614 #. type: textblock
17615 #: ../src/guestfs-actions.pod:6881 ../fish/guestfish-actions.pod:4631
17616 msgid ""
17617 "C<atsecs, atnsecs> are the last access time (atime) in secs and nanoseconds "
17618 "from the epoch."
17619 msgstr ""
17620
17621 #. type: textblock
17622 #: ../src/guestfs-actions.pod:6884 ../fish/guestfish-actions.pod:4634
17623 msgid ""
17624 "C<mtsecs, mtnsecs> are the last modification time (mtime) in secs and "
17625 "nanoseconds from the epoch."
17626 msgstr ""
17627
17628 #. type: textblock
17629 #: ../src/guestfs-actions.pod:6887 ../fish/guestfish-actions.pod:4637
17630 msgid ""
17631 "If the C<*nsecs> field contains the special value C<-1> then the "
17632 "corresponding timestamp is set to the current time.  (The C<*secs> field is "
17633 "ignored in this case)."
17634 msgstr ""
17635
17636 #. type: textblock
17637 #: ../src/guestfs-actions.pod:6891 ../fish/guestfish-actions.pod:4641
17638 msgid ""
17639 "If the C<*nsecs> field contains the special value C<-2> then the "
17640 "corresponding timestamp is left unchanged.  (The C<*secs> field is ignored "
17641 "in this case)."
17642 msgstr ""
17643
17644 #. type: =head2
17645 #: ../src/guestfs-actions.pod:6899 ../src/guestfs-structs.pod:175
17646 msgid "guestfs_version"
17647 msgstr ""
17648
17649 #. type: verbatim
17650 #: ../src/guestfs-actions.pod:6901
17651 #, no-wrap
17652 msgid ""
17653 " struct guestfs_version *\n"
17654 " guestfs_version (guestfs_h *g);\n"
17655 "\n"
17656 msgstr ""
17657
17658 #. type: textblock
17659 #: ../src/guestfs-actions.pod:6904 ../fish/guestfish-actions.pod:4649
17660 msgid ""
17661 "Return the libguestfs version number that the program is linked against."
17662 msgstr ""
17663
17664 #. type: textblock
17665 #: ../src/guestfs-actions.pod:6907 ../fish/guestfish-actions.pod:4652
17666 msgid ""
17667 "Note that because of dynamic linking this is not necessarily the version of "
17668 "libguestfs that you compiled against.  You can compile the program, and then "
17669 "at runtime dynamically link against a completely different C<libguestfs.so> "
17670 "library."
17671 msgstr ""
17672
17673 #. type: textblock
17674 #: ../src/guestfs-actions.pod:6912 ../fish/guestfish-actions.pod:4657
17675 msgid ""
17676 "This call was added in version C<1.0.58>.  In previous versions of "
17677 "libguestfs there was no way to get the version number.  From C code you can "
17678 "use dynamic linker functions to find out if this symbol exists (if it "
17679 "doesn't, then it's an earlier version)."
17680 msgstr ""
17681
17682 #. type: textblock
17683 #: ../src/guestfs-actions.pod:6918 ../fish/guestfish-actions.pod:4663
17684 msgid ""
17685 "The call returns a structure with four elements.  The first three (C<major>, "
17686 "C<minor> and C<release>) are numbers and correspond to the usual version "
17687 "triplet.  The fourth element (C<extra>) is a string and is normally empty, "
17688 "but may be used for distro-specific information."
17689 msgstr ""
17690
17691 #. type: textblock
17692 #: ../src/guestfs-actions.pod:6924 ../fish/guestfish-actions.pod:4669
17693 msgid ""
17694 "To construct the original version string: C<$major.$minor.$release$extra>"
17695 msgstr ""
17696
17697 #. type: textblock
17698 #: ../src/guestfs-actions.pod:6927 ../fish/guestfish-actions.pod:4672
17699 msgid "See also: L<guestfs(3)/LIBGUESTFS VERSION NUMBERS>."
17700 msgstr ""
17701
17702 #. type: textblock
17703 #: ../src/guestfs-actions.pod:6929
17704 msgid ""
17705 "I<Note:> Don't use this call to test for availability of features.  In "
17706 "enterprise distributions we backport features from later versions into "
17707 "earlier versions, making this an unreliable way to test for features.  Use "
17708 "C<guestfs_available> instead."
17709 msgstr ""
17710
17711 #. type: textblock
17712 #: ../src/guestfs-actions.pod:6935
17713 msgid ""
17714 "This function returns a C<struct guestfs_version *>, or NULL if there was an "
17715 "error.  I<The caller must call C<guestfs_free_version> after use>."
17716 msgstr ""
17717
17718 #. type: textblock
17719 #: ../src/guestfs-actions.pod:6939
17720 msgid "(Added in 1.0.58)"
17721 msgstr ""
17722
17723 #. type: =head2
17724 #: ../src/guestfs-actions.pod:6941
17725 msgid "guestfs_vfs_label"
17726 msgstr ""
17727
17728 #. type: verbatim
17729 #: ../src/guestfs-actions.pod:6943
17730 #, no-wrap
17731 msgid ""
17732 " char *\n"
17733 " guestfs_vfs_label (guestfs_h *g,\n"
17734 "                    const char *device);\n"
17735 "\n"
17736 msgstr ""
17737
17738 #. type: textblock
17739 #: ../src/guestfs-actions.pod:6947 ../fish/guestfish-actions.pod:4684
17740 msgid "This returns the filesystem label of the filesystem on C<device>."
17741 msgstr ""
17742
17743 #. type: textblock
17744 #: ../src/guestfs-actions.pod:6950 ../fish/guestfish-actions.pod:4687
17745 msgid "If the filesystem is unlabeled, this returns the empty string."
17746 msgstr ""
17747
17748 #. type: textblock
17749 #: ../src/guestfs-actions.pod:6952
17750 msgid "To find a filesystem from the label, use C<guestfs_findfs_label>."
17751 msgstr ""
17752
17753 #. type: textblock
17754 #: ../src/guestfs-actions.pod:6957 ../src/guestfs-actions.pod:6994
17755 msgid "(Added in 1.3.18)"
17756 msgstr ""
17757
17758 #. type: =head2
17759 #: ../src/guestfs-actions.pod:6959
17760 msgid "guestfs_vfs_type"
17761 msgstr ""
17762
17763 #. type: verbatim
17764 #: ../src/guestfs-actions.pod:6961
17765 #, no-wrap
17766 msgid ""
17767 " char *\n"
17768 " guestfs_vfs_type (guestfs_h *g,\n"
17769 "                   const char *device);\n"
17770 "\n"
17771 msgstr ""
17772
17773 #. type: textblock
17774 #: ../src/guestfs-actions.pod:6965 ../fish/guestfish-actions.pod:4695
17775 msgid ""
17776 "This command gets the filesystem type corresponding to the filesystem on "
17777 "C<device>."
17778 msgstr ""
17779
17780 #. type: textblock
17781 #: ../src/guestfs-actions.pod:6968 ../fish/guestfish-actions.pod:4698
17782 msgid ""
17783 "For most filesystems, the result is the name of the Linux VFS module which "
17784 "would be used to mount this filesystem if you mounted it without specifying "
17785 "the filesystem type.  For example a string such as C<ext3> or C<ntfs>."
17786 msgstr ""
17787
17788 #. type: =head2
17789 #: ../src/guestfs-actions.pod:6978
17790 msgid "guestfs_vfs_uuid"
17791 msgstr ""
17792
17793 #. type: verbatim
17794 #: ../src/guestfs-actions.pod:6980
17795 #, no-wrap
17796 msgid ""
17797 " char *\n"
17798 " guestfs_vfs_uuid (guestfs_h *g,\n"
17799 "                   const char *device);\n"
17800 "\n"
17801 msgstr ""
17802
17803 #. type: textblock
17804 #: ../src/guestfs-actions.pod:6984 ../fish/guestfish-actions.pod:4707
17805 msgid "This returns the filesystem UUID of the filesystem on C<device>."
17806 msgstr ""
17807
17808 #. type: textblock
17809 #: ../src/guestfs-actions.pod:6987 ../fish/guestfish-actions.pod:4710
17810 msgid "If the filesystem does not have a UUID, this returns the empty string."
17811 msgstr ""
17812
17813 #. type: textblock
17814 #: ../src/guestfs-actions.pod:6989
17815 msgid "To find a filesystem from the UUID, use C<guestfs_findfs_uuid>."
17816 msgstr ""
17817
17818 #. type: =head2
17819 #: ../src/guestfs-actions.pod:6996
17820 msgid "guestfs_vg_activate"
17821 msgstr ""
17822
17823 #. type: verbatim
17824 #: ../src/guestfs-actions.pod:6998
17825 #, no-wrap
17826 msgid ""
17827 " int\n"
17828 " guestfs_vg_activate (guestfs_h *g,\n"
17829 "                      int activate,\n"
17830 "                      char *const *volgroups);\n"
17831 "\n"
17832 msgstr ""
17833
17834 #. type: textblock
17835 #: ../src/guestfs-actions.pod:7003 ../fish/guestfish-actions.pod:4718
17836 msgid ""
17837 "This command activates or (if C<activate> is false) deactivates all logical "
17838 "volumes in the listed volume groups C<volgroups>.  If activated, then they "
17839 "are made known to the kernel, ie. they appear as C</dev/mapper> devices.  If "
17840 "deactivated, then those devices disappear."
17841 msgstr ""
17842
17843 #. type: textblock
17844 #: ../src/guestfs-actions.pod:7009 ../fish/guestfish-actions.pod:4724
17845 msgid "This command is the same as running C<vgchange -a y|n volgroups...>"
17846 msgstr ""
17847
17848 #. type: textblock
17849 #: ../src/guestfs-actions.pod:7011 ../fish/guestfish-actions.pod:4726
17850 msgid ""
17851 "Note that if C<volgroups> is an empty list then B<all> volume groups are "
17852 "activated or deactivated."
17853 msgstr ""
17854
17855 #. type: =head2
17856 #: ../src/guestfs-actions.pod:7018
17857 msgid "guestfs_vg_activate_all"
17858 msgstr ""
17859
17860 #. type: verbatim
17861 #: ../src/guestfs-actions.pod:7020
17862 #, no-wrap
17863 msgid ""
17864 " int\n"
17865 " guestfs_vg_activate_all (guestfs_h *g,\n"
17866 "                          int activate);\n"
17867 "\n"
17868 msgstr ""
17869
17870 #. type: textblock
17871 #: ../src/guestfs-actions.pod:7024 ../fish/guestfish-actions.pod:4733
17872 msgid ""
17873 "This command activates or (if C<activate> is false) deactivates all logical "
17874 "volumes in all volume groups.  If activated, then they are made known to the "
17875 "kernel, ie. they appear as C</dev/mapper> devices.  If deactivated, then "
17876 "those devices disappear."
17877 msgstr ""
17878
17879 #. type: textblock
17880 #: ../src/guestfs-actions.pod:7030 ../fish/guestfish-actions.pod:4739
17881 msgid "This command is the same as running C<vgchange -a y|n>"
17882 msgstr ""
17883
17884 #. type: =head2
17885 #: ../src/guestfs-actions.pod:7036
17886 msgid "guestfs_vgcreate"
17887 msgstr ""
17888
17889 #. type: verbatim
17890 #: ../src/guestfs-actions.pod:7038
17891 #, no-wrap
17892 msgid ""
17893 " int\n"
17894 " guestfs_vgcreate (guestfs_h *g,\n"
17895 "                   const char *volgroup,\n"
17896 "                   char *const *physvols);\n"
17897 "\n"
17898 msgstr ""
17899
17900 #. type: textblock
17901 #: ../src/guestfs-actions.pod:7043 ../fish/guestfish-actions.pod:4745
17902 msgid ""
17903 "This creates an LVM volume group called C<volgroup> from the non-empty list "
17904 "of physical volumes C<physvols>."
17905 msgstr ""
17906
17907 #. type: =head2
17908 #: ../src/guestfs-actions.pod:7050
17909 msgid "guestfs_vglvuuids"
17910 msgstr ""
17911
17912 #. type: verbatim
17913 #: ../src/guestfs-actions.pod:7052
17914 #, no-wrap
17915 msgid ""
17916 " char **\n"
17917 " guestfs_vglvuuids (guestfs_h *g,\n"
17918 "                    const char *vgname);\n"
17919 "\n"
17920 msgstr ""
17921
17922 #. type: textblock
17923 #: ../src/guestfs-actions.pod:7056 ../fish/guestfish-actions.pod:4752
17924 msgid ""
17925 "Given a VG called C<vgname>, this returns the UUIDs of all the logical "
17926 "volumes created in this volume group."
17927 msgstr ""
17928
17929 #. type: textblock
17930 #: ../src/guestfs-actions.pod:7059
17931 msgid ""
17932 "You can use this along with C<guestfs_lvs> and C<guestfs_lvuuid> calls to "
17933 "associate logical volumes and volume groups."
17934 msgstr ""
17935
17936 #. type: textblock
17937 #: ../src/guestfs-actions.pod:7062
17938 msgid "See also C<guestfs_vgpvuuids>."
17939 msgstr ""
17940
17941 #. type: =head2
17942 #: ../src/guestfs-actions.pod:7070
17943 msgid "guestfs_vgpvuuids"
17944 msgstr ""
17945
17946 #. type: verbatim
17947 #: ../src/guestfs-actions.pod:7072
17948 #, no-wrap
17949 msgid ""
17950 " char **\n"
17951 " guestfs_vgpvuuids (guestfs_h *g,\n"
17952 "                    const char *vgname);\n"
17953 "\n"
17954 msgstr ""
17955
17956 #. type: textblock
17957 #: ../src/guestfs-actions.pod:7076 ../fish/guestfish-actions.pod:4764
17958 msgid ""
17959 "Given a VG called C<vgname>, this returns the UUIDs of all the physical "
17960 "volumes that this volume group resides on."
17961 msgstr ""
17962
17963 #. type: textblock
17964 #: ../src/guestfs-actions.pod:7079
17965 msgid ""
17966 "You can use this along with C<guestfs_pvs> and C<guestfs_pvuuid> calls to "
17967 "associate physical volumes and volume groups."
17968 msgstr ""
17969
17970 #. type: textblock
17971 #: ../src/guestfs-actions.pod:7082
17972 msgid "See also C<guestfs_vglvuuids>."
17973 msgstr ""
17974
17975 #. type: =head2
17976 #: ../src/guestfs-actions.pod:7090
17977 msgid "guestfs_vgremove"
17978 msgstr ""
17979
17980 #. type: verbatim
17981 #: ../src/guestfs-actions.pod:7092
17982 #, no-wrap
17983 msgid ""
17984 " int\n"
17985 " guestfs_vgremove (guestfs_h *g,\n"
17986 "                   const char *vgname);\n"
17987 "\n"
17988 msgstr ""
17989
17990 #. type: textblock
17991 #: ../src/guestfs-actions.pod:7096 ../fish/guestfish-actions.pod:4776
17992 msgid "Remove an LVM volume group C<vgname>, (for example C<VG>)."
17993 msgstr ""
17994
17995 #. type: textblock
17996 #: ../src/guestfs-actions.pod:7098 ../fish/guestfish-actions.pod:4778
17997 msgid ""
17998 "This also forcibly removes all logical volumes in the volume group (if any)."
17999 msgstr ""
18000
18001 #. type: =head2
18002 #: ../src/guestfs-actions.pod:7105
18003 msgid "guestfs_vgrename"
18004 msgstr ""
18005
18006 #. type: verbatim
18007 #: ../src/guestfs-actions.pod:7107
18008 #, no-wrap
18009 msgid ""
18010 " int\n"
18011 " guestfs_vgrename (guestfs_h *g,\n"
18012 "                   const char *volgroup,\n"
18013 "                   const char *newvolgroup);\n"
18014 "\n"
18015 msgstr ""
18016
18017 #. type: textblock
18018 #: ../src/guestfs-actions.pod:7112 ../fish/guestfish-actions.pod:4785
18019 msgid "Rename a volume group C<volgroup> with the new name C<newvolgroup>."
18020 msgstr ""
18021
18022 #. type: =head2
18023 #: ../src/guestfs-actions.pod:7118
18024 msgid "guestfs_vgs"
18025 msgstr ""
18026
18027 #. type: verbatim
18028 #: ../src/guestfs-actions.pod:7120
18029 #, no-wrap
18030 msgid ""
18031 " char **\n"
18032 " guestfs_vgs (guestfs_h *g);\n"
18033 "\n"
18034 msgstr ""
18035
18036 #. type: textblock
18037 #: ../src/guestfs-actions.pod:7123 ../fish/guestfish-actions.pod:4791
18038 msgid ""
18039 "List all the volumes groups detected.  This is the equivalent of the L<vgs(8)"
18040 "> command."
18041 msgstr ""
18042
18043 #. type: textblock
18044 #: ../src/guestfs-actions.pod:7126 ../fish/guestfish-actions.pod:4794
18045 msgid ""
18046 "This returns a list of just the volume group names that were detected (eg. "
18047 "C<VolGroup00>)."
18048 msgstr ""
18049
18050 #. type: textblock
18051 #: ../src/guestfs-actions.pod:7129
18052 msgid "See also C<guestfs_vgs_full>."
18053 msgstr ""
18054
18055 #. type: =head2
18056 #: ../src/guestfs-actions.pod:7137
18057 msgid "guestfs_vgs_full"
18058 msgstr ""
18059
18060 #. type: verbatim
18061 #: ../src/guestfs-actions.pod:7139
18062 #, no-wrap
18063 msgid ""
18064 " struct guestfs_lvm_vg_list *\n"
18065 " guestfs_vgs_full (guestfs_h *g);\n"
18066 "\n"
18067 msgstr ""
18068
18069 #. type: textblock
18070 #: ../src/guestfs-actions.pod:7142 ../fish/guestfish-actions.pod:4803
18071 msgid ""
18072 "List all the volumes groups detected.  This is the equivalent of the L<vgs(8)"
18073 "> command.  The \"full\" version includes all fields."
18074 msgstr ""
18075
18076 #. type: textblock
18077 #: ../src/guestfs-actions.pod:7145
18078 msgid ""
18079 "This function returns a C<struct guestfs_lvm_vg_list *>, or NULL if there "
18080 "was an error.  I<The caller must call C<guestfs_free_lvm_vg_list> after use>."
18081 msgstr ""
18082
18083 #. type: =head2
18084 #: ../src/guestfs-actions.pod:7151
18085 msgid "guestfs_vgscan"
18086 msgstr ""
18087
18088 #. type: verbatim
18089 #: ../src/guestfs-actions.pod:7153
18090 #, no-wrap
18091 msgid ""
18092 " int\n"
18093 " guestfs_vgscan (guestfs_h *g);\n"
18094 "\n"
18095 msgstr ""
18096
18097 #. type: textblock
18098 #: ../src/guestfs-actions.pod:7156 ../fish/guestfish-actions.pod:4810
18099 msgid ""
18100 "This rescans all block devices and rebuilds the list of LVM physical "
18101 "volumes, volume groups and logical volumes."
18102 msgstr ""
18103
18104 #. type: =head2
18105 #: ../src/guestfs-actions.pod:7163
18106 msgid "guestfs_vguuid"
18107 msgstr ""
18108
18109 #. type: verbatim
18110 #: ../src/guestfs-actions.pod:7165
18111 #, no-wrap
18112 msgid ""
18113 " char *\n"
18114 " guestfs_vguuid (guestfs_h *g,\n"
18115 "                 const char *vgname);\n"
18116 "\n"
18117 msgstr ""
18118
18119 #. type: textblock
18120 #: ../src/guestfs-actions.pod:7169 ../fish/guestfish-actions.pod:4817
18121 msgid "This command returns the UUID of the LVM VG named C<vgname>."
18122 msgstr ""
18123
18124 #. type: =head2
18125 #: ../src/guestfs-actions.pod:7176
18126 msgid "guestfs_wait_ready"
18127 msgstr ""
18128
18129 #. type: verbatim
18130 #: ../src/guestfs-actions.pod:7178
18131 #, no-wrap
18132 msgid ""
18133 " int\n"
18134 " guestfs_wait_ready (guestfs_h *g);\n"
18135 "\n"
18136 msgstr ""
18137
18138 #. type: textblock
18139 #: ../src/guestfs-actions.pod:7181
18140 msgid "This function is a no op."
18141 msgstr ""
18142
18143 #. type: textblock
18144 #: ../src/guestfs-actions.pod:7183
18145 msgid ""
18146 "In versions of the API E<lt> 1.0.71 you had to call this function just after "
18147 "calling C<guestfs_launch> to wait for the launch to complete.  However this "
18148 "is no longer necessary because C<guestfs_launch> now does the waiting."
18149 msgstr ""
18150
18151 #. type: textblock
18152 #: ../src/guestfs-actions.pod:7188
18153 msgid ""
18154 "If you see any calls to this function in code then you can just remove them, "
18155 "unless you want to retain compatibility with older versions of the API."
18156 msgstr ""
18157
18158 #. type: =head2
18159 #: ../src/guestfs-actions.pod:7196
18160 msgid "guestfs_wc_c"
18161 msgstr ""
18162
18163 #. type: verbatim
18164 #: ../src/guestfs-actions.pod:7198
18165 #, no-wrap
18166 msgid ""
18167 " int\n"
18168 " guestfs_wc_c (guestfs_h *g,\n"
18169 "               const char *path);\n"
18170 "\n"
18171 msgstr ""
18172
18173 #. type: textblock
18174 #: ../src/guestfs-actions.pod:7202 ../fish/guestfish-actions.pod:4823
18175 msgid ""
18176 "This command counts the characters in a file, using the C<wc -c> external "
18177 "command."
18178 msgstr ""
18179
18180 #. type: =head2
18181 #: ../src/guestfs-actions.pod:7209
18182 msgid "guestfs_wc_l"
18183 msgstr ""
18184
18185 #. type: verbatim
18186 #: ../src/guestfs-actions.pod:7211
18187 #, no-wrap
18188 msgid ""
18189 " int\n"
18190 " guestfs_wc_l (guestfs_h *g,\n"
18191 "               const char *path);\n"
18192 "\n"
18193 msgstr ""
18194
18195 #. type: textblock
18196 #: ../src/guestfs-actions.pod:7215 ../fish/guestfish-actions.pod:4830
18197 msgid ""
18198 "This command counts the lines in a file, using the C<wc -l> external command."
18199 msgstr ""
18200
18201 #. type: =head2
18202 #: ../src/guestfs-actions.pod:7222
18203 msgid "guestfs_wc_w"
18204 msgstr ""
18205
18206 #. type: verbatim
18207 #: ../src/guestfs-actions.pod:7224
18208 #, no-wrap
18209 msgid ""
18210 " int\n"
18211 " guestfs_wc_w (guestfs_h *g,\n"
18212 "               const char *path);\n"
18213 "\n"
18214 msgstr ""
18215
18216 #. type: textblock
18217 #: ../src/guestfs-actions.pod:7228 ../fish/guestfish-actions.pod:4837
18218 msgid ""
18219 "This command counts the words in a file, using the C<wc -w> external command."
18220 msgstr ""
18221
18222 #. type: =head2
18223 #: ../src/guestfs-actions.pod:7235
18224 msgid "guestfs_write"
18225 msgstr ""
18226
18227 #. type: verbatim
18228 #: ../src/guestfs-actions.pod:7237
18229 #, no-wrap
18230 msgid ""
18231 " int\n"
18232 " guestfs_write (guestfs_h *g,\n"
18233 "                const char *path,\n"
18234 "                const char *content,\n"
18235 "                size_t content_size);\n"
18236 "\n"
18237 msgstr ""
18238
18239 #. type: textblock
18240 #: ../src/guestfs-actions.pod:7243 ../fish/guestfish-actions.pod:4844
18241 msgid ""
18242 "This call creates a file called C<path>.  The content of the file is the "
18243 "string C<content> (which can contain any 8 bit data)."
18244 msgstr ""
18245
18246 #. type: =head2
18247 #: ../src/guestfs-actions.pod:7253
18248 msgid "guestfs_write_file"
18249 msgstr ""
18250
18251 #. type: verbatim
18252 #: ../src/guestfs-actions.pod:7255
18253 #, no-wrap
18254 msgid ""
18255 " int\n"
18256 " guestfs_write_file (guestfs_h *g,\n"
18257 "                     const char *path,\n"
18258 "                     const char *content,\n"
18259 "                     int size);\n"
18260 "\n"
18261 msgstr ""
18262
18263 #. type: textblock
18264 #: ../src/guestfs-actions.pod:7261 ../fish/guestfish-actions.pod:4854
18265 msgid ""
18266 "This call creates a file called C<path>.  The contents of the file is the "
18267 "string C<content> (which can contain any 8 bit data), with length C<size>."
18268 msgstr ""
18269
18270 #. type: textblock
18271 #: ../src/guestfs-actions.pod:7265 ../fish/guestfish-actions.pod:4858
18272 msgid ""
18273 "As a special case, if C<size> is C<0> then the length is calculated using "
18274 "C<strlen> (so in this case the content cannot contain embedded ASCII NULs)."
18275 msgstr ""
18276
18277 #. type: textblock
18278 #: ../src/guestfs-actions.pod:7269 ../fish/guestfish-actions.pod:4862
18279 msgid ""
18280 "I<NB.> Owing to a bug, writing content containing ASCII NUL characters does "
18281 "I<not> work, even if the length is specified."
18282 msgstr ""
18283
18284 #. type: textblock
18285 #: ../src/guestfs-actions.pod:7277 ../fish/guestfish-actions.pod:4868
18286 msgid ""
18287 "This function is deprecated.  In new code, use the C<write> call instead."
18288 msgstr ""
18289
18290 #. type: =head2
18291 #: ../src/guestfs-actions.pod:7286
18292 msgid "guestfs_zegrep"
18293 msgstr ""
18294
18295 #. type: verbatim
18296 #: ../src/guestfs-actions.pod:7288
18297 #, no-wrap
18298 msgid ""
18299 " char **\n"
18300 " guestfs_zegrep (guestfs_h *g,\n"
18301 "                 const char *regex,\n"
18302 "                 const char *path);\n"
18303 "\n"
18304 msgstr ""
18305
18306 #. type: textblock
18307 #: ../src/guestfs-actions.pod:7293 ../fish/guestfish-actions.pod:4879
18308 msgid ""
18309 "This calls the external C<zegrep> program and returns the matching lines."
18310 msgstr ""
18311
18312 #. type: =head2
18313 #: ../src/guestfs-actions.pod:7305
18314 msgid "guestfs_zegrepi"
18315 msgstr ""
18316
18317 #. type: verbatim
18318 #: ../src/guestfs-actions.pod:7307
18319 #, no-wrap
18320 msgid ""
18321 " char **\n"
18322 " guestfs_zegrepi (guestfs_h *g,\n"
18323 "                  const char *regex,\n"
18324 "                  const char *path);\n"
18325 "\n"
18326 msgstr ""
18327
18328 #. type: textblock
18329 #: ../src/guestfs-actions.pod:7312 ../fish/guestfish-actions.pod:4889
18330 msgid ""
18331 "This calls the external C<zegrep -i> program and returns the matching lines."
18332 msgstr ""
18333
18334 #. type: =head2
18335 #: ../src/guestfs-actions.pod:7324
18336 msgid "guestfs_zero"
18337 msgstr ""
18338
18339 #. type: verbatim
18340 #: ../src/guestfs-actions.pod:7326
18341 #, no-wrap
18342 msgid ""
18343 " int\n"
18344 " guestfs_zero (guestfs_h *g,\n"
18345 "               const char *device);\n"
18346 "\n"
18347 msgstr ""
18348
18349 #. type: textblock
18350 #: ../src/guestfs-actions.pod:7330 ../fish/guestfish-actions.pod:4899
18351 msgid "This command writes zeroes over the first few blocks of C<device>."
18352 msgstr ""
18353
18354 #. type: textblock
18355 #: ../src/guestfs-actions.pod:7332 ../fish/guestfish-actions.pod:4901
18356 msgid ""
18357 "How many blocks are zeroed isn't specified (but it's I<not> enough to "
18358 "securely wipe the device).  It should be sufficient to remove any partition "
18359 "tables, filesystem superblocks and so on."
18360 msgstr ""
18361
18362 #. type: textblock
18363 #: ../src/guestfs-actions.pod:7336
18364 msgid "See also: C<guestfs_zero_device>, C<guestfs_scrub_device>."
18365 msgstr ""
18366
18367 #. type: =head2
18368 #: ../src/guestfs-actions.pod:7347
18369 msgid "guestfs_zero_device"
18370 msgstr ""
18371
18372 #. type: verbatim
18373 #: ../src/guestfs-actions.pod:7349
18374 #, no-wrap
18375 msgid ""
18376 " int\n"
18377 " guestfs_zero_device (guestfs_h *g,\n"
18378 "                      const char *device);\n"
18379 "\n"
18380 msgstr ""
18381
18382 #. type: textblock
18383 #: ../src/guestfs-actions.pod:7353
18384 msgid ""
18385 "This command writes zeroes over the entire C<device>.  Compare with "
18386 "C<guestfs_zero> which just zeroes the first few blocks of a device."
18387 msgstr ""
18388
18389 #. type: textblock
18390 #: ../src/guestfs-actions.pod:7367
18391 msgid "(Added in 1.3.1)"
18392 msgstr ""
18393
18394 #. type: =head2
18395 #: ../src/guestfs-actions.pod:7369
18396 msgid "guestfs_zerofree"
18397 msgstr ""
18398
18399 #. type: verbatim
18400 #: ../src/guestfs-actions.pod:7371
18401 #, no-wrap
18402 msgid ""
18403 " int\n"
18404 " guestfs_zerofree (guestfs_h *g,\n"
18405 "                   const char *device);\n"
18406 "\n"
18407 msgstr ""
18408
18409 #. type: textblock
18410 #: ../src/guestfs-actions.pod:7375 ../fish/guestfish-actions.pod:4922
18411 msgid ""
18412 "This runs the I<zerofree> program on C<device>.  This program claims to zero "
18413 "unused inodes and disk blocks on an ext2/3 filesystem, thus making it "
18414 "possible to compress the filesystem more effectively."
18415 msgstr ""
18416
18417 #. type: textblock
18418 #: ../src/guestfs-actions.pod:7380 ../fish/guestfish-actions.pod:4927
18419 msgid "You should B<not> run this program if the filesystem is mounted."
18420 msgstr ""
18421
18422 #. type: textblock
18423 #: ../src/guestfs-actions.pod:7383 ../fish/guestfish-actions.pod:4930
18424 msgid ""
18425 "It is possible that using this program can damage the filesystem or data on "
18426 "the filesystem."
18427 msgstr ""
18428
18429 #. type: =head2
18430 #: ../src/guestfs-actions.pod:7390
18431 msgid "guestfs_zfgrep"
18432 msgstr ""
18433
18434 #. type: verbatim
18435 #: ../src/guestfs-actions.pod:7392
18436 #, no-wrap
18437 msgid ""
18438 " char **\n"
18439 " guestfs_zfgrep (guestfs_h *g,\n"
18440 "                 const char *pattern,\n"
18441 "                 const char *path);\n"
18442 "\n"
18443 msgstr ""
18444
18445 #. type: textblock
18446 #: ../src/guestfs-actions.pod:7397 ../fish/guestfish-actions.pod:4937
18447 msgid ""
18448 "This calls the external C<zfgrep> program and returns the matching lines."
18449 msgstr ""
18450
18451 #. type: =head2
18452 #: ../src/guestfs-actions.pod:7409
18453 msgid "guestfs_zfgrepi"
18454 msgstr ""
18455
18456 #. type: verbatim
18457 #: ../src/guestfs-actions.pod:7411
18458 #, no-wrap
18459 msgid ""
18460 " char **\n"
18461 " guestfs_zfgrepi (guestfs_h *g,\n"
18462 "                  const char *pattern,\n"
18463 "                  const char *path);\n"
18464 "\n"
18465 msgstr ""
18466
18467 #. type: textblock
18468 #: ../src/guestfs-actions.pod:7416 ../fish/guestfish-actions.pod:4947
18469 msgid ""
18470 "This calls the external C<zfgrep -i> program and returns the matching lines."
18471 msgstr ""
18472
18473 #. type: =head2
18474 #: ../src/guestfs-actions.pod:7428
18475 msgid "guestfs_zfile"
18476 msgstr ""
18477
18478 #. type: verbatim
18479 #: ../src/guestfs-actions.pod:7430
18480 #, no-wrap
18481 msgid ""
18482 " char *\n"
18483 " guestfs_zfile (guestfs_h *g,\n"
18484 "                const char *meth,\n"
18485 "                const char *path);\n"
18486 "\n"
18487 msgstr ""
18488
18489 #. type: textblock
18490 #: ../src/guestfs-actions.pod:7435 ../fish/guestfish-actions.pod:4957
18491 msgid ""
18492 "This command runs C<file> after first decompressing C<path> using C<method>."
18493 msgstr ""
18494
18495 #. type: textblock
18496 #: ../src/guestfs-actions.pod:7438 ../fish/guestfish-actions.pod:4960
18497 msgid "C<method> must be one of C<gzip>, C<compress> or C<bzip2>."
18498 msgstr ""
18499
18500 #. type: textblock
18501 #: ../src/guestfs-actions.pod:7440
18502 msgid ""
18503 "Since 1.0.63, use C<guestfs_file> instead which can now process compressed "
18504 "files."
18505 msgstr ""
18506
18507 #. type: textblock
18508 #: ../src/guestfs-actions.pod:7446 ../fish/guestfish-actions.pod:4965
18509 msgid ""
18510 "This function is deprecated.  In new code, use the C<file> call instead."
18511 msgstr ""
18512
18513 #. type: =head2
18514 #: ../src/guestfs-actions.pod:7455
18515 msgid "guestfs_zgrep"
18516 msgstr ""
18517
18518 #. type: verbatim
18519 #: ../src/guestfs-actions.pod:7457
18520 #, no-wrap
18521 msgid ""
18522 " char **\n"
18523 " guestfs_zgrep (guestfs_h *g,\n"
18524 "                const char *regex,\n"
18525 "                const char *path);\n"
18526 "\n"
18527 msgstr ""
18528
18529 #. type: textblock
18530 #: ../src/guestfs-actions.pod:7462 ../fish/guestfish-actions.pod:4976
18531 msgid ""
18532 "This calls the external C<zgrep> program and returns the matching lines."
18533 msgstr ""
18534
18535 #. type: =head2
18536 #: ../src/guestfs-actions.pod:7474
18537 msgid "guestfs_zgrepi"
18538 msgstr ""
18539
18540 #. type: verbatim
18541 #: ../src/guestfs-actions.pod:7476
18542 #, no-wrap
18543 msgid ""
18544 " char **\n"
18545 " guestfs_zgrepi (guestfs_h *g,\n"
18546 "                 const char *regex,\n"
18547 "                 const char *path);\n"
18548 "\n"
18549 msgstr ""
18550
18551 #. type: textblock
18552 #: ../src/guestfs-actions.pod:7481 ../fish/guestfish-actions.pod:4986
18553 msgid ""
18554 "This calls the external C<zgrep -i> program and returns the matching lines."
18555 msgstr ""
18556
18557 #. type: =item
18558 #: ../src/guestfs-availability.pod:3
18559 msgid "B<augeas>"
18560 msgstr ""
18561
18562 #. type: textblock
18563 #: ../src/guestfs-availability.pod:5
18564 msgid ""
18565 "The following functions: L</guestfs_aug_clear> L</guestfs_aug_close> L</"
18566 "guestfs_aug_defnode> L</guestfs_aug_defvar> L</guestfs_aug_get> L</"
18567 "guestfs_aug_init> L</guestfs_aug_insert> L</guestfs_aug_load> L</"
18568 "guestfs_aug_ls> L</guestfs_aug_match> L</guestfs_aug_mv> L</guestfs_aug_rm> "
18569 "L</guestfs_aug_save> L</guestfs_aug_set>"
18570 msgstr ""
18571
18572 #. type: =item
18573 #: ../src/guestfs-availability.pod:21
18574 msgid "B<inotify>"
18575 msgstr ""
18576
18577 #. type: textblock
18578 #: ../src/guestfs-availability.pod:23
18579 msgid ""
18580 "The following functions: L</guestfs_inotify_add_watch> L</"
18581 "guestfs_inotify_close> L</guestfs_inotify_files> L</guestfs_inotify_init> L</"
18582 "guestfs_inotify_read> L</guestfs_inotify_rm_watch>"
18583 msgstr ""
18584
18585 #. type: =item
18586 #: ../src/guestfs-availability.pod:31
18587 msgid "B<linuxfsuuid>"
18588 msgstr ""
18589
18590 #. type: textblock
18591 #: ../src/guestfs-availability.pod:33
18592 msgid ""
18593 "The following functions: L</guestfs_mke2fs_JU> L</guestfs_mke2journal_U> L</"
18594 "guestfs_mkswap_U> L</guestfs_swapoff_uuid> L</guestfs_swapon_uuid>"
18595 msgstr ""
18596
18597 #. type: =item
18598 #: ../src/guestfs-availability.pod:40
18599 msgid "B<linuxmodules>"
18600 msgstr ""
18601
18602 #. type: textblock
18603 #: ../src/guestfs-availability.pod:42
18604 msgid "The following functions: L</guestfs_modprobe>"
18605 msgstr ""
18606
18607 #. type: =item
18608 #: ../src/guestfs-availability.pod:45
18609 msgid "B<linuxxattrs>"
18610 msgstr ""
18611
18612 #. type: textblock
18613 #: ../src/guestfs-availability.pod:47
18614 msgid ""
18615 "The following functions: L</guestfs_getxattr> L</guestfs_getxattrs> L</"
18616 "guestfs_lgetxattr> L</guestfs_lgetxattrs> L</guestfs_lremovexattr> L</"
18617 "guestfs_lsetxattr> L</guestfs_lxattrlist> L</guestfs_removexattr> L</"
18618 "guestfs_setxattr>"
18619 msgstr ""
18620
18621 #. type: =item
18622 #: ../src/guestfs-availability.pod:58
18623 msgid "B<luks>"
18624 msgstr ""
18625
18626 #. type: textblock
18627 #: ../src/guestfs-availability.pod:60
18628 msgid ""
18629 "The following functions: L</guestfs_luks_add_key> L</guestfs_luks_close> L</"
18630 "guestfs_luks_format> L</guestfs_luks_format_cipher> L</"
18631 "guestfs_luks_kill_slot> L</guestfs_luks_open> L</guestfs_luks_open_ro>"
18632 msgstr ""
18633
18634 #. type: =item
18635 #: ../src/guestfs-availability.pod:69
18636 msgid "B<lvm2>"
18637 msgstr ""
18638
18639 #. type: textblock
18640 #: ../src/guestfs-availability.pod:71
18641 msgid ""
18642 "The following functions: L</guestfs_is_lv> L</guestfs_lvcreate> L</"
18643 "guestfs_lvm_remove_all> L</guestfs_lvm_set_filter> L</guestfs_lvremove> L</"
18644 "guestfs_lvresize> L</guestfs_lvresize_free> L</guestfs_lvs> L</"
18645 "guestfs_lvs_full> L</guestfs_pvcreate> L</guestfs_pvremove> L</"
18646 "guestfs_pvresize> L</guestfs_pvresize_size> L</guestfs_pvs> L</"
18647 "guestfs_pvs_full> L</guestfs_vg_activate> L</guestfs_vg_activate_all> L</"
18648 "guestfs_vgcreate> L</guestfs_vgremove> L</guestfs_vgs> L</guestfs_vgs_full>"
18649 msgstr ""
18650
18651 #. type: =item
18652 #: ../src/guestfs-availability.pod:94
18653 msgid "B<mknod>"
18654 msgstr ""
18655
18656 #. type: textblock
18657 #: ../src/guestfs-availability.pod:96
18658 msgid ""
18659 "The following functions: L</guestfs_mkfifo> L</guestfs_mknod> L</"
18660 "guestfs_mknod_b> L</guestfs_mknod_c>"
18661 msgstr ""
18662
18663 #. type: =item
18664 #: ../src/guestfs-availability.pod:102
18665 msgid "B<ntfs3g>"
18666 msgstr ""
18667
18668 #. type: textblock
18669 #: ../src/guestfs-availability.pod:104
18670 msgid "The following functions: L</guestfs_ntfs_3g_probe>"
18671 msgstr ""
18672
18673 #. type: =item
18674 #: ../src/guestfs-availability.pod:107
18675 msgid "B<ntfsprogs>"
18676 msgstr ""
18677
18678 #. type: textblock
18679 #: ../src/guestfs-availability.pod:109
18680 msgid ""
18681 "The following functions: L</guestfs_ntfsresize> L</guestfs_ntfsresize_size>"
18682 msgstr ""
18683
18684 #. type: =item
18685 #: ../src/guestfs-availability.pod:113
18686 msgid "B<realpath>"
18687 msgstr ""
18688
18689 #. type: textblock
18690 #: ../src/guestfs-availability.pod:115
18691 msgid "The following functions: L</guestfs_realpath>"
18692 msgstr ""
18693
18694 #. type: =item
18695 #: ../src/guestfs-availability.pod:118
18696 msgid "B<scrub>"
18697 msgstr ""
18698
18699 #. type: textblock
18700 #: ../src/guestfs-availability.pod:120
18701 msgid ""
18702 "The following functions: L</guestfs_scrub_device> L</guestfs_scrub_file> L</"
18703 "guestfs_scrub_freespace>"
18704 msgstr ""
18705
18706 #. type: =item
18707 #: ../src/guestfs-availability.pod:125
18708 msgid "B<selinux>"
18709 msgstr ""
18710
18711 #. type: textblock
18712 #: ../src/guestfs-availability.pod:127
18713 msgid "The following functions: L</guestfs_getcon> L</guestfs_setcon>"
18714 msgstr ""
18715
18716 #. type: =item
18717 #: ../src/guestfs-availability.pod:131
18718 msgid "B<xz>"
18719 msgstr ""
18720
18721 #. type: textblock
18722 #: ../src/guestfs-availability.pod:133
18723 msgid "The following functions: L</guestfs_txz_in> L</guestfs_txz_out>"
18724 msgstr ""
18725
18726 #. type: =item
18727 #: ../src/guestfs-availability.pod:137
18728 msgid "B<zerofree>"
18729 msgstr ""
18730
18731 #. type: textblock
18732 #: ../src/guestfs-availability.pod:139
18733 msgid "The following functions: L</guestfs_zerofree>"
18734 msgstr ""
18735
18736 #. type: =head2
18737 #: ../src/guestfs-structs.pod:1
18738 msgid "guestfs_int_bool"
18739 msgstr ""
18740
18741 #. type: verbatim
18742 #: ../src/guestfs-structs.pod:3
18743 #, no-wrap
18744 msgid ""
18745 " struct guestfs_int_bool {\n"
18746 "   int32_t i;\n"
18747 "   int32_t b;\n"
18748 " };\n"
18749 " \n"
18750 msgstr ""
18751
18752 #. type: verbatim
18753 #: ../src/guestfs-structs.pod:8
18754 #, no-wrap
18755 msgid ""
18756 " struct guestfs_int_bool_list {\n"
18757 "   uint32_t len; /* Number of elements in list. */\n"
18758 "   struct guestfs_int_bool *val; /* Elements. */\n"
18759 " };\n"
18760 " \n"
18761 msgstr ""
18762
18763 #. type: verbatim
18764 #: ../src/guestfs-structs.pod:13
18765 #, no-wrap
18766 msgid ""
18767 " void guestfs_free_int_bool (struct guestfs_free_int_bool *);\n"
18768 " void guestfs_free_int_bool_list (struct guestfs_free_int_bool_list *);\n"
18769 "\n"
18770 msgstr ""
18771
18772 #. type: =head2
18773 #: ../src/guestfs-structs.pod:16
18774 msgid "guestfs_lvm_pv"
18775 msgstr ""
18776
18777 #. type: verbatim
18778 #: ../src/guestfs-structs.pod:18
18779 #, no-wrap
18780 msgid ""
18781 " struct guestfs_lvm_pv {\n"
18782 "   char *pv_name;\n"
18783 "   /* The next field is NOT nul-terminated, be careful when printing it: */\n"
18784 "   char pv_uuid[32];\n"
18785 "   char *pv_fmt;\n"
18786 "   uint64_t pv_size;\n"
18787 "   uint64_t dev_size;\n"
18788 "   uint64_t pv_free;\n"
18789 "   uint64_t pv_used;\n"
18790 "   char *pv_attr;\n"
18791 "   int64_t pv_pe_count;\n"
18792 "   int64_t pv_pe_alloc_count;\n"
18793 "   char *pv_tags;\n"
18794 "   uint64_t pe_start;\n"
18795 "   int64_t pv_mda_count;\n"
18796 "   uint64_t pv_mda_free;\n"
18797 " };\n"
18798 " \n"
18799 msgstr ""
18800
18801 #. type: verbatim
18802 #: ../src/guestfs-structs.pod:36
18803 #, no-wrap
18804 msgid ""
18805 " struct guestfs_lvm_pv_list {\n"
18806 "   uint32_t len; /* Number of elements in list. */\n"
18807 "   struct guestfs_lvm_pv *val; /* Elements. */\n"
18808 " };\n"
18809 " \n"
18810 msgstr ""
18811
18812 #. type: verbatim
18813 #: ../src/guestfs-structs.pod:41
18814 #, no-wrap
18815 msgid ""
18816 " void guestfs_free_lvm_pv (struct guestfs_free_lvm_pv *);\n"
18817 " void guestfs_free_lvm_pv_list (struct guestfs_free_lvm_pv_list *);\n"
18818 "\n"
18819 msgstr ""
18820
18821 #. type: =head2
18822 #: ../src/guestfs-structs.pod:44
18823 msgid "guestfs_lvm_vg"
18824 msgstr ""
18825
18826 #. type: verbatim
18827 #: ../src/guestfs-structs.pod:46
18828 #, no-wrap
18829 msgid ""
18830 " struct guestfs_lvm_vg {\n"
18831 "   char *vg_name;\n"
18832 "   /* The next field is NOT nul-terminated, be careful when printing it: */\n"
18833 "   char vg_uuid[32];\n"
18834 "   char *vg_fmt;\n"
18835 "   char *vg_attr;\n"
18836 "   uint64_t vg_size;\n"
18837 "   uint64_t vg_free;\n"
18838 "   char *vg_sysid;\n"
18839 "   uint64_t vg_extent_size;\n"
18840 "   int64_t vg_extent_count;\n"
18841 "   int64_t vg_free_count;\n"
18842 "   int64_t max_lv;\n"
18843 "   int64_t max_pv;\n"
18844 "   int64_t pv_count;\n"
18845 "   int64_t lv_count;\n"
18846 "   int64_t snap_count;\n"
18847 "   int64_t vg_seqno;\n"
18848 "   char *vg_tags;\n"
18849 "   int64_t vg_mda_count;\n"
18850 "   uint64_t vg_mda_free;\n"
18851 " };\n"
18852 " \n"
18853 msgstr ""
18854
18855 #. type: verbatim
18856 #: ../src/guestfs-structs.pod:69
18857 #, no-wrap
18858 msgid ""
18859 " struct guestfs_lvm_vg_list {\n"
18860 "   uint32_t len; /* Number of elements in list. */\n"
18861 "   struct guestfs_lvm_vg *val; /* Elements. */\n"
18862 " };\n"
18863 " \n"
18864 msgstr ""
18865
18866 #. type: verbatim
18867 #: ../src/guestfs-structs.pod:74
18868 #, no-wrap
18869 msgid ""
18870 " void guestfs_free_lvm_vg (struct guestfs_free_lvm_vg *);\n"
18871 " void guestfs_free_lvm_vg_list (struct guestfs_free_lvm_vg_list *);\n"
18872 "\n"
18873 msgstr ""
18874
18875 #. type: =head2
18876 #: ../src/guestfs-structs.pod:77
18877 msgid "guestfs_lvm_lv"
18878 msgstr ""
18879
18880 #. type: verbatim
18881 #: ../src/guestfs-structs.pod:79
18882 #, no-wrap
18883 msgid ""
18884 " struct guestfs_lvm_lv {\n"
18885 "   char *lv_name;\n"
18886 "   /* The next field is NOT nul-terminated, be careful when printing it: */\n"
18887 "   char lv_uuid[32];\n"
18888 "   char *lv_attr;\n"
18889 "   int64_t lv_major;\n"
18890 "   int64_t lv_minor;\n"
18891 "   int64_t lv_kernel_major;\n"
18892 "   int64_t lv_kernel_minor;\n"
18893 "   uint64_t lv_size;\n"
18894 "   int64_t seg_count;\n"
18895 "   char *origin;\n"
18896 "   /* The next field is [0..100] or -1 meaning 'not present': */\n"
18897 "   float snap_percent;\n"
18898 "   /* The next field is [0..100] or -1 meaning 'not present': */\n"
18899 "   float copy_percent;\n"
18900 "   char *move_pv;\n"
18901 "   char *lv_tags;\n"
18902 "   char *mirror_log;\n"
18903 "   char *modules;\n"
18904 " };\n"
18905 " \n"
18906 msgstr ""
18907
18908 #. type: verbatim
18909 #: ../src/guestfs-structs.pod:101
18910 #, no-wrap
18911 msgid ""
18912 " struct guestfs_lvm_lv_list {\n"
18913 "   uint32_t len; /* Number of elements in list. */\n"
18914 "   struct guestfs_lvm_lv *val; /* Elements. */\n"
18915 " };\n"
18916 " \n"
18917 msgstr ""
18918
18919 #. type: verbatim
18920 #: ../src/guestfs-structs.pod:106
18921 #, no-wrap
18922 msgid ""
18923 " void guestfs_free_lvm_lv (struct guestfs_free_lvm_lv *);\n"
18924 " void guestfs_free_lvm_lv_list (struct guestfs_free_lvm_lv_list *);\n"
18925 "\n"
18926 msgstr ""
18927
18928 #. type: verbatim
18929 #: ../src/guestfs-structs.pod:111
18930 #, no-wrap
18931 msgid ""
18932 " struct guestfs_stat {\n"
18933 "   int64_t dev;\n"
18934 "   int64_t ino;\n"
18935 "   int64_t mode;\n"
18936 "   int64_t nlink;\n"
18937 "   int64_t uid;\n"
18938 "   int64_t gid;\n"
18939 "   int64_t rdev;\n"
18940 "   int64_t size;\n"
18941 "   int64_t blksize;\n"
18942 "   int64_t blocks;\n"
18943 "   int64_t atime;\n"
18944 "   int64_t mtime;\n"
18945 "   int64_t ctime;\n"
18946 " };\n"
18947 " \n"
18948 msgstr ""
18949
18950 #. type: verbatim
18951 #: ../src/guestfs-structs.pod:127
18952 #, no-wrap
18953 msgid ""
18954 " struct guestfs_stat_list {\n"
18955 "   uint32_t len; /* Number of elements in list. */\n"
18956 "   struct guestfs_stat *val; /* Elements. */\n"
18957 " };\n"
18958 " \n"
18959 msgstr ""
18960
18961 #. type: verbatim
18962 #: ../src/guestfs-structs.pod:132
18963 #, no-wrap
18964 msgid ""
18965 " void guestfs_free_stat (struct guestfs_free_stat *);\n"
18966 " void guestfs_free_stat_list (struct guestfs_free_stat_list *);\n"
18967 "\n"
18968 msgstr ""
18969
18970 #. type: verbatim
18971 #: ../src/guestfs-structs.pod:137
18972 #, no-wrap
18973 msgid ""
18974 " struct guestfs_statvfs {\n"
18975 "   int64_t bsize;\n"
18976 "   int64_t frsize;\n"
18977 "   int64_t blocks;\n"
18978 "   int64_t bfree;\n"
18979 "   int64_t bavail;\n"
18980 "   int64_t files;\n"
18981 "   int64_t ffree;\n"
18982 "   int64_t favail;\n"
18983 "   int64_t fsid;\n"
18984 "   int64_t flag;\n"
18985 "   int64_t namemax;\n"
18986 " };\n"
18987 " \n"
18988 msgstr ""
18989
18990 #. type: verbatim
18991 #: ../src/guestfs-structs.pod:151
18992 #, no-wrap
18993 msgid ""
18994 " struct guestfs_statvfs_list {\n"
18995 "   uint32_t len; /* Number of elements in list. */\n"
18996 "   struct guestfs_statvfs *val; /* Elements. */\n"
18997 " };\n"
18998 " \n"
18999 msgstr ""
19000
19001 #. type: verbatim
19002 #: ../src/guestfs-structs.pod:156
19003 #, no-wrap
19004 msgid ""
19005 " void guestfs_free_statvfs (struct guestfs_free_statvfs *);\n"
19006 " void guestfs_free_statvfs_list (struct guestfs_free_statvfs_list *);\n"
19007 "\n"
19008 msgstr ""
19009
19010 #. type: =head2
19011 #: ../src/guestfs-structs.pod:159
19012 msgid "guestfs_dirent"
19013 msgstr ""
19014
19015 #. type: verbatim
19016 #: ../src/guestfs-structs.pod:161
19017 #, no-wrap
19018 msgid ""
19019 " struct guestfs_dirent {\n"
19020 "   int64_t ino;\n"
19021 "   char ftyp;\n"
19022 "   char *name;\n"
19023 " };\n"
19024 " \n"
19025 msgstr ""
19026
19027 #. type: verbatim
19028 #: ../src/guestfs-structs.pod:167
19029 #, no-wrap
19030 msgid ""
19031 " struct guestfs_dirent_list {\n"
19032 "   uint32_t len; /* Number of elements in list. */\n"
19033 "   struct guestfs_dirent *val; /* Elements. */\n"
19034 " };\n"
19035 " \n"
19036 msgstr ""
19037
19038 #. type: verbatim
19039 #: ../src/guestfs-structs.pod:172
19040 #, no-wrap
19041 msgid ""
19042 " void guestfs_free_dirent (struct guestfs_free_dirent *);\n"
19043 " void guestfs_free_dirent_list (struct guestfs_free_dirent_list *);\n"
19044 "\n"
19045 msgstr ""
19046
19047 #. type: verbatim
19048 #: ../src/guestfs-structs.pod:177
19049 #, no-wrap
19050 msgid ""
19051 " struct guestfs_version {\n"
19052 "   int64_t major;\n"
19053 "   int64_t minor;\n"
19054 "   int64_t release;\n"
19055 "   char *extra;\n"
19056 " };\n"
19057 " \n"
19058 msgstr ""
19059
19060 #. type: verbatim
19061 #: ../src/guestfs-structs.pod:184
19062 #, no-wrap
19063 msgid ""
19064 " struct guestfs_version_list {\n"
19065 "   uint32_t len; /* Number of elements in list. */\n"
19066 "   struct guestfs_version *val; /* Elements. */\n"
19067 " };\n"
19068 " \n"
19069 msgstr ""
19070
19071 #. type: verbatim
19072 #: ../src/guestfs-structs.pod:189
19073 #, no-wrap
19074 msgid ""
19075 " void guestfs_free_version (struct guestfs_free_version *);\n"
19076 " void guestfs_free_version_list (struct guestfs_free_version_list *);\n"
19077 "\n"
19078 msgstr ""
19079
19080 #. type: =head2
19081 #: ../src/guestfs-structs.pod:192
19082 msgid "guestfs_xattr"
19083 msgstr ""
19084
19085 #. type: verbatim
19086 #: ../src/guestfs-structs.pod:194
19087 #, no-wrap
19088 msgid ""
19089 " struct guestfs_xattr {\n"
19090 "   char *attrname;\n"
19091 "   /* The next two fields describe a byte array. */\n"
19092 "   uint32_t attrval_len;\n"
19093 "   char *attrval;\n"
19094 " };\n"
19095 " \n"
19096 msgstr ""
19097
19098 #. type: verbatim
19099 #: ../src/guestfs-structs.pod:201
19100 #, no-wrap
19101 msgid ""
19102 " struct guestfs_xattr_list {\n"
19103 "   uint32_t len; /* Number of elements in list. */\n"
19104 "   struct guestfs_xattr *val; /* Elements. */\n"
19105 " };\n"
19106 " \n"
19107 msgstr ""
19108
19109 #. type: verbatim
19110 #: ../src/guestfs-structs.pod:206
19111 #, no-wrap
19112 msgid ""
19113 " void guestfs_free_xattr (struct guestfs_free_xattr *);\n"
19114 " void guestfs_free_xattr_list (struct guestfs_free_xattr_list *);\n"
19115 "\n"
19116 msgstr ""
19117
19118 #. type: =head2
19119 #: ../src/guestfs-structs.pod:209
19120 msgid "guestfs_inotify_event"
19121 msgstr ""
19122
19123 #. type: verbatim
19124 #: ../src/guestfs-structs.pod:211
19125 #, no-wrap
19126 msgid ""
19127 " struct guestfs_inotify_event {\n"
19128 "   int64_t in_wd;\n"
19129 "   uint32_t in_mask;\n"
19130 "   uint32_t in_cookie;\n"
19131 "   char *in_name;\n"
19132 " };\n"
19133 " \n"
19134 msgstr ""
19135
19136 #. type: verbatim
19137 #: ../src/guestfs-structs.pod:218
19138 #, no-wrap
19139 msgid ""
19140 " struct guestfs_inotify_event_list {\n"
19141 "   uint32_t len; /* Number of elements in list. */\n"
19142 "   struct guestfs_inotify_event *val; /* Elements. */\n"
19143 " };\n"
19144 " \n"
19145 msgstr ""
19146
19147 #. type: verbatim
19148 #: ../src/guestfs-structs.pod:223
19149 #, no-wrap
19150 msgid ""
19151 " void guestfs_free_inotify_event (struct guestfs_free_inotify_event *);\n"
19152 " void guestfs_free_inotify_event_list (struct guestfs_free_inotify_event_list *);\n"
19153 "\n"
19154 msgstr ""
19155
19156 #. type: =head2
19157 #: ../src/guestfs-structs.pod:226
19158 msgid "guestfs_partition"
19159 msgstr ""
19160
19161 #. type: verbatim
19162 #: ../src/guestfs-structs.pod:228
19163 #, no-wrap
19164 msgid ""
19165 " struct guestfs_partition {\n"
19166 "   int32_t part_num;\n"
19167 "   uint64_t part_start;\n"
19168 "   uint64_t part_end;\n"
19169 "   uint64_t part_size;\n"
19170 " };\n"
19171 " \n"
19172 msgstr ""
19173
19174 #. type: verbatim
19175 #: ../src/guestfs-structs.pod:235
19176 #, no-wrap
19177 msgid ""
19178 " struct guestfs_partition_list {\n"
19179 "   uint32_t len; /* Number of elements in list. */\n"
19180 "   struct guestfs_partition *val; /* Elements. */\n"
19181 " };\n"
19182 " \n"
19183 msgstr ""
19184
19185 #. type: verbatim
19186 #: ../src/guestfs-structs.pod:240
19187 #, no-wrap
19188 msgid ""
19189 " void guestfs_free_partition (struct guestfs_free_partition *);\n"
19190 " void guestfs_free_partition_list (struct guestfs_free_partition_list *);\n"
19191 "\n"
19192 msgstr ""
19193
19194 #. type: =head2
19195 #: ../src/guestfs-structs.pod:243
19196 msgid "guestfs_application"
19197 msgstr ""
19198
19199 #. type: verbatim
19200 #: ../src/guestfs-structs.pod:245
19201 #, no-wrap
19202 msgid ""
19203 " struct guestfs_application {\n"
19204 "   char *app_name;\n"
19205 "   char *app_display_name;\n"
19206 "   int32_t app_epoch;\n"
19207 "   char *app_version;\n"
19208 "   char *app_release;\n"
19209 "   char *app_install_path;\n"
19210 "   char *app_trans_path;\n"
19211 "   char *app_publisher;\n"
19212 "   char *app_url;\n"
19213 "   char *app_source_package;\n"
19214 "   char *app_summary;\n"
19215 "   char *app_description;\n"
19216 " };\n"
19217 " \n"
19218 msgstr ""
19219
19220 #. type: verbatim
19221 #: ../src/guestfs-structs.pod:260
19222 #, no-wrap
19223 msgid ""
19224 " struct guestfs_application_list {\n"
19225 "   uint32_t len; /* Number of elements in list. */\n"
19226 "   struct guestfs_application *val; /* Elements. */\n"
19227 " };\n"
19228 " \n"
19229 msgstr ""
19230
19231 #. type: verbatim
19232 #: ../src/guestfs-structs.pod:265
19233 #, no-wrap
19234 msgid ""
19235 " void guestfs_free_application (struct guestfs_free_application *);\n"
19236 " void guestfs_free_application_list (struct guestfs_free_application_list *);\n"
19237 "\n"
19238 msgstr ""
19239
19240 #. type: textblock
19241 #: ../fish/guestfish.pod:5
19242 msgid "guestfish - the libguestfs Filesystem Interactive SHell"
19243 msgstr ""
19244
19245 #. type: verbatim
19246 #: ../fish/guestfish.pod:9
19247 #, no-wrap
19248 msgid ""
19249 " guestfish [--options] [commands]\n"
19250 "\n"
19251 msgstr ""
19252
19253 #. type: verbatim
19254 #: ../fish/guestfish.pod:11
19255 #, no-wrap
19256 msgid ""
19257 " guestfish\n"
19258 "\n"
19259 msgstr ""
19260
19261 #. type: verbatim
19262 #: ../fish/guestfish.pod:13
19263 #, no-wrap
19264 msgid ""
19265 " guestfish [--ro|--rw] -a disk.img\n"
19266 "\n"
19267 msgstr ""
19268
19269 #. type: verbatim
19270 #: ../fish/guestfish.pod:15
19271 #, no-wrap
19272 msgid ""
19273 " guestfish [--ro|--rw] -a disk.img -m dev[:mountpoint]\n"
19274 "\n"
19275 msgstr ""
19276
19277 #. type: verbatim
19278 #: ../fish/guestfish.pod:17
19279 #, no-wrap
19280 msgid ""
19281 " guestfish -d libvirt-domain\n"
19282 "\n"
19283 msgstr ""
19284
19285 #. type: verbatim
19286 #: ../fish/guestfish.pod:19
19287 #, no-wrap
19288 msgid ""
19289 " guestfish [--ro|--rw] -a disk.img -i\n"
19290 "\n"
19291 msgstr ""
19292
19293 #. type: verbatim
19294 #: ../fish/guestfish.pod:21
19295 #, no-wrap
19296 msgid ""
19297 " guestfish -d libvirt-domain -i\n"
19298 "\n"
19299 msgstr ""
19300
19301 #. type: =head1
19302 #: ../fish/guestfish.pod:23 ../fuse/guestmount.pod:15 ../tools/virt-edit.pl:44
19303 #: ../tools/virt-win-reg.pl:51 ../tools/virt-tar.pl:64
19304 msgid "WARNING"
19305 msgstr ""
19306
19307 #. type: textblock
19308 #: ../fish/guestfish.pod:25
19309 msgid ""
19310 "Using guestfish in read/write mode on live virtual machines can be "
19311 "dangerous, potentially causing disk corruption.  Use the I<--ro> (read-only) "
19312 "option to use guestfish safely if the disk image or virtual machine might be "
19313 "live."
19314 msgstr ""
19315
19316 #. type: textblock
19317 #: ../fish/guestfish.pod:32
19318 msgid ""
19319 "Guestfish is a shell and command-line tool for examining and modifying "
19320 "virtual machine filesystems.  It uses libguestfs and exposes all of the "
19321 "functionality of the guestfs API, see L<guestfs(3)>."
19322 msgstr ""
19323
19324 #. type: textblock
19325 #: ../fish/guestfish.pod:36
19326 msgid ""
19327 "Guestfish gives you structured access to the libguestfs API, from shell "
19328 "scripts or the command line or interactively.  If you want to rescue a "
19329 "broken virtual machine image, you should look at the L<virt-rescue(1)> "
19330 "command."
19331 msgstr ""
19332
19333 #. type: =head1
19334 #: ../fish/guestfish.pod:41 ../fish/guestfish.pod:949
19335 #: ../fuse/guestmount.pod:39 ../tools/virt-edit.pl:63 ../tools/virt-tar.pl:50
19336 msgid "EXAMPLES"
19337 msgstr ""
19338
19339 #. type: =head2
19340 #: ../fish/guestfish.pod:43
19341 msgid "As an interactive shell"
19342 msgstr ""
19343
19344 #. type: verbatim
19345 #: ../fish/guestfish.pod:45
19346 #, no-wrap
19347 msgid ""
19348 " $ guestfish\n"
19349 " \n"
19350 msgstr ""
19351
19352 #. type: verbatim
19353 #: ../fish/guestfish.pod:47
19354 #, no-wrap
19355 msgid ""
19356 " Welcome to guestfish, the libguestfs filesystem interactive shell for\n"
19357 " editing virtual machine filesystems.\n"
19358 " \n"
19359 msgstr ""
19360
19361 #. type: verbatim
19362 #: ../fish/guestfish.pod:50
19363 #, no-wrap
19364 msgid ""
19365 " Type: 'help' for a list of commands\n"
19366 "       'man' to read the manual\n"
19367 "       'quit' to quit the shell\n"
19368 " \n"
19369 msgstr ""
19370
19371 #. type: verbatim
19372 #: ../fish/guestfish.pod:54
19373 #, no-wrap
19374 msgid ""
19375 " ><fs> add-ro disk.img\n"
19376 " ><fs> run\n"
19377 " ><fs> list-filesystems\n"
19378 " /dev/sda1: ext4\n"
19379 " /dev/vg_guest/lv_root: ext4\n"
19380 " /dev/vg_guest/lv_swap: swap\n"
19381 " ><fs> mount /dev/vg_guest/lv_root /\n"
19382 " ><fs> cat /etc/fstab\n"
19383 " # /etc/fstab\n"
19384 " # Created by anaconda\n"
19385 " [...]\n"
19386 " ><fs> exit\n"
19387 "\n"
19388 msgstr ""
19389
19390 #. type: =head2
19391 #: ../fish/guestfish.pod:67
19392 msgid "From shell scripts"
19393 msgstr ""
19394
19395 #. type: textblock
19396 #: ../fish/guestfish.pod:69
19397 msgid "Create a new C</etc/motd> file in a guest or disk image:"
19398 msgstr ""
19399
19400 #. type: verbatim
19401 #: ../fish/guestfish.pod:71
19402 #, no-wrap
19403 msgid ""
19404 " guestfish <<_EOF_\n"
19405 " add disk.img\n"
19406 " run\n"
19407 " mount /dev/vg_guest/lv_root /\n"
19408 " write /etc/motd \"Welcome, new users\"\n"
19409 " _EOF_\n"
19410 "\n"
19411 msgstr ""
19412
19413 #. type: textblock
19414 #: ../fish/guestfish.pod:78
19415 msgid "List the LVM logical volumes in a disk image:"
19416 msgstr ""
19417
19418 #. type: verbatim
19419 #: ../fish/guestfish.pod:80
19420 #, no-wrap
19421 msgid ""
19422 " guestfish -a disk.img --ro <<_EOF_\n"
19423 " run\n"
19424 " lvs\n"
19425 " _EOF_\n"
19426 "\n"
19427 msgstr ""
19428
19429 #. type: textblock
19430 #: ../fish/guestfish.pod:85
19431 msgid "List all the filesystems in a disk image:"
19432 msgstr ""
19433
19434 #. type: verbatim
19435 #: ../fish/guestfish.pod:87
19436 #, no-wrap
19437 msgid ""
19438 " guestfish -a disk.img --ro <<_EOF_\n"
19439 " run\n"
19440 " list-filesystems\n"
19441 " _EOF_\n"
19442 "\n"
19443 msgstr ""
19444
19445 #. type: =head2
19446 #: ../fish/guestfish.pod:92
19447 msgid "On one command line"
19448 msgstr ""
19449
19450 #. type: textblock
19451 #: ../fish/guestfish.pod:94
19452 msgid "Update C</etc/resolv.conf> in a guest:"
19453 msgstr ""
19454
19455 #. type: verbatim
19456 #: ../fish/guestfish.pod:96
19457 #, no-wrap
19458 msgid ""
19459 " guestfish \\\n"
19460 "   add disk.img : run : mount /dev/vg_guest/lv_root / : \\\n"
19461 "   write /etc/resolv.conf \"nameserver 1.2.3.4\"\n"
19462 "\n"
19463 msgstr ""
19464
19465 #. type: textblock
19466 #: ../fish/guestfish.pod:100
19467 msgid "Edit C</boot/grub/grub.conf> interactively:"
19468 msgstr ""
19469
19470 #. type: verbatim
19471 #: ../fish/guestfish.pod:102
19472 #, no-wrap
19473 msgid ""
19474 " guestfish --rw --add disk.img \\\n"
19475 "   --mount /dev/vg_guest/lv_root \\\n"
19476 "   --mount /dev/sda1:/boot \\\n"
19477 "   edit /boot/grub/grub.conf\n"
19478 "\n"
19479 msgstr ""
19480
19481 #. type: =head2
19482 #: ../fish/guestfish.pod:107
19483 msgid "Mount disks automatically"
19484 msgstr ""
19485
19486 #. type: textblock
19487 #: ../fish/guestfish.pod:109
19488 msgid ""
19489 "Use the I<-i> option to automatically mount the disks from a virtual machine:"
19490 msgstr ""
19491
19492 #. type: verbatim
19493 #: ../fish/guestfish.pod:112
19494 #, no-wrap
19495 msgid ""
19496 " guestfish --ro -a disk.img -i cat /etc/group\n"
19497 "\n"
19498 msgstr ""
19499
19500 #. type: verbatim
19501 #: ../fish/guestfish.pod:114
19502 #, no-wrap
19503 msgid ""
19504 " guestfish --ro -d libvirt-domain -i cat /etc/group\n"
19505 "\n"
19506 msgstr ""
19507
19508 #. type: textblock
19509 #: ../fish/guestfish.pod:116
19510 msgid "Another way to edit C</boot/grub/grub.conf> interactively is:"
19511 msgstr ""
19512
19513 #. type: verbatim
19514 #: ../fish/guestfish.pod:118
19515 #, no-wrap
19516 msgid ""
19517 " guestfish --rw -a disk.img -i edit /boot/grub/grub.conf\n"
19518 "\n"
19519 msgstr ""
19520
19521 #. type: =head2
19522 #: ../fish/guestfish.pod:120
19523 msgid "As a script interpreter"
19524 msgstr ""
19525
19526 #. type: textblock
19527 #: ../fish/guestfish.pod:122
19528 msgid "Create a 100MB disk containing an ext2-formatted partition:"
19529 msgstr ""
19530
19531 #. type: verbatim
19532 #: ../fish/guestfish.pod:124
19533 #, no-wrap
19534 msgid ""
19535 " #!/usr/bin/guestfish -f\n"
19536 " sparse test1.img 100M\n"
19537 " run\n"
19538 " part-disk /dev/sda mbr\n"
19539 " mkfs ext2 /dev/sda1\n"
19540 "\n"
19541 msgstr ""
19542
19543 #. type: =head2
19544 #: ../fish/guestfish.pod:130
19545 msgid "Start with a prepared disk"
19546 msgstr ""
19547
19548 #. type: textblock
19549 #: ../fish/guestfish.pod:132
19550 msgid ""
19551 "An alternate way to create a 100MB disk called C<test1.img> containing a "
19552 "single ext2-formatted partition:"
19553 msgstr ""
19554
19555 #. type: verbatim
19556 #: ../fish/guestfish.pod:135
19557 #, no-wrap
19558 msgid ""
19559 " guestfish -N fs\n"
19560 "\n"
19561 msgstr ""
19562
19563 #. type: textblock
19564 #: ../fish/guestfish.pod:137
19565 msgid "To list what is available do:"
19566 msgstr ""
19567
19568 #. type: verbatim
19569 #: ../fish/guestfish.pod:139 ../fish/guestfish.pod:940
19570 #, no-wrap
19571 msgid ""
19572 " guestfish -N help | less\n"
19573 "\n"
19574 msgstr ""
19575
19576 #. type: =head2
19577 #: ../fish/guestfish.pod:141
19578 msgid "Remote control"
19579 msgstr ""
19580
19581 #. type: verbatim
19582 #: ../fish/guestfish.pod:143
19583 #, no-wrap
19584 msgid ""
19585 " eval \"`guestfish --listen`\"\n"
19586 " guestfish --remote add-ro disk.img\n"
19587 " guestfish --remote run\n"
19588 " guestfish --remote lvs\n"
19589 "\n"
19590 msgstr ""
19591
19592 #. type: =head1
19593 #: ../fish/guestfish.pod:148 ../test-tool/libguestfs-test-tool.pod:37
19594 #: ../fuse/guestmount.pod:73 ../tools/virt-edit.pl:81
19595 #: ../tools/virt-win-reg.pl:96 ../tools/virt-list-filesystems.pl:53
19596 #: ../tools/virt-tar.pl:103 ../tools/virt-make-fs.pl:153
19597 #: ../tools/virt-list-partitions.pl:54
19598 msgid "OPTIONS"
19599 msgstr ""
19600
19601 #. type: =item
19602 #: ../fish/guestfish.pod:152 ../fuse/guestmount.pod:133
19603 #: ../tools/virt-edit.pl:89 ../tools/virt-win-reg.pl:104
19604 #: ../tools/virt-list-filesystems.pl:61 ../tools/virt-tar.pl:111
19605 #: ../tools/virt-make-fs.pl:161 ../tools/virt-list-partitions.pl:62
19606 msgid "B<--help>"
19607 msgstr ""
19608
19609 #. type: textblock
19610 #: ../fish/guestfish.pod:154
19611 msgid "Displays general help on options."
19612 msgstr ""
19613
19614 #. type: =item
19615 #: ../fish/guestfish.pod:156
19616 msgid "B<-h>"
19617 msgstr ""
19618
19619 #. type: =item
19620 #: ../fish/guestfish.pod:158
19621 msgid "B<--cmd-help>"
19622 msgstr ""
19623
19624 #. type: textblock
19625 #: ../fish/guestfish.pod:160
19626 msgid "Lists all available guestfish commands."
19627 msgstr ""
19628
19629 #. type: =item
19630 #: ../fish/guestfish.pod:162
19631 msgid "B<-h cmd>"
19632 msgstr ""
19633
19634 #. type: =item
19635 #: ../fish/guestfish.pod:164
19636 msgid "B<--cmd-help cmd>"
19637 msgstr ""
19638
19639 #. type: textblock
19640 #: ../fish/guestfish.pod:166
19641 msgid "Displays detailed help on a single command C<cmd>."
19642 msgstr ""
19643
19644 #. type: =item
19645 #: ../fish/guestfish.pod:168
19646 msgid "B<-a image>"
19647 msgstr ""
19648
19649 #. type: =item
19650 #: ../fish/guestfish.pod:170
19651 msgid "B<--add image>"
19652 msgstr ""
19653
19654 #. type: textblock
19655 #: ../fish/guestfish.pod:172
19656 msgid "Add a block device or virtual machine image to the shell."
19657 msgstr ""
19658
19659 #. type: textblock
19660 #: ../fish/guestfish.pod:174 ../fuse/guestmount.pod:81
19661 msgid ""
19662 "The format of the disk image is auto-detected.  To override this and force a "
19663 "particular format use the I<--format=..> option."
19664 msgstr ""
19665
19666 #. type: textblock
19667 #: ../fish/guestfish.pod:177
19668 msgid ""
19669 "Using this flag is mostly equivalent to using the C<add> command, with "
19670 "C<readonly:true> if the I<--ro> flag was given, and with C<format:...> if "
19671 "the I<--format=...> flag was given."
19672 msgstr ""
19673
19674 #. type: =item
19675 #: ../fish/guestfish.pod:181
19676 msgid "B<-c URI>"
19677 msgstr ""
19678
19679 #. type: =item
19680 #: ../fish/guestfish.pod:183
19681 msgid "B<--connect URI>"
19682 msgstr ""
19683
19684 #. type: textblock
19685 #: ../fish/guestfish.pod:185 ../fuse/guestmount.pod:86
19686 msgid ""
19687 "When used in conjunction with the I<-d> option, this specifies the libvirt "
19688 "URI to use.  The default is to use the default libvirt connection."
19689 msgstr ""
19690
19691 #. type: =item
19692 #: ../fish/guestfish.pod:189
19693 msgid "B<--csh>"
19694 msgstr ""
19695
19696 #. type: textblock
19697 #: ../fish/guestfish.pod:191
19698 msgid ""
19699 "If using the I<--listen> option and a csh-like shell, use this option.  See "
19700 "section L</REMOTE CONTROL AND CSH> below."
19701 msgstr ""
19702
19703 #. type: =item
19704 #: ../fish/guestfish.pod:194
19705 msgid "B<-d libvirt-domain>"
19706 msgstr ""
19707
19708 #. type: =item
19709 #: ../fish/guestfish.pod:196
19710 msgid "B<--domain libvirt-domain>"
19711 msgstr ""
19712
19713 #. type: textblock
19714 #: ../fish/guestfish.pod:198 ../fuse/guestmount.pod:92
19715 msgid ""
19716 "Add disks from the named libvirt domain.  If the I<--ro> option is also "
19717 "used, then any libvirt domain can be used.  However in write mode, only "
19718 "libvirt domains which are shut down can be named here."
19719 msgstr ""
19720
19721 #. type: textblock
19722 #: ../fish/guestfish.pod:202 ../fuse/guestmount.pod:96
19723 msgid "Domain UUIDs can be used instead of names."
19724 msgstr ""
19725
19726 #. type: textblock
19727 #: ../fish/guestfish.pod:204
19728 msgid ""
19729 "Using this flag is mostly equivalent to using the C<add-domain> command, "
19730 "with C<readonly:true> if the I<--ro> flag was given, and with C<format:...> "
19731 "if the I<--format:...> flag was given."
19732 msgstr ""
19733
19734 #. type: =item
19735 #: ../fish/guestfish.pod:208
19736 msgid "B<-D>"
19737 msgstr ""
19738
19739 #. type: =item
19740 #: ../fish/guestfish.pod:210
19741 msgid "B<--no-dest-paths>"
19742 msgstr ""
19743
19744 #. type: textblock
19745 #: ../fish/guestfish.pod:212
19746 msgid ""
19747 "Don't tab-complete paths on the guest filesystem.  It is useful to be able "
19748 "to hit the tab key to complete paths on the guest filesystem, but this "
19749 "causes extra \"hidden\" guestfs calls to be made, so this option is here to "
19750 "allow this feature to be disabled."
19751 msgstr ""
19752
19753 #. type: =item
19754 #: ../fish/guestfish.pod:217 ../fuse/guestmount.pod:110
19755 msgid "B<--echo-keys>"
19756 msgstr ""
19757
19758 #. type: textblock
19759 #: ../fish/guestfish.pod:219 ../fuse/guestmount.pod:112
19760 msgid ""
19761 "When prompting for keys and passphrases, guestfish normally turns echoing "
19762 "off so you cannot see what you are typing.  If you are not worried about "
19763 "Tempest attacks and there is no one else in the room you can specify this "
19764 "flag to see what you are typing."
19765 msgstr ""
19766
19767 #. type: =item
19768 #: ../fish/guestfish.pod:224
19769 msgid "B<-f file>"
19770 msgstr ""
19771
19772 #. type: =item
19773 #: ../fish/guestfish.pod:226
19774 msgid "B<--file file>"
19775 msgstr ""
19776
19777 #. type: textblock
19778 #: ../fish/guestfish.pod:228
19779 msgid "Read commands from C<file>.  To write pure guestfish scripts, use:"
19780 msgstr ""
19781
19782 #. type: verbatim
19783 #: ../fish/guestfish.pod:231
19784 #, no-wrap
19785 msgid ""
19786 " #!/usr/bin/guestfish -f\n"
19787 "\n"
19788 msgstr ""
19789
19790 #. type: =item
19791 #: ../fish/guestfish.pod:233
19792 msgid "B<--format=raw|qcow2|..>"
19793 msgstr ""
19794
19795 #. type: =item
19796 #: ../fish/guestfish.pod:235
19797 msgid "B<--format>"
19798 msgstr ""
19799
19800 #. type: textblock
19801 #: ../fish/guestfish.pod:237 ../fuse/guestmount.pod:119
19802 msgid ""
19803 "The default for the I<-a> option is to auto-detect the format of the disk "
19804 "image.  Using this forces the disk format for I<-a> options which follow on "
19805 "the command line.  Using I<--format> with no argument switches back to auto-"
19806 "detection for subsequent I<-a> options."
19807 msgstr ""
19808
19809 #. type: verbatim
19810 #: ../fish/guestfish.pod:244
19811 #, no-wrap
19812 msgid ""
19813 " guestfish --format=raw -a disk.img\n"
19814 "\n"
19815 msgstr ""
19816
19817 #. type: textblock
19818 #: ../fish/guestfish.pod:246
19819 msgid "forces raw format (no auto-detection) for C<disk.img>."
19820 msgstr ""
19821
19822 #. type: verbatim
19823 #: ../fish/guestfish.pod:248
19824 #, no-wrap
19825 msgid ""
19826 " guestfish --format=raw -a disk.img --format -a another.img\n"
19827 "\n"
19828 msgstr ""
19829
19830 #. type: textblock
19831 #: ../fish/guestfish.pod:250
19832 msgid ""
19833 "forces raw format (no auto-detection) for C<disk.img> and reverts to auto-"
19834 "detection for C<another.img>."
19835 msgstr ""
19836
19837 #. type: textblock
19838 #: ../fish/guestfish.pod:253
19839 msgid ""
19840 "If you have untrusted raw-format guest disk images, you should use this "
19841 "option to specify the disk format.  This avoids a possible security problem "
19842 "with malicious guests (CVE-2010-3851).  See also L</add-drive-opts>."
19843 msgstr ""
19844
19845 #. type: =item
19846 #: ../fish/guestfish.pod:258
19847 msgid "B<-i>"
19848 msgstr ""
19849
19850 #. type: =item
19851 #: ../fish/guestfish.pod:260
19852 msgid "B<--inspector>"
19853 msgstr ""
19854
19855 #. type: textblock
19856 #: ../fish/guestfish.pod:262 ../fuse/guestmount.pod:139
19857 msgid ""
19858 "Using L<virt-inspector(1)> code, inspect the disks looking for an operating "
19859 "system and mount filesystems as they would be mounted on the real virtual "
19860 "machine."
19861 msgstr ""
19862
19863 #. type: textblock
19864 #: ../fish/guestfish.pod:266
19865 msgid "Typical usage is either:"
19866 msgstr ""
19867
19868 #. type: verbatim
19869 #: ../fish/guestfish.pod:268
19870 #, no-wrap
19871 msgid ""
19872 " guestfish -d myguest -i\n"
19873 "\n"
19874 msgstr ""
19875
19876 #. type: textblock
19877 #: ../fish/guestfish.pod:270
19878 msgid "(for an inactive libvirt domain called I<myguest>), or:"
19879 msgstr ""
19880
19881 #. type: verbatim
19882 #: ../fish/guestfish.pod:272
19883 #, no-wrap
19884 msgid ""
19885 " guestfish --ro -d myguest -i\n"
19886 "\n"
19887 msgstr ""
19888
19889 #. type: textblock
19890 #: ../fish/guestfish.pod:274
19891 msgid "(for active domains, readonly), or specify the block device directly:"
19892 msgstr ""
19893
19894 #. type: verbatim
19895 #: ../fish/guestfish.pod:276
19896 #, no-wrap
19897 msgid ""
19898 " guestfish --rw -a /dev/Guests/MyGuest -i\n"
19899 "\n"
19900 msgstr ""
19901
19902 #. type: textblock
19903 #: ../fish/guestfish.pod:278
19904 msgid ""
19905 "Note that the command line syntax changed slightly over older versions of "
19906 "guestfish.  You can still use the old syntax:"
19907 msgstr ""
19908
19909 #. type: verbatim
19910 #: ../fish/guestfish.pod:281
19911 #, no-wrap
19912 msgid ""
19913 " guestfish [--ro] -i disk.img\n"
19914 "\n"
19915 msgstr ""
19916
19917 #. type: verbatim
19918 #: ../fish/guestfish.pod:283
19919 #, no-wrap
19920 msgid ""
19921 " guestfish [--ro] -i libvirt-domain\n"
19922 "\n"
19923 msgstr ""
19924
19925 #. type: textblock
19926 #: ../fish/guestfish.pod:285
19927 msgid ""
19928 "Using this flag is mostly equivalent to using the C<inspect-os> command and "
19929 "then using other commands to mount the filesystems that were found."
19930 msgstr ""
19931
19932 #. type: =item
19933 #: ../fish/guestfish.pod:289 ../fuse/guestmount.pod:143
19934 msgid "B<--keys-from-stdin>"
19935 msgstr ""
19936
19937 #. type: textblock
19938 #: ../fish/guestfish.pod:291 ../fuse/guestmount.pod:145
19939 msgid ""
19940 "Read key or passphrase parameters from stdin.  The default is to try to read "
19941 "passphrases from the user by opening C</dev/tty>."
19942 msgstr ""
19943
19944 #. type: =item
19945 #: ../fish/guestfish.pod:294
19946 msgid "B<--listen>"
19947 msgstr ""
19948
19949 #. type: textblock
19950 #: ../fish/guestfish.pod:296
19951 msgid ""
19952 "Fork into the background and listen for remote commands.  See section L</"
19953 "REMOTE CONTROL GUESTFISH OVER A SOCKET> below."
19954 msgstr ""
19955
19956 #. type: =item
19957 #: ../fish/guestfish.pod:299 ../fuse/guestmount.pod:148
19958 msgid "B<--live>"
19959 msgstr ""
19960
19961 #. type: textblock
19962 #: ../fish/guestfish.pod:301 ../fuse/guestmount.pod:150
19963 msgid ""
19964 "Connect to a live virtual machine.  (Experimental, see L<guestfs(3)/"
19965 "ATTACHING TO RUNNING DAEMONS>)."
19966 msgstr ""
19967
19968 #. type: =item
19969 #: ../fish/guestfish.pod:304 ../fuse/guestmount.pod:153
19970 msgid "B<-m dev[:mountpoint[:options]]>"
19971 msgstr ""
19972
19973 #. type: =item
19974 #: ../fish/guestfish.pod:306 ../fuse/guestmount.pod:155
19975 msgid "B<--mount dev[:mountpoint[:options]]>"
19976 msgstr ""
19977
19978 #. type: textblock
19979 #: ../fish/guestfish.pod:308
19980 msgid "Mount the named partition or logical volume on the given mountpoint."
19981 msgstr ""
19982
19983 #. type: textblock
19984 #: ../fish/guestfish.pod:310
19985 msgid "If the mountpoint is omitted, it defaults to C</>."
19986 msgstr ""
19987
19988 #. type: textblock
19989 #: ../fish/guestfish.pod:312
19990 msgid "You have to mount something on C</> before most commands will work."
19991 msgstr ""
19992
19993 #. type: textblock
19994 #: ../fish/guestfish.pod:314
19995 msgid ""
19996 "If any I<-m> or I<--mount> options are given, the guest is automatically "
19997 "launched."
19998 msgstr ""
19999
20000 #. type: textblock
20001 #: ../fish/guestfish.pod:317
20002 msgid ""
20003 "If you don't know what filesystems a disk image contains, you can either run "
20004 "guestfish without this option, then list the partitions, filesystems and LVs "
20005 "available (see L</list-partitions>, L</list-filesystems> and L</lvs> "
20006 "commands), or you can use the L<virt-filesystems(1)> program."
20007 msgstr ""
20008
20009 #. type: textblock
20010 #: ../fish/guestfish.pod:323 ../fuse/guestmount.pod:163
20011 msgid ""
20012 "The third (and rarely used) part of the mount parameter is the list of mount "
20013 "options used to mount the underlying filesystem.  If this is not given, then "
20014 "the mount options are either the empty string or C<ro> (the latter if the "
20015 "I<--ro> flag is used).  By specifying the mount options, you override this "
20016 "default choice.  Probably the only time you would use this is to enable ACLs "
20017 "and/or extended attributes if the filesystem can support them:"
20018 msgstr ""
20019
20020 #. type: verbatim
20021 #: ../fish/guestfish.pod:331 ../fuse/guestmount.pod:171
20022 #, no-wrap
20023 msgid ""
20024 " -m /dev/sda1:/:acl,user_xattr\n"
20025 "\n"
20026 msgstr ""
20027
20028 #. type: textblock
20029 #: ../fish/guestfish.pod:333
20030 msgid "Using this flag is equivalent to using the C<mount-options> command."
20031 msgstr ""
20032
20033 #. type: =item
20034 #: ../fish/guestfish.pod:335
20035 msgid "B<-n>"
20036 msgstr ""
20037
20038 #. type: =item
20039 #: ../fish/guestfish.pod:337
20040 msgid "B<--no-sync>"
20041 msgstr ""
20042
20043 #. type: textblock
20044 #: ../fish/guestfish.pod:339
20045 msgid ""
20046 "Disable autosync.  This is enabled by default.  See the discussion of "
20047 "autosync in the L<guestfs(3)> manpage."
20048 msgstr ""
20049
20050 #. type: =item
20051 #: ../fish/guestfish.pod:342
20052 msgid "B<-N type>"
20053 msgstr ""
20054
20055 #. type: =item
20056 #: ../fish/guestfish.pod:344
20057 msgid "B<--new type>"
20058 msgstr ""
20059
20060 #. type: =item
20061 #: ../fish/guestfish.pod:346
20062 msgid "B<-N help>"
20063 msgstr ""
20064
20065 #. type: textblock
20066 #: ../fish/guestfish.pod:348
20067 msgid ""
20068 "Prepare a fresh disk image formatted as \"type\".  This is an alternative to "
20069 "the I<-a> option: whereas I<-a> adds an existing disk, I<-N> creates a "
20070 "preformatted disk with a filesystem and adds it.  See L</PREPARED DISK "
20071 "IMAGES> below."
20072 msgstr ""
20073
20074 #. type: =item
20075 #: ../fish/guestfish.pod:353
20076 msgid "B<--progress-bars>"
20077 msgstr ""
20078
20079 #. type: textblock
20080 #: ../fish/guestfish.pod:355
20081 msgid "Enable progress bars, even when guestfish is used non-interactively."
20082 msgstr ""
20083
20084 #. type: textblock
20085 #: ../fish/guestfish.pod:357
20086 msgid ""
20087 "Progress bars are enabled by default when guestfish is used as an "
20088 "interactive shell."
20089 msgstr ""
20090
20091 #. type: =item
20092 #: ../fish/guestfish.pod:360
20093 msgid "B<--no-progress-bars>"
20094 msgstr ""
20095
20096 #. type: textblock
20097 #: ../fish/guestfish.pod:362
20098 msgid "Disable progress bars."
20099 msgstr ""
20100
20101 #. type: =item
20102 #: ../fish/guestfish.pod:364
20103 msgid "B<--remote[=pid]>"
20104 msgstr ""
20105
20106 #. type: textblock
20107 #: ../fish/guestfish.pod:366
20108 msgid ""
20109 "Send remote commands to C<$GUESTFISH_PID> or C<pid>.  See section L</REMOTE "
20110 "CONTROL GUESTFISH OVER A SOCKET> below."
20111 msgstr ""
20112
20113 #. type: =item
20114 #: ../fish/guestfish.pod:369
20115 msgid "B<-r>"
20116 msgstr ""
20117
20118 #. type: =item
20119 #: ../fish/guestfish.pod:371
20120 msgid "B<--ro>"
20121 msgstr ""
20122
20123 #. type: textblock
20124 #: ../fish/guestfish.pod:373
20125 msgid ""
20126 "This changes the I<-a>, I<-d> and I<-m> options so that disks are added and "
20127 "mounts are done read-only."
20128 msgstr ""
20129
20130 #. type: textblock
20131 #: ../fish/guestfish.pod:376
20132 msgid ""
20133 "The option must always be used if the disk image or virtual machine might be "
20134 "running, and is generally recommended in cases where you don't need write "
20135 "access to the disk."
20136 msgstr ""
20137
20138 #. type: textblock
20139 #: ../fish/guestfish.pod:380
20140 msgid ""
20141 "Note that prepared disk images created with I<-N> are not affected by this "
20142 "option.  Also commands like C<add> are not affected - you have to specify "
20143 "the C<readonly:true> option explicitly if you need it."
20144 msgstr ""
20145
20146 #. type: textblock
20147 #: ../fish/guestfish.pod:384
20148 msgid "See also L</OPENING DISKS FOR READ AND WRITE> below."
20149 msgstr ""
20150
20151 #. type: =item
20152 #: ../fish/guestfish.pod:386 ../fuse/guestmount.pod:227
20153 msgid "B<--selinux>"
20154 msgstr ""
20155
20156 #. type: textblock
20157 #: ../fish/guestfish.pod:388
20158 msgid "Enable SELinux support for the guest.  See L<guestfs(3)/SELINUX>."
20159 msgstr ""
20160
20161 #. type: =item
20162 #: ../fish/guestfish.pod:390
20163 msgid "B<-v>"
20164 msgstr ""
20165
20166 #. type: =item
20167 #: ../fish/guestfish.pod:392
20168 msgid "B<--verbose>"
20169 msgstr ""
20170
20171 #. type: textblock
20172 #: ../fish/guestfish.pod:394
20173 msgid ""
20174 "Enable very verbose messages.  This is particularly useful if you find a bug."
20175 msgstr ""
20176
20177 #. type: =item
20178 #: ../fish/guestfish.pod:397
20179 msgid "B<-V>"
20180 msgstr ""
20181
20182 #. type: =item
20183 #: ../fish/guestfish.pod:399 ../tools/virt-edit.pl:97
20184 #: ../tools/virt-win-reg.pl:112 ../tools/virt-list-filesystems.pl:69
20185 #: ../tools/virt-tar.pl:119 ../tools/virt-make-fs.pl:169
20186 #: ../tools/virt-list-partitions.pl:70
20187 msgid "B<--version>"
20188 msgstr ""
20189
20190 #. type: textblock
20191 #: ../fish/guestfish.pod:401
20192 msgid "Display the guestfish / libguestfs version number and exit."
20193 msgstr ""
20194
20195 #. type: =item
20196 #: ../fish/guestfish.pod:403
20197 msgid "B<-w>"
20198 msgstr ""
20199
20200 #. type: =item
20201 #: ../fish/guestfish.pod:405
20202 msgid "B<--rw>"
20203 msgstr ""
20204
20205 #. type: textblock
20206 #: ../fish/guestfish.pod:407 ../fuse/guestmount.pod:241
20207 msgid ""
20208 "This changes the I<-a>, I<-d> and I<-m> options so that disks are added and "
20209 "mounts are done read-write."
20210 msgstr ""
20211
20212 #. type: textblock
20213 #: ../fish/guestfish.pod:410
20214 msgid "See L</OPENING DISKS FOR READ AND WRITE> below."
20215 msgstr ""
20216
20217 #. type: =item
20218 #: ../fish/guestfish.pod:412
20219 msgid "B<-x>"
20220 msgstr ""
20221
20222 #. type: textblock
20223 #: ../fish/guestfish.pod:414
20224 msgid "Echo each command before executing it."
20225 msgstr ""
20226
20227 #. type: =head1
20228 #: ../fish/guestfish.pod:418
20229 msgid "COMMANDS ON COMMAND LINE"
20230 msgstr ""
20231
20232 #. type: textblock
20233 #: ../fish/guestfish.pod:420
20234 msgid ""
20235 "Any additional (non-option) arguments are treated as commands to execute."
20236 msgstr ""
20237
20238 #. type: textblock
20239 #: ../fish/guestfish.pod:423
20240 msgid ""
20241 "Commands to execute should be separated by a colon (C<:>), where the colon "
20242 "is a separate parameter.  Thus:"
20243 msgstr ""
20244
20245 #. type: verbatim
20246 #: ../fish/guestfish.pod:426
20247 #, no-wrap
20248 msgid ""
20249 " guestfish cmd [args...] : cmd [args...] : cmd [args...] ...\n"
20250 "\n"
20251 msgstr ""
20252
20253 #. type: textblock
20254 #: ../fish/guestfish.pod:428
20255 msgid ""
20256 "If there are no additional arguments, then we enter a shell, either an "
20257 "interactive shell with a prompt (if the input is a terminal) or a non-"
20258 "interactive shell."
20259 msgstr ""
20260
20261 #. type: textblock
20262 #: ../fish/guestfish.pod:432
20263 msgid ""
20264 "In either command line mode or non-interactive shell, the first command that "
20265 "gives an error causes the whole shell to exit.  In interactive mode (with a "
20266 "prompt) if a command fails, you can continue to enter commands."
20267 msgstr ""
20268
20269 #. type: =head1
20270 #: ../fish/guestfish.pod:437
20271 msgid "USING launch (OR run)"
20272 msgstr ""
20273
20274 #. type: textblock
20275 #: ../fish/guestfish.pod:439
20276 msgid ""
20277 "As with L<guestfs(3)>, you must first configure your guest by adding disks, "
20278 "then launch it, then mount any disks you need, and finally issue actions/"
20279 "commands.  So the general order of the day is:"
20280 msgstr ""
20281
20282 #. type: textblock
20283 #: ../fish/guestfish.pod:447
20284 msgid "add or -a/--add"
20285 msgstr ""
20286
20287 #. type: textblock
20288 #: ../fish/guestfish.pod:451
20289 msgid "launch (aka run)"
20290 msgstr ""
20291
20292 #. type: textblock
20293 #: ../fish/guestfish.pod:455
20294 msgid "mount or -m/--mount"
20295 msgstr ""
20296
20297 #. type: textblock
20298 #: ../fish/guestfish.pod:459
20299 msgid "any other commands"
20300 msgstr ""
20301
20302 #. type: textblock
20303 #: ../fish/guestfish.pod:463
20304 msgid ""
20305 "C<run> is a synonym for C<launch>.  You must C<launch> (or C<run>)  your "
20306 "guest before mounting or performing any other commands."
20307 msgstr ""
20308
20309 #. type: textblock
20310 #: ../fish/guestfish.pod:466
20311 msgid ""
20312 "The only exception is that if any of the I<-i>, I<-m>, I<--mount>, I<-N> or "
20313 "I<--new> options were given then C<run> is done automatically, simply "
20314 "because guestfish can't perform the action you asked for without doing this."
20315 msgstr ""
20316
20317 #. type: =head1
20318 #: ../fish/guestfish.pod:471
20319 msgid "OPENING DISKS FOR READ AND WRITE"
20320 msgstr ""
20321
20322 #. type: textblock
20323 #: ../fish/guestfish.pod:473
20324 msgid ""
20325 "The guestfish, L<guestmount(1)> and L<virt-rescue(1)> options I<--ro> and "
20326 "I<--rw> affect whether the other command line options I<-a>, I<-c>, I<-d>, "
20327 "I<-i> and I<-m> open disk images read-only or for writing."
20328 msgstr ""
20329
20330 #. type: textblock
20331 #: ../fish/guestfish.pod:478
20332 msgid ""
20333 "In libguestfs E<le> 1.10, guestfish, guestmount and virt-rescue defaulted to "
20334 "opening disk images supplied on the command line for write.  To open a disk "
20335 "image read-only you have to do I<-a image --ro>."
20336 msgstr ""
20337
20338 #. type: textblock
20339 #: ../fish/guestfish.pod:482
20340 msgid ""
20341 "This matters: If you accidentally open a live VM disk image writable then "
20342 "you will cause irreversible disk corruption."
20343 msgstr ""
20344
20345 #. type: textblock
20346 #: ../fish/guestfish.pod:485
20347 msgid ""
20348 "By libguestfs 1.12 we intend to change the default the other way.  Disk "
20349 "images will be opened read-only.  You will have to either specify "
20350 "I<guestfish --rw>, I<guestmount --rw>, I<virt-rescue --rw>, or change the "
20351 "configuration file C</etc/libguestfs-tools.conf> in order to get write "
20352 "access for disk images specified by those other command line options."
20353 msgstr ""
20354
20355 #. type: textblock
20356 #: ../fish/guestfish.pod:492
20357 msgid ""
20358 "This version of guestfish, guestmount and virt-rescue has a I<--rw> option "
20359 "which does nothing (it is already the default).  However it is highly "
20360 "recommended that you use this option to indicate that you need write access, "
20361 "and prepare your scripts for the day when this option will be required for "
20362 "write access."
20363 msgstr ""
20364
20365 #. type: textblock
20366 #: ../fish/guestfish.pod:498
20367 msgid ""
20368 "B<Note:> This does I<not> affect commands like L</add> and L</mount>, or any "
20369 "other libguestfs program apart from guestfish and guestmount."
20370 msgstr ""
20371
20372 #. type: =head1
20373 #: ../fish/guestfish.pod:501
20374 msgid "QUOTING"
20375 msgstr ""
20376
20377 #. type: textblock
20378 #: ../fish/guestfish.pod:503
20379 msgid ""
20380 "You can quote ordinary parameters using either single or double quotes.  For "
20381 "example:"
20382 msgstr ""
20383
20384 #. type: verbatim
20385 #: ../fish/guestfish.pod:506
20386 #, no-wrap
20387 msgid ""
20388 " add \"file with a space.img\"\n"
20389 "\n"
20390 msgstr ""
20391
20392 #. type: verbatim
20393 #: ../fish/guestfish.pod:508
20394 #, no-wrap
20395 msgid ""
20396 " rm '/file name'\n"
20397 "\n"
20398 msgstr ""
20399
20400 #. type: verbatim
20401 #: ../fish/guestfish.pod:510
20402 #, no-wrap
20403 msgid ""
20404 " rm '/\"'\n"
20405 "\n"
20406 msgstr ""
20407
20408 #. type: textblock
20409 #: ../fish/guestfish.pod:512
20410 msgid ""
20411 "A few commands require a list of strings to be passed.  For these, use a "
20412 "whitespace-separated list, enclosed in quotes.  Strings containing "
20413 "whitespace to be passed through must be enclosed in single quotes.  A "
20414 "literal single quote must be escaped with a backslash."
20415 msgstr ""
20416
20417 #. type: verbatim
20418 #: ../fish/guestfish.pod:517
20419 #, no-wrap
20420 msgid ""
20421 " vgcreate VG \"/dev/sda1 /dev/sdb1\"\n"
20422 " command \"/bin/echo 'foo      bar'\"\n"
20423 " command \"/bin/echo \\'foo\\'\"\n"
20424 "\n"
20425 msgstr ""
20426
20427 #. type: =head1
20428 #: ../fish/guestfish.pod:521
20429 msgid "OPTIONAL ARGUMENTS"
20430 msgstr ""
20431
20432 #. type: textblock
20433 #: ../fish/guestfish.pod:523
20434 msgid ""
20435 "Some commands take optional arguments.  These arguments appear in this "
20436 "documentation as C<[argname:..]>.  You can use them as in these examples:"
20437 msgstr ""
20438
20439 #. type: verbatim
20440 #: ../fish/guestfish.pod:527
20441 #, no-wrap
20442 msgid ""
20443 " add-drive-opts filename\n"
20444 "\n"
20445 msgstr ""
20446
20447 #. type: verbatim
20448 #: ../fish/guestfish.pod:529
20449 #, no-wrap
20450 msgid ""
20451 " add-drive-opts filename readonly:true\n"
20452 "\n"
20453 msgstr ""
20454
20455 #. type: verbatim
20456 #: ../fish/guestfish.pod:531
20457 #, no-wrap
20458 msgid ""
20459 " add-drive-opts filename format:qcow2 readonly:false\n"
20460 "\n"
20461 msgstr ""
20462
20463 #. type: textblock
20464 #: ../fish/guestfish.pod:533
20465 msgid ""
20466 "Each optional argument can appear at most once.  All optional arguments must "
20467 "appear after the required ones."
20468 msgstr ""
20469
20470 #. type: =head1
20471 #: ../fish/guestfish.pod:536
20472 msgid "NUMBERS"
20473 msgstr ""
20474
20475 #. type: textblock
20476 #: ../fish/guestfish.pod:538
20477 msgid ""
20478 "This section applies to all commands which can take integers as parameters."
20479 msgstr ""
20480
20481 #. type: =head2
20482 #: ../fish/guestfish.pod:541
20483 msgid "SIZE SUFFIX"
20484 msgstr ""
20485
20486 #. type: textblock
20487 #: ../fish/guestfish.pod:543
20488 msgid ""
20489 "When the command takes a parameter measured in bytes, you can use one of the "
20490 "following suffixes to specify kilobytes, megabytes and larger sizes:"
20491 msgstr ""
20492
20493 #. type: =item
20494 #: ../fish/guestfish.pod:549
20495 msgid "B<k> or B<K> or B<KiB>"
20496 msgstr ""
20497
20498 #. type: textblock
20499 #: ../fish/guestfish.pod:551
20500 msgid "The size in kilobytes (multiplied by 1024)."
20501 msgstr ""
20502
20503 #. type: =item
20504 #: ../fish/guestfish.pod:553
20505 msgid "B<KB>"
20506 msgstr ""
20507
20508 #. type: textblock
20509 #: ../fish/guestfish.pod:555
20510 msgid "The size in SI 1000 byte units."
20511 msgstr ""
20512
20513 #. type: =item
20514 #: ../fish/guestfish.pod:557
20515 msgid "B<M> or B<MiB>"
20516 msgstr ""
20517
20518 #. type: textblock
20519 #: ../fish/guestfish.pod:559
20520 msgid "The size in megabytes (multiplied by 1048576)."
20521 msgstr ""
20522
20523 #. type: =item
20524 #: ../fish/guestfish.pod:561
20525 msgid "B<MB>"
20526 msgstr ""
20527
20528 #. type: textblock
20529 #: ../fish/guestfish.pod:563
20530 msgid "The size in SI 1000000 byte units."
20531 msgstr ""
20532
20533 #. type: =item
20534 #: ../fish/guestfish.pod:565
20535 msgid "B<G> or B<GiB>"
20536 msgstr ""
20537
20538 #. type: textblock
20539 #: ../fish/guestfish.pod:567
20540 msgid "The size in gigabytes (multiplied by 2**30)."
20541 msgstr ""
20542
20543 #. type: =item
20544 #: ../fish/guestfish.pod:569
20545 msgid "B<GB>"
20546 msgstr ""
20547
20548 #. type: textblock
20549 #: ../fish/guestfish.pod:571
20550 msgid "The size in SI 10**9 byte units."
20551 msgstr ""
20552
20553 #. type: =item
20554 #: ../fish/guestfish.pod:573
20555 msgid "B<T> or B<TiB>"
20556 msgstr ""
20557
20558 #. type: textblock
20559 #: ../fish/guestfish.pod:575
20560 msgid "The size in terabytes (multiplied by 2**40)."
20561 msgstr ""
20562
20563 #. type: =item
20564 #: ../fish/guestfish.pod:577
20565 msgid "B<TB>"
20566 msgstr ""
20567
20568 #. type: textblock
20569 #: ../fish/guestfish.pod:579
20570 msgid "The size in SI 10**12 byte units."
20571 msgstr ""
20572
20573 #. type: =item
20574 #: ../fish/guestfish.pod:581
20575 msgid "B<P> or B<PiB>"
20576 msgstr ""
20577
20578 #. type: textblock
20579 #: ../fish/guestfish.pod:583
20580 msgid "The size in petabytes (multiplied by 2**50)."
20581 msgstr ""
20582
20583 #. type: =item
20584 #: ../fish/guestfish.pod:585
20585 msgid "B<PB>"
20586 msgstr ""
20587
20588 #. type: textblock
20589 #: ../fish/guestfish.pod:587
20590 msgid "The size in SI 10**15 byte units."
20591 msgstr ""
20592
20593 #. type: =item
20594 #: ../fish/guestfish.pod:589
20595 msgid "B<E> or B<EiB>"
20596 msgstr ""
20597
20598 #. type: textblock
20599 #: ../fish/guestfish.pod:591
20600 msgid "The size in exabytes (multiplied by 2**60)."
20601 msgstr ""
20602
20603 #. type: =item
20604 #: ../fish/guestfish.pod:593
20605 msgid "B<EB>"
20606 msgstr ""
20607
20608 #. type: textblock
20609 #: ../fish/guestfish.pod:595
20610 msgid "The size in SI 10**18 byte units."
20611 msgstr ""
20612
20613 #. type: =item
20614 #: ../fish/guestfish.pod:597
20615 msgid "B<Z> or B<ZiB>"
20616 msgstr ""
20617
20618 #. type: textblock
20619 #: ../fish/guestfish.pod:599
20620 msgid "The size in zettabytes (multiplied by 2**70)."
20621 msgstr ""
20622
20623 #. type: =item
20624 #: ../fish/guestfish.pod:601
20625 msgid "B<ZB>"
20626 msgstr ""
20627
20628 #. type: textblock
20629 #: ../fish/guestfish.pod:603
20630 msgid "The size in SI 10**21 byte units."
20631 msgstr ""
20632
20633 #. type: =item
20634 #: ../fish/guestfish.pod:605
20635 msgid "B<Y> or B<YiB>"
20636 msgstr ""
20637
20638 #. type: textblock
20639 #: ../fish/guestfish.pod:607
20640 msgid "The size in yottabytes (multiplied by 2**80)."
20641 msgstr ""
20642
20643 #. type: =item
20644 #: ../fish/guestfish.pod:609
20645 msgid "B<YB>"
20646 msgstr ""
20647
20648 #. type: textblock
20649 #: ../fish/guestfish.pod:611
20650 msgid "The size in SI 10**24 byte units."
20651 msgstr ""
20652
20653 #. type: verbatim
20654 #: ../fish/guestfish.pod:617
20655 #, no-wrap
20656 msgid ""
20657 " truncate-size /file 1G\n"
20658 "\n"
20659 msgstr ""
20660
20661 #. type: textblock
20662 #: ../fish/guestfish.pod:619
20663 msgid "would truncate the file to 1 gigabyte."
20664 msgstr ""
20665
20666 #. type: textblock
20667 #: ../fish/guestfish.pod:621
20668 msgid ""
20669 "Be careful because a few commands take sizes in kilobytes or megabytes (eg. "
20670 "the parameter to L</memsize> is specified in megabytes already).  Adding a "
20671 "suffix will probably not do what you expect."
20672 msgstr ""
20673
20674 #. type: =head2
20675 #: ../fish/guestfish.pod:625
20676 msgid "OCTAL AND HEXADECIMAL NUMBERS"
20677 msgstr ""
20678
20679 #. type: textblock
20680 #: ../fish/guestfish.pod:627
20681 msgid ""
20682 "For specifying the radix (base) use the C convention: C<0> to prefix an "
20683 "octal number or C<0x> to prefix a hexadecimal number.  For example:"
20684 msgstr ""
20685
20686 #. type: verbatim
20687 #: ../fish/guestfish.pod:630
20688 #, no-wrap
20689 msgid ""
20690 " 1234      decimal number 1234\n"
20691 " 02322     octal number, equivalent to decimal 1234\n"
20692 " 0x4d2     hexadecimal number, equivalent to decimal 1234\n"
20693 "\n"
20694 msgstr ""
20695
20696 #. type: textblock
20697 #: ../fish/guestfish.pod:634
20698 msgid ""
20699 "When using the C<chmod> command, you almost always want to specify an octal "
20700 "number for the mode, and you must prefix it with C<0> (unlike the Unix "
20701 "L<chmod(1)> program):"
20702 msgstr ""
20703
20704 #. type: verbatim
20705 #: ../fish/guestfish.pod:638
20706 #, no-wrap
20707 msgid ""
20708 " chmod 0777 /public  # OK\n"
20709 " chmod 777 /public   # WRONG! This is mode 777 decimal = 01411 octal.\n"
20710 "\n"
20711 msgstr ""
20712
20713 #. type: textblock
20714 #: ../fish/guestfish.pod:641
20715 msgid ""
20716 "Commands that return numbers usually print them in decimal, but some "
20717 "commands print numbers in other radices (eg. C<umask> prints the mode in "
20718 "octal, preceeded by C<0>)."
20719 msgstr ""
20720
20721 #. type: =head1
20722 #: ../fish/guestfish.pod:645
20723 msgid "WILDCARDS AND GLOBBING"
20724 msgstr ""
20725
20726 #. type: textblock
20727 #: ../fish/guestfish.pod:647
20728 msgid ""
20729 "Neither guestfish nor the underlying guestfs API performs wildcard expansion "
20730 "(globbing) by default.  So for example the following will not do what you "
20731 "expect:"
20732 msgstr ""
20733
20734 #. type: verbatim
20735 #: ../fish/guestfish.pod:651
20736 #, no-wrap
20737 msgid ""
20738 " rm-rf /home/*\n"
20739 "\n"
20740 msgstr ""
20741
20742 #. type: textblock
20743 #: ../fish/guestfish.pod:653
20744 msgid ""
20745 "Assuming you don't have a directory called literally C</home/*> then the "
20746 "above command will return an error."
20747 msgstr ""
20748
20749 #. type: textblock
20750 #: ../fish/guestfish.pod:656
20751 msgid "To perform wildcard expansion, use the C<glob> command."
20752 msgstr ""
20753
20754 #. type: verbatim
20755 #: ../fish/guestfish.pod:658
20756 #, no-wrap
20757 msgid ""
20758 " glob rm-rf /home/*\n"
20759 "\n"
20760 msgstr ""
20761
20762 #. type: textblock
20763 #: ../fish/guestfish.pod:660
20764 msgid ""
20765 "runs C<rm-rf> on each path that matches (ie. potentially running the command "
20766 "many times), equivalent to:"
20767 msgstr ""
20768
20769 #. type: verbatim
20770 #: ../fish/guestfish.pod:663
20771 #, no-wrap
20772 msgid ""
20773 " rm-rf /home/jim\n"
20774 " rm-rf /home/joe\n"
20775 " rm-rf /home/mary\n"
20776 "\n"
20777 msgstr ""
20778
20779 #. type: textblock
20780 #: ../fish/guestfish.pod:667
20781 msgid "C<glob> only works on simple guest paths and not on device names."
20782 msgstr ""
20783
20784 #. type: textblock
20785 #: ../fish/guestfish.pod:669
20786 msgid ""
20787 "If you have several parameters, each containing a wildcard, then glob will "
20788 "perform a Cartesian product."
20789 msgstr ""
20790
20791 #. type: =head1
20792 #: ../fish/guestfish.pod:672
20793 msgid "COMMENTS"
20794 msgstr ""
20795
20796 #. type: textblock
20797 #: ../fish/guestfish.pod:674
20798 msgid ""
20799 "Any line which starts with a I<#> character is treated as a comment and "
20800 "ignored.  The I<#> can optionally be preceeded by whitespace, but B<not> by "
20801 "a command.  For example:"
20802 msgstr ""
20803
20804 #. type: verbatim
20805 #: ../fish/guestfish.pod:678
20806 #, no-wrap
20807 msgid ""
20808 " # this is a comment\n"
20809 "         # this is a comment\n"
20810 " foo # NOT a comment\n"
20811 "\n"
20812 msgstr ""
20813
20814 #. type: textblock
20815 #: ../fish/guestfish.pod:682
20816 msgid "Blank lines are also ignored."
20817 msgstr ""
20818
20819 #. type: =head1
20820 #: ../fish/guestfish.pod:684
20821 msgid "RUNNING COMMANDS LOCALLY"
20822 msgstr ""
20823
20824 #. type: textblock
20825 #: ../fish/guestfish.pod:686
20826 msgid ""
20827 "Any line which starts with a I<!> character is treated as a command sent to "
20828 "the local shell (C</bin/sh> or whatever L<system(3)> uses).  For example:"
20829 msgstr ""
20830
20831 #. type: verbatim
20832 #: ../fish/guestfish.pod:690
20833 #, no-wrap
20834 msgid ""
20835 " !mkdir local\n"
20836 " tgz-out /remote local/remote-data.tar.gz\n"
20837 "\n"
20838 msgstr ""
20839
20840 #. type: textblock
20841 #: ../fish/guestfish.pod:693
20842 msgid ""
20843 "will create a directory C<local> on the host, and then export the contents "
20844 "of C</remote> on the mounted filesystem to C<local/remote-data.tar.gz>.  "
20845 "(See C<tgz-out>)."
20846 msgstr ""
20847
20848 #. type: textblock
20849 #: ../fish/guestfish.pod:697
20850 msgid ""
20851 "To change the local directory, use the C<lcd> command.  C<!cd> will have no "
20852 "effect, due to the way that subprocesses work in Unix."
20853 msgstr ""
20854
20855 #. type: =head2
20856 #: ../fish/guestfish.pod:700
20857 msgid "LOCAL COMMANDS WITH INLINE EXECUTION"
20858 msgstr ""
20859
20860 #. type: textblock
20861 #: ../fish/guestfish.pod:702
20862 msgid ""
20863 "If a line starts with I<E<lt>!> then the shell command is executed (as for "
20864 "I<!>), but subsequently any output (stdout) of the shell command is parsed "
20865 "and executed as guestfish commands."
20866 msgstr ""
20867
20868 #. type: textblock
20869 #: ../fish/guestfish.pod:706
20870 msgid ""
20871 "Thus you can use shell script to construct arbitrary guestfish commands "
20872 "which are then parsed by guestfish."
20873 msgstr ""
20874
20875 #. type: textblock
20876 #: ../fish/guestfish.pod:709
20877 msgid ""
20878 "For example it is tedious to create a sequence of files (eg. C</foo.1> "
20879 "through C</foo.100>) using guestfish commands alone.  However this is simple "
20880 "if we use a shell script to create the guestfish commands for us:"
20881 msgstr ""
20882
20883 #. type: verbatim
20884 #: ../fish/guestfish.pod:714
20885 #, no-wrap
20886 msgid ""
20887 " <! for n in `seq 1 100`; do echo write /foo.$n $n; done\n"
20888 "\n"
20889 msgstr ""
20890
20891 #. type: textblock
20892 #: ../fish/guestfish.pod:716
20893 msgid "or with names like C</foo.001>:"
20894 msgstr ""
20895
20896 #. type: verbatim
20897 #: ../fish/guestfish.pod:718
20898 #, no-wrap
20899 msgid ""
20900 " <! for n in `seq 1 100`; do printf \"write /foo.%03d %d\\n\" $n $n; done\n"
20901 "\n"
20902 msgstr ""
20903
20904 #. type: textblock
20905 #: ../fish/guestfish.pod:720
20906 msgid ""
20907 "When using guestfish interactively it can be helpful to just run the shell "
20908 "script first (ie. remove the initial C<E<lt>> character so it is just an "
20909 "ordinary I<!> local command), see what guestfish commands it would run, and "
20910 "when you are happy with those prepend the C<E<lt>> character to run the "
20911 "guestfish commands for real."
20912 msgstr ""
20913
20914 #. type: =head1
20915 #: ../fish/guestfish.pod:726
20916 msgid "PIPES"
20917 msgstr ""
20918
20919 #. type: textblock
20920 #: ../fish/guestfish.pod:728
20921 msgid ""
20922 "Use C<command E<lt>spaceE<gt> | command> to pipe the output of the first "
20923 "command (a guestfish command) to the second command (any host command).  For "
20924 "example:"
20925 msgstr ""
20926
20927 #. type: verbatim
20928 #: ../fish/guestfish.pod:732
20929 #, no-wrap
20930 msgid ""
20931 " cat /etc/passwd | awk -F: '$3 == 0 { print }'\n"
20932 "\n"
20933 msgstr ""
20934
20935 #. type: textblock
20936 #: ../fish/guestfish.pod:734
20937 msgid ""
20938 "(where C<cat> is the guestfish cat command, but C<awk> is the host awk "
20939 "program).  The above command would list all accounts in the guest filesystem "
20940 "which have UID 0, ie. root accounts including backdoors.  Other examples:"
20941 msgstr ""
20942
20943 #. type: verbatim
20944 #: ../fish/guestfish.pod:739
20945 #, no-wrap
20946 msgid ""
20947 " hexdump /bin/ls | head\n"
20948 " list-devices | tail -1\n"
20949 " tgz-out / - | tar ztf -\n"
20950 "\n"
20951 msgstr ""
20952
20953 #. type: textblock
20954 #: ../fish/guestfish.pod:743
20955 msgid ""
20956 "The space before the pipe symbol is required, any space after the pipe "
20957 "symbol is optional.  Everything after the pipe symbol is just passed "
20958 "straight to the host shell, so it can contain redirections, globs and "
20959 "anything else that makes sense on the host side."
20960 msgstr ""
20961
20962 #. type: textblock
20963 #: ../fish/guestfish.pod:748
20964 msgid ""
20965 "To use a literal argument which begins with a pipe symbol, you have to quote "
20966 "it, eg:"
20967 msgstr ""
20968
20969 #. type: verbatim
20970 #: ../fish/guestfish.pod:751
20971 #, no-wrap
20972 msgid ""
20973 " echo \"|\"\n"
20974 "\n"
20975 msgstr ""
20976
20977 #. type: =head1
20978 #: ../fish/guestfish.pod:753
20979 msgid "HOME DIRECTORIES"
20980 msgstr ""
20981
20982 #. type: textblock
20983 #: ../fish/guestfish.pod:755
20984 msgid ""
20985 "If a parameter starts with the character C<~> then the tilde may be expanded "
20986 "as a home directory path (either C<~> for the current user's home directory, "
20987 "or C<~user> for another user)."
20988 msgstr ""
20989
20990 #. type: textblock
20991 #: ../fish/guestfish.pod:759
20992 msgid ""
20993 "Note that home directory expansion happens for users known I<on the host>, "
20994 "not in the guest filesystem."
20995 msgstr ""
20996
20997 #. type: textblock
20998 #: ../fish/guestfish.pod:762
20999 msgid ""
21000 "To use a literal argument which begins with a tilde, you have to quote it, "
21001 "eg:"
21002 msgstr ""
21003
21004 #. type: verbatim
21005 #: ../fish/guestfish.pod:765
21006 #, no-wrap
21007 msgid ""
21008 " echo \"~\"\n"
21009 "\n"
21010 msgstr ""
21011
21012 #. type: textblock
21013 #: ../fish/guestfish.pod:769
21014 msgid ""
21015 "Libguestfs has some support for Linux guests encrypted according to the "
21016 "Linux Unified Key Setup (LUKS) standard, which includes nearly all whole "
21017 "disk encryption systems used by modern Linux guests.  Currently only LVM-on-"
21018 "LUKS is supported."
21019 msgstr ""
21020
21021 #. type: textblock
21022 #: ../fish/guestfish.pod:774
21023 msgid "Identify encrypted block devices and partitions using L</vfs-type>:"
21024 msgstr ""
21025
21026 #. type: verbatim
21027 #: ../fish/guestfish.pod:776
21028 #, no-wrap
21029 msgid ""
21030 " ><fs> vfs-type /dev/sda2\n"
21031 " crypto_LUKS\n"
21032 "\n"
21033 msgstr ""
21034
21035 #. type: textblock
21036 #: ../fish/guestfish.pod:779
21037 msgid ""
21038 "Then open those devices using L</luks-open>.  This creates a device-mapper "
21039 "device called C</dev/mapper/luksdev>."
21040 msgstr ""
21041
21042 #. type: verbatim
21043 #: ../fish/guestfish.pod:782
21044 #, no-wrap
21045 msgid ""
21046 " ><fs> luks-open /dev/sda2 luksdev\n"
21047 " Enter key or passphrase (\"key\"): <enter the passphrase>\n"
21048 "\n"
21049 msgstr ""
21050
21051 #. type: textblock
21052 #: ../fish/guestfish.pod:785
21053 msgid ""
21054 "Finally you have to tell LVM to scan for volume groups on the newly created "
21055 "mapper device:"
21056 msgstr ""
21057
21058 #. type: verbatim
21059 #: ../fish/guestfish.pod:788
21060 #, no-wrap
21061 msgid ""
21062 " vgscan\n"
21063 " vg-activate-all true\n"
21064 "\n"
21065 msgstr ""
21066
21067 #. type: textblock
21068 #: ../fish/guestfish.pod:791
21069 msgid "The logical volume(s) can now be mounted in the usual way."
21070 msgstr ""
21071
21072 #. type: textblock
21073 #: ../fish/guestfish.pod:793
21074 msgid ""
21075 "Before closing a LUKS device you must unmount any logical volumes on it and "
21076 "deactivate the volume groups by calling C<vg-activate false VG> on each "
21077 "one.  Then you can close the mapper device:"
21078 msgstr ""
21079
21080 #. type: verbatim
21081 #: ../fish/guestfish.pod:797
21082 #, no-wrap
21083 msgid ""
21084 " vg-activate false /dev/VG\n"
21085 " luks-close /dev/mapper/luksdev\n"
21086 "\n"
21087 msgstr ""
21088
21089 #. type: =head1
21090 #: ../fish/guestfish.pod:800 ../tools/virt-edit.pl:342
21091 msgid "WINDOWS PATHS"
21092 msgstr ""
21093
21094 #. type: textblock
21095 #: ../fish/guestfish.pod:802
21096 msgid ""
21097 "If a path is prefixed with C<win:> then you can use Windows-style drive "
21098 "letters and paths (with some limitations).  The following commands are "
21099 "equivalent:"
21100 msgstr ""
21101
21102 #. type: verbatim
21103 #: ../fish/guestfish.pod:806
21104 #, no-wrap
21105 msgid ""
21106 " file /WINDOWS/system32/config/system.LOG\n"
21107 "\n"
21108 msgstr ""
21109
21110 #. type: verbatim
21111 #: ../fish/guestfish.pod:808
21112 #, no-wrap
21113 msgid ""
21114 " file win:\\windows\\system32\\config\\system.log\n"
21115 "\n"
21116 msgstr ""
21117
21118 #. type: verbatim
21119 #: ../fish/guestfish.pod:810
21120 #, no-wrap
21121 msgid ""
21122 " file WIN:C:\\Windows\\SYSTEM32\\CONFIG\\SYSTEM.LOG\n"
21123 "\n"
21124 msgstr ""
21125
21126 #. type: textblock
21127 #: ../fish/guestfish.pod:812
21128 msgid ""
21129 "The parameter is rewritten \"behind the scenes\" by looking up the position "
21130 "where the drive is mounted, prepending that to the path, changing all "
21131 "backslash characters to forward slash, then resolving the result using L</"
21132 "case-sensitive-path>.  For example if the E: drive was mounted on C</e> then "
21133 "the parameter might be rewritten like this:"
21134 msgstr ""
21135
21136 #. type: verbatim
21137 #: ../fish/guestfish.pod:818
21138 #, no-wrap
21139 msgid ""
21140 " win:e:\\foo\\bar => /e/FOO/bar\n"
21141 "\n"
21142 msgstr ""
21143
21144 #. type: textblock
21145 #: ../fish/guestfish.pod:820
21146 msgid "This only works in argument positions that expect a path."
21147 msgstr ""
21148
21149 #. type: =head1
21150 #: ../fish/guestfish.pod:822
21151 msgid "UPLOADING AND DOWNLOADING FILES"
21152 msgstr ""
21153
21154 #. type: textblock
21155 #: ../fish/guestfish.pod:824
21156 msgid ""
21157 "For commands such as C<upload>, C<download>, C<tar-in>, C<tar-out> and "
21158 "others which upload from or download to a local file, you can use the "
21159 "special filename C<-> to mean \"from stdin\" or \"to stdout\".  For example:"
21160 msgstr ""
21161
21162 #. type: verbatim
21163 #: ../fish/guestfish.pod:828
21164 #, no-wrap
21165 msgid ""
21166 " upload - /foo\n"
21167 "\n"
21168 msgstr ""
21169
21170 #. type: textblock
21171 #: ../fish/guestfish.pod:830
21172 msgid ""
21173 "reads stdin and creates from that a file C</foo> in the disk image, and:"
21174 msgstr ""
21175
21176 #. type: verbatim
21177 #: ../fish/guestfish.pod:833
21178 #, no-wrap
21179 msgid ""
21180 " tar-out /etc - | tar tf -\n"
21181 "\n"
21182 msgstr ""
21183
21184 #. type: textblock
21185 #: ../fish/guestfish.pod:835
21186 msgid ""
21187 "writes the tarball to stdout and then pipes that into the external \"tar\" "
21188 "command (see L</PIPES>)."
21189 msgstr ""
21190
21191 #. type: textblock
21192 #: ../fish/guestfish.pod:838
21193 msgid ""
21194 "When using C<-> to read from stdin, the input is read up to the end of "
21195 "stdin.  You can also use a special \"heredoc\"-like syntax to read up to "
21196 "some arbitrary end marker:"
21197 msgstr ""
21198
21199 #. type: verbatim
21200 #: ../fish/guestfish.pod:842
21201 #, no-wrap
21202 msgid ""
21203 " upload -<<END /foo\n"
21204 " input line 1\n"
21205 " input line 2\n"
21206 " input line 3\n"
21207 " END\n"
21208 "\n"
21209 msgstr ""
21210
21211 #. type: textblock
21212 #: ../fish/guestfish.pod:848
21213 msgid ""
21214 "Any string of characters can be used instead of C<END>.  The end marker must "
21215 "appear on a line of its own, without any preceeding or following characters "
21216 "(not even spaces)."
21217 msgstr ""
21218
21219 #. type: textblock
21220 #: ../fish/guestfish.pod:852
21221 msgid ""
21222 "Note that the C<-E<lt>E<lt>> syntax only applies to parameters used to "
21223 "upload local files (so-called \"FileIn\" parameters in the generator)."
21224 msgstr ""
21225
21226 #. type: =head1
21227 #: ../fish/guestfish.pod:855
21228 msgid "EXIT ON ERROR BEHAVIOUR"
21229 msgstr ""
21230
21231 #. type: textblock
21232 #: ../fish/guestfish.pod:857
21233 msgid ""
21234 "By default, guestfish will ignore any errors when in interactive mode (ie. "
21235 "taking commands from a human over a tty), and will exit on the first error "
21236 "in non-interactive mode (scripts, commands given on the command line)."
21237 msgstr ""
21238
21239 #. type: textblock
21240 #: ../fish/guestfish.pod:862
21241 msgid ""
21242 "If you prefix a command with a I<-> character, then that command will not "
21243 "cause guestfish to exit, even if that (one) command returns an error."
21244 msgstr ""
21245
21246 #. type: =head1
21247 #: ../fish/guestfish.pod:866
21248 msgid "REMOTE CONTROL GUESTFISH OVER A SOCKET"
21249 msgstr ""
21250
21251 #. type: textblock
21252 #: ../fish/guestfish.pod:868
21253 msgid ""
21254 "Guestfish can be remote-controlled over a socket.  This is useful "
21255 "particularly in shell scripts where you want to make several different "
21256 "changes to a filesystem, but you don't want the overhead of starting up a "
21257 "guestfish process each time."
21258 msgstr ""
21259
21260 #. type: textblock
21261 #: ../fish/guestfish.pod:873
21262 msgid "Start a guestfish server process using:"
21263 msgstr ""
21264
21265 #. type: verbatim
21266 #: ../fish/guestfish.pod:875
21267 #, no-wrap
21268 msgid ""
21269 " eval \"`guestfish --listen`\"\n"
21270 "\n"
21271 msgstr ""
21272
21273 #. type: textblock
21274 #: ../fish/guestfish.pod:877
21275 msgid "and then send it commands by doing:"
21276 msgstr ""
21277
21278 #. type: verbatim
21279 #: ../fish/guestfish.pod:879
21280 #, no-wrap
21281 msgid ""
21282 " guestfish --remote cmd [...]\n"
21283 "\n"
21284 msgstr ""
21285
21286 #. type: textblock
21287 #: ../fish/guestfish.pod:881
21288 msgid "To cause the server to exit, send it the exit command:"
21289 msgstr ""
21290
21291 #. type: verbatim
21292 #: ../fish/guestfish.pod:883
21293 #, no-wrap
21294 msgid ""
21295 " guestfish --remote exit\n"
21296 "\n"
21297 msgstr ""
21298
21299 #. type: textblock
21300 #: ../fish/guestfish.pod:885
21301 msgid ""
21302 "Note that the server will normally exit if there is an error in a command.  "
21303 "You can change this in the usual way.  See section L</EXIT ON ERROR "
21304 "BEHAVIOUR>."
21305 msgstr ""
21306
21307 #. type: =head2
21308 #: ../fish/guestfish.pod:889
21309 msgid "CONTROLLING MULTIPLE GUESTFISH PROCESSES"
21310 msgstr ""
21311
21312 #. type: textblock
21313 #: ../fish/guestfish.pod:891
21314 msgid ""
21315 "The C<eval> statement sets the environment variable C<$GUESTFISH_PID>, which "
21316 "is how the I<--remote> option knows where to send the commands.  You can "
21317 "have several guestfish listener processes running using:"
21318 msgstr ""
21319
21320 #. type: verbatim
21321 #: ../fish/guestfish.pod:895
21322 #, no-wrap
21323 msgid ""
21324 " eval \"`guestfish --listen`\"\n"
21325 " pid1=$GUESTFISH_PID\n"
21326 " eval \"`guestfish --listen`\"\n"
21327 " pid2=$GUESTFISH_PID\n"
21328 " ...\n"
21329 " guestfish --remote=$pid1 cmd\n"
21330 " guestfish --remote=$pid2 cmd\n"
21331 "\n"
21332 msgstr ""
21333
21334 #. type: =head2
21335 #: ../fish/guestfish.pod:903
21336 msgid "REMOTE CONTROL AND CSH"
21337 msgstr ""
21338
21339 #. type: textblock
21340 #: ../fish/guestfish.pod:905
21341 msgid ""
21342 "When using csh-like shells (csh, tcsh etc) you have to add the I<--csh> "
21343 "option:"
21344 msgstr ""
21345
21346 #. type: verbatim
21347 #: ../fish/guestfish.pod:908
21348 #, no-wrap
21349 msgid ""
21350 " eval \"`guestfish --listen --csh`\"\n"
21351 "\n"
21352 msgstr ""
21353
21354 #. type: =head2
21355 #: ../fish/guestfish.pod:910
21356 msgid "REMOTE CONTROL DETAILS"
21357 msgstr ""
21358
21359 #. type: textblock
21360 #: ../fish/guestfish.pod:912
21361 msgid ""
21362 "Remote control happens over a Unix domain socket called C</tmp/.guestfish-"
21363 "$UID/socket-$PID>, where C<$UID> is the effective user ID of the process, "
21364 "and C<$PID> is the process ID of the server."
21365 msgstr ""
21366
21367 #. type: textblock
21368 #: ../fish/guestfish.pod:916
21369 msgid "Guestfish client and server versions must match exactly."
21370 msgstr ""
21371
21372 #. type: =head1
21373 #: ../fish/guestfish.pod:918
21374 msgid "PREPARED DISK IMAGES"
21375 msgstr ""
21376
21377 #. type: textblock
21378 #: ../fish/guestfish.pod:920
21379 msgid ""
21380 "Use the I<-N type> or I<--new type> parameter to select one of a set of "
21381 "preformatted disk images that guestfish can make for you to save typing.  "
21382 "This is particularly useful for testing purposes.  This option is used "
21383 "instead of the I<-a> option, and like I<-a> can appear multiple times (and "
21384 "can be mixed with I<-a>)."
21385 msgstr ""
21386
21387 #. type: textblock
21388 #: ../fish/guestfish.pod:926
21389 msgid ""
21390 "The new disk is called C<test1.img> for the first I<-N>, C<test2.img> for "
21391 "the second and so on.  Existing files in the current directory are "
21392 "I<overwritten>."
21393 msgstr ""
21394
21395 #. type: textblock
21396 #: ../fish/guestfish.pod:930
21397 msgid ""
21398 "The type briefly describes how the disk should be sized, partitioned, how "
21399 "filesystem(s) should be created, and how content should be added.  "
21400 "Optionally the type can be followed by extra parameters, separated by C<:> "
21401 "(colon) characters.  For example, I<-N fs> creates a default 100MB, sparsely-"
21402 "allocated disk, containing a single partition, with the partition formatted "
21403 "as ext2.  I<-N fs:ext4:1G> is the same, but for an ext4 filesystem on a 1GB "
21404 "disk instead."
21405 msgstr ""
21406
21407 #. type: textblock
21408 #: ../fish/guestfish.pod:938
21409 msgid "To list the available types and any extra parameters they take, run:"
21410 msgstr ""
21411
21412 #. type: textblock
21413 #: ../fish/guestfish.pod:942
21414 msgid ""
21415 "Note that the prepared filesystem is not mounted.  You would usually have to "
21416 "use the C<mount /dev/sda1 /> command or add the I<-m /dev/sda1> option."
21417 msgstr ""
21418
21419 #. type: textblock
21420 #: ../fish/guestfish.pod:946
21421 msgid ""
21422 "If any I<-N> or I<--new> options are given, the guest is automatically "
21423 "launched."
21424 msgstr ""
21425
21426 #. type: textblock
21427 #: ../fish/guestfish.pod:951
21428 msgid "Create a 100MB disk with an ext4-formatted partition:"
21429 msgstr ""
21430
21431 #. type: verbatim
21432 #: ../fish/guestfish.pod:953
21433 #, no-wrap
21434 msgid ""
21435 " guestfish -N fs:ext4\n"
21436 "\n"
21437 msgstr ""
21438
21439 #. type: textblock
21440 #: ../fish/guestfish.pod:955
21441 msgid "Create a 32MB disk with a VFAT-formatted partition, and mount it:"
21442 msgstr ""
21443
21444 #. type: verbatim
21445 #: ../fish/guestfish.pod:957
21446 #, no-wrap
21447 msgid ""
21448 " guestfish -N fs:vfat:32M -m /dev/sda1\n"
21449 "\n"
21450 msgstr ""
21451
21452 #. type: textblock
21453 #: ../fish/guestfish.pod:959
21454 msgid "Create a blank 200MB disk:"
21455 msgstr ""
21456
21457 #. type: verbatim
21458 #: ../fish/guestfish.pod:961
21459 #, no-wrap
21460 msgid ""
21461 " guestfish -N disk:200M\n"
21462 "\n"
21463 msgstr ""
21464
21465 #. type: =head1
21466 #: ../fish/guestfish.pod:963
21467 msgid "PROGRESS BARS"
21468 msgstr ""
21469
21470 #. type: textblock
21471 #: ../fish/guestfish.pod:965
21472 msgid ""
21473 "Some (not all) long-running commands send progress notification messages as "
21474 "they are running.  Guestfish turns these messages into progress bars."
21475 msgstr ""
21476
21477 #. type: textblock
21478 #: ../fish/guestfish.pod:969
21479 msgid ""
21480 "When a command that supports progress bars takes longer than two seconds to "
21481 "run, and if progress bars are enabled, then you will see one appearing below "
21482 "the command:"
21483 msgstr ""
21484
21485 #. type: verbatim
21486 #: ../fish/guestfish.pod:973
21487 #, no-wrap
21488 msgid ""
21489 " ><fs> copy-size /large-file /another-file 2048M\n"
21490 " / 10% [#####-----------------------------------------] 00:30\n"
21491 "\n"
21492 msgstr ""
21493
21494 #. type: textblock
21495 #: ../fish/guestfish.pod:976
21496 msgid ""
21497 "The spinner on the left hand side moves round once for every progress "
21498 "notification received from the backend.  This is a (reasonably) golden "
21499 "assurance that the command is \"doing something\" even if the progress bar "
21500 "is not moving, because the command is able to send the progress "
21501 "notifications.  When the bar reaches 100% and the command finishes, the "
21502 "spinner disappears."
21503 msgstr ""
21504
21505 #. type: textblock
21506 #: ../fish/guestfish.pod:983
21507 msgid ""
21508 "Progress bars are enabled by default when guestfish is used interactively.  "
21509 "You can enable them even for non-interactive modes using I<--progress-bars>, "
21510 "and you can disable them completely using I<--no-progress-bars>."
21511 msgstr ""
21512
21513 #. type: =head1
21514 #: ../fish/guestfish.pod:988
21515 msgid "GUESTFISH COMMANDS"
21516 msgstr ""
21517
21518 #. type: textblock
21519 #: ../fish/guestfish.pod:990
21520 msgid ""
21521 "The commands in this section are guestfish convenience commands, in other "
21522 "words, they are not part of the L<guestfs(3)> API."
21523 msgstr ""
21524
21525 #. type: =head2
21526 #: ../fish/guestfish.pod:993
21527 msgid "help"
21528 msgstr ""
21529
21530 #. type: verbatim
21531 #: ../fish/guestfish.pod:995
21532 #, no-wrap
21533 msgid ""
21534 " help\n"
21535 " help cmd\n"
21536 "\n"
21537 msgstr ""
21538
21539 #. type: textblock
21540 #: ../fish/guestfish.pod:998
21541 msgid "Without any parameter, this provides general help."
21542 msgstr ""
21543
21544 #. type: textblock
21545 #: ../fish/guestfish.pod:1000
21546 msgid "With a C<cmd> parameter, this displays detailed help for that command."
21547 msgstr ""
21548
21549 #. type: =head2
21550 #: ../fish/guestfish.pod:1002
21551 msgid "quit | exit"
21552 msgstr ""
21553
21554 #. type: textblock
21555 #: ../fish/guestfish.pod:1004
21556 msgid "This exits guestfish.  You can also use C<^D> key."
21557 msgstr ""
21558
21559 #. type: textblock
21560 #: ../fish/guestfish.pod:1006
21561 msgid "@FISH_COMMANDS@"
21562 msgstr ""
21563
21564 #. type: =head1
21565 #: ../fish/guestfish.pod:1008
21566 msgid "COMMANDS"
21567 msgstr ""
21568
21569 #. type: =head1
21570 #: ../fish/guestfish.pod:1012 ../test-tool/libguestfs-test-tool.pod:77
21571 msgid "EXIT CODE"
21572 msgstr ""
21573
21574 #. type: textblock
21575 #: ../fish/guestfish.pod:1014
21576 msgid ""
21577 "guestfish returns 0 if the commands completed without error, or 1 if there "
21578 "was an error."
21579 msgstr ""
21580
21581 #. type: =item
21582 #: ../fish/guestfish.pod:1021
21583 msgid "EDITOR"
21584 msgstr ""
21585
21586 #. type: textblock
21587 #: ../fish/guestfish.pod:1023
21588 msgid ""
21589 "The C<edit> command uses C<$EDITOR> as the editor.  If not set, it uses "
21590 "C<vi>."
21591 msgstr ""
21592
21593 #. type: =item
21594 #: ../fish/guestfish.pod:1026
21595 msgid "GUESTFISH_PID"
21596 msgstr ""
21597
21598 #. type: textblock
21599 #: ../fish/guestfish.pod:1028
21600 msgid ""
21601 "Used with the I<--remote> option to specify the remote guestfish process to "
21602 "control.  See section L</REMOTE CONTROL GUESTFISH OVER A SOCKET>."
21603 msgstr ""
21604
21605 #. type: =item
21606 #: ../fish/guestfish.pod:1032
21607 msgid "HEXEDITOR"
21608 msgstr ""
21609
21610 #. type: textblock
21611 #: ../fish/guestfish.pod:1034
21612 msgid ""
21613 "The L</hexedit> command uses C<$HEXEDITOR> as the external hex editor.  If "
21614 "not specified, the external L<hexedit(1)> program is used."
21615 msgstr ""
21616
21617 #. type: =item
21618 #: ../fish/guestfish.pod:1038
21619 msgid "HOME"
21620 msgstr ""
21621
21622 #. type: textblock
21623 #: ../fish/guestfish.pod:1040
21624 msgid ""
21625 "If compiled with GNU readline support, various files in the home directory "
21626 "can be used.  See L</FILES>."
21627 msgstr ""
21628
21629 #. type: textblock
21630 #: ../fish/guestfish.pod:1049
21631 msgid ""
21632 "Set C<LIBGUESTFS_DEBUG=1> to enable verbose messages.  This has the same "
21633 "effect as using the B<-v> option."
21634 msgstr ""
21635
21636 #. type: textblock
21637 #: ../fish/guestfish.pod:1061
21638 msgid ""
21639 "Set the path that guestfish uses to search for kernel and initrd.img.  See "
21640 "the discussion of paths in L<guestfs(3)>."
21641 msgstr ""
21642
21643 #. type: textblock
21644 #: ../fish/guestfish.pod:1072
21645 msgid "Set C<LIBGUESTFS_TRACE=1> to enable command traces."
21646 msgstr ""
21647
21648 #. type: =item
21649 #: ../fish/guestfish.pod:1074
21650 msgid "PAGER"
21651 msgstr ""
21652
21653 #. type: textblock
21654 #: ../fish/guestfish.pod:1076
21655 msgid ""
21656 "The C<more> command uses C<$PAGER> as the pager.  If not set, it uses "
21657 "C<more>."
21658 msgstr ""
21659
21660 #. type: =head1
21661 #: ../fish/guestfish.pod:1092 ../fuse/guestmount.pod:254
21662 msgid "FILES"
21663 msgstr ""
21664
21665 #. type: =item
21666 #: ../fish/guestfish.pod:1096 ../fuse/guestmount.pod:258
21667 msgid "$HOME/.libguestfs-tools.rc"
21668 msgstr ""
21669
21670 #. type: =item
21671 #: ../fish/guestfish.pod:1098 ../fuse/guestmount.pod:260
21672 msgid "/etc/libguestfs-tools.conf"
21673 msgstr ""
21674
21675 #. type: textblock
21676 #: ../fish/guestfish.pod:1100 ../fuse/guestmount.pod:262
21677 msgid ""
21678 "This configuration file controls the default read-only or read-write mode "
21679 "(I<--ro> or I<--rw>)."
21680 msgstr ""
21681
21682 #. type: textblock
21683 #: ../fish/guestfish.pod:1103
21684 msgid "See L</OPENING DISKS FOR READ AND WRITE>."
21685 msgstr ""
21686
21687 #. type: =item
21688 #: ../fish/guestfish.pod:1105
21689 msgid "$HOME/.guestfish"
21690 msgstr ""
21691
21692 #. type: textblock
21693 #: ../fish/guestfish.pod:1107
21694 msgid ""
21695 "If compiled with GNU readline support, then the command history is saved in "
21696 "this file."
21697 msgstr ""
21698
21699 #. type: =item
21700 #: ../fish/guestfish.pod:1110
21701 msgid "$HOME/.inputrc"
21702 msgstr ""
21703
21704 #. type: =item
21705 #: ../fish/guestfish.pod:1112
21706 msgid "/etc/inputrc"
21707 msgstr ""
21708
21709 #. type: textblock
21710 #: ../fish/guestfish.pod:1114
21711 msgid ""
21712 "If compiled with GNU readline support, then these files can be used to "
21713 "configure readline.  For further information, please see L<readline(3)/"
21714 "INITIALIZATION FILE>."
21715 msgstr ""
21716
21717 #. type: textblock
21718 #: ../fish/guestfish.pod:1118
21719 msgid "To write rules which only apply to guestfish, use:"
21720 msgstr ""
21721
21722 #. type: verbatim
21723 #: ../fish/guestfish.pod:1120
21724 #, no-wrap
21725 msgid ""
21726 " $if guestfish\n"
21727 " ...\n"
21728 " $endif\n"
21729 "\n"
21730 msgstr ""
21731
21732 #. type: textblock
21733 #: ../fish/guestfish.pod:1124
21734 msgid ""
21735 "Variables that you can set in inputrc that change the behaviour of guestfish "
21736 "in useful ways include:"
21737 msgstr ""
21738
21739 #. type: =item
21740 #: ../fish/guestfish.pod:1129
21741 msgid "completion-ignore-case (default: on)"
21742 msgstr ""
21743
21744 #. type: textblock
21745 #: ../fish/guestfish.pod:1131
21746 msgid ""
21747 "By default, guestfish will ignore case when tab-completing paths on the "
21748 "disk.  Use:"
21749 msgstr ""
21750
21751 #. type: verbatim
21752 #: ../fish/guestfish.pod:1134
21753 #, no-wrap
21754 msgid ""
21755 " set completion-ignore-case off\n"
21756 "\n"
21757 msgstr ""
21758
21759 #. type: textblock
21760 #: ../fish/guestfish.pod:1136
21761 msgid "to make guestfish case sensitive."
21762 msgstr ""
21763
21764 #. type: =item
21765 #: ../fish/guestfish.pod:1140
21766 msgid "test1.img"
21767 msgstr ""
21768
21769 #. type: =item
21770 #: ../fish/guestfish.pod:1142
21771 msgid "test2.img (etc)"
21772 msgstr ""
21773
21774 #. type: textblock
21775 #: ../fish/guestfish.pod:1144
21776 msgid ""
21777 "When using the I<-N> or I<--new> option, the prepared disk or filesystem "
21778 "will be created in the file C<test1.img> in the current directory.  The "
21779 "second use of I<-N> will use C<test2.img> and so on.  Any existing file with "
21780 "the same name will be overwritten."
21781 msgstr ""
21782
21783 #. type: textblock
21784 #: ../fish/guestfish.pod:1153
21785 msgid ""
21786 "L<guestfs(3)>, L<http://libguestfs.org/>, L<virt-cat(1)>, L<virt-copy-in(1)"
21787 ">, L<virt-copy-out(1)>, L<virt-df(1)>, L<virt-edit(1)>, L<virt-filesystems(1)"
21788 ">, L<virt-inspector(1)>, L<virt-list-filesystems(1)>, L<virt-list-partitions"
21789 "(1)>, L<virt-ls(1)>, L<virt-make-fs(1)>, L<virt-rescue(1)>, L<virt-resize(1)"
21790 ">, L<virt-tar(1)>, L<virt-tar-in(1)>, L<virt-tar-out(1)>, L<virt-win-reg(1)"
21791 ">, L<hexedit(1)>."
21792 msgstr ""
21793
21794 #. type: textblock
21795 #: ../fish/guestfish.pod:1183 ../test-tool/libguestfs-test-tool.pod:102
21796 #: ../fuse/guestmount.pod:289 ../tools/virt-edit.pl:518
21797 #: ../tools/virt-win-reg.pl:606 ../tools/virt-list-filesystems.pl:210
21798 #: ../tools/virt-tar.pl:309 ../tools/virt-make-fs.pl:572
21799 #: ../tools/virt-list-partitions.pl:277
21800 msgid ""
21801 "This program is free software; you can redistribute it and/or modify it "
21802 "under the terms of the GNU General Public License as published by the Free "
21803 "Software Foundation; either version 2 of the License, or (at your option) "
21804 "any later version."
21805 msgstr ""
21806
21807 #. type: textblock
21808 #: ../fish/guestfish.pod:1188 ../test-tool/libguestfs-test-tool.pod:107
21809 #: ../fuse/guestmount.pod:294 ../tools/virt-edit.pl:523
21810 #: ../tools/virt-win-reg.pl:611 ../tools/virt-list-filesystems.pl:215
21811 #: ../tools/virt-tar.pl:314 ../tools/virt-make-fs.pl:577
21812 #: ../tools/virt-list-partitions.pl:282
21813 msgid ""
21814 "This program is distributed in the hope that it will be useful, but WITHOUT "
21815 "ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or "
21816 "FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for "
21817 "more details."
21818 msgstr ""
21819
21820 #. type: textblock
21821 #: ../fish/guestfish.pod:1193 ../test-tool/libguestfs-test-tool.pod:112
21822 #: ../fuse/guestmount.pod:299 ../tools/virt-edit.pl:528
21823 #: ../tools/virt-win-reg.pl:616 ../tools/virt-list-filesystems.pl:220
21824 #: ../tools/virt-tar.pl:319 ../tools/virt-make-fs.pl:582
21825 #: ../tools/virt-list-partitions.pl:287
21826 msgid ""
21827 "You should have received a copy of the GNU General Public License along with "
21828 "this program; if not, write to the Free Software Foundation, Inc., 675 Mass "
21829 "Ave, Cambridge, MA 02139, USA."
21830 msgstr ""
21831
21832 #. type: =head2
21833 #: ../fish/guestfish-actions.pod:1
21834 msgid "add-cdrom"
21835 msgstr ""
21836
21837 #. type: verbatim
21838 #: ../fish/guestfish-actions.pod:3
21839 #, no-wrap
21840 msgid ""
21841 " add-cdrom filename\n"
21842 "\n"
21843 msgstr ""
21844
21845 #. type: textblock
21846 #: ../fish/guestfish-actions.pod:15
21847 msgid ""
21848 "This call checks for the existence of C<filename>.  This stops you from "
21849 "specifying other types of drive which are supported by qemu such as C<nbd:> "
21850 "and C<http:> URLs.  To specify those, use the general L</config> call "
21851 "instead."
21852 msgstr ""
21853
21854 #. type: textblock
21855 #: ../fish/guestfish-actions.pod:22
21856 msgid ""
21857 "If you just want to add an ISO file (often you use this as an efficient way "
21858 "to transfer large files into the guest), then you should probably use L</add-"
21859 "drive-ro> instead."
21860 msgstr ""
21861
21862 #. type: =head2
21863 #: ../fish/guestfish-actions.pod:35
21864 msgid "add-domain"
21865 msgstr ""
21866
21867 #. type: =head2
21868 #: ../fish/guestfish-actions.pod:37
21869 msgid "domain"
21870 msgstr ""
21871
21872 #. type: verbatim
21873 #: ../fish/guestfish-actions.pod:39
21874 #, no-wrap
21875 msgid ""
21876 " add-domain dom [libvirturi:..] [readonly:..] [iface:..] [live:..] [allowuuid:..]\n"
21877 "\n"
21878 msgstr ""
21879
21880 #. type: textblock
21881 #: ../fish/guestfish-actions.pod:41
21882 msgid ""
21883 "This function adds the disk(s) attached to the named libvirt domain C<dom>.  "
21884 "It works by connecting to libvirt, requesting the domain and domain XML from "
21885 "libvirt, parsing it for disks, and calling L</add-drive-opts> on each one."
21886 msgstr ""
21887
21888 #. type: textblock
21889 #: ../fish/guestfish-actions.pod:76
21890 msgid ""
21891 "The other optional parameters are passed directly through to L</add-drive-"
21892 "opts>."
21893 msgstr ""
21894
21895 #. type: textblock
21896 #: ../fish/guestfish-actions.pod:79 ../fish/guestfish-actions.pod:143
21897 #: ../fish/guestfish-actions.pod:3052
21898 msgid ""
21899 "This command has one or more optional arguments.  See L</OPTIONAL ARGUMENTS>."
21900 msgstr ""
21901
21902 #. type: =head2
21903 #: ../fish/guestfish-actions.pod:81
21904 msgid "add-drive"
21905 msgstr ""
21906
21907 #. type: verbatim
21908 #: ../fish/guestfish-actions.pod:83
21909 #, no-wrap
21910 msgid ""
21911 " add-drive filename\n"
21912 "\n"
21913 msgstr ""
21914
21915 #. type: textblock
21916 #: ../fish/guestfish-actions.pod:85
21917 msgid ""
21918 "This function is the equivalent of calling L</add-drive-opts> with no "
21919 "optional parameters, so the disk is added writable, with the format being "
21920 "detected automatically."
21921 msgstr ""
21922
21923 #. type: textblock
21924 #: ../fish/guestfish-actions.pod:89
21925 msgid ""
21926 "Automatic detection of the format opens you up to a potential security hole "
21927 "when dealing with untrusted raw-format images.  See CVE-2010-3851 and "
21928 "RHBZ#642934.  Specifying the format closes this security hole.  Therefore "
21929 "you should think about replacing calls to this function with calls to L</add-"
21930 "drive-opts>, and specifying the format."
21931 msgstr ""
21932
21933 #. type: =head2
21934 #: ../fish/guestfish-actions.pod:96
21935 msgid "add-drive-opts"
21936 msgstr ""
21937
21938 #. type: =head2
21939 #: ../fish/guestfish-actions.pod:98
21940 msgid "add"
21941 msgstr ""
21942
21943 #. type: verbatim
21944 #: ../fish/guestfish-actions.pod:100
21945 #, no-wrap
21946 msgid ""
21947 " add-drive-opts filename [readonly:..] [format:..] [iface:..]\n"
21948 "\n"
21949 msgstr ""
21950
21951 #. type: textblock
21952 #: ../fish/guestfish-actions.pod:127
21953 msgid ""
21954 "This forces the image format.  If you omit this (or use L</add-drive> or L</"
21955 "add-drive-ro>) then the format is automatically detected.  Possible formats "
21956 "include C<raw> and C<qcow2>."
21957 msgstr ""
21958
21959 #. type: textblock
21960 #: ../fish/guestfish-actions.pod:138
21961 msgid ""
21962 "This rarely-used option lets you emulate the behaviour of the deprecated L</"
21963 "add-drive-with-if> call (q.v.)"
21964 msgstr ""
21965
21966 #. type: =head2
21967 #: ../fish/guestfish-actions.pod:145
21968 msgid "add-drive-ro"
21969 msgstr ""
21970
21971 #. type: =head2
21972 #: ../fish/guestfish-actions.pod:147
21973 msgid "add-ro"
21974 msgstr ""
21975
21976 #. type: verbatim
21977 #: ../fish/guestfish-actions.pod:149
21978 #, no-wrap
21979 msgid ""
21980 " add-drive-ro filename\n"
21981 "\n"
21982 msgstr ""
21983
21984 #. type: textblock
21985 #: ../fish/guestfish-actions.pod:151
21986 msgid ""
21987 "This function is the equivalent of calling L</add-drive-opts> with the "
21988 "optional parameter C<GUESTFS_ADD_DRIVE_OPTS_READONLY> set to 1, so the disk "
21989 "is added read-only, with the format being detected automatically."
21990 msgstr ""
21991
21992 #. type: =head2
21993 #: ../fish/guestfish-actions.pod:156
21994 msgid "add-drive-ro-with-if"
21995 msgstr ""
21996
21997 #. type: verbatim
21998 #: ../fish/guestfish-actions.pod:158
21999 #, no-wrap
22000 msgid ""
22001 " add-drive-ro-with-if filename iface\n"
22002 "\n"
22003 msgstr ""
22004
22005 #. type: textblock
22006 #: ../fish/guestfish-actions.pod:160
22007 msgid ""
22008 "This is the same as L</add-drive-ro> but it allows you to specify the QEMU "
22009 "interface emulation to use at run time."
22010 msgstr ""
22011
22012 #. type: =head2
22013 #: ../fish/guestfish-actions.pod:170
22014 msgid "add-drive-with-if"
22015 msgstr ""
22016
22017 #. type: verbatim
22018 #: ../fish/guestfish-actions.pod:172
22019 #, no-wrap
22020 msgid ""
22021 " add-drive-with-if filename iface\n"
22022 "\n"
22023 msgstr ""
22024
22025 #. type: textblock
22026 #: ../fish/guestfish-actions.pod:174
22027 msgid ""
22028 "This is the same as L</add-drive> but it allows you to specify the QEMU "
22029 "interface emulation to use at run time."
22030 msgstr ""
22031
22032 #. type: =head2
22033 #: ../fish/guestfish-actions.pod:184
22034 msgid "aug-clear"
22035 msgstr ""
22036
22037 #. type: verbatim
22038 #: ../fish/guestfish-actions.pod:186
22039 #, no-wrap
22040 msgid ""
22041 " aug-clear augpath\n"
22042 "\n"
22043 msgstr ""
22044
22045 #. type: =head2
22046 #: ../fish/guestfish-actions.pod:191
22047 msgid "aug-close"
22048 msgstr ""
22049
22050 #. type: verbatim
22051 #: ../fish/guestfish-actions.pod:193
22052 #, no-wrap
22053 msgid ""
22054 " aug-close\n"
22055 "\n"
22056 msgstr ""
22057
22058 #. type: textblock
22059 #: ../fish/guestfish-actions.pod:195
22060 msgid ""
22061 "Close the current Augeas handle and free up any resources used by it.  After "
22062 "calling this, you have to call L</aug-init> again before you can use any "
22063 "other Augeas functions."
22064 msgstr ""
22065
22066 #. type: =head2
22067 #: ../fish/guestfish-actions.pod:200
22068 msgid "aug-defnode"
22069 msgstr ""
22070
22071 #. type: verbatim
22072 #: ../fish/guestfish-actions.pod:202
22073 #, no-wrap
22074 msgid ""
22075 " aug-defnode name expr val\n"
22076 "\n"
22077 msgstr ""
22078
22079 #. type: textblock
22080 #: ../fish/guestfish-actions.pod:207
22081 msgid ""
22082 "If C<expr> evaluates to an empty nodeset, a node is created, equivalent to "
22083 "calling L</aug-set> C<expr>, C<value>.  C<name> will be the nodeset "
22084 "containing that single node."
22085 msgstr ""
22086
22087 #. type: =head2
22088 #: ../fish/guestfish-actions.pod:215
22089 msgid "aug-defvar"
22090 msgstr ""
22091
22092 #. type: verbatim
22093 #: ../fish/guestfish-actions.pod:217
22094 #, no-wrap
22095 msgid ""
22096 " aug-defvar name expr\n"
22097 "\n"
22098 msgstr ""
22099
22100 #. type: =head2
22101 #: ../fish/guestfish-actions.pod:226
22102 msgid "aug-get"
22103 msgstr ""
22104
22105 #. type: verbatim
22106 #: ../fish/guestfish-actions.pod:228
22107 #, no-wrap
22108 msgid ""
22109 " aug-get augpath\n"
22110 "\n"
22111 msgstr ""
22112
22113 #. type: =head2
22114 #: ../fish/guestfish-actions.pod:233
22115 msgid "aug-init"
22116 msgstr ""
22117
22118 #. type: verbatim
22119 #: ../fish/guestfish-actions.pod:235
22120 #, no-wrap
22121 msgid ""
22122 " aug-init root flags\n"
22123 "\n"
22124 msgstr ""
22125
22126 #. type: textblock
22127 #: ../fish/guestfish-actions.pod:241
22128 msgid "You must call this before using any other L</aug-*> commands."
22129 msgstr ""
22130
22131 #. type: textblock
22132 #: ../fish/guestfish-actions.pod:276
22133 msgid "Do not load the tree in L</aug-init>."
22134 msgstr ""
22135
22136 #. type: textblock
22137 #: ../fish/guestfish-actions.pod:280
22138 msgid "To close the handle, you can call L</aug-close>."
22139 msgstr ""
22140
22141 #. type: =head2
22142 #: ../fish/guestfish-actions.pod:284
22143 msgid "aug-insert"
22144 msgstr ""
22145
22146 #. type: verbatim
22147 #: ../fish/guestfish-actions.pod:286
22148 #, no-wrap
22149 msgid ""
22150 " aug-insert augpath label true|false\n"
22151 "\n"
22152 msgstr ""
22153
22154 #. type: =head2
22155 #: ../fish/guestfish-actions.pod:296
22156 msgid "aug-load"
22157 msgstr ""
22158
22159 #. type: verbatim
22160 #: ../fish/guestfish-actions.pod:298
22161 #, no-wrap
22162 msgid ""
22163 " aug-load\n"
22164 "\n"
22165 msgstr ""
22166
22167 #. type: =head2
22168 #: ../fish/guestfish-actions.pod:305
22169 msgid "aug-ls"
22170 msgstr ""
22171
22172 #. type: verbatim
22173 #: ../fish/guestfish-actions.pod:307
22174 #, no-wrap
22175 msgid ""
22176 " aug-ls augpath\n"
22177 "\n"
22178 msgstr ""
22179
22180 #. type: textblock
22181 #: ../fish/guestfish-actions.pod:309
22182 msgid ""
22183 "This is just a shortcut for listing L</aug-match> C<path/*> and sorting the "
22184 "resulting nodes into alphabetical order."
22185 msgstr ""
22186
22187 #. type: =head2
22188 #: ../fish/guestfish-actions.pod:312
22189 msgid "aug-match"
22190 msgstr ""
22191
22192 #. type: verbatim
22193 #: ../fish/guestfish-actions.pod:314
22194 #, no-wrap
22195 msgid ""
22196 " aug-match augpath\n"
22197 "\n"
22198 msgstr ""
22199
22200 #. type: =head2
22201 #: ../fish/guestfish-actions.pod:320
22202 msgid "aug-mv"
22203 msgstr ""
22204
22205 #. type: verbatim
22206 #: ../fish/guestfish-actions.pod:322
22207 #, no-wrap
22208 msgid ""
22209 " aug-mv src dest\n"
22210 "\n"
22211 msgstr ""
22212
22213 #. type: =head2
22214 #: ../fish/guestfish-actions.pod:327
22215 msgid "aug-rm"
22216 msgstr ""
22217
22218 #. type: verbatim
22219 #: ../fish/guestfish-actions.pod:329
22220 #, no-wrap
22221 msgid ""
22222 " aug-rm augpath\n"
22223 "\n"
22224 msgstr ""
22225
22226 #. type: =head2
22227 #: ../fish/guestfish-actions.pod:335
22228 msgid "aug-save"
22229 msgstr ""
22230
22231 #. type: verbatim
22232 #: ../fish/guestfish-actions.pod:337
22233 #, no-wrap
22234 msgid ""
22235 " aug-save\n"
22236 "\n"
22237 msgstr ""
22238
22239 #. type: textblock
22240 #: ../fish/guestfish-actions.pod:341
22241 msgid ""
22242 "The flags which were passed to L</aug-init> affect exactly how files are "
22243 "saved."
22244 msgstr ""
22245
22246 #. type: =head2
22247 #: ../fish/guestfish-actions.pod:344
22248 msgid "aug-set"
22249 msgstr ""
22250
22251 #. type: verbatim
22252 #: ../fish/guestfish-actions.pod:346
22253 #, no-wrap
22254 msgid ""
22255 " aug-set augpath val\n"
22256 "\n"
22257 msgstr ""
22258
22259 #. type: textblock
22260 #: ../fish/guestfish-actions.pod:350
22261 msgid ""
22262 "In the Augeas API, it is possible to clear a node by setting the value to "
22263 "NULL.  Due to an oversight in the libguestfs API you cannot do that with "
22264 "this call.  Instead you must use the L</aug-clear> call."
22265 msgstr ""
22266
22267 #. type: =head2
22268 #: ../fish/guestfish-actions.pod:355
22269 msgid "available"
22270 msgstr ""
22271
22272 #. type: verbatim
22273 #: ../fish/guestfish-actions.pod:357
22274 #, no-wrap
22275 msgid ""
22276 " available 'groups ...'\n"
22277 "\n"
22278 msgstr ""
22279
22280 #. type: textblock
22281 #: ../fish/guestfish-actions.pod:363
22282 msgid ""
22283 "The libguestfs groups, and the functions that those groups correspond to, "
22284 "are listed in L<guestfs(3)/AVAILABILITY>.  You can also fetch this list at "
22285 "runtime by calling L</available-all-groups>."
22286 msgstr ""
22287
22288 #. type: textblock
22289 #: ../fish/guestfish-actions.pod:387
22290 msgid "You must call L</launch> before calling this function."
22291 msgstr ""
22292
22293 #. type: textblock
22294 #: ../fish/guestfish-actions.pod:409
22295 msgid ""
22296 "This call was added in version C<1.0.80>.  In previous versions of "
22297 "libguestfs all you could do would be to speculatively execute a command to "
22298 "find out if the daemon implemented it.  See also L</version>."
22299 msgstr ""
22300
22301 #. type: =head2
22302 #: ../fish/guestfish-actions.pod:416
22303 msgid "available-all-groups"
22304 msgstr ""
22305
22306 #. type: verbatim
22307 #: ../fish/guestfish-actions.pod:418
22308 #, no-wrap
22309 msgid ""
22310 " available-all-groups\n"
22311 "\n"
22312 msgstr ""
22313
22314 #. type: textblock
22315 #: ../fish/guestfish-actions.pod:420
22316 msgid ""
22317 "This command returns a list of all optional groups that this daemon knows "
22318 "about.  Note this returns both supported and unsupported groups.  To find "
22319 "out which ones the daemon can actually support you have to call L</"
22320 "available> on each member of the returned list."
22321 msgstr ""
22322
22323 #. type: textblock
22324 #: ../fish/guestfish-actions.pod:426
22325 msgid "See also L</available> and L<guestfs(3)/AVAILABILITY>."
22326 msgstr ""
22327
22328 #. type: =head2
22329 #: ../fish/guestfish-actions.pod:428
22330 msgid "base64-in"
22331 msgstr ""
22332
22333 #. type: verbatim
22334 #: ../fish/guestfish-actions.pod:430
22335 #, no-wrap
22336 msgid ""
22337 " base64-in (base64file|-) filename\n"
22338 "\n"
22339 msgstr ""
22340
22341 #. type: textblock
22342 #: ../fish/guestfish-actions.pod:435 ../fish/guestfish-actions.pod:444
22343 #: ../fish/guestfish-actions.pod:668 ../fish/guestfish-actions.pod:837
22344 #: ../fish/guestfish-actions.pod:856 ../fish/guestfish-actions.pod:1233
22345 #: ../fish/guestfish-actions.pod:4450 ../fish/guestfish-actions.pod:4462
22346 #: ../fish/guestfish-actions.pod:4473 ../fish/guestfish-actions.pod:4484
22347 #: ../fish/guestfish-actions.pod:4536 ../fish/guestfish-actions.pod:4545
22348 #: ../fish/guestfish-actions.pod:4599 ../fish/guestfish-actions.pod:4622
22349 msgid "Use C<-> instead of a filename to read/write from stdin/stdout."
22350 msgstr ""
22351
22352 #. type: =head2
22353 #: ../fish/guestfish-actions.pod:437
22354 msgid "base64-out"
22355 msgstr ""
22356
22357 #. type: verbatim
22358 #: ../fish/guestfish-actions.pod:439
22359 #, no-wrap
22360 msgid ""
22361 " base64-out filename (base64file|-)\n"
22362 "\n"
22363 msgstr ""
22364
22365 #. type: =head2
22366 #: ../fish/guestfish-actions.pod:446
22367 msgid "blockdev-flushbufs"
22368 msgstr ""
22369
22370 #. type: verbatim
22371 #: ../fish/guestfish-actions.pod:448
22372 #, no-wrap
22373 msgid ""
22374 " blockdev-flushbufs device\n"
22375 "\n"
22376 msgstr ""
22377
22378 #. type: =head2
22379 #: ../fish/guestfish-actions.pod:455
22380 msgid "blockdev-getbsz"
22381 msgstr ""
22382
22383 #. type: verbatim
22384 #: ../fish/guestfish-actions.pod:457
22385 #, no-wrap
22386 msgid ""
22387 " blockdev-getbsz device\n"
22388 "\n"
22389 msgstr ""
22390
22391 #. type: =head2
22392 #: ../fish/guestfish-actions.pod:466
22393 msgid "blockdev-getro"
22394 msgstr ""
22395
22396 #. type: verbatim
22397 #: ../fish/guestfish-actions.pod:468
22398 #, no-wrap
22399 msgid ""
22400 " blockdev-getro device\n"
22401 "\n"
22402 msgstr ""
22403
22404 #. type: =head2
22405 #: ../fish/guestfish-actions.pod:475
22406 msgid "blockdev-getsize64"
22407 msgstr ""
22408
22409 #. type: verbatim
22410 #: ../fish/guestfish-actions.pod:477
22411 #, no-wrap
22412 msgid ""
22413 " blockdev-getsize64 device\n"
22414 "\n"
22415 msgstr ""
22416
22417 #. type: textblock
22418 #: ../fish/guestfish-actions.pod:481
22419 msgid "See also L</blockdev-getsz>."
22420 msgstr ""
22421
22422 #. type: =head2
22423 #: ../fish/guestfish-actions.pod:485
22424 msgid "blockdev-getss"
22425 msgstr ""
22426
22427 #. type: verbatim
22428 #: ../fish/guestfish-actions.pod:487
22429 #, no-wrap
22430 msgid ""
22431 " blockdev-getss device\n"
22432 "\n"
22433 msgstr ""
22434
22435 #. type: textblock
22436 #: ../fish/guestfish-actions.pod:492
22437 msgid ""
22438 "(Note, this is not the size in sectors, use L</blockdev-getsz> for that)."
22439 msgstr ""
22440
22441 #. type: =head2
22442 #: ../fish/guestfish-actions.pod:497
22443 msgid "blockdev-getsz"
22444 msgstr ""
22445
22446 #. type: verbatim
22447 #: ../fish/guestfish-actions.pod:499
22448 #, no-wrap
22449 msgid ""
22450 " blockdev-getsz device\n"
22451 "\n"
22452 msgstr ""
22453
22454 #. type: textblock
22455 #: ../fish/guestfish-actions.pod:504
22456 msgid ""
22457 "See also L</blockdev-getss> for the real sector size of the device, and L</"
22458 "blockdev-getsize64> for the more useful I<size in bytes>."
22459 msgstr ""
22460
22461 #. type: =head2
22462 #: ../fish/guestfish-actions.pod:510
22463 msgid "blockdev-rereadpt"
22464 msgstr ""
22465
22466 #. type: verbatim
22467 #: ../fish/guestfish-actions.pod:512
22468 #, no-wrap
22469 msgid ""
22470 " blockdev-rereadpt device\n"
22471 "\n"
22472 msgstr ""
22473
22474 #. type: =head2
22475 #: ../fish/guestfish-actions.pod:518
22476 msgid "blockdev-setbsz"
22477 msgstr ""
22478
22479 #. type: verbatim
22480 #: ../fish/guestfish-actions.pod:520
22481 #, no-wrap
22482 msgid ""
22483 " blockdev-setbsz device blocksize\n"
22484 "\n"
22485 msgstr ""
22486
22487 #. type: =head2
22488 #: ../fish/guestfish-actions.pod:529
22489 msgid "blockdev-setro"
22490 msgstr ""
22491
22492 #. type: verbatim
22493 #: ../fish/guestfish-actions.pod:531
22494 #, no-wrap
22495 msgid ""
22496 " blockdev-setro device\n"
22497 "\n"
22498 msgstr ""
22499
22500 #. type: =head2
22501 #: ../fish/guestfish-actions.pod:537
22502 msgid "blockdev-setrw"
22503 msgstr ""
22504
22505 #. type: verbatim
22506 #: ../fish/guestfish-actions.pod:539
22507 #, no-wrap
22508 msgid ""
22509 " blockdev-setrw device\n"
22510 "\n"
22511 msgstr ""
22512
22513 #. type: =head2
22514 #: ../fish/guestfish-actions.pod:545
22515 msgid "case-sensitive-path"
22516 msgstr ""
22517
22518 #. type: verbatim
22519 #: ../fish/guestfish-actions.pod:547
22520 #, no-wrap
22521 msgid ""
22522 " case-sensitive-path path\n"
22523 "\n"
22524 msgstr ""
22525
22526 #. type: textblock
22527 #: ../fish/guestfish-actions.pod:571
22528 msgid ""
22529 "Thus L</case-sensitive-path> (\"/Windows/System32\")  might return C<\"/"
22530 "WINDOWS/system32\"> (the exact return value would depend on details of how "
22531 "the directories were originally created under Windows)."
22532 msgstr ""
22533
22534 #. type: textblock
22535 #: ../fish/guestfish-actions.pod:579
22536 msgid "See also L</realpath>."
22537 msgstr ""
22538
22539 #. type: =head2
22540 #: ../fish/guestfish-actions.pod:581
22541 msgid "cat"
22542 msgstr ""
22543
22544 #. type: verbatim
22545 #: ../fish/guestfish-actions.pod:583
22546 #, no-wrap
22547 msgid ""
22548 " cat path\n"
22549 "\n"
22550 msgstr ""
22551
22552 #. type: textblock
22553 #: ../fish/guestfish-actions.pod:587
22554 msgid ""
22555 "Note that this function cannot correctly handle binary files (specifically, "
22556 "files containing C<\\0> character which is treated as end of string).  For "
22557 "those you need to use the L</read-file> or L</download> functions which have "
22558 "a more complex interface."
22559 msgstr ""
22560
22561 #. type: =head2
22562 #: ../fish/guestfish-actions.pod:595
22563 msgid "checksum"
22564 msgstr ""
22565
22566 #. type: verbatim
22567 #: ../fish/guestfish-actions.pod:597
22568 #, no-wrap
22569 msgid ""
22570 " checksum csumtype path\n"
22571 "\n"
22572 msgstr ""
22573
22574 #. type: textblock
22575 #: ../fish/guestfish-actions.pod:640
22576 msgid "To get the checksum for a device, use L</checksum-device>."
22577 msgstr ""
22578
22579 #. type: textblock
22580 #: ../fish/guestfish-actions.pod:642
22581 msgid "To get the checksums for many files, use L</checksums-out>."
22582 msgstr ""
22583
22584 #. type: =head2
22585 #: ../fish/guestfish-actions.pod:644
22586 msgid "checksum-device"
22587 msgstr ""
22588
22589 #. type: verbatim
22590 #: ../fish/guestfish-actions.pod:646
22591 #, no-wrap
22592 msgid ""
22593 " checksum-device csumtype device\n"
22594 "\n"
22595 msgstr ""
22596
22597 #. type: textblock
22598 #: ../fish/guestfish-actions.pod:648
22599 msgid ""
22600 "This call computes the MD5, SHAx or CRC checksum of the contents of the "
22601 "device named C<device>.  For the types of checksums supported see the L</"
22602 "checksum> command."
22603 msgstr ""
22604
22605 #. type: =head2
22606 #: ../fish/guestfish-actions.pod:652
22607 msgid "checksums-out"
22608 msgstr ""
22609
22610 #. type: verbatim
22611 #: ../fish/guestfish-actions.pod:654
22612 #, no-wrap
22613 msgid ""
22614 " checksums-out csumtype directory (sumsfile|-)\n"
22615 "\n"
22616 msgstr ""
22617
22618 #. type: =head2
22619 #: ../fish/guestfish-actions.pod:670
22620 msgid "chmod"
22621 msgstr ""
22622
22623 #. type: verbatim
22624 #: ../fish/guestfish-actions.pod:672
22625 #, no-wrap
22626 msgid ""
22627 " chmod mode path\n"
22628 "\n"
22629 msgstr ""
22630
22631 #. type: =head2
22632 #: ../fish/guestfish-actions.pod:683
22633 msgid "chown"
22634 msgstr ""
22635
22636 #. type: verbatim
22637 #: ../fish/guestfish-actions.pod:685
22638 #, no-wrap
22639 msgid ""
22640 " chown owner group path\n"
22641 "\n"
22642 msgstr ""
22643
22644 #. type: =head2
22645 #: ../fish/guestfish-actions.pod:693
22646 msgid "command"
22647 msgstr ""
22648
22649 #. type: verbatim
22650 #: ../fish/guestfish-actions.pod:695
22651 #, no-wrap
22652 msgid ""
22653 " command 'arguments ...'\n"
22654 "\n"
22655 msgstr ""
22656
22657 #. type: textblock
22658 #: ../fish/guestfish-actions.pod:702
22659 msgid ""
22660 "The single parameter is an argv-style list of arguments.  The first element "
22661 "is the name of the program to run.  Subsequent elements are parameters.  The "
22662 "list must be non-empty (ie. must contain a program name).  Note that the "
22663 "command runs directly, and is I<not> invoked via the shell (see L</sh>)."
22664 msgstr ""
22665
22666 #. type: =head2
22667 #: ../fish/guestfish-actions.pod:730
22668 msgid "command-lines"
22669 msgstr ""
22670
22671 #. type: verbatim
22672 #: ../fish/guestfish-actions.pod:732
22673 #, no-wrap
22674 msgid ""
22675 " command-lines 'arguments ...'\n"
22676 "\n"
22677 msgstr ""
22678
22679 #. type: textblock
22680 #: ../fish/guestfish-actions.pod:734
22681 msgid ""
22682 "This is the same as L</command>, but splits the result into a list of lines."
22683 msgstr ""
22684
22685 #. type: textblock
22686 #: ../fish/guestfish-actions.pod:737
22687 msgid "See also: L</sh-lines>"
22688 msgstr ""
22689
22690 #. type: =head2
22691 #: ../fish/guestfish-actions.pod:742
22692 msgid "config"
22693 msgstr ""
22694
22695 #. type: verbatim
22696 #: ../fish/guestfish-actions.pod:744
22697 #, no-wrap
22698 msgid ""
22699 " config qemuparam qemuvalue\n"
22700 "\n"
22701 msgstr ""
22702
22703 #. type: =head2
22704 #: ../fish/guestfish-actions.pod:755
22705 msgid "copy-size"
22706 msgstr ""
22707
22708 #. type: verbatim
22709 #: ../fish/guestfish-actions.pod:757
22710 #, no-wrap
22711 msgid ""
22712 " copy-size src dest size\n"
22713 "\n"
22714 msgstr ""
22715
22716 #. type: =head2
22717 #: ../fish/guestfish-actions.pod:765
22718 msgid "cp"
22719 msgstr ""
22720
22721 #. type: verbatim
22722 #: ../fish/guestfish-actions.pod:767
22723 #, no-wrap
22724 msgid ""
22725 " cp src dest\n"
22726 "\n"
22727 msgstr ""
22728
22729 #. type: =head2
22730 #: ../fish/guestfish-actions.pod:772
22731 msgid "cp-a"
22732 msgstr ""
22733
22734 #. type: verbatim
22735 #: ../fish/guestfish-actions.pod:774
22736 #, no-wrap
22737 msgid ""
22738 " cp-a src dest\n"
22739 "\n"
22740 msgstr ""
22741
22742 #. type: =head2
22743 #: ../fish/guestfish-actions.pod:779
22744 msgid "dd"
22745 msgstr ""
22746
22747 #. type: verbatim
22748 #: ../fish/guestfish-actions.pod:781
22749 #, no-wrap
22750 msgid ""
22751 " dd src dest\n"
22752 "\n"
22753 msgstr ""
22754
22755 #. type: textblock
22756 #: ../fish/guestfish-actions.pod:788
22757 msgid ""
22758 "If the destination is a device, it must be as large or larger than the "
22759 "source file or device, otherwise the copy will fail.  This command cannot do "
22760 "partial copies (see L</copy-size>)."
22761 msgstr ""
22762
22763 #. type: =head2
22764 #: ../fish/guestfish-actions.pod:792
22765 msgid "df"
22766 msgstr ""
22767
22768 #. type: verbatim
22769 #: ../fish/guestfish-actions.pod:794
22770 #, no-wrap
22771 msgid ""
22772 " df\n"
22773 "\n"
22774 msgstr ""
22775
22776 #. type: textblock
22777 #: ../fish/guestfish-actions.pod:798 ../fish/guestfish-actions.pod:809
22778 msgid ""
22779 "This command is mostly useful for interactive sessions.  It is I<not> "
22780 "intended that you try to parse the output string.  Use L</statvfs> from "
22781 "programs."
22782 msgstr ""
22783
22784 #. type: =head2
22785 #: ../fish/guestfish-actions.pod:802
22786 msgid "df-h"
22787 msgstr ""
22788
22789 #. type: verbatim
22790 #: ../fish/guestfish-actions.pod:804
22791 #, no-wrap
22792 msgid ""
22793 " df-h\n"
22794 "\n"
22795 msgstr ""
22796
22797 #. type: =head2
22798 #: ../fish/guestfish-actions.pod:813
22799 msgid "dmesg"
22800 msgstr ""
22801
22802 #. type: verbatim
22803 #: ../fish/guestfish-actions.pod:815
22804 #, no-wrap
22805 msgid ""
22806 " dmesg\n"
22807 "\n"
22808 msgstr ""
22809
22810 #. type: textblock
22811 #: ../fish/guestfish-actions.pod:821
22812 msgid ""
22813 "Another way to get the same information is to enable verbose messages with "
22814 "L</set-verbose> or by setting the environment variable C<LIBGUESTFS_DEBUG=1> "
22815 "before running the program."
22816 msgstr ""
22817
22818 #. type: =head2
22819 #: ../fish/guestfish-actions.pod:826
22820 msgid "download"
22821 msgstr ""
22822
22823 #. type: verbatim
22824 #: ../fish/guestfish-actions.pod:828
22825 #, no-wrap
22826 msgid ""
22827 " download remotefilename (filename|-)\n"
22828 "\n"
22829 msgstr ""
22830
22831 #. type: textblock
22832 #: ../fish/guestfish-actions.pod:835
22833 msgid "See also L</upload>, L</cat>."
22834 msgstr ""
22835
22836 #. type: =head2
22837 #: ../fish/guestfish-actions.pod:839
22838 msgid "download-offset"
22839 msgstr ""
22840
22841 #. type: verbatim
22842 #: ../fish/guestfish-actions.pod:841
22843 #, no-wrap
22844 msgid ""
22845 " download-offset remotefilename (filename|-) offset size\n"
22846 "\n"
22847 msgstr ""
22848
22849 #. type: textblock
22850 #: ../fish/guestfish-actions.pod:849
22851 msgid ""
22852 "Note that there is no limit on the amount of data that can be downloaded "
22853 "with this call, unlike with L</pread>, and this call always reads the full "
22854 "amount unless an error occurs."
22855 msgstr ""
22856
22857 #. type: textblock
22858 #: ../fish/guestfish-actions.pod:854
22859 msgid "See also L</download>, L</pread>."
22860 msgstr ""
22861
22862 #. type: =head2
22863 #: ../fish/guestfish-actions.pod:858
22864 msgid "drop-caches"
22865 msgstr ""
22866
22867 #. type: verbatim
22868 #: ../fish/guestfish-actions.pod:860
22869 #, no-wrap
22870 msgid ""
22871 " drop-caches whattodrop\n"
22872 "\n"
22873 msgstr ""
22874
22875 #. type: =head2
22876 #: ../fish/guestfish-actions.pod:872
22877 msgid "du"
22878 msgstr ""
22879
22880 #. type: verbatim
22881 #: ../fish/guestfish-actions.pod:874
22882 #, no-wrap
22883 msgid ""
22884 " du path\n"
22885 "\n"
22886 msgstr ""
22887
22888 #. type: =head2
22889 #: ../fish/guestfish-actions.pod:886
22890 msgid "e2fsck-f"
22891 msgstr ""
22892
22893 #. type: verbatim
22894 #: ../fish/guestfish-actions.pod:888
22895 #, no-wrap
22896 msgid ""
22897 " e2fsck-f device\n"
22898 "\n"
22899 msgstr ""
22900
22901 #. type: textblock
22902 #: ../fish/guestfish-actions.pod:894
22903 msgid ""
22904 "This command is only needed because of L</resize2fs> (q.v.).  Normally you "
22905 "should use L</fsck>."
22906 msgstr ""
22907
22908 #. type: =head2
22909 #: ../fish/guestfish-actions.pod:897
22910 msgid "echo-daemon"
22911 msgstr ""
22912
22913 #. type: verbatim
22914 #: ../fish/guestfish-actions.pod:899
22915 #, no-wrap
22916 msgid ""
22917 " echo-daemon 'words ...'\n"
22918 "\n"
22919 msgstr ""
22920
22921 #. type: textblock
22922 #: ../fish/guestfish-actions.pod:906
22923 msgid "See also L</ping-daemon>."
22924 msgstr ""
22925
22926 #. type: =head2
22927 #: ../fish/guestfish-actions.pod:908
22928 msgid "egrep"
22929 msgstr ""
22930
22931 #. type: verbatim
22932 #: ../fish/guestfish-actions.pod:910
22933 #, no-wrap
22934 msgid ""
22935 " egrep regex path\n"
22936 "\n"
22937 msgstr ""
22938
22939 #. type: =head2
22940 #: ../fish/guestfish-actions.pod:918
22941 msgid "egrepi"
22942 msgstr ""
22943
22944 #. type: verbatim
22945 #: ../fish/guestfish-actions.pod:920
22946 #, no-wrap
22947 msgid ""
22948 " egrepi regex path\n"
22949 "\n"
22950 msgstr ""
22951
22952 #. type: =head2
22953 #: ../fish/guestfish-actions.pod:928
22954 msgid "equal"
22955 msgstr ""
22956
22957 #. type: verbatim
22958 #: ../fish/guestfish-actions.pod:930
22959 #, no-wrap
22960 msgid ""
22961 " equal file1 file2\n"
22962 "\n"
22963 msgstr ""
22964
22965 #. type: =head2
22966 #: ../fish/guestfish-actions.pod:937
22967 msgid "exists"
22968 msgstr ""
22969
22970 #. type: verbatim
22971 #: ../fish/guestfish-actions.pod:939
22972 #, no-wrap
22973 msgid ""
22974 " exists path\n"
22975 "\n"
22976 msgstr ""
22977
22978 #. type: textblock
22979 #: ../fish/guestfish-actions.pod:944
22980 msgid "See also L</is-file>, L</is-dir>, L</stat>."
22981 msgstr ""
22982
22983 #. type: =head2
22984 #: ../fish/guestfish-actions.pod:946
22985 msgid "fallocate"
22986 msgstr ""
22987
22988 #. type: verbatim
22989 #: ../fish/guestfish-actions.pod:948
22990 #, no-wrap
22991 msgid ""
22992 " fallocate path len\n"
22993 "\n"
22994 msgstr ""
22995
22996 #. type: =head2
22997 #: ../fish/guestfish-actions.pod:965
22998 msgid "fallocate64"
22999 msgstr ""
23000
23001 #. type: verbatim
23002 #: ../fish/guestfish-actions.pod:967
23003 #, no-wrap
23004 msgid ""
23005 " fallocate64 path len\n"
23006 "\n"
23007 msgstr ""
23008
23009 #. type: textblock
23010 #: ../fish/guestfish-actions.pod:973
23011 msgid ""
23012 "Note that this call allocates disk blocks for the file.  To create a sparse "
23013 "file use L</truncate-size> instead."
23014 msgstr ""
23015
23016 #. type: textblock
23017 #: ../fish/guestfish-actions.pod:976
23018 msgid ""
23019 "The deprecated call L</fallocate> does the same, but owing to an oversight "
23020 "it only allowed 30 bit lengths to be specified, effectively limiting the "
23021 "maximum size of files created through that call to 1GB."
23022 msgstr ""
23023
23024 #. type: =head2
23025 #: ../fish/guestfish-actions.pod:985
23026 msgid "fgrep"
23027 msgstr ""
23028
23029 #. type: verbatim
23030 #: ../fish/guestfish-actions.pod:987
23031 #, no-wrap
23032 msgid ""
23033 " fgrep pattern path\n"
23034 "\n"
23035 msgstr ""
23036
23037 #. type: =head2
23038 #: ../fish/guestfish-actions.pod:995
23039 msgid "fgrepi"
23040 msgstr ""
23041
23042 #. type: verbatim
23043 #: ../fish/guestfish-actions.pod:997
23044 #, no-wrap
23045 msgid ""
23046 " fgrepi pattern path\n"
23047 "\n"
23048 msgstr ""
23049
23050 #. type: =head2
23051 #: ../fish/guestfish-actions.pod:1005
23052 msgid "file"
23053 msgstr ""
23054
23055 #. type: verbatim
23056 #: ../fish/guestfish-actions.pod:1007
23057 #, no-wrap
23058 msgid ""
23059 " file path\n"
23060 "\n"
23061 msgstr ""
23062
23063 #. type: textblock
23064 #: ../fish/guestfish-actions.pod:1019
23065 msgid ""
23066 "This command can also be used on C</dev/> devices (and partitions, LV "
23067 "names).  You can for example use this to determine if a device contains a "
23068 "filesystem, although it's usually better to use L</vfs-type>."
23069 msgstr ""
23070
23071 #. type: =head2
23072 #: ../fish/guestfish-actions.pod:1029
23073 msgid "file-architecture"
23074 msgstr ""
23075
23076 #. type: verbatim
23077 #: ../fish/guestfish-actions.pod:1031
23078 #, no-wrap
23079 msgid ""
23080 " file-architecture filename\n"
23081 "\n"
23082 msgstr ""
23083
23084 #. type: =head2
23085 #: ../fish/guestfish-actions.pod:1134
23086 msgid "filesize"
23087 msgstr ""
23088
23089 #. type: verbatim
23090 #: ../fish/guestfish-actions.pod:1136
23091 #, no-wrap
23092 msgid ""
23093 " filesize file\n"
23094 "\n"
23095 msgstr ""
23096
23097 #. type: textblock
23098 #: ../fish/guestfish-actions.pod:1140
23099 msgid ""
23100 "To get other stats about a file, use L</stat>, L</lstat>, L</is-dir>, L</is-"
23101 "file> etc.  To get the size of block devices, use L</blockdev-getsize64>."
23102 msgstr ""
23103
23104 #. type: =head2
23105 #: ../fish/guestfish-actions.pod:1144
23106 msgid "fill"
23107 msgstr ""
23108
23109 #. type: verbatim
23110 #: ../fish/guestfish-actions.pod:1146
23111 #, no-wrap
23112 msgid ""
23113 " fill c len path\n"
23114 "\n"
23115 msgstr ""
23116
23117 #. type: textblock
23118 #: ../fish/guestfish-actions.pod:1152
23119 msgid ""
23120 "To fill a file with zero bytes (sparsely), it is much more efficient to use "
23121 "L</truncate-size>.  To create a file with a pattern of repeating bytes use "
23122 "L</fill-pattern>."
23123 msgstr ""
23124
23125 #. type: =head2
23126 #: ../fish/guestfish-actions.pod:1157
23127 msgid "fill-pattern"
23128 msgstr ""
23129
23130 #. type: verbatim
23131 #: ../fish/guestfish-actions.pod:1159
23132 #, no-wrap
23133 msgid ""
23134 " fill-pattern pattern len path\n"
23135 "\n"
23136 msgstr ""
23137
23138 #. type: textblock
23139 #: ../fish/guestfish-actions.pod:1161
23140 msgid ""
23141 "This function is like L</fill> except that it creates a new file of length "
23142 "C<len> containing the repeating pattern of bytes in C<pattern>.  The pattern "
23143 "is truncated if necessary to ensure the length of the file is exactly C<len> "
23144 "bytes."
23145 msgstr ""
23146
23147 #. type: =head2
23148 #: ../fish/guestfish-actions.pod:1166
23149 msgid "find"
23150 msgstr ""
23151
23152 #. type: verbatim
23153 #: ../fish/guestfish-actions.pod:1168
23154 #, no-wrap
23155 msgid ""
23156 " find directory\n"
23157 "\n"
23158 msgstr ""
23159
23160 #. type: textblock
23161 #: ../fish/guestfish-actions.pod:1182
23162 msgid "then the returned list from L</find> C</tmp> would be 4 elements:"
23163 msgstr ""
23164
23165 #. type: textblock
23166 #: ../fish/guestfish-actions.pod:1195
23167 msgid "See also L</find0>."
23168 msgstr ""
23169
23170 #. type: =head2
23171 #: ../fish/guestfish-actions.pod:1200
23172 msgid "find0"
23173 msgstr ""
23174
23175 #. type: verbatim
23176 #: ../fish/guestfish-actions.pod:1202
23177 #, no-wrap
23178 msgid ""
23179 " find0 directory (files|-)\n"
23180 "\n"
23181 msgstr ""
23182
23183 #. type: textblock
23184 #: ../fish/guestfish-actions.pod:1208
23185 msgid ""
23186 "This command works the same way as L</find> with the following exceptions:"
23187 msgstr ""
23188
23189 #. type: =head2
23190 #: ../fish/guestfish-actions.pod:1235
23191 msgid "findfs-label"
23192 msgstr ""
23193
23194 #. type: verbatim
23195 #: ../fish/guestfish-actions.pod:1237
23196 #, no-wrap
23197 msgid ""
23198 " findfs-label label\n"
23199 "\n"
23200 msgstr ""
23201
23202 #. type: textblock
23203 #: ../fish/guestfish-actions.pod:1243
23204 msgid "To find the label of a filesystem, use L</vfs-label>."
23205 msgstr ""
23206
23207 #. type: =head2
23208 #: ../fish/guestfish-actions.pod:1245
23209 msgid "findfs-uuid"
23210 msgstr ""
23211
23212 #. type: verbatim
23213 #: ../fish/guestfish-actions.pod:1247
23214 #, no-wrap
23215 msgid ""
23216 " findfs-uuid uuid\n"
23217 "\n"
23218 msgstr ""
23219
23220 #. type: textblock
23221 #: ../fish/guestfish-actions.pod:1253
23222 msgid "To find the UUID of a filesystem, use L</vfs-uuid>."
23223 msgstr ""
23224
23225 #. type: =head2
23226 #: ../fish/guestfish-actions.pod:1255
23227 msgid "fsck"
23228 msgstr ""
23229
23230 #. type: verbatim
23231 #: ../fish/guestfish-actions.pod:1257
23232 #, no-wrap
23233 msgid ""
23234 " fsck fstype device\n"
23235 "\n"
23236 msgstr ""
23237
23238 #. type: =head2
23239 #: ../fish/guestfish-actions.pod:1287
23240 msgid "get-append"
23241 msgstr ""
23242
23243 #. type: verbatim
23244 #: ../fish/guestfish-actions.pod:1289
23245 #, no-wrap
23246 msgid ""
23247 " get-append\n"
23248 "\n"
23249 msgstr ""
23250
23251 #. type: =head2
23252 #: ../fish/guestfish-actions.pod:1296
23253 msgid "get-attach-method"
23254 msgstr ""
23255
23256 #. type: verbatim
23257 #: ../fish/guestfish-actions.pod:1298
23258 #, no-wrap
23259 msgid ""
23260 " get-attach-method\n"
23261 "\n"
23262 msgstr ""
23263
23264 #. type: textblock
23265 #: ../fish/guestfish-actions.pod:1300
23266 msgid "Return the current attach method.  See L</set-attach-method>."
23267 msgstr ""
23268
23269 #. type: =head2
23270 #: ../fish/guestfish-actions.pod:1302
23271 msgid "get-autosync"
23272 msgstr ""
23273
23274 #. type: verbatim
23275 #: ../fish/guestfish-actions.pod:1304
23276 #, no-wrap
23277 msgid ""
23278 " get-autosync\n"
23279 "\n"
23280 msgstr ""
23281
23282 #. type: =head2
23283 #: ../fish/guestfish-actions.pod:1308
23284 msgid "get-direct"
23285 msgstr ""
23286
23287 #. type: verbatim
23288 #: ../fish/guestfish-actions.pod:1310
23289 #, no-wrap
23290 msgid ""
23291 " get-direct\n"
23292 "\n"
23293 msgstr ""
23294
23295 #. type: =head2
23296 #: ../fish/guestfish-actions.pod:1314
23297 msgid "get-e2label"
23298 msgstr ""
23299
23300 #. type: verbatim
23301 #: ../fish/guestfish-actions.pod:1316
23302 #, no-wrap
23303 msgid ""
23304 " get-e2label device\n"
23305 "\n"
23306 msgstr ""
23307
23308 #. type: =head2
23309 #: ../fish/guestfish-actions.pod:1328
23310 msgid "get-e2uuid"
23311 msgstr ""
23312
23313 #. type: verbatim
23314 #: ../fish/guestfish-actions.pod:1330
23315 #, no-wrap
23316 msgid ""
23317 " get-e2uuid device\n"
23318 "\n"
23319 msgstr ""
23320
23321 #. type: =head2
23322 #: ../fish/guestfish-actions.pod:1342
23323 msgid "get-memsize"
23324 msgstr ""
23325
23326 #. type: verbatim
23327 #: ../fish/guestfish-actions.pod:1344
23328 #, no-wrap
23329 msgid ""
23330 " get-memsize\n"
23331 "\n"
23332 msgstr ""
23333
23334 #. type: textblock
23335 #: ../fish/guestfish-actions.pod:1349
23336 msgid ""
23337 "If L</set-memsize> was not called on this handle, and if "
23338 "C<LIBGUESTFS_MEMSIZE> was not set, then this returns the compiled-in default "
23339 "value for memsize."
23340 msgstr ""
23341
23342 #. type: =head2
23343 #: ../fish/guestfish-actions.pod:1356
23344 msgid "get-network"
23345 msgstr ""
23346
23347 #. type: verbatim
23348 #: ../fish/guestfish-actions.pod:1358
23349 #, no-wrap
23350 msgid ""
23351 " get-network\n"
23352 "\n"
23353 msgstr ""
23354
23355 #. type: =head2
23356 #: ../fish/guestfish-actions.pod:1362
23357 msgid "get-path"
23358 msgstr ""
23359
23360 #. type: verbatim
23361 #: ../fish/guestfish-actions.pod:1364
23362 #, no-wrap
23363 msgid ""
23364 " get-path\n"
23365 "\n"
23366 msgstr ""
23367
23368 #. type: =head2
23369 #: ../fish/guestfish-actions.pod:1371
23370 msgid "get-pid"
23371 msgstr ""
23372
23373 #. type: =head2
23374 #: ../fish/guestfish-actions.pod:1373
23375 msgid "pid"
23376 msgstr ""
23377
23378 #. type: verbatim
23379 #: ../fish/guestfish-actions.pod:1375
23380 #, no-wrap
23381 msgid ""
23382 " get-pid\n"
23383 "\n"
23384 msgstr ""
23385
23386 #. type: =head2
23387 #: ../fish/guestfish-actions.pod:1382
23388 msgid "get-qemu"
23389 msgstr ""
23390
23391 #. type: verbatim
23392 #: ../fish/guestfish-actions.pod:1384
23393 #, no-wrap
23394 msgid ""
23395 " get-qemu\n"
23396 "\n"
23397 msgstr ""
23398
23399 #. type: =head2
23400 #: ../fish/guestfish-actions.pod:1391
23401 msgid "get-recovery-proc"
23402 msgstr ""
23403
23404 #. type: verbatim
23405 #: ../fish/guestfish-actions.pod:1393
23406 #, no-wrap
23407 msgid ""
23408 " get-recovery-proc\n"
23409 "\n"
23410 msgstr ""
23411
23412 #. type: =head2
23413 #: ../fish/guestfish-actions.pod:1397
23414 msgid "get-selinux"
23415 msgstr ""
23416
23417 #. type: verbatim
23418 #: ../fish/guestfish-actions.pod:1399
23419 #, no-wrap
23420 msgid ""
23421 " get-selinux\n"
23422 "\n"
23423 msgstr ""
23424
23425 #. type: textblock
23426 #: ../fish/guestfish-actions.pod:1401
23427 msgid ""
23428 "This returns the current setting of the selinux flag which is passed to the "
23429 "appliance at boot time.  See L</set-selinux>."
23430 msgstr ""
23431
23432 #. type: =head2
23433 #: ../fish/guestfish-actions.pod:1407
23434 msgid "get-state"
23435 msgstr ""
23436
23437 #. type: verbatim
23438 #: ../fish/guestfish-actions.pod:1409
23439 #, no-wrap
23440 msgid ""
23441 " get-state\n"
23442 "\n"
23443 msgstr ""
23444
23445 #. type: =head2
23446 #: ../fish/guestfish-actions.pod:1416
23447 msgid "get-trace"
23448 msgstr ""
23449
23450 #. type: verbatim
23451 #: ../fish/guestfish-actions.pod:1418
23452 #, no-wrap
23453 msgid ""
23454 " get-trace\n"
23455 "\n"
23456 msgstr ""
23457
23458 #. type: =head2
23459 #: ../fish/guestfish-actions.pod:1422
23460 msgid "get-umask"
23461 msgstr ""
23462
23463 #. type: verbatim
23464 #: ../fish/guestfish-actions.pod:1424
23465 #, no-wrap
23466 msgid ""
23467 " get-umask\n"
23468 "\n"
23469 msgstr ""
23470
23471 #. type: textblock
23472 #: ../fish/guestfish-actions.pod:1426
23473 msgid ""
23474 "Return the current umask.  By default the umask is C<022> unless it has been "
23475 "set by calling L</umask>."
23476 msgstr ""
23477
23478 #. type: =head2
23479 #: ../fish/guestfish-actions.pod:1429
23480 msgid "get-verbose"
23481 msgstr ""
23482
23483 #. type: verbatim
23484 #: ../fish/guestfish-actions.pod:1431
23485 #, no-wrap
23486 msgid ""
23487 " get-verbose\n"
23488 "\n"
23489 msgstr ""
23490
23491 #. type: =head2
23492 #: ../fish/guestfish-actions.pod:1435
23493 msgid "getcon"
23494 msgstr ""
23495
23496 #. type: verbatim
23497 #: ../fish/guestfish-actions.pod:1437
23498 #, no-wrap
23499 msgid ""
23500 " getcon\n"
23501 "\n"
23502 msgstr ""
23503
23504 #. type: textblock
23505 #: ../fish/guestfish-actions.pod:1441
23506 msgid "See the documentation about SELINUX in L<guestfs(3)>, and L</setcon>"
23507 msgstr ""
23508
23509 #. type: =head2
23510 #: ../fish/guestfish-actions.pod:1444
23511 msgid "getxattr"
23512 msgstr ""
23513
23514 #. type: verbatim
23515 #: ../fish/guestfish-actions.pod:1446
23516 #, no-wrap
23517 msgid ""
23518 " getxattr path name\n"
23519 "\n"
23520 msgstr ""
23521
23522 #. type: textblock
23523 #: ../fish/guestfish-actions.pod:1448
23524 msgid ""
23525 "Get a single extended attribute from file C<path> named C<name>.  This call "
23526 "follows symlinks.  If you want to lookup an extended attribute for the "
23527 "symlink itself, use L</lgetxattr>."
23528 msgstr ""
23529
23530 #. type: textblock
23531 #: ../fish/guestfish-actions.pod:1452 ../fish/guestfish-actions.pod:2458
23532 msgid ""
23533 "Normally it is better to get all extended attributes from a file in one go "
23534 "by calling L</getxattrs>.  However some Linux filesystem implementations are "
23535 "buggy and do not provide a way to list out attributes.  For these "
23536 "filesystems (notably ntfs-3g)  you have to know the names of the extended "
23537 "attributes you want in advance and call this function."
23538 msgstr ""
23539
23540 #. type: textblock
23541 #: ../fish/guestfish-actions.pod:1462
23542 msgid "See also: L</getxattrs>, L</lgetxattr>, L<attr(5)>."
23543 msgstr ""
23544
23545 #. type: =head2
23546 #: ../fish/guestfish-actions.pod:1464
23547 msgid "getxattrs"
23548 msgstr ""
23549
23550 #. type: verbatim
23551 #: ../fish/guestfish-actions.pod:1466
23552 #, no-wrap
23553 msgid ""
23554 " getxattrs path\n"
23555 "\n"
23556 msgstr ""
23557
23558 #. type: textblock
23559 #: ../fish/guestfish-actions.pod:1474
23560 msgid "See also: L</lgetxattrs>, L<attr(5)>."
23561 msgstr ""
23562
23563 #. type: =head2
23564 #: ../fish/guestfish-actions.pod:1476
23565 msgid "glob-expand"
23566 msgstr ""
23567
23568 #. type: verbatim
23569 #: ../fish/guestfish-actions.pod:1478
23570 #, no-wrap
23571 msgid ""
23572 " glob-expand pattern\n"
23573 "\n"
23574 msgstr ""
23575
23576 #. type: =head2
23577 #: ../fish/guestfish-actions.pod:1491
23578 msgid "grep"
23579 msgstr ""
23580
23581 #. type: verbatim
23582 #: ../fish/guestfish-actions.pod:1493
23583 #, no-wrap
23584 msgid ""
23585 " grep regex path\n"
23586 "\n"
23587 msgstr ""
23588
23589 #. type: =head2
23590 #: ../fish/guestfish-actions.pod:1501
23591 msgid "grepi"
23592 msgstr ""
23593
23594 #. type: verbatim
23595 #: ../fish/guestfish-actions.pod:1503
23596 #, no-wrap
23597 msgid ""
23598 " grepi regex path\n"
23599 "\n"
23600 msgstr ""
23601
23602 #. type: =head2
23603 #: ../fish/guestfish-actions.pod:1511
23604 msgid "grub-install"
23605 msgstr ""
23606
23607 #. type: verbatim
23608 #: ../fish/guestfish-actions.pod:1513
23609 #, no-wrap
23610 msgid ""
23611 " grub-install root device\n"
23612 "\n"
23613 msgstr ""
23614
23615 #. type: =head2
23616 #: ../fish/guestfish-actions.pod:1529
23617 msgid "head"
23618 msgstr ""
23619
23620 #. type: verbatim
23621 #: ../fish/guestfish-actions.pod:1531
23622 #, no-wrap
23623 msgid ""
23624 " head path\n"
23625 "\n"
23626 msgstr ""
23627
23628 #. type: =head2
23629 #: ../fish/guestfish-actions.pod:1539
23630 msgid "head-n"
23631 msgstr ""
23632
23633 #. type: verbatim
23634 #: ../fish/guestfish-actions.pod:1541
23635 #, no-wrap
23636 msgid ""
23637 " head-n nrlines path\n"
23638 "\n"
23639 msgstr ""
23640
23641 #. type: =head2
23642 #: ../fish/guestfish-actions.pod:1554
23643 msgid "hexdump"
23644 msgstr ""
23645
23646 #. type: verbatim
23647 #: ../fish/guestfish-actions.pod:1556
23648 #, no-wrap
23649 msgid ""
23650 " hexdump path\n"
23651 "\n"
23652 msgstr ""
23653
23654 #. type: =head2
23655 #: ../fish/guestfish-actions.pod:1564
23656 msgid "initrd-cat"
23657 msgstr ""
23658
23659 #. type: verbatim
23660 #: ../fish/guestfish-actions.pod:1566
23661 #, no-wrap
23662 msgid ""
23663 " initrd-cat initrdpath filename\n"
23664 "\n"
23665 msgstr ""
23666
23667 #. type: textblock
23668 #: ../fish/guestfish-actions.pod:1578
23669 msgid "See also L</initrd-list>."
23670 msgstr ""
23671
23672 #. type: =head2
23673 #: ../fish/guestfish-actions.pod:1583
23674 msgid "initrd-list"
23675 msgstr ""
23676
23677 #. type: verbatim
23678 #: ../fish/guestfish-actions.pod:1585
23679 #, no-wrap
23680 msgid ""
23681 " initrd-list path\n"
23682 "\n"
23683 msgstr ""
23684
23685 #. type: =head2
23686 #: ../fish/guestfish-actions.pod:1597
23687 msgid "inotify-add-watch"
23688 msgstr ""
23689
23690 #. type: verbatim
23691 #: ../fish/guestfish-actions.pod:1599
23692 #, no-wrap
23693 msgid ""
23694 " inotify-add-watch path mask\n"
23695 "\n"
23696 msgstr ""
23697
23698 #. type: =head2
23699 #: ../fish/guestfish-actions.pod:1611
23700 msgid "inotify-close"
23701 msgstr ""
23702
23703 #. type: verbatim
23704 #: ../fish/guestfish-actions.pod:1613
23705 #, no-wrap
23706 msgid ""
23707 " inotify-close\n"
23708 "\n"
23709 msgstr ""
23710
23711 #. type: =head2
23712 #: ../fish/guestfish-actions.pod:1619
23713 msgid "inotify-files"
23714 msgstr ""
23715
23716 #. type: verbatim
23717 #: ../fish/guestfish-actions.pod:1621
23718 #, no-wrap
23719 msgid ""
23720 " inotify-files\n"
23721 "\n"
23722 msgstr ""
23723
23724 #. type: textblock
23725 #: ../fish/guestfish-actions.pod:1623
23726 msgid ""
23727 "This function is a helpful wrapper around L</inotify-read> which just "
23728 "returns a list of pathnames of objects that were touched.  The returned "
23729 "pathnames are sorted and deduplicated."
23730 msgstr ""
23731
23732 #. type: =head2
23733 #: ../fish/guestfish-actions.pod:1627
23734 msgid "inotify-init"
23735 msgstr ""
23736
23737 #. type: verbatim
23738 #: ../fish/guestfish-actions.pod:1629
23739 #, no-wrap
23740 msgid ""
23741 " inotify-init maxevents\n"
23742 "\n"
23743 msgstr ""
23744
23745 #. type: textblock
23746 #: ../fish/guestfish-actions.pod:1635
23747 msgid ""
23748 "C<maxevents> is the maximum number of events which will be queued up between "
23749 "calls to L</inotify-read> or L</inotify-files>.  If this is passed as C<0>, "
23750 "then the kernel (or previously set)  default is used.  For Linux 2.6.29 the "
23751 "default was 16384 events.  Beyond this limit, the kernel throws away events, "
23752 "but records the fact that it threw them away by setting a flag "
23753 "C<IN_Q_OVERFLOW> in the returned structure list (see L</inotify-read>)."
23754 msgstr ""
23755
23756 #. type: textblock
23757 #: ../fish/guestfish-actions.pod:1645
23758 msgid ""
23759 "Before any events are generated, you have to add some watches to the "
23760 "internal watch list.  See: L</inotify-add-watch>, L</inotify-rm-watch> and "
23761 "L</inotify-watch-all>."
23762 msgstr ""
23763
23764 #. type: textblock
23765 #: ../fish/guestfish-actions.pod:1651
23766 msgid ""
23767 "Queued up events should be read periodically by calling L</inotify-read> (or "
23768 "L</inotify-files> which is just a helpful wrapper around L</inotify-read>).  "
23769 "If you don't read the events out often enough then you risk the internal "
23770 "queue overflowing."
23771 msgstr ""
23772
23773 #. type: textblock
23774 #: ../fish/guestfish-actions.pod:1658
23775 msgid ""
23776 "The handle should be closed after use by calling L</inotify-close>.  This "
23777 "also removes any watches automatically."
23778 msgstr ""
23779
23780 #. type: =head2
23781 #: ../fish/guestfish-actions.pod:1667
23782 msgid "inotify-read"
23783 msgstr ""
23784
23785 #. type: verbatim
23786 #: ../fish/guestfish-actions.pod:1669
23787 #, no-wrap
23788 msgid ""
23789 " inotify-read\n"
23790 "\n"
23791 msgstr ""
23792
23793 #. type: =head2
23794 #: ../fish/guestfish-actions.pod:1682
23795 msgid "inotify-rm-watch"
23796 msgstr ""
23797
23798 #. type: verbatim
23799 #: ../fish/guestfish-actions.pod:1684
23800 #, no-wrap
23801 msgid ""
23802 " inotify-rm-watch wd\n"
23803 "\n"
23804 msgstr ""
23805
23806 #. type: textblock
23807 #: ../fish/guestfish-actions.pod:1686
23808 msgid "Remove a previously defined inotify watch.  See L</inotify-add-watch>."
23809 msgstr ""
23810
23811 #. type: =head2
23812 #: ../fish/guestfish-actions.pod:1689
23813 msgid "inspect-get-arch"
23814 msgstr ""
23815
23816 #. type: verbatim
23817 #: ../fish/guestfish-actions.pod:1691
23818 #, no-wrap
23819 msgid ""
23820 " inspect-get-arch root\n"
23821 "\n"
23822 msgstr ""
23823
23824 #. type: textblock
23825 #: ../fish/guestfish-actions.pod:1693 ../fish/guestfish-actions.pod:1709
23826 #: ../fish/guestfish-actions.pod:1795 ../fish/guestfish-actions.pod:1831
23827 #: ../fish/guestfish-actions.pod:1849 ../fish/guestfish-actions.pod:1883
23828 #: ../fish/guestfish-actions.pod:1898 ../fish/guestfish-actions.pod:1919
23829 #: ../fish/guestfish-actions.pod:1934 ../fish/guestfish-actions.pod:1967
23830 #: ../fish/guestfish-actions.pod:1989 ../fish/guestfish-actions.pod:2013
23831 #: ../fish/guestfish-actions.pod:2030 ../fish/guestfish-actions.pod:2073
23832 #: ../fish/guestfish-actions.pod:2108 ../fish/guestfish-actions.pod:2124
23833 #: ../fish/guestfish-actions.pod:2140 ../fish/guestfish-actions.pod:2153
23834 #: ../fish/guestfish-actions.pod:2166 ../fish/guestfish-actions.pod:2181
23835 msgid ""
23836 "This function should only be called with a root device string as returned by "
23837 "L</inspect-os>."
23838 msgstr ""
23839
23840 #. type: textblock
23841 #: ../fish/guestfish-actions.pod:1696
23842 msgid ""
23843 "This returns the architecture of the inspected operating system.  The "
23844 "possible return values are listed under L</file-architecture>."
23845 msgstr ""
23846
23847 #. type: =head2
23848 #: ../fish/guestfish-actions.pod:1705
23849 msgid "inspect-get-distro"
23850 msgstr ""
23851
23852 #. type: verbatim
23853 #: ../fish/guestfish-actions.pod:1707
23854 #, no-wrap
23855 msgid ""
23856 " inspect-get-distro root\n"
23857 "\n"
23858 msgstr ""
23859
23860 #. type: =head2
23861 #: ../fish/guestfish-actions.pod:1791
23862 msgid "inspect-get-drive-mappings"
23863 msgstr ""
23864
23865 #. type: verbatim
23866 #: ../fish/guestfish-actions.pod:1793
23867 #, no-wrap
23868 msgid ""
23869 " inspect-get-drive-mappings root\n"
23870 "\n"
23871 msgstr ""
23872
23873 #. type: textblock
23874 #: ../fish/guestfish-actions.pod:1823
23875 msgid ""
23876 "Please read L<guestfs(3)/INSPECTION> for more details.  See also L</inspect-"
23877 "get-mountpoints>, L</inspect-get-filesystems>."
23878 msgstr ""
23879
23880 #. type: =head2
23881 #: ../fish/guestfish-actions.pod:1827
23882 msgid "inspect-get-filesystems"
23883 msgstr ""
23884
23885 #. type: verbatim
23886 #: ../fish/guestfish-actions.pod:1829
23887 #, no-wrap
23888 msgid ""
23889 " inspect-get-filesystems root\n"
23890 "\n"
23891 msgstr ""
23892
23893 #. type: textblock
23894 #: ../fish/guestfish-actions.pod:1842
23895 msgid ""
23896 "Please read L<guestfs(3)/INSPECTION> for more details.  See also L</inspect-"
23897 "get-mountpoints>."
23898 msgstr ""
23899
23900 #. type: =head2
23901 #: ../fish/guestfish-actions.pod:1845
23902 msgid "inspect-get-format"
23903 msgstr ""
23904
23905 #. type: verbatim
23906 #: ../fish/guestfish-actions.pod:1847
23907 #, no-wrap
23908 msgid ""
23909 " inspect-get-format root\n"
23910 "\n"
23911 msgstr ""
23912
23913 #. type: =head2
23914 #: ../fish/guestfish-actions.pod:1879
23915 msgid "inspect-get-hostname"
23916 msgstr ""
23917
23918 #. type: verbatim
23919 #: ../fish/guestfish-actions.pod:1881
23920 #, no-wrap
23921 msgid ""
23922 " inspect-get-hostname root\n"
23923 "\n"
23924 msgstr ""
23925
23926 #. type: =head2
23927 #: ../fish/guestfish-actions.pod:1894
23928 msgid "inspect-get-major-version"
23929 msgstr ""
23930
23931 #. type: verbatim
23932 #: ../fish/guestfish-actions.pod:1896
23933 #, no-wrap
23934 msgid ""
23935 " inspect-get-major-version root\n"
23936 "\n"
23937 msgstr ""
23938
23939 #. type: =head2
23940 #: ../fish/guestfish-actions.pod:1915
23941 msgid "inspect-get-minor-version"
23942 msgstr ""
23943
23944 #. type: verbatim
23945 #: ../fish/guestfish-actions.pod:1917
23946 #, no-wrap
23947 msgid ""
23948 " inspect-get-minor-version root\n"
23949 "\n"
23950 msgstr ""
23951
23952 #. type: textblock
23953 #: ../fish/guestfish-actions.pod:1927
23954 msgid ""
23955 "Please read L<guestfs(3)/INSPECTION> for more details.  See also L</inspect-"
23956 "get-major-version>."
23957 msgstr ""
23958
23959 #. type: =head2
23960 #: ../fish/guestfish-actions.pod:1930
23961 msgid "inspect-get-mountpoints"
23962 msgstr ""
23963
23964 #. type: verbatim
23965 #: ../fish/guestfish-actions.pod:1932
23966 #, no-wrap
23967 msgid ""
23968 " inspect-get-mountpoints root\n"
23969 "\n"
23970 msgstr ""
23971
23972 #. type: textblock
23973 #: ../fish/guestfish-actions.pod:1954
23974 msgid ""
23975 "For operating systems like Windows which still use drive letters, this call "
23976 "will only return an entry for the first drive \"mounted on\" C</>.  For "
23977 "information about the mapping of drive letters to partitions, see L</inspect-"
23978 "get-drive-mappings>."
23979 msgstr ""
23980
23981 #. type: textblock
23982 #: ../fish/guestfish-actions.pod:1960
23983 msgid ""
23984 "Please read L<guestfs(3)/INSPECTION> for more details.  See also L</inspect-"
23985 "get-filesystems>."
23986 msgstr ""
23987
23988 #. type: =head2
23989 #: ../fish/guestfish-actions.pod:1963
23990 msgid "inspect-get-package-format"
23991 msgstr ""
23992
23993 #. type: verbatim
23994 #: ../fish/guestfish-actions.pod:1965
23995 #, no-wrap
23996 msgid ""
23997 " inspect-get-package-format root\n"
23998 "\n"
23999 msgstr ""
24000
24001 #. type: textblock
24002 #: ../fish/guestfish-actions.pod:1970
24003 msgid ""
24004 "This function and L</inspect-get-package-management> return the package "
24005 "format and package management tool used by the inspected operating system.  "
24006 "For example for Fedora these functions would return C<rpm> (package format) "
24007 "and C<yum> (package management)."
24008 msgstr ""
24009
24010 #. type: =head2
24011 #: ../fish/guestfish-actions.pod:1985
24012 msgid "inspect-get-package-management"
24013 msgstr ""
24014
24015 #. type: verbatim
24016 #: ../fish/guestfish-actions.pod:1987
24017 #, no-wrap
24018 msgid ""
24019 " inspect-get-package-management root\n"
24020 "\n"
24021 msgstr ""
24022
24023 #. type: textblock
24024 #: ../fish/guestfish-actions.pod:1992
24025 msgid ""
24026 "L</inspect-get-package-format> and this function return the package format "
24027 "and package management tool used by the inspected operating system.  For "
24028 "example for Fedora these functions would return C<rpm> (package format) and "
24029 "C<yum> (package management)."
24030 msgstr ""
24031
24032 #. type: =head2
24033 #: ../fish/guestfish-actions.pod:2009
24034 msgid "inspect-get-product-name"
24035 msgstr ""
24036
24037 #. type: verbatim
24038 #: ../fish/guestfish-actions.pod:2011
24039 #, no-wrap
24040 msgid ""
24041 " inspect-get-product-name root\n"
24042 "\n"
24043 msgstr ""
24044
24045 #. type: =head2
24046 #: ../fish/guestfish-actions.pod:2026
24047 msgid "inspect-get-product-variant"
24048 msgstr ""
24049
24050 #. type: verbatim
24051 #: ../fish/guestfish-actions.pod:2028
24052 #, no-wrap
24053 msgid ""
24054 " inspect-get-product-variant root\n"
24055 "\n"
24056 msgstr ""
24057
24058 #. type: textblock
24059 #: ../fish/guestfish-actions.pod:2052
24060 msgid ""
24061 "Please read L<guestfs(3)/INSPECTION> for more details.  See also L</inspect-"
24062 "get-product-name>, L</inspect-get-major-version>."
24063 msgstr ""
24064
24065 #. type: =head2
24066 #: ../fish/guestfish-actions.pod:2056
24067 msgid "inspect-get-roots"
24068 msgstr ""
24069
24070 #. type: verbatim
24071 #: ../fish/guestfish-actions.pod:2058
24072 #, no-wrap
24073 msgid ""
24074 " inspect-get-roots\n"
24075 "\n"
24076 msgstr ""
24077
24078 #. type: textblock
24079 #: ../fish/guestfish-actions.pod:2060
24080 msgid ""
24081 "This function is a convenient way to get the list of root devices, as "
24082 "returned from a previous call to L</inspect-os>, but without redoing the "
24083 "whole inspection process."
24084 msgstr ""
24085
24086 #. type: textblock
24087 #: ../fish/guestfish-actions.pod:2064
24088 msgid ""
24089 "This returns an empty list if either no root devices were found or the "
24090 "caller has not called L</inspect-os>."
24091 msgstr ""
24092
24093 #. type: =head2
24094 #: ../fish/guestfish-actions.pod:2069
24095 msgid "inspect-get-type"
24096 msgstr ""
24097
24098 #. type: verbatim
24099 #: ../fish/guestfish-actions.pod:2071
24100 #, no-wrap
24101 msgid ""
24102 " inspect-get-type root\n"
24103 "\n"
24104 msgstr ""
24105
24106 #. type: =head2
24107 #: ../fish/guestfish-actions.pod:2104
24108 msgid "inspect-get-windows-current-control-set"
24109 msgstr ""
24110
24111 #. type: verbatim
24112 #: ../fish/guestfish-actions.pod:2106
24113 #, no-wrap
24114 msgid ""
24115 " inspect-get-windows-current-control-set root\n"
24116 "\n"
24117 msgstr ""
24118
24119 #. type: =head2
24120 #: ../fish/guestfish-actions.pod:2120
24121 msgid "inspect-get-windows-systemroot"
24122 msgstr ""
24123
24124 #. type: verbatim
24125 #: ../fish/guestfish-actions.pod:2122
24126 #, no-wrap
24127 msgid ""
24128 " inspect-get-windows-systemroot root\n"
24129 "\n"
24130 msgstr ""
24131
24132 #. type: =head2
24133 #: ../fish/guestfish-actions.pod:2136
24134 msgid "inspect-is-live"
24135 msgstr ""
24136
24137 #. type: verbatim
24138 #: ../fish/guestfish-actions.pod:2138
24139 #, no-wrap
24140 msgid ""
24141 " inspect-is-live root\n"
24142 "\n"
24143 msgstr ""
24144
24145 #. type: textblock
24146 #: ../fish/guestfish-actions.pod:2143
24147 msgid ""
24148 "If L</inspect-get-format> returns C<installer> (this is an install disk), "
24149 "then this returns true if a live image was detected on the disk."
24150 msgstr ""
24151
24152 #. type: =head2
24153 #: ../fish/guestfish-actions.pod:2149
24154 msgid "inspect-is-multipart"
24155 msgstr ""
24156
24157 #. type: verbatim
24158 #: ../fish/guestfish-actions.pod:2151
24159 #, no-wrap
24160 msgid ""
24161 " inspect-is-multipart root\n"
24162 "\n"
24163 msgstr ""
24164
24165 #. type: textblock
24166 #: ../fish/guestfish-actions.pod:2156
24167 msgid ""
24168 "If L</inspect-get-format> returns C<installer> (this is an install disk), "
24169 "then this returns true if the disk is part of a set."
24170 msgstr ""
24171
24172 #. type: =head2
24173 #: ../fish/guestfish-actions.pod:2162
24174 msgid "inspect-is-netinst"
24175 msgstr ""
24176
24177 #. type: verbatim
24178 #: ../fish/guestfish-actions.pod:2164
24179 #, no-wrap
24180 msgid ""
24181 " inspect-is-netinst root\n"
24182 "\n"
24183 msgstr ""
24184
24185 #. type: textblock
24186 #: ../fish/guestfish-actions.pod:2169
24187 msgid ""
24188 "If L</inspect-get-format> returns C<installer> (this is an install disk), "
24189 "then this returns true if the disk is a network installer, ie. not a self-"
24190 "contained install CD but one which is likely to require network access to "
24191 "complete the install."
24192 msgstr ""
24193
24194 #. type: =head2
24195 #: ../fish/guestfish-actions.pod:2177
24196 msgid "inspect-list-applications"
24197 msgstr ""
24198
24199 #. type: verbatim
24200 #: ../fish/guestfish-actions.pod:2179
24201 #, no-wrap
24202 msgid ""
24203 " inspect-list-applications root\n"
24204 "\n"
24205 msgstr ""
24206
24207 #. type: textblock
24208 #: ../fish/guestfish-actions.pod:2186
24209 msgid ""
24210 "I<Note:> This call works differently from other parts of the inspection "
24211 "API.  You have to call L</inspect-os>, then L</inspect-get-mountpoints>, "
24212 "then mount up the disks, before calling this.  Listing applications is a "
24213 "significantly more difficult operation which requires access to the full "
24214 "filesystem.  Also note that unlike the other L</inspect-get-*> calls which "
24215 "are just returning data cached in the libguestfs handle, this call actually "
24216 "reads parts of the mounted filesystems during the call."
24217 msgstr ""
24218
24219 #. type: =head2
24220 #: ../fish/guestfish-actions.pod:2276
24221 msgid "inspect-os"
24222 msgstr ""
24223
24224 #. type: verbatim
24225 #: ../fish/guestfish-actions.pod:2278
24226 #, no-wrap
24227 msgid ""
24228 " inspect-os\n"
24229 "\n"
24230 msgstr ""
24231
24232 #. type: textblock
24233 #: ../fish/guestfish-actions.pod:2293
24234 msgid ""
24235 "You can pass the root string(s) returned to other L</inspect-get-*> "
24236 "functions in order to query further information about each operating system, "
24237 "such as the name and version."
24238 msgstr ""
24239
24240 #. type: textblock
24241 #: ../fish/guestfish-actions.pod:2298
24242 msgid ""
24243 "This function uses other libguestfs features such as L</mount-ro> and L</"
24244 "umount-all> in order to mount and unmount filesystems and look at the "
24245 "contents.  This should be called with no disks currently mounted.  The "
24246 "function may also use Augeas, so any existing Augeas handle will be closed."
24247 msgstr ""
24248
24249 #. type: textblock
24250 #: ../fish/guestfish-actions.pod:2310 ../fish/guestfish-actions.pod:2486
24251 #: ../fish/guestfish-actions.pod:2532
24252 msgid "See also L</list-filesystems>."
24253 msgstr ""
24254
24255 #. type: =head2
24256 #: ../fish/guestfish-actions.pod:2312
24257 msgid "is-blockdev"
24258 msgstr ""
24259
24260 #. type: verbatim
24261 #: ../fish/guestfish-actions.pod:2314
24262 #, no-wrap
24263 msgid ""
24264 " is-blockdev path\n"
24265 "\n"
24266 msgstr ""
24267
24268 #. type: textblock
24269 #: ../fish/guestfish-actions.pod:2319 ../fish/guestfish-actions.pod:2337
24270 #: ../fish/guestfish-actions.pod:2356 ../fish/guestfish-actions.pod:2365
24271 #: ../fish/guestfish-actions.pod:2375 ../fish/guestfish-actions.pod:2409
24272 #: ../fish/guestfish-actions.pod:2418
24273 msgid "See also L</stat>."
24274 msgstr ""
24275
24276 #. type: =head2
24277 #: ../fish/guestfish-actions.pod:2321
24278 msgid "is-busy"
24279 msgstr ""
24280
24281 #. type: verbatim
24282 #: ../fish/guestfish-actions.pod:2323
24283 #, no-wrap
24284 msgid ""
24285 " is-busy\n"
24286 "\n"
24287 msgstr ""
24288
24289 #. type: =head2
24290 #: ../fish/guestfish-actions.pod:2330
24291 msgid "is-chardev"
24292 msgstr ""
24293
24294 #. type: verbatim
24295 #: ../fish/guestfish-actions.pod:2332
24296 #, no-wrap
24297 msgid ""
24298 " is-chardev path\n"
24299 "\n"
24300 msgstr ""
24301
24302 #. type: =head2
24303 #: ../fish/guestfish-actions.pod:2339
24304 msgid "is-config"
24305 msgstr ""
24306
24307 #. type: verbatim
24308 #: ../fish/guestfish-actions.pod:2341
24309 #, no-wrap
24310 msgid ""
24311 " is-config\n"
24312 "\n"
24313 msgstr ""
24314
24315 #. type: =head2
24316 #: ../fish/guestfish-actions.pod:2348
24317 msgid "is-dir"
24318 msgstr ""
24319
24320 #. type: verbatim
24321 #: ../fish/guestfish-actions.pod:2350
24322 #, no-wrap
24323 msgid ""
24324 " is-dir path\n"
24325 "\n"
24326 msgstr ""
24327
24328 #. type: =head2
24329 #: ../fish/guestfish-actions.pod:2358
24330 msgid "is-fifo"
24331 msgstr ""
24332
24333 #. type: verbatim
24334 #: ../fish/guestfish-actions.pod:2360
24335 #, no-wrap
24336 msgid ""
24337 " is-fifo path\n"
24338 "\n"
24339 msgstr ""
24340
24341 #. type: =head2
24342 #: ../fish/guestfish-actions.pod:2367
24343 msgid "is-file"
24344 msgstr ""
24345
24346 #. type: verbatim
24347 #: ../fish/guestfish-actions.pod:2369
24348 #, no-wrap
24349 msgid ""
24350 " is-file path\n"
24351 "\n"
24352 msgstr ""
24353
24354 #. type: =head2
24355 #: ../fish/guestfish-actions.pod:2377
24356 msgid "is-launching"
24357 msgstr ""
24358
24359 #. type: verbatim
24360 #: ../fish/guestfish-actions.pod:2379
24361 #, no-wrap
24362 msgid ""
24363 " is-launching\n"
24364 "\n"
24365 msgstr ""
24366
24367 #. type: =head2
24368 #: ../fish/guestfish-actions.pod:2386
24369 msgid "is-lv"
24370 msgstr ""
24371
24372 #. type: verbatim
24373 #: ../fish/guestfish-actions.pod:2388
24374 #, no-wrap
24375 msgid ""
24376 " is-lv device\n"
24377 "\n"
24378 msgstr ""
24379
24380 #. type: =head2
24381 #: ../fish/guestfish-actions.pod:2393
24382 msgid "is-ready"
24383 msgstr ""
24384
24385 #. type: verbatim
24386 #: ../fish/guestfish-actions.pod:2395
24387 #, no-wrap
24388 msgid ""
24389 " is-ready\n"
24390 "\n"
24391 msgstr ""
24392
24393 #. type: =head2
24394 #: ../fish/guestfish-actions.pod:2402
24395 msgid "is-socket"
24396 msgstr ""
24397
24398 #. type: verbatim
24399 #: ../fish/guestfish-actions.pod:2404
24400 #, no-wrap
24401 msgid ""
24402 " is-socket path\n"
24403 "\n"
24404 msgstr ""
24405
24406 #. type: =head2
24407 #: ../fish/guestfish-actions.pod:2411
24408 msgid "is-symlink"
24409 msgstr ""
24410
24411 #. type: verbatim
24412 #: ../fish/guestfish-actions.pod:2413
24413 #, no-wrap
24414 msgid ""
24415 " is-symlink path\n"
24416 "\n"
24417 msgstr ""
24418
24419 #. type: =head2
24420 #: ../fish/guestfish-actions.pod:2420
24421 msgid "kill-subprocess"
24422 msgstr ""
24423
24424 #. type: verbatim
24425 #: ../fish/guestfish-actions.pod:2422
24426 #, no-wrap
24427 msgid ""
24428 " kill-subprocess\n"
24429 "\n"
24430 msgstr ""
24431
24432 #. type: =head2
24433 #: ../fish/guestfish-actions.pod:2426
24434 msgid "launch"
24435 msgstr ""
24436
24437 #. type: =head2
24438 #: ../fish/guestfish-actions.pod:2428
24439 msgid "run"
24440 msgstr ""
24441
24442 #. type: verbatim
24443 #: ../fish/guestfish-actions.pod:2430
24444 #, no-wrap
24445 msgid ""
24446 " launch\n"
24447 "\n"
24448 msgstr ""
24449
24450 #. type: =head2
24451 #: ../fish/guestfish-actions.pod:2438
24452 msgid "lchown"
24453 msgstr ""
24454
24455 #. type: verbatim
24456 #: ../fish/guestfish-actions.pod:2440
24457 #, no-wrap
24458 msgid ""
24459 " lchown owner group path\n"
24460 "\n"
24461 msgstr ""
24462
24463 #. type: textblock
24464 #: ../fish/guestfish-actions.pod:2442
24465 msgid ""
24466 "Change the file owner to C<owner> and group to C<group>.  This is like L</"
24467 "chown> but if C<path> is a symlink then the link itself is changed, not the "
24468 "target."
24469 msgstr ""
24470
24471 #. type: =head2
24472 #: ../fish/guestfish-actions.pod:2450
24473 msgid "lgetxattr"
24474 msgstr ""
24475
24476 #. type: verbatim
24477 #: ../fish/guestfish-actions.pod:2452
24478 #, no-wrap
24479 msgid ""
24480 " lgetxattr path name\n"
24481 "\n"
24482 msgstr ""
24483
24484 #. type: textblock
24485 #: ../fish/guestfish-actions.pod:2468
24486 msgid "See also: L</lgetxattrs>, L</getxattr>, L<attr(5)>."
24487 msgstr ""
24488
24489 #. type: =head2
24490 #: ../fish/guestfish-actions.pod:2470
24491 msgid "lgetxattrs"
24492 msgstr ""
24493
24494 #. type: verbatim
24495 #: ../fish/guestfish-actions.pod:2472
24496 #, no-wrap
24497 msgid ""
24498 " lgetxattrs path\n"
24499 "\n"
24500 msgstr ""
24501
24502 #. type: textblock
24503 #: ../fish/guestfish-actions.pod:2474
24504 msgid ""
24505 "This is the same as L</getxattrs>, but if C<path> is a symbolic link, then "
24506 "it returns the extended attributes of the link itself."
24507 msgstr ""
24508
24509 #. type: =head2
24510 #: ../fish/guestfish-actions.pod:2478
24511 msgid "list-devices"
24512 msgstr ""
24513
24514 #. type: verbatim
24515 #: ../fish/guestfish-actions.pod:2480
24516 #, no-wrap
24517 msgid ""
24518 " list-devices\n"
24519 "\n"
24520 msgstr ""
24521
24522 #. type: =head2
24523 #: ../fish/guestfish-actions.pod:2488
24524 msgid "list-filesystems"
24525 msgstr ""
24526
24527 #. type: verbatim
24528 #: ../fish/guestfish-actions.pod:2490
24529 #, no-wrap
24530 msgid ""
24531 " list-filesystems\n"
24532 "\n"
24533 msgstr ""
24534
24535 #. type: textblock
24536 #: ../fish/guestfish-actions.pod:2509
24537 msgid ""
24538 "This command runs other libguestfs commands, which might include L</mount> "
24539 "and L</umount>, and therefore you should use this soon after launch and only "
24540 "when nothing is mounted."
24541 msgstr ""
24542
24543 #. type: textblock
24544 #: ../fish/guestfish-actions.pod:2513
24545 msgid ""
24546 "Not all of the filesystems returned will be mountable.  In particular, swap "
24547 "partitions are returned in the list.  Also this command does not check that "
24548 "each filesystem found is valid and mountable, and some filesystems might be "
24549 "mountable but require special options.  Filesystems may not all belong to a "
24550 "single logical operating system (use L</inspect-os> to look for OSes)."
24551 msgstr ""
24552
24553 #. type: =head2
24554 #: ../fish/guestfish-actions.pod:2521
24555 msgid "list-partitions"
24556 msgstr ""
24557
24558 #. type: verbatim
24559 #: ../fish/guestfish-actions.pod:2523
24560 #, no-wrap
24561 msgid ""
24562 " list-partitions\n"
24563 "\n"
24564 msgstr ""
24565
24566 #. type: textblock
24567 #: ../fish/guestfish-actions.pod:2529
24568 msgid ""
24569 "This does not return logical volumes.  For that you will need to call L</"
24570 "lvs>."
24571 msgstr ""
24572
24573 #. type: =head2
24574 #: ../fish/guestfish-actions.pod:2534
24575 msgid "ll"
24576 msgstr ""
24577
24578 #. type: verbatim
24579 #: ../fish/guestfish-actions.pod:2536
24580 #, no-wrap
24581 msgid ""
24582 " ll directory\n"
24583 "\n"
24584 msgstr ""
24585
24586 #. type: =head2
24587 #: ../fish/guestfish-actions.pod:2544
24588 msgid "ln"
24589 msgstr ""
24590
24591 #. type: verbatim
24592 #: ../fish/guestfish-actions.pod:2546
24593 #, no-wrap
24594 msgid ""
24595 " ln target linkname\n"
24596 "\n"
24597 msgstr ""
24598
24599 #. type: =head2
24600 #: ../fish/guestfish-actions.pod:2550
24601 msgid "ln-f"
24602 msgstr ""
24603
24604 #. type: verbatim
24605 #: ../fish/guestfish-actions.pod:2552
24606 #, no-wrap
24607 msgid ""
24608 " ln-f target linkname\n"
24609 "\n"
24610 msgstr ""
24611
24612 #. type: =head2
24613 #: ../fish/guestfish-actions.pod:2557
24614 msgid "ln-s"
24615 msgstr ""
24616
24617 #. type: verbatim
24618 #: ../fish/guestfish-actions.pod:2559
24619 #, no-wrap
24620 msgid ""
24621 " ln-s target linkname\n"
24622 "\n"
24623 msgstr ""
24624
24625 #. type: =head2
24626 #: ../fish/guestfish-actions.pod:2563
24627 msgid "ln-sf"
24628 msgstr ""
24629
24630 #. type: verbatim
24631 #: ../fish/guestfish-actions.pod:2565
24632 #, no-wrap
24633 msgid ""
24634 " ln-sf target linkname\n"
24635 "\n"
24636 msgstr ""
24637
24638 #. type: =head2
24639 #: ../fish/guestfish-actions.pod:2570
24640 msgid "lremovexattr"
24641 msgstr ""
24642
24643 #. type: verbatim
24644 #: ../fish/guestfish-actions.pod:2572
24645 #, no-wrap
24646 msgid ""
24647 " lremovexattr xattr path\n"
24648 "\n"
24649 msgstr ""
24650
24651 #. type: textblock
24652 #: ../fish/guestfish-actions.pod:2574
24653 msgid ""
24654 "This is the same as L</removexattr>, but if C<path> is a symbolic link, then "
24655 "it removes an extended attribute of the link itself."
24656 msgstr ""
24657
24658 #. type: =head2
24659 #: ../fish/guestfish-actions.pod:2578
24660 msgid "ls"
24661 msgstr ""
24662
24663 #. type: verbatim
24664 #: ../fish/guestfish-actions.pod:2580
24665 #, no-wrap
24666 msgid ""
24667 " ls directory\n"
24668 "\n"
24669 msgstr ""
24670
24671 #. type: textblock
24672 #: ../fish/guestfish-actions.pod:2586
24673 msgid ""
24674 "This command is mostly useful for interactive sessions.  Programs should "
24675 "probably use L</readdir> instead."
24676 msgstr ""
24677
24678 #. type: =head2
24679 #: ../fish/guestfish-actions.pod:2589
24680 msgid "lsetxattr"
24681 msgstr ""
24682
24683 #. type: verbatim
24684 #: ../fish/guestfish-actions.pod:2591
24685 #, no-wrap
24686 msgid ""
24687 " lsetxattr xattr val vallen path\n"
24688 "\n"
24689 msgstr ""
24690
24691 #. type: textblock
24692 #: ../fish/guestfish-actions.pod:2593
24693 msgid ""
24694 "This is the same as L</setxattr>, but if C<path> is a symbolic link, then it "
24695 "sets an extended attribute of the link itself."
24696 msgstr ""
24697
24698 #. type: =head2
24699 #: ../fish/guestfish-actions.pod:2597
24700 msgid "lstat"
24701 msgstr ""
24702
24703 #. type: verbatim
24704 #: ../fish/guestfish-actions.pod:2599
24705 #, no-wrap
24706 msgid ""
24707 " lstat path\n"
24708 "\n"
24709 msgstr ""
24710
24711 #. type: textblock
24712 #: ../fish/guestfish-actions.pod:2603
24713 msgid ""
24714 "This is the same as L</stat> except that if C<path> is a symbolic link, then "
24715 "the link is stat-ed, not the file it refers to."
24716 msgstr ""
24717
24718 #. type: =head2
24719 #: ../fish/guestfish-actions.pod:2609
24720 msgid "lstatlist"
24721 msgstr ""
24722
24723 #. type: verbatim
24724 #: ../fish/guestfish-actions.pod:2611
24725 #, no-wrap
24726 msgid ""
24727 " lstatlist path 'names ...'\n"
24728 "\n"
24729 msgstr ""
24730
24731 #. type: textblock
24732 #: ../fish/guestfish-actions.pod:2613
24733 msgid ""
24734 "This call allows you to perform the L</lstat> operation on multiple files, "
24735 "where all files are in the directory C<path>.  C<names> is the list of files "
24736 "from this directory."
24737 msgstr ""
24738
24739 #. type: textblock
24740 #: ../fish/guestfish-actions.pod:2622
24741 msgid ""
24742 "This call is intended for programs that want to efficiently list a directory "
24743 "contents without making many round-trips.  See also L</lxattrlist> for a "
24744 "similarly efficient call for getting extended attributes.  Very long "
24745 "directory listings might cause the protocol message size to be exceeded, "
24746 "causing this call to fail.  The caller must split up such requests into "
24747 "smaller groups of names."
24748 msgstr ""
24749
24750 #. type: =head2
24751 #: ../fish/guestfish-actions.pod:2630
24752 msgid "luks-add-key"
24753 msgstr ""
24754
24755 #. type: verbatim
24756 #: ../fish/guestfish-actions.pod:2632
24757 #, no-wrap
24758 msgid ""
24759 " luks-add-key device keyslot\n"
24760 "\n"
24761 msgstr ""
24762
24763 #. type: textblock
24764 #: ../fish/guestfish-actions.pod:2639
24765 msgid ""
24766 "Note that if C<keyslot> already contains a key, then this command will "
24767 "fail.  You have to use L</luks-kill-slot> first to remove that key."
24768 msgstr ""
24769
24770 #. type: textblock
24771 #: ../fish/guestfish-actions.pod:2643 ../fish/guestfish-actions.pod:2665
24772 #: ../fish/guestfish-actions.pod:2678 ../fish/guestfish-actions.pod:2692
24773 #: ../fish/guestfish-actions.pod:2715 ../fish/guestfish-actions.pod:2725
24774 msgid ""
24775 "This command has one or more key or passphrase parameters.  Guestfish will "
24776 "prompt for these separately."
24777 msgstr ""
24778
24779 #. type: =head2
24780 #: ../fish/guestfish-actions.pod:2646
24781 msgid "luks-close"
24782 msgstr ""
24783
24784 #. type: verbatim
24785 #: ../fish/guestfish-actions.pod:2648
24786 #, no-wrap
24787 msgid ""
24788 " luks-close device\n"
24789 "\n"
24790 msgstr ""
24791
24792 #. type: textblock
24793 #: ../fish/guestfish-actions.pod:2650
24794 msgid ""
24795 "This closes a LUKS device that was created earlier by L</luks-open> or L</"
24796 "luks-open-ro>.  The C<device> parameter must be the name of the LUKS mapping "
24797 "device (ie. C</dev/mapper/mapname>) and I<not> the name of the underlying "
24798 "block device."
24799 msgstr ""
24800
24801 #. type: =head2
24802 #: ../fish/guestfish-actions.pod:2656
24803 msgid "luks-format"
24804 msgstr ""
24805
24806 #. type: verbatim
24807 #: ../fish/guestfish-actions.pod:2658
24808 #, no-wrap
24809 msgid ""
24810 " luks-format device keyslot\n"
24811 "\n"
24812 msgstr ""
24813
24814 #. type: =head2
24815 #: ../fish/guestfish-actions.pod:2671
24816 msgid "luks-format-cipher"
24817 msgstr ""
24818
24819 #. type: verbatim
24820 #: ../fish/guestfish-actions.pod:2673
24821 #, no-wrap
24822 msgid ""
24823 " luks-format-cipher device keyslot cipher\n"
24824 "\n"
24825 msgstr ""
24826
24827 #. type: textblock
24828 #: ../fish/guestfish-actions.pod:2675
24829 msgid ""
24830 "This command is the same as L</luks-format> but it also allows you to set "
24831 "the C<cipher> used."
24832 msgstr ""
24833
24834 #. type: =head2
24835 #: ../fish/guestfish-actions.pod:2684
24836 msgid "luks-kill-slot"
24837 msgstr ""
24838
24839 #. type: verbatim
24840 #: ../fish/guestfish-actions.pod:2686
24841 #, no-wrap
24842 msgid ""
24843 " luks-kill-slot device keyslot\n"
24844 "\n"
24845 msgstr ""
24846
24847 #. type: =head2
24848 #: ../fish/guestfish-actions.pod:2695
24849 msgid "luks-open"
24850 msgstr ""
24851
24852 #. type: verbatim
24853 #: ../fish/guestfish-actions.pod:2697
24854 #, no-wrap
24855 msgid ""
24856 " luks-open device mapname\n"
24857 "\n"
24858 msgstr ""
24859
24860 #. type: textblock
24861 #: ../fish/guestfish-actions.pod:2711
24862 msgid ""
24863 "If this block device contains LVM volume groups, then calling L</vgscan> "
24864 "followed by L</vg-activate-all> will make them visible."
24865 msgstr ""
24866
24867 #. type: =head2
24868 #: ../fish/guestfish-actions.pod:2718
24869 msgid "luks-open-ro"
24870 msgstr ""
24871
24872 #. type: verbatim
24873 #: ../fish/guestfish-actions.pod:2720
24874 #, no-wrap
24875 msgid ""
24876 " luks-open-ro device mapname\n"
24877 "\n"
24878 msgstr ""
24879
24880 #. type: textblock
24881 #: ../fish/guestfish-actions.pod:2722
24882 msgid ""
24883 "This is the same as L</luks-open> except that a read-only mapping is created."
24884 msgstr ""
24885
24886 #. type: =head2
24887 #: ../fish/guestfish-actions.pod:2728
24888 msgid "lvcreate"
24889 msgstr ""
24890
24891 #. type: verbatim
24892 #: ../fish/guestfish-actions.pod:2730
24893 #, no-wrap
24894 msgid ""
24895 " lvcreate logvol volgroup mbytes\n"
24896 "\n"
24897 msgstr ""
24898
24899 #. type: =head2
24900 #: ../fish/guestfish-actions.pod:2735
24901 msgid "lvm-canonical-lv-name"
24902 msgstr ""
24903
24904 #. type: verbatim
24905 #: ../fish/guestfish-actions.pod:2737
24906 #, no-wrap
24907 msgid ""
24908 " lvm-canonical-lv-name lvname\n"
24909 "\n"
24910 msgstr ""
24911
24912 #. type: textblock
24913 #: ../fish/guestfish-actions.pod:2746
24914 msgid "See also L</is-lv>."
24915 msgstr ""
24916
24917 #. type: =head2
24918 #: ../fish/guestfish-actions.pod:2748
24919 msgid "lvm-clear-filter"
24920 msgstr ""
24921
24922 #. type: verbatim
24923 #: ../fish/guestfish-actions.pod:2750
24924 #, no-wrap
24925 msgid ""
24926 " lvm-clear-filter\n"
24927 "\n"
24928 msgstr ""
24929
24930 #. type: textblock
24931 #: ../fish/guestfish-actions.pod:2752
24932 msgid ""
24933 "This undoes the effect of L</lvm-set-filter>.  LVM will be able to see every "
24934 "block device."
24935 msgstr ""
24936
24937 #. type: =head2
24938 #: ../fish/guestfish-actions.pod:2758
24939 msgid "lvm-remove-all"
24940 msgstr ""
24941
24942 #. type: verbatim
24943 #: ../fish/guestfish-actions.pod:2760
24944 #, no-wrap
24945 msgid ""
24946 " lvm-remove-all\n"
24947 "\n"
24948 msgstr ""
24949
24950 #. type: =head2
24951 #: ../fish/guestfish-actions.pod:2768
24952 msgid "lvm-set-filter"
24953 msgstr ""
24954
24955 #. type: verbatim
24956 #: ../fish/guestfish-actions.pod:2770
24957 #, no-wrap
24958 msgid ""
24959 " lvm-set-filter 'devices ...'\n"
24960 "\n"
24961 msgstr ""
24962
24963 #. type: =head2
24964 #: ../fish/guestfish-actions.pod:2795
24965 msgid "lvremove"
24966 msgstr ""
24967
24968 #. type: verbatim
24969 #: ../fish/guestfish-actions.pod:2797
24970 #, no-wrap
24971 msgid ""
24972 " lvremove device\n"
24973 "\n"
24974 msgstr ""
24975
24976 #. type: =head2
24977 #: ../fish/guestfish-actions.pod:2805
24978 msgid "lvrename"
24979 msgstr ""
24980
24981 #. type: verbatim
24982 #: ../fish/guestfish-actions.pod:2807
24983 #, no-wrap
24984 msgid ""
24985 " lvrename logvol newlogvol\n"
24986 "\n"
24987 msgstr ""
24988
24989 #. type: =head2
24990 #: ../fish/guestfish-actions.pod:2811
24991 msgid "lvresize"
24992 msgstr ""
24993
24994 #. type: verbatim
24995 #: ../fish/guestfish-actions.pod:2813
24996 #, no-wrap
24997 msgid ""
24998 " lvresize device mbytes\n"
24999 "\n"
25000 msgstr ""
25001
25002 #. type: =head2
25003 #: ../fish/guestfish-actions.pod:2819
25004 msgid "lvresize-free"
25005 msgstr ""
25006
25007 #. type: verbatim
25008 #: ../fish/guestfish-actions.pod:2821
25009 #, no-wrap
25010 msgid ""
25011 " lvresize-free lv percent\n"
25012 "\n"
25013 msgstr ""
25014
25015 #. type: =head2
25016 #: ../fish/guestfish-actions.pod:2829
25017 msgid "lvs"
25018 msgstr ""
25019
25020 #. type: verbatim
25021 #: ../fish/guestfish-actions.pod:2831
25022 #, no-wrap
25023 msgid ""
25024 " lvs\n"
25025 "\n"
25026 msgstr ""
25027
25028 #. type: textblock
25029 #: ../fish/guestfish-actions.pod:2839
25030 msgid "See also L</lvs-full>, L</list-filesystems>."
25031 msgstr ""
25032
25033 #. type: =head2
25034 #: ../fish/guestfish-actions.pod:2841
25035 msgid "lvs-full"
25036 msgstr ""
25037
25038 #. type: verbatim
25039 #: ../fish/guestfish-actions.pod:2843
25040 #, no-wrap
25041 msgid ""
25042 " lvs-full\n"
25043 "\n"
25044 msgstr ""
25045
25046 #. type: =head2
25047 #: ../fish/guestfish-actions.pod:2848
25048 msgid "lvuuid"
25049 msgstr ""
25050
25051 #. type: verbatim
25052 #: ../fish/guestfish-actions.pod:2850
25053 #, no-wrap
25054 msgid ""
25055 " lvuuid device\n"
25056 "\n"
25057 msgstr ""
25058
25059 #. type: =head2
25060 #: ../fish/guestfish-actions.pod:2854
25061 msgid "lxattrlist"
25062 msgstr ""
25063
25064 #. type: verbatim
25065 #: ../fish/guestfish-actions.pod:2856
25066 #, no-wrap
25067 msgid ""
25068 " lxattrlist path 'names ...'\n"
25069 "\n"
25070 msgstr ""
25071
25072 #. type: textblock
25073 #: ../fish/guestfish-actions.pod:2872
25074 msgid ""
25075 "This call is intended for programs that want to efficiently list a directory "
25076 "contents without making many round-trips.  See also L</lstatlist> for a "
25077 "similarly efficient call for getting standard stats.  Very long directory "
25078 "listings might cause the protocol message size to be exceeded, causing this "
25079 "call to fail.  The caller must split up such requests into smaller groups of "
25080 "names."
25081 msgstr ""
25082
25083 #. type: =head2
25084 #: ../fish/guestfish-actions.pod:2880
25085 msgid "mkdir"
25086 msgstr ""
25087
25088 #. type: verbatim
25089 #: ../fish/guestfish-actions.pod:2882
25090 #, no-wrap
25091 msgid ""
25092 " mkdir path\n"
25093 "\n"
25094 msgstr ""
25095
25096 #. type: =head2
25097 #: ../fish/guestfish-actions.pod:2886
25098 msgid "mkdir-mode"
25099 msgstr ""
25100
25101 #. type: verbatim
25102 #: ../fish/guestfish-actions.pod:2888
25103 #, no-wrap
25104 msgid ""
25105 " mkdir-mode path mode\n"
25106 "\n"
25107 msgstr ""
25108
25109 #. type: textblock
25110 #: ../fish/guestfish-actions.pod:2897
25111 msgid "See also L</mkdir>, L</umask>"
25112 msgstr ""
25113
25114 #. type: =head2
25115 #: ../fish/guestfish-actions.pod:2899
25116 msgid "mkdir-p"
25117 msgstr ""
25118
25119 #. type: verbatim
25120 #: ../fish/guestfish-actions.pod:2901
25121 #, no-wrap
25122 msgid ""
25123 " mkdir-p path\n"
25124 "\n"
25125 msgstr ""
25126
25127 #. type: =head2
25128 #: ../fish/guestfish-actions.pod:2906
25129 msgid "mkdtemp"
25130 msgstr ""
25131
25132 #. type: verbatim
25133 #: ../fish/guestfish-actions.pod:2908
25134 #, no-wrap
25135 msgid ""
25136 " mkdtemp template\n"
25137 "\n"
25138 msgstr ""
25139
25140 #. type: =head2
25141 #: ../fish/guestfish-actions.pod:2929
25142 msgid "mke2fs-J"
25143 msgstr ""
25144
25145 #. type: verbatim
25146 #: ../fish/guestfish-actions.pod:2931
25147 #, no-wrap
25148 msgid ""
25149 " mke2fs-J fstype blocksize device journal\n"
25150 "\n"
25151 msgstr ""
25152
25153 #. type: textblock
25154 #: ../fish/guestfish-actions.pod:2939
25155 msgid "See also L</mke2journal>."
25156 msgstr ""
25157
25158 #. type: =head2
25159 #: ../fish/guestfish-actions.pod:2941
25160 msgid "mke2fs-JL"
25161 msgstr ""
25162
25163 #. type: verbatim
25164 #: ../fish/guestfish-actions.pod:2943
25165 #, no-wrap
25166 msgid ""
25167 " mke2fs-JL fstype blocksize device label\n"
25168 "\n"
25169 msgstr ""
25170
25171 #. type: textblock
25172 #: ../fish/guestfish-actions.pod:2948
25173 msgid "See also L</mke2journal-L>."
25174 msgstr ""
25175
25176 #. type: =head2
25177 #: ../fish/guestfish-actions.pod:2950
25178 msgid "mke2fs-JU"
25179 msgstr ""
25180
25181 #. type: verbatim
25182 #: ../fish/guestfish-actions.pod:2952
25183 #, no-wrap
25184 msgid ""
25185 " mke2fs-JU fstype blocksize device uuid\n"
25186 "\n"
25187 msgstr ""
25188
25189 #. type: textblock
25190 #: ../fish/guestfish-actions.pod:2957
25191 msgid "See also L</mke2journal-U>."
25192 msgstr ""
25193
25194 #. type: =head2
25195 #: ../fish/guestfish-actions.pod:2959
25196 msgid "mke2journal"
25197 msgstr ""
25198
25199 #. type: verbatim
25200 #: ../fish/guestfish-actions.pod:2961
25201 #, no-wrap
25202 msgid ""
25203 " mke2journal blocksize device\n"
25204 "\n"
25205 msgstr ""
25206
25207 #. type: =head2
25208 #: ../fish/guestfish-actions.pod:2968
25209 msgid "mke2journal-L"
25210 msgstr ""
25211
25212 #. type: verbatim
25213 #: ../fish/guestfish-actions.pod:2970
25214 #, no-wrap
25215 msgid ""
25216 " mke2journal-L blocksize label device\n"
25217 "\n"
25218 msgstr ""
25219
25220 #. type: =head2
25221 #: ../fish/guestfish-actions.pod:2974
25222 msgid "mke2journal-U"
25223 msgstr ""
25224
25225 #. type: verbatim
25226 #: ../fish/guestfish-actions.pod:2976
25227 #, no-wrap
25228 msgid ""
25229 " mke2journal-U blocksize uuid device\n"
25230 "\n"
25231 msgstr ""
25232
25233 #. type: =head2
25234 #: ../fish/guestfish-actions.pod:2980
25235 msgid "mkfifo"
25236 msgstr ""
25237
25238 #. type: verbatim
25239 #: ../fish/guestfish-actions.pod:2982
25240 #, no-wrap
25241 msgid ""
25242 " mkfifo mode path\n"
25243 "\n"
25244 msgstr ""
25245
25246 #. type: textblock
25247 #: ../fish/guestfish-actions.pod:2984
25248 msgid ""
25249 "This call creates a FIFO (named pipe) called C<path> with mode C<mode>.  It "
25250 "is just a convenient wrapper around L</mknod>."
25251 msgstr ""
25252
25253 #. type: =head2
25254 #: ../fish/guestfish-actions.pod:2990
25255 msgid "mkfs"
25256 msgstr ""
25257
25258 #. type: verbatim
25259 #: ../fish/guestfish-actions.pod:2992
25260 #, no-wrap
25261 msgid ""
25262 " mkfs fstype device\n"
25263 "\n"
25264 msgstr ""
25265
25266 #. type: =head2
25267 #: ../fish/guestfish-actions.pod:2998
25268 msgid "mkfs-b"
25269 msgstr ""
25270
25271 #. type: verbatim
25272 #: ../fish/guestfish-actions.pod:3000
25273 #, no-wrap
25274 msgid ""
25275 " mkfs-b fstype blocksize device\n"
25276 "\n"
25277 msgstr ""
25278
25279 #. type: textblock
25280 #: ../fish/guestfish-actions.pod:3002
25281 msgid ""
25282 "This call is similar to L</mkfs>, but it allows you to control the block "
25283 "size of the resulting filesystem.  Supported block sizes depend on the "
25284 "filesystem type, but typically they are C<1024>, C<2048> or C<4096> only."
25285 msgstr ""
25286
25287 #. type: =head2
25288 #: ../fish/guestfish-actions.pod:3017
25289 msgid "mkfs-opts"
25290 msgstr ""
25291
25292 #. type: verbatim
25293 #: ../fish/guestfish-actions.pod:3019
25294 #, no-wrap
25295 msgid ""
25296 " mkfs-opts fstype device [blocksize:..] [features:..]\n"
25297 "\n"
25298 msgstr ""
25299
25300 #. type: =head2
25301 #: ../fish/guestfish-actions.pod:3054
25302 msgid "mkmountpoint"
25303 msgstr ""
25304
25305 #. type: verbatim
25306 #: ../fish/guestfish-actions.pod:3056
25307 #, no-wrap
25308 msgid ""
25309 " mkmountpoint exemptpath\n"
25310 "\n"
25311 msgstr ""
25312
25313 #. type: textblock
25314 #: ../fish/guestfish-actions.pod:3058
25315 msgid ""
25316 "L</mkmountpoint> and L</rmmountpoint> are specialized calls that can be used "
25317 "to create extra mountpoints before mounting the first filesystem."
25318 msgstr ""
25319
25320 #. type: textblock
25321 #: ../fish/guestfish-actions.pod:3082
25322 msgid ""
25323 "L</mkmountpoint> is not compatible with L</umount-all>.  You may get "
25324 "unexpected errors if you try to mix these calls.  It is safest to manually "
25325 "unmount filesystems and remove mountpoints after use."
25326 msgstr ""
25327
25328 #. type: textblock
25329 #: ../fish/guestfish-actions.pod:3086
25330 msgid ""
25331 "L</umount-all> unmounts filesystems by sorting the paths longest first, so "
25332 "for this to work for manual mountpoints, you must ensure that the innermost "
25333 "mountpoints have the longest pathnames, as in the example code above."
25334 msgstr ""
25335
25336 #. type: textblock
25337 #: ../fish/guestfish-actions.pod:3093
25338 msgid ""
25339 "Autosync [see L</set-autosync>, this is set by default on handles] can cause "
25340 "L</umount-all> to be called when the handle is closed which can also trigger "
25341 "these issues."
25342 msgstr ""
25343
25344 #. type: =head2
25345 #: ../fish/guestfish-actions.pod:3097
25346 msgid "mknod"
25347 msgstr ""
25348
25349 #. type: verbatim
25350 #: ../fish/guestfish-actions.pod:3099
25351 #, no-wrap
25352 msgid ""
25353 " mknod mode devmajor devminor path\n"
25354 "\n"
25355 msgstr ""
25356
25357 #. type: textblock
25358 #: ../fish/guestfish-actions.pod:3109
25359 msgid ""
25360 "Note that, just like L<mknod(2)>, the mode must be bitwise OR'd with "
25361 "S_IFBLK, S_IFCHR, S_IFIFO or S_IFSOCK (otherwise this call just creates a "
25362 "regular file).  These constants are available in the standard Linux header "
25363 "files, or you can use L</mknod-b>, L</mknod-c> or L</mkfifo> which are "
25364 "wrappers around this command which bitwise OR in the appropriate constant "
25365 "for you."
25366 msgstr ""
25367
25368 #. type: =head2
25369 #: ../fish/guestfish-actions.pod:3119
25370 msgid "mknod-b"
25371 msgstr ""
25372
25373 #. type: verbatim
25374 #: ../fish/guestfish-actions.pod:3121
25375 #, no-wrap
25376 msgid ""
25377 " mknod-b mode devmajor devminor path\n"
25378 "\n"
25379 msgstr ""
25380
25381 #. type: textblock
25382 #: ../fish/guestfish-actions.pod:3123
25383 msgid ""
25384 "This call creates a block device node called C<path> with mode C<mode> and "
25385 "device major/minor C<devmajor> and C<devminor>.  It is just a convenient "
25386 "wrapper around L</mknod>."
25387 msgstr ""
25388
25389 #. type: =head2
25390 #: ../fish/guestfish-actions.pod:3129
25391 msgid "mknod-c"
25392 msgstr ""
25393
25394 #. type: verbatim
25395 #: ../fish/guestfish-actions.pod:3131
25396 #, no-wrap
25397 msgid ""
25398 " mknod-c mode devmajor devminor path\n"
25399 "\n"
25400 msgstr ""
25401
25402 #. type: textblock
25403 #: ../fish/guestfish-actions.pod:3133
25404 msgid ""
25405 "This call creates a char device node called C<path> with mode C<mode> and "
25406 "device major/minor C<devmajor> and C<devminor>.  It is just a convenient "
25407 "wrapper around L</mknod>."
25408 msgstr ""
25409
25410 #. type: =head2
25411 #: ../fish/guestfish-actions.pod:3139
25412 msgid "mkswap"
25413 msgstr ""
25414
25415 #. type: verbatim
25416 #: ../fish/guestfish-actions.pod:3141
25417 #, no-wrap
25418 msgid ""
25419 " mkswap device\n"
25420 "\n"
25421 msgstr ""
25422
25423 #. type: =head2
25424 #: ../fish/guestfish-actions.pod:3145
25425 msgid "mkswap-L"
25426 msgstr ""
25427
25428 #. type: verbatim
25429 #: ../fish/guestfish-actions.pod:3147
25430 #, no-wrap
25431 msgid ""
25432 " mkswap-L label device\n"
25433 "\n"
25434 msgstr ""
25435
25436 #. type: =head2
25437 #: ../fish/guestfish-actions.pod:3155
25438 msgid "mkswap-U"
25439 msgstr ""
25440
25441 #. type: verbatim
25442 #: ../fish/guestfish-actions.pod:3157
25443 #, no-wrap
25444 msgid ""
25445 " mkswap-U uuid device\n"
25446 "\n"
25447 msgstr ""
25448
25449 #. type: =head2
25450 #: ../fish/guestfish-actions.pod:3161
25451 msgid "mkswap-file"
25452 msgstr ""
25453
25454 #. type: verbatim
25455 #: ../fish/guestfish-actions.pod:3163
25456 #, no-wrap
25457 msgid ""
25458 " mkswap-file path\n"
25459 "\n"
25460 msgstr ""
25461
25462 #. type: textblock
25463 #: ../fish/guestfish-actions.pod:3167
25464 msgid ""
25465 "This command just writes a swap file signature to an existing file.  To "
25466 "create the file itself, use something like L</fallocate>."
25467 msgstr ""
25468
25469 #. type: =head2
25470 #: ../fish/guestfish-actions.pod:3170
25471 msgid "modprobe"
25472 msgstr ""
25473
25474 #. type: verbatim
25475 #: ../fish/guestfish-actions.pod:3172
25476 #, no-wrap
25477 msgid ""
25478 " modprobe modulename\n"
25479 "\n"
25480 msgstr ""
25481
25482 #. type: =head2
25483 #: ../fish/guestfish-actions.pod:3179
25484 msgid "mount"
25485 msgstr ""
25486
25487 #. type: verbatim
25488 #: ../fish/guestfish-actions.pod:3181
25489 #, no-wrap
25490 msgid ""
25491 " mount device mountpoint\n"
25492 "\n"
25493 msgstr ""
25494
25495 #. type: textblock
25496 #: ../fish/guestfish-actions.pod:3197
25497 msgid ""
25498 "B<Important note:> When you use this call, the filesystem options C<sync> "
25499 "and C<noatime> are set implicitly.  This was originally done because we "
25500 "thought it would improve reliability, but it turns out that I<-o sync> has a "
25501 "very large negative performance impact and negligible effect on "
25502 "reliability.  Therefore we recommend that you avoid using L</mount> in any "
25503 "code that needs performance, and instead use L</mount-options> (use an empty "
25504 "string for the first parameter if you don't want any options)."
25505 msgstr ""
25506
25507 #. type: =head2
25508 #: ../fish/guestfish-actions.pod:3207
25509 msgid "mount-loop"
25510 msgstr ""
25511
25512 #. type: verbatim
25513 #: ../fish/guestfish-actions.pod:3209
25514 #, no-wrap
25515 msgid ""
25516 " mount-loop file mountpoint\n"
25517 "\n"
25518 msgstr ""
25519
25520 #. type: =head2
25521 #: ../fish/guestfish-actions.pod:3215
25522 msgid "mount-options"
25523 msgstr ""
25524
25525 #. type: verbatim
25526 #: ../fish/guestfish-actions.pod:3217
25527 #, no-wrap
25528 msgid ""
25529 " mount-options options device mountpoint\n"
25530 "\n"
25531 msgstr ""
25532
25533 #. type: textblock
25534 #: ../fish/guestfish-actions.pod:3219
25535 msgid ""
25536 "This is the same as the L</mount> command, but it allows you to set the "
25537 "mount options as for the L<mount(8)> I<-o> flag."
25538 msgstr ""
25539
25540 #. type: =head2
25541 #: ../fish/guestfish-actions.pod:3227
25542 msgid "mount-ro"
25543 msgstr ""
25544
25545 #. type: verbatim
25546 #: ../fish/guestfish-actions.pod:3229
25547 #, no-wrap
25548 msgid ""
25549 " mount-ro device mountpoint\n"
25550 "\n"
25551 msgstr ""
25552
25553 #. type: textblock
25554 #: ../fish/guestfish-actions.pod:3231
25555 msgid ""
25556 "This is the same as the L</mount> command, but it mounts the filesystem with "
25557 "the read-only (I<-o ro>) flag."
25558 msgstr ""
25559
25560 #. type: =head2
25561 #: ../fish/guestfish-actions.pod:3234
25562 msgid "mount-vfs"
25563 msgstr ""
25564
25565 #. type: verbatim
25566 #: ../fish/guestfish-actions.pod:3236
25567 #, no-wrap
25568 msgid ""
25569 " mount-vfs options vfstype device mountpoint\n"
25570 "\n"
25571 msgstr ""
25572
25573 #. type: textblock
25574 #: ../fish/guestfish-actions.pod:3238
25575 msgid ""
25576 "This is the same as the L</mount> command, but it allows you to set both the "
25577 "mount options and the vfstype as for the L<mount(8)> I<-o> and I<-t> flags."
25578 msgstr ""
25579
25580 #. type: =head2
25581 #: ../fish/guestfish-actions.pod:3242
25582 msgid "mountpoints"
25583 msgstr ""
25584
25585 #. type: verbatim
25586 #: ../fish/guestfish-actions.pod:3244
25587 #, no-wrap
25588 msgid ""
25589 " mountpoints\n"
25590 "\n"
25591 msgstr ""
25592
25593 #. type: textblock
25594 #: ../fish/guestfish-actions.pod:3246
25595 msgid ""
25596 "This call is similar to L</mounts>.  That call returns a list of devices.  "
25597 "This one returns a hash table (map) of device name to directory where the "
25598 "device is mounted."
25599 msgstr ""
25600
25601 #. type: =head2
25602 #: ../fish/guestfish-actions.pod:3250
25603 msgid "mounts"
25604 msgstr ""
25605
25606 #. type: verbatim
25607 #: ../fish/guestfish-actions.pod:3252
25608 #, no-wrap
25609 msgid ""
25610 " mounts\n"
25611 "\n"
25612 msgstr ""
25613
25614 #. type: textblock
25615 #: ../fish/guestfish-actions.pod:3259
25616 msgid "See also: L</mountpoints>"
25617 msgstr ""
25618
25619 #. type: =head2
25620 #: ../fish/guestfish-actions.pod:3261
25621 msgid "mv"
25622 msgstr ""
25623
25624 #. type: verbatim
25625 #: ../fish/guestfish-actions.pod:3263
25626 #, no-wrap
25627 msgid ""
25628 " mv src dest\n"
25629 "\n"
25630 msgstr ""
25631
25632 #. type: =head2
25633 #: ../fish/guestfish-actions.pod:3268
25634 msgid "ntfs-3g-probe"
25635 msgstr ""
25636
25637 #. type: verbatim
25638 #: ../fish/guestfish-actions.pod:3270
25639 #, no-wrap
25640 msgid ""
25641 " ntfs-3g-probe true|false device\n"
25642 "\n"
25643 msgstr ""
25644
25645 #. type: =head2
25646 #: ../fish/guestfish-actions.pod:3284
25647 msgid "ntfsresize"
25648 msgstr ""
25649
25650 #. type: verbatim
25651 #: ../fish/guestfish-actions.pod:3286
25652 #, no-wrap
25653 msgid ""
25654 " ntfsresize device\n"
25655 "\n"
25656 msgstr ""
25657
25658 #. type: =head2
25659 #: ../fish/guestfish-actions.pod:3292
25660 msgid "ntfsresize-size"
25661 msgstr ""
25662
25663 #. type: verbatim
25664 #: ../fish/guestfish-actions.pod:3294
25665 #, no-wrap
25666 msgid ""
25667 " ntfsresize-size device size\n"
25668 "\n"
25669 msgstr ""
25670
25671 #. type: textblock
25672 #: ../fish/guestfish-actions.pod:3296
25673 msgid ""
25674 "This command is the same as L</ntfsresize> except that it allows you to "
25675 "specify the new size (in bytes) explicitly."
25676 msgstr ""
25677
25678 #. type: =head2
25679 #: ../fish/guestfish-actions.pod:3299
25680 msgid "part-add"
25681 msgstr ""
25682
25683 #. type: verbatim
25684 #: ../fish/guestfish-actions.pod:3301
25685 #, no-wrap
25686 msgid ""
25687 " part-add device prlogex startsect endsect\n"
25688 "\n"
25689 msgstr ""
25690
25691 #. type: textblock
25692 #: ../fish/guestfish-actions.pod:3303
25693 msgid ""
25694 "This command adds a partition to C<device>.  If there is no partition table "
25695 "on the device, call L</part-init> first."
25696 msgstr ""
25697
25698 #. type: textblock
25699 #: ../fish/guestfish-actions.pod:3315
25700 msgid ""
25701 "Creating a partition which covers the whole disk is not so easy.  Use L</"
25702 "part-disk> to do that."
25703 msgstr ""
25704
25705 #. type: =head2
25706 #: ../fish/guestfish-actions.pod:3318
25707 msgid "part-del"
25708 msgstr ""
25709
25710 #. type: verbatim
25711 #: ../fish/guestfish-actions.pod:3320
25712 #, no-wrap
25713 msgid ""
25714 " part-del device partnum\n"
25715 "\n"
25716 msgstr ""
25717
25718 #. type: =head2
25719 #: ../fish/guestfish-actions.pod:3328
25720 msgid "part-disk"
25721 msgstr ""
25722
25723 #. type: verbatim
25724 #: ../fish/guestfish-actions.pod:3330
25725 #, no-wrap
25726 msgid ""
25727 " part-disk device parttype\n"
25728 "\n"
25729 msgstr ""
25730
25731 #. type: textblock
25732 #: ../fish/guestfish-actions.pod:3332
25733 msgid ""
25734 "This command is simply a combination of L</part-init> followed by L</part-"
25735 "add> to create a single primary partition covering the whole disk."
25736 msgstr ""
25737
25738 #. type: textblock
25739 #: ../fish/guestfish-actions.pod:3336
25740 msgid ""
25741 "C<parttype> is the partition table type, usually C<mbr> or C<gpt>, but other "
25742 "possible values are described in L</part-init>."
25743 msgstr ""
25744
25745 #. type: =head2
25746 #: ../fish/guestfish-actions.pod:3342
25747 msgid "part-get-bootable"
25748 msgstr ""
25749
25750 #. type: verbatim
25751 #: ../fish/guestfish-actions.pod:3344
25752 #, no-wrap
25753 msgid ""
25754 " part-get-bootable device partnum\n"
25755 "\n"
25756 msgstr ""
25757
25758 #. type: textblock
25759 #: ../fish/guestfish-actions.pod:3349
25760 msgid "See also L</part-set-bootable>."
25761 msgstr ""
25762
25763 #. type: =head2
25764 #: ../fish/guestfish-actions.pod:3351
25765 msgid "part-get-mbr-id"
25766 msgstr ""
25767
25768 #. type: verbatim
25769 #: ../fish/guestfish-actions.pod:3353
25770 #, no-wrap
25771 msgid ""
25772 " part-get-mbr-id device partnum\n"
25773 "\n"
25774 msgstr ""
25775
25776 #. type: textblock
25777 #: ../fish/guestfish-actions.pod:3358 ../fish/guestfish-actions.pod:3496
25778 msgid ""
25779 "Note that only MBR (old DOS-style) partitions have type bytes.  You will get "
25780 "undefined results for other partition table types (see L</part-get-"
25781 "parttype>)."
25782 msgstr ""
25783
25784 #. type: =head2
25785 #: ../fish/guestfish-actions.pod:3362
25786 msgid "part-get-parttype"
25787 msgstr ""
25788
25789 #. type: verbatim
25790 #: ../fish/guestfish-actions.pod:3364
25791 #, no-wrap
25792 msgid ""
25793 " part-get-parttype device\n"
25794 "\n"
25795 msgstr ""
25796
25797 #. type: textblock
25798 #: ../fish/guestfish-actions.pod:3369
25799 msgid ""
25800 "Common return values include: C<msdos> (a DOS/Windows style MBR partition "
25801 "table), C<gpt> (a GPT/EFI-style partition table).  Other values are "
25802 "possible, although unusual.  See L</part-init> for a full list."
25803 msgstr ""
25804
25805 #. type: =head2
25806 #: ../fish/guestfish-actions.pod:3374
25807 msgid "part-init"
25808 msgstr ""
25809
25810 #. type: verbatim
25811 #: ../fish/guestfish-actions.pod:3376
25812 #, no-wrap
25813 msgid ""
25814 " part-init device parttype\n"
25815 "\n"
25816 msgstr ""
25817
25818 #. type: textblock
25819 #: ../fish/guestfish-actions.pod:3382
25820 msgid ""
25821 "Initially there are no partitions.  Following this, you should call L</part-"
25822 "add> for each partition required."
25823 msgstr ""
25824
25825 #. type: =head2
25826 #: ../fish/guestfish-actions.pod:3445
25827 msgid "part-list"
25828 msgstr ""
25829
25830 #. type: verbatim
25831 #: ../fish/guestfish-actions.pod:3447
25832 #, no-wrap
25833 msgid ""
25834 " part-list device\n"
25835 "\n"
25836 msgstr ""
25837
25838 #. type: textblock
25839 #: ../fish/guestfish-actions.pod:3462
25840 msgid ""
25841 "Start of the partition I<in bytes>.  To get sectors you have to divide by "
25842 "the device's sector size, see L</blockdev-getss>."
25843 msgstr ""
25844
25845 #. type: =head2
25846 #: ../fish/guestfish-actions.pod:3475
25847 msgid "part-set-bootable"
25848 msgstr ""
25849
25850 #. type: verbatim
25851 #: ../fish/guestfish-actions.pod:3477
25852 #, no-wrap
25853 msgid ""
25854 " part-set-bootable device partnum true|false\n"
25855 "\n"
25856 msgstr ""
25857
25858 #. type: =head2
25859 #: ../fish/guestfish-actions.pod:3486
25860 msgid "part-set-mbr-id"
25861 msgstr ""
25862
25863 #. type: verbatim
25864 #: ../fish/guestfish-actions.pod:3488
25865 #, no-wrap
25866 msgid ""
25867 " part-set-mbr-id device partnum idbyte\n"
25868 "\n"
25869 msgstr ""
25870
25871 #. type: =head2
25872 #: ../fish/guestfish-actions.pod:3500
25873 msgid "part-set-name"
25874 msgstr ""
25875
25876 #. type: verbatim
25877 #: ../fish/guestfish-actions.pod:3502
25878 #, no-wrap
25879 msgid ""
25880 " part-set-name device partnum name\n"
25881 "\n"
25882 msgstr ""
25883
25884 #. type: =head2
25885 #: ../fish/guestfish-actions.pod:3510
25886 msgid "part-to-dev"
25887 msgstr ""
25888
25889 #. type: verbatim
25890 #: ../fish/guestfish-actions.pod:3512
25891 #, no-wrap
25892 msgid ""
25893 " part-to-dev partition\n"
25894 "\n"
25895 msgstr ""
25896
25897 #. type: textblock
25898 #: ../fish/guestfish-actions.pod:3518
25899 msgid ""
25900 "The named partition must exist, for example as a string returned from L</"
25901 "list-partitions>."
25902 msgstr ""
25903
25904 #. type: =head2
25905 #: ../fish/guestfish-actions.pod:3521
25906 msgid "ping-daemon"
25907 msgstr ""
25908
25909 #. type: verbatim
25910 #: ../fish/guestfish-actions.pod:3523
25911 #, no-wrap
25912 msgid ""
25913 " ping-daemon\n"
25914 "\n"
25915 msgstr ""
25916
25917 #. type: =head2
25918 #: ../fish/guestfish-actions.pod:3530
25919 msgid "pread"
25920 msgstr ""
25921
25922 #. type: verbatim
25923 #: ../fish/guestfish-actions.pod:3532
25924 #, no-wrap
25925 msgid ""
25926 " pread path count offset\n"
25927 "\n"
25928 msgstr ""
25929
25930 #. type: textblock
25931 #: ../fish/guestfish-actions.pod:3540
25932 msgid "See also L</pwrite>, L</pread-device>."
25933 msgstr ""
25934
25935 #. type: =head2
25936 #: ../fish/guestfish-actions.pod:3545
25937 msgid "pread-device"
25938 msgstr ""
25939
25940 #. type: verbatim
25941 #: ../fish/guestfish-actions.pod:3547
25942 #, no-wrap
25943 msgid ""
25944 " pread-device device count offset\n"
25945 "\n"
25946 msgstr ""
25947
25948 #. type: textblock
25949 #: ../fish/guestfish-actions.pod:3555
25950 msgid "See also L</pread>."
25951 msgstr ""
25952
25953 #. type: =head2
25954 #: ../fish/guestfish-actions.pod:3560
25955 msgid "pvcreate"
25956 msgstr ""
25957
25958 #. type: verbatim
25959 #: ../fish/guestfish-actions.pod:3562
25960 #, no-wrap
25961 msgid ""
25962 " pvcreate device\n"
25963 "\n"
25964 msgstr ""
25965
25966 #. type: =head2
25967 #: ../fish/guestfish-actions.pod:3568
25968 msgid "pvremove"
25969 msgstr ""
25970
25971 #. type: verbatim
25972 #: ../fish/guestfish-actions.pod:3570
25973 #, no-wrap
25974 msgid ""
25975 " pvremove device\n"
25976 "\n"
25977 msgstr ""
25978
25979 #. type: =head2
25980 #: ../fish/guestfish-actions.pod:3579
25981 msgid "pvresize"
25982 msgstr ""
25983
25984 #. type: verbatim
25985 #: ../fish/guestfish-actions.pod:3581
25986 #, no-wrap
25987 msgid ""
25988 " pvresize device\n"
25989 "\n"
25990 msgstr ""
25991
25992 #. type: =head2
25993 #: ../fish/guestfish-actions.pod:3586
25994 msgid "pvresize-size"
25995 msgstr ""
25996
25997 #. type: verbatim
25998 #: ../fish/guestfish-actions.pod:3588
25999 #, no-wrap
26000 msgid ""
26001 " pvresize-size device size\n"
26002 "\n"
26003 msgstr ""
26004
26005 #. type: textblock
26006 #: ../fish/guestfish-actions.pod:3590
26007 msgid ""
26008 "This command is the same as L</pvresize> except that it allows you to "
26009 "specify the new size (in bytes) explicitly."
26010 msgstr ""
26011
26012 #. type: =head2
26013 #: ../fish/guestfish-actions.pod:3593
26014 msgid "pvs"
26015 msgstr ""
26016
26017 #. type: verbatim
26018 #: ../fish/guestfish-actions.pod:3595
26019 #, no-wrap
26020 msgid ""
26021 " pvs\n"
26022 "\n"
26023 msgstr ""
26024
26025 #. type: textblock
26026 #: ../fish/guestfish-actions.pod:3603
26027 msgid "See also L</pvs-full>."
26028 msgstr ""
26029
26030 #. type: =head2
26031 #: ../fish/guestfish-actions.pod:3605
26032 msgid "pvs-full"
26033 msgstr ""
26034
26035 #. type: verbatim
26036 #: ../fish/guestfish-actions.pod:3607
26037 #, no-wrap
26038 msgid ""
26039 " pvs-full\n"
26040 "\n"
26041 msgstr ""
26042
26043 #. type: =head2
26044 #: ../fish/guestfish-actions.pod:3612
26045 msgid "pvuuid"
26046 msgstr ""
26047
26048 #. type: verbatim
26049 #: ../fish/guestfish-actions.pod:3614
26050 #, no-wrap
26051 msgid ""
26052 " pvuuid device\n"
26053 "\n"
26054 msgstr ""
26055
26056 #. type: =head2
26057 #: ../fish/guestfish-actions.pod:3618
26058 msgid "pwrite"
26059 msgstr ""
26060
26061 #. type: verbatim
26062 #: ../fish/guestfish-actions.pod:3620
26063 #, no-wrap
26064 msgid ""
26065 " pwrite path content offset\n"
26066 "\n"
26067 msgstr ""
26068
26069 #. type: textblock
26070 #: ../fish/guestfish-actions.pod:3631
26071 msgid "See also L</pread>, L</pwrite-device>."
26072 msgstr ""
26073
26074 #. type: =head2
26075 #: ../fish/guestfish-actions.pod:3636
26076 msgid "pwrite-device"
26077 msgstr ""
26078
26079 #. type: verbatim
26080 #: ../fish/guestfish-actions.pod:3638
26081 #, no-wrap
26082 msgid ""
26083 " pwrite-device device content offset\n"
26084 "\n"
26085 msgstr ""
26086
26087 #. type: textblock
26088 #: ../fish/guestfish-actions.pod:3648
26089 msgid "See also L</pwrite>."
26090 msgstr ""
26091
26092 #. type: =head2
26093 #: ../fish/guestfish-actions.pod:3653
26094 msgid "read-file"
26095 msgstr ""
26096
26097 #. type: verbatim
26098 #: ../fish/guestfish-actions.pod:3655
26099 #, no-wrap
26100 msgid ""
26101 " read-file path\n"
26102 "\n"
26103 msgstr ""
26104
26105 #. type: textblock
26106 #: ../fish/guestfish-actions.pod:3660
26107 msgid ""
26108 "Unlike L</cat>, this function can correctly handle files that contain "
26109 "embedded ASCII NUL characters.  However unlike L</download>, this function "
26110 "is limited in the total size of file that can be handled."
26111 msgstr ""
26112
26113 #. type: =head2
26114 #: ../fish/guestfish-actions.pod:3668
26115 msgid "read-lines"
26116 msgstr ""
26117
26118 #. type: verbatim
26119 #: ../fish/guestfish-actions.pod:3670
26120 #, no-wrap
26121 msgid ""
26122 " read-lines path\n"
26123 "\n"
26124 msgstr ""
26125
26126 #. type: textblock
26127 #: ../fish/guestfish-actions.pod:3677
26128 msgid ""
26129 "Note that this function cannot correctly handle binary files (specifically, "
26130 "files containing C<\\0> character which is treated as end of line).  For "
26131 "those you need to use the L</read-file> function which has a more complex "
26132 "interface."
26133 msgstr ""
26134
26135 #. type: =head2
26136 #: ../fish/guestfish-actions.pod:3682
26137 msgid "readdir"
26138 msgstr ""
26139
26140 #. type: verbatim
26141 #: ../fish/guestfish-actions.pod:3684
26142 #, no-wrap
26143 msgid ""
26144 " readdir dir\n"
26145 "\n"
26146 msgstr ""
26147
26148 #. type: textblock
26149 #: ../fish/guestfish-actions.pod:3736
26150 msgid ""
26151 "This function is primarily intended for use by programs.  To get a simple "
26152 "list of names, use L</ls>.  To get a printable directory for human "
26153 "consumption, use L</ll>."
26154 msgstr ""
26155
26156 #. type: =head2
26157 #: ../fish/guestfish-actions.pod:3740
26158 msgid "readlink"
26159 msgstr ""
26160
26161 #. type: verbatim
26162 #: ../fish/guestfish-actions.pod:3742
26163 #, no-wrap
26164 msgid ""
26165 " readlink path\n"
26166 "\n"
26167 msgstr ""
26168
26169 #. type: =head2
26170 #: ../fish/guestfish-actions.pod:3746
26171 msgid "readlinklist"
26172 msgstr ""
26173
26174 #. type: verbatim
26175 #: ../fish/guestfish-actions.pod:3748
26176 #, no-wrap
26177 msgid ""
26178 " readlinklist path 'names ...'\n"
26179 "\n"
26180 msgstr ""
26181
26182 #. type: =head2
26183 #: ../fish/guestfish-actions.pod:3772
26184 msgid "realpath"
26185 msgstr ""
26186
26187 #. type: verbatim
26188 #: ../fish/guestfish-actions.pod:3774
26189 #, no-wrap
26190 msgid ""
26191 " realpath path\n"
26192 "\n"
26193 msgstr ""
26194
26195 #. type: =head2
26196 #: ../fish/guestfish-actions.pod:3779
26197 msgid "removexattr"
26198 msgstr ""
26199
26200 #. type: verbatim
26201 #: ../fish/guestfish-actions.pod:3781
26202 #, no-wrap
26203 msgid ""
26204 " removexattr xattr path\n"
26205 "\n"
26206 msgstr ""
26207
26208 #. type: textblock
26209 #: ../fish/guestfish-actions.pod:3786
26210 msgid "See also: L</lremovexattr>, L<attr(5)>."
26211 msgstr ""
26212
26213 #. type: =head2
26214 #: ../fish/guestfish-actions.pod:3788
26215 msgid "resize2fs"
26216 msgstr ""
26217
26218 #. type: verbatim
26219 #: ../fish/guestfish-actions.pod:3790
26220 #, no-wrap
26221 msgid ""
26222 " resize2fs device\n"
26223 "\n"
26224 msgstr ""
26225
26226 #. type: textblock
26227 #: ../fish/guestfish-actions.pod:3795
26228 msgid ""
26229 "I<Note:> It is sometimes required that you run L</e2fsck-f> on the C<device> "
26230 "before calling this command.  For unknown reasons C<resize2fs> sometimes "
26231 "gives an error about this and sometimes not.  In any case, it is always safe "
26232 "to call L</e2fsck-f> before calling this function."
26233 msgstr ""
26234
26235 #. type: =head2
26236 #: ../fish/guestfish-actions.pod:3801
26237 msgid "resize2fs-M"
26238 msgstr ""
26239
26240 #. type: verbatim
26241 #: ../fish/guestfish-actions.pod:3803
26242 #, no-wrap
26243 msgid ""
26244 " resize2fs-M device\n"
26245 "\n"
26246 msgstr ""
26247
26248 #. type: textblock
26249 #: ../fish/guestfish-actions.pod:3805
26250 msgid ""
26251 "This command is the same as L</resize2fs>, but the filesystem is resized to "
26252 "its minimum size.  This works like the I<-M> option to the C<resize2fs> "
26253 "command."
26254 msgstr ""
26255
26256 #. type: textblock
26257 #: ../fish/guestfish-actions.pod:3809
26258 msgid ""
26259 "To get the resulting size of the filesystem you should call L</tune2fs-l> "
26260 "and read the C<Block size> and C<Block count> values.  These two numbers, "
26261 "multiplied together, give the resulting size of the minimal filesystem in "
26262 "bytes."
26263 msgstr ""
26264
26265 #. type: =head2
26266 #: ../fish/guestfish-actions.pod:3814
26267 msgid "resize2fs-size"
26268 msgstr ""
26269
26270 #. type: verbatim
26271 #: ../fish/guestfish-actions.pod:3816
26272 #, no-wrap
26273 msgid ""
26274 " resize2fs-size device size\n"
26275 "\n"
26276 msgstr ""
26277
26278 #. type: textblock
26279 #: ../fish/guestfish-actions.pod:3818
26280 msgid ""
26281 "This command is the same as L</resize2fs> except that it allows you to "
26282 "specify the new size (in bytes) explicitly."
26283 msgstr ""
26284
26285 #. type: =head2
26286 #: ../fish/guestfish-actions.pod:3821
26287 msgid "rm"
26288 msgstr ""
26289
26290 #. type: verbatim
26291 #: ../fish/guestfish-actions.pod:3823
26292 #, no-wrap
26293 msgid ""
26294 " rm path\n"
26295 "\n"
26296 msgstr ""
26297
26298 #. type: =head2
26299 #: ../fish/guestfish-actions.pod:3827
26300 msgid "rm-rf"
26301 msgstr ""
26302
26303 #. type: verbatim
26304 #: ../fish/guestfish-actions.pod:3829
26305 #, no-wrap
26306 msgid ""
26307 " rm-rf path\n"
26308 "\n"
26309 msgstr ""
26310
26311 #. type: =head2
26312 #: ../fish/guestfish-actions.pod:3835
26313 msgid "rmdir"
26314 msgstr ""
26315
26316 #. type: verbatim
26317 #: ../fish/guestfish-actions.pod:3837
26318 #, no-wrap
26319 msgid ""
26320 " rmdir path\n"
26321 "\n"
26322 msgstr ""
26323
26324 #. type: =head2
26325 #: ../fish/guestfish-actions.pod:3841
26326 msgid "rmmountpoint"
26327 msgstr ""
26328
26329 #. type: verbatim
26330 #: ../fish/guestfish-actions.pod:3843
26331 #, no-wrap
26332 msgid ""
26333 " rmmountpoint exemptpath\n"
26334 "\n"
26335 msgstr ""
26336
26337 #. type: textblock
26338 #: ../fish/guestfish-actions.pod:3845
26339 msgid ""
26340 "This calls removes a mountpoint that was previously created with L</"
26341 "mkmountpoint>.  See L</mkmountpoint> for full details."
26342 msgstr ""
26343
26344 #. type: =head2
26345 #: ../fish/guestfish-actions.pod:3849
26346 msgid "scrub-device"
26347 msgstr ""
26348
26349 #. type: verbatim
26350 #: ../fish/guestfish-actions.pod:3851
26351 #, no-wrap
26352 msgid ""
26353 " scrub-device device\n"
26354 "\n"
26355 msgstr ""
26356
26357 #. type: =head2
26358 #: ../fish/guestfish-actions.pod:3862
26359 msgid "scrub-file"
26360 msgstr ""
26361
26362 #. type: verbatim
26363 #: ../fish/guestfish-actions.pod:3864
26364 #, no-wrap
26365 msgid ""
26366 " scrub-file file\n"
26367 "\n"
26368 msgstr ""
26369
26370 #. type: =head2
26371 #: ../fish/guestfish-actions.pod:3874
26372 msgid "scrub-freespace"
26373 msgstr ""
26374
26375 #. type: verbatim
26376 #: ../fish/guestfish-actions.pod:3876
26377 #, no-wrap
26378 msgid ""
26379 " scrub-freespace dir\n"
26380 "\n"
26381 msgstr ""
26382
26383 #. type: textblock
26384 #: ../fish/guestfish-actions.pod:3878
26385 msgid ""
26386 "This command creates the directory C<dir> and then fills it with files until "
26387 "the filesystem is full, and scrubs the files as for L</scrub-file>, and "
26388 "deletes them.  The intention is to scrub any free space on the partition "
26389 "containing C<dir>."
26390 msgstr ""
26391
26392 #. type: =head2
26393 #: ../fish/guestfish-actions.pod:3887
26394 msgid "set-append"
26395 msgstr ""
26396
26397 #. type: =head2
26398 #: ../fish/guestfish-actions.pod:3889
26399 msgid "append"
26400 msgstr ""
26401
26402 #. type: verbatim
26403 #: ../fish/guestfish-actions.pod:3891
26404 #, no-wrap
26405 msgid ""
26406 " set-append append\n"
26407 "\n"
26408 msgstr ""
26409
26410 #. type: =head2
26411 #: ../fish/guestfish-actions.pod:3902
26412 msgid "set-attach-method"
26413 msgstr ""
26414
26415 #. type: =head2
26416 #: ../fish/guestfish-actions.pod:3904
26417 msgid "attach-method"
26418 msgstr ""
26419
26420 #. type: verbatim
26421 #: ../fish/guestfish-actions.pod:3906
26422 #, no-wrap
26423 msgid ""
26424 " set-attach-method attachmethod\n"
26425 "\n"
26426 msgstr ""
26427
26428 #. type: =head2
26429 #: ../fish/guestfish-actions.pod:3928
26430 msgid "set-autosync"
26431 msgstr ""
26432
26433 #. type: =head2
26434 #: ../fish/guestfish-actions.pod:3930
26435 msgid "autosync"
26436 msgstr ""
26437
26438 #. type: verbatim
26439 #: ../fish/guestfish-actions.pod:3932
26440 #, no-wrap
26441 msgid ""
26442 " set-autosync true|false\n"
26443 "\n"
26444 msgstr ""
26445
26446 #. type: =head2
26447 #: ../fish/guestfish-actions.pod:3942
26448 msgid "set-direct"
26449 msgstr ""
26450
26451 #. type: =head2
26452 #: ../fish/guestfish-actions.pod:3944
26453 msgid "direct"
26454 msgstr ""
26455
26456 #. type: verbatim
26457 #: ../fish/guestfish-actions.pod:3946
26458 #, no-wrap
26459 msgid ""
26460 " set-direct true|false\n"
26461 "\n"
26462 msgstr ""
26463
26464 #. type: textblock
26465 #: ../fish/guestfish-actions.pod:3952
26466 msgid ""
26467 "One consequence of this is that log messages aren't caught by the library "
26468 "and handled by L</set-log-message-callback>, but go straight to stdout."
26469 msgstr ""
26470
26471 #. type: =head2
26472 #: ../fish/guestfish-actions.pod:3961
26473 msgid "set-e2label"
26474 msgstr ""
26475
26476 #. type: verbatim
26477 #: ../fish/guestfish-actions.pod:3963
26478 #, no-wrap
26479 msgid ""
26480 " set-e2label device label\n"
26481 "\n"
26482 msgstr ""
26483
26484 #. type: textblock
26485 #: ../fish/guestfish-actions.pod:3969
26486 msgid ""
26487 "You can use either L</tune2fs-l> or L</get-e2label> to return the existing "
26488 "label on a filesystem."
26489 msgstr ""
26490
26491 #. type: =head2
26492 #: ../fish/guestfish-actions.pod:3972
26493 msgid "set-e2uuid"
26494 msgstr ""
26495
26496 #. type: verbatim
26497 #: ../fish/guestfish-actions.pod:3974
26498 #, no-wrap
26499 msgid ""
26500 " set-e2uuid device uuid\n"
26501 "\n"
26502 msgstr ""
26503
26504 #. type: textblock
26505 #: ../fish/guestfish-actions.pod:3981
26506 msgid ""
26507 "You can use either L</tune2fs-l> or L</get-e2uuid> to return the existing "
26508 "UUID of a filesystem."
26509 msgstr ""
26510
26511 #. type: =head2
26512 #: ../fish/guestfish-actions.pod:3984
26513 msgid "set-memsize"
26514 msgstr ""
26515
26516 #. type: =head2
26517 #: ../fish/guestfish-actions.pod:3986
26518 msgid "memsize"
26519 msgstr ""
26520
26521 #. type: verbatim
26522 #: ../fish/guestfish-actions.pod:3988
26523 #, no-wrap
26524 msgid ""
26525 " set-memsize memsize\n"
26526 "\n"
26527 msgstr ""
26528
26529 #. type: textblock
26530 #: ../fish/guestfish-actions.pod:3990
26531 msgid ""
26532 "This sets the memory size in megabytes allocated to the qemu subprocess.  "
26533 "This only has any effect if called before L</launch>."
26534 msgstr ""
26535
26536 #. type: =head2
26537 #: ../fish/guestfish-actions.pod:4001
26538 msgid "set-network"
26539 msgstr ""
26540
26541 #. type: =head2
26542 #: ../fish/guestfish-actions.pod:4003
26543 msgid "network"
26544 msgstr ""
26545
26546 #. type: verbatim
26547 #: ../fish/guestfish-actions.pod:4005
26548 #, no-wrap
26549 msgid ""
26550 " set-network true|false\n"
26551 "\n"
26552 msgstr ""
26553
26554 #. type: textblock
26555 #: ../fish/guestfish-actions.pod:4013
26556 msgid ""
26557 "You must call this before calling L</launch>, otherwise it has no effect."
26558 msgstr ""
26559
26560 #. type: =head2
26561 #: ../fish/guestfish-actions.pod:4016
26562 msgid "set-path"
26563 msgstr ""
26564
26565 #. type: =head2
26566 #: ../fish/guestfish-actions.pod:4018
26567 msgid "path"
26568 msgstr ""
26569
26570 #. type: verbatim
26571 #: ../fish/guestfish-actions.pod:4020
26572 #, no-wrap
26573 msgid ""
26574 " set-path searchpath\n"
26575 "\n"
26576 msgstr ""
26577
26578 #. type: =head2
26579 #: ../fish/guestfish-actions.pod:4029
26580 msgid "set-qemu"
26581 msgstr ""
26582
26583 #. type: =head2
26584 #: ../fish/guestfish-actions.pod:4031
26585 msgid "qemu"
26586 msgstr ""
26587
26588 #. type: verbatim
26589 #: ../fish/guestfish-actions.pod:4033
26590 #, no-wrap
26591 msgid ""
26592 " set-qemu qemu\n"
26593 "\n"
26594 msgstr ""
26595
26596 #. type: =head2
26597 #: ../fish/guestfish-actions.pod:4053
26598 msgid "set-recovery-proc"
26599 msgstr ""
26600
26601 #. type: =head2
26602 #: ../fish/guestfish-actions.pod:4055
26603 msgid "recovery-proc"
26604 msgstr ""
26605
26606 #. type: verbatim
26607 #: ../fish/guestfish-actions.pod:4057
26608 #, no-wrap
26609 msgid ""
26610 " set-recovery-proc true|false\n"
26611 "\n"
26612 msgstr ""
26613
26614 #. type: textblock
26615 #: ../fish/guestfish-actions.pod:4059
26616 msgid ""
26617 "If this is called with the parameter C<false> then L</launch> does not "
26618 "create a recovery process.  The purpose of the recovery process is to stop "
26619 "runaway qemu processes in the case where the main program aborts abruptly."
26620 msgstr ""
26621
26622 #. type: textblock
26623 #: ../fish/guestfish-actions.pod:4064
26624 msgid ""
26625 "This only has any effect if called before L</launch>, and the default is "
26626 "true."
26627 msgstr ""
26628
26629 #. type: =head2
26630 #: ../fish/guestfish-actions.pod:4073
26631 msgid "set-selinux"
26632 msgstr ""
26633
26634 #. type: =head2
26635 #: ../fish/guestfish-actions.pod:4075
26636 msgid "selinux"
26637 msgstr ""
26638
26639 #. type: verbatim
26640 #: ../fish/guestfish-actions.pod:4077
26641 #, no-wrap
26642 msgid ""
26643 " set-selinux true|false\n"
26644 "\n"
26645 msgstr ""
26646
26647 #. type: =head2
26648 #: ../fish/guestfish-actions.pod:4088
26649 msgid "set-trace"
26650 msgstr ""
26651
26652 #. type: =head2
26653 #: ../fish/guestfish-actions.pod:4090
26654 msgid "trace"
26655 msgstr ""
26656
26657 #. type: verbatim
26658 #: ../fish/guestfish-actions.pod:4092
26659 #, no-wrap
26660 msgid ""
26661 " set-trace true|false\n"
26662 "\n"
26663 msgstr ""
26664
26665 #. type: textblock
26666 #: ../fish/guestfish-actions.pod:4104
26667 msgid ""
26668 "Trace messages are normally sent to C<stderr>, unless you register a "
26669 "callback to send them somewhere else (see L</set-event-callback>)."
26670 msgstr ""
26671
26672 #. type: =head2
26673 #: ../fish/guestfish-actions.pod:4108
26674 msgid "set-verbose"
26675 msgstr ""
26676
26677 #. type: =head2
26678 #: ../fish/guestfish-actions.pod:4110
26679 msgid "verbose"
26680 msgstr ""
26681
26682 #. type: verbatim
26683 #: ../fish/guestfish-actions.pod:4112
26684 #, no-wrap
26685 msgid ""
26686 " set-verbose true|false\n"
26687 "\n"
26688 msgstr ""
26689
26690 #. type: textblock
26691 #: ../fish/guestfish-actions.pod:4119
26692 msgid ""
26693 "Verbose messages are normally sent to C<stderr>, unless you register a "
26694 "callback to send them somewhere else (see L</set-event-callback>)."
26695 msgstr ""
26696
26697 #. type: =head2
26698 #: ../fish/guestfish-actions.pod:4123
26699 msgid "setcon"
26700 msgstr ""
26701
26702 #. type: verbatim
26703 #: ../fish/guestfish-actions.pod:4125
26704 #, no-wrap
26705 msgid ""
26706 " setcon context\n"
26707 "\n"
26708 msgstr ""
26709
26710 #. type: =head2
26711 #: ../fish/guestfish-actions.pod:4132
26712 msgid "setxattr"
26713 msgstr ""
26714
26715 #. type: verbatim
26716 #: ../fish/guestfish-actions.pod:4134
26717 #, no-wrap
26718 msgid ""
26719 " setxattr xattr val vallen path\n"
26720 "\n"
26721 msgstr ""
26722
26723 #. type: textblock
26724 #: ../fish/guestfish-actions.pod:4140
26725 msgid "See also: L</lsetxattr>, L<attr(5)>."
26726 msgstr ""
26727
26728 #. type: =head2
26729 #: ../fish/guestfish-actions.pod:4142
26730 msgid "sfdisk"
26731 msgstr ""
26732
26733 #. type: verbatim
26734 #: ../fish/guestfish-actions.pod:4144
26735 #, no-wrap
26736 msgid ""
26737 " sfdisk device cyls heads sectors 'lines ...'\n"
26738 "\n"
26739 msgstr ""
26740
26741 #. type: textblock
26742 #: ../fish/guestfish-actions.pod:4166
26743 msgid "See also: L</sfdisk-l>, L</sfdisk-N>, L</part-init>"
26744 msgstr ""
26745
26746 #. type: =head2
26747 #: ../fish/guestfish-actions.pod:4172
26748 msgid "sfdiskM"
26749 msgstr ""
26750
26751 #. type: verbatim
26752 #: ../fish/guestfish-actions.pod:4174
26753 #, no-wrap
26754 msgid ""
26755 " sfdiskM device 'lines ...'\n"
26756 "\n"
26757 msgstr ""
26758
26759 #. type: textblock
26760 #: ../fish/guestfish-actions.pod:4176
26761 msgid ""
26762 "This is a simplified interface to the L</sfdisk> command, where partition "
26763 "sizes are specified in megabytes only (rounded to the nearest cylinder) and "
26764 "you don't need to specify the cyls, heads and sectors parameters which were "
26765 "rarely if ever used anyway."
26766 msgstr ""
26767
26768 #. type: textblock
26769 #: ../fish/guestfish-actions.pod:4182
26770 msgid "See also: L</sfdisk>, the L<sfdisk(8)> manpage and L</part-disk>"
26771 msgstr ""
26772
26773 #. type: =head2
26774 #: ../fish/guestfish-actions.pod:4188
26775 msgid "sfdisk-N"
26776 msgstr ""
26777
26778 #. type: verbatim
26779 #: ../fish/guestfish-actions.pod:4190
26780 #, no-wrap
26781 msgid ""
26782 " sfdisk-N device partnum cyls heads sectors line\n"
26783 "\n"
26784 msgstr ""
26785
26786 #. type: textblock
26787 #: ../fish/guestfish-actions.pod:4195
26788 msgid ""
26789 "For other parameters, see L</sfdisk>.  You should usually pass C<0> for the "
26790 "cyls/heads/sectors parameters."
26791 msgstr ""
26792
26793 #. type: textblock
26794 #: ../fish/guestfish-actions.pod:4198
26795 msgid "See also: L</part-add>"
26796 msgstr ""
26797
26798 #. type: =head2
26799 #: ../fish/guestfish-actions.pod:4203
26800 msgid "sfdisk-disk-geometry"
26801 msgstr ""
26802
26803 #. type: verbatim
26804 #: ../fish/guestfish-actions.pod:4205
26805 #, no-wrap
26806 msgid ""
26807 " sfdisk-disk-geometry device\n"
26808 "\n"
26809 msgstr ""
26810
26811 #. type: textblock
26812 #: ../fish/guestfish-actions.pod:4207
26813 msgid ""
26814 "This displays the disk geometry of C<device> read from the partition table.  "
26815 "Especially in the case where the underlying block device has been resized, "
26816 "this can be different from the kernel's idea of the geometry (see L</sfdisk-"
26817 "kernel-geometry>)."
26818 msgstr ""
26819
26820 #. type: =head2
26821 #: ../fish/guestfish-actions.pod:4215
26822 msgid "sfdisk-kernel-geometry"
26823 msgstr ""
26824
26825 #. type: verbatim
26826 #: ../fish/guestfish-actions.pod:4217
26827 #, no-wrap
26828 msgid ""
26829 " sfdisk-kernel-geometry device\n"
26830 "\n"
26831 msgstr ""
26832
26833 #. type: =head2
26834 #: ../fish/guestfish-actions.pod:4224
26835 msgid "sfdisk-l"
26836 msgstr ""
26837
26838 #. type: verbatim
26839 #: ../fish/guestfish-actions.pod:4226
26840 #, no-wrap
26841 msgid ""
26842 " sfdisk-l device\n"
26843 "\n"
26844 msgstr ""
26845
26846 #. type: textblock
26847 #: ../fish/guestfish-actions.pod:4232
26848 msgid "See also: L</part-list>"
26849 msgstr ""
26850
26851 #. type: =head2
26852 #: ../fish/guestfish-actions.pod:4234
26853 msgid "sh"
26854 msgstr ""
26855
26856 #. type: verbatim
26857 #: ../fish/guestfish-actions.pod:4236
26858 #, no-wrap
26859 msgid ""
26860 " sh command\n"
26861 "\n"
26862 msgstr ""
26863
26864 #. type: textblock
26865 #: ../fish/guestfish-actions.pod:4241
26866 msgid "This is like L</command>, but passes the command to:"
26867 msgstr ""
26868
26869 #. type: textblock
26870 #: ../fish/guestfish-actions.pod:4249
26871 msgid "All the provisos about L</command> apply to this call."
26872 msgstr ""
26873
26874 #. type: =head2
26875 #: ../fish/guestfish-actions.pod:4251
26876 msgid "sh-lines"
26877 msgstr ""
26878
26879 #. type: verbatim
26880 #: ../fish/guestfish-actions.pod:4253
26881 #, no-wrap
26882 msgid ""
26883 " sh-lines command\n"
26884 "\n"
26885 msgstr ""
26886
26887 #. type: textblock
26888 #: ../fish/guestfish-actions.pod:4255
26889 msgid "This is the same as L</sh>, but splits the result into a list of lines."
26890 msgstr ""
26891
26892 #. type: textblock
26893 #: ../fish/guestfish-actions.pod:4258
26894 msgid "See also: L</command-lines>"
26895 msgstr ""
26896
26897 #. type: =head2
26898 #: ../fish/guestfish-actions.pod:4260
26899 msgid "sleep"
26900 msgstr ""
26901
26902 #. type: verbatim
26903 #: ../fish/guestfish-actions.pod:4262
26904 #, no-wrap
26905 msgid ""
26906 " sleep secs\n"
26907 "\n"
26908 msgstr ""
26909
26910 #. type: =head2
26911 #: ../fish/guestfish-actions.pod:4266
26912 msgid "stat"
26913 msgstr ""
26914
26915 #. type: verbatim
26916 #: ../fish/guestfish-actions.pod:4268
26917 #, no-wrap
26918 msgid ""
26919 " stat path\n"
26920 "\n"
26921 msgstr ""
26922
26923 #. type: =head2
26924 #: ../fish/guestfish-actions.pod:4274
26925 msgid "statvfs"
26926 msgstr ""
26927
26928 #. type: verbatim
26929 #: ../fish/guestfish-actions.pod:4276
26930 #, no-wrap
26931 msgid ""
26932 " statvfs path\n"
26933 "\n"
26934 msgstr ""
26935
26936 #. type: =head2
26937 #: ../fish/guestfish-actions.pod:4284
26938 msgid "strings"
26939 msgstr ""
26940
26941 #. type: verbatim
26942 #: ../fish/guestfish-actions.pod:4286
26943 #, no-wrap
26944 msgid ""
26945 " strings path\n"
26946 "\n"
26947 msgstr ""
26948
26949 #. type: =head2
26950 #: ../fish/guestfish-actions.pod:4294
26951 msgid "strings-e"
26952 msgstr ""
26953
26954 #. type: verbatim
26955 #: ../fish/guestfish-actions.pod:4296
26956 #, no-wrap
26957 msgid ""
26958 " strings-e encoding path\n"
26959 "\n"
26960 msgstr ""
26961
26962 #. type: textblock
26963 #: ../fish/guestfish-actions.pod:4298
26964 msgid ""
26965 "This is like the L</strings> command, but allows you to specify the encoding "
26966 "of strings that are looked for in the source file C<path>."
26967 msgstr ""
26968
26969 #. type: textblock
26970 #: ../fish/guestfish-actions.pod:4308
26971 msgid ""
26972 "Single 7-bit-byte characters like ASCII and the ASCII-compatible parts of "
26973 "ISO-8859-X (this is what L</strings> uses)."
26974 msgstr ""
26975
26976 #. type: =head2
26977 #: ../fish/guestfish-actions.pod:4340
26978 msgid "swapoff-device"
26979 msgstr ""
26980
26981 #. type: verbatim
26982 #: ../fish/guestfish-actions.pod:4342
26983 #, no-wrap
26984 msgid ""
26985 " swapoff-device device\n"
26986 "\n"
26987 msgstr ""
26988
26989 #. type: textblock
26990 #: ../fish/guestfish-actions.pod:4344
26991 msgid ""
26992 "This command disables the libguestfs appliance swap device or partition "
26993 "named C<device>.  See L</swapon-device>."
26994 msgstr ""
26995
26996 #. type: =head2
26997 #: ../fish/guestfish-actions.pod:4348
26998 msgid "swapoff-file"
26999 msgstr ""
27000
27001 #. type: verbatim
27002 #: ../fish/guestfish-actions.pod:4350
27003 #, no-wrap
27004 msgid ""
27005 " swapoff-file file\n"
27006 "\n"
27007 msgstr ""
27008
27009 #. type: =head2
27010 #: ../fish/guestfish-actions.pod:4354
27011 msgid "swapoff-label"
27012 msgstr ""
27013
27014 #. type: verbatim
27015 #: ../fish/guestfish-actions.pod:4356
27016 #, no-wrap
27017 msgid ""
27018 " swapoff-label label\n"
27019 "\n"
27020 msgstr ""
27021
27022 #. type: =head2
27023 #: ../fish/guestfish-actions.pod:4361
27024 msgid "swapoff-uuid"
27025 msgstr ""
27026
27027 #. type: verbatim
27028 #: ../fish/guestfish-actions.pod:4363
27029 #, no-wrap
27030 msgid ""
27031 " swapoff-uuid uuid\n"
27032 "\n"
27033 msgstr ""
27034
27035 #. type: =head2
27036 #: ../fish/guestfish-actions.pod:4368
27037 msgid "swapon-device"
27038 msgstr ""
27039
27040 #. type: verbatim
27041 #: ../fish/guestfish-actions.pod:4370
27042 #, no-wrap
27043 msgid ""
27044 " swapon-device device\n"
27045 "\n"
27046 msgstr ""
27047
27048 #. type: textblock
27049 #: ../fish/guestfish-actions.pod:4372
27050 msgid ""
27051 "This command enables the libguestfs appliance to use the swap device or "
27052 "partition named C<device>.  The increased memory is made available for all "
27053 "commands, for example those run using L</command> or L</sh>."
27054 msgstr ""
27055
27056 #. type: =head2
27057 #: ../fish/guestfish-actions.pod:4384
27058 msgid "swapon-file"
27059 msgstr ""
27060
27061 #. type: verbatim
27062 #: ../fish/guestfish-actions.pod:4386
27063 #, no-wrap
27064 msgid ""
27065 " swapon-file file\n"
27066 "\n"
27067 msgstr ""
27068
27069 #. type: textblock
27070 #: ../fish/guestfish-actions.pod:4388
27071 msgid ""
27072 "This command enables swap to a file.  See L</swapon-device> for other notes."
27073 msgstr ""
27074
27075 #. type: =head2
27076 #: ../fish/guestfish-actions.pod:4391
27077 msgid "swapon-label"
27078 msgstr ""
27079
27080 #. type: verbatim
27081 #: ../fish/guestfish-actions.pod:4393
27082 #, no-wrap
27083 msgid ""
27084 " swapon-label label\n"
27085 "\n"
27086 msgstr ""
27087
27088 #. type: textblock
27089 #: ../fish/guestfish-actions.pod:4395
27090 msgid ""
27091 "This command enables swap to a labeled swap partition.  See L</swapon-"
27092 "device> for other notes."
27093 msgstr ""
27094
27095 #. type: =head2
27096 #: ../fish/guestfish-actions.pod:4398
27097 msgid "swapon-uuid"
27098 msgstr ""
27099
27100 #. type: verbatim
27101 #: ../fish/guestfish-actions.pod:4400
27102 #, no-wrap
27103 msgid ""
27104 " swapon-uuid uuid\n"
27105 "\n"
27106 msgstr ""
27107
27108 #. type: textblock
27109 #: ../fish/guestfish-actions.pod:4402
27110 msgid ""
27111 "This command enables swap to a swap partition with the given UUID.  See L</"
27112 "swapon-device> for other notes."
27113 msgstr ""
27114
27115 #. type: =head2
27116 #: ../fish/guestfish-actions.pod:4405
27117 msgid "sync"
27118 msgstr ""
27119
27120 #. type: verbatim
27121 #: ../fish/guestfish-actions.pod:4407
27122 #, no-wrap
27123 msgid ""
27124 " sync\n"
27125 "\n"
27126 msgstr ""
27127
27128 #. type: =head2
27129 #: ../fish/guestfish-actions.pod:4415
27130 msgid "tail"
27131 msgstr ""
27132
27133 #. type: verbatim
27134 #: ../fish/guestfish-actions.pod:4417
27135 #, no-wrap
27136 msgid ""
27137 " tail path\n"
27138 "\n"
27139 msgstr ""
27140
27141 #. type: =head2
27142 #: ../fish/guestfish-actions.pod:4425
27143 msgid "tail-n"
27144 msgstr ""
27145
27146 #. type: verbatim
27147 #: ../fish/guestfish-actions.pod:4427
27148 #, no-wrap
27149 msgid ""
27150 " tail-n nrlines path\n"
27151 "\n"
27152 msgstr ""
27153
27154 #. type: =head2
27155 #: ../fish/guestfish-actions.pod:4440
27156 msgid "tar-in"
27157 msgstr ""
27158
27159 #. type: verbatim
27160 #: ../fish/guestfish-actions.pod:4442
27161 #, no-wrap
27162 msgid ""
27163 " tar-in (tarfile|-) directory\n"
27164 "\n"
27165 msgstr ""
27166
27167 #. type: textblock
27168 #: ../fish/guestfish-actions.pod:4447
27169 msgid "To upload a compressed tarball, use L</tgz-in> or L</txz-in>."
27170 msgstr ""
27171
27172 #. type: =head2
27173 #: ../fish/guestfish-actions.pod:4452
27174 msgid "tar-out"
27175 msgstr ""
27176
27177 #. type: verbatim
27178 #: ../fish/guestfish-actions.pod:4454
27179 #, no-wrap
27180 msgid ""
27181 " tar-out directory (tarfile|-)\n"
27182 "\n"
27183 msgstr ""
27184
27185 #. type: textblock
27186 #: ../fish/guestfish-actions.pod:4459
27187 msgid "To download a compressed tarball, use L</tgz-out> or L</txz-out>."
27188 msgstr ""
27189
27190 #. type: =head2
27191 #: ../fish/guestfish-actions.pod:4464
27192 msgid "tgz-in"
27193 msgstr ""
27194
27195 #. type: verbatim
27196 #: ../fish/guestfish-actions.pod:4466
27197 #, no-wrap
27198 msgid ""
27199 " tgz-in (tarball|-) directory\n"
27200 "\n"
27201 msgstr ""
27202
27203 #. type: textblock
27204 #: ../fish/guestfish-actions.pod:4471
27205 msgid "To upload an uncompressed tarball, use L</tar-in>."
27206 msgstr ""
27207
27208 #. type: =head2
27209 #: ../fish/guestfish-actions.pod:4475
27210 msgid "tgz-out"
27211 msgstr ""
27212
27213 #. type: verbatim
27214 #: ../fish/guestfish-actions.pod:4477
27215 #, no-wrap
27216 msgid ""
27217 " tgz-out directory (tarball|-)\n"
27218 "\n"
27219 msgstr ""
27220
27221 #. type: textblock
27222 #: ../fish/guestfish-actions.pod:4482
27223 msgid "To download an uncompressed tarball, use L</tar-out>."
27224 msgstr ""
27225
27226 #. type: =head2
27227 #: ../fish/guestfish-actions.pod:4486
27228 msgid "touch"
27229 msgstr ""
27230
27231 #. type: verbatim
27232 #: ../fish/guestfish-actions.pod:4488
27233 #, no-wrap
27234 msgid ""
27235 " touch path\n"
27236 "\n"
27237 msgstr ""
27238
27239 #. type: =head2
27240 #: ../fish/guestfish-actions.pod:4497
27241 msgid "truncate"
27242 msgstr ""
27243
27244 #. type: verbatim
27245 #: ../fish/guestfish-actions.pod:4499
27246 #, no-wrap
27247 msgid ""
27248 " truncate path\n"
27249 "\n"
27250 msgstr ""
27251
27252 #. type: =head2
27253 #: ../fish/guestfish-actions.pod:4504
27254 msgid "truncate-size"
27255 msgstr ""
27256
27257 #. type: verbatim
27258 #: ../fish/guestfish-actions.pod:4506
27259 #, no-wrap
27260 msgid ""
27261 " truncate-size path size\n"
27262 "\n"
27263 msgstr ""
27264
27265 #. type: textblock
27266 #: ../fish/guestfish-actions.pod:4511
27267 msgid ""
27268 "If the current file size is less than C<size> then the file is extended to "
27269 "the required size with zero bytes.  This creates a sparse file (ie. disk "
27270 "blocks are not allocated for the file until you write to it).  To create a "
27271 "non-sparse file of zeroes, use L</fallocate64> instead."
27272 msgstr ""
27273
27274 #. type: =head2
27275 #: ../fish/guestfish-actions.pod:4517
27276 msgid "tune2fs-l"
27277 msgstr ""
27278
27279 #. type: verbatim
27280 #: ../fish/guestfish-actions.pod:4519
27281 #, no-wrap
27282 msgid ""
27283 " tune2fs-l device\n"
27284 "\n"
27285 msgstr ""
27286
27287 #. type: =head2
27288 #: ../fish/guestfish-actions.pod:4529
27289 msgid "txz-in"
27290 msgstr ""
27291
27292 #. type: verbatim
27293 #: ../fish/guestfish-actions.pod:4531
27294 #, no-wrap
27295 msgid ""
27296 " txz-in (tarball|-) directory\n"
27297 "\n"
27298 msgstr ""
27299
27300 #. type: =head2
27301 #: ../fish/guestfish-actions.pod:4538
27302 msgid "txz-out"
27303 msgstr ""
27304
27305 #. type: verbatim
27306 #: ../fish/guestfish-actions.pod:4540
27307 #, no-wrap
27308 msgid ""
27309 " txz-out directory (tarball|-)\n"
27310 "\n"
27311 msgstr ""
27312
27313 #. type: =head2
27314 #: ../fish/guestfish-actions.pod:4547
27315 msgid "umask"
27316 msgstr ""
27317
27318 #. type: verbatim
27319 #: ../fish/guestfish-actions.pod:4549
27320 #, no-wrap
27321 msgid ""
27322 " umask mask\n"
27323 "\n"
27324 msgstr ""
27325
27326 #. type: textblock
27327 #: ../fish/guestfish-actions.pod:4563
27328 msgid "See also L</get-umask>, L<umask(2)>, L</mknod>, L</mkdir>."
27329 msgstr ""
27330
27331 #. type: =head2
27332 #: ../fish/guestfish-actions.pod:4568
27333 msgid "umount"
27334 msgstr ""
27335
27336 #. type: =head2
27337 #: ../fish/guestfish-actions.pod:4570
27338 msgid "unmount"
27339 msgstr ""
27340
27341 #. type: verbatim
27342 #: ../fish/guestfish-actions.pod:4572
27343 #, no-wrap
27344 msgid ""
27345 " umount pathordevice\n"
27346 "\n"
27347 msgstr ""
27348
27349 #. type: =head2
27350 #: ../fish/guestfish-actions.pod:4578
27351 msgid "umount-all"
27352 msgstr ""
27353
27354 #. type: =head2
27355 #: ../fish/guestfish-actions.pod:4580
27356 msgid "unmount-all"
27357 msgstr ""
27358
27359 #. type: verbatim
27360 #: ../fish/guestfish-actions.pod:4582
27361 #, no-wrap
27362 msgid ""
27363 " umount-all\n"
27364 "\n"
27365 msgstr ""
27366
27367 #. type: =head2
27368 #: ../fish/guestfish-actions.pod:4588
27369 msgid "upload"
27370 msgstr ""
27371
27372 #. type: verbatim
27373 #: ../fish/guestfish-actions.pod:4590
27374 #, no-wrap
27375 msgid ""
27376 " upload (filename|-) remotefilename\n"
27377 "\n"
27378 msgstr ""
27379
27380 #. type: textblock
27381 #: ../fish/guestfish-actions.pod:4597
27382 msgid "See also L</download>."
27383 msgstr ""
27384
27385 #. type: =head2
27386 #: ../fish/guestfish-actions.pod:4601
27387 msgid "upload-offset"
27388 msgstr ""
27389
27390 #. type: verbatim
27391 #: ../fish/guestfish-actions.pod:4603
27392 #, no-wrap
27393 msgid ""
27394 " upload-offset (filename|-) remotefilename offset\n"
27395 "\n"
27396 msgstr ""
27397
27398 #. type: textblock
27399 #: ../fish/guestfish-actions.pod:4615
27400 msgid ""
27401 "Note that there is no limit on the amount of data that can be uploaded with "
27402 "this call, unlike with L</pwrite>, and this call always writes the full "
27403 "amount unless an error occurs."
27404 msgstr ""
27405
27406 #. type: textblock
27407 #: ../fish/guestfish-actions.pod:4620
27408 msgid "See also L</upload>, L</pwrite>."
27409 msgstr ""
27410
27411 #. type: =head2
27412 #: ../fish/guestfish-actions.pod:4624
27413 msgid "utimens"
27414 msgstr ""
27415
27416 #. type: verbatim
27417 #: ../fish/guestfish-actions.pod:4626
27418 #, no-wrap
27419 msgid ""
27420 " utimens path atsecs atnsecs mtsecs mtnsecs\n"
27421 "\n"
27422 msgstr ""
27423
27424 #. type: =head2
27425 #: ../fish/guestfish-actions.pod:4645
27426 msgid "version"
27427 msgstr ""
27428
27429 #. type: verbatim
27430 #: ../fish/guestfish-actions.pod:4647
27431 #, no-wrap
27432 msgid ""
27433 " version\n"
27434 "\n"
27435 msgstr ""
27436
27437 #. type: textblock
27438 #: ../fish/guestfish-actions.pod:4674
27439 msgid ""
27440 "I<Note:> Don't use this call to test for availability of features.  In "
27441 "enterprise distributions we backport features from later versions into "
27442 "earlier versions, making this an unreliable way to test for features.  Use "
27443 "L</available> instead."
27444 msgstr ""
27445
27446 #. type: =head2
27447 #: ../fish/guestfish-actions.pod:4680
27448 msgid "vfs-label"
27449 msgstr ""
27450
27451 #. type: verbatim
27452 #: ../fish/guestfish-actions.pod:4682
27453 #, no-wrap
27454 msgid ""
27455 " vfs-label device\n"
27456 "\n"
27457 msgstr ""
27458
27459 #. type: textblock
27460 #: ../fish/guestfish-actions.pod:4689
27461 msgid "To find a filesystem from the label, use L</findfs-label>."
27462 msgstr ""
27463
27464 #. type: =head2
27465 #: ../fish/guestfish-actions.pod:4691
27466 msgid "vfs-type"
27467 msgstr ""
27468
27469 #. type: verbatim
27470 #: ../fish/guestfish-actions.pod:4693
27471 #, no-wrap
27472 msgid ""
27473 " vfs-type device\n"
27474 "\n"
27475 msgstr ""
27476
27477 #. type: =head2
27478 #: ../fish/guestfish-actions.pod:4703
27479 msgid "vfs-uuid"
27480 msgstr ""
27481
27482 #. type: verbatim
27483 #: ../fish/guestfish-actions.pod:4705
27484 #, no-wrap
27485 msgid ""
27486 " vfs-uuid device\n"
27487 "\n"
27488 msgstr ""
27489
27490 #. type: textblock
27491 #: ../fish/guestfish-actions.pod:4712
27492 msgid "To find a filesystem from the UUID, use L</findfs-uuid>."
27493 msgstr ""
27494
27495 #. type: =head2
27496 #: ../fish/guestfish-actions.pod:4714
27497 msgid "vg-activate"
27498 msgstr ""
27499
27500 #. type: verbatim
27501 #: ../fish/guestfish-actions.pod:4716
27502 #, no-wrap
27503 msgid ""
27504 " vg-activate true|false 'volgroups ...'\n"
27505 "\n"
27506 msgstr ""
27507
27508 #. type: =head2
27509 #: ../fish/guestfish-actions.pod:4729
27510 msgid "vg-activate-all"
27511 msgstr ""
27512
27513 #. type: verbatim
27514 #: ../fish/guestfish-actions.pod:4731
27515 #, no-wrap
27516 msgid ""
27517 " vg-activate-all true|false\n"
27518 "\n"
27519 msgstr ""
27520
27521 #. type: =head2
27522 #: ../fish/guestfish-actions.pod:4741
27523 msgid "vgcreate"
27524 msgstr ""
27525
27526 #. type: verbatim
27527 #: ../fish/guestfish-actions.pod:4743
27528 #, no-wrap
27529 msgid ""
27530 " vgcreate volgroup 'physvols ...'\n"
27531 "\n"
27532 msgstr ""
27533
27534 #. type: =head2
27535 #: ../fish/guestfish-actions.pod:4748
27536 msgid "vglvuuids"
27537 msgstr ""
27538
27539 #. type: verbatim
27540 #: ../fish/guestfish-actions.pod:4750
27541 #, no-wrap
27542 msgid ""
27543 " vglvuuids vgname\n"
27544 "\n"
27545 msgstr ""
27546
27547 #. type: textblock
27548 #: ../fish/guestfish-actions.pod:4755
27549 msgid ""
27550 "You can use this along with L</lvs> and L</lvuuid> calls to associate "
27551 "logical volumes and volume groups."
27552 msgstr ""
27553
27554 #. type: textblock
27555 #: ../fish/guestfish-actions.pod:4758
27556 msgid "See also L</vgpvuuids>."
27557 msgstr ""
27558
27559 #. type: =head2
27560 #: ../fish/guestfish-actions.pod:4760
27561 msgid "vgpvuuids"
27562 msgstr ""
27563
27564 #. type: verbatim
27565 #: ../fish/guestfish-actions.pod:4762
27566 #, no-wrap
27567 msgid ""
27568 " vgpvuuids vgname\n"
27569 "\n"
27570 msgstr ""
27571
27572 #. type: textblock
27573 #: ../fish/guestfish-actions.pod:4767
27574 msgid ""
27575 "You can use this along with L</pvs> and L</pvuuid> calls to associate "
27576 "physical volumes and volume groups."
27577 msgstr ""
27578
27579 #. type: textblock
27580 #: ../fish/guestfish-actions.pod:4770
27581 msgid "See also L</vglvuuids>."
27582 msgstr ""
27583
27584 #. type: =head2
27585 #: ../fish/guestfish-actions.pod:4772
27586 msgid "vgremove"
27587 msgstr ""
27588
27589 #. type: verbatim
27590 #: ../fish/guestfish-actions.pod:4774
27591 #, no-wrap
27592 msgid ""
27593 " vgremove vgname\n"
27594 "\n"
27595 msgstr ""
27596
27597 #. type: =head2
27598 #: ../fish/guestfish-actions.pod:4781
27599 msgid "vgrename"
27600 msgstr ""
27601
27602 #. type: verbatim
27603 #: ../fish/guestfish-actions.pod:4783
27604 #, no-wrap
27605 msgid ""
27606 " vgrename volgroup newvolgroup\n"
27607 "\n"
27608 msgstr ""
27609
27610 #. type: =head2
27611 #: ../fish/guestfish-actions.pod:4787
27612 msgid "vgs"
27613 msgstr ""
27614
27615 #. type: verbatim
27616 #: ../fish/guestfish-actions.pod:4789
27617 #, no-wrap
27618 msgid ""
27619 " vgs\n"
27620 "\n"
27621 msgstr ""
27622
27623 #. type: textblock
27624 #: ../fish/guestfish-actions.pod:4797
27625 msgid "See also L</vgs-full>."
27626 msgstr ""
27627
27628 #. type: =head2
27629 #: ../fish/guestfish-actions.pod:4799
27630 msgid "vgs-full"
27631 msgstr ""
27632
27633 #. type: verbatim
27634 #: ../fish/guestfish-actions.pod:4801
27635 #, no-wrap
27636 msgid ""
27637 " vgs-full\n"
27638 "\n"
27639 msgstr ""
27640
27641 #. type: =head2
27642 #: ../fish/guestfish-actions.pod:4806
27643 msgid "vgscan"
27644 msgstr ""
27645
27646 #. type: verbatim
27647 #: ../fish/guestfish-actions.pod:4808
27648 #, no-wrap
27649 msgid ""
27650 " vgscan\n"
27651 "\n"
27652 msgstr ""
27653
27654 #. type: =head2
27655 #: ../fish/guestfish-actions.pod:4813
27656 msgid "vguuid"
27657 msgstr ""
27658
27659 #. type: verbatim
27660 #: ../fish/guestfish-actions.pod:4815
27661 #, no-wrap
27662 msgid ""
27663 " vguuid vgname\n"
27664 "\n"
27665 msgstr ""
27666
27667 #. type: =head2
27668 #: ../fish/guestfish-actions.pod:4819
27669 msgid "wc-c"
27670 msgstr ""
27671
27672 #. type: verbatim
27673 #: ../fish/guestfish-actions.pod:4821
27674 #, no-wrap
27675 msgid ""
27676 " wc-c path\n"
27677 "\n"
27678 msgstr ""
27679
27680 #. type: =head2
27681 #: ../fish/guestfish-actions.pod:4826
27682 msgid "wc-l"
27683 msgstr ""
27684
27685 #. type: verbatim
27686 #: ../fish/guestfish-actions.pod:4828
27687 #, no-wrap
27688 msgid ""
27689 " wc-l path\n"
27690 "\n"
27691 msgstr ""
27692
27693 #. type: =head2
27694 #: ../fish/guestfish-actions.pod:4833
27695 msgid "wc-w"
27696 msgstr ""
27697
27698 #. type: verbatim
27699 #: ../fish/guestfish-actions.pod:4835
27700 #, no-wrap
27701 msgid ""
27702 " wc-w path\n"
27703 "\n"
27704 msgstr ""
27705
27706 #. type: =head2
27707 #: ../fish/guestfish-actions.pod:4840
27708 msgid "write"
27709 msgstr ""
27710
27711 #. type: verbatim
27712 #: ../fish/guestfish-actions.pod:4842
27713 #, no-wrap
27714 msgid ""
27715 " write path content\n"
27716 "\n"
27717 msgstr ""
27718
27719 #. type: =head2
27720 #: ../fish/guestfish-actions.pod:4850
27721 msgid "write-file"
27722 msgstr ""
27723
27724 #. type: verbatim
27725 #: ../fish/guestfish-actions.pod:4852
27726 #, no-wrap
27727 msgid ""
27728 " write-file path content size\n"
27729 "\n"
27730 msgstr ""
27731
27732 #. type: =head2
27733 #: ../fish/guestfish-actions.pod:4875
27734 msgid "zegrep"
27735 msgstr ""
27736
27737 #. type: verbatim
27738 #: ../fish/guestfish-actions.pod:4877
27739 #, no-wrap
27740 msgid ""
27741 " zegrep regex path\n"
27742 "\n"
27743 msgstr ""
27744
27745 #. type: =head2
27746 #: ../fish/guestfish-actions.pod:4885
27747 msgid "zegrepi"
27748 msgstr ""
27749
27750 #. type: verbatim
27751 #: ../fish/guestfish-actions.pod:4887
27752 #, no-wrap
27753 msgid ""
27754 " zegrepi regex path\n"
27755 "\n"
27756 msgstr ""
27757
27758 #. type: =head2
27759 #: ../fish/guestfish-actions.pod:4895
27760 msgid "zero"
27761 msgstr ""
27762
27763 #. type: verbatim
27764 #: ../fish/guestfish-actions.pod:4897
27765 #, no-wrap
27766 msgid ""
27767 " zero device\n"
27768 "\n"
27769 msgstr ""
27770
27771 #. type: textblock
27772 #: ../fish/guestfish-actions.pod:4905
27773 msgid "See also: L</zero-device>, L</scrub-device>."
27774 msgstr ""
27775
27776 #. type: =head2
27777 #: ../fish/guestfish-actions.pod:4907
27778 msgid "zero-device"
27779 msgstr ""
27780
27781 #. type: verbatim
27782 #: ../fish/guestfish-actions.pod:4909
27783 #, no-wrap
27784 msgid ""
27785 " zero-device device\n"
27786 "\n"
27787 msgstr ""
27788
27789 #. type: textblock
27790 #: ../fish/guestfish-actions.pod:4911
27791 msgid ""
27792 "This command writes zeroes over the entire C<device>.  Compare with L</zero> "
27793 "which just zeroes the first few blocks of a device."
27794 msgstr ""
27795
27796 #. type: =head2
27797 #: ../fish/guestfish-actions.pod:4918
27798 msgid "zerofree"
27799 msgstr ""
27800
27801 #. type: verbatim
27802 #: ../fish/guestfish-actions.pod:4920
27803 #, no-wrap
27804 msgid ""
27805 " zerofree device\n"
27806 "\n"
27807 msgstr ""
27808
27809 #. type: =head2
27810 #: ../fish/guestfish-actions.pod:4933
27811 msgid "zfgrep"
27812 msgstr ""
27813
27814 #. type: verbatim
27815 #: ../fish/guestfish-actions.pod:4935
27816 #, no-wrap
27817 msgid ""
27818 " zfgrep pattern path\n"
27819 "\n"
27820 msgstr ""
27821
27822 #. type: =head2
27823 #: ../fish/guestfish-actions.pod:4943
27824 msgid "zfgrepi"
27825 msgstr ""
27826
27827 #. type: verbatim
27828 #: ../fish/guestfish-actions.pod:4945
27829 #, no-wrap
27830 msgid ""
27831 " zfgrepi pattern path\n"
27832 "\n"
27833 msgstr ""
27834
27835 #. type: =head2
27836 #: ../fish/guestfish-actions.pod:4953
27837 msgid "zfile"
27838 msgstr ""
27839
27840 #. type: verbatim
27841 #: ../fish/guestfish-actions.pod:4955
27842 #, no-wrap
27843 msgid ""
27844 " zfile meth path\n"
27845 "\n"
27846 msgstr ""
27847
27848 #. type: textblock
27849 #: ../fish/guestfish-actions.pod:4962
27850 msgid ""
27851 "Since 1.0.63, use L</file> instead which can now process compressed files."
27852 msgstr ""
27853
27854 #. type: =head2
27855 #: ../fish/guestfish-actions.pod:4972
27856 msgid "zgrep"
27857 msgstr ""
27858
27859 #. type: verbatim
27860 #: ../fish/guestfish-actions.pod:4974
27861 #, no-wrap
27862 msgid ""
27863 " zgrep regex path\n"
27864 "\n"
27865 msgstr ""
27866
27867 #. type: =head2
27868 #: ../fish/guestfish-actions.pod:4982
27869 msgid "zgrepi"
27870 msgstr ""
27871
27872 #. type: verbatim
27873 #: ../fish/guestfish-actions.pod:4984
27874 #, no-wrap
27875 msgid ""
27876 " zgrepi regex path\n"
27877 "\n"
27878 msgstr ""
27879
27880 #. type: =head2
27881 #: ../fish/guestfish-commands.pod:1
27882 msgid "alloc"
27883 msgstr ""
27884
27885 #. type: =head2
27886 #: ../fish/guestfish-commands.pod:3
27887 msgid "allocate"
27888 msgstr ""
27889
27890 #. type: verbatim
27891 #: ../fish/guestfish-commands.pod:5
27892 #, no-wrap
27893 msgid ""
27894 " alloc filename size\n"
27895 "\n"
27896 msgstr ""
27897
27898 #. type: textblock
27899 #: ../fish/guestfish-commands.pod:7
27900 msgid ""
27901 "This creates an empty (zeroed) file of the given size, and then adds so it "
27902 "can be further examined."
27903 msgstr ""
27904
27905 #. type: textblock
27906 #: ../fish/guestfish-commands.pod:10 ../fish/guestfish-commands.pod:168
27907 msgid "For more advanced image creation, see L<qemu-img(1)> utility."
27908 msgstr ""
27909
27910 #. type: textblock
27911 #: ../fish/guestfish-commands.pod:12 ../fish/guestfish-commands.pod:170
27912 msgid "Size can be specified using standard suffixes, eg. C<1M>."
27913 msgstr ""
27914
27915 #. type: textblock
27916 #: ../fish/guestfish-commands.pod:14
27917 msgid ""
27918 "To create a sparse file, use L</sparse> instead.  To create a prepared disk "
27919 "image, see L</PREPARED DISK IMAGES>."
27920 msgstr ""
27921
27922 #. type: =head2
27923 #: ../fish/guestfish-commands.pod:17
27924 msgid "copy-in"
27925 msgstr ""
27926
27927 #. type: verbatim
27928 #: ../fish/guestfish-commands.pod:19
27929 #, no-wrap
27930 msgid ""
27931 " copy-in local [local ...] /remotedir\n"
27932 "\n"
27933 msgstr ""
27934
27935 #. type: textblock
27936 #: ../fish/guestfish-commands.pod:21
27937 msgid ""
27938 "C<copy-in> copies local files or directories recursively into the disk "
27939 "image, placing them in the directory called C</remotedir> (which must "
27940 "exist).  This guestfish meta-command turns into a sequence of L</tar-in> and "
27941 "other commands as necessary."
27942 msgstr ""
27943
27944 #. type: textblock
27945 #: ../fish/guestfish-commands.pod:26
27946 msgid ""
27947 "Multiple local files and directories can be specified, but the last "
27948 "parameter must always be a remote directory.  Wildcards cannot be used."
27949 msgstr ""
27950
27951 #. type: =head2
27952 #: ../fish/guestfish-commands.pod:30
27953 msgid "copy-out"
27954 msgstr ""
27955
27956 #. type: verbatim
27957 #: ../fish/guestfish-commands.pod:32
27958 #, no-wrap
27959 msgid ""
27960 " copy-out remote [remote ...] localdir\n"
27961 "\n"
27962 msgstr ""
27963
27964 #. type: textblock
27965 #: ../fish/guestfish-commands.pod:34
27966 msgid ""
27967 "C<copy-out> copies remote files or directories recursively out of the disk "
27968 "image, placing them on the host disk in a local directory called C<localdir> "
27969 "(which must exist).  This guestfish meta-command turns into a sequence of L</"
27970 "download>, L</tar-out> and other commands as necessary."
27971 msgstr ""
27972
27973 #. type: textblock
27974 #: ../fish/guestfish-commands.pod:40
27975 msgid ""
27976 "Multiple remote files and directories can be specified, but the last "
27977 "parameter must always be a local directory.  To download to the current "
27978 "directory, use C<.> as in:"
27979 msgstr ""
27980
27981 #. type: verbatim
27982 #: ../fish/guestfish-commands.pod:44
27983 #, no-wrap
27984 msgid ""
27985 " copy-out /home .\n"
27986 "\n"
27987 msgstr ""
27988
27989 #. type: textblock
27990 #: ../fish/guestfish-commands.pod:46
27991 msgid ""
27992 "Wildcards cannot be used in the ordinary command, but you can use them with "
27993 "the help of L</glob> like this:"
27994 msgstr ""
27995
27996 #. type: verbatim
27997 #: ../fish/guestfish-commands.pod:49
27998 #, no-wrap
27999 msgid ""
28000 " glob copy-out /home/* .\n"
28001 "\n"
28002 msgstr ""
28003
28004 #. type: =head2
28005 #: ../fish/guestfish-commands.pod:51
28006 msgid "echo"
28007 msgstr ""
28008
28009 #. type: verbatim
28010 #: ../fish/guestfish-commands.pod:53
28011 #, no-wrap
28012 msgid ""
28013 " echo [params ...]\n"
28014 "\n"
28015 msgstr ""
28016
28017 #. type: textblock
28018 #: ../fish/guestfish-commands.pod:55
28019 msgid "This echos the parameters to the terminal."
28020 msgstr ""
28021
28022 #. type: =head2
28023 #: ../fish/guestfish-commands.pod:57
28024 msgid "edit"
28025 msgstr ""
28026
28027 #. type: =head2
28028 #: ../fish/guestfish-commands.pod:59
28029 msgid "vi"
28030 msgstr ""
28031
28032 #. type: =head2
28033 #: ../fish/guestfish-commands.pod:61
28034 msgid "emacs"
28035 msgstr ""
28036
28037 #. type: verbatim
28038 #: ../fish/guestfish-commands.pod:63
28039 #, no-wrap
28040 msgid ""
28041 " edit filename\n"
28042 "\n"
28043 msgstr ""
28044
28045 #. type: textblock
28046 #: ../fish/guestfish-commands.pod:65
28047 msgid ""
28048 "This is used to edit a file.  It downloads the file, edits it locally using "
28049 "your editor, then uploads the result."
28050 msgstr ""
28051
28052 #. type: textblock
28053 #: ../fish/guestfish-commands.pod:68
28054 msgid ""
28055 "The editor is C<$EDITOR>.  However if you use the alternate commands C<vi> "
28056 "or C<emacs> you will get those corresponding editors."
28057 msgstr ""
28058
28059 #. type: =head2
28060 #: ../fish/guestfish-commands.pod:72
28061 msgid "glob"
28062 msgstr ""
28063
28064 #. type: verbatim
28065 #: ../fish/guestfish-commands.pod:74
28066 #, no-wrap
28067 msgid ""
28068 " glob command args...\n"
28069 "\n"
28070 msgstr ""
28071
28072 #. type: textblock
28073 #: ../fish/guestfish-commands.pod:76
28074 msgid ""
28075 "Expand wildcards in any paths in the args list, and run C<command> "
28076 "repeatedly on each matching path."
28077 msgstr ""
28078
28079 #. type: textblock
28080 #: ../fish/guestfish-commands.pod:79
28081 msgid "See L</WILDCARDS AND GLOBBING>."
28082 msgstr ""
28083
28084 #. type: =head2
28085 #: ../fish/guestfish-commands.pod:81
28086 msgid "hexedit"
28087 msgstr ""
28088
28089 #. type: verbatim
28090 #: ../fish/guestfish-commands.pod:83
28091 #, no-wrap
28092 msgid ""
28093 " hexedit <filename|device>\n"
28094 " hexedit <filename|device> <max>\n"
28095 " hexedit <filename|device> <start> <max>\n"
28096 "\n"
28097 msgstr ""
28098
28099 #. type: textblock
28100 #: ../fish/guestfish-commands.pod:87
28101 msgid ""
28102 "Use hexedit (a hex editor) to edit all or part of a binary file or block "
28103 "device."
28104 msgstr ""
28105
28106 #. type: textblock
28107 #: ../fish/guestfish-commands.pod:90
28108 msgid ""
28109 "This command works by downloading potentially the whole file or device, "
28110 "editing it locally, then uploading it.  If the file or device is large, you "
28111 "have to specify which part you wish to edit by using C<max> and/or C<start> "
28112 "C<max> parameters.  C<start> and C<max> are specified in bytes, with the "
28113 "usual modifiers allowed such as C<1M> (1 megabyte)."
28114 msgstr ""
28115
28116 #. type: textblock
28117 #: ../fish/guestfish-commands.pod:97
28118 msgid "For example to edit the first few sectors of a disk you might do:"
28119 msgstr ""
28120
28121 #. type: verbatim
28122 #: ../fish/guestfish-commands.pod:100
28123 #, no-wrap
28124 msgid ""
28125 " hexedit /dev/sda 1M\n"
28126 "\n"
28127 msgstr ""
28128
28129 #. type: textblock
28130 #: ../fish/guestfish-commands.pod:102
28131 msgid ""
28132 "which would allow you to edit anywhere within the first megabyte of the disk."
28133 msgstr ""
28134
28135 #. type: textblock
28136 #: ../fish/guestfish-commands.pod:105
28137 msgid "To edit the superblock of an ext2 filesystem on C</dev/sda1>, do:"
28138 msgstr ""
28139
28140 #. type: verbatim
28141 #: ../fish/guestfish-commands.pod:107
28142 #, no-wrap
28143 msgid ""
28144 " hexedit /dev/sda1 0x400 0x400\n"
28145 "\n"
28146 msgstr ""
28147
28148 #. type: textblock
28149 #: ../fish/guestfish-commands.pod:109
28150 msgid "(assuming the superblock is in the standard location)."
28151 msgstr ""
28152
28153 #. type: textblock
28154 #: ../fish/guestfish-commands.pod:111
28155 msgid ""
28156 "This command requires the external L<hexedit(1)> program.  You can specify "
28157 "another program to use by setting the C<HEXEDITOR> environment variable."
28158 msgstr ""
28159
28160 #. type: textblock
28161 #: ../fish/guestfish-commands.pod:115
28162 msgid "See also L</hexdump>."
28163 msgstr ""
28164
28165 #. type: =head2
28166 #: ../fish/guestfish-commands.pod:117
28167 msgid "lcd"
28168 msgstr ""
28169
28170 #. type: verbatim
28171 #: ../fish/guestfish-commands.pod:119
28172 #, no-wrap
28173 msgid ""
28174 " lcd directory\n"
28175 "\n"
28176 msgstr ""
28177
28178 #. type: textblock
28179 #: ../fish/guestfish-commands.pod:121
28180 msgid ""
28181 "Change the local directory, ie. the current directory of guestfish itself."
28182 msgstr ""
28183
28184 #. type: textblock
28185 #: ../fish/guestfish-commands.pod:124
28186 msgid "Note that C<!cd> won't do what you might expect."
28187 msgstr ""
28188
28189 #. type: =head2
28190 #: ../fish/guestfish-commands.pod:126
28191 msgid "man"
28192 msgstr ""
28193
28194 #. type: =head2
28195 #: ../fish/guestfish-commands.pod:128
28196 msgid "manual"
28197 msgstr ""
28198
28199 #. type: verbatim
28200 #: ../fish/guestfish-commands.pod:130
28201 #, no-wrap
28202 msgid ""
28203 "  man\n"
28204 "\n"
28205 msgstr ""
28206
28207 #. type: textblock
28208 #: ../fish/guestfish-commands.pod:132
28209 msgid "Opens the manual page for guestfish."
28210 msgstr ""
28211
28212 #. type: =head2
28213 #: ../fish/guestfish-commands.pod:134
28214 msgid "more"
28215 msgstr ""
28216
28217 #. type: =head2
28218 #: ../fish/guestfish-commands.pod:136
28219 msgid "less"
28220 msgstr ""
28221
28222 #. type: verbatim
28223 #: ../fish/guestfish-commands.pod:138
28224 #, no-wrap
28225 msgid ""
28226 " more filename\n"
28227 "\n"
28228 msgstr ""
28229
28230 #. type: verbatim
28231 #: ../fish/guestfish-commands.pod:140
28232 #, no-wrap
28233 msgid ""
28234 " less filename\n"
28235 "\n"
28236 msgstr ""
28237
28238 #. type: textblock
28239 #: ../fish/guestfish-commands.pod:142
28240 msgid "This is used to view a file."
28241 msgstr ""
28242
28243 #. type: textblock
28244 #: ../fish/guestfish-commands.pod:144
28245 msgid ""
28246 "The default viewer is C<$PAGER>.  However if you use the alternate command "
28247 "C<less> you will get the C<less> command specifically."
28248 msgstr ""
28249
28250 #. type: =head2
28251 #: ../fish/guestfish-commands.pod:147
28252 msgid "reopen"
28253 msgstr ""
28254
28255 #. type: verbatim
28256 #: ../fish/guestfish-commands.pod:149
28257 #, no-wrap
28258 msgid ""
28259 "  reopen\n"
28260 "\n"
28261 msgstr ""
28262
28263 #. type: textblock
28264 #: ../fish/guestfish-commands.pod:151
28265 msgid ""
28266 "Close and reopen the libguestfs handle.  It is not necessary to use this "
28267 "normally, because the handle is closed properly when guestfish exits.  "
28268 "However this is occasionally useful for testing."
28269 msgstr ""
28270
28271 #. type: =head2
28272 #: ../fish/guestfish-commands.pod:155
28273 msgid "sparse"
28274 msgstr ""
28275
28276 #. type: verbatim
28277 #: ../fish/guestfish-commands.pod:157
28278 #, no-wrap
28279 msgid ""
28280 " sparse filename size\n"
28281 "\n"
28282 msgstr ""
28283
28284 #. type: textblock
28285 #: ../fish/guestfish-commands.pod:159
28286 msgid ""
28287 "This creates an empty sparse file of the given size, and then adds so it can "
28288 "be further examined."
28289 msgstr ""
28290
28291 #. type: textblock
28292 #: ../fish/guestfish-commands.pod:162
28293 msgid ""
28294 "In all respects it works the same as the L</alloc> command, except that the "
28295 "image file is allocated sparsely, which means that disk blocks are not "
28296 "assigned to the file until they are needed.  Sparse disk files only use "
28297 "space when written to, but they are slower and there is a danger you could "
28298 "run out of real disk space during a write operation."
28299 msgstr ""
28300
28301 #. type: =head2
28302 #: ../fish/guestfish-commands.pod:172
28303 msgid "supported"
28304 msgstr ""
28305
28306 #. type: verbatim
28307 #: ../fish/guestfish-commands.pod:174
28308 #, no-wrap
28309 msgid ""
28310 " supported\n"
28311 "\n"
28312 msgstr ""
28313
28314 #. type: textblock
28315 #: ../fish/guestfish-commands.pod:176
28316 msgid ""
28317 "This command returns a list of the optional groups known to the daemon, and "
28318 "indicates which ones are supported by this build of the libguestfs appliance."
28319 msgstr ""
28320
28321 #. type: textblock
28322 #: ../fish/guestfish-commands.pod:180
28323 msgid "See also L<guestfs(3)/AVAILABILITY>."
28324 msgstr ""
28325
28326 #. type: =head2
28327 #: ../fish/guestfish-commands.pod:182
28328 msgid "time"
28329 msgstr ""
28330
28331 #. type: verbatim
28332 #: ../fish/guestfish-commands.pod:184
28333 #, no-wrap
28334 msgid ""
28335 " time command args...\n"
28336 "\n"
28337 msgstr ""
28338
28339 #. type: textblock
28340 #: ../fish/guestfish-commands.pod:186
28341 msgid ""
28342 "Run the command as usual, but print the elapsed time afterwards.  This can "
28343 "be useful for benchmarking operations."
28344 msgstr ""
28345
28346 #. type: textblock
28347 #: ../test-tool/libguestfs-test-tool.pod:5
28348 msgid "libguestfs-test-tool - End user tests for libguestfs"
28349 msgstr ""
28350
28351 #. type: verbatim
28352 #: ../test-tool/libguestfs-test-tool.pod:9
28353 #, no-wrap
28354 msgid ""
28355 " libguestfs-test-tool [--options]\n"
28356 "\n"
28357 msgstr ""
28358
28359 #. type: textblock
28360 #: ../test-tool/libguestfs-test-tool.pod:13
28361 msgid ""
28362 "libguestfs-test-tool is a test program shipped with libguestfs to end users "
28363 "and developers, to allow them to check basic libguestfs functionality is "
28364 "working.  This is needed because libguestfs occasionally breaks for reasons "
28365 "beyond our control: usually because of changes in the underlying qemu or "
28366 "kernel packages, or the host environment."
28367 msgstr ""
28368
28369 #. type: textblock
28370 #: ../test-tool/libguestfs-test-tool.pod:20
28371 msgid "If you suspect a problem in libguestfs, then just run:"
28372 msgstr ""
28373
28374 #. type: verbatim
28375 #: ../test-tool/libguestfs-test-tool.pod:22
28376 #, no-wrap
28377 msgid ""
28378 " libguestfs-test-tool\n"
28379 "\n"
28380 msgstr ""
28381
28382 #. type: textblock
28383 #: ../test-tool/libguestfs-test-tool.pod:24
28384 msgid "It will print lots of diagnostic messages."
28385 msgstr ""
28386
28387 #. type: textblock
28388 #: ../test-tool/libguestfs-test-tool.pod:26
28389 msgid "If it runs to completion successfully, you will see this near the end:"
28390 msgstr ""
28391
28392 #. type: verbatim
28393 #: ../test-tool/libguestfs-test-tool.pod:28
28394 #, no-wrap
28395 msgid ""
28396 " ===== TEST FINISHED OK =====\n"
28397 "\n"
28398 msgstr ""
28399
28400 #. type: textblock
28401 #: ../test-tool/libguestfs-test-tool.pod:30
28402 msgid "and the test tool will exit with code 0."
28403 msgstr ""
28404
28405 #. type: textblock
28406 #: ../test-tool/libguestfs-test-tool.pod:32
28407 msgid ""
28408 "If it fails (and/or exits with non-zero error code), please paste the "
28409 "B<complete, unedited> output of the test tool into a bug report.  More "
28410 "information about reporting bugs can be found on the L<http://libguestfs.org/"
28411 "> website."
28412 msgstr ""
28413
28414 #. type: =item
28415 #: ../test-tool/libguestfs-test-tool.pod:41
28416 msgid "I<--help>"
28417 msgstr ""
28418
28419 #. type: textblock
28420 #: ../test-tool/libguestfs-test-tool.pod:43
28421 msgid "Display short usage information and exit."
28422 msgstr ""
28423
28424 #. type: =item
28425 #: ../test-tool/libguestfs-test-tool.pod:45
28426 msgid "I<--qemu qemu_binary>"
28427 msgstr ""
28428
28429 #. type: textblock
28430 #: ../test-tool/libguestfs-test-tool.pod:47
28431 msgid ""
28432 "If you have downloaded another qemu binary, point this option at the full "
28433 "path of the binary to try it."
28434 msgstr ""
28435
28436 #. type: =item
28437 #: ../test-tool/libguestfs-test-tool.pod:50
28438 msgid "I<--qemudir qemu_source_dir>"
28439 msgstr ""
28440
28441 #. type: textblock
28442 #: ../test-tool/libguestfs-test-tool.pod:52
28443 msgid ""
28444 "If you have compiled qemu from source, point this option at the source "
28445 "directory to try it."
28446 msgstr ""
28447
28448 #. type: =item
28449 #: ../test-tool/libguestfs-test-tool.pod:55
28450 msgid "I<--timeout N>"
28451 msgstr ""
28452
28453 #. type: textblock
28454 #: ../test-tool/libguestfs-test-tool.pod:57
28455 msgid ""
28456 "Set the launch timeout to C<N> seconds.  The default is 120 seconds which "
28457 "does not usually need to be adjusted unless your machine is very slow."
28458 msgstr ""
28459
28460 #. type: =head1
28461 #: ../test-tool/libguestfs-test-tool.pod:63
28462 msgid "TRYING OUT A DIFFERENT VERSION OF QEMU"
28463 msgstr ""
28464
28465 #. type: textblock
28466 #: ../test-tool/libguestfs-test-tool.pod:65
28467 msgid ""
28468 "If you have compiled another version of qemu from source and would like to "
28469 "try that, then you can use the I<--qemudir> option to point to the qemu "
28470 "source directory."
28471 msgstr ""
28472
28473 #. type: textblock
28474 #: ../test-tool/libguestfs-test-tool.pod:69
28475 msgid ""
28476 "If you have downloaded a qemu binary from somewhere, use the I<--qemu> "
28477 "option to point to the binary."
28478 msgstr ""
28479
28480 #. type: textblock
28481 #: ../test-tool/libguestfs-test-tool.pod:72
28482 msgid ""
28483 "When using an alternate qemu with libguestfs, usually you would need to "
28484 "write a qemu wrapper script (see section I<QEMU WRAPPERS> in L<guestfs(3)"
28485 ">).  libguestfs-test-tool writes a temporary qemu wrapper script when you "
28486 "use either of the I<--qemudir> or I<--qemu> options."
28487 msgstr ""
28488
28489 #. type: textblock
28490 #: ../test-tool/libguestfs-test-tool.pod:79
28491 msgid ""
28492 "libguestfs-test-tool returns I<0> if the tests completed without error, or "
28493 "I<1> if there was an error."
28494 msgstr ""
28495
28496 #. type: textblock
28497 #: ../test-tool/libguestfs-test-tool.pod:84
28498 msgid ""
28499 "For the full list of environment variables which may affect libguestfs, "
28500 "please see the L<guestfs(3)> manual page."
28501 msgstr ""
28502
28503 #. type: textblock
28504 #: ../test-tool/libguestfs-test-tool.pod:89
28505 msgid "L<guestfs(3)>, L<http://libguestfs.org/>, L<http://qemu.org/>."
28506 msgstr ""
28507
28508 #. type: textblock
28509 #: ../fuse/guestmount.pod:5
28510 msgid ""
28511 "guestmount - Mount a guest filesystem on the host using FUSE and libguestfs"
28512 msgstr ""
28513
28514 #. type: verbatim
28515 #: ../fuse/guestmount.pod:9
28516 #, no-wrap
28517 msgid ""
28518 " guestmount [--options] -a disk.img -m device [--ro] mountpoint\n"
28519 "\n"
28520 msgstr ""
28521
28522 #. type: verbatim
28523 #: ../fuse/guestmount.pod:11
28524 #, no-wrap
28525 msgid ""
28526 " guestmount [--options] -a disk.img -i [--ro] mountpoint\n"
28527 "\n"
28528 msgstr ""
28529
28530 #. type: verbatim
28531 #: ../fuse/guestmount.pod:13
28532 #, no-wrap
28533 msgid ""
28534 " guestmount [--options] -d Guest -i [--ro] mountpoint\n"
28535 "\n"
28536 msgstr ""
28537
28538 #. type: textblock
28539 #: ../fuse/guestmount.pod:17
28540 msgid ""
28541 "You must I<not> use C<guestmount> in read-write mode on live virtual "
28542 "machines.  If you do this, you risk disk corruption in the VM."
28543 msgstr ""
28544
28545 #. type: textblock
28546 #: ../fuse/guestmount.pod:22
28547 msgid ""
28548 "The guestmount program can be used to mount virtual machine filesystems and "
28549 "other disk images on the host.  It uses libguestfs for access to the guest "
28550 "filesystem, and FUSE (the \"filesystem in userspace\") to make it appear as "
28551 "a mountable device."
28552 msgstr ""
28553
28554 #. type: textblock
28555 #: ../fuse/guestmount.pod:27
28556 msgid ""
28557 "Along with other options, you have to give at least one device (I<-a> "
28558 "option) or libvirt domain (I<-d> option), and at least one mountpoint (I<-m> "
28559 "option) or use the I<-i> inspection option.  How this works is better "
28560 "explained in the L<guestfish(1)> manual page, or by looking at the examples "
28561 "below."
28562 msgstr ""
28563
28564 #. type: textblock
28565 #: ../fuse/guestmount.pod:33
28566 msgid ""
28567 "FUSE lets you mount filesystems as non-root.  The mountpoint must be owned "
28568 "by you, and the filesystem will not be visible to any other users unless you "
28569 "make certain global configuration changes to C</etc/fuse.conf>.  To unmount "
28570 "the filesystem, use the C<fusermount -u> command."
28571 msgstr ""
28572
28573 #. type: textblock
28574 #: ../fuse/guestmount.pod:41
28575 msgid ""
28576 "For a typical Windows guest which has its main filesystem on the first "
28577 "partition:"
28578 msgstr ""
28579
28580 #. type: verbatim
28581 #: ../fuse/guestmount.pod:44
28582 #, no-wrap
28583 msgid ""
28584 " guestmount -a windows.img -m /dev/sda1 --ro /mnt\n"
28585 "\n"
28586 msgstr ""
28587
28588 #. type: textblock
28589 #: ../fuse/guestmount.pod:46
28590 msgid ""
28591 "For a typical Linux guest which has a /boot filesystem on the first "
28592 "partition, and the root filesystem on a logical volume:"
28593 msgstr ""
28594
28595 #. type: verbatim
28596 #: ../fuse/guestmount.pod:49
28597 #, no-wrap
28598 msgid ""
28599 " guestmount -a linux.img -m /dev/VG/LV -m /dev/sda1:/boot --ro /mnt\n"
28600 "\n"
28601 msgstr ""
28602
28603 #. type: textblock
28604 #: ../fuse/guestmount.pod:51
28605 msgid "To get libguestfs to detect guest mountpoints for you:"
28606 msgstr ""
28607
28608 #. type: verbatim
28609 #: ../fuse/guestmount.pod:53
28610 #, no-wrap
28611 msgid ""
28612 " guestmount -a guest.img -i --ro /mnt\n"
28613 "\n"
28614 msgstr ""
28615
28616 #. type: textblock
28617 #: ../fuse/guestmount.pod:55
28618 msgid "For a libvirt guest called \"Guest\" you could do:"
28619 msgstr ""
28620
28621 #. type: verbatim
28622 #: ../fuse/guestmount.pod:57
28623 #, no-wrap
28624 msgid ""
28625 " guestmount -d Guest -i --ro /mnt\n"
28626 "\n"
28627 msgstr ""
28628
28629 #. type: textblock
28630 #: ../fuse/guestmount.pod:59
28631 msgid ""
28632 "If you don't know what filesystems are contained in a guest or disk image, "
28633 "use L<virt-filesystems(1)> first:"
28634 msgstr ""
28635
28636 #. type: verbatim
28637 #: ../fuse/guestmount.pod:62
28638 #, no-wrap
28639 msgid ""
28640 " virt-filesystems MyGuest\n"
28641 "\n"
28642 msgstr ""
28643
28644 #. type: textblock
28645 #: ../fuse/guestmount.pod:64
28646 msgid ""
28647 "If you want to trace the libguestfs calls but without excessive debugging "
28648 "information, we recommend:"
28649 msgstr ""
28650
28651 #. type: verbatim
28652 #: ../fuse/guestmount.pod:67
28653 #, no-wrap
28654 msgid ""
28655 " guestmount [...] --trace /mnt\n"
28656 "\n"
28657 msgstr ""
28658
28659 #. type: textblock
28660 #: ../fuse/guestmount.pod:69
28661 msgid "If you want to debug the program, we recommend:"
28662 msgstr ""
28663
28664 #. type: verbatim
28665 #: ../fuse/guestmount.pod:71
28666 #, no-wrap
28667 msgid ""
28668 " guestmount [...] --trace --verbose /mnt\n"
28669 "\n"
28670 msgstr ""
28671
28672 #. type: =item
28673 #: ../fuse/guestmount.pod:77
28674 msgid "B<-a image> | B<--add image>"
28675 msgstr ""
28676
28677 #. type: textblock
28678 #: ../fuse/guestmount.pod:79
28679 msgid "Add a block device or virtual machine image."
28680 msgstr ""
28681
28682 #. type: =item
28683 #: ../fuse/guestmount.pod:84
28684 msgid "B<-c URI> | B<--connect URI>"
28685 msgstr ""
28686
28687 #. type: =item
28688 #: ../fuse/guestmount.pod:90
28689 msgid "B<-d libvirt-domain> | B<--domain libvirt-domain>"
28690 msgstr ""
28691
28692 #. type: =item
28693 #: ../fuse/guestmount.pod:98
28694 msgid "B<--dir-cache-timeout N>"
28695 msgstr ""
28696
28697 #. type: textblock
28698 #: ../fuse/guestmount.pod:100
28699 msgid ""
28700 "Set the readdir cache timeout to I<N> seconds, the default being 60 "
28701 "seconds.  The readdir cache [actually, there are several semi-independent "
28702 "caches] is populated after a readdir(2) call with the stat and extended "
28703 "attributes of the files in the directory, in anticipation that they will be "
28704 "requested soon after."
28705 msgstr ""
28706
28707 #. type: textblock
28708 #: ../fuse/guestmount.pod:106
28709 msgid ""
28710 "There is also a different attribute cache implemented by FUSE (see the FUSE "
28711 "option I<-o attr_timeout>), but the FUSE cache does not anticipate future "
28712 "requests, only cache existing ones."
28713 msgstr ""
28714
28715 #. type: =item
28716 #: ../fuse/guestmount.pod:117
28717 msgid "B<--format=raw|qcow2|..> | B<--format>"
28718 msgstr ""
28719
28720 #. type: textblock
28721 #: ../fuse/guestmount.pod:124
28722 msgid ""
28723 "If you have untrusted raw-format guest disk images, you should use this "
28724 "option to specify the disk format.  This avoids a possible security problem "
28725 "with malicious guests (CVE-2010-3851).  See also L<guestfs(3)/"
28726 "guestfs_add_drive_opts>."
28727 msgstr ""
28728
28729 #. type: =item
28730 #: ../fuse/guestmount.pod:129
28731 msgid "B<--fuse-help>"
28732 msgstr ""
28733
28734 #. type: textblock
28735 #: ../fuse/guestmount.pod:131
28736 msgid "Display help on special FUSE options (see I<-o> below)."
28737 msgstr ""
28738
28739 #. type: textblock
28740 #: ../fuse/guestmount.pod:135
28741 msgid "Display brief help and exit."
28742 msgstr ""
28743
28744 #. type: =item
28745 #: ../fuse/guestmount.pod:137
28746 msgid "B<-i> | B<--inspector>"
28747 msgstr ""
28748
28749 #. type: textblock
28750 #: ../fuse/guestmount.pod:157
28751 msgid ""
28752 "Mount the named partition or logical volume on the given mountpoint B<in the "
28753 "guest> (this has nothing to do with mountpoints in the host)."
28754 msgstr ""
28755
28756 #. type: textblock
28757 #: ../fuse/guestmount.pod:160
28758 msgid ""
28759 "If the mountpoint is omitted, it defaults to C</>.  You have to mount "
28760 "something on C</>."
28761 msgstr ""
28762
28763 #. type: =item
28764 #: ../fuse/guestmount.pod:173
28765 msgid "B<-n> | B<--no-sync>"
28766 msgstr ""
28767
28768 #. type: textblock
28769 #: ../fuse/guestmount.pod:175
28770 msgid ""
28771 "By default, we attempt to sync the guest disk when the FUSE mountpoint is "
28772 "unmounted.  If you specify this option, then we don't attempt to sync the "
28773 "disk.  See the discussion of autosync in the L<guestfs(3)> manpage."
28774 msgstr ""
28775
28776 #. type: =item
28777 #: ../fuse/guestmount.pod:180
28778 msgid "B<-o option> | B<--option option>"
28779 msgstr ""
28780
28781 #. type: textblock
28782 #: ../fuse/guestmount.pod:182
28783 msgid "Pass extra options to FUSE."
28784 msgstr ""
28785
28786 #. type: textblock
28787 #: ../fuse/guestmount.pod:184
28788 msgid ""
28789 "To get a list of all the extra options supported by FUSE, use the command "
28790 "below.  Note that only the FUSE I<-o> options can be passed, and only some "
28791 "of them are a good idea."
28792 msgstr ""
28793
28794 #. type: verbatim
28795 #: ../fuse/guestmount.pod:188
28796 #, no-wrap
28797 msgid ""
28798 " guestmount --fuse-help\n"
28799 "\n"
28800 msgstr ""
28801
28802 #. type: textblock
28803 #: ../fuse/guestmount.pod:190
28804 msgid "Some potentially useful FUSE options:"
28805 msgstr ""
28806
28807 #. type: =item
28808 #: ../fuse/guestmount.pod:194
28809 msgid "B<-o allow_other>"
28810 msgstr ""
28811
28812 #. type: textblock
28813 #: ../fuse/guestmount.pod:196
28814 msgid "Allow other users to see the filesystem."
28815 msgstr ""
28816
28817 #. type: =item
28818 #: ../fuse/guestmount.pod:198
28819 msgid "B<-o attr_timeout=N>"
28820 msgstr ""
28821
28822 #. type: textblock
28823 #: ../fuse/guestmount.pod:200
28824 msgid "Enable attribute caching by FUSE, and set the timeout to I<N> seconds."
28825 msgstr ""
28826
28827 #. type: =item
28828 #: ../fuse/guestmount.pod:202
28829 msgid "B<-o kernel_cache>"
28830 msgstr ""
28831
28832 #. type: textblock
28833 #: ../fuse/guestmount.pod:204
28834 msgid ""
28835 "Allow the kernel to cache files (reduces the number of reads that have to go "
28836 "through the L<guestfs(3)> API).  This is generally a good idea if you can "
28837 "afford the extra memory usage."
28838 msgstr ""
28839
28840 #. type: =item
28841 #: ../fuse/guestmount.pod:208
28842 msgid "B<-o uid=N> B<-o gid=N>"
28843 msgstr ""
28844
28845 #. type: textblock
28846 #: ../fuse/guestmount.pod:210
28847 msgid ""
28848 "Use these options to map all UIDs and GIDs inside the guest filesystem to "
28849 "the chosen values."
28850 msgstr ""
28851
28852 #. type: =item
28853 #: ../fuse/guestmount.pod:215
28854 msgid "B<-r> | B<--ro>"
28855 msgstr ""
28856
28857 #. type: textblock
28858 #: ../fuse/guestmount.pod:217
28859 msgid ""
28860 "Add devices and mount everything read-only.  Also disallow writes and make "
28861 "the disk appear read-only to FUSE."
28862 msgstr ""
28863
28864 #. type: textblock
28865 #: ../fuse/guestmount.pod:220
28866 msgid ""
28867 "This is highly recommended if you are not going to edit the guest disk.  If "
28868 "the guest is running and this option is I<not> supplied, then there is a "
28869 "strong risk of disk corruption in the guest.  We try to prevent this from "
28870 "happening, but it is not always possible."
28871 msgstr ""
28872
28873 #. type: textblock
28874 #: ../fuse/guestmount.pod:225
28875 msgid "See also L<guestfish(1)/OPENING DISKS FOR READ AND WRITE>."
28876 msgstr ""
28877
28878 #. type: textblock
28879 #: ../fuse/guestmount.pod:229
28880 msgid "Enable SELinux support for the guest."
28881 msgstr ""
28882
28883 #. type: =item
28884 #: ../fuse/guestmount.pod:231
28885 msgid "B<-v> | B<--verbose>"
28886 msgstr ""
28887
28888 #. type: textblock
28889 #: ../fuse/guestmount.pod:233
28890 msgid "Enable verbose messages from underlying libguestfs."
28891 msgstr ""
28892
28893 #. type: =item
28894 #: ../fuse/guestmount.pod:235
28895 msgid "B<-V> | B<--version>"
28896 msgstr ""
28897
28898 #. type: textblock
28899 #: ../fuse/guestmount.pod:237
28900 msgid "Display the program version and exit."
28901 msgstr ""
28902
28903 #. type: =item
28904 #: ../fuse/guestmount.pod:239
28905 msgid "B<-w> | B<--rw>"
28906 msgstr ""
28907
28908 #. type: textblock
28909 #: ../fuse/guestmount.pod:244 ../fuse/guestmount.pod:265
28910 msgid "See L<guestfish(1)/OPENING DISKS FOR READ AND WRITE>."
28911 msgstr ""
28912
28913 #. type: =item
28914 #: ../fuse/guestmount.pod:246
28915 msgid "B<-x> | B<--trace>"
28916 msgstr ""
28917
28918 #. type: textblock
28919 #: ../fuse/guestmount.pod:248
28920 msgid "Trace libguestfs calls and entry into each FUSE function."
28921 msgstr ""
28922
28923 #. type: textblock
28924 #: ../fuse/guestmount.pod:250
28925 msgid "This also stops the daemon from forking into the background."
28926 msgstr ""
28927
28928 #. type: textblock
28929 #: ../fuse/guestmount.pod:271
28930 msgid ""
28931 "L<guestfish(1)>, L<virt-inspector(1)>, L<virt-cat(1)>, L<virt-edit(1)>, "
28932 "L<virt-tar(1)>, L<guestfs(3)>, L<http://libguestfs.org/>, L<http://fuse.sf."
28933 "net/>."
28934 msgstr ""
28935
28936 #. type: textblock
28937 #: ../fuse/guestmount.pod:286
28938 msgid "Copyright (C) 2009-2010 Red Hat Inc.  L<http://libguestfs.org/>"
28939 msgstr ""
28940
28941 #. type: textblock
28942 #: ../tools/virt-edit.pl:34
28943 msgid "virt-edit - Edit a file in a virtual machine"
28944 msgstr ""
28945
28946 #. type: verbatim
28947 #: ../tools/virt-edit.pl:38
28948 #, no-wrap
28949 msgid ""
28950 " virt-edit [--options] domname file\n"
28951 "\n"
28952 msgstr ""
28953
28954 #. type: verbatim
28955 #: ../tools/virt-edit.pl:40
28956 #, no-wrap
28957 msgid ""
28958 " virt-edit [--options] disk.img [disk.img ...] file\n"
28959 "\n"
28960 msgstr ""
28961
28962 #. type: verbatim
28963 #: ../tools/virt-edit.pl:42
28964 #, no-wrap
28965 msgid ""
28966 " virt-edit [domname|disk.img] file -e 'expr'\n"
28967 "\n"
28968 msgstr ""
28969
28970 #. type: textblock
28971 #: ../tools/virt-edit.pl:46
28972 msgid ""
28973 "You must I<not> use C<virt-edit> on live virtual machines.  If you do this, "
28974 "you risk disk corruption in the VM.  C<virt-edit> tries to stop you from "
28975 "doing this, but doesn't catch all cases."
28976 msgstr ""
28977
28978 #. type: textblock
28979 #: ../tools/virt-edit.pl:52
28980 msgid ""
28981 "C<virt-edit> is a command line tool to edit C<file> where C<file> exists in "
28982 "the named virtual machine (or disk image)."
28983 msgstr ""
28984
28985 #. type: textblock
28986 #: ../tools/virt-edit.pl:55
28987 msgid "If you want to just view a file, use L<virt-cat(1)>."
28988 msgstr ""
28989
28990 #. type: textblock
28991 #: ../tools/virt-edit.pl:57
28992 msgid ""
28993 "For more complex cases you should look at the L<guestfish(1)> tool (see L</"
28994 "USING GUESTFISH> below)."
28995 msgstr ""
28996
28997 #. type: textblock
28998 #: ../tools/virt-edit.pl:60
28999 msgid ""
29000 "C<virt-edit> cannot be used to create a new file, nor to edit multiple "
29001 "files.  L<guestfish(1)> can do that and much more."
29002 msgstr ""
29003
29004 #. type: textblock
29005 #: ../tools/virt-edit.pl:65
29006 msgid "Edit the named files interactively:"
29007 msgstr ""
29008
29009 #. type: verbatim
29010 #: ../tools/virt-edit.pl:67
29011 #, no-wrap
29012 msgid ""
29013 " virt-edit mydomain /boot/grub/grub.conf\n"
29014 "\n"
29015 msgstr ""
29016
29017 #. type: verbatim
29018 #: ../tools/virt-edit.pl:69
29019 #, no-wrap
29020 msgid ""
29021 " virt-edit mydomain /etc/passwd\n"
29022 "\n"
29023 msgstr ""
29024
29025 #. type: textblock
29026 #: ../tools/virt-edit.pl:71
29027 msgid "For Windows guests, some Windows paths are understood:"
29028 msgstr ""
29029
29030 #. type: verbatim
29031 #: ../tools/virt-edit.pl:73
29032 #, no-wrap
29033 msgid ""
29034 " virt-edit mywindomain 'c:\\autoexec.bat'\n"
29035 "\n"
29036 msgstr ""
29037
29038 #. type: textblock
29039 #: ../tools/virt-edit.pl:75
29040 msgid ""
29041 "You can also edit files non-interactively (see L</NON-INTERACTIVE EDITING> "
29042 "below).  To change the init default level to 5:"
29043 msgstr ""
29044
29045 #. type: verbatim
29046 #: ../tools/virt-edit.pl:79
29047 #, no-wrap
29048 msgid ""
29049 " virt-edit mydomain /etc/inittab -e 's/^id:.*/id:5:initdefault:/'\n"
29050 "\n"
29051 msgstr ""
29052
29053 #. type: textblock
29054 #: ../tools/virt-edit.pl:91 ../tools/virt-win-reg.pl:106
29055 #: ../tools/virt-list-filesystems.pl:63 ../tools/virt-tar.pl:113
29056 #: ../tools/virt-make-fs.pl:163 ../tools/virt-list-partitions.pl:64
29057 msgid "Display brief help."
29058 msgstr ""
29059
29060 #. type: textblock
29061 #: ../tools/virt-edit.pl:99 ../tools/virt-win-reg.pl:114
29062 #: ../tools/virt-list-filesystems.pl:71 ../tools/virt-tar.pl:121
29063 #: ../tools/virt-make-fs.pl:171 ../tools/virt-list-partitions.pl:72
29064 msgid "Display version number and exit."
29065 msgstr ""
29066
29067 #. type: =item
29068 #: ../tools/virt-edit.pl:105
29069 msgid "B<--backup extension> | B<-b extension>"
29070 msgstr ""
29071
29072 #. type: textblock
29073 #: ../tools/virt-edit.pl:107
29074 msgid ""
29075 "Create a backup of the original file I<in the guest disk image>.  The backup "
29076 "has the original filename with C<extension> added."
29077 msgstr ""
29078
29079 #. type: textblock
29080 #: ../tools/virt-edit.pl:110
29081 msgid ""
29082 "Usually the first character of C<extension> would be a dot C<.> so you would "
29083 "write:"
29084 msgstr ""
29085
29086 #. type: verbatim
29087 #: ../tools/virt-edit.pl:113
29088 #, no-wrap
29089 msgid ""
29090 " virt-edit -b .orig [etc]\n"
29091 "\n"
29092 msgstr ""
29093
29094 #. type: textblock
29095 #: ../tools/virt-edit.pl:115
29096 msgid "By default, no backup file is made."
29097 msgstr ""
29098
29099 #. type: =item
29100 #: ../tools/virt-edit.pl:121 ../tools/virt-win-reg.pl:128
29101 #: ../tools/virt-list-filesystems.pl:77 ../tools/virt-tar.pl:127
29102 #: ../tools/virt-list-partitions.pl:78
29103 msgid "B<--connect URI> | B<-c URI>"
29104 msgstr ""
29105
29106 #. type: textblock
29107 #: ../tools/virt-edit.pl:123 ../tools/virt-win-reg.pl:130
29108 #: ../tools/virt-list-filesystems.pl:79 ../tools/virt-tar.pl:129
29109 #: ../tools/virt-list-partitions.pl:80
29110 msgid ""
29111 "If using libvirt, connect to the given I<URI>.  If omitted, then we connect "
29112 "to the default libvirt hypervisor."
29113 msgstr ""
29114
29115 #. type: textblock
29116 #: ../tools/virt-edit.pl:126 ../tools/virt-win-reg.pl:133
29117 #: ../tools/virt-list-filesystems.pl:82 ../tools/virt-tar.pl:132
29118 #: ../tools/virt-list-partitions.pl:83
29119 msgid ""
29120 "If you specify guest block devices directly, then libvirt is not used at all."
29121 msgstr ""
29122
29123 #. type: =item
29124 #: ../tools/virt-edit.pl:133 ../tools/virt-win-reg.pl:140
29125 #: ../tools/virt-list-filesystems.pl:89 ../tools/virt-tar.pl:139
29126 #: ../tools/virt-list-partitions.pl:90
29127 msgid "B<--format> raw"
29128 msgstr ""
29129
29130 #. type: textblock
29131 #: ../tools/virt-edit.pl:135 ../tools/virt-win-reg.pl:142
29132 #: ../tools/virt-list-filesystems.pl:91 ../tools/virt-tar.pl:141
29133 #: ../tools/virt-list-partitions.pl:92
29134 msgid ""
29135 "Specify the format of disk images given on the command line.  If this is "
29136 "omitted then the format is autodetected from the content of the disk image."
29137 msgstr ""
29138
29139 #. type: textblock
29140 #: ../tools/virt-edit.pl:139 ../tools/virt-win-reg.pl:146
29141 #: ../tools/virt-list-filesystems.pl:95 ../tools/virt-tar.pl:145
29142 #: ../tools/virt-list-partitions.pl:96
29143 msgid ""
29144 "If disk images are requested from libvirt, then this program asks libvirt "
29145 "for this information.  In this case, the value of the format parameter is "
29146 "ignored."
29147 msgstr ""
29148
29149 #. type: textblock
29150 #: ../tools/virt-edit.pl:143 ../tools/virt-win-reg.pl:150
29151 #: ../tools/virt-list-filesystems.pl:99 ../tools/virt-tar.pl:149
29152 #: ../tools/virt-list-partitions.pl:100
29153 msgid ""
29154 "If working with untrusted raw-format guest disk images, you should ensure "
29155 "the format is always specified."
29156 msgstr ""
29157
29158 #. type: =item
29159 #: ../tools/virt-edit.pl:150
29160 msgid "B<--expr EXPR> | B<-e EXPR>"
29161 msgstr ""
29162
29163 #. type: textblock
29164 #: ../tools/virt-edit.pl:152
29165 msgid ""
29166 "Instead of launching the external editor, non-interactively apply the Perl "
29167 "expression C<EXPR> to each line in the file.  See L</NON-INTERACTIVE "
29168 "EDITING> below."
29169 msgstr ""
29170
29171 #. type: textblock
29172 #: ../tools/virt-edit.pl:156
29173 msgid ""
29174 "Be careful to properly quote the expression to prevent it from being altered "
29175 "by the shell."
29176 msgstr ""
29177
29178 #. type: =head1
29179 #: ../tools/virt-edit.pl:280
29180 msgid "NON-INTERACTIVE EDITING"
29181 msgstr ""
29182
29183 #. type: textblock
29184 #: ../tools/virt-edit.pl:282
29185 msgid ""
29186 "C<virt-edit> normally calls out to C<$EDITOR> (or vi) so the system "
29187 "administrator can interactively edit the file."
29188 msgstr ""
29189
29190 #. type: textblock
29191 #: ../tools/virt-edit.pl:285
29192 msgid ""
29193 "There are two ways also to use C<virt-edit> from scripts in order to make "
29194 "automated edits to files.  (Note that although you I<can> use C<virt-edit> "
29195 "like this, it's less error-prone to write scripts directly using the "
29196 "libguestfs API and Augeas for configuration file editing.)"
29197 msgstr ""
29198
29199 #. type: textblock
29200 #: ../tools/virt-edit.pl:291
29201 msgid ""
29202 "The first method is to temporarily set C<$EDITOR> to any script or program "
29203 "you want to run.  The script is invoked as C<$EDITOR tmpfile> and it should "
29204 "update C<tmpfile> in place however it likes."
29205 msgstr ""
29206
29207 #. type: textblock
29208 #: ../tools/virt-edit.pl:295
29209 msgid ""
29210 "The second method is to use the I<-e> parameter of C<virt-edit> to run a "
29211 "short Perl snippet in the style of L<sed(1)>.  For example to replace all "
29212 "instances of C<foo> with C<bar> in a file:"
29213 msgstr ""
29214
29215 #. type: verbatim
29216 #: ../tools/virt-edit.pl:299
29217 #, no-wrap
29218 msgid ""
29219 " virt-edit domname filename -e 's/foo/bar/'\n"
29220 "\n"
29221 msgstr ""
29222
29223 #. type: textblock
29224 #: ../tools/virt-edit.pl:301
29225 msgid ""
29226 "The full power of Perl regular expressions can be used (see L<perlre(1)>).  "
29227 "For example to delete root's password you could do:"
29228 msgstr ""
29229
29230 #. type: verbatim
29231 #: ../tools/virt-edit.pl:304
29232 #, no-wrap
29233 msgid ""
29234 " virt-edit domname /etc/passwd -e 's/^root:.*?:/root::/'\n"
29235 "\n"
29236 msgstr ""
29237
29238 #. type: textblock
29239 #: ../tools/virt-edit.pl:306
29240 msgid ""
29241 "What really happens is that the snippet is evaluated as a Perl expression "
29242 "for each line of the file.  The line, including the final C<\\n>, is passed "
29243 "in C<$_> and the expression should update C<$_> or leave it unchanged."
29244 msgstr ""
29245
29246 #. type: textblock
29247 #: ../tools/virt-edit.pl:311
29248 msgid ""
29249 "To delete a line, set C<$_> to the empty string.  For example, to delete the "
29250 "C<apache> user account from the password file you can do:"
29251 msgstr ""
29252
29253 #. type: verbatim
29254 #: ../tools/virt-edit.pl:314
29255 #, no-wrap
29256 msgid ""
29257 " virt-edit mydomain /etc/passwd -e '$_ = \"\" if /^apache:/'\n"
29258 "\n"
29259 msgstr ""
29260
29261 #. type: textblock
29262 #: ../tools/virt-edit.pl:316
29263 msgid ""
29264 "To insert a line, prepend or append it to C<$_>.  However appending lines to "
29265 "the end of the file is rather difficult this way since there is no concept "
29266 "of \"last line of the file\" - your expression just doesn't get called "
29267 "again.  You might want to use the first method (setting C<$EDITOR>) if you "
29268 "want to do this."
29269 msgstr ""
29270
29271 #. type: textblock
29272 #: ../tools/virt-edit.pl:322
29273 msgid ""
29274 "The variable C<$lineno> contains the current line number.  As is "
29275 "traditional, the first line in the file is number C<1>."
29276 msgstr ""
29277
29278 #. type: textblock
29279 #: ../tools/virt-edit.pl:325
29280 msgid ""
29281 "The return value from the expression is ignored, but the expression may call "
29282 "C<die> in order to abort the whole program, leaving the original file "
29283 "untouched."
29284 msgstr ""
29285
29286 #. type: textblock
29287 #: ../tools/virt-edit.pl:329
29288 msgid ""
29289 "Remember when matching the end of a line that C<$_> may contain the final C<"
29290 "\\n>, or (for DOS files) C<\\r\\n>, or if the file does not end with a "
29291 "newline then neither of these.  Thus to match or substitute some text at the "
29292 "end of a line, use this regular expression:"
29293 msgstr ""
29294
29295 #. type: verbatim
29296 #: ../tools/virt-edit.pl:334
29297 #, no-wrap
29298 msgid ""
29299 " /some text(\\r?\\n)?$/\n"
29300 "\n"
29301 msgstr ""
29302
29303 #. type: textblock
29304 #: ../tools/virt-edit.pl:336
29305 msgid ""
29306 "Alternately, use the perl C<chomp> function, being careful not to chomp C<"
29307 "$_> itself (since that would remove all newlines from the file):"
29308 msgstr ""
29309
29310 #. type: verbatim
29311 #: ../tools/virt-edit.pl:340
29312 #, no-wrap
29313 msgid ""
29314 " my $m = $_; chomp $m; $m =~ /some text$/\n"
29315 "\n"
29316 msgstr ""
29317
29318 #. type: textblock
29319 #: ../tools/virt-edit.pl:344
29320 msgid ""
29321 "C<virt-edit> has a limited ability to understand Windows drive letters and "
29322 "paths (eg. C<E:\\foo\\bar.txt>)."
29323 msgstr ""
29324
29325 #. type: textblock
29326 #: ../tools/virt-edit.pl:347
29327 msgid "If and only if the guest is running Windows then:"
29328 msgstr ""
29329
29330 #. type: textblock
29331 #: ../tools/virt-edit.pl:353
29332 msgid ""
29333 "Drive letter prefixes like C<C:> are resolved against the Windows Registry "
29334 "to the correct filesystem."
29335 msgstr ""
29336
29337 #. type: textblock
29338 #: ../tools/virt-edit.pl:358
29339 msgid ""
29340 "Any backslash (C<\\>) characters in the path are replaced with forward "
29341 "slashes so that libguestfs can process it."
29342 msgstr ""
29343
29344 #. type: textblock
29345 #: ../tools/virt-edit.pl:363
29346 msgid ""
29347 "The path is resolved case insensitively to locate the file that should be "
29348 "edited."
29349 msgstr ""
29350
29351 #. type: textblock
29352 #: ../tools/virt-edit.pl:368
29353 msgid "There are some known shortcomings:"
29354 msgstr ""
29355
29356 #. type: textblock
29357 #: ../tools/virt-edit.pl:374
29358 msgid "Some NTFS symbolic links may not be followed correctly."
29359 msgstr ""
29360
29361 #. type: textblock
29362 #: ../tools/virt-edit.pl:378
29363 msgid "NTFS junction points that cross filesystems are not followed."
29364 msgstr ""
29365
29366 #. type: =head1
29367 #: ../tools/virt-edit.pl:435
29368 msgid "USING GUESTFISH"
29369 msgstr ""
29370
29371 #. type: textblock
29372 #: ../tools/virt-edit.pl:437
29373 msgid ""
29374 "L<guestfish(1)> is a more powerful, lower level tool which you can use when "
29375 "C<virt-edit> doesn't work."
29376 msgstr ""
29377
29378 #. type: textblock
29379 #: ../tools/virt-edit.pl:440
29380 msgid "Using C<virt-edit> is approximately equivalent to doing:"
29381 msgstr ""
29382
29383 #. type: verbatim
29384 #: ../tools/virt-edit.pl:442
29385 #, no-wrap
29386 msgid ""
29387 " guestfish --rw -i -d domname edit /file\n"
29388 "\n"
29389 msgstr ""
29390
29391 #. type: textblock
29392 #: ../tools/virt-edit.pl:444
29393 msgid ""
29394 "where C<domname> is the name of the libvirt guest, and C</file> is the full "
29395 "path to the file."
29396 msgstr ""
29397
29398 #. type: textblock
29399 #: ../tools/virt-edit.pl:447
29400 msgid ""
29401 "The command above uses libguestfs's guest inspection feature and so does not "
29402 "work on guests that libguestfs cannot inspect, or on things like arbitrary "
29403 "disk images that don't contain guests.  To edit a file on a disk image "
29404 "directly, use:"
29405 msgstr ""
29406
29407 #. type: verbatim
29408 #: ../tools/virt-edit.pl:452
29409 #, no-wrap
29410 msgid ""
29411 " guestfish --rw -a disk.img -m /dev/sda1 edit /file\n"
29412 "\n"
29413 msgstr ""
29414
29415 #. type: textblock
29416 #: ../tools/virt-edit.pl:454
29417 msgid ""
29418 "where C<disk.img> is the disk image, C</dev/sda1> is the filesystem within "
29419 "the disk image to edit, and C</file> is the full path to the file."
29420 msgstr ""
29421
29422 #. type: textblock
29423 #: ../tools/virt-edit.pl:458
29424 msgid ""
29425 "C<virt-edit> cannot create new files.  Use the guestfish commands C<touch>, "
29426 "C<write> or C<upload> instead:"
29427 msgstr ""
29428
29429 #. type: verbatim
29430 #: ../tools/virt-edit.pl:461
29431 #, no-wrap
29432 msgid ""
29433 " guestfish --rw -i -d domname touch /newfile\n"
29434 "\n"
29435 msgstr ""
29436
29437 #. type: verbatim
29438 #: ../tools/virt-edit.pl:463
29439 #, no-wrap
29440 msgid ""
29441 " guestfish --rw -i -d domname write /newfile \"new content\"\n"
29442 "\n"
29443 msgstr ""
29444
29445 #. type: verbatim
29446 #: ../tools/virt-edit.pl:465
29447 #, no-wrap
29448 msgid ""
29449 " guestfish --rw -i -d domname upload localfile /newfile\n"
29450 "\n"
29451 msgstr ""
29452
29453 #. type: textblock
29454 #: ../tools/virt-edit.pl:467
29455 msgid ""
29456 "C<virt-edit> cannot edit multiple files, but guestfish can do it like this:"
29457 msgstr ""
29458
29459 #. type: verbatim
29460 #: ../tools/virt-edit.pl:470
29461 #, no-wrap
29462 msgid ""
29463 " guestfish --rw -i -d domname edit /file1 : edit /file2\n"
29464 "\n"
29465 msgstr ""
29466
29467 #. type: =item
29468 #: ../tools/virt-edit.pl:480
29469 msgid "C<EDITOR>"
29470 msgstr ""
29471
29472 #. type: textblock
29473 #: ../tools/virt-edit.pl:482
29474 msgid ""
29475 "If set, this string is used as the editor.  It may contain arguments, eg. C<"
29476 "\"emacs -nw\">"
29477 msgstr ""
29478
29479 #. type: textblock
29480 #: ../tools/virt-edit.pl:485
29481 msgid "If not set, C<vi> is used."
29482 msgstr ""
29483
29484 #. type: =head1
29485 #: ../tools/virt-edit.pl:489 ../tools/virt-win-reg.pl:559
29486 #: ../tools/virt-list-filesystems.pl:182 ../tools/virt-tar.pl:279
29487 #: ../tools/virt-make-fs.pl:532 ../tools/virt-list-partitions.pl:250
29488 msgid "SHELL QUOTING"
29489 msgstr ""
29490
29491 #. type: textblock
29492 #: ../tools/virt-edit.pl:491 ../tools/virt-win-reg.pl:567
29493 #: ../tools/virt-list-filesystems.pl:184 ../tools/virt-tar.pl:281
29494 #: ../tools/virt-make-fs.pl:534 ../tools/virt-list-partitions.pl:252
29495 msgid ""
29496 "Libvirt guest names can contain arbitrary characters, some of which have "
29497 "meaning to the shell such as C<#> and space.  You may need to quote or "
29498 "escape these characters on the command line.  See the shell manual page L<sh"
29499 "(1)> for details."
29500 msgstr ""
29501
29502 #. type: textblock
29503 #: ../tools/virt-edit.pl:498
29504 msgid ""
29505 "L<guestfs(3)>, L<guestfish(1)>, L<virt-cat(1)>, L<virt-copy-in(1)>, L<virt-"
29506 "tar-in(1)>, L<Sys::Guestfs(3)>, L<Sys::Guestfs::Lib(3)>, L<Sys::Virt(3)>, "
29507 "L<http://libguestfs.org/>, L<perl(1)>, L<perlre(1)>."
29508 msgstr ""
29509
29510 #. type: =head1
29511 #: ../tools/virt-edit.pl:510 ../tools/virt-win-reg.pl:598
29512 #: ../tools/virt-list-filesystems.pl:202 ../tools/virt-tar.pl:301
29513 #: ../tools/virt-make-fs.pl:564 ../tools/virt-list-partitions.pl:269
29514 msgid "AUTHOR"
29515 msgstr ""
29516
29517 #. type: textblock
29518 #: ../tools/virt-edit.pl:512 ../tools/virt-win-reg.pl:600
29519 #: ../tools/virt-list-filesystems.pl:204 ../tools/virt-tar.pl:303
29520 #: ../tools/virt-make-fs.pl:566 ../tools/virt-list-partitions.pl:271
29521 msgid "Richard W.M. Jones L<http://people.redhat.com/~rjones/>"
29522 msgstr ""
29523
29524 #. type: textblock
29525 #: ../tools/virt-edit.pl:516
29526 msgid "Copyright (C) 2009-2011 Red Hat Inc."
29527 msgstr ""
29528
29529 #. type: textblock
29530 #: ../tools/virt-win-reg.pl:37
29531 msgid ""
29532 "virt-win-reg - Export and merge Windows Registry entries from a Windows guest"
29533 msgstr ""
29534
29535 #. type: verbatim
29536 #: ../tools/virt-win-reg.pl:41
29537 #, no-wrap
29538 msgid ""
29539 " virt-win-reg domname 'HKLM\\Path\\To\\Subkey'\n"
29540 "\n"
29541 msgstr ""
29542
29543 #. type: verbatim
29544 #: ../tools/virt-win-reg.pl:43
29545 #, no-wrap
29546 msgid ""
29547 " virt-win-reg domname 'HKLM\\Path\\To\\Subkey' name\n"
29548 "\n"
29549 msgstr ""
29550
29551 #. type: verbatim
29552 #: ../tools/virt-win-reg.pl:45
29553 #, no-wrap
29554 msgid ""
29555 " virt-win-reg domname 'HKLM\\Path\\To\\Subkey' @\n"
29556 "\n"
29557 msgstr ""
29558
29559 #. type: verbatim
29560 #: ../tools/virt-win-reg.pl:47
29561 #, no-wrap
29562 msgid ""
29563 " virt-win-reg --merge domname [input.reg ...]\n"
29564 "\n"
29565 msgstr ""
29566
29567 #. type: verbatim
29568 #: ../tools/virt-win-reg.pl:49
29569 #, no-wrap
29570 msgid ""
29571 " virt-win-reg [--options] disk.img ... # instead of domname\n"
29572 "\n"
29573 msgstr ""
29574
29575 #. type: textblock
29576 #: ../tools/virt-win-reg.pl:53
29577 msgid ""
29578 "You must I<not> use C<virt-win-reg> with the I<--merge> option on live "
29579 "virtual machines.  If you do this, you I<will> get irreversible disk "
29580 "corruption in the VM.  C<virt-win-reg> tries to stop you from doing this, "
29581 "but doesn't catch all cases."
29582 msgstr ""
29583
29584 #. type: textblock
29585 #: ../tools/virt-win-reg.pl:58
29586 msgid ""
29587 "Modifying the Windows Registry is an inherently risky operation.  The format "
29588 "is deliberately obscure and undocumented, and Registry changes can leave the "
29589 "system unbootable.  Therefore when using the I<--merge> option, make sure "
29590 "you have a reliable backup first."
29591 msgstr ""
29592
29593 #. type: textblock
29594 #: ../tools/virt-win-reg.pl:65
29595 msgid ""
29596 "This program can export and merge Windows Registry entries from a Windows "
29597 "guest."
29598 msgstr ""
29599
29600 #. type: textblock
29601 #: ../tools/virt-win-reg.pl:68
29602 msgid ""
29603 "The first parameter is the libvirt guest name or the raw disk image of a "
29604 "Windows guest."
29605 msgstr ""
29606
29607 #. type: textblock
29608 #: ../tools/virt-win-reg.pl:71
29609 msgid ""
29610 "If I<--merge> is I<not> specified, then the chosen registry key is displayed/"
29611 "exported (recursively).  For example:"
29612 msgstr ""
29613
29614 #. type: verbatim
29615 #: ../tools/virt-win-reg.pl:74
29616 #, no-wrap
29617 msgid ""
29618 " $ virt-win-reg Windows7 'HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft'\n"
29619 "\n"
29620 msgstr ""
29621
29622 #. type: textblock
29623 #: ../tools/virt-win-reg.pl:76
29624 msgid ""
29625 "You can also display single values from within registry keys, for example:"
29626 msgstr ""
29627
29628 #. type: verbatim
29629 #: ../tools/virt-win-reg.pl:79
29630 #, no-wrap
29631 msgid ""
29632 " $ cvkey='HKLM\\SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion'\n"
29633 " $ virt-win-reg Windows7 $cvkey ProductName\n"
29634 " Windows 7 Enterprise\n"
29635 "\n"
29636 msgstr ""
29637
29638 #. type: textblock
29639 #: ../tools/virt-win-reg.pl:83
29640 msgid ""
29641 "With I<--merge>, you can merge a textual regedit file into the Windows "
29642 "Registry:"
29643 msgstr ""
29644
29645 #. type: verbatim
29646 #: ../tools/virt-win-reg.pl:86
29647 #, no-wrap
29648 msgid ""
29649 " $ virt-win-reg --merge Windows7 changes.reg\n"
29650 "\n"
29651 msgstr ""
29652
29653 #. type: =head1
29654 #: ../tools/virt-win-reg.pl:88 ../tools/virt-tar.pl:45
29655 msgid "NOTE"
29656 msgstr ""
29657
29658 #. type: textblock
29659 #: ../tools/virt-win-reg.pl:90
29660 msgid ""
29661 "This program is only meant for simple access to the registry.  If you want "
29662 "to do complicated things with the registry, we suggest you download the "
29663 "Registry hive files from the guest using L<libguestfs(3)> or L<guestfish(1)> "
29664 "and access them locally, eg. using L<hivex(3)>, L<hivexsh(1)> or "
29665 "L<hivexregedit(1)>."
29666 msgstr ""
29667
29668 #. type: =item
29669 #: ../tools/virt-win-reg.pl:120 ../tools/virt-make-fs.pl:177
29670 msgid "B<--debug>"
29671 msgstr ""
29672
29673 #. type: textblock
29674 #: ../tools/virt-win-reg.pl:122
29675 msgid "Enable debugging messages."
29676 msgstr ""
29677
29678 #. type: =item
29679 #: ../tools/virt-win-reg.pl:157
29680 msgid "B<--merge>"
29681 msgstr ""
29682
29683 #. type: textblock
29684 #: ../tools/virt-win-reg.pl:159
29685 msgid ""
29686 "In merge mode, this merges a textual regedit file into the Windows Registry "
29687 "of the virtual machine.  If this flag is I<not> given then virt-win-reg "
29688 "displays or exports Registry entries instead."
29689 msgstr ""
29690
29691 #. type: textblock
29692 #: ../tools/virt-win-reg.pl:163
29693 msgid ""
29694 "Note that I<--merge> is I<unsafe> to use on live virtual machines, and will "
29695 "result in disk corruption.  However exporting (without this flag)  is always "
29696 "safe."
29697 msgstr ""
29698
29699 #. type: =item
29700 #: ../tools/virt-win-reg.pl:171
29701 msgid "B<--encoding> UTF-16LE|ASCII"
29702 msgstr ""
29703
29704 #. type: textblock
29705 #: ../tools/virt-win-reg.pl:173
29706 msgid ""
29707 "When merging (only), you may need to specify the encoding for strings to be "
29708 "used in the hive file.  This is explained in detail in L<Win::Hivex::Regedit"
29709 "(3)/ENCODING STRINGS>."
29710 msgstr ""
29711
29712 #. type: textblock
29713 #: ../tools/virt-win-reg.pl:177
29714 msgid ""
29715 "The default is to use UTF-16LE, which should work with recent versions of "
29716 "Windows."
29717 msgstr ""
29718
29719 #. type: =head1
29720 #: ../tools/virt-win-reg.pl:402
29721 msgid "SUPPORTED SYSTEMS"
29722 msgstr ""
29723
29724 #. type: textblock
29725 #: ../tools/virt-win-reg.pl:404
29726 msgid ""
29727 "The program currently supports Windows NT-derived guests starting with "
29728 "Windows XP through to at least Windows 7."
29729 msgstr ""
29730
29731 #. type: textblock
29732 #: ../tools/virt-win-reg.pl:407
29733 msgid ""
29734 "Registry support is done for C<HKEY_LOCAL_MACHINE\\SAM>, C<HKEY_LOCAL_MACHINE"
29735 "\\SECURITY>, C<HKEY_LOCAL_MACHINE\\SOFTWARE>, C<HKEY_LOCAL_MACHINE\\SYSTEM> "
29736 "and C<HKEY_USERS\\.DEFAULT>."
29737 msgstr ""
29738
29739 #. type: textblock
29740 #: ../tools/virt-win-reg.pl:411
29741 msgid ""
29742 "You can use C<HKLM> as a shorthand for C<HKEY_LOCAL_MACHINE>, and C<HKU> for "
29743 "C<HKEY_USERS>."
29744 msgstr ""
29745
29746 #. type: textblock
29747 #: ../tools/virt-win-reg.pl:414
29748 msgid ""
29749 "C<HKEY_USERS\\$SID> and C<HKEY_CURRENT_USER> are B<not> supported at this "
29750 "time."
29751 msgstr ""
29752
29753 #. type: =head1
29754 #: ../tools/virt-win-reg.pl:417
29755 msgid "ENCODING"
29756 msgstr ""
29757
29758 #. type: textblock
29759 #: ../tools/virt-win-reg.pl:419
29760 msgid ""
29761 "C<virt-win-reg> expects that regedit files have already been reencoded in "
29762 "the local encoding.  Usually on Linux hosts, this means UTF-8 with Unix-"
29763 "style line endings.  Since Windows regedit files are often in UTF-16LE with "
29764 "Windows-style line endings, you may need to reencode the whole file before "
29765 "or after processing."
29766 msgstr ""
29767
29768 #. type: textblock
29769 #: ../tools/virt-win-reg.pl:425
29770 msgid ""
29771 "To reencode a file from Windows format to Linux (before processing it with "
29772 "the I<--merge> option), you would do something like this:"
29773 msgstr ""
29774
29775 #. type: verbatim
29776 #: ../tools/virt-win-reg.pl:428
29777 #, no-wrap
29778 msgid ""
29779 " iconv -f utf-16le -t utf-8 < win.reg | dos2unix > linux.reg\n"
29780 "\n"
29781 msgstr ""
29782
29783 #. type: textblock
29784 #: ../tools/virt-win-reg.pl:430
29785 msgid ""
29786 "To go in the opposite direction, after exporting and before sending the file "
29787 "to a Windows user, do something like this:"
29788 msgstr ""
29789
29790 #. type: verbatim
29791 #: ../tools/virt-win-reg.pl:433
29792 #, no-wrap
29793 msgid ""
29794 " unix2dos linux.reg | iconv -f utf-8 -t utf-16le > win.reg\n"
29795 "\n"
29796 msgstr ""
29797
29798 #. type: textblock
29799 #: ../tools/virt-win-reg.pl:435
29800 msgid "For more information about encoding, see L<Win::Hivex::Regedit(3)>."
29801 msgstr ""
29802
29803 #. type: textblock
29804 #: ../tools/virt-win-reg.pl:437
29805 msgid ""
29806 "If you are unsure about the current encoding, use the L<file(1)> command.  "
29807 "Recent versions of Windows regedit.exe produce a UTF-16LE file with Windows-"
29808 "style (CRLF) line endings, like this:"
29809 msgstr ""
29810
29811 #. type: verbatim
29812 #: ../tools/virt-win-reg.pl:441
29813 #, no-wrap
29814 msgid ""
29815 " $ file software.reg\n"
29816 " software.reg: Little-endian UTF-16 Unicode text, with very long lines,\n"
29817 " with CRLF line terminators\n"
29818 "\n"
29819 msgstr ""
29820
29821 #. type: textblock
29822 #: ../tools/virt-win-reg.pl:445
29823 msgid "This file would need conversion before you could I<--merge> it."
29824 msgstr ""
29825
29826 #. type: =head1
29827 #: ../tools/virt-win-reg.pl:447
29828 msgid "CurrentControlSet etc."
29829 msgstr ""
29830
29831 #. type: textblock
29832 #: ../tools/virt-win-reg.pl:449
29833 msgid ""
29834 "Registry keys like C<CurrentControlSet> don't really exist in the Windows "
29835 "Registry at the level of the hive file, and therefore you cannot modify "
29836 "these."
29837 msgstr ""
29838
29839 #. type: textblock
29840 #: ../tools/virt-win-reg.pl:453
29841 msgid ""
29842 "C<CurrentControlSet> is usually an alias for C<ControlSet001>.  In some "
29843 "circumstances it might refer to another control set.  The way to find out is "
29844 "to look at the C<HKLM\\SYSTEM\\Select> key:"
29845 msgstr ""
29846
29847 #. type: verbatim
29848 #: ../tools/virt-win-reg.pl:457
29849 #, no-wrap
29850 msgid ""
29851 " # virt-win-reg WindowsGuest 'HKLM\\SYSTEM\\Select'\n"
29852 " [HKEY_LOCAL_MACHINE\\SYSTEM\\Select]\n"
29853 " \"Current\"=dword:00000001\n"
29854 " \"Default\"=dword:00000001\n"
29855 " \"Failed\"=dword:00000000\n"
29856 " \"LastKnownGood\"=dword:00000002\n"
29857 "\n"
29858 msgstr ""
29859
29860 #. type: textblock
29861 #: ../tools/virt-win-reg.pl:464
29862 msgid "\"Current\" is the one which Windows will choose when it boots."
29863 msgstr ""
29864
29865 #. type: textblock
29866 #: ../tools/virt-win-reg.pl:466
29867 msgid ""
29868 "Similarly, other C<Current...> keys in the path may need to be replaced."
29869 msgstr ""
29870
29871 #. type: =head1
29872 #: ../tools/virt-win-reg.pl:469
29873 msgid "WINDOWS TIPS"
29874 msgstr ""
29875
29876 #. type: textblock
29877 #: ../tools/virt-win-reg.pl:471
29878 msgid ""
29879 "Note that some of these tips modify the guest disk image.  The guest I<must> "
29880 "be shut off, else you will get disk corruption."
29881 msgstr ""
29882
29883 #. type: =head2
29884 #: ../tools/virt-win-reg.pl:474
29885 msgid "RUNNING A BATCH SCRIPT WHEN A USER LOGS IN"
29886 msgstr ""
29887
29888 #. type: textblock
29889 #: ../tools/virt-win-reg.pl:476
29890 msgid ""
29891 "Prepare a DOS batch script, VBScript or executable.  Upload this using "
29892 "L<guestfish(1)>.  For this example the script is called C<test.bat> and it "
29893 "is uploaded into C<C:\\>:"
29894 msgstr ""
29895
29896 #. type: verbatim
29897 #: ../tools/virt-win-reg.pl:480
29898 #, no-wrap
29899 msgid ""
29900 " guestfish -i -d WindowsGuest upload test.bat /test.bat\n"
29901 "\n"
29902 msgstr ""
29903
29904 #. type: textblock
29905 #: ../tools/virt-win-reg.pl:482
29906 msgid "Prepare a regedit file containing the registry change:"
29907 msgstr ""
29908
29909 #. type: verbatim
29910 #: ../tools/virt-win-reg.pl:484
29911 #, no-wrap
29912 msgid ""
29913 " cat > test.reg <<'EOF'\n"
29914 " [HKLM\\Software\\Microsoft\\Windows\\CurrentVersion\\RunOnce]\n"
29915 " \"Test\"=\"c:\\\\test.bat\"\n"
29916 " EOF\n"
29917 "\n"
29918 msgstr ""
29919
29920 #. type: textblock
29921 #: ../tools/virt-win-reg.pl:489
29922 msgid ""
29923 "In this example we use the key C<RunOnce> which means that the script will "
29924 "run precisely once when the first user logs in.  If you want it to run every "
29925 "time a user logs in, replace C<RunOnce> with C<Run>."
29926 msgstr ""
29927
29928 #. type: textblock
29929 #: ../tools/virt-win-reg.pl:493
29930 msgid "Now update the registry:"
29931 msgstr ""
29932
29933 #. type: verbatim
29934 #: ../tools/virt-win-reg.pl:495
29935 #, no-wrap
29936 msgid ""
29937 " virt-win-reg --merge WindowsGuest test.reg\n"
29938 "\n"
29939 msgstr ""
29940
29941 #. type: =head2
29942 #: ../tools/virt-win-reg.pl:497
29943 msgid "INSTALLING A SERVICE"
29944 msgstr ""
29945
29946 #. type: textblock
29947 #: ../tools/virt-win-reg.pl:499
29948 msgid ""
29949 "This section assumes you are familiar with Windows services, and you either "
29950 "have a program which handles the Windows Service Control Protocol directly "
29951 "or you want to run any program using a service wrapper like SrvAny or the "
29952 "free RHSrvAny."
29953 msgstr ""
29954
29955 #. type: textblock
29956 #: ../tools/virt-win-reg.pl:504
29957 msgid ""
29958 "First upload the program and optionally the service wrapper.  In this case "
29959 "the test program is called C<test.exe> and we are using the RHSrvAny wrapper:"
29960 msgstr ""
29961
29962 #. type: verbatim
29963 #: ../tools/virt-win-reg.pl:508
29964 #, no-wrap
29965 msgid ""
29966 " guestfish -i -d WindowsGuest <<EOF\n"
29967 "   upload rhsrvany.exe /rhsrvany.exe\n"
29968 "   upload test.exe /test.exe\n"
29969 " EOF\n"
29970 "\n"
29971 msgstr ""
29972
29973 #. type: textblock
29974 #: ../tools/virt-win-reg.pl:513
29975 msgid ""
29976 "Prepare a regedit file containing the registry changes.  In this example, "
29977 "the first registry change is needed for the service itself or the service "
29978 "wrapper (if used).  The second registry change is only needed because I am "
29979 "using the RHSrvAny service wrapper."
29980 msgstr ""
29981
29982 #. type: verbatim
29983 #: ../tools/virt-win-reg.pl:518
29984 #, no-wrap
29985 msgid ""
29986 " cat > service.reg <<'EOF'\n"
29987 " [HKLM\\SYSTEM\\ControlSet001\\services\\RHSrvAny]\n"
29988 " \"Type\"=dword:00000010\n"
29989 " \"Start\"=dword:00000002\n"
29990 " \"ErrorControl\"=dword:00000001\n"
29991 " \"ImagePath\"=\"c:\\\\rhsrvany.exe\"\n"
29992 " \"DisplayName\"=\"RHSrvAny\"\n"
29993 " \"ObjectName\"=\"NetworkService\"\n"
29994 " \n"
29995 msgstr ""
29996
29997 #. type: verbatim
29998 #: ../tools/virt-win-reg.pl:527
29999 #, no-wrap
30000 msgid ""
30001 " [HKLM\\SYSTEM\\ControlSet001\\services\\RHSrvAny\\Parameters]\n"
30002 " \"CommandLine\"=\"c:\\\\test.exe\"\n"
30003 " \"PWD\"=\"c:\\\\Temp\"\n"
30004 " EOF\n"
30005 "\n"
30006 msgstr ""
30007
30008 #. type: textblock
30009 #: ../tools/virt-win-reg.pl:538
30010 msgid ""
30011 "For use of C<ControlSet001> see the section above in this manual page.  You "
30012 "may need to adjust this according to the control set that is in use by the "
30013 "guest."
30014 msgstr ""
30015
30016 #. type: textblock
30017 #: ../tools/virt-win-reg.pl:544
30018 msgid ""
30019 "C<\"ObjectName\"> controls the privileges that the service will have.  An "
30020 "alternative is C<\"ObjectName\"=\"LocalSystem\"> which would be the most "
30021 "privileged account."
30022 msgstr ""
30023
30024 #. type: textblock
30025 #: ../tools/virt-win-reg.pl:550
30026 msgid ""
30027 "For the meaning of the magic numbers, see this Microsoft KB article: "
30028 "L<http://support.microsoft.com/kb/103000>."
30029 msgstr ""
30030
30031 #. type: textblock
30032 #: ../tools/virt-win-reg.pl:555
30033 msgid "Update the registry:"
30034 msgstr ""
30035
30036 #. type: verbatim
30037 #: ../tools/virt-win-reg.pl:557
30038 #, no-wrap
30039 msgid ""
30040 " virt-win-reg --merge WindowsGuest service.reg\n"
30041 "\n"
30042 msgstr ""
30043
30044 #. type: textblock
30045 #: ../tools/virt-win-reg.pl:561
30046 msgid ""
30047 "Be careful when passing parameters containing C<\\> (backslash) in the "
30048 "shell.  Usually you will have to use 'single quotes' or double backslashes "
30049 "(but not both) to protect them from the shell."
30050 msgstr ""
30051
30052 #. type: textblock
30053 #: ../tools/virt-win-reg.pl:565
30054 msgid "Paths and value names are case-insensitive."
30055 msgstr ""
30056
30057 #. type: textblock
30058 #: ../tools/virt-win-reg.pl:574
30059 msgid ""
30060 "L<hivex(3)>, L<hivexsh(1)>, L<hivexregedit(1)>, L<guestfs(3)>, L<guestfish(1)"
30061 ">, L<virt-cat(1)>, L<Sys::Guestfs(3)>, L<Sys::Guestfs::Lib(3)>, L<Win::Hivex"
30062 "(3)>, L<Win::Hivex::Regedit(3)>, L<Sys::Virt(3)>, L<http://libguestfs.org/>."
30063 msgstr ""
30064
30065 #. type: textblock
30066 #: ../tools/virt-win-reg.pl:589 ../tools/virt-make-fs.pl:555
30067 msgid ""
30068 "When reporting bugs, please enable debugging and capture the I<complete> "
30069 "output:"
30070 msgstr ""
30071
30072 #. type: verbatim
30073 #: ../tools/virt-win-reg.pl:592
30074 #, no-wrap
30075 msgid ""
30076 " export LIBGUESTFS_DEBUG=1\n"
30077 " virt-win-reg --debug [... rest ...] > /tmp/virt-win-reg.log 2>&1\n"
30078 "\n"
30079 msgstr ""
30080
30081 #. type: textblock
30082 #: ../tools/virt-win-reg.pl:595
30083 msgid ""
30084 "Attach /tmp/virt-win-reg.log to a new bug report at L<https://bugzilla."
30085 "redhat.com/>"
30086 msgstr ""
30087
30088 #. type: textblock
30089 #: ../tools/virt-win-reg.pl:604 ../tools/virt-make-fs.pl:570
30090 msgid "Copyright (C) 2010 Red Hat Inc."
30091 msgstr ""
30092
30093 #. type: textblock
30094 #: ../tools/virt-list-filesystems.pl:32
30095 msgid ""
30096 "virt-list-filesystems - List filesystems in a virtual machine or disk image"
30097 msgstr ""
30098
30099 #. type: verbatim
30100 #: ../tools/virt-list-filesystems.pl:36
30101 #, no-wrap
30102 msgid ""
30103 " virt-list-filesystems [--options] domname\n"
30104 "\n"
30105 msgstr ""
30106
30107 #. type: verbatim
30108 #: ../tools/virt-list-filesystems.pl:38
30109 #, no-wrap
30110 msgid ""
30111 " virt-list-filesystems [--options] disk.img [disk.img ...]\n"
30112 "\n"
30113 msgstr ""
30114
30115 #. type: textblock
30116 #: ../tools/virt-list-filesystems.pl:42 ../tools/virt-list-partitions.pl:42
30117 msgid ""
30118 "This tool is obsolete.  Use L<virt-filesystems(1)> as a more flexible "
30119 "replacement."
30120 msgstr ""
30121
30122 #. type: textblock
30123 #: ../tools/virt-list-filesystems.pl:45
30124 msgid ""
30125 "C<virt-list-filesystems> is a command line tool to list the filesystems that "
30126 "are contained in a virtual machine or disk image."
30127 msgstr ""
30128
30129 #. type: textblock
30130 #: ../tools/virt-list-filesystems.pl:49
30131 msgid ""
30132 "C<virt-list-filesystems> is just a simple wrapper around L<libguestfs(3)> "
30133 "functionality.  For more complex cases you should look at the L<guestfish(1)"
30134 "> tool."
30135 msgstr ""
30136
30137 #. type: =item
30138 #: ../tools/virt-list-filesystems.pl:106 ../tools/virt-list-partitions.pl:115
30139 msgid "B<-l> | B<--long>"
30140 msgstr ""
30141
30142 #. type: textblock
30143 #: ../tools/virt-list-filesystems.pl:108
30144 msgid ""
30145 "With this option, C<virt-list-filesystems> displays the type of each "
30146 "filesystem too (where \"type\" means C<ext3>, C<xfs> etc.)"
30147 msgstr ""
30148
30149 #. type: =item
30150 #: ../tools/virt-list-filesystems.pl:115
30151 msgid "B<-a> | B<--all>"
30152 msgstr ""
30153
30154 #. type: textblock
30155 #: ../tools/virt-list-filesystems.pl:117
30156 msgid ""
30157 "Normally we only show mountable filesystems.  If this option is given then "
30158 "swap devices are shown too."
30159 msgstr ""
30160
30161 #. type: textblock
30162 #: ../tools/virt-list-filesystems.pl:191
30163 msgid ""
30164 "L<guestfs(3)>, L<guestfish(1)>, L<virt-cat(1)>, L<virt-tar(1)>, L<virt-"
30165 "filesystems(1)>, L<virt-list-partitions(1)>, L<Sys::Guestfs(3)>, L<Sys::"
30166 "Guestfs::Lib(3)>, L<Sys::Virt(3)>, L<http://libguestfs.org/>."
30167 msgstr ""
30168
30169 #. type: textblock
30170 #: ../tools/virt-list-filesystems.pl:208 ../tools/virt-tar.pl:307
30171 msgid "Copyright (C) 2009 Red Hat Inc."
30172 msgstr ""
30173
30174 #. type: textblock
30175 #: ../tools/virt-tar.pl:33
30176 msgid "virt-tar - Extract or upload files to a virtual machine"
30177 msgstr ""
30178
30179 #. type: verbatim
30180 #: ../tools/virt-tar.pl:37
30181 #, no-wrap
30182 msgid ""
30183 " virt-tar [--options] -x domname directory tarball\n"
30184 "\n"
30185 msgstr ""
30186
30187 #. type: verbatim
30188 #: ../tools/virt-tar.pl:39
30189 #, no-wrap
30190 msgid ""
30191 " virt-tar [--options] -u domname tarball directory\n"
30192 "\n"
30193 msgstr ""
30194
30195 #. type: verbatim
30196 #: ../tools/virt-tar.pl:41
30197 #, no-wrap
30198 msgid ""
30199 " virt-tar [--options] disk.img [disk.img ...] -x directory tarball\n"
30200 "\n"
30201 msgstr ""
30202
30203 #. type: verbatim
30204 #: ../tools/virt-tar.pl:43
30205 #, no-wrap
30206 msgid ""
30207 " virt-tar [--options] disk.img [disk.img ...] -u tarball directory\n"
30208 "\n"
30209 msgstr ""
30210
30211 #. type: textblock
30212 #: ../tools/virt-tar.pl:47
30213 msgid ""
30214 "This tool is obsolete.  Use L<virt-copy-in(1)>, L<virt-copy-out(1)>, L<virt-"
30215 "tar-in(1)>, L<virt-tar-out(1)> as replacements."
30216 msgstr ""
30217
30218 #. type: textblock
30219 #: ../tools/virt-tar.pl:52
30220 msgid "Download C</home> from the VM into a local tarball:"
30221 msgstr ""
30222
30223 #. type: verbatim
30224 #: ../tools/virt-tar.pl:54
30225 #, no-wrap
30226 msgid ""
30227 " virt-tar -x domname /home home.tar\n"
30228 "\n"
30229 msgstr ""
30230
30231 #. type: verbatim
30232 #: ../tools/virt-tar.pl:56
30233 #, no-wrap
30234 msgid ""
30235 " virt-tar -zx domname /home home.tar.gz\n"
30236 "\n"
30237 msgstr ""
30238
30239 #. type: textblock
30240 #: ../tools/virt-tar.pl:58
30241 msgid "Upload a local tarball and unpack it inside C</tmp> in the VM:"
30242 msgstr ""
30243
30244 #. type: verbatim
30245 #: ../tools/virt-tar.pl:60
30246 #, no-wrap
30247 msgid ""
30248 " virt-tar -u domname uploadstuff.tar /tmp\n"
30249 "\n"
30250 msgstr ""
30251
30252 #. type: verbatim
30253 #: ../tools/virt-tar.pl:62
30254 #, no-wrap
30255 msgid ""
30256 " virt-tar -zu domname uploadstuff.tar.gz /tmp\n"
30257 "\n"
30258 msgstr ""
30259
30260 #. type: textblock
30261 #: ../tools/virt-tar.pl:66
30262 msgid ""
30263 "You must I<not> use C<virt-tar> with the I<-u> option (upload) on live "
30264 "virtual machines.  If you do this, you risk disk corruption in the VM.  "
30265 "C<virt-tar> tries to stop you from doing this, but doesn't catch all cases."
30266 msgstr ""
30267
30268 #. type: textblock
30269 #: ../tools/virt-tar.pl:71
30270 msgid ""
30271 "You can use I<-x> (extract) on live virtual machines, but you might get "
30272 "inconsistent results or errors if there is filesystem activity inside the "
30273 "VM.  If the live VM is synched and quiescent, then C<virt-tar> will usually "
30274 "work, but the only way to guarantee consistent results is if the virtual "
30275 "machine is shut down."
30276 msgstr ""
30277
30278 #. type: textblock
30279 #: ../tools/virt-tar.pl:79
30280 msgid ""
30281 "C<virt-tar> is a general purpose archive tool for downloading and uploading "
30282 "parts of a guest filesystem.  There are many possibilities: making backups, "
30283 "uploading data files, snooping on guest activity, fixing or customizing "
30284 "guests, etc."
30285 msgstr ""
30286
30287 #. type: textblock
30288 #: ../tools/virt-tar.pl:84
30289 msgid ""
30290 "If you want to just view a single file, use L<virt-cat(1)>.  If you just "
30291 "want to edit a single file, use L<virt-edit(1)>.  For more complex cases you "
30292 "should look at the L<guestfish(1)> tool."
30293 msgstr ""
30294
30295 #. type: textblock
30296 #: ../tools/virt-tar.pl:88
30297 msgid ""
30298 "There are two modes of operation: I<-x> (eXtract) downloads a directory and "
30299 "its contents (recursively) from the virtual machine into a local tarball.  "
30300 "I<-u> uploads from a local tarball, unpacking it into a directory inside the "
30301 "virtual machine.  You cannot use these two options together."
30302 msgstr ""
30303
30304 #. type: textblock
30305 #: ../tools/virt-tar.pl:94
30306 msgid ""
30307 "In addition, you may need to use the I<-z> (gZip) option to enable "
30308 "compression.  When uploading, you have to specify I<-z> if the upload file "
30309 "is compressed because virt-tar won't detect this on its own."
30310 msgstr ""
30311
30312 #. type: textblock
30313 #: ../tools/virt-tar.pl:98
30314 msgid ""
30315 "C<virt-tar> can only handle tar (optionally gzipped) format tarballs.  For "
30316 "example it cannot do PKZip files or bzip2 compression.  If you want that "
30317 "then you'll have to rebuild the tarballs yourself.  (This is a limitation of "
30318 "the L<libguestfs(3)> API)."
30319 msgstr ""
30320
30321 #. type: =item
30322 #: ../tools/virt-tar.pl:156
30323 msgid "B<-x> | B<--extract> | B<--download>"
30324 msgstr ""
30325
30326 #. type: =item
30327 #: ../tools/virt-tar.pl:158
30328 msgid "B<-u> | B<--upload>"
30329 msgstr ""
30330
30331 #. type: textblock
30332 #: ../tools/virt-tar.pl:160
30333 msgid ""
30334 "Use I<-x> to extract (download) a directory from a virtual machine to a "
30335 "local tarball."
30336 msgstr ""
30337
30338 #. type: textblock
30339 #: ../tools/virt-tar.pl:163
30340 msgid ""
30341 "Use I<-u> to upload and unpack from a local tarball into a virtual machine.  "
30342 "Please read the L</WARNING> section above before using this option."
30343 msgstr ""
30344
30345 #. type: textblock
30346 #: ../tools/virt-tar.pl:167
30347 msgid "You must specify exactly one of these options."
30348 msgstr ""
30349
30350 #. type: =item
30351 #: ../tools/virt-tar.pl:173
30352 msgid "B<-z> | B<--gzip>"
30353 msgstr ""
30354
30355 #. type: textblock
30356 #: ../tools/virt-tar.pl:175
30357 msgid "Specify that the input or output tarball is gzip-compressed."
30358 msgstr ""
30359
30360 #. type: textblock
30361 #: ../tools/virt-tar.pl:288
30362 msgid ""
30363 "L<guestfs(3)>, L<guestfish(1)>, L<virt-cat(1)>, L<virt-edit(1)>, L<virt-copy-"
30364 "in(1)>, L<virt-copy-out(1)>, L<virt-tar-in(1)>, L<virt-tar-out(1)>, L<Sys::"
30365 "Guestfs(3)>, L<Sys::Guestfs::Lib(3)>, L<Sys::Virt(3)>, L<http://libguestfs."
30366 "org/>."
30367 msgstr ""
30368
30369 #. type: textblock
30370 #: ../tools/virt-make-fs.pl:37
30371 msgid "virt-make-fs - Make a filesystem from a tar archive or files"
30372 msgstr ""
30373
30374 #. type: verbatim
30375 #: ../tools/virt-make-fs.pl:41
30376 #, no-wrap
30377 msgid ""
30378 " virt-make-fs [--options] input.tar output.img\n"
30379 "\n"
30380 msgstr ""
30381
30382 #. type: verbatim
30383 #: ../tools/virt-make-fs.pl:43
30384 #, no-wrap
30385 msgid ""
30386 " virt-make-fs [--options] input.tar.gz output.img\n"
30387 "\n"
30388 msgstr ""
30389
30390 #. type: verbatim
30391 #: ../tools/virt-make-fs.pl:45
30392 #, no-wrap
30393 msgid ""
30394 " virt-make-fs [--options] directory output.img\n"
30395 "\n"
30396 msgstr ""
30397
30398 #. type: textblock
30399 #: ../tools/virt-make-fs.pl:49
30400 msgid ""
30401 "Virt-make-fs is a command line tool for creating a filesystem from a tar "
30402 "archive or some files in a directory.  It is similar to tools like L<mkisofs"
30403 "(1)>, L<genisoimage(1)> and L<mksquashfs(1)>.  Unlike those tools, it can "
30404 "create common filesystem types like ext2/3 or NTFS, which can be useful if "
30405 "you want to attach these filesystems to existing virtual machines (eg. to "
30406 "import large amounts of read-only data to a VM)."
30407 msgstr ""
30408
30409 #. type: textblock
30410 #: ../tools/virt-make-fs.pl:57
30411 msgid "Basic usage is:"
30412 msgstr ""
30413
30414 #. type: verbatim
30415 #: ../tools/virt-make-fs.pl:59
30416 #, no-wrap
30417 msgid ""
30418 " virt-make-fs input output\n"
30419 "\n"
30420 msgstr ""
30421
30422 #. type: textblock
30423 #: ../tools/virt-make-fs.pl:61
30424 msgid ""
30425 "where C<input> is either a directory containing files that you want to add, "
30426 "or a tar archive (either uncompressed tar or gzip-compressed tar); and "
30427 "C<output> is a disk image.  The input type is detected automatically.  The "
30428 "output disk image defaults to a raw ext2 image unless you specify extra "
30429 "flags (see L</OPTIONS> below)."
30430 msgstr ""
30431
30432 #. type: =head2
30433 #: ../tools/virt-make-fs.pl:67
30434 msgid "EXTRA SPACE"
30435 msgstr ""
30436
30437 #. type: textblock
30438 #: ../tools/virt-make-fs.pl:69
30439 msgid ""
30440 "Unlike formats such as tar and squashfs, a filesystem does not \"just fit\" "
30441 "the files that it contains, but might have extra space.  Depending on how "
30442 "you are going to use the output, you might think this extra space is wasted "
30443 "and want to minimize it, or you might want to leave space so that more files "
30444 "can be added later.  Virt-make-fs defaults to minimizing the extra space, "
30445 "but you can use the I<--size> flag to leave space in the filesystem if you "
30446 "want it."
30447 msgstr ""
30448
30449 #. type: textblock
30450 #: ../tools/virt-make-fs.pl:77
30451 msgid ""
30452 "An alternative way to leave extra space but not make the output image any "
30453 "bigger is to use an alternative disk image format (instead of the default "
30454 "\"raw\" format).  Using I<--format=qcow2> will use the native QEmu/KVM qcow2 "
30455 "image format (check your hypervisor supports this before using it).  This "
30456 "allows you to choose a large I<--size> but the extra space won't actually be "
30457 "allocated in the image until you try to store something in it."
30458 msgstr ""
30459
30460 #. type: textblock
30461 #: ../tools/virt-make-fs.pl:85
30462 msgid ""
30463 "Don't forget that you can also use local commands including L<resize2fs(8)> "
30464 "and L<virt-resize(1)> to resize existing filesystems, or rerun virt-make-fs "
30465 "to build another image from scratch."
30466 msgstr ""
30467
30468 #. type: =head3
30469 #: ../tools/virt-make-fs.pl:89 ../tools/virt-make-fs.pl:123
30470 #: ../tools/virt-make-fs.pl:142
30471 msgid "EXAMPLE"
30472 msgstr ""
30473
30474 #. type: verbatim
30475 #: ../tools/virt-make-fs.pl:91
30476 #, no-wrap
30477 msgid ""
30478 " virt-make-fs --format=qcow2 --size=+200M input output.img\n"
30479 "\n"
30480 msgstr ""
30481
30482 #. type: =head2
30483 #: ../tools/virt-make-fs.pl:93
30484 msgid "FILESYSTEM TYPE"
30485 msgstr ""
30486
30487 #. type: textblock
30488 #: ../tools/virt-make-fs.pl:95
30489 msgid ""
30490 "The default filesystem type is C<ext2>.  Just about any filesystem type that "
30491 "libguestfs supports can be used (but I<not> read-only formats like "
30492 "ISO9660).  Here are some of the more common choices:"
30493 msgstr ""
30494
30495 #. type: =item
30496 #: ../tools/virt-make-fs.pl:101
30497 msgid "I<ext3>"
30498 msgstr ""
30499
30500 #. type: textblock
30501 #: ../tools/virt-make-fs.pl:103
30502 msgid ""
30503 "Note that ext3 filesystems contain a journal, typically 1-32 MB in size.  If "
30504 "you are not going to use the filesystem in a way that requires the journal, "
30505 "then this is just wasted overhead."
30506 msgstr ""
30507
30508 #. type: =item
30509 #: ../tools/virt-make-fs.pl:107
30510 msgid "I<ntfs> or I<vfat>"
30511 msgstr ""
30512
30513 #. type: textblock
30514 #: ../tools/virt-make-fs.pl:109
30515 msgid "Useful if exporting data to a Windows guest."
30516 msgstr ""
30517
30518 #. type: textblock
30519 #: ../tools/virt-make-fs.pl:111
30520 msgid ""
30521 "I<Note for vfat>: The tar archive or local directory must only contain files "
30522 "which are owned by root (ie. UID:GID = 0:0).  The reason is that the tar "
30523 "program running within libguestfs is unable to change the ownership of non-"
30524 "root files, since vfat itself does not support this."
30525 msgstr ""
30526
30527 #. type: =item
30528 #: ../tools/virt-make-fs.pl:116
30529 msgid "I<minix>"
30530 msgstr ""
30531
30532 #. type: textblock
30533 #: ../tools/virt-make-fs.pl:118
30534 msgid ""
30535 "Lower overhead than C<ext2>, but certain limitations on filename length and "
30536 "total filesystem size."
30537 msgstr ""
30538
30539 #. type: verbatim
30540 #: ../tools/virt-make-fs.pl:125
30541 #, no-wrap
30542 msgid ""
30543 " virt-make-fs --type=minix input minixfs.img\n"
30544 "\n"
30545 msgstr ""
30546
30547 #. type: =head2
30548 #: ../tools/virt-make-fs.pl:127
30549 msgid "TO PARTITION OR NOT TO PARTITION"
30550 msgstr ""
30551
30552 #. type: textblock
30553 #: ../tools/virt-make-fs.pl:129
30554 msgid "Optionally virt-make-fs can add a partition table to the output disk."
30555 msgstr ""
30556
30557 #. type: textblock
30558 #: ../tools/virt-make-fs.pl:131
30559 msgid ""
30560 "Adding a partition can make the disk image more compatible with certain "
30561 "virtualized operating systems which don't expect to see a filesystem "
30562 "directly located on a block device (Linux doesn't care and will happily "
30563 "handle both types)."
30564 msgstr ""
30565
30566 #. type: textblock
30567 #: ../tools/virt-make-fs.pl:136
30568 msgid ""
30569 "On the other hand, if you have a partition table then the output image is no "
30570 "longer a straight filesystem.  For example you cannot run L<fsck(8)> "
30571 "directly on a partitioned disk image.  (However libguestfs tools such as "
30572 "L<guestfish(1)> and L<virt-resize(1)> can still be used)."
30573 msgstr ""
30574
30575 #. type: textblock
30576 #: ../tools/virt-make-fs.pl:144
30577 msgid "Add an MBR partition:"
30578 msgstr ""
30579
30580 #. type: verbatim
30581 #: ../tools/virt-make-fs.pl:146
30582 #, no-wrap
30583 msgid ""
30584 " virt-make-fs --partition -- input disk.img\n"
30585 "\n"
30586 msgstr ""
30587
30588 #. type: textblock
30589 #: ../tools/virt-make-fs.pl:148
30590 msgid ""
30591 "If the output disk image could be terabyte-sized or larger, it's better to "
30592 "use an EFI/GPT-compatible partition table:"
30593 msgstr ""
30594
30595 #. type: verbatim
30596 #: ../tools/virt-make-fs.pl:151
30597 #, no-wrap
30598 msgid ""
30599 " virt-make-fs --partition=gpt --size=+4T --format=qcow2 input disk.img\n"
30600 "\n"
30601 msgstr ""
30602
30603 #. type: textblock
30604 #: ../tools/virt-make-fs.pl:179
30605 msgid "Enable debugging information."
30606 msgstr ""
30607
30608 #. type: =item
30609 #: ../tools/virt-make-fs.pl:185
30610 msgid "B<--size=E<lt>NE<gt>>"
30611 msgstr ""
30612
30613 #. type: =item
30614 #: ../tools/virt-make-fs.pl:187
30615 msgid "B<--size=+E<lt>NE<gt>>"
30616 msgstr ""
30617
30618 #. type: =item
30619 #: ../tools/virt-make-fs.pl:189
30620 msgid "B<-s E<lt>NE<gt>>"
30621 msgstr ""
30622
30623 #. type: =item
30624 #: ../tools/virt-make-fs.pl:191
30625 msgid "B<-s +E<lt>NE<gt>>"
30626 msgstr ""
30627
30628 #. type: textblock
30629 #: ../tools/virt-make-fs.pl:193
30630 msgid ""
30631 "Use the I<--size> (or I<-s>) option to choose the size of the output image."
30632 msgstr ""
30633
30634 #. type: textblock
30635 #: ../tools/virt-make-fs.pl:196
30636 msgid ""
30637 "If this option is I<not> given, then the output image will be just large "
30638 "enough to contain all the files, with not much wasted space."
30639 msgstr ""
30640
30641 #. type: textblock
30642 #: ../tools/virt-make-fs.pl:199
30643 msgid ""
30644 "To choose a fixed size output disk, specify an absolute number followed by b/"
30645 "K/M/G/T/P/E to mean bytes, Kilobytes, Megabytes, Gigabytes, Terabytes, "
30646 "Petabytes or Exabytes.  This must be large enough to contain all the input "
30647 "files, else you will get an error."
30648 msgstr ""
30649
30650 #. type: textblock
30651 #: ../tools/virt-make-fs.pl:204
30652 msgid ""
30653 "To leave extra space, specify C<+> (plus sign) and a number followed by b/K/"
30654 "M/G/T/P/E to mean bytes, Kilobytes, Megabytes, Gigabytes, Terabytes, "
30655 "Petabytes or Exabytes.  For example: I<--size=+200M> means enough space for "
30656 "the input files, and (approximately) an extra 200 MB free space."
30657 msgstr ""
30658
30659 #. type: textblock
30660 #: ../tools/virt-make-fs.pl:210
30661 msgid ""
30662 "Note that virt-make-fs estimates free space, and therefore will not produce "
30663 "filesystems containing precisely the free space requested.  (It is much more "
30664 "expensive and time-consuming to produce a filesystem which has precisely the "
30665 "desired free space)."
30666 msgstr ""
30667
30668 #. type: =item
30669 #: ../tools/virt-make-fs.pl:219
30670 msgid "B<--format=E<lt>fmtE<gt>>"
30671 msgstr ""
30672
30673 #. type: =item
30674 #: ../tools/virt-make-fs.pl:221
30675 msgid "B<-F E<lt>fmtE<gt>>"
30676 msgstr ""
30677
30678 #. type: textblock
30679 #: ../tools/virt-make-fs.pl:223
30680 msgid "Choose the output disk image format."
30681 msgstr ""
30682
30683 #. type: textblock
30684 #: ../tools/virt-make-fs.pl:225
30685 msgid "The default is C<raw> (raw disk image)."
30686 msgstr ""
30687
30688 #. type: textblock
30689 #: ../tools/virt-make-fs.pl:227
30690 msgid ""
30691 "For other choices, see the L<qemu-img(1)> manpage.  The only other choice "
30692 "that would really make sense here is C<qcow2>."
30693 msgstr ""
30694
30695 #. type: =item
30696 #: ../tools/virt-make-fs.pl:234
30697 msgid "B<--type=E<lt>fsE<gt>>"
30698 msgstr ""
30699
30700 #. type: =item
30701 #: ../tools/virt-make-fs.pl:236
30702 msgid "B<-t E<lt>fsE<gt>>"
30703 msgstr ""
30704
30705 #. type: textblock
30706 #: ../tools/virt-make-fs.pl:238
30707 msgid "Choose the output filesystem type."
30708 msgstr ""
30709
30710 #. type: textblock
30711 #: ../tools/virt-make-fs.pl:240
30712 msgid "The default is C<ext2>."
30713 msgstr ""
30714
30715 #. type: textblock
30716 #: ../tools/virt-make-fs.pl:242
30717 msgid ""
30718 "Any filesystem which is supported read-write by libguestfs can be used here."
30719 msgstr ""
30720
30721 #. type: =item
30722 #: ../tools/virt-make-fs.pl:249
30723 msgid "B<--partition>"
30724 msgstr ""
30725
30726 #. type: =item
30727 #: ../tools/virt-make-fs.pl:251
30728 msgid "B<--partition=E<lt>parttypeE<gt>>"
30729 msgstr ""
30730
30731 #. type: textblock
30732 #: ../tools/virt-make-fs.pl:253
30733 msgid ""
30734 "If specified, this flag adds an MBR partition table to the output disk image."
30735 msgstr ""
30736
30737 #. type: textblock
30738 #: ../tools/virt-make-fs.pl:256
30739 msgid ""
30740 "You can change the partition table type, eg. I<--partition=gpt> for large "
30741 "disks."
30742 msgstr ""
30743
30744 #. type: textblock
30745 #: ../tools/virt-make-fs.pl:259
30746 msgid ""
30747 "Note that if you just use a lonesome I<--partition>, the Perl option parser "
30748 "might consider the next parameter to be the partition type.  For example:"
30749 msgstr ""
30750
30751 #. type: verbatim
30752 #: ../tools/virt-make-fs.pl:263
30753 #, no-wrap
30754 msgid ""
30755 " virt-make-fs --partition input.tar ...\n"
30756 "\n"
30757 msgstr ""
30758
30759 #. type: textblock
30760 #: ../tools/virt-make-fs.pl:265
30761 msgid ""
30762 "would cause virt-make-fs to think you wanted to use a partition type of "
30763 "C<input.tar> which is completely wrong.  To avoid this, use I<--> (a double "
30764 "dash) between options and the input file argument:"
30765 msgstr ""
30766
30767 #. type: verbatim
30768 #: ../tools/virt-make-fs.pl:269
30769 #, no-wrap
30770 msgid ""
30771 " virt-make-fs --partition -- input.tar ...\n"
30772 "\n"
30773 msgstr ""
30774
30775 #. type: textblock
30776 #: ../tools/virt-make-fs.pl:541
30777 msgid ""
30778 "L<guestfish(1)>, L<virt-resize(1)>, L<virt-tar-in(1)>, L<mkisofs(1)>, "
30779 "L<genisoimage(1)>, L<mksquashfs(1)>, L<mke2fs(8)>, L<resize2fs(8)>, L<guestfs"
30780 "(3)>, L<Sys::Guestfs(3)>, L<http://libguestfs.org/>."
30781 msgstr ""
30782
30783 #. type: verbatim
30784 #: ../tools/virt-make-fs.pl:558
30785 #, no-wrap
30786 msgid ""
30787 " export LIBGUESTFS_DEBUG=1\n"
30788 " virt-make-fs --debug [...] > /tmp/virt-make-fs.log 2>&1\n"
30789 "\n"
30790 msgstr ""
30791
30792 #. type: textblock
30793 #: ../tools/virt-make-fs.pl:561
30794 msgid ""
30795 "Attach /tmp/virt-make-fs.log to a new bug report at L<https://bugzilla."
30796 "redhat.com/>"
30797 msgstr ""
30798
30799 #. type: textblock
30800 #: ../tools/virt-list-partitions.pl:32
30801 msgid ""
30802 "virt-list-partitions - List partitions in a virtual machine or disk image"
30803 msgstr ""
30804
30805 #. type: verbatim
30806 #: ../tools/virt-list-partitions.pl:36
30807 #, no-wrap
30808 msgid ""
30809 " virt-list-partitions [--options] domname\n"
30810 "\n"
30811 msgstr ""
30812
30813 #. type: verbatim
30814 #: ../tools/virt-list-partitions.pl:38
30815 #, no-wrap
30816 msgid ""
30817 " virt-list-partitions [--options] disk.img [disk.img ...]\n"
30818 "\n"
30819 msgstr ""
30820
30821 #. type: textblock
30822 #: ../tools/virt-list-partitions.pl:45
30823 msgid ""
30824 "C<virt-list-partitions> is a command line tool to list the partitions that "
30825 "are contained in a virtual machine or disk image.  It is mainly useful as a "
30826 "first step to using L<virt-resize(1)>."
30827 msgstr ""
30828
30829 #. type: textblock
30830 #: ../tools/virt-list-partitions.pl:50
30831 msgid ""
30832 "C<virt-list-partitions> is just a simple wrapper around L<libguestfs(3)> "
30833 "functionality.  For more complex cases you should look at the L<guestfish(1)"
30834 "> tool."
30835 msgstr ""
30836
30837 #. type: =item
30838 #: ../tools/virt-list-partitions.pl:107
30839 msgid "B<-h> | B<--human-readable>"
30840 msgstr ""
30841
30842 #. type: textblock
30843 #: ../tools/virt-list-partitions.pl:109
30844 msgid "Show sizes in human-readable form (eg. \"1G\")."
30845 msgstr ""
30846
30847 #. type: textblock
30848 #: ../tools/virt-list-partitions.pl:117
30849 msgid ""
30850 "With this option, C<virt-list-partitions> displays the type and size of each "
30851 "partition too (where \"type\" means C<ext3>, C<pv> etc.)"
30852 msgstr ""
30853
30854 #. type: =item
30855 #: ../tools/virt-list-partitions.pl:124
30856 msgid "B<-t> | B<--total>"
30857 msgstr ""
30858
30859 #. type: textblock
30860 #: ../tools/virt-list-partitions.pl:126
30861 msgid ""
30862 "Display the total size of each block device (as a separate row or rows)."
30863 msgstr ""
30864
30865 #. type: textblock
30866 #: ../tools/virt-list-partitions.pl:259
30867 msgid ""
30868 "L<guestfs(3)>, L<guestfish(1)>, L<virt-filesystems(1)>, L<virt-list-"
30869 "filesystems(1)>, L<virt-resize(1)>, L<Sys::Guestfs(3)>, L<Sys::Guestfs::Lib"
30870 "(3)>, L<Sys::Virt(3)>, L<http://libguestfs.org/>."
30871 msgstr ""
30872
30873 #. type: textblock
30874 #: ../tools/virt-list-partitions.pl:275
30875 msgid "Copyright (C) 2009-2010 Red Hat Inc."
30876 msgstr ""