Version 1.10.5.
[libguestfs.git] / po-docs / uk.po
1 # SOME DESCRIPTIVE TITLE
2 # Copyright (C) YEAR Red Hat Inc.
3 # This file is distributed under the same license as the libguestfs package.
4 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
5 #
6 msgid ""
7 msgstr ""
8 "Project-Id-Version: libguestfs\n"
9 "Report-Msgid-Bugs-To: libguestfs@redhat.com\n"
10 "POT-Creation-Date: 2011-07-13 17:55+0200\n"
11 "PO-Revision-Date: 2011-04-01 15:39+0000\n"
12 "Last-Translator: yurchor <yurchor@ukr.net>\n"
13 "Language-Team: Ukrainian <trans-uk@lists.fedoraproject.org>\n"
14 "Language: uk\n"
15 "MIME-Version: 1.0\n"
16 "Content-Type: text/plain; charset=UTF-8\n"
17 "Content-Transfer-Encoding: 8bit\n"
18 "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
19 "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n"
20
21 #. type: =head1
22 #: ../src/guestfs.pod:3 ../fish/guestfish.pod:3
23 #: ../test-tool/libguestfs-test-tool.pod:3 ../fuse/guestmount.pod:3
24 #: ../tools/virt-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:1753 ../src/guestfs.pod:1758 ../src/guestfs.pod:1762
864 #: ../src/guestfs.pod:1772 ../src/guestfs.pod:2007 ../src/guestfs.pod:2012
865 #: ../src/guestfs.pod:2018 ../src/guestfs.pod:2026 ../src/guestfs.pod:2380
866 #: ../src/guestfs.pod:2386 ../src/guestfs.pod:2391 ../src/guestfs.pod:2397
867 #: ../src/guestfs.pod:2967 ../src/guestfs.pod:2971 ../src/guestfs.pod:2975
868 #: ../src/guestfs.pod:2979 ../src/guestfs-actions.pod:15
869 #: ../src/guestfs-actions.pod:22 ../src/guestfs-actions.pod:577
870 #: ../src/guestfs-actions.pod:585 ../src/guestfs-actions.pod:592
871 #: ../src/guestfs-actions.pod:599 ../src/guestfs-actions.pod:1597
872 #: ../src/guestfs-actions.pod:1601 ../src/guestfs-actions.pod:1605
873 #: ../src/guestfs-actions.pod:1609 ../src/guestfs-actions.pod:1617
874 #: ../src/guestfs-actions.pod:1621 ../src/guestfs-actions.pod:1625
875 #: ../src/guestfs-actions.pod:1635 ../src/guestfs-actions.pod:1639
876 #: ../src/guestfs-actions.pod:1643 ../src/guestfs-actions.pod:1781
877 #: ../src/guestfs-actions.pod:1785 ../src/guestfs-actions.pod:1790
878 #: ../src/guestfs-actions.pod:1795 ../src/guestfs-actions.pod:1856
879 #: ../src/guestfs-actions.pod:1860 ../src/guestfs-actions.pod:1865
880 #: ../fish/guestfish.pod:443 ../fish/guestfish.pod:447
881 #: ../fish/guestfish.pod:451 ../fish/guestfish.pod:455
882 #: ../fish/guestfish-actions.pod:13 ../fish/guestfish-actions.pod:20
883 #: ../fish/guestfish-actions.pod:380 ../fish/guestfish-actions.pod:388
884 #: ../fish/guestfish-actions.pod:395 ../fish/guestfish-actions.pod:402
885 #: ../fish/guestfish-actions.pod:1069 ../fish/guestfish-actions.pod:1073
886 #: ../fish/guestfish-actions.pod:1077 ../fish/guestfish-actions.pod:1081
887 #: ../fish/guestfish-actions.pod:1089 ../fish/guestfish-actions.pod:1093
888 #: ../fish/guestfish-actions.pod:1097 ../fish/guestfish-actions.pod:1107
889 #: ../fish/guestfish-actions.pod:1111 ../fish/guestfish-actions.pod:1115
890 #: ../fish/guestfish-actions.pod:1205 ../fish/guestfish-actions.pod:1209
891 #: ../fish/guestfish-actions.pod:1214 ../fish/guestfish-actions.pod:1219
892 #: ../fish/guestfish-actions.pod:1261 ../fish/guestfish-actions.pod:1265
893 #: ../fish/guestfish-actions.pod:1270 ../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:2425
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:2450
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:765
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:1008
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:1852 ../fish/guestfish-actions.pod:9
3310 #: ../fish/guestfish-actions.pod:1257 ../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."
3364 msgstr ""
3365
3366 #. type: textblock
3367 #: ../src/guestfs.pod:1677
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:1685
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:1690
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:1694
3396 msgid "CLASSES OF EVENTS"
3397 msgstr ""
3398
3399 #. type: =item
3400 #: ../src/guestfs.pod:1698
3401 msgid "GUESTFS_EVENT_CLOSE (payload type: void)"
3402 msgstr ""
3403
3404 #. type: textblock
3405 #: ../src/guestfs.pod:1701
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:1704
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:1711
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:1714
3431 msgid "GUESTFS_EVENT_SUBPROCESS_QUIT (payload type: void)"
3432 msgstr ""
3433
3434 #. type: textblock
3435 #: ../src/guestfs.pod:1717
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:1721 ../src/guestfs.pod:1730
3444 msgid "If no callback is registered: the event is ignored."
3445 msgstr ""
3446
3447 #. type: =item
3448 #: ../src/guestfs.pod:1723
3449 msgid "GUESTFS_EVENT_LAUNCH_DONE (payload type: void)"
3450 msgstr ""
3451
3452 #. type: textblock
3453 #: ../src/guestfs.pod:1726
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:1732
3462 msgid "GUESTFS_EVENT_PROGRESS (payload type: array of 4 x uint64_t)"
3463 msgstr ""
3464
3465 #. type: textblock
3466 #: ../src/guestfs.pod:1735
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:1741
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:1744
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:1749
3492 msgid "The only defined and stable parts of the API are:"
3493 msgstr ""
3494
3495 #. type: textblock
3496 #: ../src/guestfs.pod:1755
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:1760
3504 msgid "0 E<lt>= C<position> E<lt>= C<total>"
3505 msgstr ""
3506
3507 #. type: textblock
3508 #: ../src/guestfs.pod:1764
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:1768
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:1774
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:1779
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:1783
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:1788
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:1794
3558 msgid "If no callback is registered: progress messages are discarded."
3559 msgstr ""
3560
3561 #. type: =item
3562 #: ../src/guestfs.pod:1796
3563 msgid "GUESTFS_EVENT_APPLIANCE (payload type: message buffer)"
3564 msgstr ""
3565
3566 #. type: textblock
3567 #: ../src/guestfs.pod:1799
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:1802
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:1805 ../src/guestfs.pod:1819
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:1810
3590 msgid "GUESTFS_EVENT_LIBRARY (payload type: message buffer)"
3591 msgstr ""
3592
3593 #. type: textblock
3594 #: ../src/guestfs.pod:1813
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:1816
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:1824
3609 msgid "GUESTFS_EVENT_TRACE (payload type: message buffer)"
3610 msgstr ""
3611
3612 #. type: textblock
3613 #: ../src/guestfs.pod:1827
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:1830
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:1836
3628 msgid "guestfs_set_event_callback"
3629 msgstr ""
3630
3631 #. type: verbatim
3632 #: ../src/guestfs.pod:1838
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:1844
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:1847
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:1853
3661 msgid "C<flags> should always be passed as 0."
3662 msgstr ""
3663
3664 #. type: textblock
3665 #: ../src/guestfs.pod:1855
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:1858
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:1861
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:1864
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:1867
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:1871
3702 msgid "guestfs_delete_event_callback"
3703 msgstr ""
3704
3705 #. type: verbatim
3706 #: ../src/guestfs.pod:1873
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:1875
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:1879
3723 msgid "guestfs_event_callback"
3724 msgstr ""
3725
3726 #. type: verbatim
3727 #: ../src/guestfs.pod:1881
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:1890
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:1893
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:1897
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:1902
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:1906
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:1909
3781 msgid "EXAMPLE: CAPTURING LOG MESSAGES"
3782 msgstr ""
3783
3784 #. type: textblock
3785 #: ../src/guestfs.pod:1911
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:1915
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:1920
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:1923
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:1933
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:1936
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:1951
3853 msgid "PRIVATE DATA AREA"
3854 msgstr ""
3855
3856 #. type: textblock
3857 #: ../src/guestfs.pod:1953
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:1958
3866 msgid "To attach a named piece of data, use the following call:"
3867 msgstr ""
3868
3869 #. type: verbatim
3870 #: ../src/guestfs.pod:1960
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:1962
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:1966
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:1972
3897 msgid "To retrieve the pointer, use:"
3898 msgstr ""
3899
3900 #. type: verbatim
3901 #: ../src/guestfs.pod:1974
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:1976
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:1980
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:1987
3929 msgid "To walk over all entries, use these two functions:"
3930 msgstr ""
3931
3932 #. type: verbatim
3933 #: ../src/guestfs.pod:1989
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:1991
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:1993
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:1999
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:2003
3968 msgid "Notes about walking over entries:"
3969 msgstr ""
3970
3971 #. type: textblock
3972 #: ../src/guestfs.pod:2009
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:2014
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:2020
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:2022
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:2024
4000 msgid "then that C<key> is not returned when walking."
4001 msgstr ""
4002
4003 #. type: textblock
4004 #: ../src/guestfs.pod:2028
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:2034
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:2037
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:2045
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:2048
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:2057
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:2061
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:2077
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:2082 ../src/guestfs.pod:2087
4094 msgid "html"
4095 msgstr "html"
4096
4097 #. type: textblock
4098 #: ../src/guestfs.pod:2084
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:2089
4108 msgid "ARCHITECTURE"
4109 msgstr "АРХІТЕКТУРА"
4110
4111 #. type: textblock
4112 #: ../src/guestfs.pod:2091
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:2095
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:2115
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:2118
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:2127
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:2134
4177 msgid "STATE MACHINE"
4178 msgstr "СКІНЧЕННИЙ АВТОМАТ"
4179
4180 #. type: textblock
4181 #: ../src/guestfs.pod:2136
4182 msgid "libguestfs uses a state machine to model the child process:"
4183 msgstr ""
4184
4185 #. type: verbatim
4186 #: ../src/guestfs.pod:2138
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:2160
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:2165
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:2169
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:2172
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:2178
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:2184
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:2188
4266 msgid "INTERNALS"
4267 msgstr ""
4268
4269 #. type: =head2
4270 #: ../src/guestfs.pod:2190
4271 msgid "COMMUNICATION PROTOCOL"
4272 msgstr ""
4273
4274 #. type: textblock
4275 #: ../src/guestfs.pod:2192
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:2195
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:2199
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:2202
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:2209
4308 msgid "ORDINARY FUNCTIONS (NO FILEIN/FILEOUT PARAMS)"
4309 msgstr ""
4310
4311 #. type: textblock
4312 #: ../src/guestfs.pod:2211
4313 msgid "For ordinary functions, the request message is:"
4314 msgstr ""
4315
4316 #. type: verbatim
4317 #: ../src/guestfs.pod:2213
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:2218
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:2224
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:2227
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:2231
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:2239
4364 msgid "The reply message for ordinary functions is:"
4365 msgstr ""
4366
4367 #. type: verbatim
4368 #: ../src/guestfs.pod:2241
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:2246
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:2249
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:2252
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:2255
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:2260
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:2263
4418 msgid "FUNCTIONS THAT HAVE FILEIN PARAMETERS"
4419 msgstr ""
4420
4421 #. type: textblock
4422 #: ../src/guestfs.pod:2265
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:2269
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:2277
4445 msgid "The \"sequence of chunks\" is:"
4446 msgstr ""
4447
4448 #. type: verbatim
4449 #: ../src/guestfs.pod:2279
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:2287
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:2291
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:2296
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:2302
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:2311
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:2317
4512 msgid "FUNCTIONS THAT HAVE FILEOUT PARAMETERS"
4513 msgstr ""
4514
4515 #. type: textblock
4516 #: ../src/guestfs.pod:2319
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:2322
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:2330
4538 msgid "INITIAL MESSAGE"
4539 msgstr ""
4540
4541 #. type: textblock
4542 #: ../src/guestfs.pod:2332
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:2336
4551 msgid "PROGRESS NOTIFICATION MESSAGES"
4552 msgstr ""
4553
4554 #. type: textblock
4555 #: ../src/guestfs.pod:2338
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:2342
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:2346
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:2350
4580 msgid "LIBGUESTFS VERSION NUMBERS"
4581 msgstr ""
4582
4583 #. type: textblock
4584 #: ../src/guestfs.pod:2352
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:2357
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:2368
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:2370
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:2376
4625 msgid "Our criteria for backporting changes are:"
4626 msgstr ""
4627
4628 #. type: textblock
4629 #: ../src/guestfs.pod:2382
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:2388
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:2393
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:2399
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:2405
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:2413
4671 msgid "EXTENDING LIBGUESTFS"
4672 msgstr ""
4673
4674 #. type: =head2
4675 #: ../src/guestfs.pod:2415
4676 msgid "ADDING A NEW API ACTION"
4677 msgstr ""
4678
4679 #. type: textblock
4680 #: ../src/guestfs.pod:2417
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:2421
4689 msgid "To add a new API action there are two changes:"
4690 msgstr ""
4691
4692 #. type: textblock
4693 #: ../src/guestfs.pod:2427
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:2430
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:2438
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:2444
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:2452
4732 msgid "Implement the action (in C):"
4733 msgstr ""
4734
4735 #. type: textblock
4736 #: ../src/guestfs.pod:2454
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:2457
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:2460
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:2464
4756 msgid "After making these changes, use C<make> to compile."
4757 msgstr ""
4758
4759 #. type: textblock
4760 #: ../src/guestfs.pod:2466
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:2470
4769 msgid "ADDING TESTS FOR AN API ACTION"
4770 msgstr ""
4771
4772 #. type: textblock
4773 #: ../src/guestfs.pod:2472
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:2478
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:2481
4791 msgid "The test environment has 4 block devices:"
4792 msgstr ""
4793
4794 #. type: =item
4795 #: ../src/guestfs.pod:2485
4796 msgid "C</dev/sda> 500MB"
4797 msgstr ""
4798
4799 #. type: textblock
4800 #: ../src/guestfs.pod:2487
4801 msgid "General block device for testing."
4802 msgstr ""
4803
4804 #. type: =item
4805 #: ../src/guestfs.pod:2489
4806 msgid "C</dev/sdb> 50MB"
4807 msgstr ""
4808
4809 #. type: textblock
4810 #: ../src/guestfs.pod:2491
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:2494
4818 msgid "C</dev/sdc> 10MB"
4819 msgstr ""
4820
4821 #. type: textblock
4822 #: ../src/guestfs.pod:2496
4823 msgid "Used in a few tests where two block devices are needed."
4824 msgstr ""
4825
4826 #. type: =item
4827 #: ../src/guestfs.pod:2498
4828 msgid "C</dev/sdd>"
4829 msgstr "C</dev/sdd>"
4830
4831 #. type: textblock
4832 #: ../src/guestfs.pod:2500
4833 msgid "ISO with fixed content (see C<images/test.iso>)."
4834 msgstr ""
4835
4836 #. type: textblock
4837 #: ../src/guestfs.pod:2504
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:2508
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:2514
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:2520
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:2523
4873 #, no-wrap
4874 msgid ""
4875 " SKIP_TEST_<CMD>_<NUM>=1\n"
4876 "\n"
4877 msgstr ""
4878
4879 #. type: textblock
4880 #: ../src/guestfs.pod:2525
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:2527
4886 msgid "or:"
4887 msgstr "або:"
4888
4889 #. type: verbatim
4890 #: ../src/guestfs.pod:2529
4891 #, no-wrap
4892 msgid ""
4893 " SKIP_TEST_<CMD>=1\n"
4894 "\n"
4895 msgstr ""
4896
4897 #. type: textblock
4898 #: ../src/guestfs.pod:2531
4899 msgid "eg: C<SKIP_TEST_ZEROFREE=1> skips all L</guestfs_zerofree> tests."
4900 msgstr ""
4901
4902 #. type: textblock
4903 #: ../src/guestfs.pod:2533
4904 msgid "Packagers can run only certain tests by setting for example:"
4905 msgstr ""
4906
4907 #. type: verbatim
4908 #: ../src/guestfs.pod:2535
4909 #, no-wrap
4910 msgid ""
4911 " TEST_ONLY=\"vfs_type zerofree\"\n"
4912 "\n"
4913 msgstr ""
4914
4915 #. type: textblock
4916 #: ../src/guestfs.pod:2537
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:2540
4924 msgid "DEBUGGING NEW API ACTIONS"
4925 msgstr ""
4926
4927 #. type: textblock
4928 #: ../src/guestfs.pod:2542
4929 msgid "Test new actions work before submitting them."
4930 msgstr ""
4931
4932 #. type: textblock
4933 #: ../src/guestfs.pod:2544
4934 msgid "You can use guestfish to try out new commands."
4935 msgstr ""
4936
4937 #. type: textblock
4938 #: ../src/guestfs.pod:2546
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:2550
4947 msgid "FORMATTING CODE AND OTHER CONVENTIONS"
4948 msgstr ""
4949
4950 #. type: textblock
4951 #: ../src/guestfs.pod:2552
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:2558
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:2561
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:2571
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:2583
5003 msgid "Enable warnings when compiling (and fix any problems this finds):"
5004 msgstr ""
5005
5006 #. type: verbatim
5007 #: ../src/guestfs.pod:2586
5008 #, no-wrap
5009 msgid ""
5010 " ./configure --enable-gcc-warnings\n"
5011 "\n"
5012 msgstr ""
5013
5014 #. type: textblock
5015 #: ../src/guestfs.pod:2588
5016 msgid "Useful targets are:"
5017 msgstr ""
5018
5019 #. type: verbatim
5020 #: ../src/guestfs.pod:2590
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:2593
5030 msgid "DAEMON CUSTOM PRINTF FORMATTERS"
5031 msgstr ""
5032
5033 #. type: textblock
5034 #: ../src/guestfs.pod:2595
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:2600
5042 msgid "%Q"
5043 msgstr "%Q"
5044
5045 #. type: textblock
5046 #: ../src/guestfs.pod:2602
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:2605
5054 msgid "%R"
5055 msgstr "%R"
5056
5057 #. type: textblock
5058 #: ../src/guestfs.pod:2607
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:2612 ../fish/guestfish.pod:240 ../fish/guestfish.pod:613
5066 msgid "For example:"
5067 msgstr "Приклад:"
5068
5069 #. type: verbatim
5070 #: ../src/guestfs.pod:2614
5071 #, no-wrap
5072 msgid ""
5073 " asprintf (&cmd, \"cat %R\", path);\n"
5074 "\n"
5075 msgstr ""
5076
5077 #. type: textblock
5078 #: ../src/guestfs.pod:2616
5079 msgid "would produce C<cat /sysroot/some\\ path\\ with\\ spaces>"
5080 msgstr ""
5081
5082 #. type: textblock
5083 #: ../src/guestfs.pod:2618
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:2624
5093 msgid "SUBMITTING YOUR NEW API ACTIONS"
5094 msgstr ""
5095
5096 #. type: textblock
5097 #: ../src/guestfs.pod:2626
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:2630
5105 msgid "INTERNATIONALIZATION (I18N) SUPPORT"
5106 msgstr ""
5107
5108 #. type: textblock
5109 #: ../src/guestfs.pod:2632
5110 msgid "We support i18n (gettext anyhow) in the library."
5111 msgstr ""
5112
5113 #. type: textblock
5114 #: ../src/guestfs.pod:2634
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:2640
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:2643
5131 msgid "SOURCE CODE SUBDIRECTORIES"
5132 msgstr ""
5133
5134 #. type: =item
5135 #: ../src/guestfs.pod:2647 ../src/guestfs-actions.pod:5827
5136 #: ../fish/guestfish-actions.pod:3921
5137 msgid "C<appliance>"
5138 msgstr "C<appliance>"
5139
5140 #. type: textblock
5141 #: ../src/guestfs.pod:2649
5142 msgid "The libguestfs appliance, build scripts and so on."
5143 msgstr ""
5144
5145 #. type: =item
5146 #: ../src/guestfs.pod:2651
5147 msgid "C<capitests>"
5148 msgstr "C<capitests>"
5149
5150 #. type: textblock
5151 #: ../src/guestfs.pod:2653
5152 msgid "Automated tests of the C API."
5153 msgstr ""
5154
5155 #. type: =item
5156 #: ../src/guestfs.pod:2655
5157 msgid "C<cat>"
5158 msgstr "C<cat>"
5159
5160 #. type: textblock
5161 #: ../src/guestfs.pod:2657
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:2660
5169 #, fuzzy
5170 #| msgid "C<cat>"
5171 msgid "C<caution>"
5172 msgstr "C<cat>"
5173
5174 #. type: textblock
5175 #: ../src/guestfs.pod:2662
5176 msgid ""
5177 "Safety and liveness tests of components that libguestfs depends upon (not of "
5178 "libguestfs itself).  Mainly this is for qemu and the kernel."
5179 msgstr ""
5180
5181 #. type: =item
5182 #: ../src/guestfs.pod:2665
5183 msgid "C<contrib>"
5184 msgstr "C<contrib>"
5185
5186 #. type: textblock
5187 #: ../src/guestfs.pod:2667
5188 msgid "Outside contributions, experimental parts."
5189 msgstr ""
5190
5191 #. type: =item
5192 #: ../src/guestfs.pod:2669
5193 msgid "C<daemon>"
5194 msgstr "C<daemon>"
5195
5196 #. type: textblock
5197 #: ../src/guestfs.pod:2671
5198 msgid ""
5199 "The daemon that runs inside the libguestfs appliance and carries out actions."
5200 msgstr ""
5201
5202 #. type: =item
5203 #: ../src/guestfs.pod:2674
5204 msgid "C<df>"
5205 msgstr "C<df>"
5206
5207 #. type: textblock
5208 #: ../src/guestfs.pod:2676
5209 msgid "L<virt-df(1)> command and documentation."
5210 msgstr ""
5211
5212 #. type: =item
5213 #: ../src/guestfs.pod:2678
5214 msgid "C<examples>"
5215 msgstr "C<examples>"
5216
5217 #. type: textblock
5218 #: ../src/guestfs.pod:2680
5219 msgid "C API example code."
5220 msgstr "Код прикладів використання програмного інтерфейсу мовою C."
5221
5222 #. type: =item
5223 #: ../src/guestfs.pod:2682
5224 msgid "C<fish>"
5225 msgstr "C<fish>"
5226
5227 #. type: textblock
5228 #: ../src/guestfs.pod:2684
5229 msgid ""
5230 "L<guestfish(1)>, the command-line shell, and various shell scripts built on "
5231 "top such as L<virt-copy-in(1)>, L<virt-copy-out(1)>, L<virt-tar-in(1)>, "
5232 "L<virt-tar-out(1)>."
5233 msgstr ""
5234
5235 #. type: =item
5236 #: ../src/guestfs.pod:2688
5237 msgid "C<fuse>"
5238 msgstr "C<fuse>"
5239
5240 #. type: textblock
5241 #: ../src/guestfs.pod:2690
5242 msgid ""
5243 "L<guestmount(1)>, FUSE (userspace filesystem) built on top of libguestfs."
5244 msgstr ""
5245
5246 #. type: =item
5247 #: ../src/guestfs.pod:2692
5248 msgid "C<generator>"
5249 msgstr "C<generator>"
5250
5251 #. type: textblock
5252 #: ../src/guestfs.pod:2694
5253 msgid ""
5254 "The crucially important generator, used to automatically generate large "
5255 "amounts of boilerplate C code for things like RPC and bindings."
5256 msgstr ""
5257
5258 #. type: =item
5259 #: ../src/guestfs.pod:2697
5260 msgid "C<images>"
5261 msgstr "C<images>"
5262
5263 #. type: textblock
5264 #: ../src/guestfs.pod:2699
5265 msgid "Files used by the test suite."
5266 msgstr ""
5267
5268 #. type: textblock
5269 #: ../src/guestfs.pod:2701
5270 msgid "Some \"phony\" guest images which we test against."
5271 msgstr ""
5272
5273 #. type: =item
5274 #: ../src/guestfs.pod:2703
5275 msgid "C<inspector>"
5276 msgstr "C<inspector>"
5277
5278 #. type: textblock
5279 #: ../src/guestfs.pod:2705
5280 msgid "L<virt-inspector(1)>, the virtual machine image inspector."
5281 msgstr ""
5282
5283 #. type: =item
5284 #: ../src/guestfs.pod:2707
5285 msgid "C<logo>"
5286 msgstr "C<logo>"
5287
5288 #. type: textblock
5289 #: ../src/guestfs.pod:2709
5290 msgid "Logo used on the website.  The fish is called Arthur by the way."
5291 msgstr ""
5292
5293 #. type: =item
5294 #: ../src/guestfs.pod:2711
5295 msgid "C<m4>"
5296 msgstr "C<m4>"
5297
5298 #. type: textblock
5299 #: ../src/guestfs.pod:2713
5300 msgid "M4 macros used by autoconf."
5301 msgstr ""
5302
5303 #. type: =item
5304 #: ../src/guestfs.pod:2715
5305 msgid "C<po>"
5306 msgstr "C<po>"
5307
5308 #. type: textblock
5309 #: ../src/guestfs.pod:2717
5310 msgid "Translations of simple gettext strings."
5311 msgstr "Переклади простих рядків gettext."
5312
5313 #. type: =item
5314 #: ../src/guestfs.pod:2719
5315 msgid "C<po-docs>"
5316 msgstr "C<po-docs>"
5317
5318 #. type: textblock
5319 #: ../src/guestfs.pod:2721
5320 msgid ""
5321 "The build infrastructure and PO files for translations of manpages and POD "
5322 "files.  Eventually this will be combined with the C<po> directory, but that "
5323 "is rather complicated."
5324 msgstr ""
5325
5326 #. type: =item
5327 #: ../src/guestfs.pod:2725
5328 msgid "C<regressions>"
5329 msgstr "C<regressions>"
5330
5331 #. type: textblock
5332 #: ../src/guestfs.pod:2727
5333 msgid "Regression tests."
5334 msgstr "Тести на регресії."
5335
5336 #. type: =item
5337 #: ../src/guestfs.pod:2729
5338 msgid "C<rescue>"
5339 msgstr "C<rescue>"
5340
5341 #. type: textblock
5342 #: ../src/guestfs.pod:2731
5343 msgid "L<virt-rescue(1)> command and documentation."
5344 msgstr ""
5345
5346 #. type: =item
5347 #: ../src/guestfs.pod:2733
5348 msgid "C<src>"
5349 msgstr "C<src>"
5350
5351 #. type: textblock
5352 #: ../src/guestfs.pod:2735
5353 msgid "Source code to the C library."
5354 msgstr ""
5355
5356 #. type: =item
5357 #: ../src/guestfs.pod:2737
5358 msgid "C<tools>"
5359 msgstr "C<tools>"
5360
5361 #. type: textblock
5362 #: ../src/guestfs.pod:2739
5363 msgid "Command line tools written in Perl (L<virt-resize(1)> and many others)."
5364 msgstr ""
5365
5366 #. type: =item
5367 #: ../src/guestfs.pod:2741
5368 msgid "C<test-tool>"
5369 msgstr "C<test-tool>"
5370
5371 #. type: textblock
5372 #: ../src/guestfs.pod:2743
5373 msgid ""
5374 "Test tool for end users to test if their qemu/kernel combination will work "
5375 "with libguestfs."
5376 msgstr ""
5377
5378 #. type: =item
5379 #: ../src/guestfs.pod:2746
5380 msgid "C<csharp>"
5381 msgstr "C<csharp>"
5382
5383 #. type: =item
5384 #: ../src/guestfs.pod:2748
5385 msgid "C<haskell>"
5386 msgstr "C<haskell>"
5387
5388 #. type: =item
5389 #: ../src/guestfs.pod:2750
5390 msgid "C<java>"
5391 msgstr "C<java>"
5392
5393 #. type: =item
5394 #: ../src/guestfs.pod:2752
5395 msgid "C<ocaml>"
5396 msgstr "C<ocaml>"
5397
5398 #. type: =item
5399 #: ../src/guestfs.pod:2754
5400 msgid "C<php>"
5401 msgstr "C<php>"
5402
5403 #. type: =item
5404 #: ../src/guestfs.pod:2756
5405 msgid "C<perl>"
5406 msgstr "C<perl>"
5407
5408 #. type: =item
5409 #: ../src/guestfs.pod:2758
5410 msgid "C<python>"
5411 msgstr "C<python>"
5412
5413 #. type: =item
5414 #: ../src/guestfs.pod:2760
5415 msgid "C<ruby>"
5416 msgstr "C<ruby>"
5417
5418 #. type: textblock
5419 #: ../src/guestfs.pod:2762
5420 msgid "Language bindings."
5421 msgstr "Прив’язки до мов програмування."
5422
5423 #. type: =head1
5424 #: ../src/guestfs.pod:2766
5425 msgid "LIMITS"
5426 msgstr ""
5427
5428 #. type: =head2
5429 #: ../src/guestfs.pod:2768
5430 msgid "PROTOCOL LIMITS"
5431 msgstr ""
5432
5433 #. type: textblock
5434 #: ../src/guestfs.pod:2770
5435 msgid ""
5436 "Internally libguestfs uses a message-based protocol to pass API calls and "
5437 "their responses to and from a small \"appliance\" (see L</INTERNALS> for "
5438 "plenty more detail about this).  The maximum message size used by the "
5439 "protocol is slightly less than 4 MB.  For some API calls you may need to be "
5440 "aware of this limit.  The API calls which may be affected are individually "
5441 "documented, with a link back to this section of the documentation."
5442 msgstr ""
5443
5444 #. type: textblock
5445 #: ../src/guestfs.pod:2778
5446 msgid ""
5447 "A simple call such as L</guestfs_cat> returns its result (the file data) in "
5448 "a simple string.  Because this string is at some point internally encoded as "
5449 "a message, the maximum size that it can return is slightly under 4 MB.  If "
5450 "the requested file is larger than this then you will get an error."
5451 msgstr ""
5452
5453 #. type: textblock
5454 #: ../src/guestfs.pod:2784
5455 msgid ""
5456 "In order to transfer large files into and out of the guest filesystem, you "
5457 "need to use particular calls that support this.  The sections L</UPLOADING> "
5458 "and L</DOWNLOADING> document how to do this."
5459 msgstr ""
5460
5461 #. type: textblock
5462 #: ../src/guestfs.pod:2788
5463 msgid ""
5464 "You might also consider mounting the disk image using our FUSE filesystem "
5465 "support (L<guestmount(1)>)."
5466 msgstr ""
5467
5468 #. type: =head2
5469 #: ../src/guestfs.pod:2791
5470 msgid "MAXIMUM NUMBER OF DISKS"
5471 msgstr ""
5472
5473 #. type: textblock
5474 #: ../src/guestfs.pod:2793
5475 msgid "When using virtio disks (the default) the current limit is B<25> disks."
5476 msgstr ""
5477
5478 #. type: textblock
5479 #: ../src/guestfs.pod:2796
5480 msgid ""
5481 "Virtio itself consumes 1 virtual PCI slot per disk, and PCI is limited to 31 "
5482 "slots.  However febootstrap only understands disks with names C</dev/vda> "
5483 "through C</dev/vdz> (26 letters) and it reserves one disk for its own "
5484 "purposes."
5485 msgstr ""
5486
5487 #. type: textblock
5488 #: ../src/guestfs.pod:2801
5489 msgid ""
5490 "We are working to substantially raise this limit in future versions but it "
5491 "requires complex changes to qemu."
5492 msgstr ""
5493
5494 #. type: textblock
5495 #: ../src/guestfs.pod:2804
5496 msgid ""
5497 "In future versions of libguestfs it should also be possible to \"hot plug\" "
5498 "disks (add and remove disks after calling L</guestfs_launch>).  This also "
5499 "requires changes to qemu."
5500 msgstr ""
5501
5502 #. type: =head2
5503 #: ../src/guestfs.pod:2808
5504 msgid "MAXIMUM NUMBER OF PARTITIONS PER DISK"
5505 msgstr ""
5506
5507 #. type: textblock
5508 #: ../src/guestfs.pod:2810
5509 msgid "Virtio limits the maximum number of partitions per disk to B<15>."
5510 msgstr ""
5511
5512 #. type: textblock
5513 #: ../src/guestfs.pod:2812
5514 msgid ""
5515 "This is because it reserves 4 bits for the minor device number (thus C</dev/"
5516 "vda>, and C</dev/vda1> through C</dev/vda15>)."
5517 msgstr ""
5518
5519 #. type: textblock
5520 #: ../src/guestfs.pod:2815
5521 msgid ""
5522 "If you attach a disk with more than 15 partitions, the extra partitions are "
5523 "ignored by libguestfs."
5524 msgstr ""
5525
5526 #. type: =head2
5527 #: ../src/guestfs.pod:2818
5528 msgid "MAXIMUM SIZE OF A DISK"
5529 msgstr ""
5530
5531 #. type: textblock
5532 #: ../src/guestfs.pod:2820
5533 msgid "Probably the limit is between 2**63-1 and 2**64-1 bytes."
5534 msgstr ""
5535
5536 #. type: textblock
5537 #: ../src/guestfs.pod:2822
5538 msgid ""
5539 "We have tested block devices up to 1 exabyte (2**60 or "
5540 "1,152,921,504,606,846,976 bytes) using sparse files backed by an XFS host "
5541 "filesystem."
5542 msgstr ""
5543
5544 #. type: textblock
5545 #: ../src/guestfs.pod:2826
5546 msgid ""
5547 "Although libguestfs probably does not impose any limit, the underlying host "
5548 "storage will.  If you store disk images on a host ext4 filesystem, then the "
5549 "maximum size will be limited by the maximum ext4 file size (currently 16 "
5550 "TB).  If you store disk images as host logical volumes then you are limited "
5551 "by the maximum size of an LV."
5552 msgstr ""
5553
5554 #. type: textblock
5555 #: ../src/guestfs.pod:2832
5556 msgid ""
5557 "For the hugest disk image files, we recommend using XFS on the host for "
5558 "storage."
5559 msgstr ""
5560
5561 #. type: =head2
5562 #: ../src/guestfs.pod:2835
5563 msgid "MAXIMUM SIZE OF A PARTITION"
5564 msgstr ""
5565
5566 #. type: textblock
5567 #: ../src/guestfs.pod:2837
5568 msgid ""
5569 "The MBR (ie. classic MS-DOS) partitioning scheme uses 32 bit sector "
5570 "numbers.  Assuming a 512 byte sector size, this means that MBR cannot "
5571 "address a partition located beyond 2 TB on the disk."
5572 msgstr ""
5573
5574 #. type: textblock
5575 #: ../src/guestfs.pod:2841
5576 msgid ""
5577 "It is recommended that you use GPT partitions on disks which are larger than "
5578 "this size.  GPT uses 64 bit sector numbers and so can address partitions "
5579 "which are theoretically larger than the largest disk we could support."
5580 msgstr ""
5581
5582 #. type: =head2
5583 #: ../src/guestfs.pod:2846
5584 msgid "MAXIMUM SIZE OF A FILESYSTEM, FILES, DIRECTORIES"
5585 msgstr ""
5586
5587 #. type: textblock
5588 #: ../src/guestfs.pod:2848
5589 msgid ""
5590 "This depends on the filesystem type.  libguestfs itself does not impose any "
5591 "known limit.  Consult Wikipedia or the filesystem documentation to find out "
5592 "what these limits are."
5593 msgstr ""
5594
5595 #. type: =head2
5596 #: ../src/guestfs.pod:2852
5597 msgid "MAXIMUM UPLOAD AND DOWNLOAD"
5598 msgstr ""
5599
5600 #. type: textblock
5601 #: ../src/guestfs.pod:2854
5602 msgid ""
5603 "The API functions L</guestfs_upload>, L</guestfs_download>, L</"
5604 "guestfs_tar_in>, L</guestfs_tar_out> and the like allow unlimited sized "
5605 "uploads and downloads."
5606 msgstr ""
5607
5608 #. type: =head2
5609 #: ../src/guestfs.pod:2858
5610 #, fuzzy
5611 #| msgid "INSPECTION"
5612 msgid "INSPECTION LIMITS"
5613 msgstr "ПЕРЕВІРКА"
5614
5615 #. type: textblock
5616 #: ../src/guestfs.pod:2860
5617 msgid ""
5618 "The inspection code has several arbitrary limits on things like the size of "
5619 "Windows Registry hive it will read, and the length of product name.  These "
5620 "are intended to stop a malicious guest from consuming arbitrary amounts of "
5621 "memory and disk space on the host, and should not be reached in practice.  "
5622 "See the source code for more information."
5623 msgstr ""
5624
5625 #. type: =head1
5626 #: ../src/guestfs.pod:2866 ../fish/guestfish.pod:1015
5627 #: ../test-tool/libguestfs-test-tool.pod:82 ../tools/virt-edit.pl:476
5628 msgid "ENVIRONMENT VARIABLES"
5629 msgstr "ЗМІННІ СЕРЕДОВИЩА"
5630
5631 #. type: =item
5632 #: ../src/guestfs.pod:2870 ../fish/guestfish.pod:1041
5633 msgid "LIBGUESTFS_APPEND"
5634 msgstr ""
5635
5636 #. type: textblock
5637 #: ../src/guestfs.pod:2872 ../fish/guestfish.pod:1043
5638 msgid "Pass additional options to the guest kernel."
5639 msgstr ""
5640
5641 #. type: =item
5642 #: ../src/guestfs.pod:2874 ../fish/guestfish.pod:1045
5643 msgid "LIBGUESTFS_DEBUG"
5644 msgstr ""
5645
5646 #. type: textblock
5647 #: ../src/guestfs.pod:2876
5648 msgid ""
5649 "Set C<LIBGUESTFS_DEBUG=1> to enable verbose messages.  This has the same "
5650 "effect as calling C<guestfs_set_verbose (g, 1)>."
5651 msgstr ""
5652
5653 #. type: =item
5654 #: ../src/guestfs.pod:2879 ../fish/guestfish.pod:1050
5655 msgid "LIBGUESTFS_MEMSIZE"
5656 msgstr ""
5657
5658 #. type: textblock
5659 #: ../src/guestfs.pod:2881 ../fish/guestfish.pod:1052
5660 msgid ""
5661 "Set the memory allocated to the qemu process, in megabytes.  For example:"
5662 msgstr ""
5663
5664 #. type: verbatim
5665 #: ../src/guestfs.pod:2884 ../fish/guestfish.pod:1055
5666 #, no-wrap
5667 msgid ""
5668 " LIBGUESTFS_MEMSIZE=700\n"
5669 "\n"
5670 msgstr ""
5671
5672 #. type: =item
5673 #: ../src/guestfs.pod:2886 ../fish/guestfish.pod:1057
5674 msgid "LIBGUESTFS_PATH"
5675 msgstr ""
5676
5677 #. type: textblock
5678 #: ../src/guestfs.pod:2888
5679 msgid ""
5680 "Set the path that libguestfs uses to search for a supermin appliance.  See "
5681 "the discussion of paths in section L</PATH> above."
5682 msgstr ""
5683
5684 #. type: =item
5685 #: ../src/guestfs.pod:2891 ../fish/guestfish.pod:1062
5686 msgid "LIBGUESTFS_QEMU"
5687 msgstr ""
5688
5689 #. type: textblock
5690 #: ../src/guestfs.pod:2893 ../fish/guestfish.pod:1064
5691 msgid ""
5692 "Set the default qemu binary that libguestfs uses.  If not set, then the qemu "
5693 "which was found at compile time by the configure script is used."
5694 msgstr ""
5695
5696 #. type: textblock
5697 #: ../src/guestfs.pod:2897
5698 msgid "See also L</QEMU WRAPPERS> above."
5699 msgstr ""
5700
5701 #. type: =item
5702 #: ../src/guestfs.pod:2899 ../fish/guestfish.pod:1068
5703 msgid "LIBGUESTFS_TRACE"
5704 msgstr ""
5705
5706 #. type: textblock
5707 #: ../src/guestfs.pod:2901
5708 msgid ""
5709 "Set C<LIBGUESTFS_TRACE=1> to enable command traces.  This has the same "
5710 "effect as calling C<guestfs_set_trace (g, 1)>."
5711 msgstr ""
5712
5713 #. type: =item
5714 #: ../src/guestfs.pod:2904 ../fish/guestfish.pod:1077
5715 msgid "TMPDIR"
5716 msgstr ""
5717
5718 #. type: textblock
5719 #: ../src/guestfs.pod:2906 ../fish/guestfish.pod:1079
5720 msgid ""
5721 "Location of temporary directory, defaults to C</tmp> except for the cached "
5722 "supermin appliance which defaults to C</var/tmp>."
5723 msgstr ""
5724
5725 #. type: textblock
5726 #: ../src/guestfs.pod:2909 ../fish/guestfish.pod:1082
5727 msgid ""
5728 "If libguestfs was compiled to use the supermin appliance then the real "
5729 "appliance is cached in this directory, shared between all handles belonging "
5730 "to the same EUID.  You can use C<$TMPDIR> to configure another directory to "
5731 "use in case C</var/tmp> is not large enough."
5732 msgstr ""
5733
5734 #. type: =head1
5735 #: ../src/guestfs.pod:2917 ../fish/guestfish.pod:1149
5736 #: ../test-tool/libguestfs-test-tool.pod:87 ../fuse/guestmount.pod:277
5737 #: ../tools/virt-edit.pl:496 ../tools/virt-win-reg.pl:572
5738 #: ../tools/virt-list-filesystems.pl:189 ../tools/virt-tar.pl:286
5739 #: ../tools/virt-make-fs.pl:539 ../tools/virt-list-partitions.pl:257
5740 msgid "SEE ALSO"
5741 msgstr "ТАКОЖ ПЕРЕГЛЯНЬТЕ"
5742
5743 #. type: textblock
5744 #: ../src/guestfs.pod:2919
5745 msgid ""
5746 "L<guestfs-examples(3)>, L<guestfs-ocaml(3)>, L<guestfs-python(3)>, L<guestfs-"
5747 "ruby(3)>, L<guestfish(1)>, L<guestmount(1)>, L<virt-cat(1)>, L<virt-copy-in"
5748 "(1)>, L<virt-copy-out(1)>, L<virt-df(1)>, L<virt-edit(1)>, L<virt-filesystems"
5749 "(1)>, L<virt-inspector(1)>, L<virt-list-filesystems(1)>, L<virt-list-"
5750 "partitions(1)>, L<virt-ls(1)>, L<virt-make-fs(1)>, L<virt-rescue(1)>, L<virt-"
5751 "tar(1)>, L<virt-tar-in(1)>, L<virt-tar-out(1)>, L<virt-win-reg(1)>, L<qemu(1)"
5752 ">, L<febootstrap(1)>, L<hivex(3)>, L<http://libguestfs.org/>."
5753 msgstr ""
5754
5755 #. type: textblock
5756 #: ../src/guestfs.pod:2946
5757 msgid ""
5758 "Tools with a similar purpose: L<fdisk(8)>, L<parted(8)>, L<kpartx(8)>, L<lvm"
5759 "(8)>, L<disktype(1)>."
5760 msgstr ""
5761
5762 #. type: =head1
5763 #: ../src/guestfs.pod:2953 ../tools/virt-win-reg.pl:587
5764 #: ../tools/virt-make-fs.pl:553
5765 msgid "BUGS"
5766 msgstr "ВАДИ"
5767
5768 #. type: textblock
5769 #: ../src/guestfs.pod:2955
5770 msgid "To get a list of bugs against libguestfs use this link:"
5771 msgstr ""
5772 "Щоб переглянути список відомих вад у libguestfs, скористайтеся таким "
5773 "посиланням:"
5774
5775 #. type: textblock
5776 #: ../src/guestfs.pod:2957
5777 msgid ""
5778 "L<https://bugzilla.redhat.com/buglist.cgi?"
5779 "component=libguestfs&product=Virtualization+Tools>"
5780 msgstr ""
5781 "L<https://bugzilla.redhat.com/buglist.cgi?"
5782 "component=libguestfs&product=Virtualization+Tools>"
5783
5784 #. type: textblock
5785 #: ../src/guestfs.pod:2959
5786 msgid "To report a new bug against libguestfs use this link:"
5787 msgstr "Для звітування щодо вад у libguestfs скористайтеся цим посиланням:"
5788
5789 #. type: textblock
5790 #: ../src/guestfs.pod:2961
5791 msgid ""
5792 "L<https://bugzilla.redhat.com/enter_bug.cgi?"
5793 "component=libguestfs&product=Virtualization+Tools>"
5794 msgstr ""
5795 "L<https://bugzilla.redhat.com/enter_bug.cgi?"
5796 "component=libguestfs&product=Virtualization+Tools>"
5797
5798 #. type: textblock
5799 #: ../src/guestfs.pod:2963
5800 msgid "When reporting a bug, please check:"
5801 msgstr ""
5802
5803 #. type: textblock
5804 #: ../src/guestfs.pod:2969
5805 msgid "That the bug hasn't been reported already."
5806 msgstr ""
5807
5808 #. type: textblock
5809 #: ../src/guestfs.pod:2973
5810 msgid "That you are testing a recent version."
5811 msgstr ""
5812
5813 #. type: textblock
5814 #: ../src/guestfs.pod:2977
5815 msgid "Describe the bug accurately, and give a way to reproduce it."
5816 msgstr ""
5817
5818 #. type: textblock
5819 #: ../src/guestfs.pod:2981
5820 msgid ""
5821 "Run libguestfs-test-tool and paste the B<complete, unedited> output into the "
5822 "bug report."
5823 msgstr ""
5824
5825 #. type: =head1
5826 #: ../src/guestfs.pod:2986 ../fish/guestfish.pod:1172
5827 #: ../test-tool/libguestfs-test-tool.pod:93 ../fuse/guestmount.pod:288
5828 msgid "AUTHORS"
5829 msgstr "АВТОРИ"
5830
5831 #. type: textblock
5832 #: ../src/guestfs.pod:2988 ../fish/guestfish.pod:1174
5833 #: ../test-tool/libguestfs-test-tool.pod:95 ../fuse/guestmount.pod:290
5834 msgid "Richard W.M. Jones (C<rjones at redhat dot com>)"
5835 msgstr ""
5836
5837 #. type: =head1
5838 #: ../src/guestfs.pod:2990 ../fish/guestfish.pod:1176
5839 #: ../test-tool/libguestfs-test-tool.pod:97 ../fuse/guestmount.pod:292
5840 #: ../tools/virt-edit.pl:514 ../tools/virt-win-reg.pl:602
5841 #: ../tools/virt-list-filesystems.pl:206 ../tools/virt-tar.pl:305
5842 #: ../tools/virt-make-fs.pl:568 ../tools/virt-list-partitions.pl:273
5843 msgid "COPYRIGHT"
5844 msgstr "АВТОРСЬКІ ПРАВА"
5845
5846 #. type: textblock
5847 #: ../src/guestfs.pod:2992 ../fish/guestfish.pod:1178
5848 #: ../test-tool/libguestfs-test-tool.pod:99
5849 msgid "Copyright (C) 2009-2011 Red Hat Inc.  L<http://libguestfs.org/>"
5850 msgstr ""
5851
5852 #. type: textblock
5853 #: ../src/guestfs.pod:2995
5854 msgid ""
5855 "This library is free software; you can redistribute it and/or modify it "
5856 "under the terms of the GNU Lesser General Public License as published by the "
5857 "Free Software Foundation; either version 2 of the License, or (at your "
5858 "option) any later version."
5859 msgstr ""
5860
5861 #. type: textblock
5862 #: ../src/guestfs.pod:3000
5863 msgid ""
5864 "This library is distributed in the hope that it will be useful, but WITHOUT "
5865 "ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or "
5866 "FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public License "
5867 "for more details."
5868 msgstr ""
5869
5870 #. type: textblock
5871 #: ../src/guestfs.pod:3005
5872 msgid ""
5873 "You should have received a copy of the GNU Lesser General Public License "
5874 "along with this library; if not, write to the Free Software Foundation, "
5875 "Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA"
5876 msgstr ""
5877
5878 #. type: =head2
5879 #: ../src/guestfs-actions.pod:1
5880 msgid "guestfs_add_cdrom"
5881 msgstr ""
5882
5883 #. type: verbatim
5884 #: ../src/guestfs-actions.pod:3
5885 #, no-wrap
5886 msgid ""
5887 " int\n"
5888 " guestfs_add_cdrom (guestfs_h *g,\n"
5889 "                    const char *filename);\n"
5890 "\n"
5891 msgstr ""
5892
5893 #. type: textblock
5894 #: ../src/guestfs-actions.pod:7 ../fish/guestfish-actions.pod:5
5895 msgid "This function adds a virtual CD-ROM disk image to the guest."
5896 msgstr ""
5897
5898 #. type: textblock
5899 #: ../src/guestfs-actions.pod:9 ../fish/guestfish-actions.pod:7
5900 msgid "This is equivalent to the qemu parameter I<-cdrom filename>."
5901 msgstr ""
5902
5903 #. type: textblock
5904 #: ../src/guestfs-actions.pod:17
5905 msgid ""
5906 "This call checks for the existence of C<filename>.  This stops you from "
5907 "specifying other types of drive which are supported by qemu such as C<nbd:> "
5908 "and C<http:> URLs.  To specify those, use the general C<guestfs_config> call "
5909 "instead."
5910 msgstr ""
5911
5912 #. type: textblock
5913 #: ../src/guestfs-actions.pod:24
5914 msgid ""
5915 "If you just want to add an ISO file (often you use this as an efficient way "
5916 "to transfer large files into the guest), then you should probably use "
5917 "C<guestfs_add_drive_ro> instead."
5918 msgstr ""
5919
5920 #. type: textblock
5921 #: ../src/guestfs-actions.pod:30 ../src/guestfs-actions.pod:134
5922 #: ../src/guestfs-actions.pod:195 ../src/guestfs-actions.pod:232
5923 #: ../src/guestfs-actions.pod:246 ../src/guestfs-actions.pod:267
5924 #: ../src/guestfs-actions.pod:287 ../src/guestfs-actions.pod:301
5925 #: ../src/guestfs-actions.pod:416 ../src/guestfs-actions.pod:436
5926 #: ../src/guestfs-actions.pod:450 ../src/guestfs-actions.pod:495
5927 #: ../src/guestfs-actions.pod:523 ../src/guestfs-actions.pod:541
5928 #: ../src/guestfs-actions.pod:608 ../src/guestfs-actions.pod:641
5929 #: ../src/guestfs-actions.pod:655 ../src/guestfs-actions.pod:670
5930 #: ../src/guestfs-actions.pod:769 ../src/guestfs-actions.pod:787
5931 #: ../src/guestfs-actions.pod:801 ../src/guestfs-actions.pod:815
5932 #: ../src/guestfs-actions.pod:976 ../src/guestfs-actions.pod:996
5933 #: ../src/guestfs-actions.pod:1014 ../src/guestfs-actions.pod:1098
5934 #: ../src/guestfs-actions.pod:1116 ../src/guestfs-actions.pod:1135
5935 #: ../src/guestfs-actions.pod:1149 ../src/guestfs-actions.pod:1169
5936 #: ../src/guestfs-actions.pod:1239 ../src/guestfs-actions.pod:1270
5937 #: ../src/guestfs-actions.pod:1295 ../src/guestfs-actions.pod:1337
5938 #: ../src/guestfs-actions.pod:1443 ../src/guestfs-actions.pod:1477
5939 #: ../src/guestfs-actions.pod:1692 ../src/guestfs-actions.pod:1714
5940 #: ../src/guestfs-actions.pod:1801 ../src/guestfs-actions.pod:2263
5941 #: ../src/guestfs-actions.pod:2407 ../src/guestfs-actions.pod:2468
5942 #: ../src/guestfs-actions.pod:2503 ../src/guestfs-actions.pod:3456
5943 #: ../src/guestfs-actions.pod:3471 ../src/guestfs-actions.pod:3496
5944 #: ../src/guestfs-actions.pod:3651 ../src/guestfs-actions.pod:3665
5945 #: ../src/guestfs-actions.pod:3678 ../src/guestfs-actions.pod:3692
5946 #: ../src/guestfs-actions.pod:3707 ../src/guestfs-actions.pod:3743
5947 #: ../src/guestfs-actions.pod:3815 ../src/guestfs-actions.pod:3835
5948 #: ../src/guestfs-actions.pod:3852 ../src/guestfs-actions.pod:3875
5949 #: ../src/guestfs-actions.pod:3898 ../src/guestfs-actions.pod:3930
5950 #: ../src/guestfs-actions.pod:3949 ../src/guestfs-actions.pod:3968
5951 #: ../src/guestfs-actions.pod:4003 ../src/guestfs-actions.pod:4015
5952 #: ../src/guestfs-actions.pod:4051 ../src/guestfs-actions.pod:4067
5953 #: ../src/guestfs-actions.pod:4080 ../src/guestfs-actions.pod:4095
5954 #: ../src/guestfs-actions.pod:4112 ../src/guestfs-actions.pod:4205
5955 #: ../src/guestfs-actions.pod:4225 ../src/guestfs-actions.pod:4238
5956 #: ../src/guestfs-actions.pod:4289 ../src/guestfs-actions.pod:4307
5957 #: ../src/guestfs-actions.pod:4325 ../src/guestfs-actions.pod:4341
5958 #: ../src/guestfs-actions.pod:4355 ../src/guestfs-actions.pod:4369
5959 #: ../src/guestfs-actions.pod:4386 ../src/guestfs-actions.pod:4401
5960 #: ../src/guestfs-actions.pod:4421 ../src/guestfs-actions.pod:4479
5961 #: ../src/guestfs-actions.pod:4552 ../src/guestfs-actions.pod:4583
5962 #: ../src/guestfs-actions.pod:4602 ../src/guestfs-actions.pod:4621
5963 #: ../src/guestfs-actions.pod:4633 ../src/guestfs-actions.pod:4650
5964 #: ../src/guestfs-actions.pod:4663 ../src/guestfs-actions.pod:4678
5965 #: ../src/guestfs-actions.pod:4693 ../src/guestfs-actions.pod:4728
5966 #: ../src/guestfs-actions.pod:4750 ../src/guestfs-actions.pod:4770
5967 #: ../src/guestfs-actions.pod:4784 ../src/guestfs-actions.pod:4801
5968 #: ../src/guestfs-actions.pod:4850 ../src/guestfs-actions.pod:4896
5969 #: ../src/guestfs-actions.pod:4910 ../src/guestfs-actions.pod:4938
5970 #: ../src/guestfs-actions.pod:4955 ../src/guestfs-actions.pod:4973
5971 #: ../src/guestfs-actions.pod:5107 ../src/guestfs-actions.pod:5164
5972 #: ../src/guestfs-actions.pod:5186 ../src/guestfs-actions.pod:5204
5973 #: ../src/guestfs-actions.pod:5236 ../src/guestfs-actions.pod:5302
5974 #: ../src/guestfs-actions.pod:5319 ../src/guestfs-actions.pod:5332
5975 #: ../src/guestfs-actions.pod:5346 ../src/guestfs-actions.pod:5635
5976 #: ../src/guestfs-actions.pod:5654 ../src/guestfs-actions.pod:5673
5977 #: ../src/guestfs-actions.pod:5685 ../src/guestfs-actions.pod:5697
5978 #: ../src/guestfs-actions.pod:5711 ../src/guestfs-actions.pod:5723
5979 #: ../src/guestfs-actions.pod:5737 ../src/guestfs-actions.pod:5753
5980 #: ../src/guestfs-actions.pod:5774 ../src/guestfs-actions.pod:5793
5981 #: ../src/guestfs-actions.pod:5812 ../src/guestfs-actions.pod:5842
5982 #: ../src/guestfs-actions.pod:5858 ../src/guestfs-actions.pod:5881
5983 #: ../src/guestfs-actions.pod:5899 ../src/guestfs-actions.pod:5918
5984 #: ../src/guestfs-actions.pod:5939 ../src/guestfs-actions.pod:5958
5985 #: ../src/guestfs-actions.pod:5975 ../src/guestfs-actions.pod:6003
5986 #: ../src/guestfs-actions.pod:6027 ../src/guestfs-actions.pod:6046
5987 #: ../src/guestfs-actions.pod:6070 ../src/guestfs-actions.pod:6089
5988 #: ../src/guestfs-actions.pod:6104 ../src/guestfs-actions.pod:6123
5989 #: ../src/guestfs-actions.pod:6160 ../src/guestfs-actions.pod:6190
5990 #: ../src/guestfs-actions.pod:6223 ../src/guestfs-actions.pod:6345
5991 #: ../src/guestfs-actions.pod:6466 ../src/guestfs-actions.pod:6478
5992 #: ../src/guestfs-actions.pod:6491 ../src/guestfs-actions.pod:6504
5993 #: ../src/guestfs-actions.pod:6526 ../src/guestfs-actions.pod:6539
5994 #: ../src/guestfs-actions.pod:6552 ../src/guestfs-actions.pod:6565
5995 #: ../src/guestfs-actions.pod:6580 ../src/guestfs-actions.pod:6639
5996 #: ../src/guestfs-actions.pod:6656 ../src/guestfs-actions.pod:6672
5997 #: ../src/guestfs-actions.pod:6688 ../src/guestfs-actions.pod:6705
5998 #: ../src/guestfs-actions.pod:6718 ../src/guestfs-actions.pod:6738
5999 #: ../src/guestfs-actions.pod:6774 ../src/guestfs-actions.pod:6788
6000 #: ../src/guestfs-actions.pod:6829 ../src/guestfs-actions.pod:6842
6001 #: ../src/guestfs-actions.pod:6860 ../src/guestfs-actions.pod:6894
6002 #: ../src/guestfs-actions.pod:6930 ../src/guestfs-actions.pod:7049
6003 #: ../src/guestfs-actions.pod:7067 ../src/guestfs-actions.pod:7081
6004 #: ../src/guestfs-actions.pod:7136 ../src/guestfs-actions.pod:7149
6005 #: ../src/guestfs-actions.pod:7194 ../src/guestfs-actions.pod:7227
6006 #: ../src/guestfs-actions.pod:7288 ../src/guestfs-actions.pod:7314
6007 #: ../src/guestfs-actions.pod:7380 ../src/guestfs-actions.pod:7399
6008 #: ../src/guestfs-actions.pod:7428
6009 msgid "This function returns 0 on success or -1 on error."
6010 msgstr ""
6011
6012 #. type: textblock
6013 #: ../src/guestfs-actions.pod:32 ../src/guestfs-actions.pod:248
6014 #: ../src/guestfs-actions.pod:269 ../fish/guestfish-actions.pod:28
6015 #: ../fish/guestfish-actions.pod:158 ../fish/guestfish-actions.pod:172
6016 msgid ""
6017 "This function is deprecated.  In new code, use the C<add_drive_opts> call "
6018 "instead."
6019 msgstr ""
6020
6021 #. type: textblock
6022 #: ../src/guestfs-actions.pod:35 ../src/guestfs-actions.pod:251
6023 #: ../src/guestfs-actions.pod:272 ../src/guestfs-actions.pod:1448
6024 #: ../src/guestfs-actions.pod:1941 ../src/guestfs-actions.pod:1962
6025 #: ../src/guestfs-actions.pod:4426 ../src/guestfs-actions.pod:4733
6026 #: ../src/guestfs-actions.pod:6168 ../src/guestfs-actions.pod:6198
6027 #: ../src/guestfs-actions.pod:6231 ../src/guestfs-actions.pod:6290
6028 #: ../src/guestfs-actions.pod:7232 ../src/guestfs-actions.pod:7322
6029 #: ../src/guestfs-actions.pod:7491 ../fish/guestfish-actions.pod:31
6030 #: ../fish/guestfish-actions.pod:161 ../fish/guestfish-actions.pod:175
6031 #: ../fish/guestfish-actions.pod:956 ../fish/guestfish-actions.pod:1316
6032 #: ../fish/guestfish-actions.pod:1330 ../fish/guestfish-actions.pod:3005
6033 #: ../fish/guestfish-actions.pod:3202 ../fish/guestfish-actions.pod:4183
6034 #: ../fish/guestfish-actions.pod:4206 ../fish/guestfish-actions.pod:4228
6035 #: ../fish/guestfish-actions.pod:4266 ../fish/guestfish-actions.pod:4907
6036 #: ../fish/guestfish-actions.pod:5004
6037 msgid ""
6038 "Deprecated functions will not be removed from the API, but the fact that "
6039 "they are deprecated indicates that there are problems with correct use of "
6040 "these functions."
6041 msgstr ""
6042
6043 #. type: textblock
6044 #: ../src/guestfs-actions.pod:39 ../src/guestfs-actions.pod:136
6045 #: ../src/guestfs-actions.pod:1100 ../src/guestfs-actions.pod:1913
6046 #: ../src/guestfs-actions.pod:2011 ../src/guestfs-actions.pod:2114
6047 #: ../src/guestfs-actions.pod:3458 ../src/guestfs-actions.pod:3478
6048 #: ../src/guestfs-actions.pod:4737 ../src/guestfs-actions.pod:5860
6049 #: ../src/guestfs-actions.pod:5977 ../src/guestfs-actions.pod:6091
6050 #: ../src/guestfs-actions.pod:6582 ../src/guestfs-actions.pod:6707
6051 #: ../src/guestfs-actions.pod:7236
6052 msgid "(Added in 0.3)"
6053 msgstr ""
6054
6055 #. type: =head2
6056 #: ../src/guestfs-actions.pod:41
6057 msgid "guestfs_add_domain"
6058 msgstr ""
6059
6060 #. type: verbatim
6061 #: ../src/guestfs-actions.pod:43
6062 #, no-wrap
6063 msgid ""
6064 " int\n"
6065 " guestfs_add_domain (guestfs_h *g,\n"
6066 "                     const char *dom,\n"
6067 "                     ...);\n"
6068 "\n"
6069 msgstr ""
6070
6071 #. type: textblock
6072 #: ../src/guestfs-actions.pod:48 ../src/guestfs-actions.pod:145
6073 #: ../src/guestfs-actions.pod:4440
6074 msgid ""
6075 "You may supply a list of optional arguments to this call.  Use zero or more "
6076 "of the following pairs of parameters, and terminate the list with C<-1> on "
6077 "its own.  See L</CALLS WITH OPTIONAL ARGUMENTS>."
6078 msgstr ""
6079
6080 #. type: verbatim
6081 #: ../src/guestfs-actions.pod:53
6082 #, no-wrap
6083 msgid ""
6084 " GUESTFS_ADD_DOMAIN_LIBVIRTURI, const char *libvirturi,\n"
6085 " GUESTFS_ADD_DOMAIN_READONLY, int readonly,\n"
6086 " GUESTFS_ADD_DOMAIN_IFACE, const char *iface,\n"
6087 " GUESTFS_ADD_DOMAIN_LIVE, int live,\n"
6088 "\n"
6089 msgstr ""
6090
6091 #. type: textblock
6092 #: ../src/guestfs-actions.pod:58
6093 msgid ""
6094 "This function adds the disk(s) attached to the named libvirt domain C<dom>.  "
6095 "It works by connecting to libvirt, requesting the domain and domain XML from "
6096 "libvirt, parsing it for disks, and calling C<guestfs_add_drive_opts> on each "
6097 "one."
6098 msgstr ""
6099
6100 #. type: textblock
6101 #: ../src/guestfs-actions.pod:63 ../fish/guestfish-actions.pod:46
6102 msgid ""
6103 "The number of disks added is returned.  This operation is atomic: if an "
6104 "error is returned, then no disks are added."
6105 msgstr ""
6106
6107 #. type: textblock
6108 #: ../src/guestfs-actions.pod:66 ../fish/guestfish-actions.pod:49
6109 msgid ""
6110 "This function does some minimal checks to make sure the libvirt domain is "
6111 "not running (unless C<readonly> is true).  In a future version we will try "
6112 "to acquire the libvirt lock on each disk."
6113 msgstr ""
6114
6115 #. type: textblock
6116 #: ../src/guestfs-actions.pod:70 ../fish/guestfish-actions.pod:53
6117 msgid ""
6118 "Disks must be accessible locally.  This often means that adding disks from a "
6119 "remote libvirt connection (see L<http://libvirt.org/remote.html>)  will fail "
6120 "unless those disks are accessible via the same device path locally too."
6121 msgstr ""
6122
6123 #. type: textblock
6124 #: ../src/guestfs-actions.pod:75 ../fish/guestfish-actions.pod:58
6125 msgid ""
6126 "The optional C<libvirturi> parameter sets the libvirt URI (see L<http://"
6127 "libvirt.org/uri.html>).  If this is not set then we connect to the default "
6128 "libvirt URI (or one set through an environment variable, see the libvirt "
6129 "documentation for full details)."
6130 msgstr ""
6131
6132 #. type: textblock
6133 #: ../src/guestfs-actions.pod:81 ../fish/guestfish-actions.pod:64
6134 msgid ""
6135 "The optional C<live> flag controls whether this call will try to connect to "
6136 "a running virtual machine C<guestfsd> process if it sees a suitable "
6137 "E<lt>channelE<gt> element in the libvirt XML definition.  The default (if "
6138 "the flag is omitted) is never to try.  See L<guestfs(3)/ATTACHING TO RUNNING "
6139 "DAEMONS> for more information."
6140 msgstr ""
6141
6142 #. type: textblock
6143 #: ../src/guestfs-actions.pod:88
6144 msgid ""
6145 "The other optional parameters are passed directly through to "
6146 "C<guestfs_add_drive_opts>."
6147 msgstr ""
6148
6149 #. type: textblock
6150 #: ../src/guestfs-actions.pod:91 ../src/guestfs-actions.pod:344
6151 #: ../src/guestfs-actions.pod:509 ../src/guestfs-actions.pod:687
6152 #: ../src/guestfs-actions.pod:718 ../src/guestfs-actions.pod:736
6153 #: ../src/guestfs-actions.pod:755 ../src/guestfs-actions.pod:1315
6154 #: ../src/guestfs-actions.pod:1671 ../src/guestfs-actions.pod:1874
6155 #: ../src/guestfs-actions.pod:1983 ../src/guestfs-actions.pod:2023
6156 #: ../src/guestfs-actions.pod:2078 ../src/guestfs-actions.pod:2101
6157 #: ../src/guestfs-actions.pod:2394 ../src/guestfs-actions.pod:2777
6158 #: ../src/guestfs-actions.pod:2798 ../src/guestfs-actions.pod:4873
6159 #: ../src/guestfs-actions.pod:5010 ../src/guestfs-actions.pod:5416
6160 #: ../src/guestfs-actions.pod:5442 ../src/guestfs-actions.pod:6815
6161 #: ../src/guestfs-actions.pod:7247 ../src/guestfs-actions.pod:7260
6162 #: ../src/guestfs-actions.pod:7273
6163 msgid "On error this function returns -1."
6164 msgstr ""
6165
6166 #. type: textblock
6167 #: ../src/guestfs-actions.pod:93
6168 msgid "(Added in 1.7.4)"
6169 msgstr ""
6170
6171 #. type: =head2
6172 #: ../src/guestfs-actions.pod:95
6173 msgid "guestfs_add_domain_va"
6174 msgstr ""
6175
6176 #. type: verbatim
6177 #: ../src/guestfs-actions.pod:97
6178 #, no-wrap
6179 msgid ""
6180 " int\n"
6181 " guestfs_add_domain_va (guestfs_h *g,\n"
6182 "                        const char *dom,\n"
6183 "                        va_list args);\n"
6184 "\n"
6185 msgstr ""
6186
6187 #. type: textblock
6188 #: ../src/guestfs-actions.pod:102
6189 msgid "This is the \"va_list variant\" of L</guestfs_add_domain>."
6190 msgstr ""
6191
6192 #. type: textblock
6193 #: ../src/guestfs-actions.pod:104 ../src/guestfs-actions.pod:115
6194 #: ../src/guestfs-actions.pod:208 ../src/guestfs-actions.pod:219
6195 #: ../src/guestfs-actions.pod:4493 ../src/guestfs-actions.pod:4505
6196 msgid "See L</CALLS WITH OPTIONAL ARGUMENTS>."
6197 msgstr ""
6198
6199 #. type: =head2
6200 #: ../src/guestfs-actions.pod:106
6201 msgid "guestfs_add_domain_argv"
6202 msgstr ""
6203
6204 #. type: verbatim
6205 #: ../src/guestfs-actions.pod:108
6206 #, no-wrap
6207 msgid ""
6208 " int\n"
6209 " guestfs_add_domain_argv (guestfs_h *g,\n"
6210 "                          const char *dom,\n"
6211 "                          const struct guestfs_add_domain_argv *optargs);\n"
6212 "\n"
6213 msgstr ""
6214
6215 #. type: textblock
6216 #: ../src/guestfs-actions.pod:113
6217 msgid "This is the \"argv variant\" of L</guestfs_add_domain>."
6218 msgstr ""
6219
6220 #. type: =head2
6221 #: ../src/guestfs-actions.pod:117
6222 msgid "guestfs_add_drive"
6223 msgstr ""
6224
6225 #. type: verbatim
6226 #: ../src/guestfs-actions.pod:119
6227 #, no-wrap
6228 msgid ""
6229 " int\n"
6230 " guestfs_add_drive (guestfs_h *g,\n"
6231 "                    const char *filename);\n"
6232 "\n"
6233 msgstr ""
6234
6235 #. type: textblock
6236 #: ../src/guestfs-actions.pod:123
6237 msgid ""
6238 "This function is the equivalent of calling C<guestfs_add_drive_opts> with no "
6239 "optional parameters, so the disk is added writable, with the format being "
6240 "detected automatically."
6241 msgstr ""
6242
6243 #. type: textblock
6244 #: ../src/guestfs-actions.pod:127
6245 msgid ""
6246 "Automatic detection of the format opens you up to a potential security hole "
6247 "when dealing with untrusted raw-format images.  See CVE-2010-3851 and "
6248 "RHBZ#642934.  Specifying the format closes this security hole.  Therefore "
6249 "you should think about replacing calls to this function with calls to "
6250 "C<guestfs_add_drive_opts>, and specifying the format."
6251 msgstr ""
6252
6253 #. type: =head2
6254 #: ../src/guestfs-actions.pod:138
6255 msgid "guestfs_add_drive_opts"
6256 msgstr ""
6257
6258 #. type: verbatim
6259 #: ../src/guestfs-actions.pod:140
6260 #, no-wrap
6261 msgid ""
6262 " int\n"
6263 " guestfs_add_drive_opts (guestfs_h *g,\n"
6264 "                         const char *filename,\n"
6265 "                         ...);\n"
6266 "\n"
6267 msgstr ""
6268
6269 #. type: verbatim
6270 #: ../src/guestfs-actions.pod:150
6271 #, no-wrap
6272 msgid ""
6273 " GUESTFS_ADD_DRIVE_OPTS_READONLY, int readonly,\n"
6274 " GUESTFS_ADD_DRIVE_OPTS_FORMAT, const char *format,\n"
6275 " GUESTFS_ADD_DRIVE_OPTS_IFACE, const char *iface,\n"
6276 "\n"
6277 msgstr ""
6278
6279 #. type: textblock
6280 #: ../src/guestfs-actions.pod:154 ../fish/guestfish-actions.pod:97
6281 msgid ""
6282 "This function adds a virtual machine disk image C<filename> to libguestfs.  "
6283 "The first time you call this function, the disk appears as C</dev/sda>, the "
6284 "second time as C</dev/sdb>, and so on."
6285 msgstr ""
6286
6287 #. type: textblock
6288 #: ../src/guestfs-actions.pod:159 ../fish/guestfish-actions.pod:102
6289 msgid ""
6290 "You don't necessarily need to be root when using libguestfs.  However you "
6291 "obviously do need sufficient permissions to access the filename for whatever "
6292 "operations you want to perform (ie. read access if you just want to read the "
6293 "image or write access if you want to modify the image)."
6294 msgstr ""
6295
6296 #. type: textblock
6297 #: ../src/guestfs-actions.pod:165 ../fish/guestfish-actions.pod:108
6298 msgid "This call checks that C<filename> exists."
6299 msgstr ""
6300
6301 #. type: textblock
6302 #: ../src/guestfs-actions.pod:167 ../src/guestfs-actions.pod:4451
6303 #: ../fish/guestfish-actions.pod:110 ../fish/guestfish-actions.pod:3016
6304 msgid "The optional arguments are:"
6305 msgstr ""
6306
6307 #. type: =item
6308 #: ../src/guestfs-actions.pod:171 ../fish/guestfish-actions.pod:114
6309 msgid "C<readonly>"
6310 msgstr "C<readonly>"
6311
6312 #. type: textblock
6313 #: ../src/guestfs-actions.pod:173 ../fish/guestfish-actions.pod:116
6314 msgid ""
6315 "If true then the image is treated as read-only.  Writes are still allowed, "
6316 "but they are stored in a temporary snapshot overlay which is discarded at "
6317 "the end.  The disk that you add is not modified."
6318 msgstr ""
6319
6320 #. type: =item
6321 #: ../src/guestfs-actions.pod:177 ../fish/guestfish-actions.pod:120
6322 msgid "C<format>"
6323 msgstr "C<format>"
6324
6325 #. type: textblock
6326 #: ../src/guestfs-actions.pod:179
6327 msgid ""
6328 "This forces the image format.  If you omit this (or use C<guestfs_add_drive> "
6329 "or C<guestfs_add_drive_ro>) then the format is automatically detected.  "
6330 "Possible formats include C<raw> and C<qcow2>."
6331 msgstr ""
6332
6333 #. type: textblock
6334 #: ../src/guestfs-actions.pod:183 ../fish/guestfish-actions.pod:126
6335 msgid ""
6336 "Automatic detection of the format opens you up to a potential security hole "
6337 "when dealing with untrusted raw-format images.  See CVE-2010-3851 and "
6338 "RHBZ#642934.  Specifying the format closes this security hole."
6339 msgstr ""
6340
6341 #. type: =item
6342 #: ../src/guestfs-actions.pod:188 ../fish/guestfish-actions.pod:131
6343 msgid "C<iface>"
6344 msgstr "C<iface>"
6345
6346 #. type: textblock
6347 #: ../src/guestfs-actions.pod:190
6348 msgid ""
6349 "This rarely-used option lets you emulate the behaviour of the deprecated "
6350 "C<guestfs_add_drive_with_if> call (q.v.)"
6351 msgstr ""
6352
6353 #. type: textblock
6354 #: ../src/guestfs-actions.pod:197
6355 msgid "(Added in 1.5.23)"
6356 msgstr ""
6357
6358 #. type: =head2
6359 #: ../src/guestfs-actions.pod:199
6360 msgid "guestfs_add_drive_opts_va"
6361 msgstr ""
6362
6363 #. type: verbatim
6364 #: ../src/guestfs-actions.pod:201
6365 #, no-wrap
6366 msgid ""
6367 " int\n"
6368 " guestfs_add_drive_opts_va (guestfs_h *g,\n"
6369 "                            const char *filename,\n"
6370 "                            va_list args);\n"
6371 "\n"
6372 msgstr ""
6373
6374 #. type: textblock
6375 #: ../src/guestfs-actions.pod:206
6376 msgid "This is the \"va_list variant\" of L</guestfs_add_drive_opts>."
6377 msgstr ""
6378
6379 #. type: =head2
6380 #: ../src/guestfs-actions.pod:210
6381 msgid "guestfs_add_drive_opts_argv"
6382 msgstr ""
6383
6384 #. type: verbatim
6385 #: ../src/guestfs-actions.pod:212
6386 #, no-wrap
6387 msgid ""
6388 " int\n"
6389 " guestfs_add_drive_opts_argv (guestfs_h *g,\n"
6390 "                              const char *filename,\n"
6391 "                              const struct guestfs_add_drive_opts_argv *optargs);\n"
6392 "\n"
6393 msgstr ""
6394
6395 #. type: textblock
6396 #: ../src/guestfs-actions.pod:217
6397 msgid "This is the \"argv variant\" of L</guestfs_add_drive_opts>."
6398 msgstr ""
6399
6400 #. type: =head2
6401 #: ../src/guestfs-actions.pod:221
6402 msgid "guestfs_add_drive_ro"
6403 msgstr ""
6404
6405 #. type: verbatim
6406 #: ../src/guestfs-actions.pod:223
6407 #, no-wrap
6408 msgid ""
6409 " int\n"
6410 " guestfs_add_drive_ro (guestfs_h *g,\n"
6411 "                       const char *filename);\n"
6412 "\n"
6413 msgstr ""
6414
6415 #. type: textblock
6416 #: ../src/guestfs-actions.pod:227
6417 msgid ""
6418 "This function is the equivalent of calling C<guestfs_add_drive_opts> with "
6419 "the optional parameter C<GUESTFS_ADD_DRIVE_OPTS_READONLY> set to 1, so the "
6420 "disk is added read-only, with the format being detected automatically."
6421 msgstr ""
6422
6423 #. type: textblock
6424 #: ../src/guestfs-actions.pod:234
6425 msgid "(Added in 1.0.38)"
6426 msgstr ""
6427
6428 #. type: =head2
6429 #: ../src/guestfs-actions.pod:236
6430 msgid "guestfs_add_drive_ro_with_if"
6431 msgstr ""
6432
6433 #. type: verbatim
6434 #: ../src/guestfs-actions.pod:238
6435 #, no-wrap
6436 msgid ""
6437 " int\n"
6438 " guestfs_add_drive_ro_with_if (guestfs_h *g,\n"
6439 "                               const char *filename,\n"
6440 "                               const char *iface);\n"
6441 "\n"
6442 msgstr ""
6443
6444 #. type: textblock
6445 #: ../src/guestfs-actions.pod:243
6446 msgid ""
6447 "This is the same as C<guestfs_add_drive_ro> but it allows you to specify the "
6448 "QEMU interface emulation to use at run time."
6449 msgstr ""
6450
6451 #. type: textblock
6452 #: ../src/guestfs-actions.pod:255 ../src/guestfs-actions.pod:276
6453 #: ../src/guestfs-actions.pod:2353
6454 msgid "(Added in 1.0.84)"
6455 msgstr ""
6456
6457 #. type: =head2
6458 #: ../src/guestfs-actions.pod:257
6459 msgid "guestfs_add_drive_with_if"
6460 msgstr ""
6461
6462 #. type: verbatim
6463 #: ../src/guestfs-actions.pod:259
6464 #, no-wrap
6465 msgid ""
6466 " int\n"
6467 " guestfs_add_drive_with_if (guestfs_h *g,\n"
6468 "                            const char *filename,\n"
6469 "                            const char *iface);\n"
6470 "\n"
6471 msgstr ""
6472
6473 #. type: textblock
6474 #: ../src/guestfs-actions.pod:264
6475 msgid ""
6476 "This is the same as C<guestfs_add_drive> but it allows you to specify the "
6477 "QEMU interface emulation to use at run time."
6478 msgstr ""
6479
6480 #. type: =head2
6481 #: ../src/guestfs-actions.pod:278
6482 msgid "guestfs_aug_clear"
6483 msgstr ""
6484
6485 #. type: verbatim
6486 #: ../src/guestfs-actions.pod:280
6487 #, no-wrap
6488 msgid ""
6489 " int\n"
6490 " guestfs_aug_clear (guestfs_h *g,\n"
6491 "                    const char *augpath);\n"
6492 "\n"
6493 msgstr ""
6494
6495 #. type: textblock
6496 #: ../src/guestfs-actions.pod:284 ../fish/guestfish-actions.pod:183
6497 msgid ""
6498 "Set the value associated with C<path> to C<NULL>.  This is the same as the "
6499 "L<augtool(1)> C<clear> command."
6500 msgstr ""
6501
6502 #. type: textblock
6503 #: ../src/guestfs-actions.pod:289 ../src/guestfs-actions.pod:2103
6504 msgid "(Added in 1.3.4)"
6505 msgstr ""
6506
6507 #. type: =head2
6508 #: ../src/guestfs-actions.pod:291
6509 msgid "guestfs_aug_close"
6510 msgstr ""
6511
6512 #. type: verbatim
6513 #: ../src/guestfs-actions.pod:293
6514 #, no-wrap
6515 msgid ""
6516 " int\n"
6517 " guestfs_aug_close (guestfs_h *g);\n"
6518 "\n"
6519 msgstr ""
6520
6521 #. type: textblock
6522 #: ../src/guestfs-actions.pod:296
6523 msgid ""
6524 "Close the current Augeas handle and free up any resources used by it.  After "
6525 "calling this, you have to call C<guestfs_aug_init> again before you can use "
6526 "any other Augeas functions."
6527 msgstr ""
6528
6529 #. type: textblock
6530 #: ../src/guestfs-actions.pod:303 ../src/guestfs-actions.pod:328
6531 #: ../src/guestfs-actions.pod:346 ../src/guestfs-actions.pod:360
6532 #: ../src/guestfs-actions.pod:418 ../src/guestfs-actions.pod:438
6533 #: ../src/guestfs-actions.pod:452 ../src/guestfs-actions.pod:483
6534 #: ../src/guestfs-actions.pod:497 ../src/guestfs-actions.pod:511
6535 #: ../src/guestfs-actions.pod:525 ../src/guestfs-actions.pod:543
6536 #: ../src/guestfs-actions.pod:5493
6537 msgid "(Added in 0.7)"
6538 msgstr ""
6539
6540 #. type: =head2
6541 #: ../src/guestfs-actions.pod:305
6542 msgid "guestfs_aug_defnode"
6543 msgstr ""
6544
6545 #. type: verbatim
6546 #: ../src/guestfs-actions.pod:307
6547 #, no-wrap
6548 msgid ""
6549 " struct guestfs_int_bool *\n"
6550 " guestfs_aug_defnode (guestfs_h *g,\n"
6551 "                      const char *name,\n"
6552 "                      const char *expr,\n"
6553 "                      const char *val);\n"
6554 "\n"
6555 msgstr ""
6556
6557 #. type: textblock
6558 #: ../src/guestfs-actions.pod:313 ../fish/guestfish-actions.pod:199
6559 msgid ""
6560 "Defines a variable C<name> whose value is the result of evaluating C<expr>."
6561 msgstr ""
6562
6563 #. type: textblock
6564 #: ../src/guestfs-actions.pod:316
6565 msgid ""
6566 "If C<expr> evaluates to an empty nodeset, a node is created, equivalent to "
6567 "calling C<guestfs_aug_set> C<expr>, C<value>.  C<name> will be the nodeset "
6568 "containing that single node."
6569 msgstr ""
6570
6571 #. type: textblock
6572 #: ../src/guestfs-actions.pod:320 ../fish/guestfish-actions.pod:206
6573 msgid ""
6574 "On success this returns a pair containing the number of nodes in the "
6575 "nodeset, and a boolean flag if a node was created."
6576 msgstr ""
6577
6578 #. type: textblock
6579 #: ../src/guestfs-actions.pod:324
6580 msgid ""
6581 "This function returns a C<struct guestfs_int_bool *>, or NULL if there was "
6582 "an error.  I<The caller must call C<guestfs_free_int_bool> after use>."
6583 msgstr ""
6584
6585 #. type: =head2
6586 #: ../src/guestfs-actions.pod:330
6587 msgid "guestfs_aug_defvar"
6588 msgstr ""
6589
6590 #. type: verbatim
6591 #: ../src/guestfs-actions.pod:332
6592 #, no-wrap
6593 msgid ""
6594 " int\n"
6595 " guestfs_aug_defvar (guestfs_h *g,\n"
6596 "                     const char *name,\n"
6597 "                     const char *expr);\n"
6598 "\n"
6599 msgstr ""
6600
6601 #. type: textblock
6602 #: ../src/guestfs-actions.pod:337 ../fish/guestfish-actions.pod:214
6603 msgid ""
6604 "Defines an Augeas variable C<name> whose value is the result of evaluating "
6605 "C<expr>.  If C<expr> is NULL, then C<name> is undefined."
6606 msgstr ""
6607
6608 #. type: textblock
6609 #: ../src/guestfs-actions.pod:341 ../fish/guestfish-actions.pod:218
6610 msgid ""
6611 "On success this returns the number of nodes in C<expr>, or C<0> if C<expr> "
6612 "evaluates to something which is not a nodeset."
6613 msgstr ""
6614
6615 #. type: =head2
6616 #: ../src/guestfs-actions.pod:348
6617 msgid "guestfs_aug_get"
6618 msgstr ""
6619
6620 #. type: verbatim
6621 #: ../src/guestfs-actions.pod:350
6622 #, no-wrap
6623 msgid ""
6624 " char *\n"
6625 " guestfs_aug_get (guestfs_h *g,\n"
6626 "                  const char *augpath);\n"
6627 "\n"
6628 msgstr ""
6629
6630 #. type: textblock
6631 #: ../src/guestfs-actions.pod:354 ../fish/guestfish-actions.pod:225
6632 msgid ""
6633 "Look up the value associated with C<path>.  If C<path> matches exactly one "
6634 "node, the C<value> is returned."
6635 msgstr ""
6636
6637 #. type: textblock
6638 #: ../src/guestfs-actions.pod:357 ../src/guestfs-actions.pod:857
6639 #: ../src/guestfs-actions.pod:875 ../src/guestfs-actions.pod:935
6640 #: ../src/guestfs-actions.pod:951 ../src/guestfs-actions.pod:1054
6641 #: ../src/guestfs-actions.pod:1184 ../src/guestfs-actions.pod:1201
6642 #: ../src/guestfs-actions.pod:1220 ../src/guestfs-actions.pod:1354
6643 #: ../src/guestfs-actions.pod:1542 ../src/guestfs-actions.pod:1654
6644 #: ../src/guestfs-actions.pod:1817 ../src/guestfs-actions.pod:1834
6645 #: ../src/guestfs-actions.pod:1901 ../src/guestfs-actions.pod:1935
6646 #: ../src/guestfs-actions.pod:1956 ../src/guestfs-actions.pod:2126
6647 #: ../src/guestfs-actions.pod:2318 ../src/guestfs-actions.pod:2525
6648 #: ../src/guestfs-actions.pod:2618 ../src/guestfs-actions.pod:2729
6649 #: ../src/guestfs-actions.pod:2749 ../src/guestfs-actions.pod:2869
6650 #: ../src/guestfs-actions.pod:2900 ../src/guestfs-actions.pod:2924
6651 #: ../src/guestfs-actions.pod:2961 ../src/guestfs-actions.pod:3021
6652 #: ../src/guestfs-actions.pod:3044 ../src/guestfs-actions.pod:3065
6653 #: ../src/guestfs-actions.pod:3637 ../src/guestfs-actions.pod:3987
6654 #: ../src/guestfs-actions.pod:4157 ../src/guestfs-actions.pod:4267
6655 #: ../src/guestfs-actions.pod:5028 ../src/guestfs-actions.pod:5221
6656 #: ../src/guestfs-actions.pod:5391 ../src/guestfs-actions.pod:5569
6657 #: ../src/guestfs-actions.pod:5618 ../src/guestfs-actions.pod:6251
6658 #: ../src/guestfs-actions.pod:6267 ../src/guestfs-actions.pod:6284
6659 #: ../src/guestfs-actions.pod:6315 ../src/guestfs-actions.pod:6989
6660 #: ../src/guestfs-actions.pod:7008 ../src/guestfs-actions.pod:7026
6661 #: ../src/guestfs-actions.pod:7206 ../src/guestfs-actions.pod:7485
6662 msgid ""
6663 "This function returns a string, or NULL on error.  I<The caller must free "
6664 "the returned string after use>."
6665 msgstr ""
6666
6667 #. type: =head2
6668 #: ../src/guestfs-actions.pod:362
6669 msgid "guestfs_aug_init"
6670 msgstr ""
6671
6672 #. type: verbatim
6673 #: ../src/guestfs-actions.pod:364
6674 #, no-wrap
6675 msgid ""
6676 " int\n"
6677 " guestfs_aug_init (guestfs_h *g,\n"
6678 "                   const char *root,\n"
6679 "                   int flags);\n"
6680 "\n"
6681 msgstr ""
6682
6683 #. type: textblock
6684 #: ../src/guestfs-actions.pod:369 ../fish/guestfish-actions.pod:232
6685 msgid ""
6686 "Create a new Augeas handle for editing configuration files.  If there was "
6687 "any previous Augeas handle associated with this guestfs session, then it is "
6688 "closed."
6689 msgstr ""
6690
6691 #. type: textblock
6692 #: ../src/guestfs-actions.pod:373
6693 msgid "You must call this before using any other C<guestfs_aug_*> commands."
6694 msgstr ""
6695
6696 #. type: textblock
6697 #: ../src/guestfs-actions.pod:376 ../fish/guestfish-actions.pod:239
6698 msgid ""
6699 "C<root> is the filesystem root.  C<root> must not be NULL, use C</> instead."
6700 msgstr ""
6701
6702 #. type: textblock
6703 #: ../src/guestfs-actions.pod:379 ../fish/guestfish-actions.pod:242
6704 msgid ""
6705 "The flags are the same as the flags defined in E<lt>augeas.hE<gt>, the "
6706 "logical I<or> of the following integers:"
6707 msgstr ""
6708
6709 #. type: =item
6710 #: ../src/guestfs-actions.pod:385 ../fish/guestfish-actions.pod:248
6711 msgid "C<AUG_SAVE_BACKUP> = 1"
6712 msgstr "C<AUG_SAVE_BACKUP> = 1"
6713
6714 #. type: textblock
6715 #: ../src/guestfs-actions.pod:387 ../fish/guestfish-actions.pod:250
6716 msgid "Keep the original file with a C<.augsave> extension."
6717 msgstr ""
6718
6719 #. type: =item
6720 #: ../src/guestfs-actions.pod:389 ../fish/guestfish-actions.pod:252
6721 msgid "C<AUG_SAVE_NEWFILE> = 2"
6722 msgstr "C<AUG_SAVE_NEWFILE> = 2"
6723
6724 #. type: textblock
6725 #: ../src/guestfs-actions.pod:391 ../fish/guestfish-actions.pod:254
6726 msgid ""
6727 "Save changes into a file with extension C<.augnew>, and do not overwrite "
6728 "original.  Overrides C<AUG_SAVE_BACKUP>."
6729 msgstr ""
6730
6731 #. type: =item
6732 #: ../src/guestfs-actions.pod:394 ../fish/guestfish-actions.pod:257
6733 msgid "C<AUG_TYPE_CHECK> = 4"
6734 msgstr "C<AUG_TYPE_CHECK> = 4"
6735
6736 #. type: textblock
6737 #: ../src/guestfs-actions.pod:396 ../fish/guestfish-actions.pod:259
6738 msgid "Typecheck lenses (can be expensive)."
6739 msgstr ""
6740
6741 #. type: =item
6742 #: ../src/guestfs-actions.pod:398 ../fish/guestfish-actions.pod:261
6743 msgid "C<AUG_NO_STDINC> = 8"
6744 msgstr "C<AUG_NO_STDINC> = 8"
6745
6746 #. type: textblock
6747 #: ../src/guestfs-actions.pod:400 ../fish/guestfish-actions.pod:263
6748 msgid "Do not use standard load path for modules."
6749 msgstr ""
6750
6751 #. type: =item
6752 #: ../src/guestfs-actions.pod:402 ../fish/guestfish-actions.pod:265
6753 msgid "C<AUG_SAVE_NOOP> = 16"
6754 msgstr "C<AUG_SAVE_NOOP> = 16"
6755
6756 #. type: textblock
6757 #: ../src/guestfs-actions.pod:404 ../fish/guestfish-actions.pod:267
6758 msgid "Make save a no-op, just record what would have been changed."
6759 msgstr ""
6760
6761 #. type: =item
6762 #: ../src/guestfs-actions.pod:406 ../fish/guestfish-actions.pod:269
6763 msgid "C<AUG_NO_LOAD> = 32"
6764 msgstr "C<AUG_NO_LOAD> = 32"
6765
6766 #. type: textblock
6767 #: ../src/guestfs-actions.pod:408
6768 msgid "Do not load the tree in C<guestfs_aug_init>."
6769 msgstr ""
6770
6771 #. type: textblock
6772 #: ../src/guestfs-actions.pod:412
6773 msgid "To close the handle, you can call C<guestfs_aug_close>."
6774 msgstr ""
6775
6776 #. type: textblock
6777 #: ../src/guestfs-actions.pod:414 ../fish/guestfish-actions.pod:277
6778 msgid "To find out more about Augeas, see L<http://augeas.net/>."
6779 msgstr ""
6780
6781 #. type: =head2
6782 #: ../src/guestfs-actions.pod:420
6783 msgid "guestfs_aug_insert"
6784 msgstr ""
6785
6786 #. type: verbatim
6787 #: ../src/guestfs-actions.pod:422
6788 #, no-wrap
6789 msgid ""
6790 " int\n"
6791 " guestfs_aug_insert (guestfs_h *g,\n"
6792 "                     const char *augpath,\n"
6793 "                     const char *label,\n"
6794 "                     int before);\n"
6795 "\n"
6796 msgstr ""
6797
6798 #. type: textblock
6799 #: ../src/guestfs-actions.pod:428 ../fish/guestfish-actions.pod:283
6800 msgid ""
6801 "Create a new sibling C<label> for C<path>, inserting it into the tree before "
6802 "or after C<path> (depending on the boolean flag C<before>)."
6803 msgstr ""
6804
6805 #. type: textblock
6806 #: ../src/guestfs-actions.pod:432 ../fish/guestfish-actions.pod:287
6807 msgid ""
6808 "C<path> must match exactly one existing node in the tree, and C<label> must "
6809 "be a label, ie. not contain C</>, C<*> or end with a bracketed index C<[N]>."
6810 msgstr ""
6811
6812 #. type: =head2
6813 #: ../src/guestfs-actions.pod:440
6814 msgid "guestfs_aug_load"
6815 msgstr ""
6816
6817 #. type: verbatim
6818 #: ../src/guestfs-actions.pod:442
6819 #, no-wrap
6820 msgid ""
6821 " int\n"
6822 " guestfs_aug_load (guestfs_h *g);\n"
6823 "\n"
6824 msgstr ""
6825
6826 #. type: textblock
6827 #: ../src/guestfs-actions.pod:445 ../fish/guestfish-actions.pod:295
6828 msgid "Load files into the tree."
6829 msgstr "Завантажити файли до ієрархії."
6830
6831 #. type: textblock
6832 #: ../src/guestfs-actions.pod:447 ../fish/guestfish-actions.pod:297
6833 msgid "See C<aug_load> in the Augeas documentation for the full gory details."
6834 msgstr ""
6835
6836 #. type: =head2
6837 #: ../src/guestfs-actions.pod:454
6838 msgid "guestfs_aug_ls"
6839 msgstr ""
6840
6841 #. type: verbatim
6842 #: ../src/guestfs-actions.pod:456
6843 #, no-wrap
6844 msgid ""
6845 " char **\n"
6846 " guestfs_aug_ls (guestfs_h *g,\n"
6847 "                 const char *augpath);\n"
6848 "\n"
6849 msgstr ""
6850
6851 #. type: textblock
6852 #: ../src/guestfs-actions.pod:460
6853 msgid ""
6854 "This is just a shortcut for listing C<guestfs_aug_match> C<path/*> and "
6855 "sorting the resulting nodes into alphabetical order."
6856 msgstr ""
6857
6858 #. type: textblock
6859 #: ../src/guestfs-actions.pod:463 ../src/guestfs-actions.pod:479
6860 #: ../src/guestfs-actions.pod:625 ../src/guestfs-actions.pod:1073
6861 #: ../src/guestfs-actions.pod:1369 ../src/guestfs-actions.pod:1388
6862 #: ../src/guestfs-actions.pod:1491 ../src/guestfs-actions.pod:1510
6863 #: ../src/guestfs-actions.pod:1756 ../src/guestfs-actions.pod:2198
6864 #: ../src/guestfs-actions.pod:2214 ../src/guestfs-actions.pod:2233
6865 #: ../src/guestfs-actions.pod:2276 ../src/guestfs-actions.pod:2300
6866 #: ../src/guestfs-actions.pod:2371 ../src/guestfs-actions.pod:2420
6867 #: ../src/guestfs-actions.pod:2687 ../src/guestfs-actions.pod:2978
6868 #: ../src/guestfs-actions.pod:3267 ../src/guestfs-actions.pod:3557
6869 #: ../src/guestfs-actions.pod:3619 ../src/guestfs-actions.pod:3724
6870 #: ../src/guestfs-actions.pod:4129 ../src/guestfs-actions.pod:4834
6871 #: ../src/guestfs-actions.pod:5363 ../src/guestfs-actions.pod:5489
6872 #: ../src/guestfs-actions.pod:5603 ../src/guestfs-actions.pod:6331
6873 #: ../src/guestfs-actions.pod:6392 ../src/guestfs-actions.pod:6447
6874 #: ../src/guestfs-actions.pod:6593 ../src/guestfs-actions.pod:6617
6875 #: ../src/guestfs-actions.pod:7099 ../src/guestfs-actions.pod:7119
6876 #: ../src/guestfs-actions.pod:7166 ../src/guestfs-actions.pod:7338
6877 #: ../src/guestfs-actions.pod:7357 ../src/guestfs-actions.pod:7442
6878 #: ../src/guestfs-actions.pod:7461 ../src/guestfs-actions.pod:7507
6879 #: ../src/guestfs-actions.pod:7526
6880 msgid ""
6881 "This function returns a NULL-terminated array of strings (like L<environ(3)"
6882 ">), or NULL if there was an error.  I<The caller must free the strings and "
6883 "the array after use>."
6884 msgstr ""
6885
6886 #. type: textblock
6887 #: ../src/guestfs-actions.pod:467 ../src/guestfs-actions.pod:998
6888 #: ../src/guestfs-actions.pod:1016 ../src/guestfs-actions.pod:1426
6889 #: ../src/guestfs-actions.pod:3345 ../src/guestfs-actions.pod:3376
6890 #: ../src/guestfs-actions.pod:3970 ../src/guestfs-actions.pod:4020
6891 #: ../src/guestfs-actions.pod:4207 ../src/guestfs-actions.pod:4240
6892 #: ../src/guestfs-actions.pod:4403 ../src/guestfs-actions.pod:4838
6893 #: ../src/guestfs-actions.pod:5304 ../src/guestfs-actions.pod:5699
6894 #: ../src/guestfs-actions.pod:5713 ../src/guestfs-actions.pod:5725
6895 #: ../src/guestfs-actions.pod:6172 ../src/guestfs-actions.pod:6831
6896 #: ../src/guestfs-actions.pod:6844 ../src/guestfs-actions.pod:7083
6897 #: ../src/guestfs-actions.pod:7326
6898 msgid "(Added in 0.8)"
6899 msgstr ""
6900
6901 #. type: =head2
6902 #: ../src/guestfs-actions.pod:469
6903 msgid "guestfs_aug_match"
6904 msgstr ""
6905
6906 #. type: verbatim
6907 #: ../src/guestfs-actions.pod:471
6908 #, no-wrap
6909 msgid ""
6910 " char **\n"
6911 " guestfs_aug_match (guestfs_h *g,\n"
6912 "                    const char *augpath);\n"
6913 "\n"
6914 msgstr ""
6915
6916 #. type: textblock
6917 #: ../src/guestfs-actions.pod:475 ../fish/guestfish-actions.pod:311
6918 msgid ""
6919 "Returns a list of paths which match the path expression C<path>.  The "
6920 "returned paths are sufficiently qualified so that they match exactly one "
6921 "node in the current tree."
6922 msgstr ""
6923
6924 #. type: =head2
6925 #: ../src/guestfs-actions.pod:485
6926 msgid "guestfs_aug_mv"
6927 msgstr ""
6928
6929 #. type: verbatim
6930 #: ../src/guestfs-actions.pod:487
6931 #, no-wrap
6932 msgid ""
6933 " int\n"
6934 " guestfs_aug_mv (guestfs_h *g,\n"
6935 "                 const char *src,\n"
6936 "                 const char *dest);\n"
6937 "\n"
6938 msgstr ""
6939
6940 #. type: textblock
6941 #: ../src/guestfs-actions.pod:492 ../fish/guestfish-actions.pod:319
6942 msgid ""
6943 "Move the node C<src> to C<dest>.  C<src> must match exactly one node.  "
6944 "C<dest> is overwritten if it exists."
6945 msgstr ""
6946
6947 #. type: =head2
6948 #: ../src/guestfs-actions.pod:499
6949 msgid "guestfs_aug_rm"
6950 msgstr ""
6951
6952 #. type: verbatim
6953 #: ../src/guestfs-actions.pod:501
6954 #, no-wrap
6955 msgid ""
6956 " int\n"
6957 " guestfs_aug_rm (guestfs_h *g,\n"
6958 "                 const char *augpath);\n"
6959 "\n"
6960 msgstr ""
6961
6962 #. type: textblock
6963 #: ../src/guestfs-actions.pod:505 ../fish/guestfish-actions.pod:326
6964 msgid "Remove C<path> and all of its children."
6965 msgstr ""
6966
6967 #. type: textblock
6968 #: ../src/guestfs-actions.pod:507 ../fish/guestfish-actions.pod:328
6969 msgid "On success this returns the number of entries which were removed."
6970 msgstr ""
6971
6972 #. type: =head2
6973 #: ../src/guestfs-actions.pod:513
6974 msgid "guestfs_aug_save"
6975 msgstr ""
6976
6977 #. type: verbatim
6978 #: ../src/guestfs-actions.pod:515
6979 #, no-wrap
6980 msgid ""
6981 " int\n"
6982 " guestfs_aug_save (guestfs_h *g);\n"
6983 "\n"
6984 msgstr ""
6985
6986 #. type: textblock
6987 #: ../src/guestfs-actions.pod:518 ../fish/guestfish-actions.pod:334
6988 msgid "This writes all pending changes to disk."
6989 msgstr ""
6990
6991 #. type: textblock
6992 #: ../src/guestfs-actions.pod:520
6993 msgid ""
6994 "The flags which were passed to C<guestfs_aug_init> affect exactly how files "
6995 "are saved."
6996 msgstr ""
6997
6998 #. type: =head2
6999 #: ../src/guestfs-actions.pod:527
7000 msgid "guestfs_aug_set"
7001 msgstr ""
7002
7003 #. type: verbatim
7004 #: ../src/guestfs-actions.pod:529
7005 #, no-wrap
7006 msgid ""
7007 " int\n"
7008 " guestfs_aug_set (guestfs_h *g,\n"
7009 "                  const char *augpath,\n"
7010 "                  const char *val);\n"
7011 "\n"
7012 msgstr ""
7013
7014 #. type: textblock
7015 #: ../src/guestfs-actions.pod:534 ../fish/guestfish-actions.pod:343
7016 msgid "Set the value associated with C<path> to C<val>."
7017 msgstr ""
7018
7019 #. type: textblock
7020 #: ../src/guestfs-actions.pod:536
7021 msgid ""
7022 "In the Augeas API, it is possible to clear a node by setting the value to "
7023 "NULL.  Due to an oversight in the libguestfs API you cannot do that with "
7024 "this call.  Instead you must use the C<guestfs_aug_clear> call."
7025 msgstr ""
7026
7027 #. type: =head2
7028 #: ../src/guestfs-actions.pod:545
7029 msgid "guestfs_available"
7030 msgstr ""
7031
7032 #. type: verbatim
7033 #: ../src/guestfs-actions.pod:547
7034 #, no-wrap
7035 msgid ""
7036 " int\n"
7037 " guestfs_available (guestfs_h *g,\n"
7038 "                    char *const *groups);\n"
7039 "\n"
7040 msgstr ""
7041
7042 #. type: textblock
7043 #: ../src/guestfs-actions.pod:551 ../fish/guestfish-actions.pod:354
7044 msgid ""
7045 "This command is used to check the availability of some groups of "
7046 "functionality in the appliance, which not all builds of the libguestfs "
7047 "appliance will be able to provide."
7048 msgstr ""
7049
7050 #. type: textblock
7051 #: ../src/guestfs-actions.pod:555
7052 msgid ""
7053 "The libguestfs groups, and the functions that those groups correspond to, "
7054 "are listed in L<guestfs(3)/AVAILABILITY>.  You can also fetch this list at "
7055 "runtime by calling C<guestfs_available_all_groups>."
7056 msgstr ""
7057
7058 #. type: textblock
7059 #: ../src/guestfs-actions.pod:560 ../fish/guestfish-actions.pod:363
7060 msgid ""
7061 "The argument C<groups> is a list of group names, eg: C<[\"inotify\", \"augeas"
7062 "\"]> would check for the availability of the Linux inotify functions and "
7063 "Augeas (configuration file editing) functions."
7064 msgstr ""
7065
7066 #. type: textblock
7067 #: ../src/guestfs-actions.pod:565 ../fish/guestfish-actions.pod:368
7068 msgid "The command returns no error if I<all> requested groups are available."
7069 msgstr ""
7070
7071 #. type: textblock
7072 #: ../src/guestfs-actions.pod:567 ../fish/guestfish-actions.pod:370
7073 msgid ""
7074 "It fails with an error if one or more of the requested groups is unavailable "
7075 "in the appliance."
7076 msgstr ""
7077
7078 #. type: textblock
7079 #: ../src/guestfs-actions.pod:570 ../fish/guestfish-actions.pod:373
7080 msgid ""
7081 "If an unknown group name is included in the list of groups then an error is "
7082 "always returned."
7083 msgstr ""
7084
7085 #. type: textblock
7086 #: ../src/guestfs-actions.pod:573 ../fish/guestfish-actions.pod:376
7087 msgid "I<Notes:>"
7088 msgstr "I<Нотатки:>"
7089
7090 #. type: textblock
7091 #: ../src/guestfs-actions.pod:579
7092 msgid "You must call C<guestfs_launch> before calling this function."
7093 msgstr ""
7094
7095 #. type: textblock
7096 #: ../src/guestfs-actions.pod:581 ../fish/guestfish-actions.pod:384
7097 msgid ""
7098 "The reason is because we don't know what groups are supported by the "
7099 "appliance/daemon until it is running and can be queried."
7100 msgstr ""
7101
7102 #. type: textblock
7103 #: ../src/guestfs-actions.pod:587 ../fish/guestfish-actions.pod:390
7104 msgid ""
7105 "If a group of functions is available, this does not necessarily mean that "
7106 "they will work.  You still have to check for errors when calling individual "
7107 "API functions even if they are available."
7108 msgstr ""
7109
7110 #. type: textblock
7111 #: ../src/guestfs-actions.pod:594 ../fish/guestfish-actions.pod:397
7112 msgid ""
7113 "It is usually the job of distro packagers to build complete functionality "
7114 "into the libguestfs appliance.  Upstream libguestfs, if built from source "
7115 "with all requirements satisfied, will support everything."
7116 msgstr ""
7117
7118 #. type: textblock
7119 #: ../src/guestfs-actions.pod:601
7120 msgid ""
7121 "This call was added in version C<1.0.80>.  In previous versions of "
7122 "libguestfs all you could do would be to speculatively execute a command to "
7123 "find out if the daemon implemented it.  See also C<guestfs_version>."
7124 msgstr ""
7125
7126 #. type: textblock
7127 #: ../src/guestfs-actions.pod:610 ../src/guestfs-actions.pod:1171
7128 msgid "(Added in 1.0.80)"
7129 msgstr ""
7130
7131 #. type: =head2
7132 #: ../src/guestfs-actions.pod:612
7133 msgid "guestfs_available_all_groups"
7134 msgstr ""
7135
7136 #. type: verbatim
7137 #: ../src/guestfs-actions.pod:614
7138 #, no-wrap
7139 msgid ""
7140 " char **\n"
7141 " guestfs_available_all_groups (guestfs_h *g);\n"
7142 "\n"
7143 msgstr ""
7144
7145 #. type: textblock
7146 #: ../src/guestfs-actions.pod:617
7147 msgid ""
7148 "This command returns a list of all optional groups that this daemon knows "
7149 "about.  Note this returns both supported and unsupported groups.  To find "
7150 "out which ones the daemon can actually support you have to call "
7151 "C<guestfs_available> on each member of the returned list."
7152 msgstr ""
7153
7154 #. type: textblock
7155 #: ../src/guestfs-actions.pod:623
7156 msgid "See also C<guestfs_available> and L<guestfs(3)/AVAILABILITY>."
7157 msgstr ""
7158
7159 #. type: textblock
7160 #: ../src/guestfs-actions.pod:629
7161 msgid "(Added in 1.3.15)"
7162 msgstr ""
7163
7164 #. type: =head2
7165 #: ../src/guestfs-actions.pod:631
7166 msgid "guestfs_base64_in"
7167 msgstr ""
7168
7169 #. type: verbatim
7170 #: ../src/guestfs-actions.pod:633
7171 #, no-wrap
7172 msgid ""
7173 " int\n"
7174 " guestfs_base64_in (guestfs_h *g,\n"
7175 "                    const char *base64file,\n"
7176 "                    const char *filename);\n"
7177 "\n"
7178 msgstr ""
7179
7180 #. type: textblock
7181 #: ../src/guestfs-actions.pod:638 ../fish/guestfish-actions.pod:427
7182 msgid ""
7183 "This command uploads base64-encoded data from C<base64file> to C<filename>."
7184 msgstr ""
7185
7186 #. type: textblock
7187 #: ../src/guestfs-actions.pod:643 ../src/guestfs-actions.pod:657
7188 msgid "(Added in 1.3.5)"
7189 msgstr ""
7190
7191 #. type: =head2
7192 #: ../src/guestfs-actions.pod:645
7193 msgid "guestfs_base64_out"
7194 msgstr ""
7195
7196 #. type: verbatim
7197 #: ../src/guestfs-actions.pod:647
7198 #, no-wrap
7199 msgid ""
7200 " int\n"
7201 " guestfs_base64_out (guestfs_h *g,\n"
7202 "                     const char *filename,\n"
7203 "                     const char *base64file);\n"
7204 "\n"
7205 msgstr ""
7206
7207 #. type: textblock
7208 #: ../src/guestfs-actions.pod:652 ../fish/guestfish-actions.pod:436
7209 msgid ""
7210 "This command downloads the contents of C<filename>, writing it out to local "
7211 "file C<base64file> encoded as base64."
7212 msgstr ""
7213
7214 #. type: =head2
7215 #: ../src/guestfs-actions.pod:659
7216 msgid "guestfs_blockdev_flushbufs"
7217 msgstr ""
7218
7219 #. type: verbatim
7220 #: ../src/guestfs-actions.pod:661
7221 #, no-wrap
7222 msgid ""
7223 " int\n"
7224 " guestfs_blockdev_flushbufs (guestfs_h *g,\n"
7225 "                             const char *device);\n"
7226 "\n"
7227 msgstr ""
7228
7229 #. type: textblock
7230 #: ../src/guestfs-actions.pod:665 ../fish/guestfish-actions.pod:445
7231 msgid ""
7232 "This tells the kernel to flush internal buffers associated with C<device>."
7233 msgstr ""
7234
7235 #. type: textblock
7236 #: ../src/guestfs-actions.pod:668 ../src/guestfs-actions.pod:685
7237 #: ../src/guestfs-actions.pod:700 ../src/guestfs-actions.pod:716
7238 #: ../src/guestfs-actions.pod:734 ../src/guestfs-actions.pod:753
7239 #: ../src/guestfs-actions.pod:767 ../src/guestfs-actions.pod:785
7240 #: ../src/guestfs-actions.pod:799 ../src/guestfs-actions.pod:813
7241 #: ../fish/guestfish-actions.pod:448 ../fish/guestfish-actions.pod:459
7242 #: ../fish/guestfish-actions.pod:468 ../fish/guestfish-actions.pod:478
7243 #: ../fish/guestfish-actions.pod:490 ../fish/guestfish-actions.pod:503
7244 #: ../fish/guestfish-actions.pod:511 ../fish/guestfish-actions.pod:522
7245 #: ../fish/guestfish-actions.pod:530 ../fish/guestfish-actions.pod:538
7246 msgid "This uses the L<blockdev(8)> command."
7247 msgstr ""
7248
7249 #. type: textblock
7250 #: ../src/guestfs-actions.pod:672 ../src/guestfs-actions.pod:689
7251 #: ../src/guestfs-actions.pod:704 ../src/guestfs-actions.pod:720
7252 #: ../src/guestfs-actions.pod:738 ../src/guestfs-actions.pod:757
7253 #: ../src/guestfs-actions.pod:771 ../src/guestfs-actions.pod:789
7254 #: ../src/guestfs-actions.pod:803 ../src/guestfs-actions.pod:817
7255 msgid "(Added in 0.9.3)"
7256 msgstr ""
7257
7258 #. type: =head2
7259 #: ../src/guestfs-actions.pod:674
7260 msgid "guestfs_blockdev_getbsz"
7261 msgstr ""
7262
7263 #. type: verbatim
7264 #: ../src/guestfs-actions.pod:676
7265 #, no-wrap
7266 msgid ""
7267 " int\n"
7268 " guestfs_blockdev_getbsz (guestfs_h *g,\n"
7269 "                          const char *device);\n"
7270 "\n"
7271 msgstr ""
7272
7273 #. type: textblock
7274 #: ../src/guestfs-actions.pod:680 ../fish/guestfish-actions.pod:454
7275 msgid "This returns the block size of a device."
7276 msgstr ""
7277
7278 #. type: textblock
7279 #: ../src/guestfs-actions.pod:682 ../src/guestfs-actions.pod:782
7280 #: ../fish/guestfish-actions.pod:456 ../fish/guestfish-actions.pod:519
7281 msgid ""
7282 "(Note this is different from both I<size in blocks> and I<filesystem block "
7283 "size>)."
7284 msgstr ""
7285
7286 #. type: =head2
7287 #: ../src/guestfs-actions.pod:691
7288 msgid "guestfs_blockdev_getro"
7289 msgstr ""
7290
7291 #. type: verbatim
7292 #: ../src/guestfs-actions.pod:693
7293 #, no-wrap
7294 msgid ""
7295 " int\n"
7296 " guestfs_blockdev_getro (guestfs_h *g,\n"
7297 "                         const char *device);\n"
7298 "\n"
7299 msgstr ""
7300
7301 #. type: textblock
7302 #: ../src/guestfs-actions.pod:697 ../fish/guestfish-actions.pod:465
7303 msgid ""
7304 "Returns a boolean indicating if the block device is read-only (true if read-"
7305 "only, false if not)."
7306 msgstr ""
7307
7308 #. type: textblock
7309 #: ../src/guestfs-actions.pod:702 ../src/guestfs-actions.pod:1409
7310 #: ../src/guestfs-actions.pod:1424 ../src/guestfs-actions.pod:1911
7311 #: ../src/guestfs-actions.pod:1922 ../src/guestfs-actions.pod:1994
7312 #: ../src/guestfs-actions.pod:2049 ../src/guestfs-actions.pod:2064
7313 #: ../src/guestfs-actions.pod:2089 ../src/guestfs-actions.pod:2112
7314 #: ../src/guestfs-actions.pod:3085 ../src/guestfs-actions.pod:3102
7315 #: ../src/guestfs-actions.pod:3121 ../src/guestfs-actions.pod:3284
7316 #: ../src/guestfs-actions.pod:3298 ../src/guestfs-actions.pod:3313
7317 #: ../src/guestfs-actions.pod:3327 ../src/guestfs-actions.pod:3343
7318 #: ../src/guestfs-actions.pod:3358 ../src/guestfs-actions.pod:3374
7319 #: ../src/guestfs-actions.pod:3388 ../src/guestfs-actions.pod:3401
7320 #: ../src/guestfs-actions.pod:3415 ../src/guestfs-actions.pod:3430
7321 #: ../src/guestfs-actions.pod:3445 ../src/guestfs-actions.pod:4992
7322 msgid "This function returns a C truth value on success or -1 on error."
7323 msgstr ""
7324
7325 #. type: =head2
7326 #: ../src/guestfs-actions.pod:706
7327 msgid "guestfs_blockdev_getsize64"
7328 msgstr ""
7329
7330 #. type: verbatim
7331 #: ../src/guestfs-actions.pod:708
7332 #, no-wrap
7333 msgid ""
7334 " int64_t\n"
7335 " guestfs_blockdev_getsize64 (guestfs_h *g,\n"
7336 "                             const char *device);\n"
7337 "\n"
7338 msgstr ""
7339
7340 #. type: textblock
7341 #: ../src/guestfs-actions.pod:712 ../fish/guestfish-actions.pod:474
7342 msgid "This returns the size of the device in bytes."
7343 msgstr ""
7344
7345 #. type: textblock
7346 #: ../src/guestfs-actions.pod:714
7347 msgid "See also C<guestfs_blockdev_getsz>."
7348 msgstr ""
7349
7350 #. type: =head2
7351 #: ../src/guestfs-actions.pod:722
7352 msgid "guestfs_blockdev_getss"
7353 msgstr ""
7354
7355 #. type: verbatim
7356 #: ../src/guestfs-actions.pod:724
7357 #, no-wrap
7358 msgid ""
7359 " int\n"
7360 " guestfs_blockdev_getss (guestfs_h *g,\n"
7361 "                         const char *device);\n"
7362 "\n"
7363 msgstr ""
7364
7365 #. type: textblock
7366 #: ../src/guestfs-actions.pod:728 ../fish/guestfish-actions.pod:484
7367 msgid ""
7368 "This returns the size of sectors on a block device.  Usually 512, but can be "
7369 "larger for modern devices."
7370 msgstr ""
7371
7372 #. type: textblock
7373 #: ../src/guestfs-actions.pod:731
7374 msgid ""
7375 "(Note, this is not the size in sectors, use C<guestfs_blockdev_getsz> for "
7376 "that)."
7377 msgstr ""
7378
7379 #. type: =head2
7380 #: ../src/guestfs-actions.pod:740
7381 msgid "guestfs_blockdev_getsz"
7382 msgstr ""
7383
7384 #. type: verbatim
7385 #: ../src/guestfs-actions.pod:742
7386 #, no-wrap
7387 msgid ""
7388 " int64_t\n"
7389 " guestfs_blockdev_getsz (guestfs_h *g,\n"
7390 "                         const char *device);\n"
7391 "\n"
7392 msgstr ""
7393
7394 #. type: textblock
7395 #: ../src/guestfs-actions.pod:746 ../fish/guestfish-actions.pod:496
7396 msgid ""
7397 "This returns the size of the device in units of 512-byte sectors (even if "
7398 "the sectorsize isn't 512 bytes ... weird)."
7399 msgstr ""
7400
7401 #. type: textblock
7402 #: ../src/guestfs-actions.pod:749
7403 msgid ""
7404 "See also C<guestfs_blockdev_getss> for the real sector size of the device, "
7405 "and C<guestfs_blockdev_getsize64> for the more useful I<size in bytes>."
7406 msgstr ""
7407
7408 #. type: =head2
7409 #: ../src/guestfs-actions.pod:759
7410 msgid "guestfs_blockdev_rereadpt"
7411 msgstr ""
7412
7413 #. type: verbatim
7414 #: ../src/guestfs-actions.pod:761
7415 #, no-wrap
7416 msgid ""
7417 " int\n"
7418 " guestfs_blockdev_rereadpt (guestfs_h *g,\n"
7419 "                            const char *device);\n"
7420 "\n"
7421 msgstr ""
7422
7423 #. type: textblock
7424 #: ../src/guestfs-actions.pod:765 ../fish/guestfish-actions.pod:509
7425 msgid "Reread the partition table on C<device>."
7426 msgstr ""
7427
7428 #. type: =head2
7429 #: ../src/guestfs-actions.pod:773
7430 msgid "guestfs_blockdev_setbsz"
7431 msgstr ""
7432
7433 #. type: verbatim
7434 #: ../src/guestfs-actions.pod:775
7435 #, no-wrap
7436 msgid ""
7437 " int\n"
7438 " guestfs_blockdev_setbsz (guestfs_h *g,\n"
7439 "                          const char *device,\n"
7440 "                          int blocksize);\n"
7441 "\n"
7442 msgstr ""
7443
7444 #. type: textblock
7445 #: ../src/guestfs-actions.pod:780 ../fish/guestfish-actions.pod:517
7446 msgid "This sets the block size of a device."
7447 msgstr ""
7448
7449 #. type: =head2
7450 #: ../src/guestfs-actions.pod:791
7451 msgid "guestfs_blockdev_setro"
7452 msgstr ""
7453
7454 #. type: verbatim
7455 #: ../src/guestfs-actions.pod:793
7456 #, no-wrap
7457 msgid ""
7458 " int\n"
7459 " guestfs_blockdev_setro (guestfs_h *g,\n"
7460 "                         const char *device);\n"
7461 "\n"
7462 msgstr ""
7463
7464 #. type: textblock
7465 #: ../src/guestfs-actions.pod:797 ../fish/guestfish-actions.pod:528
7466 msgid "Sets the block device named C<device> to read-only."
7467 msgstr ""
7468
7469 #. type: =head2
7470 #: ../src/guestfs-actions.pod:805
7471 msgid "guestfs_blockdev_setrw"
7472 msgstr ""
7473
7474 #. type: verbatim
7475 #: ../src/guestfs-actions.pod:807
7476 #, no-wrap
7477 msgid ""
7478 " int\n"
7479 " guestfs_blockdev_setrw (guestfs_h *g,\n"
7480 "                         const char *device);\n"
7481 "\n"
7482 msgstr ""
7483
7484 #. type: textblock
7485 #: ../src/guestfs-actions.pod:811 ../fish/guestfish-actions.pod:536
7486 msgid "Sets the block device named C<device> to read-write."
7487 msgstr ""
7488
7489 #. type: =head2
7490 #: ../src/guestfs-actions.pod:819
7491 msgid "guestfs_case_sensitive_path"
7492 msgstr ""
7493
7494 #. type: verbatim
7495 #: ../src/guestfs-actions.pod:821
7496 #, no-wrap
7497 msgid ""
7498 " char *\n"
7499 " guestfs_case_sensitive_path (guestfs_h *g,\n"
7500 "                              const char *path);\n"
7501 "\n"
7502 msgstr ""
7503
7504 #. type: textblock
7505 #: ../src/guestfs-actions.pod:825 ../fish/guestfish-actions.pod:544
7506 msgid ""
7507 "This can be used to resolve case insensitive paths on a filesystem which is "
7508 "case sensitive.  The use case is to resolve paths which you have read from "
7509 "Windows configuration files or the Windows Registry, to the true path."
7510 msgstr ""
7511
7512 #. type: textblock
7513 #: ../src/guestfs-actions.pod:830 ../fish/guestfish-actions.pod:549
7514 msgid ""
7515 "The command handles a peculiarity of the Linux ntfs-3g filesystem driver "
7516 "(and probably others), which is that although the underlying filesystem is "
7517 "case-insensitive, the driver exports the filesystem to Linux as case-"
7518 "sensitive."
7519 msgstr ""
7520
7521 #. type: textblock
7522 #: ../src/guestfs-actions.pod:835 ../fish/guestfish-actions.pod:554
7523 msgid ""
7524 "One consequence of this is that special directories such as C<c:\\windows> "
7525 "may appear as C</WINDOWS> or C</windows> (or other things) depending on the "
7526 "precise details of how they were created.  In Windows itself this would not "
7527 "be a problem."
7528 msgstr ""
7529
7530 #. type: textblock
7531 #: ../src/guestfs-actions.pod:841 ../fish/guestfish-actions.pod:560
7532 msgid ""
7533 "Bug or feature? You decide: L<http://www.tuxera.com/community/ntfs-3g-faq/"
7534 "#posixfilenames1>"
7535 msgstr ""
7536
7537 #. type: textblock
7538 #: ../src/guestfs-actions.pod:844 ../fish/guestfish-actions.pod:563
7539 msgid ""
7540 "This function resolves the true case of each element in the path and returns "
7541 "the case-sensitive path."
7542 msgstr ""
7543
7544 #. type: textblock
7545 #: ../src/guestfs-actions.pod:847
7546 msgid ""
7547 "Thus C<guestfs_case_sensitive_path> (\"/Windows/System32\")  might return C<"
7548 "\"/WINDOWS/system32\"> (the exact return value would depend on details of "
7549 "how the directories were originally created under Windows)."
7550 msgstr ""
7551
7552 #. type: textblock
7553 #: ../src/guestfs-actions.pod:852 ../fish/guestfish-actions.pod:571
7554 msgid "I<Note>: This function does not handle drive names, backslashes etc."
7555 msgstr ""
7556
7557 #. type: textblock
7558 #: ../src/guestfs-actions.pod:855
7559 msgid "See also C<guestfs_realpath>."
7560 msgstr ""
7561
7562 #. type: textblock
7563 #: ../src/guestfs-actions.pod:860 ../src/guestfs-actions.pod:7011
7564 msgid "(Added in 1.0.75)"
7565 msgstr ""
7566
7567 #. type: =head2
7568 #: ../src/guestfs-actions.pod:862
7569 msgid "guestfs_cat"
7570 msgstr ""
7571
7572 #. type: verbatim
7573 #: ../src/guestfs-actions.pod:864
7574 #, no-wrap
7575 msgid ""
7576 " char *\n"
7577 " guestfs_cat (guestfs_h *g,\n"
7578 "              const char *path);\n"
7579 "\n"
7580 msgstr ""
7581
7582 #. type: textblock
7583 #: ../src/guestfs-actions.pod:868 ../src/guestfs-actions.pod:5479
7584 #: ../fish/guestfish-actions.pod:580 ../fish/guestfish-actions.pod:3680
7585 msgid "Return the contents of the file named C<path>."
7586 msgstr ""
7587
7588 #. type: textblock
7589 #: ../src/guestfs-actions.pod:870
7590 msgid ""
7591 "Note that this function cannot correctly handle binary files (specifically, "
7592 "files containing C<\\0> character which is treated as end of string).  For "
7593 "those you need to use the C<guestfs_read_file> or C<guestfs_download> "
7594 "functions which have a more complex interface."
7595 msgstr ""
7596
7597 #. type: textblock
7598 #: ../src/guestfs-actions.pod:878 ../src/guestfs-actions.pod:1057
7599 #: ../src/guestfs-actions.pod:1077 ../src/guestfs-actions.pod:1373
7600 #: ../src/guestfs-actions.pod:1392 ../src/guestfs-actions.pod:1495
7601 #: ../src/guestfs-actions.pod:1514 ../src/guestfs-actions.pod:1760
7602 #: ../src/guestfs-actions.pod:2218 ../src/guestfs-actions.pod:2237
7603 #: ../src/guestfs-actions.pod:2280 ../src/guestfs-actions.pod:2304
7604 #: ../src/guestfs-actions.pod:2321 ../src/guestfs-actions.pod:2350
7605 #: ../src/guestfs-actions.pod:5261 ../src/guestfs-actions.pod:5287
7606 #: ../src/guestfs-actions.pod:5418 ../src/guestfs-actions.pod:5444
7607 #: ../src/guestfs-actions.pod:5468 ../src/guestfs-actions.pod:6396
7608 #: ../src/guestfs-actions.pod:6451 ../src/guestfs-actions.pod:6597
7609 #: ../src/guestfs-actions.pod:6621 ../src/guestfs-actions.pod:7290
7610 #: ../src/guestfs-actions.pod:7316 ../src/guestfs-actions.pod:7342
7611 #: ../src/guestfs-actions.pod:7361 ../src/guestfs-actions.pod:7446
7612 #: ../src/guestfs-actions.pod:7465 ../src/guestfs-actions.pod:7511
7613 #: ../src/guestfs-actions.pod:7530 ../fish/guestfish-actions.pod:587
7614 #: ../fish/guestfish-actions.pod:722 ../fish/guestfish-actions.pod:734
7615 #: ../fish/guestfish-actions.pod:910 ../fish/guestfish-actions.pod:920
7616 #: ../fish/guestfish-actions.pod:987 ../fish/guestfish-actions.pod:997
7617 #: ../fish/guestfish-actions.pod:1189 ../fish/guestfish-actions.pod:1490
7618 #: ../fish/guestfish-actions.pod:1500 ../fish/guestfish-actions.pod:1528
7619 #: ../fish/guestfish-actions.pod:1543 ../fish/guestfish-actions.pod:1553
7620 #: ../fish/guestfish-actions.pod:1572 ../fish/guestfish-actions.pod:3550
7621 #: ../fish/guestfish-actions.pod:3565 ../fish/guestfish-actions.pod:3641
7622 #: ../fish/guestfish-actions.pod:3658 ../fish/guestfish-actions.pod:3673
7623 #: ../fish/guestfish-actions.pod:4327 ../fish/guestfish-actions.pod:4373
7624 #: ../fish/guestfish-actions.pod:4458 ../fish/guestfish-actions.pod:4473
7625 #: ../fish/guestfish-actions.pod:4883 ../fish/guestfish-actions.pod:4901
7626 #: ../fish/guestfish-actions.pod:4918 ../fish/guestfish-actions.pod:4928
7627 #: ../fish/guestfish-actions.pod:4976 ../fish/guestfish-actions.pod:4986
7628 #: ../fish/guestfish-actions.pod:5015 ../fish/guestfish-actions.pod:5025
7629 msgid ""
7630 "Because of the message protocol, there is a transfer limit of somewhere "
7631 "between 2MB and 4MB.  See L<guestfs(3)/PROTOCOL LIMITS>."
7632 msgstr ""
7633
7634 #. type: textblock
7635 #: ../src/guestfs-actions.pod:881 ../src/guestfs-actions.pod:3561
7636 #: ../src/guestfs-actions.pod:3623 ../src/guestfs-actions.pod:3640
7637 #: ../src/guestfs-actions.pod:3728 ../src/guestfs-actions.pod:4133
7638 #: ../src/guestfs-actions.pod:4147 ../src/guestfs-actions.pod:5367
7639 #: ../src/guestfs-actions.pod:5381 ../src/guestfs-actions.pod:7170
7640 #: ../src/guestfs-actions.pod:7184
7641 msgid "(Added in 0.4)"
7642 msgstr ""
7643
7644 #. type: =head2
7645 #: ../src/guestfs-actions.pod:883
7646 msgid "guestfs_checksum"
7647 msgstr ""
7648
7649 #. type: verbatim
7650 #: ../src/guestfs-actions.pod:885
7651 #, no-wrap
7652 msgid ""
7653 " char *\n"
7654 " guestfs_checksum (guestfs_h *g,\n"
7655 "                   const char *csumtype,\n"
7656 "                   const char *path);\n"
7657 "\n"
7658 msgstr ""
7659
7660 #. type: textblock
7661 #: ../src/guestfs-actions.pod:890 ../fish/guestfish-actions.pod:594
7662 msgid ""
7663 "This call computes the MD5, SHAx or CRC checksum of the file named C<path>."
7664 msgstr ""
7665
7666 #. type: textblock
7667 #: ../src/guestfs-actions.pod:893 ../fish/guestfish-actions.pod:597
7668 msgid ""
7669 "The type of checksum to compute is given by the C<csumtype> parameter which "
7670 "must have one of the following values:"
7671 msgstr ""
7672
7673 #. type: =item
7674 #: ../src/guestfs-actions.pod:898 ../fish/guestfish-actions.pod:602
7675 msgid "C<crc>"
7676 msgstr "C<crc>"
7677
7678 #. type: textblock
7679 #: ../src/guestfs-actions.pod:900 ../fish/guestfish-actions.pod:604
7680 msgid ""
7681 "Compute the cyclic redundancy check (CRC) specified by POSIX for the "
7682 "C<cksum> command."
7683 msgstr ""
7684
7685 #. type: =item
7686 #: ../src/guestfs-actions.pod:903 ../fish/guestfish-actions.pod:607
7687 msgid "C<md5>"
7688 msgstr "C<md5>"
7689
7690 #. type: textblock
7691 #: ../src/guestfs-actions.pod:905 ../fish/guestfish-actions.pod:609
7692 msgid "Compute the MD5 hash (using the C<md5sum> program)."
7693 msgstr ""
7694
7695 #. type: =item
7696 #: ../src/guestfs-actions.pod:907 ../fish/guestfish-actions.pod:611
7697 msgid "C<sha1>"
7698 msgstr "C<sha1>"
7699
7700 #. type: textblock
7701 #: ../src/guestfs-actions.pod:909 ../fish/guestfish-actions.pod:613
7702 msgid "Compute the SHA1 hash (using the C<sha1sum> program)."
7703 msgstr ""
7704
7705 #. type: =item
7706 #: ../src/guestfs-actions.pod:911 ../fish/guestfish-actions.pod:615
7707 msgid "C<sha224>"
7708 msgstr "C<sha224>"
7709
7710 #. type: textblock
7711 #: ../src/guestfs-actions.pod:913 ../fish/guestfish-actions.pod:617
7712 msgid "Compute the SHA224 hash (using the C<sha224sum> program)."
7713 msgstr ""
7714
7715 #. type: =item
7716 #: ../src/guestfs-actions.pod:915 ../fish/guestfish-actions.pod:619
7717 msgid "C<sha256>"
7718 msgstr "C<sha256>"
7719
7720 #. type: textblock
7721 #: ../src/guestfs-actions.pod:917 ../fish/guestfish-actions.pod:621
7722 msgid "Compute the SHA256 hash (using the C<sha256sum> program)."
7723 msgstr ""
7724
7725 #. type: =item
7726 #: ../src/guestfs-actions.pod:919 ../fish/guestfish-actions.pod:623
7727 msgid "C<sha384>"
7728 msgstr "C<sha384>"
7729
7730 #. type: textblock
7731 #: ../src/guestfs-actions.pod:921 ../fish/guestfish-actions.pod:625
7732 msgid "Compute the SHA384 hash (using the C<sha384sum> program)."
7733 msgstr ""
7734
7735 #. type: =item
7736 #: ../src/guestfs-actions.pod:923 ../fish/guestfish-actions.pod:627
7737 msgid "C<sha512>"
7738 msgstr "C<sha512>"
7739
7740 #. type: textblock
7741 #: ../src/guestfs-actions.pod:925 ../fish/guestfish-actions.pod:629
7742 msgid "Compute the SHA512 hash (using the C<sha512sum> program)."
7743 msgstr ""
7744
7745 #. type: textblock
7746 #: ../src/guestfs-actions.pod:929 ../fish/guestfish-actions.pod:633
7747 msgid "The checksum is returned as a printable string."
7748 msgstr ""
7749
7750 #. type: textblock
7751 #: ../src/guestfs-actions.pod:931
7752 msgid "To get the checksum for a device, use C<guestfs_checksum_device>."
7753 msgstr ""
7754
7755 #. type: textblock
7756 #: ../src/guestfs-actions.pod:933
7757 msgid "To get the checksums for many files, use C<guestfs_checksums_out>."
7758 msgstr ""
7759
7760 #. type: textblock
7761 #: ../src/guestfs-actions.pod:938 ../src/guestfs-actions.pod:1246
7762 #: ../src/guestfs-actions.pod:2080 ../src/guestfs-actions.pod:3300
7763 #: ../src/guestfs-actions.pod:3329 ../src/guestfs-actions.pod:3390
7764 #: ../src/guestfs-actions.pod:3417 ../src/guestfs-actions.pod:6867
7765 msgid "(Added in 1.0.2)"
7766 msgstr ""
7767
7768 #. type: =head2
7769 #: ../src/guestfs-actions.pod:940
7770 msgid "guestfs_checksum_device"
7771 msgstr ""
7772
7773 #. type: verbatim
7774 #: ../src/guestfs-actions.pod:942
7775 #, no-wrap
7776 msgid ""
7777 " char *\n"
7778 " guestfs_checksum_device (guestfs_h *g,\n"
7779 "                          const char *csumtype,\n"
7780 "                          const char *device);\n"
7781 "\n"
7782 msgstr ""
7783
7784 #. type: textblock
7785 #: ../src/guestfs-actions.pod:947
7786 msgid ""
7787 "This call computes the MD5, SHAx or CRC checksum of the contents of the "
7788 "device named C<device>.  For the types of checksums supported see the "
7789 "C<guestfs_checksum> command."
7790 msgstr ""
7791
7792 #. type: textblock
7793 #: ../src/guestfs-actions.pod:954 ../src/guestfs-actions.pod:4898
7794 #: ../src/guestfs-actions.pod:4957 ../src/guestfs-actions.pod:4994
7795 #: ../src/guestfs-actions.pod:5012 ../src/guestfs-actions.pod:5188
7796 #: ../src/guestfs-actions.pod:6776 ../src/guestfs-actions.pod:6790
7797 #: ../src/guestfs-actions.pod:7196
7798 msgid "(Added in 1.3.2)"
7799 msgstr ""
7800
7801 #. type: =head2
7802 #: ../src/guestfs-actions.pod:956
7803 msgid "guestfs_checksums_out"
7804 msgstr ""
7805
7806 #. type: verbatim
7807 #: ../src/guestfs-actions.pod:958
7808 #, no-wrap
7809 msgid ""
7810 " int\n"
7811 " guestfs_checksums_out (guestfs_h *g,\n"
7812 "                        const char *csumtype,\n"
7813 "                        const char *directory,\n"
7814 "                        const char *sumsfile);\n"
7815 "\n"
7816 msgstr ""
7817
7818 #. type: textblock
7819 #: ../src/guestfs-actions.pod:964 ../fish/guestfish-actions.pod:651
7820 msgid ""
7821 "This command computes the checksums of all regular files in C<directory> and "
7822 "then emits a list of those checksums to the local output file C<sumsfile>."
7823 msgstr ""
7824
7825 #. type: textblock
7826 #: ../src/guestfs-actions.pod:968 ../fish/guestfish-actions.pod:655
7827 msgid ""
7828 "This can be used for verifying the integrity of a virtual machine.  However "
7829 "to be properly secure you should pay attention to the output of the checksum "
7830 "command (it uses the ones from GNU coreutils).  In particular when the "
7831 "filename is not printable, coreutils uses a special backslash syntax.  For "
7832 "more information, see the GNU coreutils info file."
7833 msgstr ""
7834
7835 #. type: textblock
7836 #: ../src/guestfs-actions.pod:978
7837 msgid "(Added in 1.3.7)"
7838 msgstr ""
7839
7840 #. type: =head2
7841 #: ../src/guestfs-actions.pod:980
7842 msgid "guestfs_chmod"
7843 msgstr ""
7844
7845 #. type: verbatim
7846 #: ../src/guestfs-actions.pod:982
7847 #, no-wrap
7848 msgid ""
7849 " int\n"
7850 " guestfs_chmod (guestfs_h *g,\n"
7851 "                int mode,\n"
7852 "                const char *path);\n"
7853 "\n"
7854 msgstr ""
7855
7856 #. type: textblock
7857 #: ../src/guestfs-actions.pod:987 ../fish/guestfish-actions.pod:669
7858 msgid ""
7859 "Change the mode (permissions) of C<path> to C<mode>.  Only numeric modes are "
7860 "supported."
7861 msgstr ""
7862
7863 #. type: textblock
7864 #: ../src/guestfs-actions.pod:990 ../fish/guestfish-actions.pod:672
7865 msgid ""
7866 "I<Note>: When using this command from guestfish, C<mode> by default would be "
7867 "decimal, unless you prefix it with C<0> to get octal, ie. use C<0700> not "
7868 "C<700>."
7869 msgstr ""
7870
7871 #. type: textblock
7872 #: ../src/guestfs-actions.pod:994 ../src/guestfs-actions.pod:4384
7873 #: ../src/guestfs-actions.pod:4581 ../src/guestfs-actions.pod:4600
7874 #: ../src/guestfs-actions.pod:4619 ../fish/guestfish-actions.pod:676
7875 #: ../fish/guestfish-actions.pod:2980 ../fish/guestfish-actions.pod:3109
7876 #: ../fish/guestfish-actions.pod:3119 ../fish/guestfish-actions.pod:3129
7877 msgid "The mode actually set is affected by the umask."
7878 msgstr ""
7879
7880 #. type: =head2
7881 #: ../src/guestfs-actions.pod:1000
7882 msgid "guestfs_chown"
7883 msgstr ""
7884
7885 #. type: verbatim
7886 #: ../src/guestfs-actions.pod:1002
7887 #, no-wrap
7888 msgid ""
7889 " int\n"
7890 " guestfs_chown (guestfs_h *g,\n"
7891 "                int owner,\n"
7892 "                int group,\n"
7893 "                const char *path);\n"
7894 "\n"
7895 msgstr ""
7896
7897 #. type: textblock
7898 #: ../src/guestfs-actions.pod:1008 ../fish/guestfish-actions.pod:682
7899 msgid "Change the file owner to C<owner> and group to C<group>."
7900 msgstr ""
7901
7902 #. type: textblock
7903 #: ../src/guestfs-actions.pod:1010 ../src/guestfs-actions.pod:3492
7904 #: ../fish/guestfish-actions.pod:684 ../fish/guestfish-actions.pod:2438
7905 msgid ""
7906 "Only numeric uid and gid are supported.  If you want to use names, you will "
7907 "need to locate and parse the password file yourself (Augeas support makes "
7908 "this relatively easy)."
7909 msgstr ""
7910
7911 #. type: =head2
7912 #: ../src/guestfs-actions.pod:1018
7913 msgid "guestfs_command"
7914 msgstr ""
7915
7916 #. type: verbatim
7917 #: ../src/guestfs-actions.pod:1020
7918 #, no-wrap
7919 msgid ""
7920 " char *\n"
7921 " guestfs_command (guestfs_h *g,\n"
7922 "                  char *const *arguments);\n"
7923 "\n"
7924 msgstr ""
7925
7926 #. type: textblock
7927 #: ../src/guestfs-actions.pod:1024 ../fish/guestfish-actions.pod:692
7928 msgid ""
7929 "This call runs a command from the guest filesystem.  The filesystem must be "
7930 "mounted, and must contain a compatible operating system (ie. something "
7931 "Linux, with the same or compatible processor architecture)."
7932 msgstr ""
7933
7934 #. type: textblock
7935 #: ../src/guestfs-actions.pod:1029
7936 msgid ""
7937 "The single parameter is an argv-style list of arguments.  The first element "
7938 "is the name of the program to run.  Subsequent elements are parameters.  The "
7939 "list must be non-empty (ie. must contain a program name).  Note that the "
7940 "command runs directly, and is I<not> invoked via the shell (see "
7941 "C<guestfs_sh>)."
7942 msgstr ""
7943
7944 #. type: textblock
7945 #: ../src/guestfs-actions.pod:1036 ../fish/guestfish-actions.pod:704
7946 msgid "The return value is anything printed to I<stdout> by the command."
7947 msgstr ""
7948
7949 #. type: textblock
7950 #: ../src/guestfs-actions.pod:1039 ../fish/guestfish-actions.pod:707
7951 msgid ""
7952 "If the command returns a non-zero exit status, then this function returns an "
7953 "error message.  The error message string is the content of I<stderr> from "
7954 "the command."
7955 msgstr ""
7956
7957 #. type: textblock
7958 #: ../src/guestfs-actions.pod:1043 ../fish/guestfish-actions.pod:711
7959 msgid ""
7960 "The C<$PATH> environment variable will contain at least C</usr/bin> and C</"
7961 "bin>.  If you require a program from another location, you should provide "
7962 "the full path in the first parameter."
7963 msgstr ""
7964
7965 #. type: textblock
7966 #: ../src/guestfs-actions.pod:1048 ../fish/guestfish-actions.pod:716
7967 msgid ""
7968 "Shared libraries and data files required by the program must be available on "
7969 "filesystems which are mounted in the correct places.  It is the caller's "
7970 "responsibility to ensure all filesystems that are needed are mounted at the "
7971 "right locations."
7972 msgstr ""
7973
7974 #. type: textblock
7975 #: ../src/guestfs-actions.pod:1060 ../src/guestfs-actions.pod:1080
7976 #: ../src/guestfs-actions.pod:1545
7977 msgid "(Added in 0.9.1)"
7978 msgstr ""
7979
7980 #. type: =head2
7981 #: ../src/guestfs-actions.pod:1062
7982 msgid "guestfs_command_lines"
7983 msgstr ""
7984
7985 #. type: verbatim
7986 #: ../src/guestfs-actions.pod:1064
7987 #, no-wrap
7988 msgid ""
7989 " char **\n"
7990 " guestfs_command_lines (guestfs_h *g,\n"
7991 "                        char *const *arguments);\n"
7992 "\n"
7993 msgstr ""
7994
7995 #. type: textblock
7996 #: ../src/guestfs-actions.pod:1068
7997 msgid ""
7998 "This is the same as C<guestfs_command>, but splits the result into a list of "
7999 "lines."
8000 msgstr ""
8001
8002 #. type: textblock
8003 #: ../src/guestfs-actions.pod:1071
8004 msgid "See also: C<guestfs_sh_lines>"
8005 msgstr ""
8006
8007 #. type: =head2
8008 #: ../src/guestfs-actions.pod:1082
8009 msgid "guestfs_config"
8010 msgstr ""
8011
8012 #. type: verbatim
8013 #: ../src/guestfs-actions.pod:1084
8014 #, no-wrap
8015 msgid ""
8016 " int\n"
8017 " guestfs_config (guestfs_h *g,\n"
8018 "                 const char *qemuparam,\n"
8019 "                 const char *qemuvalue);\n"
8020 "\n"
8021 msgstr ""
8022
8023 #. type: textblock
8024 #: ../src/guestfs-actions.pod:1089 ../fish/guestfish-actions.pod:741
8025 msgid ""
8026 "This can be used to add arbitrary qemu command line parameters of the form "
8027 "I<-param value>.  Actually it's not quite arbitrary - we prevent you from "
8028 "setting some parameters which would interfere with parameters that we use."
8029 msgstr ""
8030
8031 #. type: textblock
8032 #: ../src/guestfs-actions.pod:1094 ../fish/guestfish-actions.pod:746
8033 msgid "The first character of C<param> string must be a C<-> (dash)."
8034 msgstr ""
8035
8036 #. type: textblock
8037 #: ../src/guestfs-actions.pod:1096 ../fish/guestfish-actions.pod:748
8038 msgid "C<value> can be NULL."
8039 msgstr ""
8040
8041 #. type: =head2
8042 #: ../src/guestfs-actions.pod:1102
8043 msgid "guestfs_copy_size"
8044 msgstr ""
8045
8046 #. type: verbatim
8047 #: ../src/guestfs-actions.pod:1104
8048 #, no-wrap
8049 msgid ""
8050 " int\n"
8051 " guestfs_copy_size (guestfs_h *g,\n"
8052 "                    const char *src,\n"
8053 "                    const char *dest,\n"
8054 "                    int64_t size);\n"
8055 "\n"
8056 msgstr ""
8057
8058 #. type: textblock
8059 #: ../src/guestfs-actions.pod:1110 ../fish/guestfish-actions.pod:754
8060 msgid ""
8061 "This command copies exactly C<size> bytes from one source device or file "
8062 "C<src> to another destination device or file C<dest>."
8063 msgstr ""
8064
8065 #. type: textblock
8066 #: ../src/guestfs-actions.pod:1113 ../fish/guestfish-actions.pod:757
8067 msgid ""
8068 "Note this will fail if the source is too short or if the destination is not "
8069 "large enough."
8070 msgstr ""
8071
8072 #. type: textblock
8073 #: ../src/guestfs-actions.pod:1118 ../src/guestfs-actions.pod:1241
8074 #: ../src/guestfs-actions.pod:1272 ../src/guestfs-actions.pod:1317
8075 #: ../src/guestfs-actions.pod:1694 ../src/guestfs-actions.pod:1716
8076 #: ../src/guestfs-actions.pod:3473 ../src/guestfs-actions.pod:6862
8077 #: ../src/guestfs-actions.pod:6896 ../src/guestfs-actions.pod:7382
8078 #: ../src/guestfs-actions.pod:7401
8079 msgid ""
8080 "This long-running command can generate progress notification messages so "
8081 "that the caller can display a progress bar or indicator.  To receive these "
8082 "messages, the caller must register a progress event callback.  See L<guestfs"
8083 "(3)/GUESTFS_EVENT_PROGRESS>."
8084 msgstr ""
8085
8086 #. type: textblock
8087 #: ../src/guestfs-actions.pod:1123 ../src/guestfs-actions.pod:4160
8088 #: ../src/guestfs-actions.pod:5394 ../src/guestfs-actions.pod:7103
8089 #: ../src/guestfs-actions.pod:7123 ../src/guestfs-actions.pod:7209
8090 msgid "(Added in 1.0.87)"
8091 msgstr ""
8092
8093 #. type: =head2
8094 #: ../src/guestfs-actions.pod:1125
8095 msgid "guestfs_cp"
8096 msgstr ""
8097
8098 #. type: verbatim
8099 #: ../src/guestfs-actions.pod:1127
8100 #, no-wrap
8101 msgid ""
8102 " int\n"
8103 " guestfs_cp (guestfs_h *g,\n"
8104 "             const char *src,\n"
8105 "             const char *dest);\n"
8106 "\n"
8107 msgstr ""
8108
8109 #. type: textblock
8110 #: ../src/guestfs-actions.pod:1132 ../fish/guestfish-actions.pod:764
8111 msgid ""
8112 "This copies a file from C<src> to C<dest> where C<dest> is either a "
8113 "destination filename or destination directory."
8114 msgstr ""
8115
8116 #. type: textblock
8117 #: ../src/guestfs-actions.pod:1137 ../src/guestfs-actions.pod:1151
8118 #: ../src/guestfs-actions.pod:1223 ../src/guestfs-actions.pod:1297
8119 #: ../src/guestfs-actions.pod:1411 ../src/guestfs-actions.pod:4852
8120 #: ../src/guestfs-actions.pod:5238
8121 msgid "(Added in 1.0.18)"
8122 msgstr ""
8123
8124 #. type: =head2
8125 #: ../src/guestfs-actions.pod:1139
8126 msgid "guestfs_cp_a"
8127 msgstr ""
8128
8129 #. type: verbatim
8130 #: ../src/guestfs-actions.pod:1141
8131 #, no-wrap
8132 msgid ""
8133 " int\n"
8134 " guestfs_cp_a (guestfs_h *g,\n"
8135 "               const char *src,\n"
8136 "               const char *dest);\n"
8137 "\n"
8138 msgstr ""
8139
8140 #. type: textblock
8141 #: ../src/guestfs-actions.pod:1146 ../fish/guestfish-actions.pod:771
8142 msgid ""
8143 "This copies a file or directory from C<src> to C<dest> recursively using the "
8144 "C<cp -a> command."
8145 msgstr ""
8146
8147 #. type: =head2
8148 #: ../src/guestfs-actions.pod:1153
8149 msgid "guestfs_dd"
8150 msgstr ""
8151
8152 #. type: verbatim
8153 #: ../src/guestfs-actions.pod:1155
8154 #, no-wrap
8155 msgid ""
8156 " int\n"
8157 " guestfs_dd (guestfs_h *g,\n"
8158 "             const char *src,\n"
8159 "             const char *dest);\n"
8160 "\n"
8161 msgstr ""
8162
8163 #. type: textblock
8164 #: ../src/guestfs-actions.pod:1160 ../fish/guestfish-actions.pod:778
8165 msgid ""
8166 "This command copies from one source device or file C<src> to another "
8167 "destination device or file C<dest>.  Normally you would use this to copy to "
8168 "or from a device or partition, for example to duplicate a filesystem."
8169 msgstr ""
8170
8171 #. type: textblock
8172 #: ../src/guestfs-actions.pod:1165
8173 msgid ""
8174 "If the destination is a device, it must be as large or larger than the "
8175 "source file or device, otherwise the copy will fail.  This command cannot do "
8176 "partial copies (see C<guestfs_copy_size>)."
8177 msgstr ""
8178
8179 #. type: =head2
8180 #: ../src/guestfs-actions.pod:1173
8181 msgid "guestfs_df"
8182 msgstr ""
8183
8184 #. type: verbatim
8185 #: ../src/guestfs-actions.pod:1175
8186 #, no-wrap
8187 msgid ""
8188 " char *\n"
8189 " guestfs_df (guestfs_h *g);\n"
8190 "\n"
8191 msgstr ""
8192
8193 #. type: textblock
8194 #: ../src/guestfs-actions.pod:1178 ../fish/guestfish-actions.pod:791
8195 msgid "This command runs the C<df> command to report disk space used."
8196 msgstr ""
8197
8198 #. type: textblock
8199 #: ../src/guestfs-actions.pod:1180 ../src/guestfs-actions.pod:1197
8200 msgid ""
8201 "This command is mostly useful for interactive sessions.  It is I<not> "
8202 "intended that you try to parse the output string.  Use C<guestfs_statvfs> "
8203 "from programs."
8204 msgstr ""
8205
8206 #. type: textblock
8207 #: ../src/guestfs-actions.pod:1187 ../src/guestfs-actions.pod:1204
8208 #: ../src/guestfs-actions.pod:1322 ../src/guestfs-actions.pod:2283
8209 #: ../src/guestfs-actions.pod:2307 ../src/guestfs-actions.pod:2375
8210 #: ../src/guestfs-actions.pod:4270 ../src/guestfs-actions.pod:4752
8211 #: ../src/guestfs-actions.pod:6600 ../src/guestfs-actions.pod:6624
8212 #: ../src/guestfs-actions.pod:7249 ../src/guestfs-actions.pod:7262
8213 #: ../src/guestfs-actions.pod:7275
8214 msgid "(Added in 1.0.54)"
8215 msgstr ""
8216
8217 #. type: =head2
8218 #: ../src/guestfs-actions.pod:1189
8219 msgid "guestfs_df_h"
8220 msgstr ""
8221
8222 #. type: verbatim
8223 #: ../src/guestfs-actions.pod:1191
8224 #, no-wrap
8225 msgid ""
8226 " char *\n"
8227 " guestfs_df_h (guestfs_h *g);\n"
8228 "\n"
8229 msgstr ""
8230
8231 #. type: textblock
8232 #: ../src/guestfs-actions.pod:1194 ../fish/guestfish-actions.pod:801
8233 msgid ""
8234 "This command runs the C<df -h> command to report disk space used in human-"
8235 "readable format."
8236 msgstr ""
8237
8238 #. type: =head2
8239 #: ../src/guestfs-actions.pod:1206
8240 msgid "guestfs_dmesg"
8241 msgstr ""
8242
8243 #. type: verbatim
8244 #: ../src/guestfs-actions.pod:1208
8245 #, no-wrap
8246 msgid ""
8247 " char *\n"
8248 " guestfs_dmesg (guestfs_h *g);\n"
8249 "\n"
8250 msgstr ""
8251
8252 #. type: textblock
8253 #: ../src/guestfs-actions.pod:1211 ../fish/guestfish-actions.pod:812
8254 msgid ""
8255 "This returns the kernel messages (C<dmesg> output) from the guest kernel.  "
8256 "This is sometimes useful for extended debugging of problems."
8257 msgstr ""
8258
8259 #. type: textblock
8260 #: ../src/guestfs-actions.pod:1215
8261 msgid ""
8262 "Another way to get the same information is to enable verbose messages with "
8263 "C<guestfs_set_verbose> or by setting the environment variable "
8264 "C<LIBGUESTFS_DEBUG=1> before running the program."
8265 msgstr ""
8266
8267 #. type: =head2
8268 #: ../src/guestfs-actions.pod:1225
8269 msgid "guestfs_download"
8270 msgstr ""
8271
8272 #. type: verbatim
8273 #: ../src/guestfs-actions.pod:1227
8274 #, no-wrap
8275 msgid ""
8276 " int\n"
8277 " guestfs_download (guestfs_h *g,\n"
8278 "                   const char *remotefilename,\n"
8279 "                   const char *filename);\n"
8280 "\n"
8281 msgstr ""
8282
8283 #. type: textblock
8284 #: ../src/guestfs-actions.pod:1232 ../src/guestfs-actions.pod:1257
8285 #: ../fish/guestfish-actions.pod:825 ../fish/guestfish-actions.pod:838
8286 msgid ""
8287 "Download file C<remotefilename> and save it as C<filename> on the local "
8288 "machine."
8289 msgstr ""
8290
8291 #. type: textblock
8292 #: ../src/guestfs-actions.pod:1235 ../src/guestfs-actions.pod:6856
8293 #: ../fish/guestfish-actions.pod:828 ../fish/guestfish-actions.pod:4631
8294 msgid "C<filename> can also be a named pipe."
8295 msgstr ""
8296
8297 #. type: textblock
8298 #: ../src/guestfs-actions.pod:1237
8299 msgid "See also C<guestfs_upload>, C<guestfs_cat>."
8300 msgstr ""
8301
8302 #. type: =head2
8303 #: ../src/guestfs-actions.pod:1248
8304 msgid "guestfs_download_offset"
8305 msgstr ""
8306
8307 #. type: verbatim
8308 #: ../src/guestfs-actions.pod:1250
8309 #, no-wrap
8310 msgid ""
8311 " int\n"
8312 " guestfs_download_offset (guestfs_h *g,\n"
8313 "                          const char *remotefilename,\n"
8314 "                          const char *filename,\n"
8315 "                          int64_t offset,\n"
8316 "                          int64_t size);\n"
8317 "\n"
8318 msgstr ""
8319
8320 #. type: textblock
8321 #: ../src/guestfs-actions.pod:1260 ../fish/guestfish-actions.pod:841
8322 msgid ""
8323 "C<remotefilename> is read for C<size> bytes starting at C<offset> (this "
8324 "region must be within the file or device)."
8325 msgstr ""
8326
8327 #. type: textblock
8328 #: ../src/guestfs-actions.pod:1263
8329 msgid ""
8330 "Note that there is no limit on the amount of data that can be downloaded "
8331 "with this call, unlike with C<guestfs_pread>, and this call always reads the "
8332 "full amount unless an error occurs."
8333 msgstr ""
8334
8335 #. type: textblock
8336 #: ../src/guestfs-actions.pod:1268
8337 msgid "See also C<guestfs_download>, C<guestfs_pread>."
8338 msgstr ""
8339
8340 #. type: textblock
8341 #: ../src/guestfs-actions.pod:1277 ../src/guestfs-actions.pod:6901
8342 msgid "(Added in 1.5.17)"
8343 msgstr ""
8344
8345 #. type: =head2
8346 #: ../src/guestfs-actions.pod:1279
8347 msgid "guestfs_drop_caches"
8348 msgstr ""
8349
8350 #. type: verbatim
8351 #: ../src/guestfs-actions.pod:1281
8352 #, no-wrap
8353 msgid ""
8354 " int\n"
8355 " guestfs_drop_caches (guestfs_h *g,\n"
8356 "                      int whattodrop);\n"
8357 "\n"
8358 msgstr ""
8359
8360 #. type: textblock
8361 #: ../src/guestfs-actions.pod:1285 ../fish/guestfish-actions.pod:857
8362 msgid ""
8363 "This instructs the guest kernel to drop its page cache, and/or dentries and "
8364 "inode caches.  The parameter C<whattodrop> tells the kernel what precisely "
8365 "to drop, see L<http://linux-mm.org/Drop_Caches>"
8366 msgstr ""
8367
8368 #. type: textblock
8369 #: ../src/guestfs-actions.pod:1290 ../fish/guestfish-actions.pod:862
8370 msgid "Setting C<whattodrop> to 3 should drop everything."
8371 msgstr ""
8372
8373 #. type: textblock
8374 #: ../src/guestfs-actions.pod:1292 ../fish/guestfish-actions.pod:864
8375 msgid ""
8376 "This automatically calls L<sync(2)> before the operation, so that the "
8377 "maximum guest memory is freed."
8378 msgstr ""
8379
8380 #. type: =head2
8381 #: ../src/guestfs-actions.pod:1299
8382 msgid "guestfs_du"
8383 msgstr ""
8384
8385 #. type: verbatim
8386 #: ../src/guestfs-actions.pod:1301
8387 #, no-wrap
8388 msgid ""
8389 " int64_t\n"
8390 " guestfs_du (guestfs_h *g,\n"
8391 "             const char *path);\n"
8392 "\n"
8393 msgstr ""
8394
8395 #. type: textblock
8396 #: ../src/guestfs-actions.pod:1305 ../fish/guestfish-actions.pod:871
8397 msgid ""
8398 "This command runs the C<du -s> command to estimate file space usage for "
8399 "C<path>."
8400 msgstr ""
8401
8402 #. type: textblock
8403 #: ../src/guestfs-actions.pod:1308 ../fish/guestfish-actions.pod:874
8404 msgid ""
8405 "C<path> can be a file or a directory.  If C<path> is a directory then the "
8406 "estimate includes the contents of the directory and all subdirectories "
8407 "(recursively)."
8408 msgstr ""
8409
8410 #. type: textblock
8411 #: ../src/guestfs-actions.pod:1312 ../fish/guestfish-actions.pod:878
8412 msgid ""
8413 "The result is the estimated size in I<kilobytes> (ie. units of 1024 bytes)."
8414 msgstr ""
8415
8416 #. type: =head2
8417 #: ../src/guestfs-actions.pod:1324
8418 msgid "guestfs_e2fsck_f"
8419 msgstr ""
8420
8421 #. type: verbatim
8422 #: ../src/guestfs-actions.pod:1326
8423 #, no-wrap
8424 msgid ""
8425 " int\n"
8426 " guestfs_e2fsck_f (guestfs_h *g,\n"
8427 "                   const char *device);\n"
8428 "\n"
8429 msgstr ""
8430
8431 #. type: textblock
8432 #: ../src/guestfs-actions.pod:1330 ../fish/guestfish-actions.pod:885
8433 msgid ""
8434 "This runs C<e2fsck -p -f device>, ie. runs the ext2/ext3 filesystem checker "
8435 "on C<device>, noninteractively (I<-p>), even if the filesystem appears to be "
8436 "clean (I<-f>)."
8437 msgstr ""
8438
8439 #. type: textblock
8440 #: ../src/guestfs-actions.pod:1334
8441 msgid ""
8442 "This command is only needed because of C<guestfs_resize2fs> (q.v.).  "
8443 "Normally you should use C<guestfs_fsck>."
8444 msgstr ""
8445
8446 #. type: textblock
8447 #: ../src/guestfs-actions.pod:1339
8448 msgid "(Added in 1.0.29)"
8449 msgstr ""
8450
8451 #. type: =head2
8452 #: ../src/guestfs-actions.pod:1341
8453 msgid "guestfs_echo_daemon"
8454 msgstr ""
8455
8456 #. type: verbatim
8457 #: ../src/guestfs-actions.pod:1343
8458 #, no-wrap
8459 msgid ""
8460 " char *\n"
8461 " guestfs_echo_daemon (guestfs_h *g,\n"
8462 "                      char *const *words);\n"
8463 "\n"
8464 msgstr ""
8465
8466 #. type: textblock
8467 #: ../src/guestfs-actions.pod:1347 ../fish/guestfish-actions.pod:896
8468 msgid ""
8469 "This command concatenates the list of C<words> passed with single spaces "
8470 "between them and returns the resulting string."
8471 msgstr ""
8472
8473 #. type: textblock
8474 #: ../src/guestfs-actions.pod:1350 ../fish/guestfish-actions.pod:899
8475 msgid "You can use this command to test the connection through to the daemon."
8476 msgstr ""
8477
8478 #. type: textblock
8479 #: ../src/guestfs-actions.pod:1352
8480 msgid "See also C<guestfs_ping_daemon>."
8481 msgstr ""
8482
8483 #. type: textblock
8484 #: ../src/guestfs-actions.pod:1357 ../src/guestfs-actions.pod:2091
8485 #: ../src/guestfs-actions.pod:6072
8486 msgid "(Added in 1.0.69)"
8487 msgstr ""
8488
8489 #. type: =head2
8490 #: ../src/guestfs-actions.pod:1359
8491 msgid "guestfs_egrep"
8492 msgstr ""
8493
8494 #. type: verbatim
8495 #: ../src/guestfs-actions.pod:1361
8496 #, no-wrap
8497 msgid ""
8498 " char **\n"
8499 " guestfs_egrep (guestfs_h *g,\n"
8500 "                const char *regex,\n"
8501 "                const char *path);\n"
8502 "\n"
8503 msgstr ""
8504
8505 #. type: textblock
8506 #: ../src/guestfs-actions.pod:1366 ../fish/guestfish-actions.pod:907
8507 msgid ""
8508 "This calls the external C<egrep> program and returns the matching lines."
8509 msgstr ""
8510
8511 #. type: textblock
8512 #: ../src/guestfs-actions.pod:1376 ../src/guestfs-actions.pod:1395
8513 #: ../src/guestfs-actions.pod:1452 ../src/guestfs-actions.pod:1498
8514 #: ../src/guestfs-actions.pod:1517 ../src/guestfs-actions.pod:2221
8515 #: ../src/guestfs-actions.pod:2240 ../src/guestfs-actions.pod:2396
8516 #: ../src/guestfs-actions.pod:2409 ../src/guestfs-actions.pod:2424
8517 #: ../src/guestfs-actions.pod:2470 ../src/guestfs-actions.pod:2492
8518 #: ../src/guestfs-actions.pod:2505 ../src/guestfs-actions.pod:3653
8519 #: ../src/guestfs-actions.pod:3667 ../src/guestfs-actions.pod:3680
8520 #: ../src/guestfs-actions.pod:3694 ../src/guestfs-actions.pod:4680
8521 #: ../src/guestfs-actions.pod:5572 ../src/guestfs-actions.pod:5621
8522 #: ../src/guestfs-actions.pod:6468 ../src/guestfs-actions.pod:6480
8523 #: ../src/guestfs-actions.pod:6493 ../src/guestfs-actions.pod:6506
8524 #: ../src/guestfs-actions.pod:6528 ../src/guestfs-actions.pod:6541
8525 #: ../src/guestfs-actions.pod:6554 ../src/guestfs-actions.pod:6567
8526 #: ../src/guestfs-actions.pod:7345 ../src/guestfs-actions.pod:7364
8527 #: ../src/guestfs-actions.pod:7449 ../src/guestfs-actions.pod:7468
8528 #: ../src/guestfs-actions.pod:7514 ../src/guestfs-actions.pod:7533
8529 msgid "(Added in 1.0.66)"
8530 msgstr ""
8531
8532 #. type: =head2
8533 #: ../src/guestfs-actions.pod:1378
8534 msgid "guestfs_egrepi"
8535 msgstr ""
8536
8537 #. type: verbatim
8538 #: ../src/guestfs-actions.pod:1380
8539 #, no-wrap
8540 msgid ""
8541 " char **\n"
8542 " guestfs_egrepi (guestfs_h *g,\n"
8543 "                 const char *regex,\n"
8544 "                 const char *path);\n"
8545 "\n"
8546 msgstr ""
8547
8548 #. type: textblock
8549 #: ../src/guestfs-actions.pod:1385 ../fish/guestfish-actions.pod:917
8550 msgid ""
8551 "This calls the external C<egrep -i> program and returns the matching lines."
8552 msgstr ""
8553
8554 #. type: =head2
8555 #: ../src/guestfs-actions.pod:1397
8556 msgid "guestfs_equal"
8557 msgstr ""
8558
8559 #. type: verbatim
8560 #: ../src/guestfs-actions.pod:1399
8561 #, no-wrap
8562 msgid ""
8563 " int\n"
8564 " guestfs_equal (guestfs_h *g,\n"
8565 "                const char *file1,\n"
8566 "                const char *file2);\n"
8567 "\n"
8568 msgstr ""
8569
8570 #. type: textblock
8571 #: ../src/guestfs-actions.pod:1404 ../fish/guestfish-actions.pod:927
8572 msgid ""
8573 "This compares the two files C<file1> and C<file2> and returns true if their "
8574 "content is exactly equal, or false otherwise."
8575 msgstr ""
8576
8577 #. type: textblock
8578 #: ../src/guestfs-actions.pod:1407 ../fish/guestfish-actions.pod:930
8579 msgid "The external L<cmp(1)> program is used for the comparison."
8580 msgstr ""
8581
8582 #. type: =head2
8583 #: ../src/guestfs-actions.pod:1413
8584 msgid "guestfs_exists"
8585 msgstr ""
8586
8587 #. type: verbatim
8588 #: ../src/guestfs-actions.pod:1415
8589 #, no-wrap
8590 msgid ""
8591 " int\n"
8592 " guestfs_exists (guestfs_h *g,\n"
8593 "                 const char *path);\n"
8594 "\n"
8595 msgstr ""
8596
8597 #. type: textblock
8598 #: ../src/guestfs-actions.pod:1419 ../fish/guestfish-actions.pod:936
8599 msgid ""
8600 "This returns C<true> if and only if there is a file, directory (or anything) "
8601 "with the given C<path> name."
8602 msgstr ""
8603
8604 #. type: textblock
8605 #: ../src/guestfs-actions.pod:1422
8606 msgid "See also C<guestfs_is_file>, C<guestfs_is_dir>, C<guestfs_stat>."
8607 msgstr ""
8608
8609 #. type: =head2
8610 #: ../src/guestfs-actions.pod:1428
8611 msgid "guestfs_fallocate"
8612 msgstr ""
8613
8614 #. type: verbatim
8615 #: ../src/guestfs-actions.pod:1430
8616 #, no-wrap
8617 msgid ""
8618 " int\n"
8619 " guestfs_fallocate (guestfs_h *g,\n"
8620 "                    const char *path,\n"
8621 "                    int len);\n"
8622 "\n"
8623 msgstr ""
8624
8625 #. type: textblock
8626 #: ../src/guestfs-actions.pod:1435 ../src/guestfs-actions.pod:1461
8627 #: ../fish/guestfish-actions.pod:945 ../fish/guestfish-actions.pod:964
8628 msgid ""
8629 "This command preallocates a file (containing zero bytes) named C<path> of "
8630 "size C<len> bytes.  If the file exists already, it is overwritten."
8631 msgstr ""
8632
8633 #. type: textblock
8634 #: ../src/guestfs-actions.pod:1439 ../fish/guestfish-actions.pod:949
8635 msgid ""
8636 "Do not confuse this with the guestfish-specific C<alloc> command which "
8637 "allocates a file in the host and attaches it as a device."
8638 msgstr ""
8639
8640 #. type: textblock
8641 #: ../src/guestfs-actions.pod:1445 ../fish/guestfish-actions.pod:953
8642 msgid ""
8643 "This function is deprecated.  In new code, use the C<fallocate64> call "
8644 "instead."
8645 msgstr ""
8646
8647 #. type: =head2
8648 #: ../src/guestfs-actions.pod:1454
8649 msgid "guestfs_fallocate64"
8650 msgstr ""
8651
8652 #. type: verbatim
8653 #: ../src/guestfs-actions.pod:1456
8654 #, no-wrap
8655 msgid ""
8656 " int\n"
8657 " guestfs_fallocate64 (guestfs_h *g,\n"
8658 "                      const char *path,\n"
8659 "                      int64_t len);\n"
8660 "\n"
8661 msgstr ""
8662
8663 #. type: textblock
8664 #: ../src/guestfs-actions.pod:1465
8665 msgid ""
8666 "Note that this call allocates disk blocks for the file.  To create a sparse "
8667 "file use C<guestfs_truncate_size> instead."
8668 msgstr ""
8669
8670 #. type: textblock
8671 #: ../src/guestfs-actions.pod:1468
8672 msgid ""
8673 "The deprecated call C<guestfs_fallocate> does the same, but owing to an "
8674 "oversight it only allowed 30 bit lengths to be specified, effectively "
8675 "limiting the maximum size of files created through that call to 1GB."
8676 msgstr ""
8677
8678 #. type: textblock
8679 #: ../src/guestfs-actions.pod:1473 ../fish/guestfish-actions.pod:976
8680 msgid ""
8681 "Do not confuse this with the guestfish-specific C<alloc> and C<sparse> "
8682 "commands which create a file in the host and attach it as a device."
8683 msgstr ""
8684
8685 #. type: textblock
8686 #: ../src/guestfs-actions.pod:1479
8687 msgid "(Added in 1.3.17)"
8688 msgstr ""
8689
8690 #. type: =head2
8691 #: ../src/guestfs-actions.pod:1481
8692 msgid "guestfs_fgrep"
8693 msgstr ""
8694
8695 #. type: verbatim
8696 #: ../src/guestfs-actions.pod:1483
8697 #, no-wrap
8698 msgid ""
8699 " char **\n"
8700 " guestfs_fgrep (guestfs_h *g,\n"
8701 "                const char *pattern,\n"
8702 "                const char *path);\n"
8703 "\n"
8704 msgstr ""
8705
8706 #. type: textblock
8707 #: ../src/guestfs-actions.pod:1488 ../fish/guestfish-actions.pod:984
8708 msgid ""
8709 "This calls the external C<fgrep> program and returns the matching lines."
8710 msgstr ""
8711
8712 #. type: =head2
8713 #: ../src/guestfs-actions.pod:1500
8714 msgid "guestfs_fgrepi"
8715 msgstr ""
8716
8717 #. type: verbatim
8718 #: ../src/guestfs-actions.pod:1502
8719 #, no-wrap
8720 msgid ""
8721 " char **\n"
8722 " guestfs_fgrepi (guestfs_h *g,\n"
8723 "                 const char *pattern,\n"
8724 "                 const char *path);\n"
8725 "\n"
8726 msgstr ""
8727
8728 #. type: textblock
8729 #: ../src/guestfs-actions.pod:1507 ../fish/guestfish-actions.pod:994
8730 msgid ""
8731 "This calls the external C<fgrep -i> program and returns the matching lines."
8732 msgstr ""
8733
8734 #. type: =head2
8735 #: ../src/guestfs-actions.pod:1519
8736 msgid "guestfs_file"
8737 msgstr ""
8738
8739 #. type: verbatim
8740 #: ../src/guestfs-actions.pod:1521
8741 #, no-wrap
8742 msgid ""
8743 " char *\n"
8744 " guestfs_file (guestfs_h *g,\n"
8745 "               const char *path);\n"
8746 "\n"
8747 msgstr ""
8748
8749 #. type: textblock
8750 #: ../src/guestfs-actions.pod:1525 ../fish/guestfish-actions.pod:1004
8751 msgid ""
8752 "This call uses the standard L<file(1)> command to determine the type or "
8753 "contents of the file."
8754 msgstr ""
8755
8756 #. type: textblock
8757 #: ../src/guestfs-actions.pod:1528 ../fish/guestfish-actions.pod:1007
8758 msgid ""
8759 "This call will also transparently look inside various types of compressed "
8760 "file."
8761 msgstr ""
8762
8763 #. type: textblock
8764 #: ../src/guestfs-actions.pod:1531 ../fish/guestfish-actions.pod:1010
8765 msgid ""
8766 "The exact command which runs is C<file -zb path>.  Note in particular that "
8767 "the filename is not prepended to the output (the I<-b> option)."
8768 msgstr ""
8769
8770 #. type: textblock
8771 #: ../src/guestfs-actions.pod:1535 ../fish/guestfish-actions.pod:1014
8772 msgid ""
8773 "The output depends on the output of the underlying L<file(1)> command and it "
8774 "can change in future in ways beyond our control.  In other words, the output "
8775 "is not guaranteed by the ABI."
8776 msgstr ""
8777
8778 #. type: textblock
8779 #: ../src/guestfs-actions.pod:1539
8780 msgid ""
8781 "See also: L<file(1)>, C<guestfs_vfs_type>, C<guestfs_lstat>, "
8782 "C<guestfs_is_file>, C<guestfs_is_blockdev> (etc)."
8783 msgstr ""
8784
8785 #. type: =head2
8786 #: ../src/guestfs-actions.pod:1547
8787 msgid "guestfs_file_architecture"
8788 msgstr ""
8789
8790 #. type: verbatim
8791 #: ../src/guestfs-actions.pod:1549
8792 #, no-wrap
8793 msgid ""
8794 " char *\n"
8795 " guestfs_file_architecture (guestfs_h *g,\n"
8796 "                            const char *filename);\n"
8797 "\n"
8798 msgstr ""
8799
8800 #. type: textblock
8801 #: ../src/guestfs-actions.pod:1553 ../fish/guestfish-actions.pod:1025
8802 msgid ""
8803 "This detects the architecture of the binary C<filename>, and returns it if "
8804 "known."
8805 msgstr ""
8806
8807 #. type: textblock
8808 #: ../src/guestfs-actions.pod:1556 ../fish/guestfish-actions.pod:1028
8809 msgid "Currently defined architectures are:"
8810 msgstr ""
8811
8812 #. type: =item
8813 #: ../src/guestfs-actions.pod:1560 ../fish/guestfish-actions.pod:1032
8814 msgid "\"i386\""
8815 msgstr "\"i386\""
8816
8817 #. type: textblock
8818 #: ../src/guestfs-actions.pod:1562 ../fish/guestfish-actions.pod:1034
8819 msgid ""
8820 "This string is returned for all 32 bit i386, i486, i586, i686 binaries "
8821 "irrespective of the precise processor requirements of the binary."
8822 msgstr ""
8823
8824 #. type: =item
8825 #: ../src/guestfs-actions.pod:1565 ../fish/guestfish-actions.pod:1037
8826 msgid "\"x86_64\""
8827 msgstr "\"x86_64\""
8828
8829 #. type: textblock
8830 #: ../src/guestfs-actions.pod:1567 ../fish/guestfish-actions.pod:1039
8831 msgid "64 bit x86-64."
8832 msgstr ""
8833
8834 #. type: =item
8835 #: ../src/guestfs-actions.pod:1569 ../fish/guestfish-actions.pod:1041
8836 msgid "\"sparc\""
8837 msgstr ""
8838
8839 #. type: textblock
8840 #: ../src/guestfs-actions.pod:1571 ../fish/guestfish-actions.pod:1043
8841 msgid "32 bit SPARC."
8842 msgstr ""
8843
8844 #. type: =item
8845 #: ../src/guestfs-actions.pod:1573 ../fish/guestfish-actions.pod:1045
8846 msgid "\"sparc64\""
8847 msgstr ""
8848
8849 #. type: textblock
8850 #: ../src/guestfs-actions.pod:1575 ../fish/guestfish-actions.pod:1047
8851 msgid "64 bit SPARC V9 and above."
8852 msgstr ""
8853
8854 #. type: =item
8855 #: ../src/guestfs-actions.pod:1577 ../fish/guestfish-actions.pod:1049
8856 msgid "\"ia64\""
8857 msgstr "\"ia64\""
8858
8859 #. type: textblock
8860 #: ../src/guestfs-actions.pod:1579 ../fish/guestfish-actions.pod:1051
8861 msgid "Intel Itanium."
8862 msgstr "Intel Itanium."
8863
8864 #. type: =item
8865 #: ../src/guestfs-actions.pod:1581 ../fish/guestfish-actions.pod:1053
8866 msgid "\"ppc\""
8867 msgstr ""
8868
8869 #. type: textblock
8870 #: ../src/guestfs-actions.pod:1583 ../fish/guestfish-actions.pod:1055
8871 msgid "32 bit Power PC."
8872 msgstr ""
8873
8874 #. type: =item
8875 #: ../src/guestfs-actions.pod:1585 ../fish/guestfish-actions.pod:1057
8876 msgid "\"ppc64\""
8877 msgstr ""
8878
8879 #. type: textblock
8880 #: ../src/guestfs-actions.pod:1587 ../fish/guestfish-actions.pod:1059
8881 msgid "64 bit Power PC."
8882 msgstr ""
8883
8884 #. type: textblock
8885 #: ../src/guestfs-actions.pod:1591 ../fish/guestfish-actions.pod:1063
8886 msgid "Libguestfs may return other architecture strings in future."
8887 msgstr ""
8888
8889 #. type: textblock
8890 #: ../src/guestfs-actions.pod:1593 ../fish/guestfish-actions.pod:1065
8891 msgid "The function works on at least the following types of files:"
8892 msgstr ""
8893
8894 #. type: textblock
8895 #: ../src/guestfs-actions.pod:1599 ../fish/guestfish-actions.pod:1071
8896 msgid "many types of Un*x and Linux binary"
8897 msgstr ""
8898
8899 #. type: textblock
8900 #: ../src/guestfs-actions.pod:1603 ../fish/guestfish-actions.pod:1075
8901 msgid "many types of Un*x and Linux shared library"
8902 msgstr ""
8903
8904 #. type: textblock
8905 #: ../src/guestfs-actions.pod:1607 ../fish/guestfish-actions.pod:1079
8906 msgid "Windows Win32 and Win64 binaries"
8907 msgstr ""
8908
8909 #. type: textblock
8910 #: ../src/guestfs-actions.pod:1611 ../fish/guestfish-actions.pod:1083
8911 msgid "Windows Win32 and Win64 DLLs"
8912 msgstr ""
8913
8914 #. type: textblock
8915 #: ../src/guestfs-actions.pod:1613 ../fish/guestfish-actions.pod:1085
8916 msgid "Win32 binaries and DLLs return C<i386>."
8917 msgstr ""
8918
8919 #. type: textblock
8920 #: ../src/guestfs-actions.pod:1615 ../fish/guestfish-actions.pod:1087
8921 msgid "Win64 binaries and DLLs return C<x86_64>."
8922 msgstr ""
8923
8924 #. type: textblock
8925 #: ../src/guestfs-actions.pod:1619 ../fish/guestfish-actions.pod:1091
8926 msgid "Linux kernel modules"
8927 msgstr ""
8928
8929 #. type: textblock
8930 #: ../src/guestfs-actions.pod:1623 ../fish/guestfish-actions.pod:1095
8931 msgid "Linux new-style initrd images"
8932 msgstr ""
8933
8934 #. type: textblock
8935 #: ../src/guestfs-actions.pod:1627 ../fish/guestfish-actions.pod:1099
8936 msgid "some non-x86 Linux vmlinuz kernels"
8937 msgstr ""
8938
8939 #. type: textblock
8940 #: ../src/guestfs-actions.pod:1631 ../fish/guestfish-actions.pod:1103
8941 msgid "What it can't do currently:"
8942 msgstr ""
8943
8944 #. type: textblock
8945 #: ../src/guestfs-actions.pod:1637 ../fish/guestfish-actions.pod:1109
8946 msgid "static libraries (libfoo.a)"
8947 msgstr ""
8948
8949 #. type: textblock
8950 #: ../src/guestfs-actions.pod:1641 ../fish/guestfish-actions.pod:1113
8951 msgid "Linux old-style initrd as compressed ext2 filesystem (RHEL 3)"
8952 msgstr ""
8953
8954 #. type: textblock
8955 #: ../src/guestfs-actions.pod:1645 ../fish/guestfish-actions.pod:1117
8956 msgid "x86 Linux vmlinuz kernels"
8957 msgstr ""
8958
8959 #. type: textblock
8960 #: ../src/guestfs-actions.pod:1647 ../fish/guestfish-actions.pod:1119
8961 msgid ""
8962 "x86 vmlinuz images (bzImage format) consist of a mix of 16-, 32- and "
8963 "compressed code, and are horribly hard to unpack.  If you want to find the "
8964 "architecture of a kernel, use the architecture of the associated initrd or "
8965 "kernel module(s) instead."
8966 msgstr ""
8967
8968 #. type: textblock
8969 #: ../src/guestfs-actions.pod:1657 ../src/guestfs-actions.pod:1820
8970 #: ../src/guestfs-actions.pod:1837 ../src/guestfs-actions.pod:2528
8971 #: ../src/guestfs-actions.pod:2621 ../src/guestfs-actions.pod:2691
8972 #: ../src/guestfs-actions.pod:2779 ../src/guestfs-actions.pod:2800
8973 #: ../src/guestfs-actions.pod:2843 ../src/guestfs-actions.pod:2927
8974 #: ../src/guestfs-actions.pod:3024 ../src/guestfs-actions.pod:3271
8975 #: ../src/guestfs-actions.pod:3403
8976 msgid "(Added in 1.5.3)"
8977 msgstr ""
8978
8979 #. type: =head2
8980 #: ../src/guestfs-actions.pod:1659
8981 msgid "guestfs_filesize"
8982 msgstr ""
8983
8984 #. type: verbatim
8985 #: ../src/guestfs-actions.pod:1661
8986 #, no-wrap
8987 msgid ""
8988 " int64_t\n"
8989 " guestfs_filesize (guestfs_h *g,\n"
8990 "                   const char *file);\n"
8991 "\n"
8992 msgstr ""
8993
8994 #. type: textblock
8995 #: ../src/guestfs-actions.pod:1665 ../fish/guestfish-actions.pod:1130
8996 msgid "This command returns the size of C<file> in bytes."
8997 msgstr ""
8998
8999 #. type: textblock
9000 #: ../src/guestfs-actions.pod:1667
9001 msgid ""
9002 "To get other stats about a file, use C<guestfs_stat>, C<guestfs_lstat>, "
9003 "C<guestfs_is_dir>, C<guestfs_is_file> etc.  To get the size of block "
9004 "devices, use C<guestfs_blockdev_getsize64>."
9005 msgstr ""
9006
9007 #. type: textblock
9008 #: ../src/guestfs-actions.pod:1673
9009 msgid "(Added in 1.0.82)"
9010 msgstr ""
9011
9012 #. type: =head2
9013 #: ../src/guestfs-actions.pod:1675
9014 msgid "guestfs_fill"
9015 msgstr ""
9016
9017 #. type: verbatim
9018 #: ../src/guestfs-actions.pod:1677
9019 #, no-wrap
9020 msgid ""
9021 " int\n"
9022 " guestfs_fill (guestfs_h *g,\n"
9023 "               int c,\n"
9024 "               int len,\n"
9025 "               const char *path);\n"
9026 "\n"
9027 msgstr ""
9028
9029 #. type: textblock
9030 #: ../src/guestfs-actions.pod:1683 ../fish/guestfish-actions.pod:1140
9031 msgid ""
9032 "This command creates a new file called C<path>.  The initial content of the "
9033 "file is C<len> octets of C<c>, where C<c> must be a number in the range C<"
9034 "[0..255]>."
9035 msgstr ""
9036
9037 #. type: textblock
9038 #: ../src/guestfs-actions.pod:1687
9039 msgid ""
9040 "To fill a file with zero bytes (sparsely), it is much more efficient to use "
9041 "C<guestfs_truncate_size>.  To create a file with a pattern of repeating "
9042 "bytes use C<guestfs_fill_pattern>."
9043 msgstr ""
9044
9045 #. type: textblock
9046 #: ../src/guestfs-actions.pod:1699
9047 msgid "(Added in 1.0.79)"
9048 msgstr ""
9049
9050 #. type: =head2
9051 #: ../src/guestfs-actions.pod:1701
9052 msgid "guestfs_fill_pattern"
9053 msgstr ""
9054
9055 #. type: verbatim
9056 #: ../src/guestfs-actions.pod:1703
9057 #, no-wrap
9058 msgid ""
9059 " int\n"
9060 " guestfs_fill_pattern (guestfs_h *g,\n"
9061 "                       const char *pattern,\n"
9062 "                       int len,\n"
9063 "                       const char *path);\n"
9064 "\n"
9065 msgstr ""
9066
9067 #. type: textblock
9068 #: ../src/guestfs-actions.pod:1709
9069 msgid ""
9070 "This function is like C<guestfs_fill> except that it creates a new file of "
9071 "length C<len> containing the repeating pattern of bytes in C<pattern>.  The "
9072 "pattern is truncated if necessary to ensure the length of the file is "
9073 "exactly C<len> bytes."
9074 msgstr ""
9075
9076 #. type: textblock
9077 #: ../src/guestfs-actions.pod:1721
9078 msgid "(Added in 1.3.12)"
9079 msgstr ""
9080
9081 #. type: =head2
9082 #: ../src/guestfs-actions.pod:1723
9083 msgid "guestfs_find"
9084 msgstr ""
9085
9086 #. type: verbatim
9087 #: ../src/guestfs-actions.pod:1725
9088 #, no-wrap
9089 msgid ""
9090 " char **\n"
9091 " guestfs_find (guestfs_h *g,\n"
9092 "               const char *directory);\n"
9093 "\n"
9094 msgstr ""
9095
9096 #. type: textblock
9097 #: ../src/guestfs-actions.pod:1729 ../fish/guestfish-actions.pod:1162
9098 msgid ""
9099 "This command lists out all files and directories, recursively, starting at "
9100 "C<directory>.  It is essentially equivalent to running the shell command "
9101 "C<find directory -print> but some post-processing happens on the output, "
9102 "described below."
9103 msgstr ""
9104
9105 #. type: textblock
9106 #: ../src/guestfs-actions.pod:1734 ../fish/guestfish-actions.pod:1167
9107 msgid ""
9108 "This returns a list of strings I<without any prefix>.  Thus if the directory "
9109 "structure was:"
9110 msgstr ""
9111
9112 #. type: verbatim
9113 #: ../src/guestfs-actions.pod:1737 ../fish/guestfish-actions.pod:1170
9114 #, no-wrap
9115 msgid ""
9116 " /tmp/a\n"
9117 " /tmp/b\n"
9118 " /tmp/c/d\n"
9119 "\n"
9120 msgstr ""
9121
9122 #. type: textblock
9123 #: ../src/guestfs-actions.pod:1741
9124 msgid ""
9125 "then the returned list from C<guestfs_find> C</tmp> would be 4 elements:"
9126 msgstr ""
9127
9128 #. type: verbatim
9129 #: ../src/guestfs-actions.pod:1744 ../fish/guestfish-actions.pod:1177
9130 #, no-wrap
9131 msgid ""
9132 " a\n"
9133 " b\n"
9134 " c\n"
9135 " c/d\n"
9136 "\n"
9137 msgstr ""
9138
9139 #. type: textblock
9140 #: ../src/guestfs-actions.pod:1749 ../fish/guestfish-actions.pod:1182
9141 msgid "If C<directory> is not a directory, then this command returns an error."
9142 msgstr ""
9143
9144 #. type: textblock
9145 #: ../src/guestfs-actions.pod:1752 ../fish/guestfish-actions.pod:1185
9146 msgid "The returned list is sorted."
9147 msgstr ""
9148
9149 #. type: textblock
9150 #: ../src/guestfs-actions.pod:1754
9151 msgid "See also C<guestfs_find0>."
9152 msgstr ""
9153
9154 #. type: textblock
9155 #: ../src/guestfs-actions.pod:1763 ../src/guestfs-actions.pod:4097
9156 #: ../src/guestfs-actions.pod:5656
9157 msgid "(Added in 1.0.27)"
9158 msgstr ""
9159
9160 #. type: =head2
9161 #: ../src/guestfs-actions.pod:1765
9162 msgid "guestfs_find0"
9163 msgstr ""
9164
9165 #. type: verbatim
9166 #: ../src/guestfs-actions.pod:1767
9167 #, no-wrap
9168 msgid ""
9169 " int\n"
9170 " guestfs_find0 (guestfs_h *g,\n"
9171 "                const char *directory,\n"
9172 "                const char *files);\n"
9173 "\n"
9174 msgstr ""
9175
9176 #. type: textblock
9177 #: ../src/guestfs-actions.pod:1772 ../fish/guestfish-actions.pod:1196
9178 msgid ""
9179 "This command lists out all files and directories, recursively, starting at "
9180 "C<directory>, placing the resulting list in the external file called "
9181 "C<files>."
9182 msgstr ""
9183
9184 #. type: textblock
9185 #: ../src/guestfs-actions.pod:1776
9186 msgid ""
9187 "This command works the same way as C<guestfs_find> with the following "
9188 "exceptions:"
9189 msgstr ""
9190
9191 #. type: textblock
9192 #: ../src/guestfs-actions.pod:1783 ../fish/guestfish-actions.pod:1207
9193 msgid "The resulting list is written to an external file."
9194 msgstr ""
9195
9196 #. type: textblock
9197 #: ../src/guestfs-actions.pod:1787 ../fish/guestfish-actions.pod:1211
9198 msgid ""
9199 "Items (filenames) in the result are separated by C<\\0> characters.  See "
9200 "L<find(1)> option I<-print0>."
9201 msgstr ""
9202
9203 #. type: textblock
9204 #: ../src/guestfs-actions.pod:1792 ../fish/guestfish-actions.pod:1216
9205 msgid "This command is not limited in the number of names that it can return."
9206 msgstr ""
9207
9208 #. type: textblock
9209 #: ../src/guestfs-actions.pod:1797 ../fish/guestfish-actions.pod:1221
9210 msgid "The result list is not sorted."
9211 msgstr ""
9212
9213 #. type: textblock
9214 #: ../src/guestfs-actions.pod:1803
9215 msgid "(Added in 1.0.74)"
9216 msgstr ""
9217
9218 #. type: =head2
9219 #: ../src/guestfs-actions.pod:1805
9220 msgid "guestfs_findfs_label"
9221 msgstr ""
9222
9223 #. type: verbatim
9224 #: ../src/guestfs-actions.pod:1807
9225 #, no-wrap
9226 msgid ""
9227 " char *\n"
9228 " guestfs_findfs_label (guestfs_h *g,\n"
9229 "                       const char *label);\n"
9230 "\n"
9231 msgstr ""
9232
9233 #. type: textblock
9234 #: ../src/guestfs-actions.pod:1811 ../fish/guestfish-actions.pod:1231
9235 msgid ""
9236 "This command searches the filesystems and returns the one which has the "
9237 "given label.  An error is returned if no such filesystem can be found."
9238 msgstr ""
9239
9240 #. type: textblock
9241 #: ../src/guestfs-actions.pod:1815
9242 msgid "To find the label of a filesystem, use C<guestfs_vfs_label>."
9243 msgstr ""
9244
9245 #. type: =head2
9246 #: ../src/guestfs-actions.pod:1822
9247 msgid "guestfs_findfs_uuid"
9248 msgstr ""
9249
9250 #. type: verbatim
9251 #: ../src/guestfs-actions.pod:1824
9252 #, no-wrap
9253 msgid ""
9254 " char *\n"
9255 " guestfs_findfs_uuid (guestfs_h *g,\n"
9256 "                      const char *uuid);\n"
9257 "\n"
9258 msgstr ""
9259
9260 #. type: textblock
9261 #: ../src/guestfs-actions.pod:1828 ../fish/guestfish-actions.pod:1241
9262 msgid ""
9263 "This command searches the filesystems and returns the one which has the "
9264 "given UUID.  An error is returned if no such filesystem can be found."
9265 msgstr ""
9266
9267 #. type: textblock
9268 #: ../src/guestfs-actions.pod:1832
9269 msgid "To find the UUID of a filesystem, use C<guestfs_vfs_uuid>."
9270 msgstr ""
9271
9272 #. type: =head2
9273 #: ../src/guestfs-actions.pod:1839
9274 msgid "guestfs_fsck"
9275 msgstr ""
9276
9277 #. type: verbatim
9278 #: ../src/guestfs-actions.pod:1841
9279 #, no-wrap
9280 msgid ""
9281 " int\n"
9282 " guestfs_fsck (guestfs_h *g,\n"
9283 "               const char *fstype,\n"
9284 "               const char *device);\n"
9285 "\n"
9286 msgstr ""
9287
9288 #. type: textblock
9289 #: ../src/guestfs-actions.pod:1846 ../fish/guestfish-actions.pod:1251
9290 msgid ""
9291 "This runs the filesystem checker (fsck) on C<device> which should have "
9292 "filesystem type C<fstype>."
9293 msgstr ""
9294
9295 #. type: textblock
9296 #: ../src/guestfs-actions.pod:1849 ../fish/guestfish-actions.pod:1254
9297 msgid ""
9298 "The returned integer is the status.  See L<fsck(8)> for the list of status "
9299 "codes from C<fsck>."
9300 msgstr ""
9301
9302 #. type: textblock
9303 #: ../src/guestfs-actions.pod:1858 ../fish/guestfish-actions.pod:1263
9304 msgid "Multiple status codes can be summed together."
9305 msgstr ""
9306
9307 #. type: textblock
9308 #: ../src/guestfs-actions.pod:1862 ../fish/guestfish-actions.pod:1267
9309 msgid ""
9310 "A non-zero return code can mean \"success\", for example if errors have been "
9311 "corrected on the filesystem."
9312 msgstr ""
9313
9314 #. type: textblock
9315 #: ../src/guestfs-actions.pod:1867 ../fish/guestfish-actions.pod:1272
9316 msgid "Checking or repairing NTFS volumes is not supported (by linux-ntfs)."
9317 msgstr ""
9318
9319 #. type: textblock
9320 #: ../src/guestfs-actions.pod:1872 ../fish/guestfish-actions.pod:1277
9321 msgid ""
9322 "This command is entirely equivalent to running C<fsck -a -t fstype device>."
9323 msgstr ""
9324
9325 #. type: textblock
9326 #: ../src/guestfs-actions.pod:1876 ../src/guestfs-actions.pod:7387
9327 msgid "(Added in 1.0.16)"
9328 msgstr ""
9329
9330 #. type: =head2
9331 #: ../src/guestfs-actions.pod:1878
9332 msgid "guestfs_get_append"
9333 msgstr ""
9334
9335 #. type: verbatim
9336 #: ../src/guestfs-actions.pod:1880
9337 #, no-wrap
9338 msgid ""
9339 " const char *\n"
9340 " guestfs_get_append (guestfs_h *g);\n"
9341 "\n"
9342 msgstr ""
9343
9344 #. type: textblock
9345 #: ../src/guestfs-actions.pod:1883 ../fish/guestfish-actions.pod:1283
9346 msgid ""
9347 "Return the additional kernel options which are added to the guest kernel "
9348 "command line."
9349 msgstr ""
9350
9351 #. type: textblock
9352 #: ../src/guestfs-actions.pod:1886 ../fish/guestfish-actions.pod:1286
9353 msgid "If C<NULL> then no options are added."
9354 msgstr ""
9355
9356 #. type: textblock
9357 #: ../src/guestfs-actions.pod:1888
9358 msgid ""
9359 "This function returns a string which may be NULL.  There is no way to return "
9360 "an error from this function.  The string is owned by the guest handle and "
9361 "must I<not> be freed."
9362 msgstr ""
9363
9364 #. type: textblock
9365 #: ../src/guestfs-actions.pod:1892 ../src/guestfs-actions.pod:5334
9366 #: ../src/guestfs-actions.pod:5814 ../src/guestfs-actions.pod:6235
9367 #: ../src/guestfs-actions.pod:6254 ../src/guestfs-actions.pod:6270
9368 #: ../src/guestfs-actions.pod:6294 ../src/guestfs-actions.pod:7051
9369 #: ../src/guestfs-actions.pod:7069 ../src/guestfs-actions.pod:7430
9370 msgid "(Added in 1.0.26)"
9371 msgstr ""
9372
9373 #. type: =head2
9374 #: ../src/guestfs-actions.pod:1894
9375 msgid "guestfs_get_attach_method"
9376 msgstr ""
9377
9378 #. type: verbatim
9379 #: ../src/guestfs-actions.pod:1896
9380 #, no-wrap
9381 msgid ""
9382 " char *\n"
9383 " guestfs_get_attach_method (guestfs_h *g);\n"
9384 "\n"
9385 msgstr ""
9386
9387 #. type: textblock
9388 #: ../src/guestfs-actions.pod:1899
9389 msgid "Return the current attach method.  See C<guestfs_set_attach_method>."
9390 msgstr ""
9391
9392 #. type: =head2
9393 #: ../src/guestfs-actions.pod:1904
9394 msgid "guestfs_get_autosync"
9395 msgstr ""
9396
9397 #. type: verbatim
9398 #: ../src/guestfs-actions.pod:1906
9399 #, no-wrap
9400 msgid ""
9401 " int\n"
9402 " guestfs_get_autosync (guestfs_h *g);\n"
9403 "\n"
9404 msgstr ""
9405
9406 #. type: textblock
9407 #: ../src/guestfs-actions.pod:1909 ../fish/guestfish-actions.pod:1298
9408 msgid "Get the autosync flag."
9409 msgstr ""
9410
9411 #. type: =head2
9412 #: ../src/guestfs-actions.pod:1915
9413 msgid "guestfs_get_direct"
9414 msgstr ""
9415
9416 #. type: verbatim
9417 #: ../src/guestfs-actions.pod:1917
9418 #, no-wrap
9419 msgid ""
9420 " int\n"
9421 " guestfs_get_direct (guestfs_h *g);\n"
9422 "\n"
9423 msgstr ""
9424
9425 #. type: textblock
9426 #: ../src/guestfs-actions.pod:1920 ../fish/guestfish-actions.pod:1304
9427 msgid "Return the direct appliance mode flag."
9428 msgstr ""
9429
9430 #. type: textblock
9431 #: ../src/guestfs-actions.pod:1924 ../src/guestfs-actions.pod:5883
9432 msgid "(Added in 1.0.72)"
9433 msgstr ""
9434
9435 #. type: =head2
9436 #: ../src/guestfs-actions.pod:1926
9437 msgid "guestfs_get_e2label"
9438 msgstr ""
9439
9440 #. type: verbatim
9441 #: ../src/guestfs-actions.pod:1928
9442 #, no-wrap
9443 msgid ""
9444 " char *\n"
9445 " guestfs_get_e2label (guestfs_h *g,\n"
9446 "                      const char *device);\n"
9447 "\n"
9448 msgstr ""
9449
9450 #. type: textblock
9451 #: ../src/guestfs-actions.pod:1932 ../fish/guestfish-actions.pod:1310
9452 msgid ""
9453 "This returns the ext2/3/4 filesystem label of the filesystem on C<device>."
9454 msgstr ""
9455
9456 #. type: textblock
9457 #: ../src/guestfs-actions.pod:1938 ../fish/guestfish-actions.pod:1313
9458 msgid ""
9459 "This function is deprecated.  In new code, use the C<vfs_label> call instead."
9460 msgstr ""
9461
9462 #. type: textblock
9463 #: ../src/guestfs-actions.pod:1945 ../src/guestfs-actions.pod:1966
9464 #: ../src/guestfs-actions.pod:5901 ../src/guestfs-actions.pod:5920
9465 msgid "(Added in 1.0.15)"
9466 msgstr ""
9467
9468 #. type: =head2
9469 #: ../src/guestfs-actions.pod:1947
9470 msgid "guestfs_get_e2uuid"
9471 msgstr ""
9472
9473 #. type: verbatim
9474 #: ../src/guestfs-actions.pod:1949
9475 #, no-wrap
9476 msgid ""
9477 " char *\n"
9478 " guestfs_get_e2uuid (guestfs_h *g,\n"
9479 "                     const char *device);\n"
9480 "\n"
9481 msgstr ""
9482
9483 #. type: textblock
9484 #: ../src/guestfs-actions.pod:1953 ../fish/guestfish-actions.pod:1324
9485 msgid ""
9486 "This returns the ext2/3/4 filesystem UUID of the filesystem on C<device>."
9487 msgstr ""
9488
9489 #. type: textblock
9490 #: ../src/guestfs-actions.pod:1959 ../fish/guestfish-actions.pod:1327
9491 msgid ""
9492 "This function is deprecated.  In new code, use the C<vfs_uuid> call instead."
9493 msgstr ""
9494
9495 #. type: =head2
9496 #: ../src/guestfs-actions.pod:1968
9497 msgid "guestfs_get_memsize"
9498 msgstr ""
9499
9500 #. type: verbatim
9501 #: ../src/guestfs-actions.pod:1970
9502 #, no-wrap
9503 msgid ""
9504 " int\n"
9505 " guestfs_get_memsize (guestfs_h *g);\n"
9506 "\n"
9507 msgstr ""
9508
9509 #. type: textblock
9510 #: ../src/guestfs-actions.pod:1973 ../fish/guestfish-actions.pod:1338
9511 msgid ""
9512 "This gets the memory size in megabytes allocated to the qemu subprocess."
9513 msgstr ""
9514
9515 #. type: textblock
9516 #: ../src/guestfs-actions.pod:1976
9517 msgid ""
9518 "If C<guestfs_set_memsize> was not called on this handle, and if "
9519 "C<LIBGUESTFS_MEMSIZE> was not set, then this returns the compiled-in default "
9520 "value for memsize."
9521 msgstr ""
9522
9523 #. type: textblock
9524 #: ../src/guestfs-actions.pod:1980 ../src/guestfs-actions.pod:2061
9525 #: ../src/guestfs-actions.pod:5936 ../src/guestfs-actions.pod:6043
9526 #: ../fish/guestfish-actions.pod:1345 ../fish/guestfish-actions.pod:1396
9527 #: ../fish/guestfish-actions.pod:4006 ../fish/guestfish-actions.pod:4093
9528 msgid ""
9529 "For more information on the architecture of libguestfs, see L<guestfs(3)>."
9530 msgstr ""
9531
9532 #. type: textblock
9533 #: ../src/guestfs-actions.pod:1985 ../src/guestfs-actions.pod:4388
9534 #: ../src/guestfs-actions.pod:4585 ../src/guestfs-actions.pod:4604
9535 #: ../src/guestfs-actions.pod:4623 ../src/guestfs-actions.pod:4635
9536 #: ../src/guestfs-actions.pod:4652 ../src/guestfs-actions.pod:4665
9537 #: ../src/guestfs-actions.pod:5559 ../src/guestfs-actions.pod:5941
9538 #: ../src/guestfs-actions.pod:6202 ../src/guestfs-actions.pod:6817
9539 msgid "(Added in 1.0.55)"
9540 msgstr ""
9541
9542 #. type: =head2
9543 #: ../src/guestfs-actions.pod:1987
9544 msgid "guestfs_get_network"
9545 msgstr ""
9546
9547 #. type: verbatim
9548 #: ../src/guestfs-actions.pod:1989
9549 #, no-wrap
9550 msgid ""
9551 " int\n"
9552 " guestfs_get_network (guestfs_h *g);\n"
9553 "\n"
9554 msgstr ""
9555
9556 #. type: textblock
9557 #: ../src/guestfs-actions.pod:1992 ../fish/guestfish-actions.pod:1352
9558 msgid "This returns the enable network flag."
9559 msgstr ""
9560
9561 #. type: textblock
9562 #: ../src/guestfs-actions.pod:1996 ../src/guestfs-actions.pod:5960
9563 msgid "(Added in 1.5.4)"
9564 msgstr ""
9565
9566 #. type: =head2
9567 #: ../src/guestfs-actions.pod:1998
9568 msgid "guestfs_get_path"
9569 msgstr ""
9570
9571 #. type: verbatim
9572 #: ../src/guestfs-actions.pod:2000
9573 #, no-wrap
9574 msgid ""
9575 " const char *\n"
9576 " guestfs_get_path (guestfs_h *g);\n"
9577 "\n"
9578 msgstr ""
9579
9580 #. type: textblock
9581 #: ../src/guestfs-actions.pod:2003 ../fish/guestfish-actions.pod:1358
9582 msgid "Return the current search path."
9583 msgstr ""
9584
9585 #. type: textblock
9586 #: ../src/guestfs-actions.pod:2005 ../fish/guestfish-actions.pod:1360
9587 msgid ""
9588 "This is always non-NULL.  If it wasn't set already, then this will return "
9589 "the default path."
9590 msgstr ""
9591
9592 #. type: textblock
9593 #: ../src/guestfs-actions.pod:2008 ../src/guestfs-actions.pod:2037
9594 msgid ""
9595 "This function returns a string, or NULL on error.  The string is owned by "
9596 "the guest handle and must I<not> be freed."
9597 msgstr ""
9598
9599 #. type: =head2
9600 #: ../src/guestfs-actions.pod:2013
9601 msgid "guestfs_get_pid"
9602 msgstr ""
9603
9604 #. type: verbatim
9605 #: ../src/guestfs-actions.pod:2015
9606 #, no-wrap
9607 msgid ""
9608 " int\n"
9609 " guestfs_get_pid (guestfs_h *g);\n"
9610 "\n"
9611 msgstr ""
9612
9613 #. type: textblock
9614 #: ../src/guestfs-actions.pod:2018 ../fish/guestfish-actions.pod:1369
9615 msgid ""
9616 "Return the process ID of the qemu subprocess.  If there is no qemu "
9617 "subprocess, then this will return an error."
9618 msgstr ""
9619
9620 #. type: textblock
9621 #: ../src/guestfs-actions.pod:2021 ../fish/guestfish-actions.pod:1372
9622 msgid "This is an internal call used for debugging and testing."
9623 msgstr ""
9624
9625 #. type: textblock
9626 #: ../src/guestfs-actions.pod:2025
9627 msgid "(Added in 1.0.56)"
9628 msgstr ""
9629
9630 #. type: =head2
9631 #: ../src/guestfs-actions.pod:2027
9632 msgid "guestfs_get_qemu"
9633 msgstr ""
9634
9635 #. type: verbatim
9636 #: ../src/guestfs-actions.pod:2029
9637 #, no-wrap
9638 msgid ""
9639 " const char *\n"
9640 " guestfs_get_qemu (guestfs_h *g);\n"
9641 "\n"
9642 msgstr ""
9643
9644 #. type: textblock
9645 #: ../src/guestfs-actions.pod:2032 ../fish/guestfish-actions.pod:1378
9646 msgid "Return the current qemu binary."
9647 msgstr ""
9648
9649 #. type: textblock
9650 #: ../src/guestfs-actions.pod:2034 ../fish/guestfish-actions.pod:1380
9651 msgid ""
9652 "This is always non-NULL.  If it wasn't set already, then this will return "
9653 "the default qemu binary name."
9654 msgstr ""
9655
9656 #. type: textblock
9657 #: ../src/guestfs-actions.pod:2040 ../src/guestfs-actions.pod:6005
9658 msgid "(Added in 1.0.6)"
9659 msgstr ""
9660
9661 #. type: =head2
9662 #: ../src/guestfs-actions.pod:2042
9663 msgid "guestfs_get_recovery_proc"
9664 msgstr ""
9665
9666 #. type: verbatim
9667 #: ../src/guestfs-actions.pod:2044
9668 #, no-wrap
9669 msgid ""
9670 " int\n"
9671 " guestfs_get_recovery_proc (guestfs_h *g);\n"
9672 "\n"
9673 msgstr ""
9674
9675 #. type: textblock
9676 #: ../src/guestfs-actions.pod:2047 ../fish/guestfish-actions.pod:1387
9677 msgid "Return the recovery process enabled flag."
9678 msgstr ""
9679
9680 #. type: textblock
9681 #: ../src/guestfs-actions.pod:2051 ../src/guestfs-actions.pod:3498
9682 #: ../src/guestfs-actions.pod:3795 ../src/guestfs-actions.pod:4195
9683 #: ../src/guestfs-actions.pod:4227 ../src/guestfs-actions.pod:5264
9684 #: ../src/guestfs-actions.pod:5607 ../src/guestfs-actions.pod:6029
9685 #: ../src/guestfs-actions.pod:6720 ../src/guestfs-actions.pod:6740
9686 #: ../src/guestfs-actions.pod:6932
9687 msgid "(Added in 1.0.77)"
9688 msgstr ""
9689
9690 #. type: =head2
9691 #: ../src/guestfs-actions.pod:2053
9692 msgid "guestfs_get_selinux"
9693 msgstr ""
9694
9695 #. type: verbatim
9696 #: ../src/guestfs-actions.pod:2055
9697 #, no-wrap
9698 msgid ""
9699 " int\n"
9700 " guestfs_get_selinux (guestfs_h *g);\n"
9701 "\n"
9702 msgstr ""
9703
9704 #. type: textblock
9705 #: ../src/guestfs-actions.pod:2058
9706 msgid ""
9707 "This returns the current setting of the selinux flag which is passed to the "
9708 "appliance at boot time.  See C<guestfs_set_selinux>."
9709 msgstr ""
9710
9711 #. type: textblock
9712 #: ../src/guestfs-actions.pod:2066 ../src/guestfs-actions.pod:2129
9713 #: ../src/guestfs-actions.pod:6048 ../src/guestfs-actions.pod:6106
9714 msgid "(Added in 1.0.67)"
9715 msgstr ""
9716
9717 #. type: =head2
9718 #: ../src/guestfs-actions.pod:2068
9719 msgid "guestfs_get_state"
9720 msgstr ""
9721
9722 #. type: verbatim
9723 #: ../src/guestfs-actions.pod:2070
9724 #, no-wrap
9725 msgid ""
9726 " int\n"
9727 " guestfs_get_state (guestfs_h *g);\n"
9728 "\n"
9729 msgstr ""
9730
9731 #. type: textblock
9732 #: ../src/guestfs-actions.pod:2073 ../fish/guestfish-actions.pod:1403
9733 msgid ""
9734 "This returns the current state as an opaque integer.  This is only useful "
9735 "for printing debug and internal error messages."
9736 msgstr ""
9737
9738 #. type: textblock
9739 #: ../src/guestfs-actions.pod:2076 ../src/guestfs-actions.pod:3296
9740 #: ../src/guestfs-actions.pod:3325 ../src/guestfs-actions.pod:3386
9741 #: ../src/guestfs-actions.pod:3413 ../fish/guestfish-actions.pod:1406
9742 #: ../fish/guestfish-actions.pod:2320 ../fish/guestfish-actions.pod:2338
9743 #: ../fish/guestfish-actions.pod:2376 ../fish/guestfish-actions.pod:2392
9744 msgid "For more information on states, see L<guestfs(3)>."
9745 msgstr ""
9746
9747 #. type: =head2
9748 #: ../src/guestfs-actions.pod:2082
9749 msgid "guestfs_get_trace"
9750 msgstr ""
9751
9752 #. type: verbatim
9753 #: ../src/guestfs-actions.pod:2084
9754 #, no-wrap
9755 msgid ""
9756 " int\n"
9757 " guestfs_get_trace (guestfs_h *g);\n"
9758 "\n"
9759 msgstr ""
9760
9761 #. type: textblock
9762 #: ../src/guestfs-actions.pod:2087 ../fish/guestfish-actions.pod:1412
9763 msgid "Return the command trace flag."
9764 msgstr ""
9765
9766 #. type: =head2
9767 #: ../src/guestfs-actions.pod:2093
9768 msgid "guestfs_get_umask"
9769 msgstr ""
9770
9771 #. type: verbatim
9772 #: ../src/guestfs-actions.pod:2095
9773 #, no-wrap
9774 msgid ""
9775 " int\n"
9776 " guestfs_get_umask (guestfs_h *g);\n"
9777 "\n"
9778 msgstr ""
9779
9780 #. type: textblock
9781 #: ../src/guestfs-actions.pod:2098
9782 msgid ""
9783 "Return the current umask.  By default the umask is C<022> unless it has been "
9784 "set by calling C<guestfs_umask>."
9785 msgstr ""
9786
9787 #. type: =head2
9788 #: ../src/guestfs-actions.pod:2105
9789 msgid "guestfs_get_verbose"
9790 msgstr ""
9791
9792 #. type: verbatim
9793 #: ../src/guestfs-actions.pod:2107
9794 #, no-wrap
9795 msgid ""
9796 " int\n"
9797 " guestfs_get_verbose (guestfs_h *g);\n"
9798 "\n"
9799 msgstr ""
9800
9801 #. type: textblock
9802 #: ../src/guestfs-actions.pod:2110 ../fish/guestfish-actions.pod:1425
9803 msgid "This returns the verbose messages flag."
9804 msgstr ""
9805
9806 #. type: =head2
9807 #: ../src/guestfs-actions.pod:2116
9808 msgid "guestfs_getcon"
9809 msgstr ""
9810
9811 #. type: verbatim
9812 #: ../src/guestfs-actions.pod:2118
9813 #, no-wrap
9814 msgid ""
9815 " char *\n"
9816 " guestfs_getcon (guestfs_h *g);\n"
9817 "\n"
9818 msgstr ""
9819
9820 #. type: textblock
9821 #: ../src/guestfs-actions.pod:2121 ../fish/guestfish-actions.pod:1431
9822 msgid "This gets the SELinux security context of the daemon."
9823 msgstr ""
9824
9825 #. type: textblock
9826 #: ../src/guestfs-actions.pod:2123
9827 msgid ""
9828 "See the documentation about SELINUX in L<guestfs(3)>, and C<guestfs_setcon>"
9829 msgstr ""
9830
9831 #. type: =head2
9832 #: ../src/guestfs-actions.pod:2131
9833 msgid "guestfs_getxattr"
9834 msgstr ""
9835
9836 #. type: verbatim
9837 #: ../src/guestfs-actions.pod:2133
9838 #, no-wrap
9839 msgid ""
9840 " char *\n"
9841 " guestfs_getxattr (guestfs_h *g,\n"
9842 "                   const char *path,\n"
9843 "                   const char *name,\n"
9844 "                   size_t *size_r);\n"
9845 "\n"
9846 msgstr ""
9847
9848 #. type: textblock
9849 #: ../src/guestfs-actions.pod:2139
9850 msgid ""
9851 "Get a single extended attribute from file C<path> named C<name>.  This call "
9852 "follows symlinks.  If you want to lookup an extended attribute for the "
9853 "symlink itself, use C<guestfs_lgetxattr>."
9854 msgstr ""
9855
9856 #. type: textblock
9857 #: ../src/guestfs-actions.pod:2143 ../src/guestfs-actions.pod:3512
9858 msgid ""
9859 "Normally it is better to get all extended attributes from a file in one go "
9860 "by calling C<guestfs_getxattrs>.  However some Linux filesystem "
9861 "implementations are buggy and do not provide a way to list out attributes.  "
9862 "For these filesystems (notably ntfs-3g)  you have to know the names of the "
9863 "extended attributes you want in advance and call this function."
9864 msgstr ""
9865
9866 #. type: textblock
9867 #: ../src/guestfs-actions.pod:2150 ../src/guestfs-actions.pod:3519
9868 #: ../fish/guestfish-actions.pod:1451 ../fish/guestfish-actions.pod:2457
9869 msgid ""
9870 "Extended attribute values are blobs of binary data.  If there is no extended "
9871 "attribute named C<name>, this returns an error."
9872 msgstr ""
9873
9874 #. type: textblock
9875 #: ../src/guestfs-actions.pod:2153
9876 msgid "See also: C<guestfs_getxattrs>, C<guestfs_lgetxattr>, L<attr(5)>."
9877 msgstr ""
9878
9879 #. type: textblock
9880 #: ../src/guestfs-actions.pod:2155 ../src/guestfs-actions.pod:2346
9881 #: ../src/guestfs-actions.pod:3524 ../src/guestfs-actions.pod:5257
9882 #: ../src/guestfs-actions.pod:5283 ../src/guestfs-actions.pod:5464
9883 msgid ""
9884 "This function returns a buffer, or NULL on error.  The size of the returned "
9885 "buffer is written to C<*size_r>.  I<The caller must free the returned buffer "
9886 "after use>."
9887 msgstr ""
9888
9889 #. type: textblock
9890 #: ../src/guestfs-actions.pod:2159 ../src/guestfs-actions.pod:3528
9891 msgid "(Added in 1.7.24)"
9892 msgstr ""
9893
9894 #. type: =head2
9895 #: ../src/guestfs-actions.pod:2161
9896 msgid "guestfs_getxattrs"
9897 msgstr ""
9898
9899 #. type: verbatim
9900 #: ../src/guestfs-actions.pod:2163
9901 #, no-wrap
9902 msgid ""
9903 " struct guestfs_xattr_list *\n"
9904 " guestfs_getxattrs (guestfs_h *g,\n"
9905 "                    const char *path);\n"
9906 "\n"
9907 msgstr ""
9908
9909 #. type: textblock
9910 #: ../src/guestfs-actions.pod:2167 ../fish/guestfish-actions.pod:1460
9911 msgid ""
9912 "This call lists the extended attributes of the file or directory C<path>."
9913 msgstr ""
9914
9915 #. type: textblock
9916 #: ../src/guestfs-actions.pod:2170 ../fish/guestfish-actions.pod:1463
9917 msgid ""
9918 "At the system call level, this is a combination of the L<listxattr(2)> and "
9919 "L<getxattr(2)> calls."
9920 msgstr ""
9921
9922 #. type: textblock
9923 #: ../src/guestfs-actions.pod:2173
9924 msgid "See also: C<guestfs_lgetxattrs>, L<attr(5)>."
9925 msgstr ""
9926
9927 #. type: textblock
9928 #: ../src/guestfs-actions.pod:2175 ../src/guestfs-actions.pod:3540
9929 #: ../src/guestfs-actions.pod:4191
9930 msgid ""
9931 "This function returns a C<struct guestfs_xattr_list *>, or NULL if there was "
9932 "an error.  I<The caller must call C<guestfs_free_xattr_list> after use>."
9933 msgstr ""
9934
9935 #. type: textblock
9936 #: ../src/guestfs-actions.pod:2179 ../src/guestfs-actions.pod:3544
9937 #: ../src/guestfs-actions.pod:3709 ../src/guestfs-actions.pod:3745
9938 #: ../src/guestfs-actions.pod:5637 ../src/guestfs-actions.pod:6125
9939 #: ../src/guestfs-actions.pod:7495
9940 msgid "(Added in 1.0.59)"
9941 msgstr ""
9942
9943 #. type: =head2
9944 #: ../src/guestfs-actions.pod:2181
9945 msgid "guestfs_glob_expand"
9946 msgstr ""
9947
9948 #. type: verbatim
9949 #: ../src/guestfs-actions.pod:2183
9950 #, no-wrap
9951 msgid ""
9952 " char **\n"
9953 " guestfs_glob_expand (guestfs_h *g,\n"
9954 "                      const char *pattern);\n"
9955 "\n"
9956 msgstr ""
9957
9958 #. type: textblock
9959 #: ../src/guestfs-actions.pod:2187 ../fish/guestfish-actions.pod:1472
9960 msgid ""
9961 "This command searches for all the pathnames matching C<pattern> according to "
9962 "the wildcard expansion rules used by the shell."
9963 msgstr ""
9964
9965 #. type: textblock
9966 #: ../src/guestfs-actions.pod:2191 ../fish/guestfish-actions.pod:1476
9967 msgid ""
9968 "If no paths match, then this returns an empty list (note: not an error)."
9969 msgstr ""
9970
9971 #. type: textblock
9972 #: ../src/guestfs-actions.pod:2194 ../fish/guestfish-actions.pod:1479
9973 msgid ""
9974 "It is just a wrapper around the C L<glob(3)> function with flags C<GLOB_MARK|"
9975 "GLOB_BRACE>.  See that manual page for more details."
9976 msgstr ""
9977
9978 #. type: textblock
9979 #: ../src/guestfs-actions.pod:2202 ../src/guestfs-actions.pod:6318
9980 #: ../src/guestfs-actions.pod:6335
9981 msgid "(Added in 1.0.50)"
9982 msgstr ""
9983
9984 #. type: =head2
9985 #: ../src/guestfs-actions.pod:2204
9986 msgid "guestfs_grep"
9987 msgstr ""
9988
9989 #. type: verbatim
9990 #: ../src/guestfs-actions.pod:2206
9991 #, no-wrap
9992 msgid ""
9993 " char **\n"
9994 " guestfs_grep (guestfs_h *g,\n"
9995 "               const char *regex,\n"
9996 "               const char *path);\n"
9997 "\n"
9998 msgstr ""
9999
10000 #. type: textblock
10001 #: ../src/guestfs-actions.pod:2211 ../fish/guestfish-actions.pod:1487
10002 msgid "This calls the external C<grep> program and returns the matching lines."
10003 msgstr ""
10004
10005 #. type: =head2
10006 #: ../src/guestfs-actions.pod:2223
10007 msgid "guestfs_grepi"
10008 msgstr ""
10009
10010 #. type: verbatim
10011 #: ../src/guestfs-actions.pod:2225
10012 #, no-wrap
10013 msgid ""
10014 " char **\n"
10015 " guestfs_grepi (guestfs_h *g,\n"
10016 "                const char *regex,\n"
10017 "                const char *path);\n"
10018 "\n"
10019 msgstr ""
10020
10021 #. type: textblock
10022 #: ../src/guestfs-actions.pod:2230 ../fish/guestfish-actions.pod:1497
10023 msgid ""
10024 "This calls the external C<grep -i> program and returns the matching lines."
10025 msgstr ""
10026
10027 #. type: =head2
10028 #: ../src/guestfs-actions.pod:2242
10029 msgid "guestfs_grub_install"
10030 msgstr ""
10031
10032 #. type: verbatim
10033 #: ../src/guestfs-actions.pod:2244
10034 #, no-wrap
10035 msgid ""
10036 " int\n"
10037 " guestfs_grub_install (guestfs_h *g,\n"
10038 "                       const char *root,\n"
10039 "                       const char *device);\n"
10040 "\n"
10041 msgstr ""
10042
10043 #. type: textblock
10044 #: ../src/guestfs-actions.pod:2249 ../fish/guestfish-actions.pod:1507
10045 msgid ""
10046 "This command installs GRUB (the Grand Unified Bootloader) on C<device>, with "
10047 "the root directory being C<root>."
10048 msgstr ""
10049
10050 #. type: textblock
10051 #: ../src/guestfs-actions.pod:2252 ../fish/guestfish-actions.pod:1510
10052 msgid ""
10053 "Note: If grub-install reports the error \"No suitable drive was found in the "
10054 "generated device map.\" it may be that you need to create a C</boot/grub/"
10055 "device.map> file first that contains the mapping between grub device names "
10056 "and Linux device names.  It is usually sufficient to create a file "
10057 "containing:"
10058 msgstr ""
10059
10060 #. type: verbatim
10061 #: ../src/guestfs-actions.pod:2259 ../fish/guestfish-actions.pod:1517
10062 #, no-wrap
10063 msgid ""
10064 " (hd0) /dev/vda\n"
10065 "\n"
10066 msgstr ""
10067
10068 #. type: textblock
10069 #: ../src/guestfs-actions.pod:2261 ../fish/guestfish-actions.pod:1519
10070 msgid "replacing C</dev/vda> with the name of the installation device."
10071 msgstr ""
10072
10073 #. type: textblock
10074 #: ../src/guestfs-actions.pod:2265
10075 msgid "(Added in 1.0.17)"
10076 msgstr ""
10077
10078 #. type: =head2
10079 #: ../src/guestfs-actions.pod:2267
10080 msgid "guestfs_head"
10081 msgstr ""
10082
10083 #. type: verbatim
10084 #: ../src/guestfs-actions.pod:2269
10085 #, no-wrap
10086 msgid ""
10087 " char **\n"
10088 " guestfs_head (guestfs_h *g,\n"
10089 "               const char *path);\n"
10090 "\n"
10091 msgstr ""
10092
10093 #. type: textblock
10094 #: ../src/guestfs-actions.pod:2273 ../fish/guestfish-actions.pod:1525
10095 msgid ""
10096 "This command returns up to the first 10 lines of a file as a list of strings."
10097 msgstr ""
10098
10099 #. type: =head2
10100 #: ../src/guestfs-actions.pod:2285
10101 msgid "guestfs_head_n"
10102 msgstr ""
10103
10104 #. type: verbatim
10105 #: ../src/guestfs-actions.pod:2287
10106 #, no-wrap
10107 msgid ""
10108 " char **\n"
10109 " guestfs_head_n (guestfs_h *g,\n"
10110 "                 int nrlines,\n"
10111 "                 const char *path);\n"
10112 "\n"
10113 msgstr ""
10114
10115 #. type: textblock
10116 #: ../src/guestfs-actions.pod:2292 ../fish/guestfish-actions.pod:1535
10117 msgid ""
10118 "If the parameter C<nrlines> is a positive number, this returns the first "
10119 "C<nrlines> lines of the file C<path>."
10120 msgstr ""
10121
10122 #. type: textblock
10123 #: ../src/guestfs-actions.pod:2295 ../fish/guestfish-actions.pod:1538
10124 msgid ""
10125 "If the parameter C<nrlines> is a negative number, this returns lines from "
10126 "the file C<path>, excluding the last C<nrlines> lines."
10127 msgstr ""
10128
10129 #. type: textblock
10130 #: ../src/guestfs-actions.pod:2298 ../src/guestfs-actions.pod:6615
10131 #: ../fish/guestfish-actions.pod:1541 ../fish/guestfish-actions.pod:4471
10132 msgid "If the parameter C<nrlines> is zero, this returns an empty list."
10133 msgstr ""
10134
10135 #. type: =head2
10136 #: ../src/guestfs-actions.pod:2309
10137 msgid "guestfs_hexdump"
10138 msgstr ""
10139
10140 #. type: verbatim
10141 #: ../src/guestfs-actions.pod:2311
10142 #, no-wrap
10143 msgid ""
10144 " char *\n"
10145 " guestfs_hexdump (guestfs_h *g,\n"
10146 "                  const char *path);\n"
10147 "\n"
10148 msgstr ""
10149
10150 #. type: textblock
10151 #: ../src/guestfs-actions.pod:2315 ../fish/guestfish-actions.pod:1550
10152 msgid ""
10153 "This runs C<hexdump -C> on the given C<path>.  The result is the human-"
10154 "readable, canonical hex dump of the file."
10155 msgstr ""
10156
10157 #. type: textblock
10158 #: ../src/guestfs-actions.pod:2324 ../src/guestfs-actions.pod:6399
10159 #: ../src/guestfs-actions.pod:6454
10160 msgid "(Added in 1.0.22)"
10161 msgstr ""
10162
10163 #. type: =head2
10164 #: ../src/guestfs-actions.pod:2326
10165 msgid "guestfs_initrd_cat"
10166 msgstr ""
10167
10168 #. type: verbatim
10169 #: ../src/guestfs-actions.pod:2328
10170 #, no-wrap
10171 msgid ""
10172 " char *\n"
10173 " guestfs_initrd_cat (guestfs_h *g,\n"
10174 "                     const char *initrdpath,\n"
10175 "                     const char *filename,\n"
10176 "                     size_t *size_r);\n"
10177 "\n"
10178 msgstr ""
10179
10180 #. type: textblock
10181 #: ../src/guestfs-actions.pod:2334 ../fish/guestfish-actions.pod:1560
10182 msgid ""
10183 "This command unpacks the file C<filename> from the initrd file called "
10184 "C<initrdpath>.  The filename must be given I<without> the initial C</> "
10185 "character."
10186 msgstr ""
10187
10188 #. type: textblock
10189 #: ../src/guestfs-actions.pod:2338 ../fish/guestfish-actions.pod:1564
10190 msgid ""
10191 "For example, in guestfish you could use the following command to examine the "
10192 "boot script (usually called C</init>)  contained in a Linux initrd or "
10193 "initramfs image:"
10194 msgstr ""
10195
10196 #. type: verbatim
10197 #: ../src/guestfs-actions.pod:2342 ../fish/guestfish-actions.pod:1568
10198 #, no-wrap
10199 msgid ""
10200 " initrd-cat /boot/initrd-<version>.img init\n"
10201 "\n"
10202 msgstr ""
10203
10204 #. type: textblock
10205 #: ../src/guestfs-actions.pod:2344
10206 msgid "See also C<guestfs_initrd_list>."
10207 msgstr ""
10208
10209 #. type: =head2
10210 #: ../src/guestfs-actions.pod:2355
10211 msgid "guestfs_initrd_list"
10212 msgstr ""
10213
10214 #. type: verbatim
10215 #: ../src/guestfs-actions.pod:2357
10216 #, no-wrap
10217 msgid ""
10218 " char **\n"
10219 " guestfs_initrd_list (guestfs_h *g,\n"
10220 "                      const char *path);\n"
10221 "\n"
10222 msgstr ""
10223
10224 #. type: textblock
10225 #: ../src/guestfs-actions.pod:2361 ../fish/guestfish-actions.pod:1579
10226 msgid "This command lists out files contained in an initrd."
10227 msgstr ""
10228
10229 #. type: textblock
10230 #: ../src/guestfs-actions.pod:2363 ../fish/guestfish-actions.pod:1581
10231 msgid ""
10232 "The files are listed without any initial C</> character.  The files are "
10233 "listed in the order they appear (not necessarily alphabetical).  Directory "
10234 "names are listed as separate items."
10235 msgstr ""
10236
10237 #. type: textblock
10238 #: ../src/guestfs-actions.pod:2367 ../fish/guestfish-actions.pod:1585
10239 msgid ""
10240 "Old Linux kernels (2.4 and earlier) used a compressed ext2 filesystem as "
10241 "initrd.  We I<only> support the newer initramfs format (compressed cpio "
10242 "files)."
10243 msgstr ""
10244
10245 #. type: =head2
10246 #: ../src/guestfs-actions.pod:2377
10247 msgid "guestfs_inotify_add_watch"
10248 msgstr ""
10249
10250 #. type: verbatim
10251 #: ../src/guestfs-actions.pod:2379
10252 #, no-wrap
10253 msgid ""
10254 " int64_t\n"
10255 " guestfs_inotify_add_watch (guestfs_h *g,\n"
10256 "                            const char *path,\n"
10257 "                            int mask);\n"
10258 "\n"
10259 msgstr ""
10260
10261 #. type: textblock
10262 #: ../src/guestfs-actions.pod:2384 ../fish/guestfish-actions.pod:1593
10263 msgid "Watch C<path> for the events listed in C<mask>."
10264 msgstr ""
10265
10266 #. type: textblock
10267 #: ../src/guestfs-actions.pod:2386 ../fish/guestfish-actions.pod:1595
10268 msgid ""
10269 "Note that if C<path> is a directory then events within that directory are "
10270 "watched, but this does I<not> happen recursively (in subdirectories)."
10271 msgstr ""
10272
10273 #. type: textblock
10274 #: ../src/guestfs-actions.pod:2390 ../fish/guestfish-actions.pod:1599
10275 msgid ""
10276 "Note for non-C or non-Linux callers: the inotify events are defined by the "
10277 "Linux kernel ABI and are listed in C</usr/include/sys/inotify.h>."
10278 msgstr ""
10279
10280 #. type: =head2
10281 #: ../src/guestfs-actions.pod:2398
10282 msgid "guestfs_inotify_close"
10283 msgstr ""
10284
10285 #. type: verbatim
10286 #: ../src/guestfs-actions.pod:2400
10287 #, no-wrap
10288 msgid ""
10289 " int\n"
10290 " guestfs_inotify_close (guestfs_h *g);\n"
10291 "\n"
10292 msgstr ""
10293
10294 #. type: textblock
10295 #: ../src/guestfs-actions.pod:2403 ../fish/guestfish-actions.pod:1607
10296 msgid ""
10297 "This closes the inotify handle which was previously opened by inotify_init.  "
10298 "It removes all watches, throws away any pending events, and deallocates all "
10299 "resources."
10300 msgstr ""
10301
10302 #. type: =head2
10303 #: ../src/guestfs-actions.pod:2411
10304 msgid "guestfs_inotify_files"
10305 msgstr ""
10306
10307 #. type: verbatim
10308 #: ../src/guestfs-actions.pod:2413
10309 #, no-wrap
10310 msgid ""
10311 " char **\n"
10312 " guestfs_inotify_files (guestfs_h *g);\n"
10313 "\n"
10314 msgstr ""
10315
10316 #. type: textblock
10317 #: ../src/guestfs-actions.pod:2416
10318 msgid ""
10319 "This function is a helpful wrapper around C<guestfs_inotify_read> which just "
10320 "returns a list of pathnames of objects that were touched.  The returned "
10321 "pathnames are sorted and deduplicated."
10322 msgstr ""
10323
10324 #. type: =head2
10325 #: ../src/guestfs-actions.pod:2426
10326 msgid "guestfs_inotify_init"
10327 msgstr ""
10328
10329 #. type: verbatim
10330 #: ../src/guestfs-actions.pod:2428
10331 #, no-wrap
10332 msgid ""
10333 " int\n"
10334 " guestfs_inotify_init (guestfs_h *g,\n"
10335 "                       int maxevents);\n"
10336 "\n"
10337 msgstr ""
10338
10339 #. type: textblock
10340 #: ../src/guestfs-actions.pod:2432 ../fish/guestfish-actions.pod:1623
10341 msgid ""
10342 "This command creates a new inotify handle.  The inotify subsystem can be "
10343 "used to notify events which happen to objects in the guest filesystem."
10344 msgstr ""
10345
10346 #. type: textblock
10347 #: ../src/guestfs-actions.pod:2436
10348 msgid ""
10349 "C<maxevents> is the maximum number of events which will be queued up between "
10350 "calls to C<guestfs_inotify_read> or C<guestfs_inotify_files>.  If this is "
10351 "passed as C<0>, then the kernel (or previously set)  default is used.  For "
10352 "Linux 2.6.29 the default was 16384 events.  Beyond this limit, the kernel "
10353 "throws away events, but records the fact that it threw them away by setting "
10354 "a flag C<IN_Q_OVERFLOW> in the returned structure list (see "
10355 "C<guestfs_inotify_read>)."
10356 msgstr ""
10357
10358 #. type: textblock
10359 #: ../src/guestfs-actions.pod:2446
10360 msgid ""
10361 "Before any events are generated, you have to add some watches to the "
10362 "internal watch list.  See: C<guestfs_inotify_add_watch>, "
10363 "C<guestfs_inotify_rm_watch> and C<guestfs_inotify_watch_all>."
10364 msgstr ""
10365
10366 #. type: textblock
10367 #: ../src/guestfs-actions.pod:2452
10368 msgid ""
10369 "Queued up events should be read periodically by calling "
10370 "C<guestfs_inotify_read> (or C<guestfs_inotify_files> which is just a helpful "
10371 "wrapper around C<guestfs_inotify_read>).  If you don't read the events out "
10372 "often enough then you risk the internal queue overflowing."
10373 msgstr ""
10374
10375 #. type: textblock
10376 #: ../src/guestfs-actions.pod:2459
10377 msgid ""
10378 "The handle should be closed after use by calling C<guestfs_inotify_close>.  "
10379 "This also removes any watches automatically."
10380 msgstr ""
10381
10382 #. type: textblock
10383 #: ../src/guestfs-actions.pod:2463 ../fish/guestfish-actions.pod:1654
10384 msgid ""
10385 "See also L<inotify(7)> for an overview of the inotify interface as exposed "
10386 "by the Linux kernel, which is roughly what we expose via libguestfs.  Note "
10387 "that there is one global inotify handle per libguestfs instance."
10388 msgstr ""
10389
10390 #. type: =head2
10391 #: ../src/guestfs-actions.pod:2472
10392 msgid "guestfs_inotify_read"
10393 msgstr ""
10394
10395 #. type: verbatim
10396 #: ../src/guestfs-actions.pod:2474
10397 #, no-wrap
10398 msgid ""
10399 " struct guestfs_inotify_event_list *\n"
10400 " guestfs_inotify_read (guestfs_h *g);\n"
10401 "\n"
10402 msgstr ""
10403
10404 #. type: textblock
10405 #: ../src/guestfs-actions.pod:2477 ../fish/guestfish-actions.pod:1663
10406 msgid ""
10407 "Return the complete queue of events that have happened since the previous "
10408 "read call."
10409 msgstr ""
10410
10411 #. type: textblock
10412 #: ../src/guestfs-actions.pod:2480 ../fish/guestfish-actions.pod:1666
10413 msgid "If no events have happened, this returns an empty list."
10414 msgstr ""
10415
10416 #. type: textblock
10417 #: ../src/guestfs-actions.pod:2482 ../fish/guestfish-actions.pod:1668
10418 msgid ""
10419 "I<Note>: In order to make sure that all events have been read, you must call "
10420 "this function repeatedly until it returns an empty list.  The reason is that "
10421 "the call will read events up to the maximum appliance-to-host message size "
10422 "and leave remaining events in the queue."
10423 msgstr ""
10424
10425 #. type: textblock
10426 #: ../src/guestfs-actions.pod:2488
10427 msgid ""
10428 "This function returns a C<struct guestfs_inotify_event_list *>, or NULL if "
10429 "there was an error.  I<The caller must call "
10430 "C<guestfs_free_inotify_event_list> after use>."
10431 msgstr ""
10432
10433 #. type: =head2
10434 #: ../src/guestfs-actions.pod:2494
10435 msgid "guestfs_inotify_rm_watch"
10436 msgstr ""
10437
10438 #. type: verbatim
10439 #: ../src/guestfs-actions.pod:2496
10440 #, no-wrap
10441 msgid ""
10442 " int\n"
10443 " guestfs_inotify_rm_watch (guestfs_h *g,\n"
10444 "                           int wd);\n"
10445 "\n"
10446 msgstr ""
10447
10448 #. type: textblock
10449 #: ../src/guestfs-actions.pod:2500
10450 msgid ""
10451 "Remove a previously defined inotify watch.  See C<guestfs_inotify_add_watch>."
10452 msgstr ""
10453
10454 #. type: =head2
10455 #: ../src/guestfs-actions.pod:2507
10456 msgid "guestfs_inspect_get_arch"
10457 msgstr ""
10458
10459 #. type: verbatim
10460 #: ../src/guestfs-actions.pod:2509
10461 #, no-wrap
10462 msgid ""
10463 " char *\n"
10464 " guestfs_inspect_get_arch (guestfs_h *g,\n"
10465 "                           const char *root);\n"
10466 "\n"
10467 msgstr ""
10468
10469 #. type: textblock
10470 #: ../src/guestfs-actions.pod:2513 ../src/guestfs-actions.pod:2536
10471 #: ../src/guestfs-actions.pod:2629 ../src/guestfs-actions.pod:2673
10472 #: ../src/guestfs-actions.pod:2699 ../src/guestfs-actions.pod:2738
10473 #: ../src/guestfs-actions.pod:2760 ../src/guestfs-actions.pod:2787
10474 #: ../src/guestfs-actions.pod:2808 ../src/guestfs-actions.pod:2851
10475 #: ../src/guestfs-actions.pod:2880 ../src/guestfs-actions.pod:2911
10476 #: ../src/guestfs-actions.pod:2935 ../src/guestfs-actions.pod:2990
10477 #: ../src/guestfs-actions.pod:3032 ../src/guestfs-actions.pod:3053
10478 #: ../src/guestfs-actions.pod:3076 ../src/guestfs-actions.pod:3093
10479 #: ../src/guestfs-actions.pod:3110 ../src/guestfs-actions.pod:3129
10480 msgid ""
10481 "This function should only be called with a root device string as returned by "
10482 "C<guestfs_inspect_os>."
10483 msgstr ""
10484
10485 #. type: textblock
10486 #: ../src/guestfs-actions.pod:2516
10487 msgid ""
10488 "This returns the architecture of the inspected operating system.  The "
10489 "possible return values are listed under C<guestfs_file_architecture>."
10490 msgstr ""
10491
10492 #. type: textblock
10493 #: ../src/guestfs-actions.pod:2520 ../fish/guestfish-actions.pod:1692
10494 msgid ""
10495 "If the architecture could not be determined, then the string C<unknown> is "
10496 "returned."
10497 msgstr ""
10498
10499 #. type: textblock
10500 #: ../src/guestfs-actions.pod:2523 ../src/guestfs-actions.pod:2616
10501 #: ../src/guestfs-actions.pod:2727 ../src/guestfs-actions.pod:2747
10502 #: ../src/guestfs-actions.pod:2775 ../src/guestfs-actions.pod:2867
10503 #: ../src/guestfs-actions.pod:2898 ../src/guestfs-actions.pod:2922
10504 #: ../src/guestfs-actions.pod:2976 ../src/guestfs-actions.pod:3019
10505 #: ../src/guestfs-actions.pod:3042 ../src/guestfs-actions.pod:3063
10506 #: ../src/guestfs-actions.pod:3083 ../src/guestfs-actions.pod:3100
10507 #: ../src/guestfs-actions.pod:3119 ../src/guestfs-actions.pod:3222
10508 #: ../src/guestfs-actions.pod:3263 ../fish/guestfish-actions.pod:1695
10509 #: ../fish/guestfish-actions.pod:1781 ../fish/guestfish-actions.pod:1869
10510 #: ../fish/guestfish-actions.pod:1884 ../fish/guestfish-actions.pod:1905
10511 #: ../fish/guestfish-actions.pod:1975 ../fish/guestfish-actions.pod:1999
10512 #: ../fish/guestfish-actions.pod:2016 ../fish/guestfish-actions.pod:2059
10513 #: ../fish/guestfish-actions.pod:2094 ../fish/guestfish-actions.pod:2110
10514 #: ../fish/guestfish-actions.pod:2126 ../fish/guestfish-actions.pod:2139
10515 #: ../fish/guestfish-actions.pod:2152 ../fish/guestfish-actions.pod:2167
10516 #: ../fish/guestfish-actions.pod:2266 ../fish/guestfish-actions.pod:2300
10517 msgid "Please read L<guestfs(3)/INSPECTION> for more details."
10518 msgstr ""
10519
10520 #. type: =head2
10521 #: ../src/guestfs-actions.pod:2530
10522 msgid "guestfs_inspect_get_distro"
10523 msgstr ""
10524
10525 #. type: verbatim
10526 #: ../src/guestfs-actions.pod:2532
10527 #, no-wrap
10528 msgid ""
10529 " char *\n"
10530 " guestfs_inspect_get_distro (guestfs_h *g,\n"
10531 "                             const char *root);\n"
10532 "\n"
10533 msgstr ""
10534
10535 #. type: textblock
10536 #: ../src/guestfs-actions.pod:2539 ../fish/guestfish-actions.pod:1704
10537 msgid ""
10538 "This returns the distro (distribution) of the inspected operating system."
10539 msgstr ""
10540
10541 #. type: textblock
10542 #: ../src/guestfs-actions.pod:2542 ../fish/guestfish-actions.pod:1707
10543 msgid "Currently defined distros are:"
10544 msgstr ""
10545
10546 #. type: =item
10547 #: ../src/guestfs-actions.pod:2546 ../fish/guestfish-actions.pod:1711
10548 msgid "\"archlinux\""
10549 msgstr "\"archlinux\""
10550
10551 #. type: textblock
10552 #: ../src/guestfs-actions.pod:2548 ../fish/guestfish-actions.pod:1713
10553 msgid "Arch Linux."
10554 msgstr "Arch Linux."
10555
10556 #. type: =item
10557 #: ../src/guestfs-actions.pod:2550 ../fish/guestfish-actions.pod:1715
10558 #, fuzzy
10559 #| msgid "\"gentoo\""
10560 msgid "\"centos\""
10561 msgstr "\"gentoo\""
10562
10563 #. type: textblock
10564 #: ../src/guestfs-actions.pod:2552 ../fish/guestfish-actions.pod:1717
10565 msgid "CentOS."
10566 msgstr ""
10567
10568 #. type: =item
10569 #: ../src/guestfs-actions.pod:2554 ../fish/guestfish-actions.pod:1719
10570 msgid "\"debian\""
10571 msgstr "\"debian\""
10572
10573 #. type: textblock
10574 #: ../src/guestfs-actions.pod:2556 ../fish/guestfish-actions.pod:1721
10575 msgid "Debian."
10576 msgstr "Debian."
10577
10578 #. type: =item
10579 #: ../src/guestfs-actions.pod:2558 ../fish/guestfish-actions.pod:1723
10580 msgid "\"fedora\""
10581 msgstr "\"fedora\""
10582
10583 #. type: textblock
10584 #: ../src/guestfs-actions.pod:2560 ../fish/guestfish-actions.pod:1725
10585 msgid "Fedora."
10586 msgstr "Fedora."
10587
10588 #. type: =item
10589 #: ../src/guestfs-actions.pod:2562 ../fish/guestfish-actions.pod:1727
10590 msgid "\"gentoo\""
10591 msgstr "\"gentoo\""
10592
10593 #. type: textblock
10594 #: ../src/guestfs-actions.pod:2564 ../fish/guestfish-actions.pod:1729
10595 msgid "Gentoo."
10596 msgstr "Gentoo."
10597
10598 #. type: =item
10599 #: ../src/guestfs-actions.pod:2566 ../fish/guestfish-actions.pod:1731
10600 msgid "\"linuxmint\""
10601 msgstr "\"linuxmint\""
10602
10603 #. type: textblock
10604 #: ../src/guestfs-actions.pod:2568 ../fish/guestfish-actions.pod:1733
10605 msgid "Linux Mint."
10606 msgstr "Linux Mint."
10607
10608 #. type: =item
10609 #: ../src/guestfs-actions.pod:2570 ../fish/guestfish-actions.pod:1735
10610 msgid "\"mandriva\""
10611 msgstr "\"mandriva\""
10612
10613 #. type: textblock
10614 #: ../src/guestfs-actions.pod:2572 ../fish/guestfish-actions.pod:1737
10615 msgid "Mandriva."
10616 msgstr "Mandriva."
10617
10618 #. type: =item
10619 #: ../src/guestfs-actions.pod:2574 ../fish/guestfish-actions.pod:1739
10620 msgid "\"meego\""
10621 msgstr "\"meego\""
10622
10623 #. type: textblock
10624 #: ../src/guestfs-actions.pod:2576 ../fish/guestfish-actions.pod:1741
10625 msgid "MeeGo."
10626 msgstr "MeeGo."
10627
10628 #. type: =item
10629 #: ../src/guestfs-actions.pod:2578 ../fish/guestfish-actions.pod:1743
10630 msgid "\"pardus\""
10631 msgstr "\"pardus\""
10632
10633 #. type: textblock
10634 #: ../src/guestfs-actions.pod:2580 ../fish/guestfish-actions.pod:1745
10635 msgid "Pardus."
10636 msgstr "Pardus."
10637
10638 #. type: =item
10639 #: ../src/guestfs-actions.pod:2582 ../fish/guestfish-actions.pod:1747
10640 msgid "\"redhat-based\""
10641 msgstr "\"redhat-based\""
10642
10643 #. type: textblock
10644 #: ../src/guestfs-actions.pod:2584 ../fish/guestfish-actions.pod:1749
10645 msgid "Some Red Hat-derived distro."
10646 msgstr "Дистрибутив, що походить від Red Hat."
10647
10648 #. type: =item
10649 #: ../src/guestfs-actions.pod:2586 ../fish/guestfish-actions.pod:1751
10650 msgid "\"rhel\""
10651 msgstr "\"rhel\""
10652
10653 #. type: textblock
10654 #: ../src/guestfs-actions.pod:2588 ../fish/guestfish-actions.pod:1753
10655 #, fuzzy
10656 #| msgid "Red Hat Enterprise Linux and some derivatives."
10657 msgid "Red Hat Enterprise Linux."
10658 msgstr "Red Hat Enterprise Linux та деякі з похідних дистрибутивів."
10659
10660 #. type: =item
10661 #: ../src/guestfs-actions.pod:2590 ../fish/guestfish-actions.pod:1755
10662 msgid "\"scientificlinux\""
10663 msgstr ""
10664
10665 #. type: textblock
10666 #: ../src/guestfs-actions.pod:2592 ../fish/guestfish-actions.pod:1757
10667 msgid "Scientific Linux."
10668 msgstr ""
10669
10670 #. type: =item
10671 #: ../src/guestfs-actions.pod:2594 ../fish/guestfish-actions.pod:1759
10672 msgid "\"slackware\""
10673 msgstr ""
10674
10675 #. type: textblock
10676 #: ../src/guestfs-actions.pod:2596 ../fish/guestfish-actions.pod:1761
10677 msgid "Slackware."
10678 msgstr ""
10679
10680 #. type: =item
10681 #: ../src/guestfs-actions.pod:2598 ../fish/guestfish-actions.pod:1763
10682 msgid "\"ubuntu\""
10683 msgstr "\"ubuntu\""
10684
10685 #. type: textblock
10686 #: ../src/guestfs-actions.pod:2600 ../fish/guestfish-actions.pod:1765
10687 msgid "Ubuntu."
10688 msgstr "Ubuntu."
10689
10690 #. type: =item
10691 #: ../src/guestfs-actions.pod:2602 ../src/guestfs-actions.pod:2718
10692 #: ../src/guestfs-actions.pod:3010 ../fish/guestfish-actions.pod:1767
10693 #: ../fish/guestfish-actions.pod:1860 ../fish/guestfish-actions.pod:2085
10694 msgid "\"unknown\""
10695 msgstr "\"unknown\""
10696
10697 #. type: textblock
10698 #: ../src/guestfs-actions.pod:2604 ../fish/guestfish-actions.pod:1769
10699 msgid "The distro could not be determined."
10700 msgstr "Дистрибутив, тип якого не вдалося визначити."
10701
10702 #. type: =item
10703 #: ../src/guestfs-actions.pod:2606 ../src/guestfs-actions.pod:3002
10704 #: ../fish/guestfish-actions.pod:1771 ../fish/guestfish-actions.pod:2077
10705 msgid "\"windows\""
10706 msgstr "\"windows\""
10707
10708 #. type: textblock
10709 #: ../src/guestfs-actions.pod:2608 ../fish/guestfish-actions.pod:1773
10710 msgid ""
10711 "Windows does not have distributions.  This string is returned if the OS type "
10712 "is Windows."
10713 msgstr ""
10714
10715 #. type: textblock
10716 #: ../src/guestfs-actions.pod:2613 ../src/guestfs-actions.pod:2724
10717 #: ../src/guestfs-actions.pod:3016 ../fish/guestfish-actions.pod:1778
10718 #: ../fish/guestfish-actions.pod:1866 ../fish/guestfish-actions.pod:2091
10719 msgid ""
10720 "Future versions of libguestfs may return other strings here.  The caller "
10721 "should be prepared to handle any string."
10722 msgstr ""
10723
10724 #. type: =head2
10725 #: ../src/guestfs-actions.pod:2623
10726 msgid "guestfs_inspect_get_drive_mappings"
10727 msgstr ""
10728
10729 #. type: verbatim
10730 #: ../src/guestfs-actions.pod:2625
10731 #, no-wrap
10732 msgid ""
10733 " char **\n"
10734 " guestfs_inspect_get_drive_mappings (guestfs_h *g,\n"
10735 "                                     const char *root);\n"
10736 "\n"
10737 msgstr ""
10738
10739 #. type: textblock
10740 #: ../src/guestfs-actions.pod:2632 ../fish/guestfish-actions.pod:1790
10741 msgid ""
10742 "This call is useful for Windows which uses a primitive system of assigning "
10743 "drive letters (like \"C:\") to partitions.  This inspection API examines the "
10744 "Windows Registry to find out how disks/partitions are mapped to drive "
10745 "letters, and returns a hash table as in the example below:"
10746 msgstr ""
10747
10748 #. type: verbatim
10749 #: ../src/guestfs-actions.pod:2638 ../fish/guestfish-actions.pod:1796
10750 #, no-wrap
10751 msgid ""
10752 " C      =>     /dev/vda2\n"
10753 " E      =>     /dev/vdb1\n"
10754 " F      =>     /dev/vdc1\n"
10755 "\n"
10756 msgstr ""
10757
10758 #. type: textblock
10759 #: ../src/guestfs-actions.pod:2642 ../fish/guestfish-actions.pod:1800
10760 msgid ""
10761 "Note that keys are drive letters.  For Windows, the key is case insensitive "
10762 "and just contains the drive letter, without the customary colon separator "
10763 "character."
10764 msgstr ""
10765
10766 #. type: textblock
10767 #: ../src/guestfs-actions.pod:2646 ../fish/guestfish-actions.pod:1804
10768 msgid ""
10769 "In future we may support other operating systems that also used drive "
10770 "letters, but the keys for those might not be case insensitive and might be "
10771 "longer than 1 character.  For example in OS-9, hard drives were named C<h0>, "
10772 "C<h1> etc."
10773 msgstr ""
10774
10775 #. type: textblock
10776 #: ../src/guestfs-actions.pod:2651 ../fish/guestfish-actions.pod:1809
10777 msgid ""
10778 "For Windows guests, currently only hard drive mappings are returned.  "
10779 "Removable disks (eg. DVD-ROMs) are ignored."
10780 msgstr ""
10781
10782 #. type: textblock
10783 #: ../src/guestfs-actions.pod:2654 ../fish/guestfish-actions.pod:1812
10784 msgid ""
10785 "For guests that do not use drive mappings, or if the drive mappings could "
10786 "not be determined, this returns an empty hash table."
10787 msgstr ""
10788
10789 #. type: textblock
10790 #: ../src/guestfs-actions.pod:2657
10791 msgid ""
10792 "Please read L<guestfs(3)/INSPECTION> for more details.  See also "
10793 "C<guestfs_inspect_get_mountpoints>, C<guestfs_inspect_get_filesystems>."
10794 msgstr ""
10795
10796 #. type: textblock
10797 #: ../src/guestfs-actions.pod:2661 ../src/guestfs-actions.pod:2837
10798 #: ../src/guestfs-actions.pod:3597 ../src/guestfs-actions.pod:4814
10799 #: ../src/guestfs-actions.pod:6756
10800 msgid ""
10801 "This function returns a NULL-terminated array of strings, or NULL if there "
10802 "was an error.  The array of strings will always have length C<2n+1>, where "
10803 "C<n> keys and values alternate, followed by the trailing NULL entry.  I<The "
10804 "caller must free the strings and the array after use>."
10805 msgstr ""
10806
10807 #. type: =head2
10808 #: ../src/guestfs-actions.pod:2667
10809 msgid "guestfs_inspect_get_filesystems"
10810 msgstr ""
10811
10812 #. type: verbatim
10813 #: ../src/guestfs-actions.pod:2669
10814 #, no-wrap
10815 msgid ""
10816 " char **\n"
10817 " guestfs_inspect_get_filesystems (guestfs_h *g,\n"
10818 "                                  const char *root);\n"
10819 "\n"
10820 msgstr ""
10821
10822 #. type: textblock
10823 #: ../src/guestfs-actions.pod:2676 ../fish/guestfish-actions.pod:1826
10824 msgid ""
10825 "This returns a list of all the filesystems that we think are associated with "
10826 "this operating system.  This includes the root filesystem, other ordinary "
10827 "filesystems, and non-mounted devices like swap partitions."
10828 msgstr ""
10829
10830 #. type: textblock
10831 #: ../src/guestfs-actions.pod:2681 ../fish/guestfish-actions.pod:1831
10832 msgid ""
10833 "In the case of a multi-boot virtual machine, it is possible for a filesystem "
10834 "to be shared between operating systems."
10835 msgstr ""
10836
10837 #. type: textblock
10838 #: ../src/guestfs-actions.pod:2684
10839 msgid ""
10840 "Please read L<guestfs(3)/INSPECTION> for more details.  See also "
10841 "C<guestfs_inspect_get_mountpoints>."
10842 msgstr ""
10843
10844 #. type: =head2
10845 #: ../src/guestfs-actions.pod:2693
10846 msgid "guestfs_inspect_get_format"
10847 msgstr ""
10848
10849 #. type: verbatim
10850 #: ../src/guestfs-actions.pod:2695
10851 #, no-wrap
10852 msgid ""
10853 " char *\n"
10854 " guestfs_inspect_get_format (guestfs_h *g,\n"
10855 "                             const char *root);\n"
10856 "\n"
10857 msgstr ""
10858
10859 #. type: textblock
10860 #: ../src/guestfs-actions.pod:2702 ../fish/guestfish-actions.pod:1844
10861 msgid ""
10862 "This returns the format of the inspected operating system.  You can use it "
10863 "to detect install images, live CDs and similar."
10864 msgstr ""
10865
10866 #. type: textblock
10867 #: ../src/guestfs-actions.pod:2705 ../fish/guestfish-actions.pod:1847
10868 msgid "Currently defined formats are:"
10869 msgstr ""
10870
10871 #. type: =item
10872 #: ../src/guestfs-actions.pod:2709 ../fish/guestfish-actions.pod:1851
10873 msgid "\"installed\""
10874 msgstr "\"installed\""
10875
10876 #. type: textblock
10877 #: ../src/guestfs-actions.pod:2711 ../fish/guestfish-actions.pod:1853
10878 msgid "This is an installed operating system."
10879 msgstr "Це встановлена операційна система."
10880
10881 #. type: =item
10882 #: ../src/guestfs-actions.pod:2713 ../fish/guestfish-actions.pod:1855
10883 msgid "\"installer\""
10884 msgstr ""
10885
10886 #. type: textblock
10887 #: ../src/guestfs-actions.pod:2715 ../fish/guestfish-actions.pod:1857
10888 msgid ""
10889 "The disk image being inspected is not an installed operating system, but a "
10890 "I<bootable> install disk, live CD, or similar."
10891 msgstr ""
10892
10893 #. type: textblock
10894 #: ../src/guestfs-actions.pod:2720 ../fish/guestfish-actions.pod:1862
10895 msgid "The format of this disk image is not known."
10896 msgstr ""
10897
10898 #. type: =head2
10899 #: ../src/guestfs-actions.pod:2732
10900 msgid "guestfs_inspect_get_hostname"
10901 msgstr ""
10902
10903 #. type: verbatim
10904 #: ../src/guestfs-actions.pod:2734
10905 #, no-wrap
10906 msgid ""
10907 " char *\n"
10908 " guestfs_inspect_get_hostname (guestfs_h *g,\n"
10909 "                               const char *root);\n"
10910 "\n"
10911 msgstr ""
10912
10913 #. type: textblock
10914 #: ../src/guestfs-actions.pod:2741 ../fish/guestfish-actions.pod:1878
10915 msgid ""
10916 "This function returns the hostname of the operating system as found by "
10917 "inspection of the guest's configuration files."
10918 msgstr ""
10919
10920 #. type: textblock
10921 #: ../src/guestfs-actions.pod:2744 ../fish/guestfish-actions.pod:1881
10922 msgid ""
10923 "If the hostname could not be determined, then the string C<unknown> is "
10924 "returned."
10925 msgstr ""
10926
10927 #. type: textblock
10928 #: ../src/guestfs-actions.pod:2752
10929 msgid "(Added in 1.7.9)"
10930 msgstr ""
10931
10932 #. type: =head2
10933 #: ../src/guestfs-actions.pod:2754
10934 msgid "guestfs_inspect_get_major_version"
10935 msgstr ""
10936
10937 #. type: verbatim
10938 #: ../src/guestfs-actions.pod:2756
10939 #, no-wrap
10940 msgid ""
10941 " int\n"
10942 " guestfs_inspect_get_major_version (guestfs_h *g,\n"
10943 "                                    const char *root);\n"
10944 "\n"
10945 msgstr ""
10946
10947 #. type: textblock
10948 #: ../src/guestfs-actions.pod:2763 ../fish/guestfish-actions.pod:1893
10949 msgid ""
10950 "This returns the major version number of the inspected operating system."
10951 msgstr ""
10952
10953 #. type: textblock
10954 #: ../src/guestfs-actions.pod:2766 ../fish/guestfish-actions.pod:1896
10955 msgid ""
10956 "Windows uses a consistent versioning scheme which is I<not> reflected in the "
10957 "popular public names used by the operating system.  Notably the operating "
10958 "system known as \"Windows 7\" is really version 6.1 (ie. major = 6, minor = "
10959 "1).  You can find out the real versions corresponding to releases of Windows "
10960 "by consulting Wikipedia or MSDN."
10961 msgstr ""
10962
10963 #. type: textblock
10964 #: ../src/guestfs-actions.pod:2773 ../src/guestfs-actions.pod:2793
10965 #: ../fish/guestfish-actions.pod:1903 ../fish/guestfish-actions.pod:1917
10966 msgid "If the version could not be determined, then C<0> is returned."
10967 msgstr ""
10968
10969 #. type: =head2
10970 #: ../src/guestfs-actions.pod:2781
10971 msgid "guestfs_inspect_get_minor_version"
10972 msgstr ""
10973
10974 #. type: verbatim
10975 #: ../src/guestfs-actions.pod:2783
10976 #, no-wrap
10977 msgid ""
10978 " int\n"
10979 " guestfs_inspect_get_minor_version (guestfs_h *g,\n"
10980 "                                    const char *root);\n"
10981 "\n"
10982 msgstr ""
10983
10984 #. type: textblock
10985 #: ../src/guestfs-actions.pod:2790 ../fish/guestfish-actions.pod:1914
10986 msgid ""
10987 "This returns the minor version number of the inspected operating system."
10988 msgstr ""
10989
10990 #. type: textblock
10991 #: ../src/guestfs-actions.pod:2795
10992 msgid ""
10993 "Please read L<guestfs(3)/INSPECTION> for more details.  See also "
10994 "C<guestfs_inspect_get_major_version>."
10995 msgstr ""
10996
10997 #. type: =head2
10998 #: ../src/guestfs-actions.pod:2802
10999 msgid "guestfs_inspect_get_mountpoints"
11000 msgstr ""
11001
11002 #. type: verbatim
11003 #: ../src/guestfs-actions.pod:2804
11004 #, no-wrap
11005 msgid ""
11006 " char **\n"
11007 " guestfs_inspect_get_mountpoints (guestfs_h *g,\n"
11008 "                                  const char *root);\n"
11009 "\n"
11010 msgstr ""
11011
11012 #. type: textblock
11013 #: ../src/guestfs-actions.pod:2811 ../fish/guestfish-actions.pod:1929
11014 msgid ""
11015 "This returns a hash of where we think the filesystems associated with this "
11016 "operating system should be mounted.  Callers should note that this is at "
11017 "best an educated guess made by reading configuration files such as C</etc/"
11018 "fstab>.  I<In particular note> that this may return filesystems which are "
11019 "non-existent or not mountable and callers should be prepared to handle or "
11020 "ignore failures if they try to mount them."
11021 msgstr ""
11022
11023 #. type: textblock
11024 #: ../src/guestfs-actions.pod:2820 ../fish/guestfish-actions.pod:1938
11025 msgid ""
11026 "Each element in the returned hashtable has a key which is the path of the "
11027 "mountpoint (eg. C</boot>) and a value which is the filesystem that would be "
11028 "mounted there (eg. C</dev/sda1>)."
11029 msgstr ""
11030
11031 #. type: textblock
11032 #: ../src/guestfs-actions.pod:2825 ../fish/guestfish-actions.pod:1943
11033 msgid ""
11034 "Non-mounted devices such as swap devices are I<not> returned in this list."
11035 msgstr ""
11036
11037 #. type: textblock
11038 #: ../src/guestfs-actions.pod:2828
11039 msgid ""
11040 "For operating systems like Windows which still use drive letters, this call "
11041 "will only return an entry for the first drive \"mounted on\" C</>.  For "
11042 "information about the mapping of drive letters to partitions, see "
11043 "C<guestfs_inspect_get_drive_mappings>."
11044 msgstr ""
11045
11046 #. type: textblock
11047 #: ../src/guestfs-actions.pod:2834
11048 msgid ""
11049 "Please read L<guestfs(3)/INSPECTION> for more details.  See also "
11050 "C<guestfs_inspect_get_filesystems>."
11051 msgstr ""
11052
11053 #. type: =head2
11054 #: ../src/guestfs-actions.pod:2845
11055 msgid "guestfs_inspect_get_package_format"
11056 msgstr ""
11057
11058 #. type: verbatim
11059 #: ../src/guestfs-actions.pod:2847
11060 #, no-wrap
11061 msgid ""
11062 " char *\n"
11063 " guestfs_inspect_get_package_format (guestfs_h *g,\n"
11064 "                                     const char *root);\n"
11065 "\n"
11066 msgstr ""
11067
11068 #. type: textblock
11069 #: ../src/guestfs-actions.pod:2854
11070 msgid ""
11071 "This function and C<guestfs_inspect_get_package_management> return the "
11072 "package format and package management tool used by the inspected operating "
11073 "system.  For example for Fedora these functions would return C<rpm> (package "
11074 "format) and C<yum> (package management)."
11075 msgstr ""
11076
11077 #. type: textblock
11078 #: ../src/guestfs-actions.pod:2860 ../fish/guestfish-actions.pod:1968
11079 msgid ""
11080 "This returns the string C<unknown> if we could not determine the package "
11081 "format I<or> if the operating system does not have a real packaging system "
11082 "(eg. Windows)."
11083 msgstr ""
11084
11085 #. type: textblock
11086 #: ../src/guestfs-actions.pod:2864 ../fish/guestfish-actions.pod:1972
11087 msgid ""
11088 "Possible strings include: C<rpm>, C<deb>, C<ebuild>, C<pisi>, C<pacman>.  "
11089 "Future versions of libguestfs may return other strings."
11090 msgstr ""
11091
11092 #. type: textblock
11093 #: ../src/guestfs-actions.pod:2872 ../src/guestfs-actions.pod:2903
11094 msgid "(Added in 1.7.5)"
11095 msgstr ""
11096
11097 #. type: =head2
11098 #: ../src/guestfs-actions.pod:2874
11099 msgid "guestfs_inspect_get_package_management"
11100 msgstr ""
11101
11102 #. type: verbatim
11103 #: ../src/guestfs-actions.pod:2876
11104 #, no-wrap
11105 msgid ""
11106 " char *\n"
11107 " guestfs_inspect_get_package_management (guestfs_h *g,\n"
11108 "                                         const char *root);\n"
11109 "\n"
11110 msgstr ""
11111
11112 #. type: textblock
11113 #: ../src/guestfs-actions.pod:2883
11114 msgid ""
11115 "C<guestfs_inspect_get_package_format> and this function return the package "
11116 "format and package management tool used by the inspected operating system.  "
11117 "For example for Fedora these functions would return C<rpm> (package format) "
11118 "and C<yum> (package management)."
11119 msgstr ""
11120
11121 #. type: textblock
11122 #: ../src/guestfs-actions.pod:2889 ../fish/guestfish-actions.pod:1990
11123 msgid ""
11124 "This returns the string C<unknown> if we could not determine the package "
11125 "management tool I<or> if the operating system does not have a real packaging "
11126 "system (eg. Windows)."
11127 msgstr ""
11128
11129 #. type: textblock
11130 #: ../src/guestfs-actions.pod:2893 ../fish/guestfish-actions.pod:1994
11131 msgid ""
11132 "Possible strings include: C<yum>, C<up2date>, C<apt> (for all Debian "
11133 "derivatives), C<portage>, C<pisi>, C<pacman>, C<urpmi>.  Future versions of "
11134 "libguestfs may return other strings."
11135 msgstr ""
11136
11137 #. type: =head2
11138 #: ../src/guestfs-actions.pod:2905
11139 msgid "guestfs_inspect_get_product_name"
11140 msgstr ""
11141
11142 #. type: verbatim
11143 #: ../src/guestfs-actions.pod:2907
11144 #, no-wrap
11145 msgid ""
11146 " char *\n"
11147 " guestfs_inspect_get_product_name (guestfs_h *g,\n"
11148 "                                   const char *root);\n"
11149 "\n"
11150 msgstr ""
11151
11152 #. type: textblock
11153 #: ../src/guestfs-actions.pod:2914 ../fish/guestfish-actions.pod:2008
11154 msgid ""
11155 "This returns the product name of the inspected operating system.  The "
11156 "product name is generally some freeform string which can be displayed to the "
11157 "user, but should not be parsed by programs."
11158 msgstr ""
11159
11160 #. type: textblock
11161 #: ../src/guestfs-actions.pod:2919 ../fish/guestfish-actions.pod:2013
11162 msgid ""
11163 "If the product name could not be determined, then the string C<unknown> is "
11164 "returned."
11165 msgstr ""
11166
11167 #. type: =head2
11168 #: ../src/guestfs-actions.pod:2929
11169 msgid "guestfs_inspect_get_product_variant"
11170 msgstr ""
11171
11172 #. type: verbatim
11173 #: ../src/guestfs-actions.pod:2931
11174 #, no-wrap
11175 msgid ""
11176 " char *\n"
11177 " guestfs_inspect_get_product_variant (guestfs_h *g,\n"
11178 "                                      const char *root);\n"
11179 "\n"
11180 msgstr ""
11181
11182 #. type: textblock
11183 #: ../src/guestfs-actions.pod:2938 ../fish/guestfish-actions.pod:2025
11184 #, fuzzy
11185 #| msgid "This is an installed operating system."
11186 msgid "This returns the product variant of the inspected operating system."
11187 msgstr "Це встановлена операційна система."
11188
11189 #. type: textblock
11190 #: ../src/guestfs-actions.pod:2941 ../fish/guestfish-actions.pod:2028
11191 msgid ""
11192 "For Windows guests, this returns the contents of the Registry key C<HKLM"
11193 "\\Software\\Microsoft\\Windows NT\\CurrentVersion> C<InstallationType> which "
11194 "is usually a string such as C<Client> or C<Server> (other values are "
11195 "possible).  This can be used to distinguish consumer and enterprise versions "
11196 "of Windows that have the same version number (for example, Windows 7 and "
11197 "Windows 2008 Server are both version 6.1, but the former is C<Client> and "
11198 "the latter is C<Server>)."
11199 msgstr ""
11200
11201 #. type: textblock
11202 #: ../src/guestfs-actions.pod:2950 ../fish/guestfish-actions.pod:2037
11203 msgid ""
11204 "For enterprise Linux guests, in future we intend this to return the product "
11205 "variant such as C<Desktop>, C<Server> and so on.  But this is not "
11206 "implemented at present."
11207 msgstr ""
11208
11209 #. type: textblock
11210 #: ../src/guestfs-actions.pod:2954 ../fish/guestfish-actions.pod:2041
11211 msgid ""
11212 "If the product variant could not be determined, then the string C<unknown> "
11213 "is returned."
11214 msgstr ""
11215
11216 #. type: textblock
11217 #: ../src/guestfs-actions.pod:2957
11218 msgid ""
11219 "Please read L<guestfs(3)/INSPECTION> for more details.  See also "
11220 "C<guestfs_inspect_get_product_name>, C<guestfs_inspect_get_major_version>."
11221 msgstr ""
11222
11223 #. type: =head2
11224 #: ../src/guestfs-actions.pod:2964
11225 msgid "guestfs_inspect_get_roots"
11226 msgstr ""
11227
11228 #. type: verbatim
11229 #: ../src/guestfs-actions.pod:2966
11230 #, no-wrap
11231 msgid ""
11232 " char **\n"
11233 " guestfs_inspect_get_roots (guestfs_h *g);\n"
11234 "\n"
11235 msgstr ""
11236
11237 #. type: textblock
11238 #: ../src/guestfs-actions.pod:2969
11239 msgid ""
11240 "This function is a convenient way to get the list of root devices, as "
11241 "returned from a previous call to C<guestfs_inspect_os>, but without redoing "
11242 "the whole inspection process."
11243 msgstr ""
11244
11245 #. type: textblock
11246 #: ../src/guestfs-actions.pod:2973
11247 msgid ""
11248 "This returns an empty list if either no root devices were found or the "
11249 "caller has not called C<guestfs_inspect_os>."
11250 msgstr ""
11251
11252 #. type: textblock
11253 #: ../src/guestfs-actions.pod:2982
11254 msgid "(Added in 1.7.3)"
11255 msgstr ""
11256
11257 #. type: =head2
11258 #: ../src/guestfs-actions.pod:2984
11259 msgid "guestfs_inspect_get_type"
11260 msgstr ""
11261
11262 #. type: verbatim
11263 #: ../src/guestfs-actions.pod:2986
11264 #, no-wrap
11265 msgid ""
11266 " char *\n"
11267 " guestfs_inspect_get_type (guestfs_h *g,\n"
11268 "                           const char *root);\n"
11269 "\n"
11270 msgstr ""
11271
11272 #. type: textblock
11273 #: ../src/guestfs-actions.pod:2993 ../fish/guestfish-actions.pod:2068
11274 msgid ""
11275 "This returns the type of the inspected operating system.  Currently defined "
11276 "types are:"
11277 msgstr ""
11278
11279 #. type: =item
11280 #: ../src/guestfs-actions.pod:2998 ../fish/guestfish-actions.pod:2073
11281 msgid "\"linux\""
11282 msgstr "\"linux\""
11283
11284 #. type: textblock
11285 #: ../src/guestfs-actions.pod:3000 ../fish/guestfish-actions.pod:2075
11286 msgid "Any Linux-based operating system."
11287 msgstr ""
11288
11289 #. type: textblock
11290 #: ../src/guestfs-actions.pod:3004 ../fish/guestfish-actions.pod:2079
11291 msgid "Any Microsoft Windows operating system."
11292 msgstr ""
11293
11294 #. type: =item
11295 #: ../src/guestfs-actions.pod:3006 ../fish/guestfish-actions.pod:2081
11296 msgid "\"freebsd\""
11297 msgstr "\"freebsd\""
11298
11299 #. type: textblock
11300 #: ../src/guestfs-actions.pod:3008 ../fish/guestfish-actions.pod:2083
11301 msgid "FreeBSD."
11302 msgstr "FreeBSD."
11303
11304 #. type: textblock
11305 #: ../src/guestfs-actions.pod:3012 ../fish/guestfish-actions.pod:2087
11306 msgid "The operating system type could not be determined."
11307 msgstr ""
11308
11309 #. type: =head2
11310 #: ../src/guestfs-actions.pod:3026
11311 msgid "guestfs_inspect_get_windows_current_control_set"
11312 msgstr ""
11313
11314 #. type: verbatim
11315 #: ../src/guestfs-actions.pod:3028
11316 #, no-wrap
11317 msgid ""
11318 " char *\n"
11319 " guestfs_inspect_get_windows_current_control_set (guestfs_h *g,\n"
11320 "                                                  const char *root);\n"
11321 "\n"
11322 msgstr ""
11323
11324 #. type: textblock
11325 #: ../src/guestfs-actions.pod:3035 ../fish/guestfish-actions.pod:2103
11326 msgid ""
11327 "This returns the Windows CurrentControlSet of the inspected guest.  The "
11328 "CurrentControlSet is a registry key name such as C<ControlSet001>."
11329 msgstr ""
11330
11331 #. type: textblock
11332 #: ../src/guestfs-actions.pod:3038 ../fish/guestfish-actions.pod:2106
11333 msgid ""
11334 "This call assumes that the guest is Windows and that the Registry could be "
11335 "examined by inspection.  If this is not the case then an error is returned."
11336 msgstr ""
11337
11338 #. type: =head2
11339 #: ../src/guestfs-actions.pod:3047
11340 msgid "guestfs_inspect_get_windows_systemroot"
11341 msgstr ""
11342
11343 #. type: verbatim
11344 #: ../src/guestfs-actions.pod:3049
11345 #, no-wrap
11346 msgid ""
11347 " char *\n"
11348 " guestfs_inspect_get_windows_systemroot (guestfs_h *g,\n"
11349 "                                         const char *root);\n"
11350 "\n"
11351 msgstr ""
11352
11353 #. type: textblock
11354 #: ../src/guestfs-actions.pod:3056 ../fish/guestfish-actions.pod:2119
11355 msgid ""
11356 "This returns the Windows systemroot of the inspected guest.  The systemroot "
11357 "is a directory path such as C</WINDOWS>."
11358 msgstr ""
11359
11360 #. type: textblock
11361 #: ../src/guestfs-actions.pod:3059 ../fish/guestfish-actions.pod:2122
11362 msgid ""
11363 "This call assumes that the guest is Windows and that the systemroot could be "
11364 "determined by inspection.  If this is not the case then an error is returned."
11365 msgstr ""
11366
11367 #. type: textblock
11368 #: ../src/guestfs-actions.pod:3068
11369 msgid "(Added in 1.5.25)"
11370 msgstr ""
11371
11372 #. type: =head2
11373 #: ../src/guestfs-actions.pod:3070
11374 msgid "guestfs_inspect_is_live"
11375 msgstr ""
11376
11377 #. type: verbatim
11378 #: ../src/guestfs-actions.pod:3072
11379 #, no-wrap
11380 msgid ""
11381 " int\n"
11382 " guestfs_inspect_is_live (guestfs_h *g,\n"
11383 "                          const char *root);\n"
11384 "\n"
11385 msgstr ""
11386
11387 #. type: textblock
11388 #: ../src/guestfs-actions.pod:3079
11389 msgid ""
11390 "If C<guestfs_inspect_get_format> returns C<installer> (this is an install "
11391 "disk), then this returns true if a live image was detected on the disk."
11392 msgstr ""
11393
11394 #. type: =head2
11395 #: ../src/guestfs-actions.pod:3087
11396 msgid "guestfs_inspect_is_multipart"
11397 msgstr ""
11398
11399 #. type: verbatim
11400 #: ../src/guestfs-actions.pod:3089
11401 #, no-wrap
11402 msgid ""
11403 " int\n"
11404 " guestfs_inspect_is_multipart (guestfs_h *g,\n"
11405 "                               const char *root);\n"
11406 "\n"
11407 msgstr ""
11408
11409 #. type: textblock
11410 #: ../src/guestfs-actions.pod:3096
11411 msgid ""
11412 "If C<guestfs_inspect_get_format> returns C<installer> (this is an install "
11413 "disk), then this returns true if the disk is part of a set."
11414 msgstr ""
11415
11416 #. type: =head2
11417 #: ../src/guestfs-actions.pod:3104
11418 msgid "guestfs_inspect_is_netinst"
11419 msgstr ""
11420
11421 #. type: verbatim
11422 #: ../src/guestfs-actions.pod:3106
11423 #, no-wrap
11424 msgid ""
11425 " int\n"
11426 " guestfs_inspect_is_netinst (guestfs_h *g,\n"
11427 "                             const char *root);\n"
11428 "\n"
11429 msgstr ""
11430
11431 #. type: textblock
11432 #: ../src/guestfs-actions.pod:3113
11433 msgid ""
11434 "If C<guestfs_inspect_get_format> returns C<installer> (this is an install "
11435 "disk), then this returns true if the disk is a network installer, ie. not a "
11436 "self-contained install CD but one which is likely to require network access "
11437 "to complete the install."
11438 msgstr ""
11439
11440 #. type: =head2
11441 #: ../src/guestfs-actions.pod:3123
11442 msgid "guestfs_inspect_list_applications"
11443 msgstr ""
11444
11445 #. type: verbatim
11446 #: ../src/guestfs-actions.pod:3125
11447 #, no-wrap
11448 msgid ""
11449 " struct guestfs_application_list *\n"
11450 " guestfs_inspect_list_applications (guestfs_h *g,\n"
11451 "                                    const char *root);\n"
11452 "\n"
11453 msgstr ""
11454
11455 #. type: textblock
11456 #: ../src/guestfs-actions.pod:3132 ../fish/guestfish-actions.pod:2176
11457 msgid "Return the list of applications installed in the operating system."
11458 msgstr ""
11459
11460 #. type: textblock
11461 #: ../src/guestfs-actions.pod:3134
11462 msgid ""
11463 "I<Note:> This call works differently from other parts of the inspection "
11464 "API.  You have to call C<guestfs_inspect_os>, then "
11465 "C<guestfs_inspect_get_mountpoints>, then mount up the disks, before calling "
11466 "this.  Listing applications is a significantly more difficult operation "
11467 "which requires access to the full filesystem.  Also note that unlike the "
11468 "other C<guestfs_inspect_get_*> calls which are just returning data cached in "
11469 "the libguestfs handle, this call actually reads parts of the mounted "
11470 "filesystems during the call."
11471 msgstr ""
11472
11473 #. type: textblock
11474 #: ../src/guestfs-actions.pod:3144 ../fish/guestfish-actions.pod:2188
11475 msgid ""
11476 "This returns an empty list if the inspection code was not able to determine "
11477 "the list of applications."
11478 msgstr ""
11479
11480 #. type: textblock
11481 #: ../src/guestfs-actions.pod:3147 ../fish/guestfish-actions.pod:2191
11482 msgid "The application structure contains the following fields:"
11483 msgstr ""
11484
11485 #. type: =item
11486 #: ../src/guestfs-actions.pod:3151 ../fish/guestfish-actions.pod:2195
11487 msgid "C<app_name>"
11488 msgstr "C<app_name>"
11489
11490 #. type: textblock
11491 #: ../src/guestfs-actions.pod:3153 ../fish/guestfish-actions.pod:2197
11492 msgid ""
11493 "The name of the application.  For Red Hat-derived and Debian-derived Linux "
11494 "guests, this is the package name."
11495 msgstr ""
11496
11497 #. type: =item
11498 #: ../src/guestfs-actions.pod:3156 ../fish/guestfish-actions.pod:2200
11499 msgid "C<app_display_name>"
11500 msgstr "C<app_display_name>"
11501
11502 #. type: textblock
11503 #: ../src/guestfs-actions.pod:3158 ../fish/guestfish-actions.pod:2202
11504 msgid ""
11505 "The display name of the application, sometimes localized to the install "
11506 "language of the guest operating system."
11507 msgstr ""
11508
11509 #. type: textblock
11510 #: ../src/guestfs-actions.pod:3161 ../fish/guestfish-actions.pod:2205
11511 msgid ""
11512 "If unavailable this is returned as an empty string C<\"\">.  Callers needing "
11513 "to display something can use C<app_name> instead."
11514 msgstr ""
11515
11516 #. type: =item
11517 #: ../src/guestfs-actions.pod:3164 ../fish/guestfish-actions.pod:2208
11518 msgid "C<app_epoch>"
11519 msgstr "C<app_epoch>"
11520
11521 #. type: textblock
11522 #: ../src/guestfs-actions.pod:3166 ../fish/guestfish-actions.pod:2210
11523 msgid ""
11524 "For package managers which use epochs, this contains the epoch of the "
11525 "package (an integer).  If unavailable, this is returned as C<0>."
11526 msgstr ""
11527
11528 #. type: =item
11529 #: ../src/guestfs-actions.pod:3169 ../fish/guestfish-actions.pod:2213
11530 msgid "C<app_version>"
11531 msgstr "C<app_version>"
11532
11533 #. type: textblock
11534 #: ../src/guestfs-actions.pod:3171 ../fish/guestfish-actions.pod:2215
11535 msgid ""
11536 "The version string of the application or package.  If unavailable this is "
11537 "returned as an empty string C<\"\">."
11538 msgstr ""
11539
11540 #. type: =item
11541 #: ../src/guestfs-actions.pod:3174 ../fish/guestfish-actions.pod:2218
11542 msgid "C<app_release>"
11543 msgstr "C<app_release>"
11544
11545 #. type: textblock
11546 #: ../src/guestfs-actions.pod:3176 ../fish/guestfish-actions.pod:2220
11547 msgid ""
11548 "The release string of the application or package, for package managers that "
11549 "use this.  If unavailable this is returned as an empty string C<\"\">."
11550 msgstr ""
11551
11552 #. type: =item
11553 #: ../src/guestfs-actions.pod:3180 ../fish/guestfish-actions.pod:2224
11554 msgid "C<app_install_path>"
11555 msgstr "C<app_install_path>"
11556
11557 #. type: textblock
11558 #: ../src/guestfs-actions.pod:3182 ../fish/guestfish-actions.pod:2226
11559 msgid ""
11560 "The installation path of the application (on operating systems such as "
11561 "Windows which use installation paths).  This path is in the format used by "
11562 "the guest operating system, it is not a libguestfs path."
11563 msgstr ""
11564
11565 #. type: textblock
11566 #: ../src/guestfs-actions.pod:3187 ../fish/guestfish-actions.pod:2231
11567 msgid "If unavailable this is returned as an empty string C<\"\">."
11568 msgstr ""
11569
11570 #. type: =item
11571 #: ../src/guestfs-actions.pod:3189 ../fish/guestfish-actions.pod:2233
11572 msgid "C<app_trans_path>"
11573 msgstr "C<app_trans_path>"
11574
11575 #. type: textblock
11576 #: ../src/guestfs-actions.pod:3191 ../fish/guestfish-actions.pod:2235
11577 msgid ""
11578 "The install path translated into a libguestfs path.  If unavailable this is "
11579 "returned as an empty string C<\"\">."
11580 msgstr ""
11581
11582 #. type: =item
11583 #: ../src/guestfs-actions.pod:3194 ../fish/guestfish-actions.pod:2238
11584 msgid "C<app_publisher>"
11585 msgstr "C<app_publisher>"
11586
11587 #. type: textblock
11588 #: ../src/guestfs-actions.pod:3196 ../fish/guestfish-actions.pod:2240
11589 msgid ""
11590 "The name of the publisher of the application, for package managers that use "
11591 "this.  If unavailable this is returned as an empty string C<\"\">."
11592 msgstr ""
11593
11594 #. type: =item
11595 #: ../src/guestfs-actions.pod:3200 ../fish/guestfish-actions.pod:2244
11596 msgid "C<app_url>"
11597 msgstr "C<app_url>"
11598
11599 #. type: textblock
11600 #: ../src/guestfs-actions.pod:3202 ../fish/guestfish-actions.pod:2246
11601 msgid ""
11602 "The URL (eg. upstream URL) of the application.  If unavailable this is "
11603 "returned as an empty string C<\"\">."
11604 msgstr ""
11605
11606 #. type: =item
11607 #: ../src/guestfs-actions.pod:3205 ../fish/guestfish-actions.pod:2249
11608 msgid "C<app_source_package>"
11609 msgstr ""
11610
11611 #. type: textblock
11612 #: ../src/guestfs-actions.pod:3207 ../fish/guestfish-actions.pod:2251
11613 msgid ""
11614 "For packaging systems which support this, the name of the source package.  "
11615 "If unavailable this is returned as an empty string C<\"\">."
11616 msgstr ""
11617
11618 #. type: =item
11619 #: ../src/guestfs-actions.pod:3210 ../fish/guestfish-actions.pod:2254
11620 msgid "C<app_summary>"
11621 msgstr ""
11622
11623 #. type: textblock
11624 #: ../src/guestfs-actions.pod:3212 ../fish/guestfish-actions.pod:2256
11625 msgid ""
11626 "A short (usually one line) description of the application or package.  If "
11627 "unavailable this is returned as an empty string C<\"\">."
11628 msgstr ""
11629
11630 #. type: =item
11631 #: ../src/guestfs-actions.pod:3215 ../fish/guestfish-actions.pod:2259
11632 msgid "C<app_description>"
11633 msgstr ""
11634
11635 #. type: textblock
11636 #: ../src/guestfs-actions.pod:3217 ../fish/guestfish-actions.pod:2261
11637 msgid ""
11638 "A longer description of the application or package.  If unavailable this is "
11639 "returned as an empty string C<\"\">."
11640 msgstr ""
11641
11642 #. type: textblock
11643 #: ../src/guestfs-actions.pod:3224
11644 msgid ""
11645 "This function returns a C<struct guestfs_application_list *>, or NULL if "
11646 "there was an error.  I<The caller must call C<guestfs_free_application_list> "
11647 "after use>."
11648 msgstr ""
11649
11650 #. type: textblock
11651 #: ../src/guestfs-actions.pod:3228
11652 msgid "(Added in 1.7.8)"
11653 msgstr ""
11654
11655 #. type: =head2
11656 #: ../src/guestfs-actions.pod:3230
11657 msgid "guestfs_inspect_os"
11658 msgstr ""
11659
11660 #. type: verbatim
11661 #: ../src/guestfs-actions.pod:3232
11662 #, no-wrap
11663 msgid ""
11664 " char **\n"
11665 " guestfs_inspect_os (guestfs_h *g);\n"
11666 "\n"
11667 msgstr ""
11668
11669 #. type: textblock
11670 #: ../src/guestfs-actions.pod:3235 ../fish/guestfish-actions.pod:2272
11671 msgid ""
11672 "This function uses other libguestfs functions and certain heuristics to "
11673 "inspect the disk(s) (usually disks belonging to a virtual machine), looking "
11674 "for operating systems."
11675 msgstr ""
11676
11677 #. type: textblock
11678 #: ../src/guestfs-actions.pod:3239 ../fish/guestfish-actions.pod:2276
11679 msgid "The list returned is empty if no operating systems were found."
11680 msgstr ""
11681
11682 #. type: textblock
11683 #: ../src/guestfs-actions.pod:3241 ../fish/guestfish-actions.pod:2278
11684 msgid ""
11685 "If one operating system was found, then this returns a list with a single "
11686 "element, which is the name of the root filesystem of this operating system.  "
11687 "It is also possible for this function to return a list containing more than "
11688 "one element, indicating a dual-boot or multi-boot virtual machine, with each "
11689 "element being the root filesystem of one of the operating systems."
11690 msgstr ""
11691
11692 #. type: textblock
11693 #: ../src/guestfs-actions.pod:3248
11694 msgid ""
11695 "You can pass the root string(s) returned to other C<guestfs_inspect_get_*> "
11696 "functions in order to query further information about each operating system, "
11697 "such as the name and version."
11698 msgstr ""
11699
11700 #. type: textblock
11701 #: ../src/guestfs-actions.pod:3253
11702 msgid ""
11703 "This function uses other libguestfs features such as C<guestfs_mount_ro> and "
11704 "C<guestfs_umount_all> in order to mount and unmount filesystems and look at "
11705 "the contents.  This should be called with no disks currently mounted.  The "
11706 "function may also use Augeas, so any existing Augeas handle will be closed."
11707 msgstr ""
11708
11709 #. type: textblock
11710 #: ../src/guestfs-actions.pod:3259 ../fish/guestfish-actions.pod:2296
11711 msgid ""
11712 "This function cannot decrypt encrypted disks.  The caller must do that first "
11713 "(supplying the necessary keys) if the disk is encrypted."
11714 msgstr ""
11715
11716 #. type: textblock
11717 #: ../src/guestfs-actions.pod:3265 ../src/guestfs-actions.pod:3555
11718 #: ../src/guestfs-actions.pod:3617
11719 msgid "See also C<guestfs_list_filesystems>."
11720 msgstr ""
11721
11722 #. type: =head2
11723 #: ../src/guestfs-actions.pod:3273
11724 msgid "guestfs_is_blockdev"
11725 msgstr ""
11726
11727 #. type: verbatim
11728 #: ../src/guestfs-actions.pod:3275
11729 #, no-wrap
11730 msgid ""
11731 " int\n"
11732 " guestfs_is_blockdev (guestfs_h *g,\n"
11733 "                      const char *path);\n"
11734 "\n"
11735 msgstr ""
11736
11737 #. type: textblock
11738 #: ../src/guestfs-actions.pod:3279 ../fish/guestfish-actions.pod:2308
11739 msgid ""
11740 "This returns C<true> if and only if there is a block device with the given "
11741 "C<path> name."
11742 msgstr ""
11743
11744 #. type: textblock
11745 #: ../src/guestfs-actions.pod:3282 ../src/guestfs-actions.pod:3311
11746 #: ../src/guestfs-actions.pod:3341 ../src/guestfs-actions.pod:3356
11747 #: ../src/guestfs-actions.pod:3372 ../src/guestfs-actions.pod:3428
11748 #: ../src/guestfs-actions.pod:3443
11749 msgid "See also C<guestfs_stat>."
11750 msgstr ""
11751
11752 #. type: textblock
11753 #: ../src/guestfs-actions.pod:3286 ../src/guestfs-actions.pod:3315
11754 #: ../src/guestfs-actions.pod:3360 ../src/guestfs-actions.pod:3432
11755 #: ../src/guestfs-actions.pod:3447
11756 msgid "(Added in 1.5.10)"
11757 msgstr ""
11758
11759 #. type: =head2
11760 #: ../src/guestfs-actions.pod:3288
11761 msgid "guestfs_is_busy"
11762 msgstr ""
11763
11764 #. type: verbatim
11765 #: ../src/guestfs-actions.pod:3290
11766 #, no-wrap
11767 msgid ""
11768 " int\n"
11769 " guestfs_is_busy (guestfs_h *g);\n"
11770 "\n"
11771 msgstr ""
11772
11773 #. type: textblock
11774 #: ../src/guestfs-actions.pod:3293 ../fish/guestfish-actions.pod:2317
11775 msgid ""
11776 "This returns true iff this handle is busy processing a command (in the "
11777 "C<BUSY> state)."
11778 msgstr ""
11779
11780 #. type: =head2
11781 #: ../src/guestfs-actions.pod:3302
11782 msgid "guestfs_is_chardev"
11783 msgstr ""
11784
11785 #. type: verbatim
11786 #: ../src/guestfs-actions.pod:3304
11787 #, no-wrap
11788 msgid ""
11789 " int\n"
11790 " guestfs_is_chardev (guestfs_h *g,\n"
11791 "                     const char *path);\n"
11792 "\n"
11793 msgstr ""
11794
11795 #. type: textblock
11796 #: ../src/guestfs-actions.pod:3308 ../fish/guestfish-actions.pod:2326
11797 msgid ""
11798 "This returns C<true> if and only if there is a character device with the "
11799 "given C<path> name."
11800 msgstr ""
11801
11802 #. type: =head2
11803 #: ../src/guestfs-actions.pod:3317
11804 msgid "guestfs_is_config"
11805 msgstr ""
11806
11807 #. type: verbatim
11808 #: ../src/guestfs-actions.pod:3319
11809 #, no-wrap
11810 msgid ""
11811 " int\n"
11812 " guestfs_is_config (guestfs_h *g);\n"
11813 "\n"
11814 msgstr ""
11815
11816 #. type: textblock
11817 #: ../src/guestfs-actions.pod:3322 ../fish/guestfish-actions.pod:2335
11818 msgid ""
11819 "This returns true iff this handle is being configured (in the C<CONFIG> "
11820 "state)."
11821 msgstr ""
11822
11823 #. type: =head2
11824 #: ../src/guestfs-actions.pod:3331
11825 msgid "guestfs_is_dir"
11826 msgstr ""
11827
11828 #. type: verbatim
11829 #: ../src/guestfs-actions.pod:3333
11830 #, no-wrap
11831 msgid ""
11832 " int\n"
11833 " guestfs_is_dir (guestfs_h *g,\n"
11834 "                 const char *path);\n"
11835 "\n"
11836 msgstr ""
11837
11838 #. type: textblock
11839 #: ../src/guestfs-actions.pod:3337 ../fish/guestfish-actions.pod:2344
11840 msgid ""
11841 "This returns C<true> if and only if there is a directory with the given "
11842 "C<path> name.  Note that it returns false for other objects like files."
11843 msgstr ""
11844
11845 #. type: =head2
11846 #: ../src/guestfs-actions.pod:3347
11847 msgid "guestfs_is_fifo"
11848 msgstr ""
11849
11850 #. type: verbatim
11851 #: ../src/guestfs-actions.pod:3349
11852 #, no-wrap
11853 msgid ""
11854 " int\n"
11855 " guestfs_is_fifo (guestfs_h *g,\n"
11856 "                  const char *path);\n"
11857 "\n"
11858 msgstr ""
11859
11860 #. type: textblock
11861 #: ../src/guestfs-actions.pod:3353 ../fish/guestfish-actions.pod:2354
11862 msgid ""
11863 "This returns C<true> if and only if there is a FIFO (named pipe)  with the "
11864 "given C<path> name."
11865 msgstr ""
11866
11867 #. type: =head2
11868 #: ../src/guestfs-actions.pod:3362
11869 msgid "guestfs_is_file"
11870 msgstr ""
11871
11872 #. type: verbatim
11873 #: ../src/guestfs-actions.pod:3364
11874 #, no-wrap
11875 msgid ""
11876 " int\n"
11877 " guestfs_is_file (guestfs_h *g,\n"
11878 "                  const char *path);\n"
11879 "\n"
11880 msgstr ""
11881
11882 #. type: textblock
11883 #: ../src/guestfs-actions.pod:3368 ../fish/guestfish-actions.pod:2363
11884 msgid ""
11885 "This returns C<true> if and only if there is a regular file with the given "
11886 "C<path> name.  Note that it returns false for other objects like directories."
11887 msgstr ""
11888
11889 #. type: =head2
11890 #: ../src/guestfs-actions.pod:3378
11891 msgid "guestfs_is_launching"
11892 msgstr ""
11893
11894 #. type: verbatim
11895 #: ../src/guestfs-actions.pod:3380
11896 #, no-wrap
11897 msgid ""
11898 " int\n"
11899 " guestfs_is_launching (guestfs_h *g);\n"
11900 "\n"
11901 msgstr ""
11902
11903 #. type: textblock
11904 #: ../src/guestfs-actions.pod:3383 ../fish/guestfish-actions.pod:2373
11905 msgid ""
11906 "This returns true iff this handle is launching the subprocess (in the "
11907 "C<LAUNCHING> state)."
11908 msgstr ""
11909
11910 #. type: =head2
11911 #: ../src/guestfs-actions.pod:3392
11912 msgid "guestfs_is_lv"
11913 msgstr ""
11914
11915 #. type: verbatim
11916 #: ../src/guestfs-actions.pod:3394
11917 #, no-wrap
11918 msgid ""
11919 " int\n"
11920 " guestfs_is_lv (guestfs_h *g,\n"
11921 "                const char *device);\n"
11922 "\n"
11923 msgstr ""
11924
11925 #. type: textblock
11926 #: ../src/guestfs-actions.pod:3398 ../fish/guestfish-actions.pod:2382
11927 msgid ""
11928 "This command tests whether C<device> is a logical volume, and returns true "
11929 "iff this is the case."
11930 msgstr ""
11931
11932 #. type: =head2
11933 #: ../src/guestfs-actions.pod:3405
11934 msgid "guestfs_is_ready"
11935 msgstr ""
11936
11937 #. type: verbatim
11938 #: ../src/guestfs-actions.pod:3407
11939 #, no-wrap
11940 msgid ""
11941 " int\n"
11942 " guestfs_is_ready (guestfs_h *g);\n"
11943 "\n"
11944 msgstr ""
11945
11946 #. type: textblock
11947 #: ../src/guestfs-actions.pod:3410 ../fish/guestfish-actions.pod:2389
11948 msgid ""
11949 "This returns true iff this handle is ready to accept commands (in the "
11950 "C<READY> state)."
11951 msgstr ""
11952
11953 #. type: =head2
11954 #: ../src/guestfs-actions.pod:3419
11955 msgid "guestfs_is_socket"
11956 msgstr ""
11957
11958 #. type: verbatim
11959 #: ../src/guestfs-actions.pod:3421
11960 #, no-wrap
11961 msgid ""
11962 " int\n"
11963 " guestfs_is_socket (guestfs_h *g,\n"
11964 "                    const char *path);\n"
11965 "\n"
11966 msgstr ""
11967
11968 #. type: textblock
11969 #: ../src/guestfs-actions.pod:3425 ../fish/guestfish-actions.pod:2398
11970 msgid ""
11971 "This returns C<true> if and only if there is a Unix domain socket with the "
11972 "given C<path> name."
11973 msgstr ""
11974
11975 #. type: =head2
11976 #: ../src/guestfs-actions.pod:3434
11977 msgid "guestfs_is_symlink"
11978 msgstr ""
11979
11980 #. type: verbatim
11981 #: ../src/guestfs-actions.pod:3436
11982 #, no-wrap
11983 msgid ""
11984 " int\n"
11985 " guestfs_is_symlink (guestfs_h *g,\n"
11986 "                     const char *path);\n"
11987 "\n"
11988 msgstr ""
11989
11990 #. type: textblock
11991 #: ../src/guestfs-actions.pod:3440 ../fish/guestfish-actions.pod:2407
11992 msgid ""
11993 "This returns C<true> if and only if there is a symbolic link with the given "
11994 "C<path> name."
11995 msgstr ""
11996
11997 #. type: =head2
11998 #: ../src/guestfs-actions.pod:3449
11999 msgid "guestfs_kill_subprocess"
12000 msgstr ""
12001
12002 #. type: verbatim
12003 #: ../src/guestfs-actions.pod:3451
12004 #, no-wrap
12005 msgid ""
12006 " int\n"
12007 " guestfs_kill_subprocess (guestfs_h *g);\n"
12008 "\n"
12009 msgstr ""
12010
12011 #. type: textblock
12012 #: ../src/guestfs-actions.pod:3454 ../fish/guestfish-actions.pod:2416
12013 msgid "This kills the qemu subprocess.  You should never need to call this."
12014 msgstr ""
12015
12016 #. type: =head2
12017 #: ../src/guestfs-actions.pod:3460
12018 msgid "guestfs_launch"
12019 msgstr ""
12020
12021 #. type: verbatim
12022 #: ../src/guestfs-actions.pod:3462
12023 #, no-wrap
12024 msgid ""
12025 " int\n"
12026 " guestfs_launch (guestfs_h *g);\n"
12027 "\n"
12028 msgstr ""
12029
12030 #. type: textblock
12031 #: ../src/guestfs-actions.pod:3465 ../fish/guestfish-actions.pod:2424
12032 msgid ""
12033 "Internally libguestfs is implemented by running a virtual machine using "
12034 "L<qemu(1)>."
12035 msgstr ""
12036
12037 #. type: textblock
12038 #: ../src/guestfs-actions.pod:3468 ../fish/guestfish-actions.pod:2427
12039 msgid ""
12040 "You should call this after configuring the handle (eg. adding drives) but "
12041 "before performing any actions."
12042 msgstr ""
12043
12044 #. type: =head2
12045 #: ../src/guestfs-actions.pod:3480
12046 msgid "guestfs_lchown"
12047 msgstr ""
12048
12049 #. type: verbatim
12050 #: ../src/guestfs-actions.pod:3482
12051 #, no-wrap
12052 msgid ""
12053 " int\n"
12054 " guestfs_lchown (guestfs_h *g,\n"
12055 "                 int owner,\n"
12056 "                 int group,\n"
12057 "                 const char *path);\n"
12058 "\n"
12059 msgstr ""
12060
12061 #. type: textblock
12062 #: ../src/guestfs-actions.pod:3488
12063 msgid ""
12064 "Change the file owner to C<owner> and group to C<group>.  This is like "
12065 "C<guestfs_chown> but if C<path> is a symlink then the link itself is "
12066 "changed, not the target."
12067 msgstr ""
12068
12069 #. type: =head2
12070 #: ../src/guestfs-actions.pod:3500
12071 msgid "guestfs_lgetxattr"
12072 msgstr ""
12073
12074 #. type: verbatim
12075 #: ../src/guestfs-actions.pod:3502
12076 #, no-wrap
12077 msgid ""
12078 " char *\n"
12079 " guestfs_lgetxattr (guestfs_h *g,\n"
12080 "                    const char *path,\n"
12081 "                    const char *name,\n"
12082 "                    size_t *size_r);\n"
12083 "\n"
12084 msgstr ""
12085
12086 #. type: textblock
12087 #: ../src/guestfs-actions.pod:3508 ../fish/guestfish-actions.pod:2446
12088 msgid ""
12089 "Get a single extended attribute from file C<path> named C<name>.  If C<path> "
12090 "is a symlink, then this call returns an extended attribute from the symlink."
12091 msgstr ""
12092
12093 #. type: textblock
12094 #: ../src/guestfs-actions.pod:3522
12095 msgid "See also: C<guestfs_lgetxattrs>, C<guestfs_getxattr>, L<attr(5)>."
12096 msgstr ""
12097
12098 #. type: =head2
12099 #: ../src/guestfs-actions.pod:3530
12100 msgid "guestfs_lgetxattrs"
12101 msgstr ""
12102
12103 #. type: verbatim
12104 #: ../src/guestfs-actions.pod:3532
12105 #, no-wrap
12106 msgid ""
12107 " struct guestfs_xattr_list *\n"
12108 " guestfs_lgetxattrs (guestfs_h *g,\n"
12109 "                     const char *path);\n"
12110 "\n"
12111 msgstr ""
12112
12113 #. type: textblock
12114 #: ../src/guestfs-actions.pod:3536
12115 msgid ""
12116 "This is the same as C<guestfs_getxattrs>, but if C<path> is a symbolic link, "
12117 "then it returns the extended attributes of the link itself."
12118 msgstr ""
12119
12120 #. type: =head2
12121 #: ../src/guestfs-actions.pod:3546
12122 msgid "guestfs_list_devices"
12123 msgstr ""
12124
12125 #. type: verbatim
12126 #: ../src/guestfs-actions.pod:3548
12127 #, no-wrap
12128 msgid ""
12129 " char **\n"
12130 " guestfs_list_devices (guestfs_h *g);\n"
12131 "\n"
12132 msgstr ""
12133
12134 #. type: textblock
12135 #: ../src/guestfs-actions.pod:3551 ../fish/guestfish-actions.pod:2474
12136 msgid "List all the block devices."
12137 msgstr ""
12138
12139 #. type: textblock
12140 #: ../src/guestfs-actions.pod:3553 ../fish/guestfish-actions.pod:2476
12141 msgid "The full block device names are returned, eg. C</dev/sda>."
12142 msgstr ""
12143
12144 #. type: =head2
12145 #: ../src/guestfs-actions.pod:3563
12146 msgid "guestfs_list_filesystems"
12147 msgstr ""
12148
12149 #. type: verbatim
12150 #: ../src/guestfs-actions.pod:3565
12151 #, no-wrap
12152 msgid ""
12153 " char **\n"
12154 " guestfs_list_filesystems (guestfs_h *g);\n"
12155 "\n"
12156 msgstr ""
12157
12158 #. type: textblock
12159 #: ../src/guestfs-actions.pod:3568 ../fish/guestfish-actions.pod:2484
12160 msgid ""
12161 "This inspection command looks for filesystems on partitions, block devices "
12162 "and logical volumes, returning a list of devices containing filesystems and "
12163 "their type."
12164 msgstr ""
12165
12166 #. type: textblock
12167 #: ../src/guestfs-actions.pod:3572 ../fish/guestfish-actions.pod:2488
12168 msgid ""
12169 "The return value is a hash, where the keys are the devices containing "
12170 "filesystems, and the values are the filesystem types.  For example:"
12171 msgstr ""
12172
12173 #. type: verbatim
12174 #: ../src/guestfs-actions.pod:3576 ../fish/guestfish-actions.pod:2492
12175 #, no-wrap
12176 msgid ""
12177 " \"/dev/sda1\" => \"ntfs\"\n"
12178 " \"/dev/sda2\" => \"ext2\"\n"
12179 " \"/dev/vg_guest/lv_root\" => \"ext4\"\n"
12180 " \"/dev/vg_guest/lv_swap\" => \"swap\"\n"
12181 "\n"
12182 msgstr ""
12183
12184 #. type: textblock
12185 #: ../src/guestfs-actions.pod:3581 ../fish/guestfish-actions.pod:2497
12186 msgid ""
12187 "The value can have the special value \"unknown\", meaning the content of the "
12188 "device is undetermined or empty.  \"swap\" means a Linux swap partition."
12189 msgstr ""
12190
12191 #. type: textblock
12192 #: ../src/guestfs-actions.pod:3585
12193 msgid ""
12194 "This command runs other libguestfs commands, which might include "
12195 "C<guestfs_mount> and C<guestfs_umount>, and therefore you should use this "
12196 "soon after launch and only when nothing is mounted."
12197 msgstr ""
12198
12199 #. type: textblock
12200 #: ../src/guestfs-actions.pod:3589
12201 msgid ""
12202 "Not all of the filesystems returned will be mountable.  In particular, swap "
12203 "partitions are returned in the list.  Also this command does not check that "
12204 "each filesystem found is valid and mountable, and some filesystems might be "
12205 "mountable but require special options.  Filesystems may not all belong to a "
12206 "single logical operating system (use C<guestfs_inspect_os> to look for OSes)."
12207 msgstr ""
12208
12209 #. type: textblock
12210 #: ../src/guestfs-actions.pod:3603 ../src/guestfs-actions.pod:5224
12211 msgid "(Added in 1.5.15)"
12212 msgstr ""
12213
12214 #. type: =head2
12215 #: ../src/guestfs-actions.pod:3605
12216 msgid "guestfs_list_partitions"
12217 msgstr ""
12218
12219 #. type: verbatim
12220 #: ../src/guestfs-actions.pod:3607
12221 #, no-wrap
12222 msgid ""
12223 " char **\n"
12224 " guestfs_list_partitions (guestfs_h *g);\n"
12225 "\n"
12226 msgstr ""
12227
12228 #. type: textblock
12229 #: ../src/guestfs-actions.pod:3610 ../fish/guestfish-actions.pod:2517
12230 msgid "List all the partitions detected on all block devices."
12231 msgstr ""
12232
12233 #. type: textblock
12234 #: ../src/guestfs-actions.pod:3612 ../fish/guestfish-actions.pod:2519
12235 msgid "The full partition device names are returned, eg. C</dev/sda1>"
12236 msgstr ""
12237
12238 #. type: textblock
12239 #: ../src/guestfs-actions.pod:3614
12240 msgid ""
12241 "This does not return logical volumes.  For that you will need to call "
12242 "C<guestfs_lvs>."
12243 msgstr ""
12244
12245 #. type: =head2
12246 #: ../src/guestfs-actions.pod:3625
12247 msgid "guestfs_ll"
12248 msgstr ""
12249
12250 #. type: verbatim
12251 #: ../src/guestfs-actions.pod:3627
12252 #, no-wrap
12253 msgid ""
12254 " char *\n"
12255 " guestfs_ll (guestfs_h *g,\n"
12256 "             const char *directory);\n"
12257 "\n"
12258 msgstr ""
12259
12260 #. type: textblock
12261 #: ../src/guestfs-actions.pod:3631 ../fish/guestfish-actions.pod:2530
12262 msgid ""
12263 "List the files in C<directory> (relative to the root directory, there is no "
12264 "cwd) in the format of 'ls -la'."
12265 msgstr ""
12266
12267 #. type: textblock
12268 #: ../src/guestfs-actions.pod:3634 ../fish/guestfish-actions.pod:2533
12269 msgid ""
12270 "This command is mostly useful for interactive sessions.  It is I<not> "
12271 "intended that you try to parse the output string."
12272 msgstr ""
12273
12274 #. type: =head2
12275 #: ../src/guestfs-actions.pod:3642
12276 msgid "guestfs_ln"
12277 msgstr ""
12278
12279 #. type: verbatim
12280 #: ../src/guestfs-actions.pod:3644
12281 #, no-wrap
12282 msgid ""
12283 " int\n"
12284 " guestfs_ln (guestfs_h *g,\n"
12285 "             const char *target,\n"
12286 "             const char *linkname);\n"
12287 "\n"
12288 msgstr ""
12289
12290 #. type: textblock
12291 #: ../src/guestfs-actions.pod:3649 ../fish/guestfish-actions.pod:2540
12292 msgid "This command creates a hard link using the C<ln> command."
12293 msgstr ""
12294
12295 #. type: =head2
12296 #: ../src/guestfs-actions.pod:3655
12297 msgid "guestfs_ln_f"
12298 msgstr ""
12299
12300 #. type: verbatim
12301 #: ../src/guestfs-actions.pod:3657
12302 #, no-wrap
12303 msgid ""
12304 " int\n"
12305 " guestfs_ln_f (guestfs_h *g,\n"
12306 "               const char *target,\n"
12307 "               const char *linkname);\n"
12308 "\n"
12309 msgstr ""
12310
12311 #. type: textblock
12312 #: ../src/guestfs-actions.pod:3662 ../fish/guestfish-actions.pod:2546
12313 msgid ""
12314 "This command creates a hard link using the C<ln -f> command.  The I<-f> "
12315 "option removes the link (C<linkname>) if it exists already."
12316 msgstr ""
12317
12318 #. type: =head2
12319 #: ../src/guestfs-actions.pod:3669
12320 msgid "guestfs_ln_s"
12321 msgstr ""
12322
12323 #. type: verbatim
12324 #: ../src/guestfs-actions.pod:3671
12325 #, no-wrap
12326 msgid ""
12327 " int\n"
12328 " guestfs_ln_s (guestfs_h *g,\n"
12329 "               const char *target,\n"
12330 "               const char *linkname);\n"
12331 "\n"
12332 msgstr ""
12333
12334 #. type: textblock
12335 #: ../src/guestfs-actions.pod:3676 ../fish/guestfish-actions.pod:2553
12336 msgid "This command creates a symbolic link using the C<ln -s> command."
12337 msgstr ""
12338
12339 #. type: =head2
12340 #: ../src/guestfs-actions.pod:3682
12341 msgid "guestfs_ln_sf"
12342 msgstr ""
12343
12344 #. type: verbatim
12345 #: ../src/guestfs-actions.pod:3684
12346 #, no-wrap
12347 msgid ""
12348 " int\n"
12349 " guestfs_ln_sf (guestfs_h *g,\n"
12350 "                const char *target,\n"
12351 "                const char *linkname);\n"
12352 "\n"
12353 msgstr ""
12354
12355 #. type: textblock
12356 #: ../src/guestfs-actions.pod:3689 ../fish/guestfish-actions.pod:2559
12357 msgid ""
12358 "This command creates a symbolic link using the C<ln -sf> command, The I<-f> "
12359 "option removes the link (C<linkname>) if it exists already."
12360 msgstr ""
12361
12362 #. type: =head2
12363 #: ../src/guestfs-actions.pod:3696
12364 msgid "guestfs_lremovexattr"
12365 msgstr ""
12366
12367 #. type: verbatim
12368 #: ../src/guestfs-actions.pod:3698
12369 #, no-wrap
12370 msgid ""
12371 " int\n"
12372 " guestfs_lremovexattr (guestfs_h *g,\n"
12373 "                       const char *xattr,\n"
12374 "                       const char *path);\n"
12375 "\n"
12376 msgstr ""
12377
12378 #. type: textblock
12379 #: ../src/guestfs-actions.pod:3703
12380 msgid ""
12381 "This is the same as C<guestfs_removexattr>, but if C<path> is a symbolic "
12382 "link, then it removes an extended attribute of the link itself."
12383 msgstr ""
12384
12385 #. type: =head2
12386 #: ../src/guestfs-actions.pod:3711
12387 msgid "guestfs_ls"
12388 msgstr ""
12389
12390 #. type: verbatim
12391 #: ../src/guestfs-actions.pod:3713
12392 #, no-wrap
12393 msgid ""
12394 " char **\n"
12395 " guestfs_ls (guestfs_h *g,\n"
12396 "             const char *directory);\n"
12397 "\n"
12398 msgstr ""
12399
12400 #. type: textblock
12401 #: ../src/guestfs-actions.pod:3717 ../fish/guestfish-actions.pod:2574
12402 msgid ""
12403 "List the files in C<directory> (relative to the root directory, there is no "
12404 "cwd).  The '.' and '..' entries are not returned, but hidden files are shown."
12405 msgstr ""
12406
12407 #. type: textblock
12408 #: ../src/guestfs-actions.pod:3721
12409 msgid ""
12410 "This command is mostly useful for interactive sessions.  Programs should "
12411 "probably use C<guestfs_readdir> instead."
12412 msgstr ""
12413
12414 #. type: =head2
12415 #: ../src/guestfs-actions.pod:3730
12416 msgid "guestfs_lsetxattr"
12417 msgstr ""
12418
12419 #. type: verbatim
12420 #: ../src/guestfs-actions.pod:3732
12421 #, no-wrap
12422 msgid ""
12423 " int\n"
12424 " guestfs_lsetxattr (guestfs_h *g,\n"
12425 "                    const char *xattr,\n"
12426 "                    const char *val,\n"
12427 "                    int vallen,\n"
12428 "                    const char *path);\n"
12429 "\n"
12430 msgstr ""
12431
12432 #. type: textblock
12433 #: ../src/guestfs-actions.pod:3739
12434 msgid ""
12435 "This is the same as C<guestfs_setxattr>, but if C<path> is a symbolic link, "
12436 "then it sets an extended attribute of the link itself."
12437 msgstr ""
12438
12439 #. type: =head2
12440 #: ../src/guestfs-actions.pod:3747
12441 msgid "guestfs_lstat"
12442 msgstr ""
12443
12444 #. type: verbatim
12445 #: ../src/guestfs-actions.pod:3749
12446 #, no-wrap
12447 msgid ""
12448 " struct guestfs_stat *\n"
12449 " guestfs_lstat (guestfs_h *g,\n"
12450 "                const char *path);\n"
12451 "\n"
12452 msgstr ""
12453
12454 #. type: textblock
12455 #: ../src/guestfs-actions.pod:3753 ../src/guestfs-actions.pod:6355
12456 #: ../fish/guestfish-actions.pod:2593 ../fish/guestfish-actions.pod:4306
12457 msgid "Returns file information for the given C<path>."
12458 msgstr ""
12459
12460 #. type: textblock
12461 #: ../src/guestfs-actions.pod:3755
12462 msgid ""
12463 "This is the same as C<guestfs_stat> except that if C<path> is a symbolic "
12464 "link, then the link is stat-ed, not the file it refers to."
12465 msgstr ""
12466
12467 #. type: textblock
12468 #: ../src/guestfs-actions.pod:3759 ../fish/guestfish-actions.pod:2599
12469 msgid "This is the same as the C<lstat(2)> system call."
12470 msgstr ""
12471
12472 #. type: textblock
12473 #: ../src/guestfs-actions.pod:3761 ../src/guestfs-actions.pod:6359
12474 msgid ""
12475 "This function returns a C<struct guestfs_stat *>, or NULL if there was an "
12476 "error.  I<The caller must call C<guestfs_free_stat> after use>."
12477 msgstr ""
12478
12479 #. type: textblock
12480 #: ../src/guestfs-actions.pod:3765 ../src/guestfs-actions.pod:6363
12481 #: ../src/guestfs-actions.pod:6381 ../src/guestfs-actions.pod:6762
12482 msgid "(Added in 0.9.2)"
12483 msgstr ""
12484
12485 #. type: =head2
12486 #: ../src/guestfs-actions.pod:3767
12487 msgid "guestfs_lstatlist"
12488 msgstr ""
12489
12490 #. type: verbatim
12491 #: ../src/guestfs-actions.pod:3769
12492 #, no-wrap
12493 msgid ""
12494 " struct guestfs_stat_list *\n"
12495 " guestfs_lstatlist (guestfs_h *g,\n"
12496 "                    const char *path,\n"
12497 "                    char *const *names);\n"
12498 "\n"
12499 msgstr ""
12500
12501 #. type: textblock
12502 #: ../src/guestfs-actions.pod:3774
12503 msgid ""
12504 "This call allows you to perform the C<guestfs_lstat> operation on multiple "
12505 "files, where all files are in the directory C<path>.  C<names> is the list "
12506 "of files from this directory."
12507 msgstr ""
12508
12509 #. type: textblock
12510 #: ../src/guestfs-actions.pod:3778 ../fish/guestfish-actions.pod:2609
12511 msgid ""
12512 "On return you get a list of stat structs, with a one-to-one correspondence "
12513 "to the C<names> list.  If any name did not exist or could not be lstat'd, "
12514 "then the C<ino> field of that structure is set to C<-1>."
12515 msgstr ""
12516
12517 #. type: textblock
12518 #: ../src/guestfs-actions.pod:3783
12519 msgid ""
12520 "This call is intended for programs that want to efficiently list a directory "
12521 "contents without making many round-trips.  See also C<guestfs_lxattrlist> "
12522 "for a similarly efficient call for getting extended attributes.  Very long "
12523 "directory listings might cause the protocol message size to be exceeded, "
12524 "causing this call to fail.  The caller must split up such requests into "
12525 "smaller groups of names."
12526 msgstr ""
12527
12528 #. type: textblock
12529 #: ../src/guestfs-actions.pod:3791
12530 msgid ""
12531 "This function returns a C<struct guestfs_stat_list *>, or NULL if there was "
12532 "an error.  I<The caller must call C<guestfs_free_stat_list> after use>."
12533 msgstr ""
12534
12535 #. type: =head2
12536 #: ../src/guestfs-actions.pod:3797
12537 msgid "guestfs_luks_add_key"
12538 msgstr ""
12539
12540 #. type: verbatim
12541 #: ../src/guestfs-actions.pod:3799
12542 #, no-wrap
12543 msgid ""
12544 " int\n"
12545 " guestfs_luks_add_key (guestfs_h *g,\n"
12546 "                       const char *device,\n"
12547 "                       const char *key,\n"
12548 "                       const char *newkey,\n"
12549 "                       int keyslot);\n"
12550 "\n"
12551 msgstr ""
12552
12553 #. type: textblock
12554 #: ../src/guestfs-actions.pod:3806 ../fish/guestfish-actions.pod:2626
12555 msgid ""
12556 "This command adds a new key on LUKS device C<device>.  C<key> is any "
12557 "existing key, and is used to access the device.  C<newkey> is the new key to "
12558 "add.  C<keyslot> is the key slot that will be replaced."
12559 msgstr ""
12560
12561 #. type: textblock
12562 #: ../src/guestfs-actions.pod:3811
12563 msgid ""
12564 "Note that if C<keyslot> already contains a key, then this command will "
12565 "fail.  You have to use C<guestfs_luks_kill_slot> first to remove that key."
12566 msgstr ""
12567
12568 #. type: textblock
12569 #: ../src/guestfs-actions.pod:3817 ../src/guestfs-actions.pod:3857
12570 #: ../src/guestfs-actions.pod:3880 ../src/guestfs-actions.pod:3900
12571 #: ../src/guestfs-actions.pod:3932 ../src/guestfs-actions.pod:3951
12572 msgid ""
12573 "This function takes a key or passphrase parameter which could contain "
12574 "sensitive material.  Read the section L</KEYS AND PASSPHRASES> for more "
12575 "information."
12576 msgstr ""
12577
12578 #. type: textblock
12579 #: ../src/guestfs-actions.pod:3821 ../src/guestfs-actions.pod:3861
12580 #: ../src/guestfs-actions.pod:3884 ../src/guestfs-actions.pod:3904
12581 msgid "(Added in 1.5.2)"
12582 msgstr ""
12583
12584 #. type: =head2
12585 #: ../src/guestfs-actions.pod:3823
12586 msgid "guestfs_luks_close"
12587 msgstr ""
12588
12589 #. type: verbatim
12590 #: ../src/guestfs-actions.pod:3825
12591 #, no-wrap
12592 msgid ""
12593 " int\n"
12594 " guestfs_luks_close (guestfs_h *g,\n"
12595 "                     const char *device);\n"
12596 "\n"
12597 msgstr ""
12598
12599 #. type: textblock
12600 #: ../src/guestfs-actions.pod:3829
12601 msgid ""
12602 "This closes a LUKS device that was created earlier by C<guestfs_luks_open> "
12603 "or C<guestfs_luks_open_ro>.  The C<device> parameter must be the name of the "
12604 "LUKS mapping device (ie. C</dev/mapper/mapname>) and I<not> the name of the "
12605 "underlying block device."
12606 msgstr ""
12607
12608 #. type: textblock
12609 #: ../src/guestfs-actions.pod:3837 ../src/guestfs-actions.pod:3936
12610 #: ../src/guestfs-actions.pod:3955 ../src/guestfs-actions.pod:4005
12611 #: ../src/guestfs-actions.pod:4053
12612 msgid "(Added in 1.5.1)"
12613 msgstr ""
12614
12615 #. type: =head2
12616 #: ../src/guestfs-actions.pod:3839
12617 msgid "guestfs_luks_format"
12618 msgstr ""
12619
12620 #. type: verbatim
12621 #: ../src/guestfs-actions.pod:3841
12622 #, no-wrap
12623 msgid ""
12624 " int\n"
12625 " guestfs_luks_format (guestfs_h *g,\n"
12626 "                      const char *device,\n"
12627 "                      const char *key,\n"
12628 "                      int keyslot);\n"
12629 "\n"
12630 msgstr ""
12631
12632 #. type: textblock
12633 #: ../src/guestfs-actions.pod:3847 ../fish/guestfish-actions.pod:2652
12634 msgid ""
12635 "This command erases existing data on C<device> and formats the device as a "
12636 "LUKS encrypted device.  C<key> is the initial key, which is added to key "
12637 "slot C<slot>.  (LUKS supports 8 key slots, numbered 0-7)."
12638 msgstr ""
12639
12640 #. type: textblock
12641 #: ../src/guestfs-actions.pod:3854 ../src/guestfs-actions.pod:3877
12642 #: ../src/guestfs-actions.pod:4017 ../src/guestfs-actions.pod:4975
12643 #: ../src/guestfs-actions.pod:5755 ../src/guestfs-actions.pod:6162
12644 #: ../src/guestfs-actions.pod:6192 ../src/guestfs-actions.pod:6225
12645 #: ../src/guestfs-actions.pod:7406 ../fish/guestfish-actions.pod:2660
12646 #: ../fish/guestfish-actions.pod:2673 ../fish/guestfish-actions.pod:2757
12647 #: ../fish/guestfish-actions.pod:3347 ../fish/guestfish-actions.pod:3867
12648 #: ../fish/guestfish-actions.pod:4177 ../fish/guestfish-actions.pod:4200
12649 #: ../fish/guestfish-actions.pod:4222 ../fish/guestfish-actions.pod:4951
12650 msgid ""
12651 "B<This command is dangerous.  Without careful use you can easily destroy all "
12652 "your data>."
12653 msgstr ""
12654
12655 #. type: =head2
12656 #: ../src/guestfs-actions.pod:3863
12657 msgid "guestfs_luks_format_cipher"
12658 msgstr ""
12659
12660 #. type: verbatim
12661 #: ../src/guestfs-actions.pod:3865
12662 #, no-wrap
12663 msgid ""
12664 " int\n"
12665 " guestfs_luks_format_cipher (guestfs_h *g,\n"
12666 "                             const char *device,\n"
12667 "                             const char *key,\n"
12668 "                             int keyslot,\n"
12669 "                             const char *cipher);\n"
12670 "\n"
12671 msgstr ""
12672
12673 #. type: textblock
12674 #: ../src/guestfs-actions.pod:3872
12675 msgid ""
12676 "This command is the same as C<guestfs_luks_format> but it also allows you to "
12677 "set the C<cipher> used."
12678 msgstr ""
12679
12680 #. type: =head2
12681 #: ../src/guestfs-actions.pod:3886
12682 msgid "guestfs_luks_kill_slot"
12683 msgstr ""
12684
12685 #. type: verbatim
12686 #: ../src/guestfs-actions.pod:3888
12687 #, no-wrap
12688 msgid ""
12689 " int\n"
12690 " guestfs_luks_kill_slot (guestfs_h *g,\n"
12691 "                         const char *device,\n"
12692 "                         const char *key,\n"
12693 "                         int keyslot);\n"
12694 "\n"
12695 msgstr ""
12696
12697 #. type: textblock
12698 #: ../src/guestfs-actions.pod:3894 ../fish/guestfish-actions.pod:2680
12699 msgid ""
12700 "This command deletes the key in key slot C<keyslot> from the encrypted LUKS "
12701 "device C<device>.  C<key> must be one of the I<other> keys."
12702 msgstr ""
12703
12704 #. type: =head2
12705 #: ../src/guestfs-actions.pod:3906
12706 msgid "guestfs_luks_open"
12707 msgstr ""
12708
12709 #. type: verbatim
12710 #: ../src/guestfs-actions.pod:3908
12711 #, no-wrap
12712 msgid ""
12713 " int\n"
12714 " guestfs_luks_open (guestfs_h *g,\n"
12715 "                    const char *device,\n"
12716 "                    const char *key,\n"
12717 "                    const char *mapname);\n"
12718 "\n"
12719 msgstr ""
12720
12721 #. type: textblock
12722 #: ../src/guestfs-actions.pod:3914 ../fish/guestfish-actions.pod:2691
12723 msgid ""
12724 "This command opens a block device which has been encrypted according to the "
12725 "Linux Unified Key Setup (LUKS) standard."
12726 msgstr ""
12727
12728 #. type: textblock
12729 #: ../src/guestfs-actions.pod:3917 ../fish/guestfish-actions.pod:2694
12730 msgid "C<device> is the encrypted block device or partition."
12731 msgstr ""
12732
12733 #. type: textblock
12734 #: ../src/guestfs-actions.pod:3919 ../fish/guestfish-actions.pod:2696
12735 msgid ""
12736 "The caller must supply one of the keys associated with the LUKS block "
12737 "device, in the C<key> parameter."
12738 msgstr ""
12739
12740 #. type: textblock
12741 #: ../src/guestfs-actions.pod:3922 ../fish/guestfish-actions.pod:2699
12742 msgid ""
12743 "This creates a new block device called C</dev/mapper/mapname>.  Reads and "
12744 "writes to this block device are decrypted from and encrypted to the "
12745 "underlying C<device> respectively."
12746 msgstr ""
12747
12748 #. type: textblock
12749 #: ../src/guestfs-actions.pod:3926
12750 msgid ""
12751 "If this block device contains LVM volume groups, then calling "
12752 "C<guestfs_vgscan> followed by C<guestfs_vg_activate_all> will make them "
12753 "visible."
12754 msgstr ""
12755
12756 #. type: =head2
12757 #: ../src/guestfs-actions.pod:3938
12758 msgid "guestfs_luks_open_ro"
12759 msgstr ""
12760
12761 #. type: verbatim
12762 #: ../src/guestfs-actions.pod:3940
12763 #, no-wrap
12764 msgid ""
12765 " int\n"
12766 " guestfs_luks_open_ro (guestfs_h *g,\n"
12767 "                       const char *device,\n"
12768 "                       const char *key,\n"
12769 "                       const char *mapname);\n"
12770 "\n"
12771 msgstr ""
12772
12773 #. type: textblock
12774 #: ../src/guestfs-actions.pod:3946
12775 msgid ""
12776 "This is the same as C<guestfs_luks_open> except that a read-only mapping is "
12777 "created."
12778 msgstr ""
12779
12780 #. type: =head2
12781 #: ../src/guestfs-actions.pod:3957
12782 msgid "guestfs_lvcreate"
12783 msgstr ""
12784
12785 #. type: verbatim
12786 #: ../src/guestfs-actions.pod:3959
12787 #, no-wrap
12788 msgid ""
12789 " int\n"
12790 " guestfs_lvcreate (guestfs_h *g,\n"
12791 "                   const char *logvol,\n"
12792 "                   const char *volgroup,\n"
12793 "                   int mbytes);\n"
12794 "\n"
12795 msgstr ""
12796
12797 #. type: textblock
12798 #: ../src/guestfs-actions.pod:3965 ../fish/guestfish-actions.pod:2724
12799 msgid ""
12800 "This creates an LVM logical volume called C<logvol> on the volume group "
12801 "C<volgroup>, with C<size> megabytes."
12802 msgstr ""
12803
12804 #. type: =head2
12805 #: ../src/guestfs-actions.pod:3972
12806 msgid "guestfs_lvm_canonical_lv_name"
12807 msgstr ""
12808
12809 #. type: verbatim
12810 #: ../src/guestfs-actions.pod:3974
12811 #, no-wrap
12812 msgid ""
12813 " char *\n"
12814 " guestfs_lvm_canonical_lv_name (guestfs_h *g,\n"
12815 "                                const char *lvname);\n"
12816 "\n"
12817 msgstr ""
12818
12819 #. type: textblock
12820 #: ../src/guestfs-actions.pod:3978 ../fish/guestfish-actions.pod:2731
12821 msgid ""
12822 "This converts alternative naming schemes for LVs that you might find to the "
12823 "canonical name.  For example, C</dev/mapper/VG-LV> is converted to C</dev/VG/"
12824 "LV>."
12825 msgstr ""
12826
12827 #. type: textblock
12828 #: ../src/guestfs-actions.pod:3982 ../fish/guestfish-actions.pod:2735
12829 msgid ""
12830 "This command returns an error if the C<lvname> parameter does not refer to a "
12831 "logical volume."
12832 msgstr ""
12833
12834 #. type: textblock
12835 #: ../src/guestfs-actions.pod:3985
12836 msgid "See also C<guestfs_is_lv>."
12837 msgstr ""
12838
12839 #. type: textblock
12840 #: ../src/guestfs-actions.pod:3990
12841 msgid "(Added in 1.5.24)"
12842 msgstr ""
12843
12844 #. type: =head2
12845 #: ../src/guestfs-actions.pod:3992
12846 msgid "guestfs_lvm_clear_filter"
12847 msgstr ""
12848
12849 #. type: verbatim
12850 #: ../src/guestfs-actions.pod:3994
12851 #, no-wrap
12852 msgid ""
12853 " int\n"
12854 " guestfs_lvm_clear_filter (guestfs_h *g);\n"
12855 "\n"
12856 msgstr ""
12857
12858 #. type: textblock
12859 #: ../src/guestfs-actions.pod:3997
12860 msgid ""
12861 "This undoes the effect of C<guestfs_lvm_set_filter>.  LVM will be able to "
12862 "see every block device."
12863 msgstr ""
12864
12865 #. type: textblock
12866 #: ../src/guestfs-actions.pod:4000 ../src/guestfs-actions.pod:4042
12867 #: ../fish/guestfish-actions.pod:2747 ../fish/guestfish-actions.pod:2778
12868 msgid ""
12869 "This command also clears the LVM cache and performs a volume group scan."
12870 msgstr ""
12871
12872 #. type: =head2
12873 #: ../src/guestfs-actions.pod:4007
12874 msgid "guestfs_lvm_remove_all"
12875 msgstr ""
12876
12877 #. type: verbatim
12878 #: ../src/guestfs-actions.pod:4009
12879 #, no-wrap
12880 msgid ""
12881 " int\n"
12882 " guestfs_lvm_remove_all (guestfs_h *g);\n"
12883 "\n"
12884 msgstr ""
12885
12886 #. type: textblock
12887 #: ../src/guestfs-actions.pod:4012 ../fish/guestfish-actions.pod:2754
12888 msgid ""
12889 "This command removes all LVM logical volumes, volume groups and physical "
12890 "volumes."
12891 msgstr ""
12892
12893 #. type: =head2
12894 #: ../src/guestfs-actions.pod:4022
12895 msgid "guestfs_lvm_set_filter"
12896 msgstr ""
12897
12898 #. type: verbatim
12899 #: ../src/guestfs-actions.pod:4024
12900 #, no-wrap
12901 msgid ""
12902 " int\n"
12903 " guestfs_lvm_set_filter (guestfs_h *g,\n"
12904 "                         char *const *devices);\n"
12905 "\n"
12906 msgstr ""
12907
12908 #. type: textblock
12909 #: ../src/guestfs-actions.pod:4028 ../fish/guestfish-actions.pod:2764
12910 msgid ""
12911 "This sets the LVM device filter so that LVM will only be able to \"see\" the "
12912 "block devices in the list C<devices>, and will ignore all other attached "
12913 "block devices."
12914 msgstr ""
12915
12916 #. type: textblock
12917 #: ../src/guestfs-actions.pod:4032 ../fish/guestfish-actions.pod:2768
12918 msgid ""
12919 "Where disk image(s) contain duplicate PVs or VGs, this command is useful to "
12920 "get LVM to ignore the duplicates, otherwise LVM can get confused.  Note also "
12921 "there are two types of duplication possible: either cloned PVs/VGs which "
12922 "have identical UUIDs; or VGs that are not cloned but just happen to have the "
12923 "same name.  In normal operation you cannot create this situation, but you "
12924 "can do it outside LVM, eg.  by cloning disk images or by bit twiddling "
12925 "inside the LVM metadata."
12926 msgstr ""
12927
12928 #. type: textblock
12929 #: ../src/guestfs-actions.pod:4045 ../fish/guestfish-actions.pod:2781
12930 msgid "You can filter whole block devices or individual partitions."
12931 msgstr ""
12932
12933 #. type: textblock
12934 #: ../src/guestfs-actions.pod:4047 ../fish/guestfish-actions.pod:2783
12935 msgid ""
12936 "You cannot use this if any VG is currently in use (eg.  contains a mounted "
12937 "filesystem), even if you are not filtering out that VG."
12938 msgstr ""
12939
12940 #. type: =head2
12941 #: ../src/guestfs-actions.pod:4055
12942 msgid "guestfs_lvremove"
12943 msgstr ""
12944
12945 #. type: verbatim
12946 #: ../src/guestfs-actions.pod:4057
12947 #, no-wrap
12948 msgid ""
12949 " int\n"
12950 " guestfs_lvremove (guestfs_h *g,\n"
12951 "                   const char *device);\n"
12952 "\n"
12953 msgstr ""
12954
12955 #. type: textblock
12956 #: ../src/guestfs-actions.pod:4061 ../fish/guestfish-actions.pod:2791
12957 msgid ""
12958 "Remove an LVM logical volume C<device>, where C<device> is the path to the "
12959 "LV, such as C</dev/VG/LV>."
12960 msgstr ""
12961
12962 #. type: textblock
12963 #: ../src/guestfs-actions.pod:4064 ../fish/guestfish-actions.pod:2794
12964 msgid ""
12965 "You can also remove all LVs in a volume group by specifying the VG name, C</"
12966 "dev/VG>."
12967 msgstr ""
12968
12969 #. type: textblock
12970 #: ../src/guestfs-actions.pod:4069 ../src/guestfs-actions.pod:5321
12971 #: ../src/guestfs-actions.pod:7138
12972 msgid "(Added in 1.0.13)"
12973 msgstr ""
12974
12975 #. type: =head2
12976 #: ../src/guestfs-actions.pod:4071
12977 msgid "guestfs_lvrename"
12978 msgstr ""
12979
12980 #. type: verbatim
12981 #: ../src/guestfs-actions.pod:4073
12982 #, no-wrap
12983 msgid ""
12984 " int\n"
12985 " guestfs_lvrename (guestfs_h *g,\n"
12986 "                   const char *logvol,\n"
12987 "                   const char *newlogvol);\n"
12988 "\n"
12989 msgstr ""
12990
12991 #. type: textblock
12992 #: ../src/guestfs-actions.pod:4078 ../fish/guestfish-actions.pod:2801
12993 msgid "Rename a logical volume C<logvol> with the new name C<newlogvol>."
12994 msgstr ""
12995
12996 #. type: textblock
12997 #: ../src/guestfs-actions.pod:4082 ../src/guestfs-actions.pod:7151
12998 msgid "(Added in 1.0.83)"
12999 msgstr ""
13000
13001 #. type: =head2
13002 #: ../src/guestfs-actions.pod:4084
13003 msgid "guestfs_lvresize"
13004 msgstr ""
13005
13006 #. type: verbatim
13007 #: ../src/guestfs-actions.pod:4086
13008 #, no-wrap
13009 msgid ""
13010 " int\n"
13011 " guestfs_lvresize (guestfs_h *g,\n"
13012 "                   const char *device,\n"
13013 "                   int mbytes);\n"
13014 "\n"
13015 msgstr ""
13016
13017 #. type: textblock
13018 #: ../src/guestfs-actions.pod:4091 ../fish/guestfish-actions.pod:2807
13019 msgid ""
13020 "This resizes (expands or shrinks) an existing LVM logical volume to "
13021 "C<mbytes>.  When reducing, data in the reduced part is lost."
13022 msgstr ""
13023
13024 #. type: =head2
13025 #: ../src/guestfs-actions.pod:4099
13026 msgid "guestfs_lvresize_free"
13027 msgstr ""
13028
13029 #. type: verbatim
13030 #: ../src/guestfs-actions.pod:4101
13031 #, no-wrap
13032 msgid ""
13033 " int\n"
13034 " guestfs_lvresize_free (guestfs_h *g,\n"
13035 "                        const char *lv,\n"
13036 "                        int percent);\n"
13037 "\n"
13038 msgstr ""
13039
13040 #. type: textblock
13041 #: ../src/guestfs-actions.pod:4106 ../fish/guestfish-actions.pod:2815
13042 msgid ""
13043 "This expands an existing logical volume C<lv> so that it fills C<pc>% of the "
13044 "remaining free space in the volume group.  Commonly you would call this with "
13045 "pc = 100 which expands the logical volume as much as possible, using all "
13046 "remaining free space in the volume group."
13047 msgstr ""
13048
13049 #. type: textblock
13050 #: ../src/guestfs-actions.pod:4114
13051 msgid "(Added in 1.3.3)"
13052 msgstr ""
13053
13054 #. type: =head2
13055 #: ../src/guestfs-actions.pod:4116
13056 msgid "guestfs_lvs"
13057 msgstr ""
13058
13059 #. type: verbatim
13060 #: ../src/guestfs-actions.pod:4118
13061 #, no-wrap
13062 msgid ""
13063 " char **\n"
13064 " guestfs_lvs (guestfs_h *g);\n"
13065 "\n"
13066 msgstr ""
13067
13068 #. type: textblock
13069 #: ../src/guestfs-actions.pod:4121 ../fish/guestfish-actions.pod:2825
13070 msgid ""
13071 "List all the logical volumes detected.  This is the equivalent of the L<lvs"
13072 "(8)> command."
13073 msgstr ""
13074
13075 #. type: textblock
13076 #: ../src/guestfs-actions.pod:4124 ../fish/guestfish-actions.pod:2828
13077 msgid ""
13078 "This returns a list of the logical volume device names (eg. C</dev/"
13079 "VolGroup00/LogVol00>)."
13080 msgstr ""
13081
13082 #. type: textblock
13083 #: ../src/guestfs-actions.pod:4127
13084 msgid "See also C<guestfs_lvs_full>, C<guestfs_list_filesystems>."
13085 msgstr ""
13086
13087 #. type: =head2
13088 #: ../src/guestfs-actions.pod:4135
13089 msgid "guestfs_lvs_full"
13090 msgstr ""
13091
13092 #. type: verbatim
13093 #: ../src/guestfs-actions.pod:4137
13094 #, no-wrap
13095 msgid ""
13096 " struct guestfs_lvm_lv_list *\n"
13097 " guestfs_lvs_full (guestfs_h *g);\n"
13098 "\n"
13099 msgstr ""
13100
13101 #. type: textblock
13102 #: ../src/guestfs-actions.pod:4140 ../fish/guestfish-actions.pod:2837
13103 msgid ""
13104 "List all the logical volumes detected.  This is the equivalent of the L<lvs"
13105 "(8)> command.  The \"full\" version includes all fields."
13106 msgstr ""
13107
13108 #. type: textblock
13109 #: ../src/guestfs-actions.pod:4143
13110 msgid ""
13111 "This function returns a C<struct guestfs_lvm_lv_list *>, or NULL if there "
13112 "was an error.  I<The caller must call C<guestfs_free_lvm_lv_list> after use>."
13113 msgstr ""
13114
13115 #. type: =head2
13116 #: ../src/guestfs-actions.pod:4149
13117 msgid "guestfs_lvuuid"
13118 msgstr ""
13119
13120 #. type: verbatim
13121 #: ../src/guestfs-actions.pod:4151
13122 #, no-wrap
13123 msgid ""
13124 " char *\n"
13125 " guestfs_lvuuid (guestfs_h *g,\n"
13126 "                 const char *device);\n"
13127 "\n"
13128 msgstr ""
13129
13130 #. type: textblock
13131 #: ../src/guestfs-actions.pod:4155 ../fish/guestfish-actions.pod:2844
13132 msgid "This command returns the UUID of the LVM LV C<device>."
13133 msgstr ""
13134
13135 #. type: =head2
13136 #: ../src/guestfs-actions.pod:4162
13137 msgid "guestfs_lxattrlist"
13138 msgstr ""
13139
13140 #. type: verbatim
13141 #: ../src/guestfs-actions.pod:4164
13142 #, no-wrap
13143 msgid ""
13144 " struct guestfs_xattr_list *\n"
13145 " guestfs_lxattrlist (guestfs_h *g,\n"
13146 "                     const char *path,\n"
13147 "                     char *const *names);\n"
13148 "\n"
13149 msgstr ""
13150
13151 #. type: textblock
13152 #: ../src/guestfs-actions.pod:4169 ../fish/guestfish-actions.pod:2850
13153 msgid ""
13154 "This call allows you to get the extended attributes of multiple files, where "
13155 "all files are in the directory C<path>.  C<names> is the list of files from "
13156 "this directory."
13157 msgstr ""
13158
13159 #. type: textblock
13160 #: ../src/guestfs-actions.pod:4173 ../fish/guestfish-actions.pod:2854
13161 msgid ""
13162 "On return you get a flat list of xattr structs which must be interpreted "
13163 "sequentially.  The first xattr struct always has a zero-length C<attrname>.  "
13164 "C<attrval> in this struct is zero-length to indicate there was an error "
13165 "doing C<lgetxattr> for this file, I<or> is a C string which is a decimal "
13166 "number (the number of following attributes for this file, which could be C<"
13167 "\"0\">).  Then after the first xattr struct are the zero or more attributes "
13168 "for the first named file.  This repeats for the second and subsequent files."
13169 msgstr ""
13170
13171 #. type: textblock
13172 #: ../src/guestfs-actions.pod:4183
13173 msgid ""
13174 "This call is intended for programs that want to efficiently list a directory "
13175 "contents without making many round-trips.  See also C<guestfs_lstatlist> for "
13176 "a similarly efficient call for getting standard stats.  Very long directory "
13177 "listings might cause the protocol message size to be exceeded, causing this "
13178 "call to fail.  The caller must split up such requests into smaller groups of "
13179 "names."
13180 msgstr ""
13181
13182 #. type: =head2
13183 #: ../src/guestfs-actions.pod:4197
13184 msgid "guestfs_mkdir"
13185 msgstr ""
13186
13187 #. type: verbatim
13188 #: ../src/guestfs-actions.pod:4199
13189 #, no-wrap
13190 msgid ""
13191 " int\n"
13192 " guestfs_mkdir (guestfs_h *g,\n"
13193 "                const char *path);\n"
13194 "\n"
13195 msgstr ""
13196
13197 #. type: textblock
13198 #: ../src/guestfs-actions.pod:4203 ../fish/guestfish-actions.pod:2876
13199 msgid "Create a directory named C<path>."
13200 msgstr ""
13201
13202 #. type: =head2
13203 #: ../src/guestfs-actions.pod:4209
13204 msgid "guestfs_mkdir_mode"
13205 msgstr ""
13206
13207 #. type: verbatim
13208 #: ../src/guestfs-actions.pod:4211
13209 #, no-wrap
13210 msgid ""
13211 " int\n"
13212 " guestfs_mkdir_mode (guestfs_h *g,\n"
13213 "                     const char *path,\n"
13214 "                     int mode);\n"
13215 "\n"
13216 msgstr ""
13217
13218 #. type: textblock
13219 #: ../src/guestfs-actions.pod:4216 ../fish/guestfish-actions.pod:2882
13220 msgid ""
13221 "This command creates a directory, setting the initial permissions of the "
13222 "directory to C<mode>."
13223 msgstr ""
13224
13225 #. type: textblock
13226 #: ../src/guestfs-actions.pod:4219 ../fish/guestfish-actions.pod:2885
13227 msgid ""
13228 "For common Linux filesystems, the actual mode which is set will be C<mode & "
13229 "~umask & 01777>.  Non-native-Linux filesystems may interpret the mode in "
13230 "other ways."
13231 msgstr ""
13232
13233 #. type: textblock
13234 #: ../src/guestfs-actions.pod:4223
13235 msgid "See also C<guestfs_mkdir>, C<guestfs_umask>"
13236 msgstr ""
13237
13238 #. type: =head2
13239 #: ../src/guestfs-actions.pod:4229
13240 msgid "guestfs_mkdir_p"
13241 msgstr ""
13242
13243 #. type: verbatim
13244 #: ../src/guestfs-actions.pod:4231
13245 #, no-wrap
13246 msgid ""
13247 " int\n"
13248 " guestfs_mkdir_p (guestfs_h *g,\n"
13249 "                  const char *path);\n"
13250 "\n"
13251 msgstr ""
13252
13253 #. type: textblock
13254 #: ../src/guestfs-actions.pod:4235 ../fish/guestfish-actions.pod:2895
13255 msgid ""
13256 "Create a directory named C<path>, creating any parent directories as "
13257 "necessary.  This is like the C<mkdir -p> shell command."
13258 msgstr ""
13259
13260 #. type: =head2
13261 #: ../src/guestfs-actions.pod:4242
13262 msgid "guestfs_mkdtemp"
13263 msgstr ""
13264
13265 #. type: verbatim
13266 #: ../src/guestfs-actions.pod:4244
13267 #, no-wrap
13268 msgid ""
13269 " char *\n"
13270 " guestfs_mkdtemp (guestfs_h *g,\n"
13271 "                  const char *template);\n"
13272 "\n"
13273 msgstr ""
13274
13275 #. type: textblock
13276 #: ../src/guestfs-actions.pod:4248 ../fish/guestfish-actions.pod:2902
13277 msgid ""
13278 "This command creates a temporary directory.  The C<template> parameter "
13279 "should be a full pathname for the temporary directory name with the final "
13280 "six characters being \"XXXXXX\"."
13281 msgstr ""
13282
13283 #. type: textblock
13284 #: ../src/guestfs-actions.pod:4253 ../fish/guestfish-actions.pod:2907
13285 msgid ""
13286 "For example: \"/tmp/myprogXXXXXX\" or \"/Temp/myprogXXXXXX\", the second one "
13287 "being suitable for Windows filesystems."
13288 msgstr ""
13289
13290 #. type: textblock
13291 #: ../src/guestfs-actions.pod:4256 ../fish/guestfish-actions.pod:2910
13292 msgid "The name of the temporary directory that was created is returned."
13293 msgstr ""
13294
13295 #. type: textblock
13296 #: ../src/guestfs-actions.pod:4259 ../fish/guestfish-actions.pod:2913
13297 msgid "The temporary directory is created with mode 0700 and is owned by root."
13298 msgstr ""
13299
13300 #. type: textblock
13301 #: ../src/guestfs-actions.pod:4262 ../fish/guestfish-actions.pod:2916
13302 msgid ""
13303 "The caller is responsible for deleting the temporary directory and its "
13304 "contents after use."
13305 msgstr ""
13306
13307 #. type: textblock
13308 #: ../src/guestfs-actions.pod:4265 ../fish/guestfish-actions.pod:2919
13309 msgid "See also: L<mkdtemp(3)>"
13310 msgstr ""
13311
13312 #. type: =head2
13313 #: ../src/guestfs-actions.pod:4272
13314 msgid "guestfs_mke2fs_J"
13315 msgstr ""
13316
13317 #. type: verbatim
13318 #: ../src/guestfs-actions.pod:4274
13319 #, no-wrap
13320 msgid ""
13321 " int\n"
13322 " guestfs_mke2fs_J (guestfs_h *g,\n"
13323 "                   const char *fstype,\n"
13324 "                   int blocksize,\n"
13325 "                   const char *device,\n"
13326 "                   const char *journal);\n"
13327 "\n"
13328 msgstr ""
13329
13330 #. type: textblock
13331 #: ../src/guestfs-actions.pod:4281 ../fish/guestfish-actions.pod:2925
13332 msgid ""
13333 "This creates an ext2/3/4 filesystem on C<device> with an external journal on "
13334 "C<journal>.  It is equivalent to the command:"
13335 msgstr ""
13336
13337 #. type: verbatim
13338 #: ../src/guestfs-actions.pod:4285 ../fish/guestfish-actions.pod:2929
13339 #, no-wrap
13340 msgid ""
13341 " mke2fs -t fstype -b blocksize -J device=<journal> <device>\n"
13342 "\n"
13343 msgstr ""
13344
13345 #. type: textblock
13346 #: ../src/guestfs-actions.pod:4287
13347 msgid "See also C<guestfs_mke2journal>."
13348 msgstr ""
13349
13350 #. type: textblock
13351 #: ../src/guestfs-actions.pod:4291 ../src/guestfs-actions.pod:4309
13352 #: ../src/guestfs-actions.pod:4327 ../src/guestfs-actions.pod:4343
13353 #: ../src/guestfs-actions.pod:4357 ../src/guestfs-actions.pod:4371
13354 #: ../src/guestfs-actions.pod:4430 ../src/guestfs-actions.pod:4695
13355 msgid "(Added in 1.0.68)"
13356 msgstr ""
13357
13358 #. type: =head2
13359 #: ../src/guestfs-actions.pod:4293
13360 msgid "guestfs_mke2fs_JL"
13361 msgstr ""
13362
13363 #. type: verbatim
13364 #: ../src/guestfs-actions.pod:4295
13365 #, no-wrap
13366 msgid ""
13367 " int\n"
13368 " guestfs_mke2fs_JL (guestfs_h *g,\n"
13369 "                    const char *fstype,\n"
13370 "                    int blocksize,\n"
13371 "                    const char *device,\n"
13372 "                    const char *label);\n"
13373 "\n"
13374 msgstr ""
13375
13376 #. type: textblock
13377 #: ../src/guestfs-actions.pod:4302 ../fish/guestfish-actions.pod:2937
13378 msgid ""
13379 "This creates an ext2/3/4 filesystem on C<device> with an external journal on "
13380 "the journal labeled C<label>."
13381 msgstr ""
13382
13383 #. type: textblock
13384 #: ../src/guestfs-actions.pod:4305
13385 msgid "See also C<guestfs_mke2journal_L>."
13386 msgstr ""
13387
13388 #. type: =head2
13389 #: ../src/guestfs-actions.pod:4311
13390 msgid "guestfs_mke2fs_JU"
13391 msgstr ""
13392
13393 #. type: verbatim
13394 #: ../src/guestfs-actions.pod:4313
13395 #, no-wrap
13396 msgid ""
13397 " int\n"
13398 " guestfs_mke2fs_JU (guestfs_h *g,\n"
13399 "                    const char *fstype,\n"
13400 "                    int blocksize,\n"
13401 "                    const char *device,\n"
13402 "                    const char *uuid);\n"
13403 "\n"
13404 msgstr ""
13405
13406 #. type: textblock
13407 #: ../src/guestfs-actions.pod:4320 ../fish/guestfish-actions.pod:2946
13408 msgid ""
13409 "This creates an ext2/3/4 filesystem on C<device> with an external journal on "
13410 "the journal with UUID C<uuid>."
13411 msgstr ""
13412
13413 #. type: textblock
13414 #: ../src/guestfs-actions.pod:4323
13415 msgid "See also C<guestfs_mke2journal_U>."
13416 msgstr ""
13417
13418 #. type: =head2
13419 #: ../src/guestfs-actions.pod:4329
13420 msgid "guestfs_mke2journal"
13421 msgstr ""
13422
13423 #. type: verbatim
13424 #: ../src/guestfs-actions.pod:4331
13425 #, no-wrap
13426 msgid ""
13427 " int\n"
13428 " guestfs_mke2journal (guestfs_h *g,\n"
13429 "                      int blocksize,\n"
13430 "                      const char *device);\n"
13431 "\n"
13432 msgstr ""
13433
13434 #. type: textblock
13435 #: ../src/guestfs-actions.pod:4336 ../fish/guestfish-actions.pod:2955
13436 msgid ""
13437 "This creates an ext2 external journal on C<device>.  It is equivalent to the "
13438 "command:"
13439 msgstr ""
13440
13441 #. type: verbatim
13442 #: ../src/guestfs-actions.pod:4339 ../fish/guestfish-actions.pod:2958
13443 #, no-wrap
13444 msgid ""
13445 " mke2fs -O journal_dev -b blocksize device\n"
13446 "\n"
13447 msgstr ""
13448
13449 #. type: =head2
13450 #: ../src/guestfs-actions.pod:4345
13451 msgid "guestfs_mke2journal_L"
13452 msgstr ""
13453
13454 #. type: verbatim
13455 #: ../src/guestfs-actions.pod:4347
13456 #, no-wrap
13457 msgid ""
13458 " int\n"
13459 " guestfs_mke2journal_L (guestfs_h *g,\n"
13460 "                        int blocksize,\n"
13461 "                        const char *label,\n"
13462 "                        const char *device);\n"
13463 "\n"
13464 msgstr ""
13465
13466 #. type: textblock
13467 #: ../src/guestfs-actions.pod:4353 ../fish/guestfish-actions.pod:2964
13468 msgid "This creates an ext2 external journal on C<device> with label C<label>."
13469 msgstr ""
13470
13471 #. type: =head2
13472 #: ../src/guestfs-actions.pod:4359
13473 msgid "guestfs_mke2journal_U"
13474 msgstr ""
13475
13476 #. type: verbatim
13477 #: ../src/guestfs-actions.pod:4361
13478 #, no-wrap
13479 msgid ""
13480 " int\n"
13481 " guestfs_mke2journal_U (guestfs_h *g,\n"
13482 "                        int blocksize,\n"
13483 "                        const char *uuid,\n"
13484 "                        const char *device);\n"
13485 "\n"
13486 msgstr ""
13487
13488 #. type: textblock
13489 #: ../src/guestfs-actions.pod:4367 ../fish/guestfish-actions.pod:2970
13490 msgid "This creates an ext2 external journal on C<device> with UUID C<uuid>."
13491 msgstr ""
13492
13493 #. type: =head2
13494 #: ../src/guestfs-actions.pod:4373
13495 msgid "guestfs_mkfifo"
13496 msgstr ""
13497
13498 #. type: verbatim
13499 #: ../src/guestfs-actions.pod:4375
13500 #, no-wrap
13501 msgid ""
13502 " int\n"
13503 " guestfs_mkfifo (guestfs_h *g,\n"
13504 "                 int mode,\n"
13505 "                 const char *path);\n"
13506 "\n"
13507 msgstr ""
13508
13509 #. type: textblock
13510 #: ../src/guestfs-actions.pod:4380
13511 msgid ""
13512 "This call creates a FIFO (named pipe) called C<path> with mode C<mode>.  It "
13513 "is just a convenient wrapper around C<guestfs_mknod>."
13514 msgstr ""
13515
13516 #. type: =head2
13517 #: ../src/guestfs-actions.pod:4390
13518 msgid "guestfs_mkfs"
13519 msgstr ""
13520
13521 #. type: verbatim
13522 #: ../src/guestfs-actions.pod:4392
13523 #, no-wrap
13524 msgid ""
13525 " int\n"
13526 " guestfs_mkfs (guestfs_h *g,\n"
13527 "               const char *fstype,\n"
13528 "               const char *device);\n"
13529 "\n"
13530 msgstr ""
13531
13532 #. type: textblock
13533 #: ../src/guestfs-actions.pod:4397 ../fish/guestfish-actions.pod:2986
13534 msgid ""
13535 "This creates a filesystem on C<device> (usually a partition or LVM logical "
13536 "volume).  The filesystem type is C<fstype>, for example C<ext3>."
13537 msgstr ""
13538
13539 #. type: =head2
13540 #: ../src/guestfs-actions.pod:4405
13541 msgid "guestfs_mkfs_b"
13542 msgstr ""
13543
13544 #. type: verbatim
13545 #: ../src/guestfs-actions.pod:4407
13546 #, no-wrap
13547 msgid ""
13548 " int\n"
13549 " guestfs_mkfs_b (guestfs_h *g,\n"
13550 "                 const char *fstype,\n"
13551 "                 int blocksize,\n"
13552 "                 const char *device);\n"
13553 "\n"
13554 msgstr ""
13555
13556 #. type: textblock
13557 #: ../src/guestfs-actions.pod:4413
13558 msgid ""
13559 "This call is similar to C<guestfs_mkfs>, but it allows you to control the "
13560 "block size of the resulting filesystem.  Supported block sizes depend on the "
13561 "filesystem type, but typically they are C<1024>, C<2048> or C<4096> only."
13562 msgstr ""
13563
13564 #. type: textblock
13565 #: ../src/guestfs-actions.pod:4418 ../src/guestfs-actions.pod:4461
13566 #: ../fish/guestfish-actions.pod:2999 ../fish/guestfish-actions.pod:3026
13567 msgid ""
13568 "For VFAT and NTFS the C<blocksize> parameter is treated as the requested "
13569 "cluster size."
13570 msgstr ""
13571
13572 #. type: textblock
13573 #: ../src/guestfs-actions.pod:4423 ../fish/guestfish-actions.pod:3002
13574 msgid ""
13575 "This function is deprecated.  In new code, use the C<mkfs_opts> call instead."
13576 msgstr ""
13577
13578 #. type: =head2
13579 #: ../src/guestfs-actions.pod:4432
13580 msgid "guestfs_mkfs_opts"
13581 msgstr ""
13582
13583 #. type: verbatim
13584 #: ../src/guestfs-actions.pod:4434
13585 #, no-wrap
13586 msgid ""
13587 " int\n"
13588 " guestfs_mkfs_opts (guestfs_h *g,\n"
13589 "                    const char *fstype,\n"
13590 "                    const char *device,\n"
13591 "                    ...);\n"
13592 "\n"
13593 msgstr ""
13594
13595 #. type: verbatim
13596 #: ../src/guestfs-actions.pod:4445
13597 #, no-wrap
13598 msgid ""
13599 " GUESTFS_MKFS_OPTS_BLOCKSIZE, int blocksize,\n"
13600 " GUESTFS_MKFS_OPTS_FEATURES, const char *features,\n"
13601 "\n"
13602 msgstr ""
13603
13604 #. type: textblock
13605 #: ../src/guestfs-actions.pod:4448 ../fish/guestfish-actions.pod:3013
13606 msgid ""
13607 "This function creates a filesystem on C<device>.  The filesystem type is "
13608 "C<fstype>, for example C<ext3>."
13609 msgstr ""
13610
13611 #. type: =item
13612 #: ../src/guestfs-actions.pod:4455 ../fish/guestfish-actions.pod:3020
13613 msgid "C<blocksize>"
13614 msgstr ""
13615
13616 #. type: textblock
13617 #: ../src/guestfs-actions.pod:4457 ../fish/guestfish-actions.pod:3022
13618 msgid ""
13619 "The filesystem block size.  Supported block sizes depend on the filesystem "
13620 "type, but typically they are C<1024>, C<2048> or C<4096> for Linux ext2/3 "
13621 "filesystems."
13622 msgstr ""
13623
13624 #. type: textblock
13625 #: ../src/guestfs-actions.pod:4464 ../fish/guestfish-actions.pod:3029
13626 msgid "For UFS block sizes, please see L<mkfs.ufs(8)>."
13627 msgstr ""
13628
13629 #. type: =item
13630 #: ../src/guestfs-actions.pod:4466 ../fish/guestfish-actions.pod:3031
13631 msgid "C<features>"
13632 msgstr ""
13633
13634 #. type: textblock
13635 #: ../src/guestfs-actions.pod:4468 ../fish/guestfish-actions.pod:3033
13636 msgid "This passes the I<-O> parameter to the external mkfs program."
13637 msgstr ""
13638
13639 #. type: textblock
13640 #: ../src/guestfs-actions.pod:4470 ../fish/guestfish-actions.pod:3035
13641 msgid ""
13642 "For certain filesystem types, this allows extra filesystem features to be "
13643 "selected.  See L<mke2fs(8)> and L<mkfs.ufs(8)> for more details."
13644 msgstr ""
13645
13646 #. type: textblock
13647 #: ../src/guestfs-actions.pod:4474 ../fish/guestfish-actions.pod:3039
13648 msgid ""
13649 "You cannot use this optional parameter with the C<gfs> or C<gfs2> filesystem "
13650 "type."
13651 msgstr ""
13652
13653 #. type: textblock
13654 #: ../src/guestfs-actions.pod:4481
13655 msgid "(Added in 1.7.19)"
13656 msgstr ""
13657
13658 #. type: =head2
13659 #: ../src/guestfs-actions.pod:4483
13660 msgid "guestfs_mkfs_opts_va"
13661 msgstr ""
13662
13663 #. type: verbatim
13664 #: ../src/guestfs-actions.pod:4485
13665 #, no-wrap
13666 msgid ""
13667 " int\n"
13668 " guestfs_mkfs_opts_va (guestfs_h *g,\n"
13669 "                       const char *fstype,\n"
13670 "                       const char *device,\n"
13671 "                       va_list args);\n"
13672 "\n"
13673 msgstr ""
13674
13675 #. type: textblock
13676 #: ../src/guestfs-actions.pod:4491
13677 msgid "This is the \"va_list variant\" of L</guestfs_mkfs_opts>."
13678 msgstr ""
13679
13680 #. type: =head2
13681 #: ../src/guestfs-actions.pod:4495
13682 msgid "guestfs_mkfs_opts_argv"
13683 msgstr ""
13684
13685 #. type: verbatim
13686 #: ../src/guestfs-actions.pod:4497
13687 #, no-wrap
13688 msgid ""
13689 " int\n"
13690 " guestfs_mkfs_opts_argv (guestfs_h *g,\n"
13691 "                         const char *fstype,\n"
13692 "                         const char *device,\n"
13693 "                         const struct guestfs_mkfs_opts_argv *optargs);\n"
13694 "\n"
13695 msgstr ""
13696
13697 #. type: textblock
13698 #: ../src/guestfs-actions.pod:4503
13699 msgid "This is the \"argv variant\" of L</guestfs_mkfs_opts>."
13700 msgstr ""
13701
13702 #. type: =head2
13703 #: ../src/guestfs-actions.pod:4507
13704 msgid "guestfs_mkmountpoint"
13705 msgstr ""
13706
13707 #. type: verbatim
13708 #: ../src/guestfs-actions.pod:4509
13709 #, no-wrap
13710 msgid ""
13711 " int\n"
13712 " guestfs_mkmountpoint (guestfs_h *g,\n"
13713 "                       const char *exemptpath);\n"
13714 "\n"
13715 msgstr ""
13716
13717 #. type: textblock
13718 #: ../src/guestfs-actions.pod:4513
13719 msgid ""
13720 "C<guestfs_mkmountpoint> and C<guestfs_rmmountpoint> are specialized calls "
13721 "that can be used to create extra mountpoints before mounting the first "
13722 "filesystem."
13723 msgstr ""
13724
13725 #. type: textblock
13726 #: ../src/guestfs-actions.pod:4517 ../fish/guestfish-actions.pod:3054
13727 msgid ""
13728 "These calls are I<only> necessary in some very limited circumstances, mainly "
13729 "the case where you want to mount a mix of unrelated and/or read-only "
13730 "filesystems together."
13731 msgstr ""
13732
13733 #. type: textblock
13734 #: ../src/guestfs-actions.pod:4521 ../fish/guestfish-actions.pod:3058
13735 msgid ""
13736 "For example, live CDs often contain a \"Russian doll\" nest of filesystems, "
13737 "an ISO outer layer, with a squashfs image inside, with an ext2/3 image "
13738 "inside that.  You can unpack this as follows in guestfish:"
13739 msgstr ""
13740
13741 #. type: verbatim
13742 #: ../src/guestfs-actions.pod:4526 ../fish/guestfish-actions.pod:3063
13743 #, no-wrap
13744 msgid ""
13745 " add-ro Fedora-11-i686-Live.iso\n"
13746 " run\n"
13747 " mkmountpoint /cd\n"
13748 " mkmountpoint /sqsh\n"
13749 " mkmountpoint /ext3fs\n"
13750 " mount /dev/sda /cd\n"
13751 " mount-loop /cd/LiveOS/squashfs.img /sqsh\n"
13752 " mount-loop /sqsh/LiveOS/ext3fs.img /ext3fs\n"
13753 "\n"
13754 msgstr ""
13755
13756 #. type: textblock
13757 #: ../src/guestfs-actions.pod:4535 ../fish/guestfish-actions.pod:3072
13758 msgid "The inner filesystem is now unpacked under the /ext3fs mountpoint."
13759 msgstr ""
13760
13761 #. type: textblock
13762 #: ../src/guestfs-actions.pod:4537
13763 msgid ""
13764 "C<guestfs_mkmountpoint> is not compatible with C<guestfs_umount_all>.  You "
13765 "may get unexpected errors if you try to mix these calls.  It is safest to "
13766 "manually unmount filesystems and remove mountpoints after use."
13767 msgstr ""
13768
13769 #. type: textblock
13770 #: ../src/guestfs-actions.pod:4541
13771 msgid ""
13772 "C<guestfs_umount_all> unmounts filesystems by sorting the paths longest "
13773 "first, so for this to work for manual mountpoints, you must ensure that the "
13774 "innermost mountpoints have the longest pathnames, as in the example code "
13775 "above."
13776 msgstr ""
13777
13778 #. type: textblock
13779 #: ../src/guestfs-actions.pod:4546 ../fish/guestfish-actions.pod:3083
13780 msgid ""
13781 "For more details see L<https://bugzilla.redhat.com/show_bug.cgi?id=599503>"
13782 msgstr ""
13783
13784 #. type: textblock
13785 #: ../src/guestfs-actions.pod:4548
13786 msgid ""
13787 "Autosync [see C<guestfs_set_autosync>, this is set by default on handles] "
13788 "can cause C<guestfs_umount_all> to be called when the handle is closed which "
13789 "can also trigger these issues."
13790 msgstr ""
13791
13792 #. type: textblock
13793 #: ../src/guestfs-actions.pod:4554 ../src/guestfs-actions.pod:4820
13794 #: ../src/guestfs-actions.pod:5739
13795 msgid "(Added in 1.0.62)"
13796 msgstr ""
13797
13798 #. type: =head2
13799 #: ../src/guestfs-actions.pod:4556
13800 msgid "guestfs_mknod"
13801 msgstr ""
13802
13803 #. type: verbatim
13804 #: ../src/guestfs-actions.pod:4558
13805 #, no-wrap
13806 msgid ""
13807 " int\n"
13808 " guestfs_mknod (guestfs_h *g,\n"
13809 "                int mode,\n"
13810 "                int devmajor,\n"
13811 "                int devminor,\n"
13812 "                const char *path);\n"
13813 "\n"
13814 msgstr ""
13815
13816 #. type: textblock
13817 #: ../src/guestfs-actions.pod:4565 ../fish/guestfish-actions.pod:3093
13818 msgid ""
13819 "This call creates block or character special devices, or named pipes (FIFOs)."
13820 msgstr ""
13821
13822 #. type: textblock
13823 #: ../src/guestfs-actions.pod:4568 ../fish/guestfish-actions.pod:3096
13824 msgid ""
13825 "The C<mode> parameter should be the mode, using the standard constants.  "
13826 "C<devmajor> and C<devminor> are the device major and minor numbers, only "
13827 "used when creating block and character special devices."
13828 msgstr ""
13829
13830 #. type: textblock
13831 #: ../src/guestfs-actions.pod:4573
13832 msgid ""
13833 "Note that, just like L<mknod(2)>, the mode must be bitwise OR'd with "
13834 "S_IFBLK, S_IFCHR, S_IFIFO or S_IFSOCK (otherwise this call just creates a "
13835 "regular file).  These constants are available in the standard Linux header "
13836 "files, or you can use C<guestfs_mknod_b>, C<guestfs_mknod_c> or "
13837 "C<guestfs_mkfifo> which are wrappers around this command which bitwise OR in "
13838 "the appropriate constant for you."
13839 msgstr ""
13840
13841 #. type: =head2
13842 #: ../src/guestfs-actions.pod:4587
13843 msgid "guestfs_mknod_b"
13844 msgstr ""
13845
13846 #. type: verbatim
13847 #: ../src/guestfs-actions.pod:4589
13848 #, no-wrap
13849 msgid ""
13850 " int\n"
13851 " guestfs_mknod_b (guestfs_h *g,\n"
13852 "                  int mode,\n"
13853 "                  int devmajor,\n"
13854 "                  int devminor,\n"
13855 "                  const char *path);\n"
13856 "\n"
13857 msgstr ""
13858
13859 #. type: textblock
13860 #: ../src/guestfs-actions.pod:4596
13861 msgid ""
13862 "This call creates a block device node called C<path> with mode C<mode> and "
13863 "device major/minor C<devmajor> and C<devminor>.  It is just a convenient "
13864 "wrapper around C<guestfs_mknod>."
13865 msgstr ""
13866
13867 #. type: =head2
13868 #: ../src/guestfs-actions.pod:4606
13869 msgid "guestfs_mknod_c"
13870 msgstr ""
13871
13872 #. type: verbatim
13873 #: ../src/guestfs-actions.pod:4608
13874 #, no-wrap
13875 msgid ""
13876 " int\n"
13877 " guestfs_mknod_c (guestfs_h *g,\n"
13878 "                  int mode,\n"
13879 "                  int devmajor,\n"
13880 "                  int devminor,\n"
13881 "                  const char *path);\n"
13882 "\n"
13883 msgstr ""
13884
13885 #. type: textblock
13886 #: ../src/guestfs-actions.pod:4615
13887 msgid ""
13888 "This call creates a char device node called C<path> with mode C<mode> and "
13889 "device major/minor C<devmajor> and C<devminor>.  It is just a convenient "
13890 "wrapper around C<guestfs_mknod>."
13891 msgstr ""
13892
13893 #. type: =head2
13894 #: ../src/guestfs-actions.pod:4625
13895 msgid "guestfs_mkswap"
13896 msgstr ""
13897
13898 #. type: verbatim
13899 #: ../src/guestfs-actions.pod:4627
13900 #, no-wrap
13901 msgid ""
13902 " int\n"
13903 " guestfs_mkswap (guestfs_h *g,\n"
13904 "                 const char *device);\n"
13905 "\n"
13906 msgstr ""
13907
13908 #. type: textblock
13909 #: ../src/guestfs-actions.pod:4631 ../fish/guestfish-actions.pod:3135
13910 msgid "Create a swap partition on C<device>."
13911 msgstr ""
13912
13913 #. type: =head2
13914 #: ../src/guestfs-actions.pod:4637
13915 msgid "guestfs_mkswap_L"
13916 msgstr ""
13917
13918 #. type: verbatim
13919 #: ../src/guestfs-actions.pod:4639
13920 #, no-wrap
13921 msgid ""
13922 " int\n"
13923 " guestfs_mkswap_L (guestfs_h *g,\n"
13924 "                   const char *label,\n"
13925 "                   const char *device);\n"
13926 "\n"
13927 msgstr ""
13928
13929 #. type: textblock
13930 #: ../src/guestfs-actions.pod:4644 ../fish/guestfish-actions.pod:3141
13931 msgid "Create a swap partition on C<device> with label C<label>."
13932 msgstr ""
13933
13934 #. type: textblock
13935 #: ../src/guestfs-actions.pod:4646 ../fish/guestfish-actions.pod:3143
13936 msgid ""
13937 "Note that you cannot attach a swap label to a block device (eg. C</dev/"
13938 "sda>), just to a partition.  This appears to be a limitation of the kernel "
13939 "or swap tools."
13940 msgstr ""
13941
13942 #. type: =head2
13943 #: ../src/guestfs-actions.pod:4654
13944 msgid "guestfs_mkswap_U"
13945 msgstr ""
13946
13947 #. type: verbatim
13948 #: ../src/guestfs-actions.pod:4656
13949 #, no-wrap
13950 msgid ""
13951 " int\n"
13952 " guestfs_mkswap_U (guestfs_h *g,\n"
13953 "                   const char *uuid,\n"
13954 "                   const char *device);\n"
13955 "\n"
13956 msgstr ""
13957
13958 #. type: textblock
13959 #: ../src/guestfs-actions.pod:4661 ../fish/guestfish-actions.pod:3151
13960 msgid "Create a swap partition on C<device> with UUID C<uuid>."
13961 msgstr ""
13962
13963 #. type: =head2
13964 #: ../src/guestfs-actions.pod:4667
13965 msgid "guestfs_mkswap_file"
13966 msgstr ""
13967
13968 #. type: verbatim
13969 #: ../src/guestfs-actions.pod:4669
13970 #, no-wrap
13971 msgid ""
13972 " int\n"
13973 " guestfs_mkswap_file (guestfs_h *g,\n"
13974 "                      const char *path);\n"
13975 "\n"
13976 msgstr ""
13977
13978 #. type: textblock
13979 #: ../src/guestfs-actions.pod:4673 ../fish/guestfish-actions.pod:3157
13980 msgid "Create a swap file."
13981 msgstr ""
13982
13983 #. type: textblock
13984 #: ../src/guestfs-actions.pod:4675
13985 msgid ""
13986 "This command just writes a swap file signature to an existing file.  To "
13987 "create the file itself, use something like C<guestfs_fallocate>."
13988 msgstr ""
13989
13990 #. type: =head2
13991 #: ../src/guestfs-actions.pod:4682
13992 msgid "guestfs_modprobe"
13993 msgstr ""
13994
13995 #. type: verbatim
13996 #: ../src/guestfs-actions.pod:4684
13997 #, no-wrap
13998 msgid ""
13999 " int\n"
14000 " guestfs_modprobe (guestfs_h *g,\n"
14001 "                   const char *modulename);\n"
14002 "\n"
14003 msgstr ""
14004
14005 #. type: textblock
14006 #: ../src/guestfs-actions.pod:4688 ../fish/guestfish-actions.pod:3166
14007 msgid "This loads a kernel module in the appliance."
14008 msgstr ""
14009
14010 #. type: textblock
14011 #: ../src/guestfs-actions.pod:4690 ../fish/guestfish-actions.pod:3168
14012 msgid ""
14013 "The kernel module must have been whitelisted when libguestfs was built (see "
14014 "C<appliance/kmod.whitelist.in> in the source)."
14015 msgstr ""
14016
14017 #. type: =head2
14018 #: ../src/guestfs-actions.pod:4697
14019 msgid "guestfs_mount"
14020 msgstr ""
14021
14022 #. type: verbatim
14023 #: ../src/guestfs-actions.pod:4699
14024 #, no-wrap
14025 msgid ""
14026 " int\n"
14027 " guestfs_mount (guestfs_h *g,\n"
14028 "                const char *device,\n"
14029 "                const char *mountpoint);\n"
14030 "\n"
14031 msgstr ""
14032
14033 #. type: textblock
14034 #: ../src/guestfs-actions.pod:4704 ../fish/guestfish-actions.pod:3175
14035 msgid ""
14036 "Mount a guest disk at a position in the filesystem.  Block devices are named "
14037 "C</dev/sda>, C</dev/sdb> and so on, as they were added to the guest.  If "
14038 "those block devices contain partitions, they will have the usual names (eg. "
14039 "C</dev/sda1>).  Also LVM C</dev/VG/LV>-style names can be used."
14040 msgstr ""
14041
14042 #. type: textblock
14043 #: ../src/guestfs-actions.pod:4710 ../fish/guestfish-actions.pod:3181
14044 msgid ""
14045 "The rules are the same as for L<mount(2)>: A filesystem must first be "
14046 "mounted on C</> before others can be mounted.  Other filesystems can only be "
14047 "mounted on directories which already exist."
14048 msgstr ""
14049
14050 #. type: textblock
14051 #: ../src/guestfs-actions.pod:4715 ../fish/guestfish-actions.pod:3186
14052 msgid ""
14053 "The mounted filesystem is writable, if we have sufficient permissions on the "
14054 "underlying device."
14055 msgstr ""
14056
14057 #. type: textblock
14058 #: ../src/guestfs-actions.pod:4718
14059 msgid ""
14060 "B<Important note:> When you use this call, the filesystem options C<sync> "
14061 "and C<noatime> are set implicitly.  This was originally done because we "
14062 "thought it would improve reliability, but it turns out that I<-o sync> has a "
14063 "very large negative performance impact and negligible effect on "
14064 "reliability.  Therefore we recommend that you avoid using C<guestfs_mount> "
14065 "in any code that needs performance, and instead use C<guestfs_mount_options> "
14066 "(use an empty string for the first parameter if you don't want any options)."
14067 msgstr ""
14068
14069 #. type: textblock
14070 #: ../src/guestfs-actions.pod:4730 ../fish/guestfish-actions.pod:3199
14071 msgid ""
14072 "This function is deprecated.  In new code, use the C<mount_options> call "
14073 "instead."
14074 msgstr ""
14075
14076 #. type: =head2
14077 #: ../src/guestfs-actions.pod:4739
14078 msgid "guestfs_mount_loop"
14079 msgstr ""
14080
14081 #. type: verbatim
14082 #: ../src/guestfs-actions.pod:4741
14083 #, no-wrap
14084 msgid ""
14085 " int\n"
14086 " guestfs_mount_loop (guestfs_h *g,\n"
14087 "                     const char *file,\n"
14088 "                     const char *mountpoint);\n"
14089 "\n"
14090 msgstr ""
14091
14092 #. type: textblock
14093 #: ../src/guestfs-actions.pod:4746 ../fish/guestfish-actions.pod:3210
14094 msgid ""
14095 "This command lets you mount C<file> (a filesystem image in a file) on a "
14096 "mount point.  It is entirely equivalent to the command C<mount -o loop file "
14097 "mountpoint>."
14098 msgstr ""
14099
14100 #. type: =head2
14101 #: ../src/guestfs-actions.pod:4754
14102 msgid "guestfs_mount_options"
14103 msgstr ""
14104
14105 #. type: verbatim
14106 #: ../src/guestfs-actions.pod:4756
14107 #, no-wrap
14108 msgid ""
14109 " int\n"
14110 " guestfs_mount_options (guestfs_h *g,\n"
14111 "                        const char *options,\n"
14112 "                        const char *device,\n"
14113 "                        const char *mountpoint);\n"
14114 "\n"
14115 msgstr ""
14116
14117 #. type: textblock
14118 #: ../src/guestfs-actions.pod:4762
14119 msgid ""
14120 "This is the same as the C<guestfs_mount> command, but it allows you to set "
14121 "the mount options as for the L<mount(8)> I<-o> flag."
14122 msgstr ""
14123
14124 #. type: textblock
14125 #: ../src/guestfs-actions.pod:4766 ../fish/guestfish-actions.pod:3222
14126 msgid ""
14127 "If the C<options> parameter is an empty string, then no options are passed "
14128 "(all options default to whatever the filesystem uses)."
14129 msgstr ""
14130
14131 #. type: textblock
14132 #: ../src/guestfs-actions.pod:4772 ../src/guestfs-actions.pod:4786
14133 #: ../src/guestfs-actions.pod:4803
14134 msgid "(Added in 1.0.10)"
14135 msgstr ""
14136
14137 #. type: =head2
14138 #: ../src/guestfs-actions.pod:4774
14139 msgid "guestfs_mount_ro"
14140 msgstr ""
14141
14142 #. type: verbatim
14143 #: ../src/guestfs-actions.pod:4776
14144 #, no-wrap
14145 msgid ""
14146 " int\n"
14147 " guestfs_mount_ro (guestfs_h *g,\n"
14148 "                   const char *device,\n"
14149 "                   const char *mountpoint);\n"
14150 "\n"
14151 msgstr ""
14152
14153 #. type: textblock
14154 #: ../src/guestfs-actions.pod:4781
14155 msgid ""
14156 "This is the same as the C<guestfs_mount> command, but it mounts the "
14157 "filesystem with the read-only (I<-o ro>) flag."
14158 msgstr ""
14159
14160 #. type: =head2
14161 #: ../src/guestfs-actions.pod:4788
14162 msgid "guestfs_mount_vfs"
14163 msgstr ""
14164
14165 #. type: verbatim
14166 #: ../src/guestfs-actions.pod:4790
14167 #, no-wrap
14168 msgid ""
14169 " int\n"
14170 " guestfs_mount_vfs (guestfs_h *g,\n"
14171 "                    const char *options,\n"
14172 "                    const char *vfstype,\n"
14173 "                    const char *device,\n"
14174 "                    const char *mountpoint);\n"
14175 "\n"
14176 msgstr ""
14177
14178 #. type: textblock
14179 #: ../src/guestfs-actions.pod:4797
14180 msgid ""
14181 "This is the same as the C<guestfs_mount> command, but it allows you to set "
14182 "both the mount options and the vfstype as for the L<mount(8)> I<-o> and I<-"
14183 "t> flags."
14184 msgstr ""
14185
14186 #. type: =head2
14187 #: ../src/guestfs-actions.pod:4805
14188 msgid "guestfs_mountpoints"
14189 msgstr ""
14190
14191 #. type: verbatim
14192 #: ../src/guestfs-actions.pod:4807
14193 #, no-wrap
14194 msgid ""
14195 " char **\n"
14196 " guestfs_mountpoints (guestfs_h *g);\n"
14197 "\n"
14198 msgstr ""
14199
14200 #. type: textblock
14201 #: ../src/guestfs-actions.pod:4810
14202 msgid ""
14203 "This call is similar to C<guestfs_mounts>.  That call returns a list of "
14204 "devices.  This one returns a hash table (map) of device name to directory "
14205 "where the device is mounted."
14206 msgstr ""
14207
14208 #. type: =head2
14209 #: ../src/guestfs-actions.pod:4822
14210 msgid "guestfs_mounts"
14211 msgstr ""
14212
14213 #. type: verbatim
14214 #: ../src/guestfs-actions.pod:4824
14215 #, no-wrap
14216 msgid ""
14217 " char **\n"
14218 " guestfs_mounts (guestfs_h *g);\n"
14219 "\n"
14220 msgstr ""
14221
14222 #. type: textblock
14223 #: ../src/guestfs-actions.pod:4827 ../fish/guestfish-actions.pod:3253
14224 msgid ""
14225 "This returns the list of currently mounted filesystems.  It returns the list "
14226 "of devices (eg. C</dev/sda1>, C</dev/VG/LV>)."
14227 msgstr ""
14228
14229 #. type: textblock
14230 #: ../src/guestfs-actions.pod:4830 ../fish/guestfish-actions.pod:3256
14231 msgid "Some internal mounts are not shown."
14232 msgstr ""
14233
14234 #. type: textblock
14235 #: ../src/guestfs-actions.pod:4832
14236 msgid "See also: C<guestfs_mountpoints>"
14237 msgstr ""
14238
14239 #. type: =head2
14240 #: ../src/guestfs-actions.pod:4840
14241 msgid "guestfs_mv"
14242 msgstr ""
14243
14244 #. type: verbatim
14245 #: ../src/guestfs-actions.pod:4842
14246 #, no-wrap
14247 msgid ""
14248 " int\n"
14249 " guestfs_mv (guestfs_h *g,\n"
14250 "             const char *src,\n"
14251 "             const char *dest);\n"
14252 "\n"
14253 msgstr ""
14254
14255 #. type: textblock
14256 #: ../src/guestfs-actions.pod:4847 ../fish/guestfish-actions.pod:3264
14257 msgid ""
14258 "This moves a file from C<src> to C<dest> where C<dest> is either a "
14259 "destination filename or destination directory."
14260 msgstr ""
14261
14262 #. type: =head2
14263 #: ../src/guestfs-actions.pod:4854
14264 msgid "guestfs_ntfs_3g_probe"
14265 msgstr ""
14266
14267 #. type: verbatim
14268 #: ../src/guestfs-actions.pod:4856
14269 #, no-wrap
14270 msgid ""
14271 " int\n"
14272 " guestfs_ntfs_3g_probe (guestfs_h *g,\n"
14273 "                        int rw,\n"
14274 "                        const char *device);\n"
14275 "\n"
14276 msgstr ""
14277
14278 #. type: textblock
14279 #: ../src/guestfs-actions.pod:4861 ../fish/guestfish-actions.pod:3271
14280 msgid ""
14281 "This command runs the L<ntfs-3g.probe(8)> command which probes an NTFS "
14282 "C<device> for mountability.  (Not all NTFS volumes can be mounted read-"
14283 "write, and some cannot be mounted at all)."
14284 msgstr ""
14285
14286 #. type: textblock
14287 #: ../src/guestfs-actions.pod:4865 ../fish/guestfish-actions.pod:3275
14288 msgid ""
14289 "C<rw> is a boolean flag.  Set it to true if you want to test if the volume "
14290 "can be mounted read-write.  Set it to false if you want to test if the "
14291 "volume can be mounted read-only."
14292 msgstr ""
14293
14294 #. type: textblock
14295 #: ../src/guestfs-actions.pod:4869 ../fish/guestfish-actions.pod:3279
14296 msgid ""
14297 "The return value is an integer which C<0> if the operation would succeed, or "
14298 "some non-zero value documented in the L<ntfs-3g.probe(8)> manual page."
14299 msgstr ""
14300
14301 #. type: textblock
14302 #: ../src/guestfs-actions.pod:4875
14303 msgid "(Added in 1.0.43)"
14304 msgstr ""
14305
14306 #. type: =head2
14307 #: ../src/guestfs-actions.pod:4877
14308 msgid "guestfs_ntfsresize"
14309 msgstr ""
14310
14311 #. type: verbatim
14312 #: ../src/guestfs-actions.pod:4879
14313 #, no-wrap
14314 msgid ""
14315 " int\n"
14316 " guestfs_ntfsresize (guestfs_h *g,\n"
14317 "                     const char *device);\n"
14318 "\n"
14319 msgstr ""
14320
14321 #. type: textblock
14322 #: ../src/guestfs-actions.pod:4883 ../fish/guestfish-actions.pod:3287
14323 msgid ""
14324 "This command resizes an NTFS filesystem, expanding or shrinking it to the "
14325 "size of the underlying device."
14326 msgstr ""
14327
14328 #. type: textblock
14329 #: ../src/guestfs-actions.pod:4886 ../fish/guestfish-actions.pod:3290
14330 msgid ""
14331 "I<Note:> After the resize operation, the filesystem is marked as requiring a "
14332 "consistency check (for safety).  You have to boot into Windows to perform "
14333 "this check and clear this condition.  Furthermore, ntfsresize refuses to "
14334 "resize filesystems which have been marked in this way.  So in effect it is "
14335 "not possible to call ntfsresize multiple times on a single filesystem "
14336 "without booting into Windows between each resize."
14337 msgstr ""
14338
14339 #. type: textblock
14340 #: ../src/guestfs-actions.pod:4894 ../fish/guestfish-actions.pod:3298
14341 msgid "See also L<ntfsresize(8)>."
14342 msgstr ""
14343
14344 #. type: =head2
14345 #: ../src/guestfs-actions.pod:4900
14346 msgid "guestfs_ntfsresize_size"
14347 msgstr ""
14348
14349 #. type: verbatim
14350 #: ../src/guestfs-actions.pod:4902
14351 #, no-wrap
14352 msgid ""
14353 " int\n"
14354 " guestfs_ntfsresize_size (guestfs_h *g,\n"
14355 "                          const char *device,\n"
14356 "                          int64_t size);\n"
14357 "\n"
14358 msgstr ""
14359
14360 #. type: textblock
14361 #: ../src/guestfs-actions.pod:4907
14362 msgid ""
14363 "This command is the same as C<guestfs_ntfsresize> except that it allows you "
14364 "to specify the new size (in bytes) explicitly."
14365 msgstr ""
14366
14367 #. type: textblock
14368 #: ../src/guestfs-actions.pod:4912 ../src/guestfs-actions.pod:5348
14369 #: ../src/guestfs-actions.pod:5421 ../src/guestfs-actions.pod:5687
14370 #: ../src/guestfs-actions.pod:7293
14371 msgid "(Added in 1.3.14)"
14372 msgstr ""
14373
14374 #. type: =head2
14375 #: ../src/guestfs-actions.pod:4914
14376 msgid "guestfs_part_add"
14377 msgstr ""
14378
14379 #. type: verbatim
14380 #: ../src/guestfs-actions.pod:4916
14381 #, no-wrap
14382 msgid ""
14383 " int\n"
14384 " guestfs_part_add (guestfs_h *g,\n"
14385 "                   const char *device,\n"
14386 "                   const char *prlogex,\n"
14387 "                   int64_t startsect,\n"
14388 "                   int64_t endsect);\n"
14389 "\n"
14390 msgstr ""
14391
14392 #. type: textblock
14393 #: ../src/guestfs-actions.pod:4923
14394 msgid ""
14395 "This command adds a partition to C<device>.  If there is no partition table "
14396 "on the device, call C<guestfs_part_init> first."
14397 msgstr ""
14398
14399 #. type: textblock
14400 #: ../src/guestfs-actions.pod:4926 ../fish/guestfish-actions.pod:3314
14401 msgid ""
14402 "The C<prlogex> parameter is the type of partition.  Normally you should pass "
14403 "C<p> or C<primary> here, but MBR partition tables also support C<l> (or "
14404 "C<logical>) and C<e> (or C<extended>) partition types."
14405 msgstr ""
14406
14407 #. type: textblock
14408 #: ../src/guestfs-actions.pod:4931 ../fish/guestfish-actions.pod:3319
14409 msgid ""
14410 "C<startsect> and C<endsect> are the start and end of the partition in "
14411 "I<sectors>.  C<endsect> may be negative, which means it counts backwards "
14412 "from the end of the disk (C<-1> is the last sector)."
14413 msgstr ""
14414
14415 #. type: textblock
14416 #: ../src/guestfs-actions.pod:4935
14417 msgid ""
14418 "Creating a partition which covers the whole disk is not so easy.  Use "
14419 "C<guestfs_part_disk> to do that."
14420 msgstr ""
14421
14422 #. type: textblock
14423 #: ../src/guestfs-actions.pod:4940 ../src/guestfs-actions.pod:4978
14424 #: ../src/guestfs-actions.pod:5031 ../src/guestfs-actions.pod:5109
14425 #: ../src/guestfs-actions.pod:5147 ../src/guestfs-actions.pod:5166
14426 #: ../src/guestfs-actions.pod:5206
14427 msgid "(Added in 1.0.78)"
14428 msgstr ""
14429
14430 #. type: =head2
14431 #: ../src/guestfs-actions.pod:4942
14432 msgid "guestfs_part_del"
14433 msgstr ""
14434
14435 #. type: verbatim
14436 #: ../src/guestfs-actions.pod:4944
14437 #, no-wrap
14438 msgid ""
14439 " int\n"
14440 " guestfs_part_del (guestfs_h *g,\n"
14441 "                   const char *device,\n"
14442 "                   int partnum);\n"
14443 "\n"
14444 msgstr ""
14445
14446 #. type: textblock
14447 #: ../src/guestfs-actions.pod:4949 ../fish/guestfish-actions.pod:3330
14448 msgid "This command deletes the partition numbered C<partnum> on C<device>."
14449 msgstr ""
14450
14451 #. type: textblock
14452 #: ../src/guestfs-actions.pod:4951 ../fish/guestfish-actions.pod:3332
14453 msgid ""
14454 "Note that in the case of MBR partitioning, deleting an extended partition "
14455 "also deletes any logical partitions it contains."
14456 msgstr ""
14457
14458 #. type: =head2
14459 #: ../src/guestfs-actions.pod:4959
14460 msgid "guestfs_part_disk"
14461 msgstr ""
14462
14463 #. type: verbatim
14464 #: ../src/guestfs-actions.pod:4961
14465 #, no-wrap
14466 msgid ""
14467 " int\n"
14468 " guestfs_part_disk (guestfs_h *g,\n"
14469 "                    const char *device,\n"
14470 "                    const char *parttype);\n"
14471 "\n"
14472 msgstr ""
14473
14474 #. type: textblock
14475 #: ../src/guestfs-actions.pod:4966
14476 msgid ""
14477 "This command is simply a combination of C<guestfs_part_init> followed by "
14478 "C<guestfs_part_add> to create a single primary partition covering the whole "
14479 "disk."
14480 msgstr ""
14481
14482 #. type: textblock
14483 #: ../src/guestfs-actions.pod:4970
14484 msgid ""
14485 "C<parttype> is the partition table type, usually C<mbr> or C<gpt>, but other "
14486 "possible values are described in C<guestfs_part_init>."
14487 msgstr ""
14488
14489 #. type: =head2
14490 #: ../src/guestfs-actions.pod:4980
14491 msgid "guestfs_part_get_bootable"
14492 msgstr ""
14493
14494 #. type: verbatim
14495 #: ../src/guestfs-actions.pod:4982
14496 #, no-wrap
14497 msgid ""
14498 " int\n"
14499 " guestfs_part_get_bootable (guestfs_h *g,\n"
14500 "                            const char *device,\n"
14501 "                            int partnum);\n"
14502 "\n"
14503 msgstr ""
14504
14505 #. type: textblock
14506 #: ../src/guestfs-actions.pod:4987 ../fish/guestfish-actions.pod:3354
14507 msgid ""
14508 "This command returns true if the partition C<partnum> on C<device> has the "
14509 "bootable flag set."
14510 msgstr ""
14511
14512 #. type: textblock
14513 #: ../src/guestfs-actions.pod:4990
14514 msgid "See also C<guestfs_part_set_bootable>."
14515 msgstr ""
14516
14517 #. type: =head2
14518 #: ../src/guestfs-actions.pod:4996
14519 msgid "guestfs_part_get_mbr_id"
14520 msgstr ""
14521
14522 #. type: verbatim
14523 #: ../src/guestfs-actions.pod:4998
14524 #, no-wrap
14525 msgid ""
14526 " int\n"
14527 " guestfs_part_get_mbr_id (guestfs_h *g,\n"
14528 "                          const char *device,\n"
14529 "                          int partnum);\n"
14530 "\n"
14531 msgstr ""
14532
14533 #. type: textblock
14534 #: ../src/guestfs-actions.pod:5003 ../fish/guestfish-actions.pod:3363
14535 msgid ""
14536 "Returns the MBR type byte (also known as the ID byte) from the numbered "
14537 "partition C<partnum>."
14538 msgstr ""
14539
14540 #. type: textblock
14541 #: ../src/guestfs-actions.pod:5006 ../src/guestfs-actions.pod:5182
14542 msgid ""
14543 "Note that only MBR (old DOS-style) partitions have type bytes.  You will get "
14544 "undefined results for other partition table types (see "
14545 "C<guestfs_part_get_parttype>)."
14546 msgstr ""
14547
14548 #. type: =head2
14549 #: ../src/guestfs-actions.pod:5014
14550 msgid "guestfs_part_get_parttype"
14551 msgstr ""
14552
14553 #. type: verbatim
14554 #: ../src/guestfs-actions.pod:5016
14555 #, no-wrap
14556 msgid ""
14557 " char *\n"
14558 " guestfs_part_get_parttype (guestfs_h *g,\n"
14559 "                            const char *device);\n"
14560 "\n"
14561 msgstr ""
14562
14563 #. type: textblock
14564 #: ../src/guestfs-actions.pod:5020 ../fish/guestfish-actions.pod:3374
14565 msgid ""
14566 "This command examines the partition table on C<device> and returns the "
14567 "partition table type (format) being used."
14568 msgstr ""
14569
14570 #. type: textblock
14571 #: ../src/guestfs-actions.pod:5023
14572 msgid ""
14573 "Common return values include: C<msdos> (a DOS/Windows style MBR partition "
14574 "table), C<gpt> (a GPT/EFI-style partition table).  Other values are "
14575 "possible, although unusual.  See C<guestfs_part_init> for a full list."
14576 msgstr ""
14577
14578 #. type: =head2
14579 #: ../src/guestfs-actions.pod:5033
14580 msgid "guestfs_part_init"
14581 msgstr ""
14582
14583 #. type: verbatim
14584 #: ../src/guestfs-actions.pod:5035
14585 #, no-wrap
14586 msgid ""
14587 " int\n"
14588 " guestfs_part_init (guestfs_h *g,\n"
14589 "                    const char *device,\n"
14590 "                    const char *parttype);\n"
14591 "\n"
14592 msgstr ""
14593
14594 #. type: textblock
14595 #: ../src/guestfs-actions.pod:5040 ../fish/guestfish-actions.pod:3386
14596 msgid ""
14597 "This creates an empty partition table on C<device> of one of the partition "
14598 "types listed below.  Usually C<parttype> should be either C<msdos> or C<gpt> "
14599 "(for large disks)."
14600 msgstr ""
14601
14602 #. type: textblock
14603 #: ../src/guestfs-actions.pod:5044
14604 msgid ""
14605 "Initially there are no partitions.  Following this, you should call "
14606 "C<guestfs_part_add> for each partition required."
14607 msgstr ""
14608
14609 #. type: textblock
14610 #: ../src/guestfs-actions.pod:5047 ../fish/guestfish-actions.pod:3393
14611 msgid "Possible values for C<parttype> are:"
14612 msgstr ""
14613
14614 #. type: =item
14615 #: ../src/guestfs-actions.pod:5051 ../fish/guestfish-actions.pod:3397
14616 msgid "B<efi> | B<gpt>"
14617 msgstr ""
14618
14619 #. type: textblock
14620 #: ../src/guestfs-actions.pod:5053 ../fish/guestfish-actions.pod:3399
14621 msgid "Intel EFI / GPT partition table."
14622 msgstr ""
14623
14624 #. type: textblock
14625 #: ../src/guestfs-actions.pod:5055 ../fish/guestfish-actions.pod:3401
14626 msgid ""
14627 "This is recommended for >= 2 TB partitions that will be accessed from Linux "
14628 "and Intel-based Mac OS X.  It also has limited backwards compatibility with "
14629 "the C<mbr> format."
14630 msgstr ""
14631
14632 #. type: =item
14633 #: ../src/guestfs-actions.pod:5059 ../fish/guestfish-actions.pod:3405
14634 msgid "B<mbr> | B<msdos>"
14635 msgstr ""
14636
14637 #. type: textblock
14638 #: ../src/guestfs-actions.pod:5061 ../fish/guestfish-actions.pod:3407
14639 msgid ""
14640 "The standard PC \"Master Boot Record\" (MBR) format used by MS-DOS and "
14641 "Windows.  This partition type will B<only> work for device sizes up to 2 "
14642 "TB.  For large disks we recommend using C<gpt>."
14643 msgstr ""
14644
14645 #. type: textblock
14646 #: ../src/guestfs-actions.pod:5068 ../fish/guestfish-actions.pod:3414
14647 msgid ""
14648 "Other partition table types that may work but are not supported include:"
14649 msgstr ""
14650
14651 #. type: =item
14652 #: ../src/guestfs-actions.pod:5073 ../fish/guestfish-actions.pod:3419
14653 msgid "B<aix>"
14654 msgstr ""
14655
14656 #. type: textblock
14657 #: ../src/guestfs-actions.pod:5075 ../fish/guestfish-actions.pod:3421
14658 msgid "AIX disk labels."
14659 msgstr ""
14660
14661 #. type: =item
14662 #: ../src/guestfs-actions.pod:5077 ../fish/guestfish-actions.pod:3423
14663 msgid "B<amiga> | B<rdb>"
14664 msgstr ""
14665
14666 #. type: textblock
14667 #: ../src/guestfs-actions.pod:5079 ../fish/guestfish-actions.pod:3425
14668 msgid "Amiga \"Rigid Disk Block\" format."
14669 msgstr ""
14670
14671 #. type: =item
14672 #: ../src/guestfs-actions.pod:5081 ../fish/guestfish-actions.pod:3427
14673 msgid "B<bsd>"
14674 msgstr ""
14675
14676 #. type: textblock
14677 #: ../src/guestfs-actions.pod:5083 ../fish/guestfish-actions.pod:3429
14678 msgid "BSD disk labels."
14679 msgstr ""
14680
14681 #. type: =item
14682 #: ../src/guestfs-actions.pod:5085 ../fish/guestfish-actions.pod:3431
14683 msgid "B<dasd>"
14684 msgstr ""
14685
14686 #. type: textblock
14687 #: ../src/guestfs-actions.pod:5087 ../fish/guestfish-actions.pod:3433
14688 msgid "DASD, used on IBM mainframes."
14689 msgstr ""
14690
14691 #. type: =item
14692 #: ../src/guestfs-actions.pod:5089 ../fish/guestfish-actions.pod:3435
14693 msgid "B<dvh>"
14694 msgstr ""
14695
14696 #. type: textblock
14697 #: ../src/guestfs-actions.pod:5091 ../fish/guestfish-actions.pod:3437
14698 msgid "MIPS/SGI volumes."
14699 msgstr ""
14700
14701 #. type: =item
14702 #: ../src/guestfs-actions.pod:5093 ../fish/guestfish-actions.pod:3439
14703 msgid "B<mac>"
14704 msgstr ""
14705
14706 #. type: textblock
14707 #: ../src/guestfs-actions.pod:5095 ../fish/guestfish-actions.pod:3441
14708 msgid "Old Mac partition format.  Modern Macs use C<gpt>."
14709 msgstr ""
14710
14711 #. type: =item
14712 #: ../src/guestfs-actions.pod:5097 ../fish/guestfish-actions.pod:3443
14713 msgid "B<pc98>"
14714 msgstr ""
14715
14716 #. type: textblock
14717 #: ../src/guestfs-actions.pod:5099 ../fish/guestfish-actions.pod:3445
14718 msgid "NEC PC-98 format, common in Japan apparently."
14719 msgstr ""
14720
14721 #. type: =item
14722 #: ../src/guestfs-actions.pod:5101 ../fish/guestfish-actions.pod:3447
14723 msgid "B<sun>"
14724 msgstr ""
14725
14726 #. type: textblock
14727 #: ../src/guestfs-actions.pod:5103 ../fish/guestfish-actions.pod:3449
14728 msgid "Sun disk labels."
14729 msgstr ""
14730
14731 #. type: =head2
14732 #: ../src/guestfs-actions.pod:5111
14733 msgid "guestfs_part_list"
14734 msgstr ""
14735
14736 #. type: verbatim
14737 #: ../src/guestfs-actions.pod:5113
14738 #, no-wrap
14739 msgid ""
14740 " struct guestfs_partition_list *\n"
14741 " guestfs_part_list (guestfs_h *g,\n"
14742 "                    const char *device);\n"
14743 "\n"
14744 msgstr ""
14745
14746 #. type: textblock
14747 #: ../src/guestfs-actions.pod:5117 ../fish/guestfish-actions.pod:3457
14748 msgid ""
14749 "This command parses the partition table on C<device> and returns the list of "
14750 "partitions found."
14751 msgstr ""
14752
14753 #. type: textblock
14754 #: ../src/guestfs-actions.pod:5120 ../fish/guestfish-actions.pod:3460
14755 msgid "The fields in the returned structure are:"
14756 msgstr ""
14757
14758 #. type: =item
14759 #: ../src/guestfs-actions.pod:5124 ../fish/guestfish-actions.pod:3464
14760 msgid "B<part_num>"
14761 msgstr ""
14762
14763 #. type: textblock
14764 #: ../src/guestfs-actions.pod:5126 ../fish/guestfish-actions.pod:3466
14765 msgid "Partition number, counting from 1."
14766 msgstr ""
14767
14768 #. type: =item
14769 #: ../src/guestfs-actions.pod:5128 ../fish/guestfish-actions.pod:3468
14770 msgid "B<part_start>"
14771 msgstr ""
14772
14773 #. type: textblock
14774 #: ../src/guestfs-actions.pod:5130
14775 msgid ""
14776 "Start of the partition I<in bytes>.  To get sectors you have to divide by "
14777 "the device's sector size, see C<guestfs_blockdev_getss>."
14778 msgstr ""
14779
14780 #. type: =item
14781 #: ../src/guestfs-actions.pod:5133 ../fish/guestfish-actions.pod:3473
14782 msgid "B<part_end>"
14783 msgstr ""
14784
14785 #. type: textblock
14786 #: ../src/guestfs-actions.pod:5135 ../fish/guestfish-actions.pod:3475
14787 msgid "End of the partition in bytes."
14788 msgstr ""
14789
14790 #. type: =item
14791 #: ../src/guestfs-actions.pod:5137 ../fish/guestfish-actions.pod:3477
14792 msgid "B<part_size>"
14793 msgstr ""
14794
14795 #. type: textblock
14796 #: ../src/guestfs-actions.pod:5139 ../fish/guestfish-actions.pod:3479
14797 msgid "Size of the partition in bytes."
14798 msgstr ""
14799
14800 #. type: textblock
14801 #: ../src/guestfs-actions.pod:5143
14802 msgid ""
14803 "This function returns a C<struct guestfs_partition_list *>, or NULL if there "
14804 "was an error.  I<The caller must call C<guestfs_free_partition_list> after "
14805 "use>."
14806 msgstr ""
14807
14808 #. type: =head2
14809 #: ../src/guestfs-actions.pod:5149
14810 msgid "guestfs_part_set_bootable"
14811 msgstr ""
14812
14813 #. type: verbatim
14814 #: ../src/guestfs-actions.pod:5151
14815 #, no-wrap
14816 msgid ""
14817 " int\n"
14818 " guestfs_part_set_bootable (guestfs_h *g,\n"
14819 "                            const char *device,\n"
14820 "                            int partnum,\n"
14821 "                            int bootable);\n"
14822 "\n"
14823 msgstr ""
14824
14825 #. type: textblock
14826 #: ../src/guestfs-actions.pod:5157 ../fish/guestfish-actions.pod:3487
14827 msgid ""
14828 "This sets the bootable flag on partition numbered C<partnum> on device "
14829 "C<device>.  Note that partitions are numbered from 1."
14830 msgstr ""
14831
14832 #. type: textblock
14833 #: ../src/guestfs-actions.pod:5160 ../fish/guestfish-actions.pod:3490
14834 msgid ""
14835 "The bootable flag is used by some operating systems (notably Windows) to "
14836 "determine which partition to boot from.  It is by no means universally "
14837 "recognized."
14838 msgstr ""
14839
14840 #. type: =head2
14841 #: ../src/guestfs-actions.pod:5168
14842 msgid "guestfs_part_set_mbr_id"
14843 msgstr ""
14844
14845 #. type: verbatim
14846 #: ../src/guestfs-actions.pod:5170
14847 #, no-wrap
14848 msgid ""
14849 " int\n"
14850 " guestfs_part_set_mbr_id (guestfs_h *g,\n"
14851 "                          const char *device,\n"
14852 "                          int partnum,\n"
14853 "                          int idbyte);\n"
14854 "\n"
14855 msgstr ""
14856
14857 #. type: textblock
14858 #: ../src/guestfs-actions.pod:5176 ../fish/guestfish-actions.pod:3498
14859 msgid ""
14860 "Sets the MBR type byte (also known as the ID byte) of the numbered partition "
14861 "C<partnum> to C<idbyte>.  Note that the type bytes quoted in most "
14862 "documentation are in fact hexadecimal numbers, but usually documented "
14863 "without any leading \"0x\" which might be confusing."
14864 msgstr ""
14865
14866 #. type: =head2
14867 #: ../src/guestfs-actions.pod:5190
14868 msgid "guestfs_part_set_name"
14869 msgstr ""
14870
14871 #. type: verbatim
14872 #: ../src/guestfs-actions.pod:5192
14873 #, no-wrap
14874 msgid ""
14875 " int\n"
14876 " guestfs_part_set_name (guestfs_h *g,\n"
14877 "                        const char *device,\n"
14878 "                        int partnum,\n"
14879 "                        const char *name);\n"
14880 "\n"
14881 msgstr ""
14882
14883 #. type: textblock
14884 #: ../src/guestfs-actions.pod:5198 ../fish/guestfish-actions.pod:3512
14885 msgid ""
14886 "This sets the partition name on partition numbered C<partnum> on device "
14887 "C<device>.  Note that partitions are numbered from 1."
14888 msgstr ""
14889
14890 #. type: textblock
14891 #: ../src/guestfs-actions.pod:5201 ../fish/guestfish-actions.pod:3515
14892 msgid ""
14893 "The partition name can only be set on certain types of partition table.  "
14894 "This works on C<gpt> but not on C<mbr> partitions."
14895 msgstr ""
14896
14897 #. type: =head2
14898 #: ../src/guestfs-actions.pod:5208
14899 msgid "guestfs_part_to_dev"
14900 msgstr ""
14901
14902 #. type: verbatim
14903 #: ../src/guestfs-actions.pod:5210
14904 #, no-wrap
14905 msgid ""
14906 " char *\n"
14907 " guestfs_part_to_dev (guestfs_h *g,\n"
14908 "                      const char *partition);\n"
14909 "\n"
14910 msgstr ""
14911
14912 #. type: textblock
14913 #: ../src/guestfs-actions.pod:5214 ../fish/guestfish-actions.pod:3522
14914 msgid ""
14915 "This function takes a partition name (eg. \"/dev/sdb1\") and removes the "
14916 "partition number, returning the device name (eg. \"/dev/sdb\")."
14917 msgstr ""
14918
14919 #. type: textblock
14920 #: ../src/guestfs-actions.pod:5218
14921 msgid ""
14922 "The named partition must exist, for example as a string returned from "
14923 "C<guestfs_list_partitions>."
14924 msgstr ""
14925
14926 #. type: =head2
14927 #: ../src/guestfs-actions.pod:5226
14928 msgid "guestfs_ping_daemon"
14929 msgstr ""
14930
14931 #. type: verbatim
14932 #: ../src/guestfs-actions.pod:5228
14933 #, no-wrap
14934 msgid ""
14935 " int\n"
14936 " guestfs_ping_daemon (guestfs_h *g);\n"
14937 "\n"
14938 msgstr ""
14939
14940 #. type: textblock
14941 #: ../src/guestfs-actions.pod:5231 ../fish/guestfish-actions.pod:3533
14942 msgid ""
14943 "This is a test probe into the guestfs daemon running inside the qemu "
14944 "subprocess.  Calling this function checks that the daemon responds to the "
14945 "ping message, without affecting the daemon or attached block device(s) in "
14946 "any other way."
14947 msgstr ""
14948
14949 #. type: =head2
14950 #: ../src/guestfs-actions.pod:5240
14951 msgid "guestfs_pread"
14952 msgstr ""
14953
14954 #. type: verbatim
14955 #: ../src/guestfs-actions.pod:5242
14956 #, no-wrap
14957 msgid ""
14958 " char *\n"
14959 " guestfs_pread (guestfs_h *g,\n"
14960 "                const char *path,\n"
14961 "                int count,\n"
14962 "                int64_t offset,\n"
14963 "                size_t *size_r);\n"
14964 "\n"
14965 msgstr ""
14966
14967 #. type: textblock
14968 #: ../src/guestfs-actions.pod:5249 ../fish/guestfish-actions.pod:3542
14969 msgid ""
14970 "This command lets you read part of a file.  It reads C<count> bytes of the "
14971 "file, starting at C<offset>, from file C<path>."
14972 msgstr ""
14973
14974 #. type: textblock
14975 #: ../src/guestfs-actions.pod:5252 ../src/guestfs-actions.pod:5278
14976 #: ../fish/guestfish-actions.pod:3545 ../fish/guestfish-actions.pod:3560
14977 msgid ""
14978 "This may read fewer bytes than requested.  For further details see the "
14979 "L<pread(2)> system call."
14980 msgstr ""
14981
14982 #. type: textblock
14983 #: ../src/guestfs-actions.pod:5255
14984 msgid "See also C<guestfs_pwrite>, C<guestfs_pread_device>."
14985 msgstr ""
14986
14987 #. type: =head2
14988 #: ../src/guestfs-actions.pod:5266
14989 msgid "guestfs_pread_device"
14990 msgstr ""
14991
14992 #. type: verbatim
14993 #: ../src/guestfs-actions.pod:5268
14994 #, no-wrap
14995 msgid ""
14996 " char *\n"
14997 " guestfs_pread_device (guestfs_h *g,\n"
14998 "                       const char *device,\n"
14999 "                       int count,\n"
15000 "                       int64_t offset,\n"
15001 "                       size_t *size_r);\n"
15002 "\n"
15003 msgstr ""
15004
15005 #. type: textblock
15006 #: ../src/guestfs-actions.pod:5275 ../fish/guestfish-actions.pod:3557
15007 msgid ""
15008 "This command lets you read part of a file.  It reads C<count> bytes of "
15009 "C<device>, starting at C<offset>."
15010 msgstr ""
15011
15012 #. type: textblock
15013 #: ../src/guestfs-actions.pod:5281
15014 msgid "See also C<guestfs_pread>."
15015 msgstr ""
15016
15017 #. type: textblock
15018 #: ../src/guestfs-actions.pod:5290
15019 msgid "(Added in 1.5.21)"
15020 msgstr ""
15021
15022 #. type: =head2
15023 #: ../src/guestfs-actions.pod:5292
15024 msgid "guestfs_pvcreate"
15025 msgstr ""
15026
15027 #. type: verbatim
15028 #: ../src/guestfs-actions.pod:5294
15029 #, no-wrap
15030 msgid ""
15031 " int\n"
15032 " guestfs_pvcreate (guestfs_h *g,\n"
15033 "                   const char *device);\n"
15034 "\n"
15035 msgstr ""
15036
15037 #. type: textblock
15038 #: ../src/guestfs-actions.pod:5298 ../fish/guestfish-actions.pod:3572
15039 msgid ""
15040 "This creates an LVM physical volume on the named C<device>, where C<device> "
15041 "should usually be a partition name such as C</dev/sda1>."
15042 msgstr ""
15043
15044 #. type: =head2
15045 #: ../src/guestfs-actions.pod:5306
15046 msgid "guestfs_pvremove"
15047 msgstr ""
15048
15049 #. type: verbatim
15050 #: ../src/guestfs-actions.pod:5308
15051 #, no-wrap
15052 msgid ""
15053 " int\n"
15054 " guestfs_pvremove (guestfs_h *g,\n"
15055 "                   const char *device);\n"
15056 "\n"
15057 msgstr ""
15058
15059 #. type: textblock
15060 #: ../src/guestfs-actions.pod:5312 ../fish/guestfish-actions.pod:3580
15061 msgid ""
15062 "This wipes a physical volume C<device> so that LVM will no longer recognise "
15063 "it."
15064 msgstr ""
15065
15066 #. type: textblock
15067 #: ../src/guestfs-actions.pod:5315 ../fish/guestfish-actions.pod:3583
15068 msgid ""
15069 "The implementation uses the C<pvremove> command which refuses to wipe "
15070 "physical volumes that contain any volume groups, so you have to remove those "
15071 "first."
15072 msgstr ""
15073
15074 #. type: =head2
15075 #: ../src/guestfs-actions.pod:5323
15076 msgid "guestfs_pvresize"
15077 msgstr ""
15078
15079 #. type: verbatim
15080 #: ../src/guestfs-actions.pod:5325
15081 #, no-wrap
15082 msgid ""
15083 " int\n"
15084 " guestfs_pvresize (guestfs_h *g,\n"
15085 "                   const char *device);\n"
15086 "\n"
15087 msgstr ""
15088
15089 #. type: textblock
15090 #: ../src/guestfs-actions.pod:5329 ../fish/guestfish-actions.pod:3591
15091 msgid ""
15092 "This resizes (expands or shrinks) an existing LVM physical volume to match "
15093 "the new size of the underlying device."
15094 msgstr ""
15095
15096 #. type: =head2
15097 #: ../src/guestfs-actions.pod:5336
15098 msgid "guestfs_pvresize_size"
15099 msgstr ""
15100
15101 #. type: verbatim
15102 #: ../src/guestfs-actions.pod:5338
15103 #, no-wrap
15104 msgid ""
15105 " int\n"
15106 " guestfs_pvresize_size (guestfs_h *g,\n"
15107 "                        const char *device,\n"
15108 "                        int64_t size);\n"
15109 "\n"
15110 msgstr ""
15111
15112 #. type: textblock
15113 #: ../src/guestfs-actions.pod:5343
15114 msgid ""
15115 "This command is the same as C<guestfs_pvresize> except that it allows you to "
15116 "specify the new size (in bytes) explicitly."
15117 msgstr ""
15118
15119 #. type: =head2
15120 #: ../src/guestfs-actions.pod:5350
15121 msgid "guestfs_pvs"
15122 msgstr ""
15123
15124 #. type: verbatim
15125 #: ../src/guestfs-actions.pod:5352
15126 #, no-wrap
15127 msgid ""
15128 " char **\n"
15129 " guestfs_pvs (guestfs_h *g);\n"
15130 "\n"
15131 msgstr ""
15132
15133 #. type: textblock
15134 #: ../src/guestfs-actions.pod:5355 ../fish/guestfish-actions.pod:3605
15135 msgid ""
15136 "List all the physical volumes detected.  This is the equivalent of the L<pvs"
15137 "(8)> command."
15138 msgstr ""
15139
15140 #. type: textblock
15141 #: ../src/guestfs-actions.pod:5358 ../fish/guestfish-actions.pod:3608
15142 msgid ""
15143 "This returns a list of just the device names that contain PVs (eg. C</dev/"
15144 "sda2>)."
15145 msgstr ""
15146
15147 #. type: textblock
15148 #: ../src/guestfs-actions.pod:5361
15149 msgid "See also C<guestfs_pvs_full>."
15150 msgstr ""
15151
15152 #. type: =head2
15153 #: ../src/guestfs-actions.pod:5369
15154 msgid "guestfs_pvs_full"
15155 msgstr ""
15156
15157 #. type: verbatim
15158 #: ../src/guestfs-actions.pod:5371
15159 #, no-wrap
15160 msgid ""
15161 " struct guestfs_lvm_pv_list *\n"
15162 " guestfs_pvs_full (guestfs_h *g);\n"
15163 "\n"
15164 msgstr ""
15165
15166 #. type: textblock
15167 #: ../src/guestfs-actions.pod:5374 ../fish/guestfish-actions.pod:3617
15168 msgid ""
15169 "List all the physical volumes detected.  This is the equivalent of the L<pvs"
15170 "(8)> command.  The \"full\" version includes all fields."
15171 msgstr ""
15172
15173 #. type: textblock
15174 #: ../src/guestfs-actions.pod:5377
15175 msgid ""
15176 "This function returns a C<struct guestfs_lvm_pv_list *>, or NULL if there "
15177 "was an error.  I<The caller must call C<guestfs_free_lvm_pv_list> after use>."
15178 msgstr ""
15179
15180 #. type: =head2
15181 #: ../src/guestfs-actions.pod:5383
15182 msgid "guestfs_pvuuid"
15183 msgstr ""
15184
15185 #. type: verbatim
15186 #: ../src/guestfs-actions.pod:5385
15187 #, no-wrap
15188 msgid ""
15189 " char *\n"
15190 " guestfs_pvuuid (guestfs_h *g,\n"
15191 "                 const char *device);\n"
15192 "\n"
15193 msgstr ""
15194
15195 #. type: textblock
15196 #: ../src/guestfs-actions.pod:5389 ../fish/guestfish-actions.pod:3624
15197 msgid "This command returns the UUID of the LVM PV C<device>."
15198 msgstr ""
15199
15200 #. type: =head2
15201 #: ../src/guestfs-actions.pod:5396
15202 msgid "guestfs_pwrite"
15203 msgstr ""
15204
15205 #. type: verbatim
15206 #: ../src/guestfs-actions.pod:5398
15207 #, no-wrap
15208 msgid ""
15209 " int\n"
15210 " guestfs_pwrite (guestfs_h *g,\n"
15211 "                 const char *path,\n"
15212 "                 const char *content,\n"
15213 "                 size_t content_size,\n"
15214 "                 int64_t offset);\n"
15215 "\n"
15216 msgstr ""
15217
15218 #. type: textblock
15219 #: ../src/guestfs-actions.pod:5405 ../fish/guestfish-actions.pod:3630
15220 msgid ""
15221 "This command writes to part of a file.  It writes the data buffer C<content> "
15222 "to the file C<path> starting at offset C<offset>."
15223 msgstr ""
15224
15225 #. type: textblock
15226 #: ../src/guestfs-actions.pod:5408 ../fish/guestfish-actions.pod:3633
15227 msgid ""
15228 "This command implements the L<pwrite(2)> system call, and like that system "
15229 "call it may not write the full data requested.  The return value is the "
15230 "number of bytes that were actually written to the file.  This could even be "
15231 "0, although short writes are unlikely for regular files in ordinary "
15232 "circumstances."
15233 msgstr ""
15234
15235 #. type: textblock
15236 #: ../src/guestfs-actions.pod:5414
15237 msgid "See also C<guestfs_pread>, C<guestfs_pwrite_device>."
15238 msgstr ""
15239
15240 #. type: =head2
15241 #: ../src/guestfs-actions.pod:5423
15242 msgid "guestfs_pwrite_device"
15243 msgstr ""
15244
15245 #. type: verbatim
15246 #: ../src/guestfs-actions.pod:5425
15247 #, no-wrap
15248 msgid ""
15249 " int\n"
15250 " guestfs_pwrite_device (guestfs_h *g,\n"
15251 "                        const char *device,\n"
15252 "                        const char *content,\n"
15253 "                        size_t content_size,\n"
15254 "                        int64_t offset);\n"
15255 "\n"
15256 msgstr ""
15257
15258 #. type: textblock
15259 #: ../src/guestfs-actions.pod:5432 ../fish/guestfish-actions.pod:3648
15260 msgid ""
15261 "This command writes to part of a device.  It writes the data buffer "
15262 "C<content> to C<device> starting at offset C<offset>."
15263 msgstr ""
15264
15265 #. type: textblock
15266 #: ../src/guestfs-actions.pod:5435 ../fish/guestfish-actions.pod:3651
15267 msgid ""
15268 "This command implements the L<pwrite(2)> system call, and like that system "
15269 "call it may not write the full data requested (although short writes to disk "
15270 "devices and partitions are probably impossible with standard Linux kernels)."
15271 msgstr ""
15272
15273 #. type: textblock
15274 #: ../src/guestfs-actions.pod:5440
15275 msgid "See also C<guestfs_pwrite>."
15276 msgstr ""
15277
15278 #. type: textblock
15279 #: ../src/guestfs-actions.pod:5447
15280 msgid "(Added in 1.5.20)"
15281 msgstr ""
15282
15283 #. type: =head2
15284 #: ../src/guestfs-actions.pod:5449
15285 msgid "guestfs_read_file"
15286 msgstr ""
15287
15288 #. type: verbatim
15289 #: ../src/guestfs-actions.pod:5451
15290 #, no-wrap
15291 msgid ""
15292 " char *\n"
15293 " guestfs_read_file (guestfs_h *g,\n"
15294 "                    const char *path,\n"
15295 "                    size_t *size_r);\n"
15296 "\n"
15297 msgstr ""
15298
15299 #. type: textblock
15300 #: ../src/guestfs-actions.pod:5456 ../fish/guestfish-actions.pod:3665
15301 msgid "This calls returns the contents of the file C<path> as a buffer."
15302 msgstr ""
15303
15304 #. type: textblock
15305 #: ../src/guestfs-actions.pod:5459
15306 msgid ""
15307 "Unlike C<guestfs_cat>, this function can correctly handle files that contain "
15308 "embedded ASCII NUL characters.  However unlike C<guestfs_download>, this "
15309 "function is limited in the total size of file that can be handled."
15310 msgstr ""
15311
15312 #. type: textblock
15313 #: ../src/guestfs-actions.pod:5471
15314 msgid "(Added in 1.0.63)"
15315 msgstr ""
15316
15317 #. type: =head2
15318 #: ../src/guestfs-actions.pod:5473
15319 msgid "guestfs_read_lines"
15320 msgstr ""
15321
15322 #. type: verbatim
15323 #: ../src/guestfs-actions.pod:5475
15324 #, no-wrap
15325 msgid ""
15326 " char **\n"
15327 " guestfs_read_lines (guestfs_h *g,\n"
15328 "                     const char *path);\n"
15329 "\n"
15330 msgstr ""
15331
15332 #. type: textblock
15333 #: ../src/guestfs-actions.pod:5481 ../fish/guestfish-actions.pod:3682
15334 msgid ""
15335 "The file contents are returned as a list of lines.  Trailing C<LF> and "
15336 "C<CRLF> character sequences are I<not> returned."
15337 msgstr ""
15338
15339 #. type: textblock
15340 #: ../src/guestfs-actions.pod:5484
15341 msgid ""
15342 "Note that this function cannot correctly handle binary files (specifically, "
15343 "files containing C<\\0> character which is treated as end of line).  For "
15344 "those you need to use the C<guestfs_read_file> function which has a more "
15345 "complex interface."
15346 msgstr ""
15347
15348 #. type: =head2
15349 #: ../src/guestfs-actions.pod:5495
15350 msgid "guestfs_readdir"
15351 msgstr ""
15352
15353 #. type: verbatim
15354 #: ../src/guestfs-actions.pod:5497
15355 #, no-wrap
15356 msgid ""
15357 " struct guestfs_dirent_list *\n"
15358 " guestfs_readdir (guestfs_h *g,\n"
15359 "                  const char *dir);\n"
15360 "\n"
15361 msgstr ""
15362
15363 #. type: textblock
15364 #: ../src/guestfs-actions.pod:5501 ../fish/guestfish-actions.pod:3694
15365 msgid "This returns the list of directory entries in directory C<dir>."
15366 msgstr ""
15367
15368 #. type: textblock
15369 #: ../src/guestfs-actions.pod:5503 ../fish/guestfish-actions.pod:3696
15370 msgid ""
15371 "All entries in the directory are returned, including C<.> and C<..>.  The "
15372 "entries are I<not> sorted, but returned in the same order as the underlying "
15373 "filesystem."
15374 msgstr ""
15375
15376 #. type: textblock
15377 #: ../src/guestfs-actions.pod:5507 ../fish/guestfish-actions.pod:3700
15378 msgid ""
15379 "Also this call returns basic file type information about each file.  The "
15380 "C<ftyp> field will contain one of the following characters:"
15381 msgstr ""
15382
15383 #. type: =item
15384 #: ../src/guestfs-actions.pod:5512 ../fish/guestfish-actions.pod:3705
15385 msgid "'b'"
15386 msgstr ""
15387
15388 #. type: textblock
15389 #: ../src/guestfs-actions.pod:5514 ../fish/guestfish-actions.pod:3707
15390 msgid "Block special"
15391 msgstr ""
15392
15393 #. type: =item
15394 #: ../src/guestfs-actions.pod:5516 ../fish/guestfish-actions.pod:3709
15395 msgid "'c'"
15396 msgstr ""
15397
15398 #. type: textblock
15399 #: ../src/guestfs-actions.pod:5518 ../fish/guestfish-actions.pod:3711
15400 msgid "Char special"
15401 msgstr ""
15402
15403 #. type: =item
15404 #: ../src/guestfs-actions.pod:5520 ../fish/guestfish-actions.pod:3713
15405 msgid "'d'"
15406 msgstr ""
15407
15408 #. type: textblock
15409 #: ../src/guestfs-actions.pod:5522 ../fish/guestfish-actions.pod:3715
15410 msgid "Directory"
15411 msgstr ""
15412
15413 #. type: =item
15414 #: ../src/guestfs-actions.pod:5524 ../fish/guestfish-actions.pod:3717
15415 msgid "'f'"
15416 msgstr ""
15417
15418 #. type: textblock
15419 #: ../src/guestfs-actions.pod:5526 ../fish/guestfish-actions.pod:3719
15420 msgid "FIFO (named pipe)"
15421 msgstr ""
15422
15423 #. type: =item
15424 #: ../src/guestfs-actions.pod:5528 ../fish/guestfish-actions.pod:3721
15425 msgid "'l'"
15426 msgstr ""
15427
15428 #. type: textblock
15429 #: ../src/guestfs-actions.pod:5530 ../fish/guestfish-actions.pod:3723
15430 msgid "Symbolic link"
15431 msgstr ""
15432
15433 #. type: =item
15434 #: ../src/guestfs-actions.pod:5532 ../fish/guestfish-actions.pod:3725
15435 msgid "'r'"
15436 msgstr ""
15437
15438 #. type: textblock
15439 #: ../src/guestfs-actions.pod:5534 ../fish/guestfish-actions.pod:3727
15440 msgid "Regular file"
15441 msgstr ""
15442
15443 #. type: =item
15444 #: ../src/guestfs-actions.pod:5536 ../fish/guestfish-actions.pod:3729
15445 msgid "'s'"
15446 msgstr ""
15447
15448 #. type: textblock
15449 #: ../src/guestfs-actions.pod:5538 ../fish/guestfish-actions.pod:3731
15450 msgid "Socket"
15451 msgstr ""
15452
15453 #. type: =item
15454 #: ../src/guestfs-actions.pod:5540 ../fish/guestfish-actions.pod:3733
15455 msgid "'u'"
15456 msgstr ""
15457
15458 #. type: textblock
15459 #: ../src/guestfs-actions.pod:5542 ../fish/guestfish-actions.pod:3735
15460 msgid "Unknown file type"
15461 msgstr ""
15462
15463 #. type: =item
15464 #: ../src/guestfs-actions.pod:5544 ../fish/guestfish-actions.pod:3737
15465 msgid "'?'"
15466 msgstr ""
15467
15468 #. type: textblock
15469 #: ../src/guestfs-actions.pod:5546 ../fish/guestfish-actions.pod:3739
15470 msgid ""
15471 "The L<readdir(3)> call returned a C<d_type> field with an unexpected value"
15472 msgstr ""
15473
15474 #. type: textblock
15475 #: ../src/guestfs-actions.pod:5551
15476 msgid ""
15477 "This function is primarily intended for use by programs.  To get a simple "
15478 "list of names, use C<guestfs_ls>.  To get a printable directory for human "
15479 "consumption, use C<guestfs_ll>."
15480 msgstr ""
15481
15482 #. type: textblock
15483 #: ../src/guestfs-actions.pod:5555
15484 msgid ""
15485 "This function returns a C<struct guestfs_dirent_list *>, or NULL if there "
15486 "was an error.  I<The caller must call C<guestfs_free_dirent_list> after use>."
15487 msgstr ""
15488
15489 #. type: =head2
15490 #: ../src/guestfs-actions.pod:5561
15491 msgid "guestfs_readlink"
15492 msgstr ""
15493
15494 #. type: verbatim
15495 #: ../src/guestfs-actions.pod:5563
15496 #, no-wrap
15497 msgid ""
15498 " char *\n"
15499 " guestfs_readlink (guestfs_h *g,\n"
15500 "                   const char *path);\n"
15501 "\n"
15502 msgstr ""
15503
15504 #. type: textblock
15505 #: ../src/guestfs-actions.pod:5567 ../fish/guestfish-actions.pod:3752
15506 msgid "This command reads the target of a symbolic link."
15507 msgstr ""
15508
15509 #. type: =head2
15510 #: ../src/guestfs-actions.pod:5574
15511 msgid "guestfs_readlinklist"
15512 msgstr ""
15513
15514 #. type: verbatim
15515 #: ../src/guestfs-actions.pod:5576
15516 #, no-wrap
15517 msgid ""
15518 " char **\n"
15519 " guestfs_readlinklist (guestfs_h *g,\n"
15520 "                       const char *path,\n"
15521 "                       char *const *names);\n"
15522 "\n"
15523 msgstr ""
15524
15525 #. type: textblock
15526 #: ../src/guestfs-actions.pod:5581 ../fish/guestfish-actions.pod:3758
15527 msgid ""
15528 "This call allows you to do a C<readlink> operation on multiple files, where "
15529 "all files are in the directory C<path>.  C<names> is the list of files from "
15530 "this directory."
15531 msgstr ""
15532
15533 #. type: textblock
15534 #: ../src/guestfs-actions.pod:5585 ../fish/guestfish-actions.pod:3762
15535 msgid ""
15536 "On return you get a list of strings, with a one-to-one correspondence to the "
15537 "C<names> list.  Each string is the value of the symbolic link."
15538 msgstr ""
15539
15540 #. type: textblock
15541 #: ../src/guestfs-actions.pod:5589 ../fish/guestfish-actions.pod:3766
15542 msgid ""
15543 "If the C<readlink(2)> operation fails on any name, then the corresponding "
15544 "result string is the empty string C<\"\">.  However the whole operation is "
15545 "completed even if there were C<readlink(2)> errors, and so you can call this "
15546 "function with names where you don't know if they are symbolic links already "
15547 "(albeit slightly less efficient)."
15548 msgstr ""
15549
15550 #. type: textblock
15551 #: ../src/guestfs-actions.pod:5596 ../fish/guestfish-actions.pod:3773
15552 msgid ""
15553 "This call is intended for programs that want to efficiently list a directory "
15554 "contents without making many round-trips.  Very long directory listings "
15555 "might cause the protocol message size to be exceeded, causing this call to "
15556 "fail.  The caller must split up such requests into smaller groups of names."
15557 msgstr ""
15558
15559 #. type: =head2
15560 #: ../src/guestfs-actions.pod:5609
15561 msgid "guestfs_realpath"
15562 msgstr ""
15563
15564 #. type: verbatim
15565 #: ../src/guestfs-actions.pod:5611
15566 #, no-wrap
15567 msgid ""
15568 " char *\n"
15569 " guestfs_realpath (guestfs_h *g,\n"
15570 "                   const char *path);\n"
15571 "\n"
15572 msgstr ""
15573
15574 #. type: textblock
15575 #: ../src/guestfs-actions.pod:5615 ../fish/guestfish-actions.pod:3784
15576 msgid ""
15577 "Return the canonicalized absolute pathname of C<path>.  The returned path "
15578 "has no C<.>, C<..> or symbolic link path elements."
15579 msgstr ""
15580
15581 #. type: =head2
15582 #: ../src/guestfs-actions.pod:5623
15583 msgid "guestfs_removexattr"
15584 msgstr ""
15585
15586 #. type: verbatim
15587 #: ../src/guestfs-actions.pod:5625
15588 #, no-wrap
15589 msgid ""
15590 " int\n"
15591 " guestfs_removexattr (guestfs_h *g,\n"
15592 "                      const char *xattr,\n"
15593 "                      const char *path);\n"
15594 "\n"
15595 msgstr ""
15596
15597 #. type: textblock
15598 #: ../src/guestfs-actions.pod:5630 ../fish/guestfish-actions.pod:3791
15599 msgid ""
15600 "This call removes the extended attribute named C<xattr> of the file C<path>."
15601 msgstr ""
15602
15603 #. type: textblock
15604 #: ../src/guestfs-actions.pod:5633
15605 msgid "See also: C<guestfs_lremovexattr>, L<attr(5)>."
15606 msgstr ""
15607
15608 #. type: =head2
15609 #: ../src/guestfs-actions.pod:5639
15610 msgid "guestfs_resize2fs"
15611 msgstr ""
15612
15613 #. type: verbatim
15614 #: ../src/guestfs-actions.pod:5641
15615 #, no-wrap
15616 msgid ""
15617 " int\n"
15618 " guestfs_resize2fs (guestfs_h *g,\n"
15619 "                    const char *device);\n"
15620 "\n"
15621 msgstr ""
15622
15623 #. type: textblock
15624 #: ../src/guestfs-actions.pod:5645 ../fish/guestfish-actions.pod:3800
15625 msgid ""
15626 "This resizes an ext2, ext3 or ext4 filesystem to match the size of the "
15627 "underlying device."
15628 msgstr ""
15629
15630 #. type: textblock
15631 #: ../src/guestfs-actions.pod:5648
15632 msgid ""
15633 "I<Note:> It is sometimes required that you run C<guestfs_e2fsck_f> on the "
15634 "C<device> before calling this command.  For unknown reasons C<resize2fs> "
15635 "sometimes gives an error about this and sometimes not.  In any case, it is "
15636 "always safe to call C<guestfs_e2fsck_f> before calling this function."
15637 msgstr ""
15638
15639 #. type: =head2
15640 #: ../src/guestfs-actions.pod:5658
15641 msgid "guestfs_resize2fs_M"
15642 msgstr ""
15643
15644 #. type: verbatim
15645 #: ../src/guestfs-actions.pod:5660
15646 #, no-wrap
15647 msgid ""
15648 " int\n"
15649 " guestfs_resize2fs_M (guestfs_h *g,\n"
15650 "                      const char *device);\n"
15651 "\n"
15652 msgstr ""
15653
15654 #. type: textblock
15655 #: ../src/guestfs-actions.pod:5664
15656 msgid ""
15657 "This command is the same as C<guestfs_resize2fs>, but the filesystem is "
15658 "resized to its minimum size.  This works like the I<-M> option to the "
15659 "C<resize2fs> command."
15660 msgstr ""
15661
15662 #. type: textblock
15663 #: ../src/guestfs-actions.pod:5668
15664 msgid ""
15665 "To get the resulting size of the filesystem you should call "
15666 "C<guestfs_tune2fs_l> and read the C<Block size> and C<Block count> values.  "
15667 "These two numbers, multiplied together, give the resulting size of the "
15668 "minimal filesystem in bytes."
15669 msgstr ""
15670
15671 #. type: =head2
15672 #: ../src/guestfs-actions.pod:5675
15673 msgid "guestfs_resize2fs_size"
15674 msgstr ""
15675
15676 #. type: verbatim
15677 #: ../src/guestfs-actions.pod:5677
15678 #, no-wrap
15679 msgid ""
15680 " int\n"
15681 " guestfs_resize2fs_size (guestfs_h *g,\n"
15682 "                         const char *device,\n"
15683 "                         int64_t size);\n"
15684 "\n"
15685 msgstr ""
15686
15687 #. type: textblock
15688 #: ../src/guestfs-actions.pod:5682
15689 msgid ""
15690 "This command is the same as C<guestfs_resize2fs> except that it allows you "
15691 "to specify the new size (in bytes) explicitly."
15692 msgstr ""
15693
15694 #. type: =head2
15695 #: ../src/guestfs-actions.pod:5689
15696 msgid "guestfs_rm"
15697 msgstr ""
15698
15699 #. type: verbatim
15700 #: ../src/guestfs-actions.pod:5691
15701 #, no-wrap
15702 msgid ""
15703 " int\n"
15704 " guestfs_rm (guestfs_h *g,\n"
15705 "             const char *path);\n"
15706 "\n"
15707 msgstr ""
15708
15709 #. type: textblock
15710 #: ../src/guestfs-actions.pod:5695 ../fish/guestfish-actions.pod:3833
15711 msgid "Remove the single file C<path>."
15712 msgstr ""
15713
15714 #. type: =head2
15715 #: ../src/guestfs-actions.pod:5701
15716 msgid "guestfs_rm_rf"
15717 msgstr ""
15718
15719 #. type: verbatim
15720 #: ../src/guestfs-actions.pod:5703
15721 #, no-wrap
15722 msgid ""
15723 " int\n"
15724 " guestfs_rm_rf (guestfs_h *g,\n"
15725 "                const char *path);\n"
15726 "\n"
15727 msgstr ""
15728
15729 #. type: textblock
15730 #: ../src/guestfs-actions.pod:5707 ../fish/guestfish-actions.pod:3839
15731 msgid ""
15732 "Remove the file or directory C<path>, recursively removing the contents if "
15733 "its a directory.  This is like the C<rm -rf> shell command."
15734 msgstr ""
15735
15736 #. type: =head2
15737 #: ../src/guestfs-actions.pod:5715
15738 msgid "guestfs_rmdir"
15739 msgstr ""
15740
15741 #. type: verbatim
15742 #: ../src/guestfs-actions.pod:5717
15743 #, no-wrap
15744 msgid ""
15745 " int\n"
15746 " guestfs_rmdir (guestfs_h *g,\n"
15747 "                const char *path);\n"
15748 "\n"
15749 msgstr ""
15750
15751 #. type: textblock
15752 #: ../src/guestfs-actions.pod:5721 ../fish/guestfish-actions.pod:3847
15753 msgid "Remove the single directory C<path>."
15754 msgstr ""
15755
15756 #. type: =head2
15757 #: ../src/guestfs-actions.pod:5727
15758 msgid "guestfs_rmmountpoint"
15759 msgstr ""
15760
15761 #. type: verbatim
15762 #: ../src/guestfs-actions.pod:5729
15763 #, no-wrap
15764 msgid ""
15765 " int\n"
15766 " guestfs_rmmountpoint (guestfs_h *g,\n"
15767 "                       const char *exemptpath);\n"
15768 "\n"
15769 msgstr ""
15770
15771 #. type: textblock
15772 #: ../src/guestfs-actions.pod:5733
15773 msgid ""
15774 "This calls removes a mountpoint that was previously created with "
15775 "C<guestfs_mkmountpoint>.  See C<guestfs_mkmountpoint> for full details."
15776 msgstr ""
15777
15778 #. type: =head2
15779 #: ../src/guestfs-actions.pod:5741
15780 msgid "guestfs_scrub_device"
15781 msgstr ""
15782
15783 #. type: verbatim
15784 #: ../src/guestfs-actions.pod:5743
15785 #, no-wrap
15786 msgid ""
15787 " int\n"
15788 " guestfs_scrub_device (guestfs_h *g,\n"
15789 "                       const char *device);\n"
15790 "\n"
15791 msgstr ""
15792
15793 #. type: textblock
15794 #: ../src/guestfs-actions.pod:5747 ../fish/guestfish-actions.pod:3861
15795 msgid ""
15796 "This command writes patterns over C<device> to make data retrieval more "
15797 "difficult."
15798 msgstr ""
15799
15800 #. type: textblock
15801 #: ../src/guestfs-actions.pod:5750 ../src/guestfs-actions.pod:5771
15802 #: ../src/guestfs-actions.pod:5790 ../fish/guestfish-actions.pod:3864
15803 #: ../fish/guestfish-actions.pod:3879 ../fish/guestfish-actions.pod:3892
15804 msgid ""
15805 "It is an interface to the L<scrub(1)> program.  See that manual page for "
15806 "more details."
15807 msgstr ""
15808
15809 #. type: textblock
15810 #: ../src/guestfs-actions.pod:5758 ../src/guestfs-actions.pod:5776
15811 #: ../src/guestfs-actions.pod:5795
15812 msgid "(Added in 1.0.52)"
15813 msgstr ""
15814
15815 #. type: =head2
15816 #: ../src/guestfs-actions.pod:5760
15817 msgid "guestfs_scrub_file"
15818 msgstr ""
15819
15820 #. type: verbatim
15821 #: ../src/guestfs-actions.pod:5762
15822 #, no-wrap
15823 msgid ""
15824 " int\n"
15825 " guestfs_scrub_file (guestfs_h *g,\n"
15826 "                     const char *file);\n"
15827 "\n"
15828 msgstr ""
15829
15830 #. type: textblock
15831 #: ../src/guestfs-actions.pod:5766 ../fish/guestfish-actions.pod:3874
15832 msgid ""
15833 "This command writes patterns over a file to make data retrieval more "
15834 "difficult."
15835 msgstr ""
15836
15837 #. type: textblock
15838 #: ../src/guestfs-actions.pod:5769 ../fish/guestfish-actions.pod:3877
15839 msgid "The file is I<removed> after scrubbing."
15840 msgstr ""
15841
15842 #. type: =head2
15843 #: ../src/guestfs-actions.pod:5778
15844 msgid "guestfs_scrub_freespace"
15845 msgstr ""
15846
15847 #. type: verbatim
15848 #: ../src/guestfs-actions.pod:5780
15849 #, no-wrap
15850 msgid ""
15851 " int\n"
15852 " guestfs_scrub_freespace (guestfs_h *g,\n"
15853 "                          const char *dir);\n"
15854 "\n"
15855 msgstr ""
15856
15857 #. type: textblock
15858 #: ../src/guestfs-actions.pod:5784
15859 msgid ""
15860 "This command creates the directory C<dir> and then fills it with files until "
15861 "the filesystem is full, and scrubs the files as for C<guestfs_scrub_file>, "
15862 "and deletes them.  The intention is to scrub any free space on the partition "
15863 "containing C<dir>."
15864 msgstr ""
15865
15866 #. type: =head2
15867 #: ../src/guestfs-actions.pod:5797
15868 msgid "guestfs_set_append"
15869 msgstr ""
15870
15871 #. type: verbatim
15872 #: ../src/guestfs-actions.pod:5799
15873 #, no-wrap
15874 msgid ""
15875 " int\n"
15876 " guestfs_set_append (guestfs_h *g,\n"
15877 "                     const char *append);\n"
15878 "\n"
15879 msgstr ""
15880
15881 #. type: textblock
15882 #: ../src/guestfs-actions.pod:5803 ../fish/guestfish-actions.pod:3901
15883 msgid ""
15884 "This function is used to add additional options to the guest kernel command "
15885 "line."
15886 msgstr ""
15887
15888 #. type: textblock
15889 #: ../src/guestfs-actions.pod:5806 ../fish/guestfish-actions.pod:3904
15890 msgid ""
15891 "The default is C<NULL> unless overridden by setting C<LIBGUESTFS_APPEND> "
15892 "environment variable."
15893 msgstr ""
15894
15895 #. type: textblock
15896 #: ../src/guestfs-actions.pod:5809 ../fish/guestfish-actions.pod:3907
15897 msgid ""
15898 "Setting C<append> to C<NULL> means I<no> additional options are passed "
15899 "(libguestfs always adds a few of its own)."
15900 msgstr ""
15901
15902 #. type: =head2
15903 #: ../src/guestfs-actions.pod:5816
15904 msgid "guestfs_set_attach_method"
15905 msgstr ""
15906
15907 #. type: verbatim
15908 #: ../src/guestfs-actions.pod:5818
15909 #, no-wrap
15910 msgid ""
15911 " int\n"
15912 " guestfs_set_attach_method (guestfs_h *g,\n"
15913 "                            const char *attachmethod);\n"
15914 "\n"
15915 msgstr ""
15916
15917 #. type: textblock
15918 #: ../src/guestfs-actions.pod:5822 ../fish/guestfish-actions.pod:3916
15919 msgid ""
15920 "Set the method that libguestfs uses to connect to the back end guestfsd "
15921 "daemon.  Possible methods are:"
15922 msgstr ""
15923
15924 #. type: textblock
15925 #: ../src/guestfs-actions.pod:5829 ../fish/guestfish-actions.pod:3923
15926 msgid ""
15927 "Launch an appliance and connect to it.  This is the ordinary method and the "
15928 "default."
15929 msgstr ""
15930
15931 #. type: =item
15932 #: ../src/guestfs-actions.pod:5832 ../fish/guestfish-actions.pod:3926
15933 msgid "C<unix:I<path>>"
15934 msgstr ""
15935
15936 #. type: textblock
15937 #: ../src/guestfs-actions.pod:5834 ../fish/guestfish-actions.pod:3928
15938 msgid "Connect to the Unix domain socket I<path>."
15939 msgstr ""
15940
15941 #. type: textblock
15942 #: ../src/guestfs-actions.pod:5836 ../fish/guestfish-actions.pod:3930
15943 msgid ""
15944 "This method lets you connect to an existing daemon or (using virtio-serial) "
15945 "to a live guest.  For more information, see L<guestfs(3)/ATTACHING TO "
15946 "RUNNING DAEMONS>."
15947 msgstr ""
15948
15949 #. type: =head2
15950 #: ../src/guestfs-actions.pod:5844
15951 msgid "guestfs_set_autosync"
15952 msgstr ""
15953
15954 #. type: verbatim
15955 #: ../src/guestfs-actions.pod:5846
15956 #, no-wrap
15957 msgid ""
15958 " int\n"
15959 " guestfs_set_autosync (guestfs_h *g,\n"
15960 "                       int autosync);\n"
15961 "\n"
15962 msgstr ""
15963
15964 #. type: textblock
15965 #: ../src/guestfs-actions.pod:5850 ../fish/guestfish-actions.pod:3942
15966 msgid ""
15967 "If C<autosync> is true, this enables autosync.  Libguestfs will make a best "
15968 "effort attempt to make filesystems consistent and synchronized when the "
15969 "handle is closed (also if the program exits without closing handles)."
15970 msgstr ""
15971
15972 #. type: textblock
15973 #: ../src/guestfs-actions.pod:5855 ../fish/guestfish-actions.pod:3947
15974 msgid ""
15975 "This is enabled by default (since libguestfs 1.5.24, previously it was "
15976 "disabled by default)."
15977 msgstr ""
15978
15979 #. type: =head2
15980 #: ../src/guestfs-actions.pod:5862
15981 msgid "guestfs_set_direct"
15982 msgstr ""
15983
15984 #. type: verbatim
15985 #: ../src/guestfs-actions.pod:5864
15986 #, no-wrap
15987 msgid ""
15988 " int\n"
15989 " guestfs_set_direct (guestfs_h *g,\n"
15990 "                     int direct);\n"
15991 "\n"
15992 msgstr ""
15993
15994 #. type: textblock
15995 #: ../src/guestfs-actions.pod:5868 ../fish/guestfish-actions.pod:3956
15996 msgid ""
15997 "If the direct appliance mode flag is enabled, then stdin and stdout are "
15998 "passed directly through to the appliance once it is launched."
15999 msgstr ""
16000
16001 #. type: textblock
16002 #: ../src/guestfs-actions.pod:5872
16003 msgid ""
16004 "One consequence of this is that log messages aren't caught by the library "
16005 "and handled by C<guestfs_set_log_message_callback>, but go straight to "
16006 "stdout."
16007 msgstr ""
16008
16009 #. type: textblock
16010 #: ../src/guestfs-actions.pod:5876 ../fish/guestfish-actions.pod:3964
16011 msgid "You probably don't want to use this unless you know what you are doing."
16012 msgstr ""
16013
16014 #. type: textblock
16015 #: ../src/guestfs-actions.pod:5879 ../fish/guestfish-actions.pod:3967
16016 msgid "The default is disabled."
16017 msgstr ""
16018
16019 #. type: =head2
16020 #: ../src/guestfs-actions.pod:5885
16021 msgid "guestfs_set_e2label"
16022 msgstr ""
16023
16024 #. type: verbatim
16025 #: ../src/guestfs-actions.pod:5887
16026 #, no-wrap
16027 msgid ""
16028 " int\n"
16029 " guestfs_set_e2label (guestfs_h *g,\n"
16030 "                      const char *device,\n"
16031 "                      const char *label);\n"
16032 "\n"
16033 msgstr ""
16034
16035 #. type: textblock
16036 #: ../src/guestfs-actions.pod:5892 ../fish/guestfish-actions.pod:3973
16037 msgid ""
16038 "This sets the ext2/3/4 filesystem label of the filesystem on C<device> to "
16039 "C<label>.  Filesystem labels are limited to 16 characters."
16040 msgstr ""
16041
16042 #. type: textblock
16043 #: ../src/guestfs-actions.pod:5896
16044 msgid ""
16045 "You can use either C<guestfs_tune2fs_l> or C<guestfs_get_e2label> to return "
16046 "the existing label on a filesystem."
16047 msgstr ""
16048
16049 #. type: =head2
16050 #: ../src/guestfs-actions.pod:5903
16051 msgid "guestfs_set_e2uuid"
16052 msgstr ""
16053
16054 #. type: verbatim
16055 #: ../src/guestfs-actions.pod:5905
16056 #, no-wrap
16057 msgid ""
16058 " int\n"
16059 " guestfs_set_e2uuid (guestfs_h *g,\n"
16060 "                     const char *device,\n"
16061 "                     const char *uuid);\n"
16062 "\n"
16063 msgstr ""
16064
16065 #. type: textblock
16066 #: ../src/guestfs-actions.pod:5910 ../fish/guestfish-actions.pod:3984
16067 msgid ""
16068 "This sets the ext2/3/4 filesystem UUID of the filesystem on C<device> to "
16069 "C<uuid>.  The format of the UUID and alternatives such as C<clear>, "
16070 "C<random> and C<time> are described in the L<tune2fs(8)> manpage."
16071 msgstr ""
16072
16073 #. type: textblock
16074 #: ../src/guestfs-actions.pod:5915
16075 msgid ""
16076 "You can use either C<guestfs_tune2fs_l> or C<guestfs_get_e2uuid> to return "
16077 "the existing UUID of a filesystem."
16078 msgstr ""
16079
16080 #. type: =head2
16081 #: ../src/guestfs-actions.pod:5922
16082 msgid "guestfs_set_memsize"
16083 msgstr ""
16084
16085 #. type: verbatim
16086 #: ../src/guestfs-actions.pod:5924
16087 #, no-wrap
16088 msgid ""
16089 " int\n"
16090 " guestfs_set_memsize (guestfs_h *g,\n"
16091 "                      int memsize);\n"
16092 "\n"
16093 msgstr ""
16094
16095 #. type: textblock
16096 #: ../src/guestfs-actions.pod:5928
16097 msgid ""
16098 "This sets the memory size in megabytes allocated to the qemu subprocess.  "
16099 "This only has any effect if called before C<guestfs_launch>."
16100 msgstr ""
16101
16102 #. type: textblock
16103 #: ../src/guestfs-actions.pod:5932 ../fish/guestfish-actions.pod:4002
16104 msgid ""
16105 "You can also change this by setting the environment variable "
16106 "C<LIBGUESTFS_MEMSIZE> before the handle is created."
16107 msgstr ""
16108
16109 #. type: =head2
16110 #: ../src/guestfs-actions.pod:5943
16111 msgid "guestfs_set_network"
16112 msgstr ""
16113
16114 #. type: verbatim
16115 #: ../src/guestfs-actions.pod:5945
16116 #, no-wrap
16117 msgid ""
16118 " int\n"
16119 " guestfs_set_network (guestfs_h *g,\n"
16120 "                      int network);\n"
16121 "\n"
16122 msgstr ""
16123
16124 #. type: textblock
16125 #: ../src/guestfs-actions.pod:5949 ../fish/guestfish-actions.pod:4015
16126 msgid ""
16127 "If C<network> is true, then the network is enabled in the libguestfs "
16128 "appliance.  The default is false."
16129 msgstr ""
16130
16131 #. type: textblock
16132 #: ../src/guestfs-actions.pod:5952 ../fish/guestfish-actions.pod:4018
16133 msgid ""
16134 "This affects whether commands are able to access the network (see L<guestfs"
16135 "(3)/RUNNING COMMANDS>)."
16136 msgstr ""
16137
16138 #. type: textblock
16139 #: ../src/guestfs-actions.pod:5955
16140 msgid ""
16141 "You must call this before calling C<guestfs_launch>, otherwise it has no "
16142 "effect."
16143 msgstr ""
16144
16145 #. type: =head2
16146 #: ../src/guestfs-actions.pod:5962
16147 msgid "guestfs_set_path"
16148 msgstr ""
16149
16150 #. type: verbatim
16151 #: ../src/guestfs-actions.pod:5964
16152 #, no-wrap
16153 msgid ""
16154 " int\n"
16155 " guestfs_set_path (guestfs_h *g,\n"
16156 "                   const char *searchpath);\n"
16157 "\n"
16158 msgstr ""
16159
16160 #. type: textblock
16161 #: ../src/guestfs-actions.pod:5968 ../fish/guestfish-actions.pod:4030
16162 msgid "Set the path that libguestfs searches for kernel and initrd.img."
16163 msgstr ""
16164
16165 #. type: textblock
16166 #: ../src/guestfs-actions.pod:5970 ../fish/guestfish-actions.pod:4032
16167 msgid ""
16168 "The default is C<$libdir/guestfs> unless overridden by setting "
16169 "C<LIBGUESTFS_PATH> environment variable."
16170 msgstr ""
16171
16172 #. type: textblock
16173 #: ../src/guestfs-actions.pod:5973 ../fish/guestfish-actions.pod:4035
16174 msgid "Setting C<path> to C<NULL> restores the default path."
16175 msgstr ""
16176
16177 #. type: =head2
16178 #: ../src/guestfs-actions.pod:5979
16179 msgid "guestfs_set_qemu"
16180 msgstr ""
16181
16182 #. type: verbatim
16183 #: ../src/guestfs-actions.pod:5981
16184 #, no-wrap
16185 msgid ""
16186 " int\n"
16187 " guestfs_set_qemu (guestfs_h *g,\n"
16188 "                   const char *qemu);\n"
16189 "\n"
16190 msgstr ""
16191
16192 #. type: textblock
16193 #: ../src/guestfs-actions.pod:5985 ../fish/guestfish-actions.pod:4043
16194 msgid "Set the qemu binary that we will use."
16195 msgstr ""
16196
16197 #. type: textblock
16198 #: ../src/guestfs-actions.pod:5987 ../fish/guestfish-actions.pod:4045
16199 msgid ""
16200 "The default is chosen when the library was compiled by the configure script."
16201 msgstr ""
16202
16203 #. type: textblock
16204 #: ../src/guestfs-actions.pod:5990 ../fish/guestfish-actions.pod:4048
16205 msgid ""
16206 "You can also override this by setting the C<LIBGUESTFS_QEMU> environment "
16207 "variable."
16208 msgstr ""
16209
16210 #. type: textblock
16211 #: ../src/guestfs-actions.pod:5993 ../fish/guestfish-actions.pod:4051
16212 msgid "Setting C<qemu> to C<NULL> restores the default qemu binary."
16213 msgstr ""
16214
16215 #. type: textblock
16216 #: ../src/guestfs-actions.pod:5995 ../fish/guestfish-actions.pod:4053
16217 msgid ""
16218 "Note that you should call this function as early as possible after creating "
16219 "the handle.  This is because some pre-launch operations depend on testing "
16220 "qemu features (by running C<qemu -help>).  If the qemu binary changes, we "
16221 "don't retest features, and so you might see inconsistent results.  Using the "
16222 "environment variable C<LIBGUESTFS_QEMU> is safest of all since that picks "
16223 "the qemu binary at the same time as the handle is created."
16224 msgstr ""
16225
16226 #. type: =head2
16227 #: ../src/guestfs-actions.pod:6007
16228 msgid "guestfs_set_recovery_proc"
16229 msgstr ""
16230
16231 #. type: verbatim
16232 #: ../src/guestfs-actions.pod:6009
16233 #, no-wrap
16234 msgid ""
16235 " int\n"
16236 " guestfs_set_recovery_proc (guestfs_h *g,\n"
16237 "                            int recoveryproc);\n"
16238 "\n"
16239 msgstr ""
16240
16241 #. type: textblock
16242 #: ../src/guestfs-actions.pod:6013
16243 msgid ""
16244 "If this is called with the parameter C<false> then C<guestfs_launch> does "
16245 "not create a recovery process.  The purpose of the recovery process is to "
16246 "stop runaway qemu processes in the case where the main program aborts "
16247 "abruptly."
16248 msgstr ""
16249
16250 #. type: textblock
16251 #: ../src/guestfs-actions.pod:6018
16252 msgid ""
16253 "This only has any effect if called before C<guestfs_launch>, and the default "
16254 "is true."
16255 msgstr ""
16256
16257 #. type: textblock
16258 #: ../src/guestfs-actions.pod:6021 ../fish/guestfish-actions.pod:4075
16259 msgid ""
16260 "About the only time when you would want to disable this is if the main "
16261 "process will fork itself into the background (\"daemonize\" itself).  In "
16262 "this case the recovery process thinks that the main program has disappeared "
16263 "and so kills qemu, which is not very helpful."
16264 msgstr ""
16265
16266 #. type: =head2
16267 #: ../src/guestfs-actions.pod:6031
16268 msgid "guestfs_set_selinux"
16269 msgstr ""
16270
16271 #. type: verbatim
16272 #: ../src/guestfs-actions.pod:6033
16273 #, no-wrap
16274 msgid ""
16275 " int\n"
16276 " guestfs_set_selinux (guestfs_h *g,\n"
16277 "                      int selinux);\n"
16278 "\n"
16279 msgstr ""
16280
16281 #. type: textblock
16282 #: ../src/guestfs-actions.pod:6037 ../fish/guestfish-actions.pod:4087
16283 msgid ""
16284 "This sets the selinux flag that is passed to the appliance at boot time.  "
16285 "The default is C<selinux=0> (disabled)."
16286 msgstr ""
16287
16288 #. type: textblock
16289 #: ../src/guestfs-actions.pod:6040 ../fish/guestfish-actions.pod:4090
16290 msgid ""
16291 "Note that if SELinux is enabled, it is always in Permissive mode "
16292 "(C<enforcing=0>)."
16293 msgstr ""
16294
16295 #. type: =head2
16296 #: ../src/guestfs-actions.pod:6050
16297 msgid "guestfs_set_trace"
16298 msgstr ""
16299
16300 #. type: verbatim
16301 #: ../src/guestfs-actions.pod:6052
16302 #, no-wrap
16303 msgid ""
16304 " int\n"
16305 " guestfs_set_trace (guestfs_h *g,\n"
16306 "                    int trace);\n"
16307 "\n"
16308 msgstr ""
16309
16310 #. type: textblock
16311 #: ../src/guestfs-actions.pod:6056 ../fish/guestfish-actions.pod:4102
16312 msgid ""
16313 "If the command trace flag is set to 1, then libguestfs calls, parameters and "
16314 "return values are traced."
16315 msgstr ""
16316
16317 #. type: textblock
16318 #: ../src/guestfs-actions.pod:6059 ../fish/guestfish-actions.pod:4105
16319 msgid ""
16320 "If you want to trace C API calls into libguestfs (and other libraries) then "
16321 "possibly a better way is to use the external ltrace(1) command."
16322 msgstr ""
16323
16324 #. type: textblock
16325 #: ../src/guestfs-actions.pod:6063 ../fish/guestfish-actions.pod:4109
16326 msgid ""
16327 "Command traces are disabled unless the environment variable "
16328 "C<LIBGUESTFS_TRACE> is defined and set to C<1>."
16329 msgstr ""
16330
16331 #. type: textblock
16332 #: ../src/guestfs-actions.pod:6066
16333 msgid ""
16334 "Trace messages are normally sent to C<stderr>, unless you register a "
16335 "callback to send them somewhere else (see C<guestfs_set_event_callback>)."
16336 msgstr ""
16337
16338 #. type: =head2
16339 #: ../src/guestfs-actions.pod:6074
16340 msgid "guestfs_set_verbose"
16341 msgstr ""
16342
16343 #. type: verbatim
16344 #: ../src/guestfs-actions.pod:6076
16345 #, no-wrap
16346 msgid ""
16347 " int\n"
16348 " guestfs_set_verbose (guestfs_h *g,\n"
16349 "                      int verbose);\n"
16350 "\n"
16351 msgstr ""
16352
16353 #. type: textblock
16354 #: ../src/guestfs-actions.pod:6080 ../fish/guestfish-actions.pod:4122
16355 msgid "If C<verbose> is true, this turns on verbose messages."
16356 msgstr ""
16357
16358 #. type: textblock
16359 #: ../src/guestfs-actions.pod:6082 ../fish/guestfish-actions.pod:4124
16360 msgid ""
16361 "Verbose messages are disabled unless the environment variable "
16362 "C<LIBGUESTFS_DEBUG> is defined and set to C<1>."
16363 msgstr ""
16364
16365 #. type: textblock
16366 #: ../src/guestfs-actions.pod:6085
16367 msgid ""
16368 "Verbose messages are normally sent to C<stderr>, unless you register a "
16369 "callback to send them somewhere else (see C<guestfs_set_event_callback>)."
16370 msgstr ""
16371
16372 #. type: =head2
16373 #: ../src/guestfs-actions.pod:6093
16374 msgid "guestfs_setcon"
16375 msgstr ""
16376
16377 #. type: verbatim
16378 #: ../src/guestfs-actions.pod:6095
16379 #, no-wrap
16380 msgid ""
16381 " int\n"
16382 " guestfs_setcon (guestfs_h *g,\n"
16383 "                 const char *context);\n"
16384 "\n"
16385 msgstr ""
16386
16387 #. type: textblock
16388 #: ../src/guestfs-actions.pod:6099 ../fish/guestfish-actions.pod:4135
16389 msgid ""
16390 "This sets the SELinux security context of the daemon to the string "
16391 "C<context>."
16392 msgstr ""
16393
16394 #. type: textblock
16395 #: ../src/guestfs-actions.pod:6102 ../fish/guestfish-actions.pod:4138
16396 msgid "See the documentation about SELINUX in L<guestfs(3)>."
16397 msgstr ""
16398
16399 #. type: =head2
16400 #: ../src/guestfs-actions.pod:6108
16401 msgid "guestfs_setxattr"
16402 msgstr ""
16403
16404 #. type: verbatim
16405 #: ../src/guestfs-actions.pod:6110
16406 #, no-wrap
16407 msgid ""
16408 " int\n"
16409 " guestfs_setxattr (guestfs_h *g,\n"
16410 "                   const char *xattr,\n"
16411 "                   const char *val,\n"
16412 "                   int vallen,\n"
16413 "                   const char *path);\n"
16414 "\n"
16415 msgstr ""
16416
16417 #. type: textblock
16418 #: ../src/guestfs-actions.pod:6117 ../fish/guestfish-actions.pod:4144
16419 msgid ""
16420 "This call sets the extended attribute named C<xattr> of the file C<path> to "
16421 "the value C<val> (of length C<vallen>).  The value is arbitrary 8 bit data."
16422 msgstr ""
16423
16424 #. type: textblock
16425 #: ../src/guestfs-actions.pod:6121
16426 msgid "See also: C<guestfs_lsetxattr>, L<attr(5)>."
16427 msgstr ""
16428
16429 #. type: =head2
16430 #: ../src/guestfs-actions.pod:6127
16431 msgid "guestfs_sfdisk"
16432 msgstr ""
16433
16434 #. type: verbatim
16435 #: ../src/guestfs-actions.pod:6129
16436 #, no-wrap
16437 msgid ""
16438 " int\n"
16439 " guestfs_sfdisk (guestfs_h *g,\n"
16440 "                 const char *device,\n"
16441 "                 int cyls,\n"
16442 "                 int heads,\n"
16443 "                 int sectors,\n"
16444 "                 char *const *lines);\n"
16445 "\n"
16446 msgstr ""
16447
16448 #. type: textblock
16449 #: ../src/guestfs-actions.pod:6137 ../fish/guestfish-actions.pod:4154
16450 msgid ""
16451 "This is a direct interface to the L<sfdisk(8)> program for creating "
16452 "partitions on block devices."
16453 msgstr ""
16454
16455 #. type: textblock
16456 #: ../src/guestfs-actions.pod:6140 ../fish/guestfish-actions.pod:4157
16457 msgid "C<device> should be a block device, for example C</dev/sda>."
16458 msgstr ""
16459
16460 #. type: textblock
16461 #: ../src/guestfs-actions.pod:6142 ../fish/guestfish-actions.pod:4159
16462 msgid ""
16463 "C<cyls>, C<heads> and C<sectors> are the number of cylinders, heads and "
16464 "sectors on the device, which are passed directly to sfdisk as the I<-C>, I<-"
16465 "H> and I<-S> parameters.  If you pass C<0> for any of these, then the "
16466 "corresponding parameter is omitted.  Usually for 'large' disks, you can just "
16467 "pass C<0> for these, but for small (floppy-sized) disks, sfdisk (or rather, "
16468 "the kernel) cannot work out the right geometry and you will need to tell it."
16469 msgstr ""
16470
16471 #. type: textblock
16472 #: ../src/guestfs-actions.pod:6150 ../fish/guestfish-actions.pod:4167
16473 msgid ""
16474 "C<lines> is a list of lines that we feed to C<sfdisk>.  For more information "
16475 "refer to the L<sfdisk(8)> manpage."
16476 msgstr ""
16477
16478 #. type: textblock
16479 #: ../src/guestfs-actions.pod:6153 ../fish/guestfish-actions.pod:4170
16480 msgid ""
16481 "To create a single partition occupying the whole disk, you would pass "
16482 "C<lines> as a single element list, when the single element being the string "
16483 "C<,> (comma)."
16484 msgstr ""
16485
16486 #. type: textblock
16487 #: ../src/guestfs-actions.pod:6157
16488 msgid ""
16489 "See also: C<guestfs_sfdisk_l>, C<guestfs_sfdisk_N>, C<guestfs_part_init>"
16490 msgstr ""
16491
16492 #. type: textblock
16493 #: ../src/guestfs-actions.pod:6165 ../src/guestfs-actions.pod:6195
16494 #: ../src/guestfs-actions.pod:6228 ../fish/guestfish-actions.pod:4180
16495 #: ../fish/guestfish-actions.pod:4203 ../fish/guestfish-actions.pod:4225
16496 msgid ""
16497 "This function is deprecated.  In new code, use the C<part_add> call instead."
16498 msgstr ""
16499
16500 #. type: =head2
16501 #: ../src/guestfs-actions.pod:6174
16502 msgid "guestfs_sfdiskM"
16503 msgstr ""
16504
16505 #. type: verbatim
16506 #: ../src/guestfs-actions.pod:6176
16507 #, no-wrap
16508 msgid ""
16509 " int\n"
16510 " guestfs_sfdiskM (guestfs_h *g,\n"
16511 "                  const char *device,\n"
16512 "                  char *const *lines);\n"
16513 "\n"
16514 msgstr ""
16515
16516 #. type: textblock
16517 #: ../src/guestfs-actions.pod:6181
16518 msgid ""
16519 "This is a simplified interface to the C<guestfs_sfdisk> command, where "
16520 "partition sizes are specified in megabytes only (rounded to the nearest "
16521 "cylinder) and you don't need to specify the cyls, heads and sectors "
16522 "parameters which were rarely if ever used anyway."
16523 msgstr ""
16524
16525 #. type: textblock
16526 #: ../src/guestfs-actions.pod:6187
16527 msgid ""
16528 "See also: C<guestfs_sfdisk>, the L<sfdisk(8)> manpage and "
16529 "C<guestfs_part_disk>"
16530 msgstr ""
16531
16532 #. type: =head2
16533 #: ../src/guestfs-actions.pod:6204
16534 msgid "guestfs_sfdisk_N"
16535 msgstr ""
16536
16537 #. type: verbatim
16538 #: ../src/guestfs-actions.pod:6206
16539 #, no-wrap
16540 msgid ""
16541 " int\n"
16542 " guestfs_sfdisk_N (guestfs_h *g,\n"
16543 "                   const char *device,\n"
16544 "                   int partnum,\n"
16545 "                   int cyls,\n"
16546 "                   int heads,\n"
16547 "                   int sectors,\n"
16548 "                   const char *line);\n"
16549 "\n"
16550 msgstr ""
16551
16552 #. type: textblock
16553 #: ../src/guestfs-actions.pod:6215 ../fish/guestfish-actions.pod:4214
16554 msgid ""
16555 "This runs L<sfdisk(8)> option to modify just the single partition C<n> "
16556 "(note: C<n> counts from 1)."
16557 msgstr ""
16558
16559 #. type: textblock
16560 #: ../src/guestfs-actions.pod:6218
16561 msgid ""
16562 "For other parameters, see C<guestfs_sfdisk>.  You should usually pass C<0> "
16563 "for the cyls/heads/sectors parameters."
16564 msgstr ""
16565
16566 #. type: textblock
16567 #: ../src/guestfs-actions.pod:6221
16568 msgid "See also: C<guestfs_part_add>"
16569 msgstr ""
16570
16571 #. type: =head2
16572 #: ../src/guestfs-actions.pod:6237
16573 msgid "guestfs_sfdisk_disk_geometry"
16574 msgstr ""
16575
16576 #. type: verbatim
16577 #: ../src/guestfs-actions.pod:6239
16578 #, no-wrap
16579 msgid ""
16580 " char *\n"
16581 " guestfs_sfdisk_disk_geometry (guestfs_h *g,\n"
16582 "                               const char *device);\n"
16583 "\n"
16584 msgstr ""
16585
16586 #. type: textblock
16587 #: ../src/guestfs-actions.pod:6243
16588 msgid ""
16589 "This displays the disk geometry of C<device> read from the partition table.  "
16590 "Especially in the case where the underlying block device has been resized, "
16591 "this can be different from the kernel's idea of the geometry (see "
16592 "C<guestfs_sfdisk_kernel_geometry>)."
16593 msgstr ""
16594
16595 #. type: textblock
16596 #: ../src/guestfs-actions.pod:6248 ../src/guestfs-actions.pod:6264
16597 #: ../fish/guestfish-actions.pod:4241 ../fish/guestfish-actions.pod:4250
16598 msgid "The result is in human-readable format, and not designed to be parsed."
16599 msgstr ""
16600
16601 #. type: =head2
16602 #: ../src/guestfs-actions.pod:6256
16603 msgid "guestfs_sfdisk_kernel_geometry"
16604 msgstr ""
16605
16606 #. type: verbatim
16607 #: ../src/guestfs-actions.pod:6258
16608 #, no-wrap
16609 msgid ""
16610 " char *\n"
16611 " guestfs_sfdisk_kernel_geometry (guestfs_h *g,\n"
16612 "                                 const char *device);\n"
16613 "\n"
16614 msgstr ""
16615
16616 #. type: textblock
16617 #: ../src/guestfs-actions.pod:6262 ../fish/guestfish-actions.pod:4248
16618 msgid "This displays the kernel's idea of the geometry of C<device>."
16619 msgstr ""
16620
16621 #. type: =head2
16622 #: ../src/guestfs-actions.pod:6272
16623 msgid "guestfs_sfdisk_l"
16624 msgstr ""
16625
16626 #. type: verbatim
16627 #: ../src/guestfs-actions.pod:6274
16628 #, no-wrap
16629 msgid ""
16630 " char *\n"
16631 " guestfs_sfdisk_l (guestfs_h *g,\n"
16632 "                   const char *device);\n"
16633 "\n"
16634 msgstr ""
16635
16636 #. type: textblock
16637 #: ../src/guestfs-actions.pod:6278 ../fish/guestfish-actions.pod:4257
16638 msgid ""
16639 "This displays the partition table on C<device>, in the human-readable output "
16640 "of the L<sfdisk(8)> command.  It is not intended to be parsed."
16641 msgstr ""
16642
16643 #. type: textblock
16644 #: ../src/guestfs-actions.pod:6282
16645 msgid "See also: C<guestfs_part_list>"
16646 msgstr ""
16647
16648 #. type: textblock
16649 #: ../src/guestfs-actions.pod:6287 ../fish/guestfish-actions.pod:4263
16650 msgid ""
16651 "This function is deprecated.  In new code, use the C<part_list> call instead."
16652 msgstr ""
16653
16654 #. type: =head2
16655 #: ../src/guestfs-actions.pod:6296
16656 msgid "guestfs_sh"
16657 msgstr ""
16658
16659 #. type: verbatim
16660 #: ../src/guestfs-actions.pod:6298
16661 #, no-wrap
16662 msgid ""
16663 " char *\n"
16664 " guestfs_sh (guestfs_h *g,\n"
16665 "             const char *command);\n"
16666 "\n"
16667 msgstr ""
16668
16669 #. type: textblock
16670 #: ../src/guestfs-actions.pod:6302 ../fish/guestfish-actions.pod:4274
16671 msgid ""
16672 "This call runs a command from the guest filesystem via the guest's C</bin/"
16673 "sh>."
16674 msgstr ""
16675
16676 #. type: textblock
16677 #: ../src/guestfs-actions.pod:6305
16678 msgid "This is like C<guestfs_command>, but passes the command to:"
16679 msgstr ""
16680
16681 #. type: verbatim
16682 #: ../src/guestfs-actions.pod:6307 ../fish/guestfish-actions.pod:4279
16683 #, no-wrap
16684 msgid ""
16685 " /bin/sh -c \"command\"\n"
16686 "\n"
16687 msgstr ""
16688
16689 #. type: textblock
16690 #: ../src/guestfs-actions.pod:6309 ../fish/guestfish-actions.pod:4281
16691 msgid ""
16692 "Depending on the guest's shell, this usually results in wildcards being "
16693 "expanded, shell expressions being interpolated and so on."
16694 msgstr ""
16695
16696 #. type: textblock
16697 #: ../src/guestfs-actions.pod:6313
16698 msgid "All the provisos about C<guestfs_command> apply to this call."
16699 msgstr ""
16700
16701 #. type: =head2
16702 #: ../src/guestfs-actions.pod:6320
16703 msgid "guestfs_sh_lines"
16704 msgstr ""
16705
16706 #. type: verbatim
16707 #: ../src/guestfs-actions.pod:6322
16708 #, no-wrap
16709 msgid ""
16710 " char **\n"
16711 " guestfs_sh_lines (guestfs_h *g,\n"
16712 "                   const char *command);\n"
16713 "\n"
16714 msgstr ""
16715
16716 #. type: textblock
16717 #: ../src/guestfs-actions.pod:6326
16718 msgid ""
16719 "This is the same as C<guestfs_sh>, but splits the result into a list of "
16720 "lines."
16721 msgstr ""
16722
16723 #. type: textblock
16724 #: ../src/guestfs-actions.pod:6329
16725 msgid "See also: C<guestfs_command_lines>"
16726 msgstr ""
16727
16728 #. type: =head2
16729 #: ../src/guestfs-actions.pod:6337
16730 msgid "guestfs_sleep"
16731 msgstr ""
16732
16733 #. type: verbatim
16734 #: ../src/guestfs-actions.pod:6339
16735 #, no-wrap
16736 msgid ""
16737 " int\n"
16738 " guestfs_sleep (guestfs_h *g,\n"
16739 "                int secs);\n"
16740 "\n"
16741 msgstr ""
16742
16743 #. type: textblock
16744 #: ../src/guestfs-actions.pod:6343 ../fish/guestfish-actions.pod:4300
16745 msgid "Sleep for C<secs> seconds."
16746 msgstr ""
16747
16748 #. type: textblock
16749 #: ../src/guestfs-actions.pod:6347
16750 msgid "(Added in 1.0.41)"
16751 msgstr ""
16752
16753 #. type: =head2
16754 #: ../src/guestfs-actions.pod:6349 ../src/guestfs-structs.pod:109
16755 msgid "guestfs_stat"
16756 msgstr ""
16757
16758 #. type: verbatim
16759 #: ../src/guestfs-actions.pod:6351
16760 #, no-wrap
16761 msgid ""
16762 " struct guestfs_stat *\n"
16763 " guestfs_stat (guestfs_h *g,\n"
16764 "               const char *path);\n"
16765 "\n"
16766 msgstr ""
16767
16768 #. type: textblock
16769 #: ../src/guestfs-actions.pod:6357 ../fish/guestfish-actions.pod:4308
16770 msgid "This is the same as the C<stat(2)> system call."
16771 msgstr ""
16772
16773 #. type: =head2
16774 #: ../src/guestfs-actions.pod:6365 ../src/guestfs-structs.pod:135
16775 msgid "guestfs_statvfs"
16776 msgstr ""
16777
16778 #. type: verbatim
16779 #: ../src/guestfs-actions.pod:6367
16780 #, no-wrap
16781 msgid ""
16782 " struct guestfs_statvfs *\n"
16783 " guestfs_statvfs (guestfs_h *g,\n"
16784 "                  const char *path);\n"
16785 "\n"
16786 msgstr ""
16787
16788 #. type: textblock
16789 #: ../src/guestfs-actions.pod:6371 ../fish/guestfish-actions.pod:4314
16790 msgid ""
16791 "Returns file system statistics for any mounted file system.  C<path> should "
16792 "be a file or directory in the mounted file system (typically it is the mount "
16793 "point itself, but it doesn't need to be)."
16794 msgstr ""
16795
16796 #. type: textblock
16797 #: ../src/guestfs-actions.pod:6375 ../fish/guestfish-actions.pod:4318
16798 msgid "This is the same as the C<statvfs(2)> system call."
16799 msgstr ""
16800
16801 #. type: textblock
16802 #: ../src/guestfs-actions.pod:6377
16803 msgid ""
16804 "This function returns a C<struct guestfs_statvfs *>, or NULL if there was an "
16805 "error.  I<The caller must call C<guestfs_free_statvfs> after use>."
16806 msgstr ""
16807
16808 #. type: =head2
16809 #: ../src/guestfs-actions.pod:6383
16810 msgid "guestfs_strings"
16811 msgstr ""
16812
16813 #. type: verbatim
16814 #: ../src/guestfs-actions.pod:6385
16815 #, no-wrap
16816 msgid ""
16817 " char **\n"
16818 " guestfs_strings (guestfs_h *g,\n"
16819 "                  const char *path);\n"
16820 "\n"
16821 msgstr ""
16822
16823 #. type: textblock
16824 #: ../src/guestfs-actions.pod:6389 ../fish/guestfish-actions.pod:4324
16825 msgid ""
16826 "This runs the L<strings(1)> command on a file and returns the list of "
16827 "printable strings found."
16828 msgstr ""
16829
16830 #. type: =head2
16831 #: ../src/guestfs-actions.pod:6401
16832 msgid "guestfs_strings_e"
16833 msgstr ""
16834
16835 #. type: verbatim
16836 #: ../src/guestfs-actions.pod:6403
16837 #, no-wrap
16838 msgid ""
16839 " char **\n"
16840 " guestfs_strings_e (guestfs_h *g,\n"
16841 "                    const char *encoding,\n"
16842 "                    const char *path);\n"
16843 "\n"
16844 msgstr ""
16845
16846 #. type: textblock
16847 #: ../src/guestfs-actions.pod:6408
16848 msgid ""
16849 "This is like the C<guestfs_strings> command, but allows you to specify the "
16850 "encoding of strings that are looked for in the source file C<path>."
16851 msgstr ""
16852
16853 #. type: textblock
16854 #: ../src/guestfs-actions.pod:6412 ../fish/guestfish-actions.pod:4338
16855 msgid "Allowed encodings are:"
16856 msgstr ""
16857
16858 #. type: =item
16859 #: ../src/guestfs-actions.pod:6416 ../fish/guestfish-actions.pod:4342
16860 msgid "s"
16861 msgstr ""
16862
16863 #. type: textblock
16864 #: ../src/guestfs-actions.pod:6418
16865 msgid ""
16866 "Single 7-bit-byte characters like ASCII and the ASCII-compatible parts of "
16867 "ISO-8859-X (this is what C<guestfs_strings> uses)."
16868 msgstr ""
16869
16870 #. type: =item
16871 #: ../src/guestfs-actions.pod:6421 ../fish/guestfish-actions.pod:4347
16872 msgid "S"
16873 msgstr ""
16874
16875 #. type: textblock
16876 #: ../src/guestfs-actions.pod:6423 ../fish/guestfish-actions.pod:4349
16877 msgid "Single 8-bit-byte characters."
16878 msgstr ""
16879
16880 #. type: =item
16881 #: ../src/guestfs-actions.pod:6425 ../fish/guestfish-actions.pod:4351
16882 msgid "b"
16883 msgstr ""
16884
16885 #. type: textblock
16886 #: ../src/guestfs-actions.pod:6427 ../fish/guestfish-actions.pod:4353
16887 msgid "16-bit big endian strings such as those encoded in UTF-16BE or UCS-2BE."
16888 msgstr ""
16889
16890 #. type: =item
16891 #: ../src/guestfs-actions.pod:6430 ../fish/guestfish-actions.pod:4356
16892 msgid "l (lower case letter L)"
16893 msgstr ""
16894
16895 #. type: textblock
16896 #: ../src/guestfs-actions.pod:6432 ../fish/guestfish-actions.pod:4358
16897 msgid ""
16898 "16-bit little endian such as UTF-16LE and UCS-2LE.  This is useful for "
16899 "examining binaries in Windows guests."
16900 msgstr ""
16901
16902 #. type: =item
16903 #: ../src/guestfs-actions.pod:6435 ../fish/guestfish-actions.pod:4361
16904 msgid "B"
16905 msgstr ""
16906
16907 #. type: textblock
16908 #: ../src/guestfs-actions.pod:6437 ../fish/guestfish-actions.pod:4363
16909 msgid "32-bit big endian such as UCS-4BE."
16910 msgstr ""
16911
16912 #. type: =item
16913 #: ../src/guestfs-actions.pod:6439 ../fish/guestfish-actions.pod:4365
16914 msgid "L"
16915 msgstr ""
16916
16917 #. type: textblock
16918 #: ../src/guestfs-actions.pod:6441 ../fish/guestfish-actions.pod:4367
16919 msgid "32-bit little endian such as UCS-4LE."
16920 msgstr ""
16921
16922 #. type: textblock
16923 #: ../src/guestfs-actions.pod:6445 ../fish/guestfish-actions.pod:4371
16924 msgid "The returned strings are transcoded to UTF-8."
16925 msgstr ""
16926
16927 #. type: =head2
16928 #: ../src/guestfs-actions.pod:6456
16929 msgid "guestfs_swapoff_device"
16930 msgstr ""
16931
16932 #. type: verbatim
16933 #: ../src/guestfs-actions.pod:6458
16934 #, no-wrap
16935 msgid ""
16936 " int\n"
16937 " guestfs_swapoff_device (guestfs_h *g,\n"
16938 "                         const char *device);\n"
16939 "\n"
16940 msgstr ""
16941
16942 #. type: textblock
16943 #: ../src/guestfs-actions.pod:6462
16944 msgid ""
16945 "This command disables the libguestfs appliance swap device or partition "
16946 "named C<device>.  See C<guestfs_swapon_device>."
16947 msgstr ""
16948
16949 #. type: =head2
16950 #: ../src/guestfs-actions.pod:6470
16951 msgid "guestfs_swapoff_file"
16952 msgstr ""
16953
16954 #. type: verbatim
16955 #: ../src/guestfs-actions.pod:6472
16956 #, no-wrap
16957 msgid ""
16958 " int\n"
16959 " guestfs_swapoff_file (guestfs_h *g,\n"
16960 "                       const char *file);\n"
16961 "\n"
16962 msgstr ""
16963
16964 #. type: textblock
16965 #: ../src/guestfs-actions.pod:6476 ../fish/guestfish-actions.pod:4388
16966 msgid "This command disables the libguestfs appliance swap on file."
16967 msgstr ""
16968
16969 #. type: =head2
16970 #: ../src/guestfs-actions.pod:6482
16971 msgid "guestfs_swapoff_label"
16972 msgstr ""
16973
16974 #. type: verbatim
16975 #: ../src/guestfs-actions.pod:6484
16976 #, no-wrap
16977 msgid ""
16978 " int\n"
16979 " guestfs_swapoff_label (guestfs_h *g,\n"
16980 "                        const char *label);\n"
16981 "\n"
16982 msgstr ""
16983
16984 #. type: textblock
16985 #: ../src/guestfs-actions.pod:6488 ../fish/guestfish-actions.pod:4394
16986 msgid ""
16987 "This command disables the libguestfs appliance swap on labeled swap "
16988 "partition."
16989 msgstr ""
16990
16991 #. type: =head2
16992 #: ../src/guestfs-actions.pod:6495
16993 msgid "guestfs_swapoff_uuid"
16994 msgstr ""
16995
16996 #. type: verbatim
16997 #: ../src/guestfs-actions.pod:6497
16998 #, no-wrap
16999 msgid ""
17000 " int\n"
17001 " guestfs_swapoff_uuid (guestfs_h *g,\n"
17002 "                       const char *uuid);\n"
17003 "\n"
17004 msgstr ""
17005
17006 #. type: textblock
17007 #: ../src/guestfs-actions.pod:6501 ../fish/guestfish-actions.pod:4401
17008 msgid ""
17009 "This command disables the libguestfs appliance swap partition with the given "
17010 "UUID."
17011 msgstr ""
17012
17013 #. type: =head2
17014 #: ../src/guestfs-actions.pod:6508
17015 msgid "guestfs_swapon_device"
17016 msgstr ""
17017
17018 #. type: verbatim
17019 #: ../src/guestfs-actions.pod:6510
17020 #, no-wrap
17021 msgid ""
17022 " int\n"
17023 " guestfs_swapon_device (guestfs_h *g,\n"
17024 "                        const char *device);\n"
17025 "\n"
17026 msgstr ""
17027
17028 #. type: textblock
17029 #: ../src/guestfs-actions.pod:6514
17030 msgid ""
17031 "This command enables the libguestfs appliance to use the swap device or "
17032 "partition named C<device>.  The increased memory is made available for all "
17033 "commands, for example those run using C<guestfs_command> or C<guestfs_sh>."
17034 msgstr ""
17035
17036 #. type: textblock
17037 #: ../src/guestfs-actions.pod:6519 ../fish/guestfish-actions.pod:4413
17038 msgid ""
17039 "Note that you should not swap to existing guest swap partitions unless you "
17040 "know what you are doing.  They may contain hibernation information, or other "
17041 "information that the guest doesn't want you to trash.  You also risk leaking "
17042 "information about the host to the guest this way.  Instead, attach a new "
17043 "host device to the guest and swap on that."
17044 msgstr ""
17045
17046 #. type: =head2
17047 #: ../src/guestfs-actions.pod:6530
17048 msgid "guestfs_swapon_file"
17049 msgstr ""
17050
17051 #. type: verbatim
17052 #: ../src/guestfs-actions.pod:6532
17053 #, no-wrap
17054 msgid ""
17055 " int\n"
17056 " guestfs_swapon_file (guestfs_h *g,\n"
17057 "                      const char *file);\n"
17058 "\n"
17059 msgstr ""
17060
17061 #. type: textblock
17062 #: ../src/guestfs-actions.pod:6536
17063 msgid ""
17064 "This command enables swap to a file.  See C<guestfs_swapon_device> for other "
17065 "notes."
17066 msgstr ""
17067
17068 #. type: =head2
17069 #: ../src/guestfs-actions.pod:6543
17070 msgid "guestfs_swapon_label"
17071 msgstr ""
17072
17073 #. type: verbatim
17074 #: ../src/guestfs-actions.pod:6545
17075 #, no-wrap
17076 msgid ""
17077 " int\n"
17078 " guestfs_swapon_label (guestfs_h *g,\n"
17079 "                       const char *label);\n"
17080 "\n"
17081 msgstr ""
17082
17083 #. type: textblock
17084 #: ../src/guestfs-actions.pod:6549
17085 msgid ""
17086 "This command enables swap to a labeled swap partition.  See "
17087 "C<guestfs_swapon_device> for other notes."
17088 msgstr ""
17089
17090 #. type: =head2
17091 #: ../src/guestfs-actions.pod:6556
17092 msgid "guestfs_swapon_uuid"
17093 msgstr ""
17094
17095 #. type: verbatim
17096 #: ../src/guestfs-actions.pod:6558
17097 #, no-wrap
17098 msgid ""
17099 " int\n"
17100 " guestfs_swapon_uuid (guestfs_h *g,\n"
17101 "                      const char *uuid);\n"
17102 "\n"
17103 msgstr ""
17104
17105 #. type: textblock
17106 #: ../src/guestfs-actions.pod:6562
17107 msgid ""
17108 "This command enables swap to a swap partition with the given UUID.  See "
17109 "C<guestfs_swapon_device> for other notes."
17110 msgstr ""
17111
17112 #. type: =head2
17113 #: ../src/guestfs-actions.pod:6569
17114 msgid "guestfs_sync"
17115 msgstr ""
17116
17117 #. type: verbatim
17118 #: ../src/guestfs-actions.pod:6571
17119 #, no-wrap
17120 msgid ""
17121 " int\n"
17122 " guestfs_sync (guestfs_h *g);\n"
17123 "\n"
17124 msgstr ""
17125
17126 #. type: textblock
17127 #: ../src/guestfs-actions.pod:6574 ../fish/guestfish-actions.pod:4445
17128 msgid ""
17129 "This syncs the disk, so that any writes are flushed through to the "
17130 "underlying disk image."
17131 msgstr ""
17132
17133 #. type: textblock
17134 #: ../src/guestfs-actions.pod:6577 ../fish/guestfish-actions.pod:4448
17135 msgid ""
17136 "You should always call this if you have modified a disk image, before "
17137 "closing the handle."
17138 msgstr ""
17139
17140 #. type: =head2
17141 #: ../src/guestfs-actions.pod:6584
17142 msgid "guestfs_tail"
17143 msgstr ""
17144
17145 #. type: verbatim
17146 #: ../src/guestfs-actions.pod:6586
17147 #, no-wrap
17148 msgid ""
17149 " char **\n"
17150 " guestfs_tail (guestfs_h *g,\n"
17151 "               const char *path);\n"
17152 "\n"
17153 msgstr ""
17154
17155 #. type: textblock
17156 #: ../src/guestfs-actions.pod:6590 ../fish/guestfish-actions.pod:4455
17157 msgid ""
17158 "This command returns up to the last 10 lines of a file as a list of strings."
17159 msgstr ""
17160
17161 #. type: =head2
17162 #: ../src/guestfs-actions.pod:6602
17163 msgid "guestfs_tail_n"
17164 msgstr ""
17165
17166 #. type: verbatim
17167 #: ../src/guestfs-actions.pod:6604
17168 #, no-wrap
17169 msgid ""
17170 " char **\n"
17171 " guestfs_tail_n (guestfs_h *g,\n"
17172 "                 int nrlines,\n"
17173 "                 const char *path);\n"
17174 "\n"
17175 msgstr ""
17176
17177 #. type: textblock
17178 #: ../src/guestfs-actions.pod:6609 ../fish/guestfish-actions.pod:4465
17179 msgid ""
17180 "If the parameter C<nrlines> is a positive number, this returns the last "
17181 "C<nrlines> lines of the file C<path>."
17182 msgstr ""
17183
17184 #. type: textblock
17185 #: ../src/guestfs-actions.pod:6612 ../fish/guestfish-actions.pod:4468
17186 msgid ""
17187 "If the parameter C<nrlines> is a negative number, this returns lines from "
17188 "the file C<path>, starting with the C<-nrlines>th line."
17189 msgstr ""
17190
17191 #. type: =head2
17192 #: ../src/guestfs-actions.pod:6626
17193 msgid "guestfs_tar_in"
17194 msgstr ""
17195
17196 #. type: verbatim
17197 #: ../src/guestfs-actions.pod:6628
17198 #, no-wrap
17199 msgid ""
17200 " int\n"
17201 " guestfs_tar_in (guestfs_h *g,\n"
17202 "                 const char *tarfile,\n"
17203 "                 const char *directory);\n"
17204 "\n"
17205 msgstr ""
17206
17207 #. type: textblock
17208 #: ../src/guestfs-actions.pod:6633 ../fish/guestfish-actions.pod:4480
17209 msgid ""
17210 "This command uploads and unpacks local file C<tarfile> (an I<uncompressed> "
17211 "tar file) into C<directory>."
17212 msgstr ""
17213
17214 #. type: textblock
17215 #: ../src/guestfs-actions.pod:6636
17216 msgid ""
17217 "To upload a compressed tarball, use C<guestfs_tgz_in> or C<guestfs_txz_in>."
17218 msgstr ""
17219
17220 #. type: textblock
17221 #: ../src/guestfs-actions.pod:6641 ../src/guestfs-actions.pod:6658
17222 #: ../src/guestfs-actions.pod:6674 ../src/guestfs-actions.pod:6690
17223 msgid "(Added in 1.0.3)"
17224 msgstr ""
17225
17226 #. type: =head2
17227 #: ../src/guestfs-actions.pod:6643
17228 msgid "guestfs_tar_out"
17229 msgstr ""
17230
17231 #. type: verbatim
17232 #: ../src/guestfs-actions.pod:6645
17233 #, no-wrap
17234 msgid ""
17235 " int\n"
17236 " guestfs_tar_out (guestfs_h *g,\n"
17237 "                  const char *directory,\n"
17238 "                  const char *tarfile);\n"
17239 "\n"
17240 msgstr ""
17241
17242 #. type: textblock
17243 #: ../src/guestfs-actions.pod:6650 ../fish/guestfish-actions.pod:4492
17244 msgid ""
17245 "This command packs the contents of C<directory> and downloads it to local "
17246 "file C<tarfile>."
17247 msgstr ""
17248
17249 #. type: textblock
17250 #: ../src/guestfs-actions.pod:6653
17251 msgid ""
17252 "To download a compressed tarball, use C<guestfs_tgz_out> or "
17253 "C<guestfs_txz_out>."
17254 msgstr ""
17255
17256 #. type: =head2
17257 #: ../src/guestfs-actions.pod:6660
17258 msgid "guestfs_tgz_in"
17259 msgstr ""
17260
17261 #. type: verbatim
17262 #: ../src/guestfs-actions.pod:6662
17263 #, no-wrap
17264 msgid ""
17265 " int\n"
17266 " guestfs_tgz_in (guestfs_h *g,\n"
17267 "                 const char *tarball,\n"
17268 "                 const char *directory);\n"
17269 "\n"
17270 msgstr ""
17271
17272 #. type: textblock
17273 #: ../src/guestfs-actions.pod:6667 ../fish/guestfish-actions.pod:4504
17274 msgid ""
17275 "This command uploads and unpacks local file C<tarball> (a I<gzip compressed> "
17276 "tar file) into C<directory>."
17277 msgstr ""
17278
17279 #. type: textblock
17280 #: ../src/guestfs-actions.pod:6670
17281 msgid "To upload an uncompressed tarball, use C<guestfs_tar_in>."
17282 msgstr ""
17283
17284 #. type: =head2
17285 #: ../src/guestfs-actions.pod:6676
17286 msgid "guestfs_tgz_out"
17287 msgstr ""
17288
17289 #. type: verbatim
17290 #: ../src/guestfs-actions.pod:6678
17291 #, no-wrap
17292 msgid ""
17293 " int\n"
17294 " guestfs_tgz_out (guestfs_h *g,\n"
17295 "                  const char *directory,\n"
17296 "                  const char *tarball);\n"
17297 "\n"
17298 msgstr ""
17299
17300 #. type: textblock
17301 #: ../src/guestfs-actions.pod:6683 ../fish/guestfish-actions.pod:4515
17302 msgid ""
17303 "This command packs the contents of C<directory> and downloads it to local "
17304 "file C<tarball>."
17305 msgstr ""
17306
17307 #. type: textblock
17308 #: ../src/guestfs-actions.pod:6686
17309 msgid "To download an uncompressed tarball, use C<guestfs_tar_out>."
17310 msgstr ""
17311
17312 #. type: =head2
17313 #: ../src/guestfs-actions.pod:6692
17314 msgid "guestfs_touch"
17315 msgstr ""
17316
17317 #. type: verbatim
17318 #: ../src/guestfs-actions.pod:6694
17319 #, no-wrap
17320 msgid ""
17321 " int\n"
17322 " guestfs_touch (guestfs_h *g,\n"
17323 "                const char *path);\n"
17324 "\n"
17325 msgstr ""
17326
17327 #. type: textblock
17328 #: ../src/guestfs-actions.pod:6698 ../fish/guestfish-actions.pod:4526
17329 msgid ""
17330 "Touch acts like the L<touch(1)> command.  It can be used to update the "
17331 "timestamps on a file, or, if the file does not exist, to create a new zero-"
17332 "length file."
17333 msgstr ""
17334
17335 #. type: textblock
17336 #: ../src/guestfs-actions.pod:6702 ../fish/guestfish-actions.pod:4530
17337 msgid ""
17338 "This command only works on regular files, and will fail on other file types "
17339 "such as directories, symbolic links, block special etc."
17340 msgstr ""
17341
17342 #. type: =head2
17343 #: ../src/guestfs-actions.pod:6709
17344 msgid "guestfs_truncate"
17345 msgstr ""
17346
17347 #. type: verbatim
17348 #: ../src/guestfs-actions.pod:6711
17349 #, no-wrap
17350 msgid ""
17351 " int\n"
17352 " guestfs_truncate (guestfs_h *g,\n"
17353 "                   const char *path);\n"
17354 "\n"
17355 msgstr ""
17356
17357 #. type: textblock
17358 #: ../src/guestfs-actions.pod:6715 ../fish/guestfish-actions.pod:4537
17359 msgid ""
17360 "This command truncates C<path> to a zero-length file.  The file must exist "
17361 "already."
17362 msgstr ""
17363
17364 #. type: =head2
17365 #: ../src/guestfs-actions.pod:6722
17366 msgid "guestfs_truncate_size"
17367 msgstr ""
17368
17369 #. type: verbatim
17370 #: ../src/guestfs-actions.pod:6724
17371 #, no-wrap
17372 msgid ""
17373 " int\n"
17374 " guestfs_truncate_size (guestfs_h *g,\n"
17375 "                        const char *path,\n"
17376 "                        int64_t size);\n"
17377 "\n"
17378 msgstr ""
17379
17380 #. type: textblock
17381 #: ../src/guestfs-actions.pod:6729 ../fish/guestfish-actions.pod:4544
17382 msgid ""
17383 "This command truncates C<path> to size C<size> bytes.  The file must exist "
17384 "already."
17385 msgstr ""
17386
17387 #. type: textblock
17388 #: ../src/guestfs-actions.pod:6732
17389 msgid ""
17390 "If the current file size is less than C<size> then the file is extended to "
17391 "the required size with zero bytes.  This creates a sparse file (ie. disk "
17392 "blocks are not allocated for the file until you write to it).  To create a "
17393 "non-sparse file of zeroes, use C<guestfs_fallocate64> instead."
17394 msgstr ""
17395
17396 #. type: =head2
17397 #: ../src/guestfs-actions.pod:6742
17398 msgid "guestfs_tune2fs_l"
17399 msgstr ""
17400
17401 #. type: verbatim
17402 #: ../src/guestfs-actions.pod:6744
17403 #, no-wrap
17404 msgid ""
17405 " char **\n"
17406 " guestfs_tune2fs_l (guestfs_h *g,\n"
17407 "                    const char *device);\n"
17408 "\n"
17409 msgstr ""
17410
17411 #. type: textblock
17412 #: ../src/guestfs-actions.pod:6748 ../fish/guestfish-actions.pod:4557
17413 msgid ""
17414 "This returns the contents of the ext2, ext3 or ext4 filesystem superblock on "
17415 "C<device>."
17416 msgstr ""
17417
17418 #. type: textblock
17419 #: ../src/guestfs-actions.pod:6751 ../fish/guestfish-actions.pod:4560
17420 msgid ""
17421 "It is the same as running C<tune2fs -l device>.  See L<tune2fs(8)> manpage "
17422 "for more details.  The list of fields returned isn't clearly defined, and "
17423 "depends on both the version of C<tune2fs> that libguestfs was built against, "
17424 "and the filesystem itself."
17425 msgstr ""
17426
17427 #. type: =head2
17428 #: ../src/guestfs-actions.pod:6764
17429 msgid "guestfs_txz_in"
17430 msgstr ""
17431
17432 #. type: verbatim
17433 #: ../src/guestfs-actions.pod:6766
17434 #, no-wrap
17435 msgid ""
17436 " int\n"
17437 " guestfs_txz_in (guestfs_h *g,\n"
17438 "                 const char *tarball,\n"
17439 "                 const char *directory);\n"
17440 "\n"
17441 msgstr ""
17442
17443 #. type: textblock
17444 #: ../src/guestfs-actions.pod:6771 ../fish/guestfish-actions.pod:4569
17445 msgid ""
17446 "This command uploads and unpacks local file C<tarball> (an I<xz compressed> "
17447 "tar file) into C<directory>."
17448 msgstr ""
17449
17450 #. type: =head2
17451 #: ../src/guestfs-actions.pod:6778
17452 msgid "guestfs_txz_out"
17453 msgstr ""
17454
17455 #. type: verbatim
17456 #: ../src/guestfs-actions.pod:6780
17457 #, no-wrap
17458 msgid ""
17459 " int\n"
17460 " guestfs_txz_out (guestfs_h *g,\n"
17461 "                  const char *directory,\n"
17462 "                  const char *tarball);\n"
17463 "\n"
17464 msgstr ""
17465
17466 #. type: textblock
17467 #: ../src/guestfs-actions.pod:6785 ../fish/guestfish-actions.pod:4578
17468 msgid ""
17469 "This command packs the contents of C<directory> and downloads it to local "
17470 "file C<tarball> (as an xz compressed tar archive)."
17471 msgstr ""
17472
17473 #. type: =head2
17474 #: ../src/guestfs-actions.pod:6792
17475 msgid "guestfs_umask"
17476 msgstr ""
17477
17478 #. type: verbatim
17479 #: ../src/guestfs-actions.pod:6794
17480 #, no-wrap
17481 msgid ""
17482 " int\n"
17483 " guestfs_umask (guestfs_h *g,\n"
17484 "                int mask);\n"
17485 "\n"
17486 msgstr ""
17487
17488 #. type: textblock
17489 #: ../src/guestfs-actions.pod:6798 ../fish/guestfish-actions.pod:4587
17490 msgid ""
17491 "This function sets the mask used for creating new files and device nodes to "
17492 "C<mask & 0777>."
17493 msgstr ""
17494
17495 #. type: textblock
17496 #: ../src/guestfs-actions.pod:6801 ../fish/guestfish-actions.pod:4590
17497 msgid ""
17498 "Typical umask values would be C<022> which creates new files with "
17499 "permissions like \"-rw-r--r--\" or \"-rwxr-xr-x\", and C<002> which creates "
17500 "new files with permissions like \"-rw-rw-r--\" or \"-rwxrwxr-x\"."
17501 msgstr ""
17502
17503 #. type: textblock
17504 #: ../src/guestfs-actions.pod:6806 ../fish/guestfish-actions.pod:4595
17505 msgid ""
17506 "The default umask is C<022>.  This is important because it means that "
17507 "directories and device nodes will be created with C<0644> or C<0755> mode "
17508 "even if you specify C<0777>."
17509 msgstr ""
17510
17511 #. type: textblock
17512 #: ../src/guestfs-actions.pod:6810
17513 msgid ""
17514 "See also C<guestfs_get_umask>, L<umask(2)>, C<guestfs_mknod>, "
17515 "C<guestfs_mkdir>."
17516 msgstr ""
17517
17518 #. type: textblock
17519 #: ../src/guestfs-actions.pod:6813 ../fish/guestfish-actions.pod:4602
17520 msgid "This call returns the previous umask."
17521 msgstr ""
17522
17523 #. type: =head2
17524 #: ../src/guestfs-actions.pod:6819
17525 msgid "guestfs_umount"
17526 msgstr ""
17527
17528 #. type: verbatim
17529 #: ../src/guestfs-actions.pod:6821
17530 #, no-wrap
17531 msgid ""
17532 " int\n"
17533 " guestfs_umount (guestfs_h *g,\n"
17534 "                 const char *pathordevice);\n"
17535 "\n"
17536 msgstr ""
17537
17538 #. type: textblock
17539 #: ../src/guestfs-actions.pod:6825 ../fish/guestfish-actions.pod:4610
17540 msgid ""
17541 "This unmounts the given filesystem.  The filesystem may be specified either "
17542 "by its mountpoint (path) or the device which contains the filesystem."
17543 msgstr ""
17544
17545 #. type: =head2
17546 #: ../src/guestfs-actions.pod:6833
17547 msgid "guestfs_umount_all"
17548 msgstr ""
17549
17550 #. type: verbatim
17551 #: ../src/guestfs-actions.pod:6835
17552 #, no-wrap
17553 msgid ""
17554 " int\n"
17555 " guestfs_umount_all (guestfs_h *g);\n"
17556 "\n"
17557 msgstr ""
17558
17559 #. type: textblock
17560 #: ../src/guestfs-actions.pod:6838 ../fish/guestfish-actions.pod:4620
17561 msgid "This unmounts all mounted filesystems."
17562 msgstr ""
17563
17564 #. type: textblock
17565 #: ../src/guestfs-actions.pod:6840 ../fish/guestfish-actions.pod:4622
17566 msgid "Some internal mounts are not unmounted by this call."
17567 msgstr ""
17568
17569 #. type: =head2
17570 #: ../src/guestfs-actions.pod:6846
17571 msgid "guestfs_upload"
17572 msgstr ""
17573
17574 #. type: verbatim
17575 #: ../src/guestfs-actions.pod:6848
17576 #, no-wrap
17577 msgid ""
17578 " int\n"
17579 " guestfs_upload (guestfs_h *g,\n"
17580 "                 const char *filename,\n"
17581 "                 const char *remotefilename);\n"
17582 "\n"
17583 msgstr ""
17584
17585 #. type: textblock
17586 #: ../src/guestfs-actions.pod:6853 ../src/guestfs-actions.pod:6877
17587 #: ../fish/guestfish-actions.pod:4628 ../fish/guestfish-actions.pod:4641
17588 msgid "Upload local file C<filename> to C<remotefilename> on the filesystem."
17589 msgstr ""
17590
17591 #. type: textblock
17592 #: ../src/guestfs-actions.pod:6858
17593 msgid "See also C<guestfs_download>."
17594 msgstr ""
17595
17596 #. type: =head2
17597 #: ../src/guestfs-actions.pod:6869
17598 msgid "guestfs_upload_offset"
17599 msgstr ""
17600
17601 #. type: verbatim
17602 #: ../src/guestfs-actions.pod:6871
17603 #, no-wrap
17604 msgid ""
17605 " int\n"
17606 " guestfs_upload_offset (guestfs_h *g,\n"
17607 "                        const char *filename,\n"
17608 "                        const char *remotefilename,\n"
17609 "                        int64_t offset);\n"
17610 "\n"
17611 msgstr ""
17612
17613 #. type: textblock
17614 #: ../src/guestfs-actions.pod:6880 ../fish/guestfish-actions.pod:4644
17615 msgid ""
17616 "C<remotefilename> is overwritten starting at the byte C<offset> specified.  "
17617 "The intention is to overwrite parts of existing files or devices, although "
17618 "if a non-existant file is specified then it is created with a \"hole\" "
17619 "before C<offset>.  The size of the data written is implicit in the size of "
17620 "the source C<filename>."
17621 msgstr ""
17622
17623 #. type: textblock
17624 #: ../src/guestfs-actions.pod:6887
17625 msgid ""
17626 "Note that there is no limit on the amount of data that can be uploaded with "
17627 "this call, unlike with C<guestfs_pwrite>, and this call always writes the "
17628 "full amount unless an error occurs."
17629 msgstr ""
17630
17631 #. type: textblock
17632 #: ../src/guestfs-actions.pod:6892
17633 msgid "See also C<guestfs_upload>, C<guestfs_pwrite>."
17634 msgstr ""
17635
17636 #. type: =head2
17637 #: ../src/guestfs-actions.pod:6903
17638 msgid "guestfs_utimens"
17639 msgstr ""
17640
17641 #. type: verbatim
17642 #: ../src/guestfs-actions.pod:6905
17643 #, no-wrap
17644 msgid ""
17645 " int\n"
17646 " guestfs_utimens (guestfs_h *g,\n"
17647 "                  const char *path,\n"
17648 "                  int64_t atsecs,\n"
17649 "                  int64_t atnsecs,\n"
17650 "                  int64_t mtsecs,\n"
17651 "                  int64_t mtnsecs);\n"
17652 "\n"
17653 msgstr ""
17654
17655 #. type: textblock
17656 #: ../src/guestfs-actions.pod:6913 ../fish/guestfish-actions.pod:4664
17657 msgid "This command sets the timestamps of a file with nanosecond precision."
17658 msgstr ""
17659
17660 #. type: textblock
17661 #: ../src/guestfs-actions.pod:6916 ../fish/guestfish-actions.pod:4667
17662 msgid ""
17663 "C<atsecs, atnsecs> are the last access time (atime) in secs and nanoseconds "
17664 "from the epoch."
17665 msgstr ""
17666
17667 #. type: textblock
17668 #: ../src/guestfs-actions.pod:6919 ../fish/guestfish-actions.pod:4670
17669 msgid ""
17670 "C<mtsecs, mtnsecs> are the last modification time (mtime) in secs and "
17671 "nanoseconds from the epoch."
17672 msgstr ""
17673
17674 #. type: textblock
17675 #: ../src/guestfs-actions.pod:6922 ../fish/guestfish-actions.pod:4673
17676 msgid ""
17677 "If the C<*nsecs> field contains the special value C<-1> then the "
17678 "corresponding timestamp is set to the current time.  (The C<*secs> field is "
17679 "ignored in this case)."
17680 msgstr ""
17681
17682 #. type: textblock
17683 #: ../src/guestfs-actions.pod:6926 ../fish/guestfish-actions.pod:4677
17684 msgid ""
17685 "If the C<*nsecs> field contains the special value C<-2> then the "
17686 "corresponding timestamp is left unchanged.  (The C<*secs> field is ignored "
17687 "in this case)."
17688 msgstr ""
17689
17690 #. type: =head2
17691 #: ../src/guestfs-actions.pod:6934 ../src/guestfs-structs.pod:175
17692 msgid "guestfs_version"
17693 msgstr ""
17694
17695 #. type: verbatim
17696 #: ../src/guestfs-actions.pod:6936
17697 #, no-wrap
17698 msgid ""
17699 " struct guestfs_version *\n"
17700 " guestfs_version (guestfs_h *g);\n"
17701 "\n"
17702 msgstr ""
17703
17704 #. type: textblock
17705 #: ../src/guestfs-actions.pod:6939 ../fish/guestfish-actions.pod:4685
17706 msgid ""
17707 "Return the libguestfs version number that the program is linked against."
17708 msgstr ""
17709
17710 #. type: textblock
17711 #: ../src/guestfs-actions.pod:6942 ../fish/guestfish-actions.pod:4688
17712 msgid ""
17713 "Note that because of dynamic linking this is not necessarily the version of "
17714 "libguestfs that you compiled against.  You can compile the program, and then "
17715 "at runtime dynamically link against a completely different C<libguestfs.so> "
17716 "library."
17717 msgstr ""
17718
17719 #. type: textblock
17720 #: ../src/guestfs-actions.pod:6947 ../fish/guestfish-actions.pod:4693
17721 msgid ""
17722 "This call was added in version C<1.0.58>.  In previous versions of "
17723 "libguestfs there was no way to get the version number.  From C code you can "
17724 "use dynamic linker functions to find out if this symbol exists (if it "
17725 "doesn't, then it's an earlier version)."
17726 msgstr ""
17727
17728 #. type: textblock
17729 #: ../src/guestfs-actions.pod:6953 ../fish/guestfish-actions.pod:4699
17730 msgid ""
17731 "The call returns a structure with four elements.  The first three (C<major>, "
17732 "C<minor> and C<release>) are numbers and correspond to the usual version "
17733 "triplet.  The fourth element (C<extra>) is a string and is normally empty, "
17734 "but may be used for distro-specific information."
17735 msgstr ""
17736
17737 #. type: textblock
17738 #: ../src/guestfs-actions.pod:6959 ../fish/guestfish-actions.pod:4705
17739 msgid ""
17740 "To construct the original version string: C<$major.$minor.$release$extra>"
17741 msgstr ""
17742
17743 #. type: textblock
17744 #: ../src/guestfs-actions.pod:6962 ../fish/guestfish-actions.pod:4708
17745 msgid "See also: L<guestfs(3)/LIBGUESTFS VERSION NUMBERS>."
17746 msgstr ""
17747
17748 #. type: textblock
17749 #: ../src/guestfs-actions.pod:6964
17750 msgid ""
17751 "I<Note:> Don't use this call to test for availability of features.  In "
17752 "enterprise distributions we backport features from later versions into "
17753 "earlier versions, making this an unreliable way to test for features.  Use "
17754 "C<guestfs_available> instead."
17755 msgstr ""
17756
17757 #. type: textblock
17758 #: ../src/guestfs-actions.pod:6970
17759 msgid ""
17760 "This function returns a C<struct guestfs_version *>, or NULL if there was an "
17761 "error.  I<The caller must call C<guestfs_free_version> after use>."
17762 msgstr ""
17763
17764 #. type: textblock
17765 #: ../src/guestfs-actions.pod:6974
17766 msgid "(Added in 1.0.58)"
17767 msgstr ""
17768
17769 #. type: =head2
17770 #: ../src/guestfs-actions.pod:6976
17771 msgid "guestfs_vfs_label"
17772 msgstr ""
17773
17774 #. type: verbatim
17775 #: ../src/guestfs-actions.pod:6978
17776 #, no-wrap
17777 msgid ""
17778 " char *\n"
17779 " guestfs_vfs_label (guestfs_h *g,\n"
17780 "                    const char *device);\n"
17781 "\n"
17782 msgstr ""
17783
17784 #. type: textblock
17785 #: ../src/guestfs-actions.pod:6982 ../fish/guestfish-actions.pod:4720
17786 msgid "This returns the filesystem label of the filesystem on C<device>."
17787 msgstr ""
17788
17789 #. type: textblock
17790 #: ../src/guestfs-actions.pod:6985 ../fish/guestfish-actions.pod:4723
17791 msgid "If the filesystem is unlabeled, this returns the empty string."
17792 msgstr ""
17793
17794 #. type: textblock
17795 #: ../src/guestfs-actions.pod:6987
17796 msgid "To find a filesystem from the label, use C<guestfs_findfs_label>."
17797 msgstr ""
17798
17799 #. type: textblock
17800 #: ../src/guestfs-actions.pod:6992 ../src/guestfs-actions.pod:7029
17801 msgid "(Added in 1.3.18)"
17802 msgstr ""
17803
17804 #. type: =head2
17805 #: ../src/guestfs-actions.pod:6994
17806 msgid "guestfs_vfs_type"
17807 msgstr ""
17808
17809 #. type: verbatim
17810 #: ../src/guestfs-actions.pod:6996
17811 #, no-wrap
17812 msgid ""
17813 " char *\n"
17814 " guestfs_vfs_type (guestfs_h *g,\n"
17815 "                   const char *device);\n"
17816 "\n"
17817 msgstr ""
17818
17819 #. type: textblock
17820 #: ../src/guestfs-actions.pod:7000 ../fish/guestfish-actions.pod:4731
17821 msgid ""
17822 "This command gets the filesystem type corresponding to the filesystem on "
17823 "C<device>."
17824 msgstr ""
17825
17826 #. type: textblock
17827 #: ../src/guestfs-actions.pod:7003 ../fish/guestfish-actions.pod:4734
17828 msgid ""
17829 "For most filesystems, the result is the name of the Linux VFS module which "
17830 "would be used to mount this filesystem if you mounted it without specifying "
17831 "the filesystem type.  For example a string such as C<ext3> or C<ntfs>."
17832 msgstr ""
17833
17834 #. type: =head2
17835 #: ../src/guestfs-actions.pod:7013
17836 msgid "guestfs_vfs_uuid"
17837 msgstr ""
17838
17839 #. type: verbatim
17840 #: ../src/guestfs-actions.pod:7015
17841 #, no-wrap
17842 msgid ""
17843 " char *\n"
17844 " guestfs_vfs_uuid (guestfs_h *g,\n"
17845 "                   const char *device);\n"
17846 "\n"
17847 msgstr ""
17848
17849 #. type: textblock
17850 #: ../src/guestfs-actions.pod:7019 ../fish/guestfish-actions.pod:4743
17851 msgid "This returns the filesystem UUID of the filesystem on C<device>."
17852 msgstr ""
17853
17854 #. type: textblock
17855 #: ../src/guestfs-actions.pod:7022 ../fish/guestfish-actions.pod:4746
17856 msgid "If the filesystem does not have a UUID, this returns the empty string."
17857 msgstr ""
17858
17859 #. type: textblock
17860 #: ../src/guestfs-actions.pod:7024
17861 msgid "To find a filesystem from the UUID, use C<guestfs_findfs_uuid>."
17862 msgstr ""
17863
17864 #. type: =head2
17865 #: ../src/guestfs-actions.pod:7031
17866 msgid "guestfs_vg_activate"
17867 msgstr ""
17868
17869 #. type: verbatim
17870 #: ../src/guestfs-actions.pod:7033
17871 #, no-wrap
17872 msgid ""
17873 " int\n"
17874 " guestfs_vg_activate (guestfs_h *g,\n"
17875 "                      int activate,\n"
17876 "                      char *const *volgroups);\n"
17877 "\n"
17878 msgstr ""
17879
17880 #. type: textblock
17881 #: ../src/guestfs-actions.pod:7038 ../fish/guestfish-actions.pod:4754
17882 msgid ""
17883 "This command activates or (if C<activate> is false) deactivates all logical "
17884 "volumes in the listed volume groups C<volgroups>.  If activated, then they "
17885 "are made known to the kernel, ie. they appear as C</dev/mapper> devices.  If "
17886 "deactivated, then those devices disappear."
17887 msgstr ""
17888
17889 #. type: textblock
17890 #: ../src/guestfs-actions.pod:7044 ../fish/guestfish-actions.pod:4760
17891 msgid "This command is the same as running C<vgchange -a y|n volgroups...>"
17892 msgstr ""
17893
17894 #. type: textblock
17895 #: ../src/guestfs-actions.pod:7046 ../fish/guestfish-actions.pod:4762
17896 msgid ""
17897 "Note that if C<volgroups> is an empty list then B<all> volume groups are "
17898 "activated or deactivated."
17899 msgstr ""
17900
17901 #. type: =head2
17902 #: ../src/guestfs-actions.pod:7053
17903 msgid "guestfs_vg_activate_all"
17904 msgstr ""
17905
17906 #. type: verbatim
17907 #: ../src/guestfs-actions.pod:7055
17908 #, no-wrap
17909 msgid ""
17910 " int\n"
17911 " guestfs_vg_activate_all (guestfs_h *g,\n"
17912 "                          int activate);\n"
17913 "\n"
17914 msgstr ""
17915
17916 #. type: textblock
17917 #: ../src/guestfs-actions.pod:7059 ../fish/guestfish-actions.pod:4769
17918 msgid ""
17919 "This command activates or (if C<activate> is false) deactivates all logical "
17920 "volumes in all volume groups.  If activated, then they are made known to the "
17921 "kernel, ie. they appear as C</dev/mapper> devices.  If deactivated, then "
17922 "those devices disappear."
17923 msgstr ""
17924
17925 #. type: textblock
17926 #: ../src/guestfs-actions.pod:7065 ../fish/guestfish-actions.pod:4775
17927 msgid "This command is the same as running C<vgchange -a y|n>"
17928 msgstr ""
17929
17930 #. type: =head2
17931 #: ../src/guestfs-actions.pod:7071
17932 msgid "guestfs_vgcreate"
17933 msgstr ""
17934
17935 #. type: verbatim
17936 #: ../src/guestfs-actions.pod:7073
17937 #, no-wrap
17938 msgid ""
17939 " int\n"
17940 " guestfs_vgcreate (guestfs_h *g,\n"
17941 "                   const char *volgroup,\n"
17942 "                   char *const *physvols);\n"
17943 "\n"
17944 msgstr ""
17945
17946 #. type: textblock
17947 #: ../src/guestfs-actions.pod:7078 ../fish/guestfish-actions.pod:4781
17948 msgid ""
17949 "This creates an LVM volume group called C<volgroup> from the non-empty list "
17950 "of physical volumes C<physvols>."
17951 msgstr ""
17952
17953 #. type: =head2
17954 #: ../src/guestfs-actions.pod:7085
17955 msgid "guestfs_vglvuuids"
17956 msgstr ""
17957
17958 #. type: verbatim
17959 #: ../src/guestfs-actions.pod:7087
17960 #, no-wrap
17961 msgid ""
17962 " char **\n"
17963 " guestfs_vglvuuids (guestfs_h *g,\n"
17964 "                    const char *vgname);\n"
17965 "\n"
17966 msgstr ""
17967
17968 #. type: textblock
17969 #: ../src/guestfs-actions.pod:7091 ../fish/guestfish-actions.pod:4788
17970 msgid ""
17971 "Given a VG called C<vgname>, this returns the UUIDs of all the logical "
17972 "volumes created in this volume group."
17973 msgstr ""
17974
17975 #. type: textblock
17976 #: ../src/guestfs-actions.pod:7094
17977 msgid ""
17978 "You can use this along with C<guestfs_lvs> and C<guestfs_lvuuid> calls to "
17979 "associate logical volumes and volume groups."
17980 msgstr ""
17981
17982 #. type: textblock
17983 #: ../src/guestfs-actions.pod:7097
17984 msgid "See also C<guestfs_vgpvuuids>."
17985 msgstr ""
17986
17987 #. type: =head2
17988 #: ../src/guestfs-actions.pod:7105
17989 msgid "guestfs_vgpvuuids"
17990 msgstr ""
17991
17992 #. type: verbatim
17993 #: ../src/guestfs-actions.pod:7107
17994 #, no-wrap
17995 msgid ""
17996 " char **\n"
17997 " guestfs_vgpvuuids (guestfs_h *g,\n"
17998 "                    const char *vgname);\n"
17999 "\n"
18000 msgstr ""
18001
18002 #. type: textblock
18003 #: ../src/guestfs-actions.pod:7111 ../fish/guestfish-actions.pod:4800
18004 msgid ""
18005 "Given a VG called C<vgname>, this returns the UUIDs of all the physical "
18006 "volumes that this volume group resides on."
18007 msgstr ""
18008
18009 #. type: textblock
18010 #: ../src/guestfs-actions.pod:7114
18011 msgid ""
18012 "You can use this along with C<guestfs_pvs> and C<guestfs_pvuuid> calls to "
18013 "associate physical volumes and volume groups."
18014 msgstr ""
18015
18016 #. type: textblock
18017 #: ../src/guestfs-actions.pod:7117
18018 msgid "See also C<guestfs_vglvuuids>."
18019 msgstr ""
18020
18021 #. type: =head2
18022 #: ../src/guestfs-actions.pod:7125
18023 msgid "guestfs_vgremove"
18024 msgstr ""
18025
18026 #. type: verbatim
18027 #: ../src/guestfs-actions.pod:7127
18028 #, no-wrap
18029 msgid ""
18030 " int\n"
18031 " guestfs_vgremove (guestfs_h *g,\n"
18032 "                   const char *vgname);\n"
18033 "\n"
18034 msgstr ""
18035
18036 #. type: textblock
18037 #: ../src/guestfs-actions.pod:7131 ../fish/guestfish-actions.pod:4812
18038 msgid "Remove an LVM volume group C<vgname>, (for example C<VG>)."
18039 msgstr ""
18040
18041 #. type: textblock
18042 #: ../src/guestfs-actions.pod:7133 ../fish/guestfish-actions.pod:4814
18043 msgid ""
18044 "This also forcibly removes all logical volumes in the volume group (if any)."
18045 msgstr ""
18046
18047 #. type: =head2
18048 #: ../src/guestfs-actions.pod:7140
18049 msgid "guestfs_vgrename"
18050 msgstr ""
18051
18052 #. type: verbatim
18053 #: ../src/guestfs-actions.pod:7142
18054 #, no-wrap
18055 msgid ""
18056 " int\n"
18057 " guestfs_vgrename (guestfs_h *g,\n"
18058 "                   const char *volgroup,\n"
18059 "                   const char *newvolgroup);\n"
18060 "\n"
18061 msgstr ""
18062
18063 #. type: textblock
18064 #: ../src/guestfs-actions.pod:7147 ../fish/guestfish-actions.pod:4821
18065 msgid "Rename a volume group C<volgroup> with the new name C<newvolgroup>."
18066 msgstr ""
18067
18068 #. type: =head2
18069 #: ../src/guestfs-actions.pod:7153
18070 msgid "guestfs_vgs"
18071 msgstr ""
18072
18073 #. type: verbatim
18074 #: ../src/guestfs-actions.pod:7155
18075 #, no-wrap
18076 msgid ""
18077 " char **\n"
18078 " guestfs_vgs (guestfs_h *g);\n"
18079 "\n"
18080 msgstr ""
18081
18082 #. type: textblock
18083 #: ../src/guestfs-actions.pod:7158 ../fish/guestfish-actions.pod:4827
18084 msgid ""
18085 "List all the volumes groups detected.  This is the equivalent of the L<vgs(8)"
18086 "> command."
18087 msgstr ""
18088
18089 #. type: textblock
18090 #: ../src/guestfs-actions.pod:7161 ../fish/guestfish-actions.pod:4830
18091 msgid ""
18092 "This returns a list of just the volume group names that were detected (eg. "
18093 "C<VolGroup00>)."
18094 msgstr ""
18095
18096 #. type: textblock
18097 #: ../src/guestfs-actions.pod:7164
18098 msgid "See also C<guestfs_vgs_full>."
18099 msgstr ""
18100
18101 #. type: =head2
18102 #: ../src/guestfs-actions.pod:7172
18103 msgid "guestfs_vgs_full"
18104 msgstr ""
18105
18106 #. type: verbatim
18107 #: ../src/guestfs-actions.pod:7174
18108 #, no-wrap
18109 msgid ""
18110 " struct guestfs_lvm_vg_list *\n"
18111 " guestfs_vgs_full (guestfs_h *g);\n"
18112 "\n"
18113 msgstr ""
18114
18115 #. type: textblock
18116 #: ../src/guestfs-actions.pod:7177 ../fish/guestfish-actions.pod:4839
18117 msgid ""
18118 "List all the volumes groups detected.  This is the equivalent of the L<vgs(8)"
18119 "> command.  The \"full\" version includes all fields."
18120 msgstr ""
18121
18122 #. type: textblock
18123 #: ../src/guestfs-actions.pod:7180
18124 msgid ""
18125 "This function returns a C<struct guestfs_lvm_vg_list *>, or NULL if there "
18126 "was an error.  I<The caller must call C<guestfs_free_lvm_vg_list> after use>."
18127 msgstr ""
18128
18129 #. type: =head2
18130 #: ../src/guestfs-actions.pod:7186
18131 msgid "guestfs_vgscan"
18132 msgstr ""
18133
18134 #. type: verbatim
18135 #: ../src/guestfs-actions.pod:7188
18136 #, no-wrap
18137 msgid ""
18138 " int\n"
18139 " guestfs_vgscan (guestfs_h *g);\n"
18140 "\n"
18141 msgstr ""
18142
18143 #. type: textblock
18144 #: ../src/guestfs-actions.pod:7191 ../fish/guestfish-actions.pod:4846
18145 msgid ""
18146 "This rescans all block devices and rebuilds the list of LVM physical "
18147 "volumes, volume groups and logical volumes."
18148 msgstr ""
18149
18150 #. type: =head2
18151 #: ../src/guestfs-actions.pod:7198
18152 msgid "guestfs_vguuid"
18153 msgstr ""
18154
18155 #. type: verbatim
18156 #: ../src/guestfs-actions.pod:7200
18157 #, no-wrap
18158 msgid ""
18159 " char *\n"
18160 " guestfs_vguuid (guestfs_h *g,\n"
18161 "                 const char *vgname);\n"
18162 "\n"
18163 msgstr ""
18164
18165 #. type: textblock
18166 #: ../src/guestfs-actions.pod:7204 ../fish/guestfish-actions.pod:4853
18167 msgid "This command returns the UUID of the LVM VG named C<vgname>."
18168 msgstr ""
18169
18170 #. type: =head2
18171 #: ../src/guestfs-actions.pod:7211
18172 msgid "guestfs_wait_ready"
18173 msgstr ""
18174
18175 #. type: verbatim
18176 #: ../src/guestfs-actions.pod:7213
18177 #, no-wrap
18178 msgid ""
18179 " int\n"
18180 " guestfs_wait_ready (guestfs_h *g);\n"
18181 "\n"
18182 msgstr ""
18183
18184 #. type: textblock
18185 #: ../src/guestfs-actions.pod:7216
18186 msgid "This function is a no op."
18187 msgstr ""
18188
18189 #. type: textblock
18190 #: ../src/guestfs-actions.pod:7218
18191 msgid ""
18192 "In versions of the API E<lt> 1.0.71 you had to call this function just after "
18193 "calling C<guestfs_launch> to wait for the launch to complete.  However this "
18194 "is no longer necessary because C<guestfs_launch> now does the waiting."
18195 msgstr ""
18196
18197 #. type: textblock
18198 #: ../src/guestfs-actions.pod:7223
18199 msgid ""
18200 "If you see any calls to this function in code then you can just remove them, "
18201 "unless you want to retain compatibility with older versions of the API."
18202 msgstr ""
18203
18204 #. type: textblock
18205 #: ../src/guestfs-actions.pod:7229
18206 msgid ""
18207 "This function is deprecated.  In new code, use the C<launch> call instead."
18208 msgstr ""
18209
18210 #. type: =head2
18211 #: ../src/guestfs-actions.pod:7238
18212 msgid "guestfs_wc_c"
18213 msgstr ""
18214
18215 #. type: verbatim
18216 #: ../src/guestfs-actions.pod:7240
18217 #, no-wrap
18218 msgid ""
18219 " int\n"
18220 " guestfs_wc_c (guestfs_h *g,\n"
18221 "               const char *path);\n"
18222 "\n"
18223 msgstr ""
18224
18225 #. type: textblock
18226 #: ../src/guestfs-actions.pod:7244 ../fish/guestfish-actions.pod:4859
18227 msgid ""
18228 "This command counts the characters in a file, using the C<wc -c> external "
18229 "command."
18230 msgstr ""
18231
18232 #. type: =head2
18233 #: ../src/guestfs-actions.pod:7251
18234 msgid "guestfs_wc_l"
18235 msgstr ""
18236
18237 #. type: verbatim
18238 #: ../src/guestfs-actions.pod:7253
18239 #, no-wrap
18240 msgid ""
18241 " int\n"
18242 " guestfs_wc_l (guestfs_h *g,\n"
18243 "               const char *path);\n"
18244 "\n"
18245 msgstr ""
18246
18247 #. type: textblock
18248 #: ../src/guestfs-actions.pod:7257 ../fish/guestfish-actions.pod:4866
18249 msgid ""
18250 "This command counts the lines in a file, using the C<wc -l> external command."
18251 msgstr ""
18252
18253 #. type: =head2
18254 #: ../src/guestfs-actions.pod:7264
18255 msgid "guestfs_wc_w"
18256 msgstr ""
18257
18258 #. type: verbatim
18259 #: ../src/guestfs-actions.pod:7266
18260 #, no-wrap
18261 msgid ""
18262 " int\n"
18263 " guestfs_wc_w (guestfs_h *g,\n"
18264 "               const char *path);\n"
18265 "\n"
18266 msgstr ""
18267
18268 #. type: textblock
18269 #: ../src/guestfs-actions.pod:7270 ../fish/guestfish-actions.pod:4873
18270 msgid ""
18271 "This command counts the words in a file, using the C<wc -w> external command."
18272 msgstr ""
18273
18274 #. type: =head2
18275 #: ../src/guestfs-actions.pod:7277
18276 msgid "guestfs_write"
18277 msgstr ""
18278
18279 #. type: verbatim
18280 #: ../src/guestfs-actions.pod:7279
18281 #, no-wrap
18282 msgid ""
18283 " int\n"
18284 " guestfs_write (guestfs_h *g,\n"
18285 "                const char *path,\n"
18286 "                const char *content,\n"
18287 "                size_t content_size);\n"
18288 "\n"
18289 msgstr ""
18290
18291 #. type: textblock
18292 #: ../src/guestfs-actions.pod:7285 ../fish/guestfish-actions.pod:4880
18293 msgid ""
18294 "This call creates a file called C<path>.  The content of the file is the "
18295 "string C<content> (which can contain any 8 bit data)."
18296 msgstr ""
18297
18298 #. type: =head2
18299 #: ../src/guestfs-actions.pod:7295
18300 msgid "guestfs_write_file"
18301 msgstr ""
18302
18303 #. type: verbatim
18304 #: ../src/guestfs-actions.pod:7297
18305 #, no-wrap
18306 msgid ""
18307 " int\n"
18308 " guestfs_write_file (guestfs_h *g,\n"
18309 "                     const char *path,\n"
18310 "                     const char *content,\n"
18311 "                     int size);\n"
18312 "\n"
18313 msgstr ""
18314
18315 #. type: textblock
18316 #: ../src/guestfs-actions.pod:7303 ../fish/guestfish-actions.pod:4890
18317 msgid ""
18318 "This call creates a file called C<path>.  The contents of the file is the "
18319 "string C<content> (which can contain any 8 bit data), with length C<size>."
18320 msgstr ""
18321
18322 #. type: textblock
18323 #: ../src/guestfs-actions.pod:7307 ../fish/guestfish-actions.pod:4894
18324 msgid ""
18325 "As a special case, if C<size> is C<0> then the length is calculated using "
18326 "C<strlen> (so in this case the content cannot contain embedded ASCII NULs)."
18327 msgstr ""
18328
18329 #. type: textblock
18330 #: ../src/guestfs-actions.pod:7311 ../fish/guestfish-actions.pod:4898
18331 msgid ""
18332 "I<NB.> Owing to a bug, writing content containing ASCII NUL characters does "
18333 "I<not> work, even if the length is specified."
18334 msgstr ""
18335
18336 #. type: textblock
18337 #: ../src/guestfs-actions.pod:7319 ../fish/guestfish-actions.pod:4904
18338 msgid ""
18339 "This function is deprecated.  In new code, use the C<write> call instead."
18340 msgstr ""
18341
18342 #. type: =head2
18343 #: ../src/guestfs-actions.pod:7328
18344 msgid "guestfs_zegrep"
18345 msgstr ""
18346
18347 #. type: verbatim
18348 #: ../src/guestfs-actions.pod:7330
18349 #, no-wrap
18350 msgid ""
18351 " char **\n"
18352 " guestfs_zegrep (guestfs_h *g,\n"
18353 "                 const char *regex,\n"
18354 "                 const char *path);\n"
18355 "\n"
18356 msgstr ""
18357
18358 #. type: textblock
18359 #: ../src/guestfs-actions.pod:7335 ../fish/guestfish-actions.pod:4915
18360 msgid ""
18361 "This calls the external C<zegrep> program and returns the matching lines."
18362 msgstr ""
18363
18364 #. type: =head2
18365 #: ../src/guestfs-actions.pod:7347
18366 msgid "guestfs_zegrepi"
18367 msgstr ""
18368
18369 #. type: verbatim
18370 #: ../src/guestfs-actions.pod:7349
18371 #, no-wrap
18372 msgid ""
18373 " char **\n"
18374 " guestfs_zegrepi (guestfs_h *g,\n"
18375 "                  const char *regex,\n"
18376 "                  const char *path);\n"
18377 "\n"
18378 msgstr ""
18379
18380 #. type: textblock
18381 #: ../src/guestfs-actions.pod:7354 ../fish/guestfish-actions.pod:4925
18382 msgid ""
18383 "This calls the external C<zegrep -i> program and returns the matching lines."
18384 msgstr ""
18385
18386 #. type: =head2
18387 #: ../src/guestfs-actions.pod:7366
18388 msgid "guestfs_zero"
18389 msgstr ""
18390
18391 #. type: verbatim
18392 #: ../src/guestfs-actions.pod:7368
18393 #, no-wrap
18394 msgid ""
18395 " int\n"
18396 " guestfs_zero (guestfs_h *g,\n"
18397 "               const char *device);\n"
18398 "\n"
18399 msgstr ""
18400
18401 #. type: textblock
18402 #: ../src/guestfs-actions.pod:7372 ../fish/guestfish-actions.pod:4935
18403 msgid "This command writes zeroes over the first few blocks of C<device>."
18404 msgstr ""
18405
18406 #. type: textblock
18407 #: ../src/guestfs-actions.pod:7374 ../fish/guestfish-actions.pod:4937
18408 msgid ""
18409 "How many blocks are zeroed isn't specified (but it's I<not> enough to "
18410 "securely wipe the device).  It should be sufficient to remove any partition "
18411 "tables, filesystem superblocks and so on."
18412 msgstr ""
18413
18414 #. type: textblock
18415 #: ../src/guestfs-actions.pod:7378
18416 msgid "See also: C<guestfs_zero_device>, C<guestfs_scrub_device>."
18417 msgstr ""
18418
18419 #. type: =head2
18420 #: ../src/guestfs-actions.pod:7389
18421 msgid "guestfs_zero_device"
18422 msgstr ""
18423
18424 #. type: verbatim
18425 #: ../src/guestfs-actions.pod:7391
18426 #, no-wrap
18427 msgid ""
18428 " int\n"
18429 " guestfs_zero_device (guestfs_h *g,\n"
18430 "                      const char *device);\n"
18431 "\n"
18432 msgstr ""
18433
18434 #. type: textblock
18435 #: ../src/guestfs-actions.pod:7395
18436 msgid ""
18437 "This command writes zeroes over the entire C<device>.  Compare with "
18438 "C<guestfs_zero> which just zeroes the first few blocks of a device."
18439 msgstr ""
18440
18441 #. type: textblock
18442 #: ../src/guestfs-actions.pod:7409
18443 msgid "(Added in 1.3.1)"
18444 msgstr ""
18445
18446 #. type: =head2
18447 #: ../src/guestfs-actions.pod:7411
18448 msgid "guestfs_zerofree"
18449 msgstr ""
18450
18451 #. type: verbatim
18452 #: ../src/guestfs-actions.pod:7413
18453 #, no-wrap
18454 msgid ""
18455 " int\n"
18456 " guestfs_zerofree (guestfs_h *g,\n"
18457 "                   const char *device);\n"
18458 "\n"
18459 msgstr ""
18460
18461 #. type: textblock
18462 #: ../src/guestfs-actions.pod:7417 ../fish/guestfish-actions.pod:4958
18463 msgid ""
18464 "This runs the I<zerofree> program on C<device>.  This program claims to zero "
18465 "unused inodes and disk blocks on an ext2/3 filesystem, thus making it "
18466 "possible to compress the filesystem more effectively."
18467 msgstr ""
18468
18469 #. type: textblock
18470 #: ../src/guestfs-actions.pod:7422 ../fish/guestfish-actions.pod:4963
18471 msgid "You should B<not> run this program if the filesystem is mounted."
18472 msgstr ""
18473
18474 #. type: textblock
18475 #: ../src/guestfs-actions.pod:7425 ../fish/guestfish-actions.pod:4966
18476 msgid ""
18477 "It is possible that using this program can damage the filesystem or data on "
18478 "the filesystem."
18479 msgstr ""
18480
18481 #. type: =head2
18482 #: ../src/guestfs-actions.pod:7432
18483 msgid "guestfs_zfgrep"
18484 msgstr ""
18485
18486 #. type: verbatim
18487 #: ../src/guestfs-actions.pod:7434
18488 #, no-wrap
18489 msgid ""
18490 " char **\n"
18491 " guestfs_zfgrep (guestfs_h *g,\n"
18492 "                 const char *pattern,\n"
18493 "                 const char *path);\n"
18494 "\n"
18495 msgstr ""
18496
18497 #. type: textblock
18498 #: ../src/guestfs-actions.pod:7439 ../fish/guestfish-actions.pod:4973
18499 msgid ""
18500 "This calls the external C<zfgrep> program and returns the matching lines."
18501 msgstr ""
18502
18503 #. type: =head2
18504 #: ../src/guestfs-actions.pod:7451
18505 msgid "guestfs_zfgrepi"
18506 msgstr ""
18507
18508 #. type: verbatim
18509 #: ../src/guestfs-actions.pod:7453
18510 #, no-wrap
18511 msgid ""
18512 " char **\n"
18513 " guestfs_zfgrepi (guestfs_h *g,\n"
18514 "                  const char *pattern,\n"
18515 "                  const char *path);\n"
18516 "\n"
18517 msgstr ""
18518
18519 #. type: textblock
18520 #: ../src/guestfs-actions.pod:7458 ../fish/guestfish-actions.pod:4983
18521 msgid ""
18522 "This calls the external C<zfgrep -i> program and returns the matching lines."
18523 msgstr ""
18524
18525 #. type: =head2
18526 #: ../src/guestfs-actions.pod:7470
18527 msgid "guestfs_zfile"
18528 msgstr ""
18529
18530 #. type: verbatim
18531 #: ../src/guestfs-actions.pod:7472
18532 #, no-wrap
18533 msgid ""
18534 " char *\n"
18535 " guestfs_zfile (guestfs_h *g,\n"
18536 "                const char *meth,\n"
18537 "                const char *path);\n"
18538 "\n"
18539 msgstr ""
18540
18541 #. type: textblock
18542 #: ../src/guestfs-actions.pod:7477 ../fish/guestfish-actions.pod:4993
18543 msgid ""
18544 "This command runs C<file> after first decompressing C<path> using C<method>."
18545 msgstr ""
18546
18547 #. type: textblock
18548 #: ../src/guestfs-actions.pod:7480 ../fish/guestfish-actions.pod:4996
18549 msgid "C<method> must be one of C<gzip>, C<compress> or C<bzip2>."
18550 msgstr ""
18551
18552 #. type: textblock
18553 #: ../src/guestfs-actions.pod:7482
18554 msgid ""
18555 "Since 1.0.63, use C<guestfs_file> instead which can now process compressed "
18556 "files."
18557 msgstr ""
18558
18559 #. type: textblock
18560 #: ../src/guestfs-actions.pod:7488 ../fish/guestfish-actions.pod:5001
18561 msgid ""
18562 "This function is deprecated.  In new code, use the C<file> call instead."
18563 msgstr ""
18564
18565 #. type: =head2
18566 #: ../src/guestfs-actions.pod:7497
18567 msgid "guestfs_zgrep"
18568 msgstr ""
18569
18570 #. type: verbatim
18571 #: ../src/guestfs-actions.pod:7499
18572 #, no-wrap
18573 msgid ""
18574 " char **\n"
18575 " guestfs_zgrep (guestfs_h *g,\n"
18576 "                const char *regex,\n"
18577 "                const char *path);\n"
18578 "\n"
18579 msgstr ""
18580
18581 #. type: textblock
18582 #: ../src/guestfs-actions.pod:7504 ../fish/guestfish-actions.pod:5012
18583 msgid ""
18584 "This calls the external C<zgrep> program and returns the matching lines."
18585 msgstr ""
18586
18587 #. type: =head2
18588 #: ../src/guestfs-actions.pod:7516
18589 msgid "guestfs_zgrepi"
18590 msgstr ""
18591
18592 #. type: verbatim
18593 #: ../src/guestfs-actions.pod:7518
18594 #, no-wrap
18595 msgid ""
18596 " char **\n"
18597 " guestfs_zgrepi (guestfs_h *g,\n"
18598 "                 const char *regex,\n"
18599 "                 const char *path);\n"
18600 "\n"
18601 msgstr ""
18602
18603 #. type: textblock
18604 #: ../src/guestfs-actions.pod:7523 ../fish/guestfish-actions.pod:5022
18605 msgid ""
18606 "This calls the external C<zgrep -i> program and returns the matching lines."
18607 msgstr ""
18608
18609 #. type: =item
18610 #: ../src/guestfs-availability.pod:3
18611 msgid "B<augeas>"
18612 msgstr ""
18613
18614 #. type: textblock
18615 #: ../src/guestfs-availability.pod:5
18616 msgid ""
18617 "The following functions: L</guestfs_aug_clear> L</guestfs_aug_close> L</"
18618 "guestfs_aug_defnode> L</guestfs_aug_defvar> L</guestfs_aug_get> L</"
18619 "guestfs_aug_init> L</guestfs_aug_insert> L</guestfs_aug_load> L</"
18620 "guestfs_aug_ls> L</guestfs_aug_match> L</guestfs_aug_mv> L</guestfs_aug_rm> "
18621 "L</guestfs_aug_save> L</guestfs_aug_set>"
18622 msgstr ""
18623
18624 #. type: =item
18625 #: ../src/guestfs-availability.pod:21
18626 msgid "B<inotify>"
18627 msgstr ""
18628
18629 #. type: textblock
18630 #: ../src/guestfs-availability.pod:23
18631 msgid ""
18632 "The following functions: L</guestfs_inotify_add_watch> L</"
18633 "guestfs_inotify_close> L</guestfs_inotify_files> L</guestfs_inotify_init> L</"
18634 "guestfs_inotify_read> L</guestfs_inotify_rm_watch>"
18635 msgstr ""
18636
18637 #. type: =item
18638 #: ../src/guestfs-availability.pod:31
18639 msgid "B<linuxfsuuid>"
18640 msgstr ""
18641
18642 #. type: textblock
18643 #: ../src/guestfs-availability.pod:33
18644 msgid ""
18645 "The following functions: L</guestfs_mke2fs_JU> L</guestfs_mke2journal_U> L</"
18646 "guestfs_mkswap_U> L</guestfs_swapoff_uuid> L</guestfs_swapon_uuid>"
18647 msgstr ""
18648
18649 #. type: =item
18650 #: ../src/guestfs-availability.pod:40
18651 msgid "B<linuxmodules>"
18652 msgstr ""
18653
18654 #. type: textblock
18655 #: ../src/guestfs-availability.pod:42
18656 msgid "The following functions: L</guestfs_modprobe>"
18657 msgstr ""
18658
18659 #. type: =item
18660 #: ../src/guestfs-availability.pod:45
18661 msgid "B<linuxxattrs>"
18662 msgstr ""
18663
18664 #. type: textblock
18665 #: ../src/guestfs-availability.pod:47
18666 msgid ""
18667 "The following functions: L</guestfs_getxattr> L</guestfs_getxattrs> L</"
18668 "guestfs_lgetxattr> L</guestfs_lgetxattrs> L</guestfs_lremovexattr> L</"
18669 "guestfs_lsetxattr> L</guestfs_lxattrlist> L</guestfs_removexattr> L</"
18670 "guestfs_setxattr>"
18671 msgstr ""
18672
18673 #. type: =item
18674 #: ../src/guestfs-availability.pod:58
18675 msgid "B<luks>"
18676 msgstr ""
18677
18678 #. type: textblock
18679 #: ../src/guestfs-availability.pod:60
18680 msgid ""
18681 "The following functions: L</guestfs_luks_add_key> L</guestfs_luks_close> L</"
18682 "guestfs_luks_format> L</guestfs_luks_format_cipher> L</"
18683 "guestfs_luks_kill_slot> L</guestfs_luks_open> L</guestfs_luks_open_ro>"
18684 msgstr ""
18685
18686 #. type: =item
18687 #: ../src/guestfs-availability.pod:69
18688 msgid "B<lvm2>"
18689 msgstr ""
18690
18691 #. type: textblock
18692 #: ../src/guestfs-availability.pod:71
18693 msgid ""
18694 "The following functions: L</guestfs_is_lv> L</guestfs_lvcreate> L</"
18695 "guestfs_lvm_remove_all> L</guestfs_lvm_set_filter> L</guestfs_lvremove> L</"
18696 "guestfs_lvresize> L</guestfs_lvresize_free> L</guestfs_lvs> L</"
18697 "guestfs_lvs_full> L</guestfs_pvcreate> L</guestfs_pvremove> L</"
18698 "guestfs_pvresize> L</guestfs_pvresize_size> L</guestfs_pvs> L</"
18699 "guestfs_pvs_full> L</guestfs_vg_activate> L</guestfs_vg_activate_all> L</"
18700 "guestfs_vgcreate> L</guestfs_vgremove> L</guestfs_vgs> L</guestfs_vgs_full>"
18701 msgstr ""
18702
18703 #. type: =item
18704 #: ../src/guestfs-availability.pod:94
18705 msgid "B<mknod>"
18706 msgstr ""
18707
18708 #. type: textblock
18709 #: ../src/guestfs-availability.pod:96
18710 msgid ""
18711 "The following functions: L</guestfs_mkfifo> L</guestfs_mknod> L</"
18712 "guestfs_mknod_b> L</guestfs_mknod_c>"
18713 msgstr ""
18714
18715 #. type: =item
18716 #: ../src/guestfs-availability.pod:102
18717 msgid "B<ntfs3g>"
18718 msgstr ""
18719
18720 #. type: textblock
18721 #: ../src/guestfs-availability.pod:104
18722 msgid "The following functions: L</guestfs_ntfs_3g_probe>"
18723 msgstr ""
18724
18725 #. type: =item
18726 #: ../src/guestfs-availability.pod:107
18727 msgid "B<ntfsprogs>"
18728 msgstr ""
18729
18730 #. type: textblock
18731 #: ../src/guestfs-availability.pod:109
18732 msgid ""
18733 "The following functions: L</guestfs_ntfsresize> L</guestfs_ntfsresize_size>"
18734 msgstr ""
18735
18736 #. type: =item
18737 #: ../src/guestfs-availability.pod:113
18738 msgid "B<realpath>"
18739 msgstr ""
18740
18741 #. type: textblock
18742 #: ../src/guestfs-availability.pod:115
18743 msgid "The following functions: L</guestfs_realpath>"
18744 msgstr ""
18745
18746 #. type: =item
18747 #: ../src/guestfs-availability.pod:118
18748 msgid "B<scrub>"
18749 msgstr ""
18750
18751 #. type: textblock
18752 #: ../src/guestfs-availability.pod:120
18753 msgid ""
18754 "The following functions: L</guestfs_scrub_device> L</guestfs_scrub_file> L</"
18755 "guestfs_scrub_freespace>"
18756 msgstr ""
18757
18758 #. type: =item
18759 #: ../src/guestfs-availability.pod:125
18760 msgid "B<selinux>"
18761 msgstr ""
18762
18763 #. type: textblock
18764 #: ../src/guestfs-availability.pod:127
18765 msgid "The following functions: L</guestfs_getcon> L</guestfs_setcon>"
18766 msgstr ""
18767
18768 #. type: =item
18769 #: ../src/guestfs-availability.pod:131
18770 msgid "B<xz>"
18771 msgstr ""
18772
18773 #. type: textblock
18774 #: ../src/guestfs-availability.pod:133
18775 msgid "The following functions: L</guestfs_txz_in> L</guestfs_txz_out>"
18776 msgstr ""
18777
18778 #. type: =item
18779 #: ../src/guestfs-availability.pod:137
18780 msgid "B<zerofree>"
18781 msgstr ""
18782
18783 #. type: textblock
18784 #: ../src/guestfs-availability.pod:139
18785 msgid "The following functions: L</guestfs_zerofree>"
18786 msgstr ""
18787
18788 #. type: =head2
18789 #: ../src/guestfs-structs.pod:1
18790 msgid "guestfs_int_bool"
18791 msgstr ""
18792
18793 #. type: verbatim
18794 #: ../src/guestfs-structs.pod:3
18795 #, no-wrap
18796 msgid ""
18797 " struct guestfs_int_bool {\n"
18798 "   int32_t i;\n"
18799 "   int32_t b;\n"
18800 " };\n"
18801 " \n"
18802 msgstr ""
18803
18804 #. type: verbatim
18805 #: ../src/guestfs-structs.pod:8
18806 #, no-wrap
18807 msgid ""
18808 " struct guestfs_int_bool_list {\n"
18809 "   uint32_t len; /* Number of elements in list. */\n"
18810 "   struct guestfs_int_bool *val; /* Elements. */\n"
18811 " };\n"
18812 " \n"
18813 msgstr ""
18814
18815 #. type: verbatim
18816 #: ../src/guestfs-structs.pod:13
18817 #, no-wrap
18818 msgid ""
18819 " void guestfs_free_int_bool (struct guestfs_free_int_bool *);\n"
18820 " void guestfs_free_int_bool_list (struct guestfs_free_int_bool_list *);\n"
18821 "\n"
18822 msgstr ""
18823
18824 #. type: =head2
18825 #: ../src/guestfs-structs.pod:16
18826 msgid "guestfs_lvm_pv"
18827 msgstr ""
18828
18829 #. type: verbatim
18830 #: ../src/guestfs-structs.pod:18
18831 #, no-wrap
18832 msgid ""
18833 " struct guestfs_lvm_pv {\n"
18834 "   char *pv_name;\n"
18835 "   /* The next field is NOT nul-terminated, be careful when printing it: */\n"
18836 "   char pv_uuid[32];\n"
18837 "   char *pv_fmt;\n"
18838 "   uint64_t pv_size;\n"
18839 "   uint64_t dev_size;\n"
18840 "   uint64_t pv_free;\n"
18841 "   uint64_t pv_used;\n"
18842 "   char *pv_attr;\n"
18843 "   int64_t pv_pe_count;\n"
18844 "   int64_t pv_pe_alloc_count;\n"
18845 "   char *pv_tags;\n"
18846 "   uint64_t pe_start;\n"
18847 "   int64_t pv_mda_count;\n"
18848 "   uint64_t pv_mda_free;\n"
18849 " };\n"
18850 " \n"
18851 msgstr ""
18852
18853 #. type: verbatim
18854 #: ../src/guestfs-structs.pod:36
18855 #, no-wrap
18856 msgid ""
18857 " struct guestfs_lvm_pv_list {\n"
18858 "   uint32_t len; /* Number of elements in list. */\n"
18859 "   struct guestfs_lvm_pv *val; /* Elements. */\n"
18860 " };\n"
18861 " \n"
18862 msgstr ""
18863
18864 #. type: verbatim
18865 #: ../src/guestfs-structs.pod:41
18866 #, no-wrap
18867 msgid ""
18868 " void guestfs_free_lvm_pv (struct guestfs_free_lvm_pv *);\n"
18869 " void guestfs_free_lvm_pv_list (struct guestfs_free_lvm_pv_list *);\n"
18870 "\n"
18871 msgstr ""
18872
18873 #. type: =head2
18874 #: ../src/guestfs-structs.pod:44
18875 msgid "guestfs_lvm_vg"
18876 msgstr ""
18877
18878 #. type: verbatim
18879 #: ../src/guestfs-structs.pod:46
18880 #, no-wrap
18881 msgid ""
18882 " struct guestfs_lvm_vg {\n"
18883 "   char *vg_name;\n"
18884 "   /* The next field is NOT nul-terminated, be careful when printing it: */\n"
18885 "   char vg_uuid[32];\n"
18886 "   char *vg_fmt;\n"
18887 "   char *vg_attr;\n"
18888 "   uint64_t vg_size;\n"
18889 "   uint64_t vg_free;\n"
18890 "   char *vg_sysid;\n"
18891 "   uint64_t vg_extent_size;\n"
18892 "   int64_t vg_extent_count;\n"
18893 "   int64_t vg_free_count;\n"
18894 "   int64_t max_lv;\n"
18895 "   int64_t max_pv;\n"
18896 "   int64_t pv_count;\n"
18897 "   int64_t lv_count;\n"
18898 "   int64_t snap_count;\n"
18899 "   int64_t vg_seqno;\n"
18900 "   char *vg_tags;\n"
18901 "   int64_t vg_mda_count;\n"
18902 "   uint64_t vg_mda_free;\n"
18903 " };\n"
18904 " \n"
18905 msgstr ""
18906
18907 #. type: verbatim
18908 #: ../src/guestfs-structs.pod:69
18909 #, no-wrap
18910 msgid ""
18911 " struct guestfs_lvm_vg_list {\n"
18912 "   uint32_t len; /* Number of elements in list. */\n"
18913 "   struct guestfs_lvm_vg *val; /* Elements. */\n"
18914 " };\n"
18915 " \n"
18916 msgstr ""
18917
18918 #. type: verbatim
18919 #: ../src/guestfs-structs.pod:74
18920 #, no-wrap
18921 msgid ""
18922 " void guestfs_free_lvm_vg (struct guestfs_free_lvm_vg *);\n"
18923 " void guestfs_free_lvm_vg_list (struct guestfs_free_lvm_vg_list *);\n"
18924 "\n"
18925 msgstr ""
18926
18927 #. type: =head2
18928 #: ../src/guestfs-structs.pod:77
18929 msgid "guestfs_lvm_lv"
18930 msgstr ""
18931
18932 #. type: verbatim
18933 #: ../src/guestfs-structs.pod:79
18934 #, no-wrap
18935 msgid ""
18936 " struct guestfs_lvm_lv {\n"
18937 "   char *lv_name;\n"
18938 "   /* The next field is NOT nul-terminated, be careful when printing it: */\n"
18939 "   char lv_uuid[32];\n"
18940 "   char *lv_attr;\n"
18941 "   int64_t lv_major;\n"
18942 "   int64_t lv_minor;\n"
18943 "   int64_t lv_kernel_major;\n"
18944 "   int64_t lv_kernel_minor;\n"
18945 "   uint64_t lv_size;\n"
18946 "   int64_t seg_count;\n"
18947 "   char *origin;\n"
18948 "   /* The next field is [0..100] or -1 meaning 'not present': */\n"
18949 "   float snap_percent;\n"
18950 "   /* The next field is [0..100] or -1 meaning 'not present': */\n"
18951 "   float copy_percent;\n"
18952 "   char *move_pv;\n"
18953 "   char *lv_tags;\n"
18954 "   char *mirror_log;\n"
18955 "   char *modules;\n"
18956 " };\n"
18957 " \n"
18958 msgstr ""
18959
18960 #. type: verbatim
18961 #: ../src/guestfs-structs.pod:101
18962 #, no-wrap
18963 msgid ""
18964 " struct guestfs_lvm_lv_list {\n"
18965 "   uint32_t len; /* Number of elements in list. */\n"
18966 "   struct guestfs_lvm_lv *val; /* Elements. */\n"
18967 " };\n"
18968 " \n"
18969 msgstr ""
18970
18971 #. type: verbatim
18972 #: ../src/guestfs-structs.pod:106
18973 #, no-wrap
18974 msgid ""
18975 " void guestfs_free_lvm_lv (struct guestfs_free_lvm_lv *);\n"
18976 " void guestfs_free_lvm_lv_list (struct guestfs_free_lvm_lv_list *);\n"
18977 "\n"
18978 msgstr ""
18979
18980 #. type: verbatim
18981 #: ../src/guestfs-structs.pod:111
18982 #, no-wrap
18983 msgid ""
18984 " struct guestfs_stat {\n"
18985 "   int64_t dev;\n"
18986 "   int64_t ino;\n"
18987 "   int64_t mode;\n"
18988 "   int64_t nlink;\n"
18989 "   int64_t uid;\n"
18990 "   int64_t gid;\n"
18991 "   int64_t rdev;\n"
18992 "   int64_t size;\n"
18993 "   int64_t blksize;\n"
18994 "   int64_t blocks;\n"
18995 "   int64_t atime;\n"
18996 "   int64_t mtime;\n"
18997 "   int64_t ctime;\n"
18998 " };\n"
18999 " \n"
19000 msgstr ""
19001
19002 #. type: verbatim
19003 #: ../src/guestfs-structs.pod:127
19004 #, no-wrap
19005 msgid ""
19006 " struct guestfs_stat_list {\n"
19007 "   uint32_t len; /* Number of elements in list. */\n"
19008 "   struct guestfs_stat *val; /* Elements. */\n"
19009 " };\n"
19010 " \n"
19011 msgstr ""
19012
19013 #. type: verbatim
19014 #: ../src/guestfs-structs.pod:132
19015 #, no-wrap
19016 msgid ""
19017 " void guestfs_free_stat (struct guestfs_free_stat *);\n"
19018 " void guestfs_free_stat_list (struct guestfs_free_stat_list *);\n"
19019 "\n"
19020 msgstr ""
19021
19022 #. type: verbatim
19023 #: ../src/guestfs-structs.pod:137
19024 #, no-wrap
19025 msgid ""
19026 " struct guestfs_statvfs {\n"
19027 "   int64_t bsize;\n"
19028 "   int64_t frsize;\n"
19029 "   int64_t blocks;\n"
19030 "   int64_t bfree;\n"
19031 "   int64_t bavail;\n"
19032 "   int64_t files;\n"
19033 "   int64_t ffree;\n"
19034 "   int64_t favail;\n"
19035 "   int64_t fsid;\n"
19036 "   int64_t flag;\n"
19037 "   int64_t namemax;\n"
19038 " };\n"
19039 " \n"
19040 msgstr ""
19041
19042 #. type: verbatim
19043 #: ../src/guestfs-structs.pod:151
19044 #, no-wrap
19045 msgid ""
19046 " struct guestfs_statvfs_list {\n"
19047 "   uint32_t len; /* Number of elements in list. */\n"
19048 "   struct guestfs_statvfs *val; /* Elements. */\n"
19049 " };\n"
19050 " \n"
19051 msgstr ""
19052
19053 #. type: verbatim
19054 #: ../src/guestfs-structs.pod:156
19055 #, no-wrap
19056 msgid ""
19057 " void guestfs_free_statvfs (struct guestfs_free_statvfs *);\n"
19058 " void guestfs_free_statvfs_list (struct guestfs_free_statvfs_list *);\n"
19059 "\n"
19060 msgstr ""
19061
19062 #. type: =head2
19063 #: ../src/guestfs-structs.pod:159
19064 msgid "guestfs_dirent"
19065 msgstr ""
19066
19067 #. type: verbatim
19068 #: ../src/guestfs-structs.pod:161
19069 #, no-wrap
19070 msgid ""
19071 " struct guestfs_dirent {\n"
19072 "   int64_t ino;\n"
19073 "   char ftyp;\n"
19074 "   char *name;\n"
19075 " };\n"
19076 " \n"
19077 msgstr ""
19078
19079 #. type: verbatim
19080 #: ../src/guestfs-structs.pod:167
19081 #, no-wrap
19082 msgid ""
19083 " struct guestfs_dirent_list {\n"
19084 "   uint32_t len; /* Number of elements in list. */\n"
19085 "   struct guestfs_dirent *val; /* Elements. */\n"
19086 " };\n"
19087 " \n"
19088 msgstr ""
19089
19090 #. type: verbatim
19091 #: ../src/guestfs-structs.pod:172
19092 #, no-wrap
19093 msgid ""
19094 " void guestfs_free_dirent (struct guestfs_free_dirent *);\n"
19095 " void guestfs_free_dirent_list (struct guestfs_free_dirent_list *);\n"
19096 "\n"
19097 msgstr ""
19098
19099 #. type: verbatim
19100 #: ../src/guestfs-structs.pod:177
19101 #, no-wrap
19102 msgid ""
19103 " struct guestfs_version {\n"
19104 "   int64_t major;\n"
19105 "   int64_t minor;\n"
19106 "   int64_t release;\n"
19107 "   char *extra;\n"
19108 " };\n"
19109 " \n"
19110 msgstr ""
19111
19112 #. type: verbatim
19113 #: ../src/guestfs-structs.pod:184
19114 #, no-wrap
19115 msgid ""
19116 " struct guestfs_version_list {\n"
19117 "   uint32_t len; /* Number of elements in list. */\n"
19118 "   struct guestfs_version *val; /* Elements. */\n"
19119 " };\n"
19120 " \n"
19121 msgstr ""
19122
19123 #. type: verbatim
19124 #: ../src/guestfs-structs.pod:189
19125 #, no-wrap
19126 msgid ""
19127 " void guestfs_free_version (struct guestfs_free_version *);\n"
19128 " void guestfs_free_version_list (struct guestfs_free_version_list *);\n"
19129 "\n"
19130 msgstr ""
19131
19132 #. type: =head2
19133 #: ../src/guestfs-structs.pod:192
19134 msgid "guestfs_xattr"
19135 msgstr ""
19136
19137 #. type: verbatim
19138 #: ../src/guestfs-structs.pod:194
19139 #, no-wrap
19140 msgid ""
19141 " struct guestfs_xattr {\n"
19142 "   char *attrname;\n"
19143 "   /* The next two fields describe a byte array. */\n"
19144 "   uint32_t attrval_len;\n"
19145 "   char *attrval;\n"
19146 " };\n"
19147 " \n"
19148 msgstr ""
19149
19150 #. type: verbatim
19151 #: ../src/guestfs-structs.pod:201
19152 #, no-wrap
19153 msgid ""
19154 " struct guestfs_xattr_list {\n"
19155 "   uint32_t len; /* Number of elements in list. */\n"
19156 "   struct guestfs_xattr *val; /* Elements. */\n"
19157 " };\n"
19158 " \n"
19159 msgstr ""
19160
19161 #. type: verbatim
19162 #: ../src/guestfs-structs.pod:206
19163 #, no-wrap
19164 msgid ""
19165 " void guestfs_free_xattr (struct guestfs_free_xattr *);\n"
19166 " void guestfs_free_xattr_list (struct guestfs_free_xattr_list *);\n"
19167 "\n"
19168 msgstr ""
19169
19170 #. type: =head2
19171 #: ../src/guestfs-structs.pod:209
19172 msgid "guestfs_inotify_event"
19173 msgstr ""
19174
19175 #. type: verbatim
19176 #: ../src/guestfs-structs.pod:211
19177 #, no-wrap
19178 msgid ""
19179 " struct guestfs_inotify_event {\n"
19180 "   int64_t in_wd;\n"
19181 "   uint32_t in_mask;\n"
19182 "   uint32_t in_cookie;\n"
19183 "   char *in_name;\n"
19184 " };\n"
19185 " \n"
19186 msgstr ""
19187
19188 #. type: verbatim
19189 #: ../src/guestfs-structs.pod:218
19190 #, no-wrap
19191 msgid ""
19192 " struct guestfs_inotify_event_list {\n"
19193 "   uint32_t len; /* Number of elements in list. */\n"
19194 "   struct guestfs_inotify_event *val; /* Elements. */\n"
19195 " };\n"
19196 " \n"
19197 msgstr ""
19198
19199 #. type: verbatim
19200 #: ../src/guestfs-structs.pod:223
19201 #, no-wrap
19202 msgid ""
19203 " void guestfs_free_inotify_event (struct guestfs_free_inotify_event *);\n"
19204 " void guestfs_free_inotify_event_list (struct guestfs_free_inotify_event_list *);\n"
19205 "\n"
19206 msgstr ""
19207
19208 #. type: =head2
19209 #: ../src/guestfs-structs.pod:226
19210 msgid "guestfs_partition"
19211 msgstr ""
19212
19213 #. type: verbatim
19214 #: ../src/guestfs-structs.pod:228
19215 #, no-wrap
19216 msgid ""
19217 " struct guestfs_partition {\n"
19218 "   int32_t part_num;\n"
19219 "   uint64_t part_start;\n"
19220 "   uint64_t part_end;\n"
19221 "   uint64_t part_size;\n"
19222 " };\n"
19223 " \n"
19224 msgstr ""
19225
19226 #. type: verbatim
19227 #: ../src/guestfs-structs.pod:235
19228 #, no-wrap
19229 msgid ""
19230 " struct guestfs_partition_list {\n"
19231 "   uint32_t len; /* Number of elements in list. */\n"
19232 "   struct guestfs_partition *val; /* Elements. */\n"
19233 " };\n"
19234 " \n"
19235 msgstr ""
19236
19237 #. type: verbatim
19238 #: ../src/guestfs-structs.pod:240
19239 #, no-wrap
19240 msgid ""
19241 " void guestfs_free_partition (struct guestfs_free_partition *);\n"
19242 " void guestfs_free_partition_list (struct guestfs_free_partition_list *);\n"
19243 "\n"
19244 msgstr ""
19245
19246 #. type: =head2
19247 #: ../src/guestfs-structs.pod:243
19248 msgid "guestfs_application"
19249 msgstr ""
19250
19251 #. type: verbatim
19252 #: ../src/guestfs-structs.pod:245
19253 #, no-wrap
19254 msgid ""
19255 " struct guestfs_application {\n"
19256 "   char *app_name;\n"
19257 "   char *app_display_name;\n"
19258 "   int32_t app_epoch;\n"
19259 "   char *app_version;\n"
19260 "   char *app_release;\n"
19261 "   char *app_install_path;\n"
19262 "   char *app_trans_path;\n"
19263 "   char *app_publisher;\n"
19264 "   char *app_url;\n"
19265 "   char *app_source_package;\n"
19266 "   char *app_summary;\n"
19267 "   char *app_description;\n"
19268 " };\n"
19269 " \n"
19270 msgstr ""
19271
19272 #. type: verbatim
19273 #: ../src/guestfs-structs.pod:260
19274 #, no-wrap
19275 msgid ""
19276 " struct guestfs_application_list {\n"
19277 "   uint32_t len; /* Number of elements in list. */\n"
19278 "   struct guestfs_application *val; /* Elements. */\n"
19279 " };\n"
19280 " \n"
19281 msgstr ""
19282
19283 #. type: verbatim
19284 #: ../src/guestfs-structs.pod:265
19285 #, no-wrap
19286 msgid ""
19287 " void guestfs_free_application (struct guestfs_free_application *);\n"
19288 " void guestfs_free_application_list (struct guestfs_free_application_list *);\n"
19289 "\n"
19290 msgstr ""
19291
19292 #. type: textblock
19293 #: ../fish/guestfish.pod:5
19294 msgid "guestfish - the libguestfs Filesystem Interactive SHell"
19295 msgstr ""
19296
19297 #. type: verbatim
19298 #: ../fish/guestfish.pod:9
19299 #, no-wrap
19300 msgid ""
19301 " guestfish [--options] [commands]\n"
19302 "\n"
19303 msgstr ""
19304
19305 #. type: verbatim
19306 #: ../fish/guestfish.pod:11
19307 #, no-wrap
19308 msgid ""
19309 " guestfish\n"
19310 "\n"
19311 msgstr ""
19312
19313 #. type: verbatim
19314 #: ../fish/guestfish.pod:13
19315 #, no-wrap
19316 msgid ""
19317 " guestfish [--ro|--rw] -a disk.img\n"
19318 "\n"
19319 msgstr ""
19320
19321 #. type: verbatim
19322 #: ../fish/guestfish.pod:15
19323 #, no-wrap
19324 msgid ""
19325 " guestfish [--ro|--rw] -a disk.img -m dev[:mountpoint]\n"
19326 "\n"
19327 msgstr ""
19328
19329 #. type: verbatim
19330 #: ../fish/guestfish.pod:17
19331 #, no-wrap
19332 msgid ""
19333 " guestfish -d libvirt-domain\n"
19334 "\n"
19335 msgstr ""
19336
19337 #. type: verbatim
19338 #: ../fish/guestfish.pod:19
19339 #, no-wrap
19340 msgid ""
19341 " guestfish [--ro|--rw] -a disk.img -i\n"
19342 "\n"
19343 msgstr ""
19344
19345 #. type: verbatim
19346 #: ../fish/guestfish.pod:21
19347 #, no-wrap
19348 msgid ""
19349 " guestfish -d libvirt-domain -i\n"
19350 "\n"
19351 msgstr ""
19352
19353 #. type: =head1
19354 #: ../fish/guestfish.pod:23 ../fuse/guestmount.pod:15 ../tools/virt-edit.pl:44
19355 #: ../tools/virt-win-reg.pl:51 ../tools/virt-tar.pl:64
19356 msgid "WARNING"
19357 msgstr ""
19358
19359 #. type: textblock
19360 #: ../fish/guestfish.pod:25
19361 msgid ""
19362 "Using guestfish in read/write mode on live virtual machines can be "
19363 "dangerous, potentially causing disk corruption.  Use the I<--ro> (read-only) "
19364 "option to use guestfish safely if the disk image or virtual machine might be "
19365 "live."
19366 msgstr ""
19367
19368 #. type: textblock
19369 #: ../fish/guestfish.pod:32
19370 msgid ""
19371 "Guestfish is a shell and command-line tool for examining and modifying "
19372 "virtual machine filesystems.  It uses libguestfs and exposes all of the "
19373 "functionality of the guestfs API, see L<guestfs(3)>."
19374 msgstr ""
19375
19376 #. type: textblock
19377 #: ../fish/guestfish.pod:36
19378 msgid ""
19379 "Guestfish gives you structured access to the libguestfs API, from shell "
19380 "scripts or the command line or interactively.  If you want to rescue a "
19381 "broken virtual machine image, you should look at the L<virt-rescue(1)> "
19382 "command."
19383 msgstr ""
19384
19385 #. type: =head1
19386 #: ../fish/guestfish.pod:41 ../fish/guestfish.pod:947
19387 #: ../fuse/guestmount.pod:39 ../tools/virt-edit.pl:63 ../tools/virt-tar.pl:50
19388 msgid "EXAMPLES"
19389 msgstr ""
19390
19391 #. type: =head2
19392 #: ../fish/guestfish.pod:43
19393 msgid "As an interactive shell"
19394 msgstr ""
19395
19396 #. type: verbatim
19397 #: ../fish/guestfish.pod:45
19398 #, no-wrap
19399 msgid ""
19400 " $ guestfish\n"
19401 " \n"
19402 msgstr ""
19403
19404 #. type: verbatim
19405 #: ../fish/guestfish.pod:47
19406 #, no-wrap
19407 msgid ""
19408 " Welcome to guestfish, the libguestfs filesystem interactive shell for\n"
19409 " editing virtual machine filesystems.\n"
19410 " \n"
19411 msgstr ""
19412
19413 #. type: verbatim
19414 #: ../fish/guestfish.pod:50
19415 #, no-wrap
19416 msgid ""
19417 " Type: 'help' for a list of commands\n"
19418 "       'man' to read the manual\n"
19419 "       'quit' to quit the shell\n"
19420 " \n"
19421 msgstr ""
19422
19423 #. type: verbatim
19424 #: ../fish/guestfish.pod:54
19425 #, no-wrap
19426 msgid ""
19427 " ><fs> add-ro disk.img\n"
19428 " ><fs> run\n"
19429 " ><fs> list-filesystems\n"
19430 " /dev/sda1: ext4\n"
19431 " /dev/vg_guest/lv_root: ext4\n"
19432 " /dev/vg_guest/lv_swap: swap\n"
19433 " ><fs> mount /dev/vg_guest/lv_root /\n"
19434 " ><fs> cat /etc/fstab\n"
19435 " # /etc/fstab\n"
19436 " # Created by anaconda\n"
19437 " [...]\n"
19438 " ><fs> exit\n"
19439 "\n"
19440 msgstr ""
19441
19442 #. type: =head2
19443 #: ../fish/guestfish.pod:67
19444 msgid "From shell scripts"
19445 msgstr ""
19446
19447 #. type: textblock
19448 #: ../fish/guestfish.pod:69
19449 msgid "Create a new C</etc/motd> file in a guest or disk image:"
19450 msgstr ""
19451
19452 #. type: verbatim
19453 #: ../fish/guestfish.pod:71
19454 #, no-wrap
19455 msgid ""
19456 " guestfish <<_EOF_\n"
19457 " add disk.img\n"
19458 " run\n"
19459 " mount /dev/vg_guest/lv_root /\n"
19460 " write /etc/motd \"Welcome, new users\"\n"
19461 " _EOF_\n"
19462 "\n"
19463 msgstr ""
19464
19465 #. type: textblock
19466 #: ../fish/guestfish.pod:78
19467 msgid "List the LVM logical volumes in a disk image:"
19468 msgstr ""
19469
19470 #. type: verbatim
19471 #: ../fish/guestfish.pod:80
19472 #, no-wrap
19473 msgid ""
19474 " guestfish -a disk.img --ro <<_EOF_\n"
19475 " run\n"
19476 " lvs\n"
19477 " _EOF_\n"
19478 "\n"
19479 msgstr ""
19480
19481 #. type: textblock
19482 #: ../fish/guestfish.pod:85
19483 msgid "List all the filesystems in a disk image:"
19484 msgstr ""
19485
19486 #. type: verbatim
19487 #: ../fish/guestfish.pod:87
19488 #, no-wrap
19489 msgid ""
19490 " guestfish -a disk.img --ro <<_EOF_\n"
19491 " run\n"
19492 " list-filesystems\n"
19493 " _EOF_\n"
19494 "\n"
19495 msgstr ""
19496
19497 #. type: =head2
19498 #: ../fish/guestfish.pod:92
19499 msgid "On one command line"
19500 msgstr ""
19501
19502 #. type: textblock
19503 #: ../fish/guestfish.pod:94
19504 msgid "Update C</etc/resolv.conf> in a guest:"
19505 msgstr ""
19506
19507 #. type: verbatim
19508 #: ../fish/guestfish.pod:96
19509 #, no-wrap
19510 msgid ""
19511 " guestfish \\\n"
19512 "   add disk.img : run : mount /dev/vg_guest/lv_root / : \\\n"
19513 "   write /etc/resolv.conf \"nameserver 1.2.3.4\"\n"
19514 "\n"
19515 msgstr ""
19516
19517 #. type: textblock
19518 #: ../fish/guestfish.pod:100
19519 msgid "Edit C</boot/grub/grub.conf> interactively:"
19520 msgstr ""
19521
19522 #. type: verbatim
19523 #: ../fish/guestfish.pod:102
19524 #, no-wrap
19525 msgid ""
19526 " guestfish --rw --add disk.img \\\n"
19527 "   --mount /dev/vg_guest/lv_root \\\n"
19528 "   --mount /dev/sda1:/boot \\\n"
19529 "   edit /boot/grub/grub.conf\n"
19530 "\n"
19531 msgstr ""
19532
19533 #. type: =head2
19534 #: ../fish/guestfish.pod:107
19535 msgid "Mount disks automatically"
19536 msgstr ""
19537
19538 #. type: textblock
19539 #: ../fish/guestfish.pod:109
19540 msgid ""
19541 "Use the I<-i> option to automatically mount the disks from a virtual machine:"
19542 msgstr ""
19543
19544 #. type: verbatim
19545 #: ../fish/guestfish.pod:112
19546 #, no-wrap
19547 msgid ""
19548 " guestfish --ro -a disk.img -i cat /etc/group\n"
19549 "\n"
19550 msgstr ""
19551
19552 #. type: verbatim
19553 #: ../fish/guestfish.pod:114
19554 #, no-wrap
19555 msgid ""
19556 " guestfish --ro -d libvirt-domain -i cat /etc/group\n"
19557 "\n"
19558 msgstr ""
19559
19560 #. type: textblock
19561 #: ../fish/guestfish.pod:116
19562 msgid "Another way to edit C</boot/grub/grub.conf> interactively is:"
19563 msgstr ""
19564
19565 #. type: verbatim
19566 #: ../fish/guestfish.pod:118
19567 #, no-wrap
19568 msgid ""
19569 " guestfish --rw -a disk.img -i edit /boot/grub/grub.conf\n"
19570 "\n"
19571 msgstr ""
19572
19573 #. type: =head2
19574 #: ../fish/guestfish.pod:120
19575 msgid "As a script interpreter"
19576 msgstr ""
19577
19578 #. type: textblock
19579 #: ../fish/guestfish.pod:122
19580 msgid "Create a 100MB disk containing an ext2-formatted partition:"
19581 msgstr ""
19582
19583 #. type: verbatim
19584 #: ../fish/guestfish.pod:124
19585 #, no-wrap
19586 msgid ""
19587 " #!/usr/bin/guestfish -f\n"
19588 " sparse test1.img 100M\n"
19589 " run\n"
19590 " part-disk /dev/sda mbr\n"
19591 " mkfs ext2 /dev/sda1\n"
19592 "\n"
19593 msgstr ""
19594
19595 #. type: =head2
19596 #: ../fish/guestfish.pod:130
19597 msgid "Start with a prepared disk"
19598 msgstr ""
19599
19600 #. type: textblock
19601 #: ../fish/guestfish.pod:132
19602 msgid ""
19603 "An alternate way to create a 100MB disk called C<test1.img> containing a "
19604 "single ext2-formatted partition:"
19605 msgstr ""
19606
19607 #. type: verbatim
19608 #: ../fish/guestfish.pod:135
19609 #, no-wrap
19610 msgid ""
19611 " guestfish -N fs\n"
19612 "\n"
19613 msgstr ""
19614
19615 #. type: textblock
19616 #: ../fish/guestfish.pod:137
19617 msgid "To list what is available do:"
19618 msgstr ""
19619
19620 #. type: verbatim
19621 #: ../fish/guestfish.pod:139 ../fish/guestfish.pod:938
19622 #, no-wrap
19623 msgid ""
19624 " guestfish -N help | less\n"
19625 "\n"
19626 msgstr ""
19627
19628 #. type: =head2
19629 #: ../fish/guestfish.pod:141
19630 msgid "Remote control"
19631 msgstr ""
19632
19633 #. type: verbatim
19634 #: ../fish/guestfish.pod:143
19635 #, no-wrap
19636 msgid ""
19637 " eval \"`guestfish --listen`\"\n"
19638 " guestfish --remote add-ro disk.img\n"
19639 " guestfish --remote run\n"
19640 " guestfish --remote lvs\n"
19641 "\n"
19642 msgstr ""
19643
19644 #. type: =head1
19645 #: ../fish/guestfish.pod:148 ../test-tool/libguestfs-test-tool.pod:37
19646 #: ../fuse/guestmount.pod:83 ../tools/virt-edit.pl:81
19647 #: ../tools/virt-win-reg.pl:96 ../tools/virt-list-filesystems.pl:53
19648 #: ../tools/virt-tar.pl:103 ../tools/virt-make-fs.pl:153
19649 #: ../tools/virt-list-partitions.pl:54
19650 msgid "OPTIONS"
19651 msgstr ""
19652
19653 #. type: =item
19654 #: ../fish/guestfish.pod:152 ../fuse/guestmount.pod:141
19655 #: ../tools/virt-edit.pl:89 ../tools/virt-win-reg.pl:104
19656 #: ../tools/virt-list-filesystems.pl:61 ../tools/virt-tar.pl:111
19657 #: ../tools/virt-make-fs.pl:161 ../tools/virt-list-partitions.pl:62
19658 msgid "B<--help>"
19659 msgstr ""
19660
19661 #. type: textblock
19662 #: ../fish/guestfish.pod:154
19663 msgid "Displays general help on options."
19664 msgstr ""
19665
19666 #. type: =item
19667 #: ../fish/guestfish.pod:156
19668 msgid "B<-h>"
19669 msgstr ""
19670
19671 #. type: =item
19672 #: ../fish/guestfish.pod:158
19673 msgid "B<--cmd-help>"
19674 msgstr ""
19675
19676 #. type: textblock
19677 #: ../fish/guestfish.pod:160
19678 msgid "Lists all available guestfish commands."
19679 msgstr ""
19680
19681 #. type: =item
19682 #: ../fish/guestfish.pod:162
19683 msgid "B<-h cmd>"
19684 msgstr ""
19685
19686 #. type: =item
19687 #: ../fish/guestfish.pod:164
19688 msgid "B<--cmd-help cmd>"
19689 msgstr ""
19690
19691 #. type: textblock
19692 #: ../fish/guestfish.pod:166
19693 msgid "Displays detailed help on a single command C<cmd>."
19694 msgstr ""
19695
19696 #. type: =item
19697 #: ../fish/guestfish.pod:168
19698 msgid "B<-a image>"
19699 msgstr ""
19700
19701 #. type: =item
19702 #: ../fish/guestfish.pod:170
19703 msgid "B<--add image>"
19704 msgstr ""
19705
19706 #. type: textblock
19707 #: ../fish/guestfish.pod:172
19708 msgid "Add a block device or virtual machine image to the shell."
19709 msgstr ""
19710
19711 #. type: textblock
19712 #: ../fish/guestfish.pod:174 ../fuse/guestmount.pod:91
19713 msgid ""
19714 "The format of the disk image is auto-detected.  To override this and force a "
19715 "particular format use the I<--format=..> option."
19716 msgstr ""
19717
19718 #. type: textblock
19719 #: ../fish/guestfish.pod:177
19720 msgid ""
19721 "Using this flag is mostly equivalent to using the C<add> command, with "
19722 "C<readonly:true> if the I<--ro> flag was given, and with C<format:...> if "
19723 "the I<--format=...> flag was given."
19724 msgstr ""
19725
19726 #. type: =item
19727 #: ../fish/guestfish.pod:181
19728 msgid "B<-c URI>"
19729 msgstr ""
19730
19731 #. type: =item
19732 #: ../fish/guestfish.pod:183
19733 msgid "B<--connect URI>"
19734 msgstr ""
19735
19736 #. type: textblock
19737 #: ../fish/guestfish.pod:185 ../fuse/guestmount.pod:96
19738 msgid ""
19739 "When used in conjunction with the I<-d> option, this specifies the libvirt "
19740 "URI to use.  The default is to use the default libvirt connection."
19741 msgstr ""
19742
19743 #. type: =item
19744 #: ../fish/guestfish.pod:189
19745 msgid "B<--csh>"
19746 msgstr ""
19747
19748 #. type: textblock
19749 #: ../fish/guestfish.pod:191
19750 msgid ""
19751 "If using the I<--listen> option and a csh-like shell, use this option.  See "
19752 "section L</REMOTE CONTROL AND CSH> below."
19753 msgstr ""
19754
19755 #. type: =item
19756 #: ../fish/guestfish.pod:194
19757 msgid "B<-d libvirt-domain>"
19758 msgstr ""
19759
19760 #. type: =item
19761 #: ../fish/guestfish.pod:196
19762 msgid "B<--domain libvirt-domain>"
19763 msgstr ""
19764
19765 #. type: textblock
19766 #: ../fish/guestfish.pod:198 ../fuse/guestmount.pod:102
19767 msgid ""
19768 "Add disks from the named libvirt domain.  If the I<--ro> option is also "
19769 "used, then any libvirt domain can be used.  However in write mode, only "
19770 "libvirt domains which are shut down can be named here."
19771 msgstr ""
19772
19773 #. type: textblock
19774 #: ../fish/guestfish.pod:202
19775 msgid ""
19776 "Using this flag is mostly equivalent to using the C<add-domain> command, "
19777 "with C<readonly:true> if the I<--ro> flag was given, and with C<format:...> "
19778 "if the I<--format:...> flag was given."
19779 msgstr ""
19780
19781 #. type: =item
19782 #: ../fish/guestfish.pod:206
19783 msgid "B<-D>"
19784 msgstr ""
19785
19786 #. type: =item
19787 #: ../fish/guestfish.pod:208
19788 msgid "B<--no-dest-paths>"
19789 msgstr ""
19790
19791 #. type: textblock
19792 #: ../fish/guestfish.pod:210
19793 msgid ""
19794 "Don't tab-complete paths on the guest filesystem.  It is useful to be able "
19795 "to hit the tab key to complete paths on the guest filesystem, but this "
19796 "causes extra \"hidden\" guestfs calls to be made, so this option is here to "
19797 "allow this feature to be disabled."
19798 msgstr ""
19799
19800 #. type: =item
19801 #: ../fish/guestfish.pod:215 ../fuse/guestmount.pod:118
19802 msgid "B<--echo-keys>"
19803 msgstr ""
19804
19805 #. type: textblock
19806 #: ../fish/guestfish.pod:217 ../fuse/guestmount.pod:120
19807 msgid ""
19808 "When prompting for keys and passphrases, guestfish normally turns echoing "
19809 "off so you cannot see what you are typing.  If you are not worried about "
19810 "Tempest attacks and there is no one else in the room you can specify this "
19811 "flag to see what you are typing."
19812 msgstr ""
19813
19814 #. type: =item
19815 #: ../fish/guestfish.pod:222
19816 msgid "B<-f file>"
19817 msgstr ""
19818
19819 #. type: =item
19820 #: ../fish/guestfish.pod:224
19821 msgid "B<--file file>"
19822 msgstr ""
19823
19824 #. type: textblock
19825 #: ../fish/guestfish.pod:226
19826 msgid "Read commands from C<file>.  To write pure guestfish scripts, use:"
19827 msgstr ""
19828
19829 #. type: verbatim
19830 #: ../fish/guestfish.pod:229
19831 #, no-wrap
19832 msgid ""
19833 " #!/usr/bin/guestfish -f\n"
19834 "\n"
19835 msgstr ""
19836
19837 #. type: =item
19838 #: ../fish/guestfish.pod:231
19839 msgid "B<--format=raw|qcow2|..>"
19840 msgstr ""
19841
19842 #. type: =item
19843 #: ../fish/guestfish.pod:233
19844 msgid "B<--format>"
19845 msgstr ""
19846
19847 #. type: textblock
19848 #: ../fish/guestfish.pod:235 ../fuse/guestmount.pod:127
19849 msgid ""
19850 "The default for the I<-a> option is to auto-detect the format of the disk "
19851 "image.  Using this forces the disk format for I<-a> options which follow on "
19852 "the command line.  Using I<--format> with no argument switches back to auto-"
19853 "detection for subsequent I<-a> options."
19854 msgstr ""
19855
19856 #. type: verbatim
19857 #: ../fish/guestfish.pod:242
19858 #, no-wrap
19859 msgid ""
19860 " guestfish --format=raw -a disk.img\n"
19861 "\n"
19862 msgstr ""
19863
19864 #. type: textblock
19865 #: ../fish/guestfish.pod:244
19866 msgid "forces raw format (no auto-detection) for C<disk.img>."
19867 msgstr ""
19868
19869 #. type: verbatim
19870 #: ../fish/guestfish.pod:246
19871 #, no-wrap
19872 msgid ""
19873 " guestfish --format=raw -a disk.img --format -a another.img\n"
19874 "\n"
19875 msgstr ""
19876
19877 #. type: textblock
19878 #: ../fish/guestfish.pod:248
19879 msgid ""
19880 "forces raw format (no auto-detection) for C<disk.img> and reverts to auto-"
19881 "detection for C<another.img>."
19882 msgstr ""
19883
19884 #. type: textblock
19885 #: ../fish/guestfish.pod:251
19886 msgid ""
19887 "If you have untrusted raw-format guest disk images, you should use this "
19888 "option to specify the disk format.  This avoids a possible security problem "
19889 "with malicious guests (CVE-2010-3851).  See also L</add-drive-opts>."
19890 msgstr ""
19891
19892 #. type: =item
19893 #: ../fish/guestfish.pod:256
19894 msgid "B<-i>"
19895 msgstr ""
19896
19897 #. type: =item
19898 #: ../fish/guestfish.pod:258
19899 msgid "B<--inspector>"
19900 msgstr ""
19901
19902 #. type: textblock
19903 #: ../fish/guestfish.pod:260 ../fuse/guestmount.pod:147
19904 msgid ""
19905 "Using L<virt-inspector(1)> code, inspect the disks looking for an operating "
19906 "system and mount filesystems as they would be mounted on the real virtual "
19907 "machine."
19908 msgstr ""
19909
19910 #. type: textblock
19911 #: ../fish/guestfish.pod:264
19912 msgid "Typical usage is either:"
19913 msgstr ""
19914
19915 #. type: verbatim
19916 #: ../fish/guestfish.pod:266
19917 #, no-wrap
19918 msgid ""
19919 " guestfish -d myguest -i\n"
19920 "\n"
19921 msgstr ""
19922
19923 #. type: textblock
19924 #: ../fish/guestfish.pod:268
19925 msgid "(for an inactive libvirt domain called I<myguest>), or:"
19926 msgstr ""
19927
19928 #. type: verbatim
19929 #: ../fish/guestfish.pod:270
19930 #, no-wrap
19931 msgid ""
19932 " guestfish --ro -d myguest -i\n"
19933 "\n"
19934 msgstr ""
19935
19936 #. type: textblock
19937 #: ../fish/guestfish.pod:272
19938 msgid "(for active domains, readonly), or specify the block device directly:"
19939 msgstr ""
19940
19941 #. type: verbatim
19942 #: ../fish/guestfish.pod:274
19943 #, no-wrap
19944 msgid ""
19945 " guestfish --rw -a /dev/Guests/MyGuest -i\n"
19946 "\n"
19947 msgstr ""
19948
19949 #. type: textblock
19950 #: ../fish/guestfish.pod:276
19951 msgid ""
19952 "Note that the command line syntax changed slightly over older versions of "
19953 "guestfish.  You can still use the old syntax:"
19954 msgstr ""
19955
19956 #. type: verbatim
19957 #: ../fish/guestfish.pod:279
19958 #, no-wrap
19959 msgid ""
19960 " guestfish [--ro] -i disk.img\n"
19961 "\n"
19962 msgstr ""
19963
19964 #. type: verbatim
19965 #: ../fish/guestfish.pod:281
19966 #, no-wrap
19967 msgid ""
19968 " guestfish [--ro] -i libvirt-domain\n"
19969 "\n"
19970 msgstr ""
19971
19972 #. type: textblock
19973 #: ../fish/guestfish.pod:283
19974 msgid ""
19975 "Using this flag is mostly equivalent to using the C<inspect-os> command and "
19976 "then using other commands to mount the filesystems that were found."
19977 msgstr ""
19978
19979 #. type: =item
19980 #: ../fish/guestfish.pod:287 ../fuse/guestmount.pod:151
19981 msgid "B<--keys-from-stdin>"
19982 msgstr ""
19983
19984 #. type: textblock
19985 #: ../fish/guestfish.pod:289 ../fuse/guestmount.pod:153
19986 msgid ""
19987 "Read key or passphrase parameters from stdin.  The default is to try to read "
19988 "passphrases from the user by opening C</dev/tty>."
19989 msgstr ""
19990
19991 #. type: =item
19992 #: ../fish/guestfish.pod:292
19993 msgid "B<--listen>"
19994 msgstr ""
19995
19996 #. type: textblock
19997 #: ../fish/guestfish.pod:294
19998 msgid ""
19999 "Fork into the background and listen for remote commands.  See section L</"
20000 "REMOTE CONTROL GUESTFISH OVER A SOCKET> below."
20001 msgstr ""
20002
20003 #. type: =item
20004 #: ../fish/guestfish.pod:297 ../fuse/guestmount.pod:156
20005 msgid "B<--live>"
20006 msgstr ""
20007
20008 #. type: textblock
20009 #: ../fish/guestfish.pod:299 ../fuse/guestmount.pod:158
20010 msgid ""
20011 "Connect to a live virtual machine.  (Experimental, see L<guestfs(3)/"
20012 "ATTACHING TO RUNNING DAEMONS>)."
20013 msgstr ""
20014
20015 #. type: =item
20016 #: ../fish/guestfish.pod:302 ../fuse/guestmount.pod:161
20017 msgid "B<-m dev[:mountpoint[:options]]>"
20018 msgstr ""
20019
20020 #. type: =item
20021 #: ../fish/guestfish.pod:304 ../fuse/guestmount.pod:163
20022 msgid "B<--mount dev[:mountpoint[:options]]>"
20023 msgstr ""
20024
20025 #. type: textblock
20026 #: ../fish/guestfish.pod:306
20027 msgid "Mount the named partition or logical volume on the given mountpoint."
20028 msgstr ""
20029
20030 #. type: textblock
20031 #: ../fish/guestfish.pod:308
20032 msgid "If the mountpoint is omitted, it defaults to C</>."
20033 msgstr ""
20034
20035 #. type: textblock
20036 #: ../fish/guestfish.pod:310
20037 msgid "You have to mount something on C</> before most commands will work."
20038 msgstr ""
20039
20040 #. type: textblock
20041 #: ../fish/guestfish.pod:312
20042 msgid ""
20043 "If any I<-m> or I<--mount> options are given, the guest is automatically "
20044 "launched."
20045 msgstr ""
20046
20047 #. type: textblock
20048 #: ../fish/guestfish.pod:315
20049 msgid ""
20050 "If you don't know what filesystems a disk image contains, you can either run "
20051 "guestfish without this option, then list the partitions, filesystems and LVs "
20052 "available (see L</list-partitions>, L</list-filesystems> and L</lvs> "
20053 "commands), or you can use the L<virt-filesystems(1)> program."
20054 msgstr ""
20055
20056 #. type: textblock
20057 #: ../fish/guestfish.pod:321 ../fuse/guestmount.pod:171
20058 msgid ""
20059 "The third (and rarely used) part of the mount parameter is the list of mount "
20060 "options used to mount the underlying filesystem.  If this is not given, then "
20061 "the mount options are either the empty string or C<ro> (the latter if the "
20062 "I<--ro> flag is used).  By specifying the mount options, you override this "
20063 "default choice.  Probably the only time you would use this is to enable ACLs "
20064 "and/or extended attributes if the filesystem can support them:"
20065 msgstr ""
20066
20067 #. type: verbatim
20068 #: ../fish/guestfish.pod:329 ../fuse/guestmount.pod:179
20069 #, no-wrap
20070 msgid ""
20071 " -m /dev/sda1:/:acl,user_xattr\n"
20072 "\n"
20073 msgstr ""
20074
20075 #. type: textblock
20076 #: ../fish/guestfish.pod:331
20077 msgid "Using this flag is equivalent to using the C<mount-options> command."
20078 msgstr ""
20079
20080 #. type: =item
20081 #: ../fish/guestfish.pod:333
20082 msgid "B<-n>"
20083 msgstr ""
20084
20085 #. type: =item
20086 #: ../fish/guestfish.pod:335
20087 msgid "B<--no-sync>"
20088 msgstr ""
20089
20090 #. type: textblock
20091 #: ../fish/guestfish.pod:337
20092 msgid ""
20093 "Disable autosync.  This is enabled by default.  See the discussion of "
20094 "autosync in the L<guestfs(3)> manpage."
20095 msgstr ""
20096
20097 #. type: =item
20098 #: ../fish/guestfish.pod:340
20099 msgid "B<-N type>"
20100 msgstr ""
20101
20102 #. type: =item
20103 #: ../fish/guestfish.pod:342
20104 msgid "B<--new type>"
20105 msgstr ""
20106
20107 #. type: =item
20108 #: ../fish/guestfish.pod:344
20109 msgid "B<-N help>"
20110 msgstr ""
20111
20112 #. type: textblock
20113 #: ../fish/guestfish.pod:346
20114 msgid ""
20115 "Prepare a fresh disk image formatted as \"type\".  This is an alternative to "
20116 "the I<-a> option: whereas I<-a> adds an existing disk, I<-N> creates a "
20117 "preformatted disk with a filesystem and adds it.  See L</PREPARED DISK "
20118 "IMAGES> below."
20119 msgstr ""
20120
20121 #. type: =item
20122 #: ../fish/guestfish.pod:351
20123 msgid "B<--progress-bars>"
20124 msgstr ""
20125
20126 #. type: textblock
20127 #: ../fish/guestfish.pod:353
20128 msgid "Enable progress bars, even when guestfish is used non-interactively."
20129 msgstr ""
20130
20131 #. type: textblock
20132 #: ../fish/guestfish.pod:355
20133 msgid ""
20134 "Progress bars are enabled by default when guestfish is used as an "
20135 "interactive shell."
20136 msgstr ""
20137
20138 #. type: =item
20139 #: ../fish/guestfish.pod:358
20140 msgid "B<--no-progress-bars>"
20141 msgstr ""
20142
20143 #. type: textblock
20144 #: ../fish/guestfish.pod:360
20145 msgid "Disable progress bars."
20146 msgstr ""
20147
20148 #. type: =item
20149 #: ../fish/guestfish.pod:362
20150 msgid "B<--remote[=pid]>"
20151 msgstr ""
20152
20153 #. type: textblock
20154 #: ../fish/guestfish.pod:364
20155 msgid ""
20156 "Send remote commands to C<$GUESTFISH_PID> or C<pid>.  See section L</REMOTE "
20157 "CONTROL GUESTFISH OVER A SOCKET> below."
20158 msgstr ""
20159
20160 #. type: =item
20161 #: ../fish/guestfish.pod:367
20162 msgid "B<-r>"
20163 msgstr ""
20164
20165 #. type: =item
20166 #: ../fish/guestfish.pod:369
20167 msgid "B<--ro>"
20168 msgstr ""
20169
20170 #. type: textblock
20171 #: ../fish/guestfish.pod:371
20172 msgid ""
20173 "This changes the I<-a>, I<-d> and I<-m> options so that disks are added and "
20174 "mounts are done read-only."
20175 msgstr ""
20176
20177 #. type: textblock
20178 #: ../fish/guestfish.pod:374
20179 msgid ""
20180 "The option must always be used if the disk image or virtual machine might be "
20181 "running, and is generally recommended in cases where you don't need write "
20182 "access to the disk."
20183 msgstr ""
20184
20185 #. type: textblock
20186 #: ../fish/guestfish.pod:378
20187 msgid ""
20188 "Note that prepared disk images created with I<-N> are not affected by this "
20189 "option.  Also commands like C<add> are not affected - you have to specify "
20190 "the C<readonly:true> option explicitly if you need it."
20191 msgstr ""
20192
20193 #. type: textblock
20194 #: ../fish/guestfish.pod:382
20195 msgid "See also L</OPENING DISKS FOR READ AND WRITE> below."
20196 msgstr ""
20197
20198 #. type: =item
20199 #: ../fish/guestfish.pod:384 ../fuse/guestmount.pod:235
20200 msgid "B<--selinux>"
20201 msgstr ""
20202
20203 #. type: textblock
20204 #: ../fish/guestfish.pod:386
20205 msgid "Enable SELinux support for the guest.  See L<guestfs(3)/SELINUX>."
20206 msgstr ""
20207
20208 #. type: =item
20209 #: ../fish/guestfish.pod:388
20210 msgid "B<-v>"
20211 msgstr ""
20212
20213 #. type: =item
20214 #: ../fish/guestfish.pod:390
20215 msgid "B<--verbose>"
20216 msgstr ""
20217
20218 #. type: textblock
20219 #: ../fish/guestfish.pod:392
20220 msgid ""
20221 "Enable very verbose messages.  This is particularly useful if you find a bug."
20222 msgstr ""
20223
20224 #. type: =item
20225 #: ../fish/guestfish.pod:395
20226 msgid "B<-V>"
20227 msgstr ""
20228
20229 #. type: =item
20230 #: ../fish/guestfish.pod:397 ../tools/virt-edit.pl:97
20231 #: ../tools/virt-win-reg.pl:112 ../tools/virt-list-filesystems.pl:69
20232 #: ../tools/virt-tar.pl:119 ../tools/virt-make-fs.pl:169
20233 #: ../tools/virt-list-partitions.pl:70
20234 msgid "B<--version>"
20235 msgstr ""
20236
20237 #. type: textblock
20238 #: ../fish/guestfish.pod:399
20239 msgid "Display the guestfish / libguestfs version number and exit."
20240 msgstr ""
20241
20242 #. type: =item
20243 #: ../fish/guestfish.pod:401
20244 msgid "B<-w>"
20245 msgstr ""
20246
20247 #. type: =item
20248 #: ../fish/guestfish.pod:403
20249 msgid "B<--rw>"
20250 msgstr ""
20251
20252 #. type: textblock
20253 #: ../fish/guestfish.pod:405 ../fuse/guestmount.pod:249
20254 msgid ""
20255 "This changes the I<-a>, I<-d> and I<-m> options so that disks are added and "
20256 "mounts are done read-write."
20257 msgstr ""
20258
20259 #. type: textblock
20260 #: ../fish/guestfish.pod:408
20261 msgid "See L</OPENING DISKS FOR READ AND WRITE> below."
20262 msgstr ""
20263
20264 #. type: =item
20265 #: ../fish/guestfish.pod:410
20266 msgid "B<-x>"
20267 msgstr ""
20268
20269 #. type: textblock
20270 #: ../fish/guestfish.pod:412
20271 msgid "Echo each command before executing it."
20272 msgstr ""
20273
20274 #. type: =head1
20275 #: ../fish/guestfish.pod:416
20276 msgid "COMMANDS ON COMMAND LINE"
20277 msgstr ""
20278
20279 #. type: textblock
20280 #: ../fish/guestfish.pod:418
20281 msgid ""
20282 "Any additional (non-option) arguments are treated as commands to execute."
20283 msgstr ""
20284
20285 #. type: textblock
20286 #: ../fish/guestfish.pod:421
20287 msgid ""
20288 "Commands to execute should be separated by a colon (C<:>), where the colon "
20289 "is a separate parameter.  Thus:"
20290 msgstr ""
20291
20292 #. type: verbatim
20293 #: ../fish/guestfish.pod:424
20294 #, no-wrap
20295 msgid ""
20296 " guestfish cmd [args...] : cmd [args...] : cmd [args...] ...\n"
20297 "\n"
20298 msgstr ""
20299
20300 #. type: textblock
20301 #: ../fish/guestfish.pod:426
20302 msgid ""
20303 "If there are no additional arguments, then we enter a shell, either an "
20304 "interactive shell with a prompt (if the input is a terminal) or a non-"
20305 "interactive shell."
20306 msgstr ""
20307
20308 #. type: textblock
20309 #: ../fish/guestfish.pod:430
20310 msgid ""
20311 "In either command line mode or non-interactive shell, the first command that "
20312 "gives an error causes the whole shell to exit.  In interactive mode (with a "
20313 "prompt) if a command fails, you can continue to enter commands."
20314 msgstr ""
20315
20316 #. type: =head1
20317 #: ../fish/guestfish.pod:435
20318 msgid "USING launch (OR run)"
20319 msgstr ""
20320
20321 #. type: textblock
20322 #: ../fish/guestfish.pod:437
20323 msgid ""
20324 "As with L<guestfs(3)>, you must first configure your guest by adding disks, "
20325 "then launch it, then mount any disks you need, and finally issue actions/"
20326 "commands.  So the general order of the day is:"
20327 msgstr ""
20328
20329 #. type: textblock
20330 #: ../fish/guestfish.pod:445
20331 msgid "add or -a/--add"
20332 msgstr ""
20333
20334 #. type: textblock
20335 #: ../fish/guestfish.pod:449
20336 msgid "launch (aka run)"
20337 msgstr ""
20338
20339 #. type: textblock
20340 #: ../fish/guestfish.pod:453
20341 msgid "mount or -m/--mount"
20342 msgstr ""
20343
20344 #. type: textblock
20345 #: ../fish/guestfish.pod:457
20346 msgid "any other commands"
20347 msgstr ""
20348
20349 #. type: textblock
20350 #: ../fish/guestfish.pod:461
20351 msgid ""
20352 "C<run> is a synonym for C<launch>.  You must C<launch> (or C<run>)  your "
20353 "guest before mounting or performing any other commands."
20354 msgstr ""
20355
20356 #. type: textblock
20357 #: ../fish/guestfish.pod:464
20358 msgid ""
20359 "The only exception is that if any of the I<-i>, I<-m>, I<--mount>, I<-N> or "
20360 "I<--new> options were given then C<run> is done automatically, simply "
20361 "because guestfish can't perform the action you asked for without doing this."
20362 msgstr ""
20363
20364 #. type: =head1
20365 #: ../fish/guestfish.pod:469
20366 msgid "OPENING DISKS FOR READ AND WRITE"
20367 msgstr ""
20368
20369 #. type: textblock
20370 #: ../fish/guestfish.pod:471
20371 msgid ""
20372 "The guestfish, L<guestmount(1)> and L<virt-rescue(1)> options I<--ro> and "
20373 "I<--rw> affect whether the other command line options I<-a>, I<-c>, I<-d>, "
20374 "I<-i> and I<-m> open disk images read-only or for writing."
20375 msgstr ""
20376
20377 #. type: textblock
20378 #: ../fish/guestfish.pod:476
20379 msgid ""
20380 "In libguestfs E<le> 1.10, guestfish, guestmount and virt-rescue defaulted to "
20381 "opening disk images supplied on the command line for write.  To open a disk "
20382 "image read-only you have to do I<-a image --ro>."
20383 msgstr ""
20384
20385 #. type: textblock
20386 #: ../fish/guestfish.pod:480
20387 msgid ""
20388 "This matters: If you accidentally open a live VM disk image writable then "
20389 "you will cause irreversible disk corruption."
20390 msgstr ""
20391
20392 #. type: textblock
20393 #: ../fish/guestfish.pod:483
20394 msgid ""
20395 "By libguestfs 1.12 we intend to change the default the other way.  Disk "
20396 "images will be opened read-only.  You will have to either specify "
20397 "I<guestfish --rw>, I<guestmount --rw>, I<virt-rescue --rw>, or change the "
20398 "configuration file C</etc/libguestfs-tools.conf> in order to get write "
20399 "access for disk images specified by those other command line options."
20400 msgstr ""
20401
20402 #. type: textblock
20403 #: ../fish/guestfish.pod:490
20404 msgid ""
20405 "This version of guestfish, guestmount and virt-rescue has a I<--rw> option "
20406 "which does nothing (it is already the default).  However it is highly "
20407 "recommended that you use this option to indicate that you need write access, "
20408 "and prepare your scripts for the day when this option will be required for "
20409 "write access."
20410 msgstr ""
20411
20412 #. type: textblock
20413 #: ../fish/guestfish.pod:496
20414 msgid ""
20415 "B<Note:> This does I<not> affect commands like L</add> and L</mount>, or any "
20416 "other libguestfs program apart from guestfish and guestmount."
20417 msgstr ""
20418
20419 #. type: =head1
20420 #: ../fish/guestfish.pod:499
20421 msgid "QUOTING"
20422 msgstr ""
20423
20424 #. type: textblock
20425 #: ../fish/guestfish.pod:501
20426 msgid ""
20427 "You can quote ordinary parameters using either single or double quotes.  For "
20428 "example:"
20429 msgstr ""
20430
20431 #. type: verbatim
20432 #: ../fish/guestfish.pod:504
20433 #, no-wrap
20434 msgid ""
20435 " add \"file with a space.img\"\n"
20436 "\n"
20437 msgstr ""
20438
20439 #. type: verbatim
20440 #: ../fish/guestfish.pod:506
20441 #, no-wrap
20442 msgid ""
20443 " rm '/file name'\n"
20444 "\n"
20445 msgstr ""
20446
20447 #. type: verbatim
20448 #: ../fish/guestfish.pod:508
20449 #, no-wrap
20450 msgid ""
20451 " rm '/\"'\n"
20452 "\n"
20453 msgstr ""
20454
20455 #. type: textblock
20456 #: ../fish/guestfish.pod:510
20457 msgid ""
20458 "A few commands require a list of strings to be passed.  For these, use a "
20459 "whitespace-separated list, enclosed in quotes.  Strings containing "
20460 "whitespace to be passed through must be enclosed in single quotes.  A "
20461 "literal single quote must be escaped with a backslash."
20462 msgstr ""
20463
20464 #. type: verbatim
20465 #: ../fish/guestfish.pod:515
20466 #, no-wrap
20467 msgid ""
20468 " vgcreate VG \"/dev/sda1 /dev/sdb1\"\n"
20469 " command \"/bin/echo 'foo      bar'\"\n"
20470 " command \"/bin/echo \\'foo\\'\"\n"
20471 "\n"
20472 msgstr ""
20473
20474 #. type: =head1
20475 #: ../fish/guestfish.pod:519
20476 msgid "OPTIONAL ARGUMENTS"
20477 msgstr ""
20478
20479 #. type: textblock
20480 #: ../fish/guestfish.pod:521
20481 msgid ""
20482 "Some commands take optional arguments.  These arguments appear in this "
20483 "documentation as C<[argname:..]>.  You can use them as in these examples:"
20484 msgstr ""
20485
20486 #. type: verbatim
20487 #: ../fish/guestfish.pod:525
20488 #, no-wrap
20489 msgid ""
20490 " add-drive-opts filename\n"
20491 "\n"
20492 msgstr ""
20493
20494 #. type: verbatim
20495 #: ../fish/guestfish.pod:527
20496 #, no-wrap
20497 msgid ""
20498 " add-drive-opts filename readonly:true\n"
20499 "\n"
20500 msgstr ""
20501
20502 #. type: verbatim
20503 #: ../fish/guestfish.pod:529
20504 #, no-wrap
20505 msgid ""
20506 " add-drive-opts filename format:qcow2 readonly:false\n"
20507 "\n"
20508 msgstr ""
20509
20510 #. type: textblock
20511 #: ../fish/guestfish.pod:531
20512 msgid ""
20513 "Each optional argument can appear at most once.  All optional arguments must "
20514 "appear after the required ones."
20515 msgstr ""
20516
20517 #. type: =head1
20518 #: ../fish/guestfish.pod:534
20519 msgid "NUMBERS"
20520 msgstr ""
20521
20522 #. type: textblock
20523 #: ../fish/guestfish.pod:536
20524 msgid ""
20525 "This section applies to all commands which can take integers as parameters."
20526 msgstr ""
20527
20528 #. type: =head2
20529 #: ../fish/guestfish.pod:539
20530 msgid "SIZE SUFFIX"
20531 msgstr ""
20532
20533 #. type: textblock
20534 #: ../fish/guestfish.pod:541
20535 msgid ""
20536 "When the command takes a parameter measured in bytes, you can use one of the "
20537 "following suffixes to specify kilobytes, megabytes and larger sizes:"
20538 msgstr ""
20539
20540 #. type: =item
20541 #: ../fish/guestfish.pod:547
20542 msgid "B<k> or B<K> or B<KiB>"
20543 msgstr ""
20544
20545 #. type: textblock
20546 #: ../fish/guestfish.pod:549
20547 msgid "The size in kilobytes (multiplied by 1024)."
20548 msgstr ""
20549
20550 #. type: =item
20551 #: ../fish/guestfish.pod:551
20552 msgid "B<KB>"
20553 msgstr ""
20554
20555 #. type: textblock
20556 #: ../fish/guestfish.pod:553
20557 msgid "The size in SI 1000 byte units."
20558 msgstr ""
20559
20560 #. type: =item
20561 #: ../fish/guestfish.pod:555
20562 msgid "B<M> or B<MiB>"
20563 msgstr ""
20564
20565 #. type: textblock
20566 #: ../fish/guestfish.pod:557
20567 msgid "The size in megabytes (multiplied by 1048576)."
20568 msgstr ""
20569
20570 #. type: =item
20571 #: ../fish/guestfish.pod:559
20572 msgid "B<MB>"
20573 msgstr ""
20574
20575 #. type: textblock
20576 #: ../fish/guestfish.pod:561
20577 msgid "The size in SI 1000000 byte units."
20578 msgstr ""
20579
20580 #. type: =item
20581 #: ../fish/guestfish.pod:563
20582 msgid "B<G> or B<GiB>"
20583 msgstr ""
20584
20585 #. type: textblock
20586 #: ../fish/guestfish.pod:565
20587 msgid "The size in gigabytes (multiplied by 2**30)."
20588 msgstr ""
20589
20590 #. type: =item
20591 #: ../fish/guestfish.pod:567
20592 msgid "B<GB>"
20593 msgstr ""
20594
20595 #. type: textblock
20596 #: ../fish/guestfish.pod:569
20597 msgid "The size in SI 10**9 byte units."
20598 msgstr ""
20599
20600 #. type: =item
20601 #: ../fish/guestfish.pod:571
20602 msgid "B<T> or B<TiB>"
20603 msgstr ""
20604
20605 #. type: textblock
20606 #: ../fish/guestfish.pod:573
20607 msgid "The size in terabytes (multiplied by 2**40)."
20608 msgstr ""
20609
20610 #. type: =item
20611 #: ../fish/guestfish.pod:575
20612 msgid "B<TB>"
20613 msgstr ""
20614
20615 #. type: textblock
20616 #: ../fish/guestfish.pod:577
20617 msgid "The size in SI 10**12 byte units."
20618 msgstr ""
20619
20620 #. type: =item
20621 #: ../fish/guestfish.pod:579
20622 msgid "B<P> or B<PiB>"
20623 msgstr ""
20624
20625 #. type: textblock
20626 #: ../fish/guestfish.pod:581
20627 msgid "The size in petabytes (multiplied by 2**50)."
20628 msgstr ""
20629
20630 #. type: =item
20631 #: ../fish/guestfish.pod:583
20632 msgid "B<PB>"
20633 msgstr ""
20634
20635 #. type: textblock
20636 #: ../fish/guestfish.pod:585
20637 msgid "The size in SI 10**15 byte units."
20638 msgstr ""
20639
20640 #. type: =item
20641 #: ../fish/guestfish.pod:587
20642 msgid "B<E> or B<EiB>"
20643 msgstr ""
20644
20645 #. type: textblock
20646 #: ../fish/guestfish.pod:589
20647 msgid "The size in exabytes (multiplied by 2**60)."
20648 msgstr ""
20649
20650 #. type: =item
20651 #: ../fish/guestfish.pod:591
20652 msgid "B<EB>"
20653 msgstr ""
20654
20655 #. type: textblock
20656 #: ../fish/guestfish.pod:593
20657 msgid "The size in SI 10**18 byte units."
20658 msgstr ""
20659
20660 #. type: =item
20661 #: ../fish/guestfish.pod:595
20662 msgid "B<Z> or B<ZiB>"
20663 msgstr ""
20664
20665 #. type: textblock
20666 #: ../fish/guestfish.pod:597
20667 msgid "The size in zettabytes (multiplied by 2**70)."
20668 msgstr ""
20669
20670 #. type: =item
20671 #: ../fish/guestfish.pod:599
20672 msgid "B<ZB>"
20673 msgstr ""
20674
20675 #. type: textblock
20676 #: ../fish/guestfish.pod:601
20677 msgid "The size in SI 10**21 byte units."
20678 msgstr ""
20679
20680 #. type: =item
20681 #: ../fish/guestfish.pod:603
20682 msgid "B<Y> or B<YiB>"
20683 msgstr ""
20684
20685 #. type: textblock
20686 #: ../fish/guestfish.pod:605
20687 msgid "The size in yottabytes (multiplied by 2**80)."
20688 msgstr ""
20689
20690 #. type: =item
20691 #: ../fish/guestfish.pod:607
20692 msgid "B<YB>"
20693 msgstr ""
20694
20695 #. type: textblock
20696 #: ../fish/guestfish.pod:609
20697 msgid "The size in SI 10**24 byte units."
20698 msgstr ""
20699
20700 #. type: verbatim
20701 #: ../fish/guestfish.pod:615
20702 #, no-wrap
20703 msgid ""
20704 " truncate-size /file 1G\n"
20705 "\n"
20706 msgstr ""
20707
20708 #. type: textblock
20709 #: ../fish/guestfish.pod:617
20710 msgid "would truncate the file to 1 gigabyte."
20711 msgstr ""
20712
20713 #. type: textblock
20714 #: ../fish/guestfish.pod:619
20715 msgid ""
20716 "Be careful because a few commands take sizes in kilobytes or megabytes (eg. "
20717 "the parameter to L</memsize> is specified in megabytes already).  Adding a "
20718 "suffix will probably not do what you expect."
20719 msgstr ""
20720
20721 #. type: =head2
20722 #: ../fish/guestfish.pod:623
20723 msgid "OCTAL AND HEXADECIMAL NUMBERS"
20724 msgstr ""
20725
20726 #. type: textblock
20727 #: ../fish/guestfish.pod:625
20728 msgid ""
20729 "For specifying the radix (base) use the C convention: C<0> to prefix an "
20730 "octal number or C<0x> to prefix a hexadecimal number.  For example:"
20731 msgstr ""
20732
20733 #. type: verbatim
20734 #: ../fish/guestfish.pod:628
20735 #, no-wrap
20736 msgid ""
20737 " 1234      decimal number 1234\n"
20738 " 02322     octal number, equivalent to decimal 1234\n"
20739 " 0x4d2     hexadecimal number, equivalent to decimal 1234\n"
20740 "\n"
20741 msgstr ""
20742
20743 #. type: textblock
20744 #: ../fish/guestfish.pod:632
20745 msgid ""
20746 "When using the C<chmod> command, you almost always want to specify an octal "
20747 "number for the mode, and you must prefix it with C<0> (unlike the Unix "
20748 "L<chmod(1)> program):"
20749 msgstr ""
20750
20751 #. type: verbatim
20752 #: ../fish/guestfish.pod:636
20753 #, no-wrap
20754 msgid ""
20755 " chmod 0777 /public  # OK\n"
20756 " chmod 777 /public   # WRONG! This is mode 777 decimal = 01411 octal.\n"
20757 "\n"
20758 msgstr ""
20759
20760 #. type: textblock
20761 #: ../fish/guestfish.pod:639
20762 msgid ""
20763 "Commands that return numbers usually print them in decimal, but some "
20764 "commands print numbers in other radices (eg. C<umask> prints the mode in "
20765 "octal, preceeded by C<0>)."
20766 msgstr ""
20767
20768 #. type: =head1
20769 #: ../fish/guestfish.pod:643
20770 msgid "WILDCARDS AND GLOBBING"
20771 msgstr ""
20772
20773 #. type: textblock
20774 #: ../fish/guestfish.pod:645
20775 msgid ""
20776 "Neither guestfish nor the underlying guestfs API performs wildcard expansion "
20777 "(globbing) by default.  So for example the following will not do what you "
20778 "expect:"
20779 msgstr ""
20780
20781 #. type: verbatim
20782 #: ../fish/guestfish.pod:649
20783 #, no-wrap
20784 msgid ""
20785 " rm-rf /home/*\n"
20786 "\n"
20787 msgstr ""
20788
20789 #. type: textblock
20790 #: ../fish/guestfish.pod:651
20791 msgid ""
20792 "Assuming you don't have a directory called literally C</home/*> then the "
20793 "above command will return an error."
20794 msgstr ""
20795
20796 #. type: textblock
20797 #: ../fish/guestfish.pod:654
20798 msgid "To perform wildcard expansion, use the C<glob> command."
20799 msgstr ""
20800
20801 #. type: verbatim
20802 #: ../fish/guestfish.pod:656
20803 #, no-wrap
20804 msgid ""
20805 " glob rm-rf /home/*\n"
20806 "\n"
20807 msgstr ""
20808
20809 #. type: textblock
20810 #: ../fish/guestfish.pod:658
20811 msgid ""
20812 "runs C<rm-rf> on each path that matches (ie. potentially running the command "
20813 "many times), equivalent to:"
20814 msgstr ""
20815
20816 #. type: verbatim
20817 #: ../fish/guestfish.pod:661
20818 #, no-wrap
20819 msgid ""
20820 " rm-rf /home/jim\n"
20821 " rm-rf /home/joe\n"
20822 " rm-rf /home/mary\n"
20823 "\n"
20824 msgstr ""
20825
20826 #. type: textblock
20827 #: ../fish/guestfish.pod:665
20828 msgid "C<glob> only works on simple guest paths and not on device names."
20829 msgstr ""
20830
20831 #. type: textblock
20832 #: ../fish/guestfish.pod:667
20833 msgid ""
20834 "If you have several parameters, each containing a wildcard, then glob will "
20835 "perform a Cartesian product."
20836 msgstr ""
20837
20838 #. type: =head1
20839 #: ../fish/guestfish.pod:670
20840 msgid "COMMENTS"
20841 msgstr ""
20842
20843 #. type: textblock
20844 #: ../fish/guestfish.pod:672
20845 msgid ""
20846 "Any line which starts with a I<#> character is treated as a comment and "
20847 "ignored.  The I<#> can optionally be preceeded by whitespace, but B<not> by "
20848 "a command.  For example:"
20849 msgstr ""
20850
20851 #. type: verbatim
20852 #: ../fish/guestfish.pod:676
20853 #, no-wrap
20854 msgid ""
20855 " # this is a comment\n"
20856 "         # this is a comment\n"
20857 " foo # NOT a comment\n"
20858 "\n"
20859 msgstr ""
20860
20861 #. type: textblock
20862 #: ../fish/guestfish.pod:680
20863 msgid "Blank lines are also ignored."
20864 msgstr ""
20865
20866 #. type: =head1
20867 #: ../fish/guestfish.pod:682
20868 msgid "RUNNING COMMANDS LOCALLY"
20869 msgstr ""
20870
20871 #. type: textblock
20872 #: ../fish/guestfish.pod:684
20873 msgid ""
20874 "Any line which starts with a I<!> character is treated as a command sent to "
20875 "the local shell (C</bin/sh> or whatever L<system(3)> uses).  For example:"
20876 msgstr ""
20877
20878 #. type: verbatim
20879 #: ../fish/guestfish.pod:688
20880 #, no-wrap
20881 msgid ""
20882 " !mkdir local\n"
20883 " tgz-out /remote local/remote-data.tar.gz\n"
20884 "\n"
20885 msgstr ""
20886
20887 #. type: textblock
20888 #: ../fish/guestfish.pod:691
20889 msgid ""
20890 "will create a directory C<local> on the host, and then export the contents "
20891 "of C</remote> on the mounted filesystem to C<local/remote-data.tar.gz>.  "
20892 "(See C<tgz-out>)."
20893 msgstr ""
20894
20895 #. type: textblock
20896 #: ../fish/guestfish.pod:695
20897 msgid ""
20898 "To change the local directory, use the C<lcd> command.  C<!cd> will have no "
20899 "effect, due to the way that subprocesses work in Unix."
20900 msgstr ""
20901
20902 #. type: =head2
20903 #: ../fish/guestfish.pod:698
20904 msgid "LOCAL COMMANDS WITH INLINE EXECUTION"
20905 msgstr ""
20906
20907 #. type: textblock
20908 #: ../fish/guestfish.pod:700
20909 msgid ""
20910 "If a line starts with I<E<lt>!> then the shell command is executed (as for "
20911 "I<!>), but subsequently any output (stdout) of the shell command is parsed "
20912 "and executed as guestfish commands."
20913 msgstr ""
20914
20915 #. type: textblock
20916 #: ../fish/guestfish.pod:704
20917 msgid ""
20918 "Thus you can use shell script to construct arbitrary guestfish commands "
20919 "which are then parsed by guestfish."
20920 msgstr ""
20921
20922 #. type: textblock
20923 #: ../fish/guestfish.pod:707
20924 msgid ""
20925 "For example it is tedious to create a sequence of files (eg. C</foo.1> "
20926 "through C</foo.100>) using guestfish commands alone.  However this is simple "
20927 "if we use a shell script to create the guestfish commands for us:"
20928 msgstr ""
20929
20930 #. type: verbatim
20931 #: ../fish/guestfish.pod:712
20932 #, no-wrap
20933 msgid ""
20934 " <! for n in `seq 1 100`; do echo write /foo.$n $n; done\n"
20935 "\n"
20936 msgstr ""
20937
20938 #. type: textblock
20939 #: ../fish/guestfish.pod:714
20940 msgid "or with names like C</foo.001>:"
20941 msgstr ""
20942
20943 #. type: verbatim
20944 #: ../fish/guestfish.pod:716
20945 #, no-wrap
20946 msgid ""
20947 " <! for n in `seq 1 100`; do printf \"write /foo.%03d %d\\n\" $n $n; done\n"
20948 "\n"
20949 msgstr ""
20950
20951 #. type: textblock
20952 #: ../fish/guestfish.pod:718
20953 msgid ""
20954 "When using guestfish interactively it can be helpful to just run the shell "
20955 "script first (ie. remove the initial C<E<lt>> character so it is just an "
20956 "ordinary I<!> local command), see what guestfish commands it would run, and "
20957 "when you are happy with those prepend the C<E<lt>> character to run the "
20958 "guestfish commands for real."
20959 msgstr ""
20960
20961 #. type: =head1
20962 #: ../fish/guestfish.pod:724
20963 msgid "PIPES"
20964 msgstr ""
20965
20966 #. type: textblock
20967 #: ../fish/guestfish.pod:726
20968 msgid ""
20969 "Use C<command E<lt>spaceE<gt> | command> to pipe the output of the first "
20970 "command (a guestfish command) to the second command (any host command).  For "
20971 "example:"
20972 msgstr ""
20973
20974 #. type: verbatim
20975 #: ../fish/guestfish.pod:730
20976 #, no-wrap
20977 msgid ""
20978 " cat /etc/passwd | awk -F: '$3 == 0 { print }'\n"
20979 "\n"
20980 msgstr ""
20981
20982 #. type: textblock
20983 #: ../fish/guestfish.pod:732
20984 msgid ""
20985 "(where C<cat> is the guestfish cat command, but C<awk> is the host awk "
20986 "program).  The above command would list all accounts in the guest filesystem "
20987 "which have UID 0, ie. root accounts including backdoors.  Other examples:"
20988 msgstr ""
20989
20990 #. type: verbatim
20991 #: ../fish/guestfish.pod:737
20992 #, no-wrap
20993 msgid ""
20994 " hexdump /bin/ls | head\n"
20995 " list-devices | tail -1\n"
20996 " tgz-out / - | tar ztf -\n"
20997 "\n"
20998 msgstr ""
20999
21000 #. type: textblock
21001 #: ../fish/guestfish.pod:741
21002 msgid ""
21003 "The space before the pipe symbol is required, any space after the pipe "
21004 "symbol is optional.  Everything after the pipe symbol is just passed "
21005 "straight to the host shell, so it can contain redirections, globs and "
21006 "anything else that makes sense on the host side."
21007 msgstr ""
21008
21009 #. type: textblock
21010 #: ../fish/guestfish.pod:746
21011 msgid ""
21012 "To use a literal argument which begins with a pipe symbol, you have to quote "
21013 "it, eg:"
21014 msgstr ""
21015
21016 #. type: verbatim
21017 #: ../fish/guestfish.pod:749
21018 #, no-wrap
21019 msgid ""
21020 " echo \"|\"\n"
21021 "\n"
21022 msgstr ""
21023
21024 #. type: =head1
21025 #: ../fish/guestfish.pod:751
21026 msgid "HOME DIRECTORIES"
21027 msgstr ""
21028
21029 #. type: textblock
21030 #: ../fish/guestfish.pod:753
21031 msgid ""
21032 "If a parameter starts with the character C<~> then the tilde may be expanded "
21033 "as a home directory path (either C<~> for the current user's home directory, "
21034 "or C<~user> for another user)."
21035 msgstr ""
21036
21037 #. type: textblock
21038 #: ../fish/guestfish.pod:757
21039 msgid ""
21040 "Note that home directory expansion happens for users known I<on the host>, "
21041 "not in the guest filesystem."
21042 msgstr ""
21043
21044 #. type: textblock
21045 #: ../fish/guestfish.pod:760
21046 msgid ""
21047 "To use a literal argument which begins with a tilde, you have to quote it, "
21048 "eg:"
21049 msgstr ""
21050
21051 #. type: verbatim
21052 #: ../fish/guestfish.pod:763
21053 #, no-wrap
21054 msgid ""
21055 " echo \"~\"\n"
21056 "\n"
21057 msgstr ""
21058
21059 #. type: textblock
21060 #: ../fish/guestfish.pod:767
21061 msgid ""
21062 "Libguestfs has some support for Linux guests encrypted according to the "
21063 "Linux Unified Key Setup (LUKS) standard, which includes nearly all whole "
21064 "disk encryption systems used by modern Linux guests.  Currently only LVM-on-"
21065 "LUKS is supported."
21066 msgstr ""
21067
21068 #. type: textblock
21069 #: ../fish/guestfish.pod:772
21070 msgid "Identify encrypted block devices and partitions using L</vfs-type>:"
21071 msgstr ""
21072
21073 #. type: verbatim
21074 #: ../fish/guestfish.pod:774
21075 #, no-wrap
21076 msgid ""
21077 " ><fs> vfs-type /dev/sda2\n"
21078 " crypto_LUKS\n"
21079 "\n"
21080 msgstr ""
21081
21082 #. type: textblock
21083 #: ../fish/guestfish.pod:777
21084 msgid ""
21085 "Then open those devices using L</luks-open>.  This creates a device-mapper "
21086 "device called C</dev/mapper/luksdev>."
21087 msgstr ""
21088
21089 #. type: verbatim
21090 #: ../fish/guestfish.pod:780
21091 #, no-wrap
21092 msgid ""
21093 " ><fs> luks-open /dev/sda2 luksdev\n"
21094 " Enter key or passphrase (\"key\"): <enter the passphrase>\n"
21095 "\n"
21096 msgstr ""
21097
21098 #. type: textblock
21099 #: ../fish/guestfish.pod:783
21100 msgid ""
21101 "Finally you have to tell LVM to scan for volume groups on the newly created "
21102 "mapper device:"
21103 msgstr ""
21104
21105 #. type: verbatim
21106 #: ../fish/guestfish.pod:786
21107 #, no-wrap
21108 msgid ""
21109 " vgscan\n"
21110 " vg-activate-all true\n"
21111 "\n"
21112 msgstr ""
21113
21114 #. type: textblock
21115 #: ../fish/guestfish.pod:789
21116 msgid "The logical volume(s) can now be mounted in the usual way."
21117 msgstr ""
21118
21119 #. type: textblock
21120 #: ../fish/guestfish.pod:791
21121 msgid ""
21122 "Before closing a LUKS device you must unmount any logical volumes on it and "
21123 "deactivate the volume groups by calling C<vg-activate false VG> on each "
21124 "one.  Then you can close the mapper device:"
21125 msgstr ""
21126
21127 #. type: verbatim
21128 #: ../fish/guestfish.pod:795
21129 #, no-wrap
21130 msgid ""
21131 " vg-activate false /dev/VG\n"
21132 " luks-close /dev/mapper/luksdev\n"
21133 "\n"
21134 msgstr ""
21135
21136 #. type: =head1
21137 #: ../fish/guestfish.pod:798 ../tools/virt-edit.pl:342
21138 msgid "WINDOWS PATHS"
21139 msgstr ""
21140
21141 #. type: textblock
21142 #: ../fish/guestfish.pod:800
21143 msgid ""
21144 "If a path is prefixed with C<win:> then you can use Windows-style drive "
21145 "letters and paths (with some limitations).  The following commands are "
21146 "equivalent:"
21147 msgstr ""
21148
21149 #. type: verbatim
21150 #: ../fish/guestfish.pod:804
21151 #, no-wrap
21152 msgid ""
21153 " file /WINDOWS/system32/config/system.LOG\n"
21154 "\n"
21155 msgstr ""
21156
21157 #. type: verbatim
21158 #: ../fish/guestfish.pod:806
21159 #, no-wrap
21160 msgid ""
21161 " file win:\\windows\\system32\\config\\system.log\n"
21162 "\n"
21163 msgstr ""
21164
21165 #. type: verbatim
21166 #: ../fish/guestfish.pod:808
21167 #, no-wrap
21168 msgid ""
21169 " file WIN:C:\\Windows\\SYSTEM32\\CONFIG\\SYSTEM.LOG\n"
21170 "\n"
21171 msgstr ""
21172
21173 #. type: textblock
21174 #: ../fish/guestfish.pod:810
21175 msgid ""
21176 "The parameter is rewritten \"behind the scenes\" by looking up the position "
21177 "where the drive is mounted, prepending that to the path, changing all "
21178 "backslash characters to forward slash, then resolving the result using L</"
21179 "case-sensitive-path>.  For example if the E: drive was mounted on C</e> then "
21180 "the parameter might be rewritten like this:"
21181 msgstr ""
21182
21183 #. type: verbatim
21184 #: ../fish/guestfish.pod:816
21185 #, no-wrap
21186 msgid ""
21187 " win:e:\\foo\\bar => /e/FOO/bar\n"
21188 "\n"
21189 msgstr ""
21190
21191 #. type: textblock
21192 #: ../fish/guestfish.pod:818
21193 msgid "This only works in argument positions that expect a path."
21194 msgstr ""
21195
21196 #. type: =head1
21197 #: ../fish/guestfish.pod:820
21198 msgid "UPLOADING AND DOWNLOADING FILES"
21199 msgstr ""
21200
21201 #. type: textblock
21202 #: ../fish/guestfish.pod:822
21203 msgid ""
21204 "For commands such as C<upload>, C<download>, C<tar-in>, C<tar-out> and "
21205 "others which upload from or download to a local file, you can use the "
21206 "special filename C<-> to mean \"from stdin\" or \"to stdout\".  For example:"
21207 msgstr ""
21208
21209 #. type: verbatim
21210 #: ../fish/guestfish.pod:826
21211 #, no-wrap
21212 msgid ""
21213 " upload - /foo\n"
21214 "\n"
21215 msgstr ""
21216
21217 #. type: textblock
21218 #: ../fish/guestfish.pod:828
21219 msgid ""
21220 "reads stdin and creates from that a file C</foo> in the disk image, and:"
21221 msgstr ""
21222
21223 #. type: verbatim
21224 #: ../fish/guestfish.pod:831
21225 #, no-wrap
21226 msgid ""
21227 " tar-out /etc - | tar tf -\n"
21228 "\n"
21229 msgstr ""
21230
21231 #. type: textblock
21232 #: ../fish/guestfish.pod:833
21233 msgid ""
21234 "writes the tarball to stdout and then pipes that into the external \"tar\" "
21235 "command (see L</PIPES>)."
21236 msgstr ""
21237
21238 #. type: textblock
21239 #: ../fish/guestfish.pod:836
21240 msgid ""
21241 "When using C<-> to read from stdin, the input is read up to the end of "
21242 "stdin.  You can also use a special \"heredoc\"-like syntax to read up to "
21243 "some arbitrary end marker:"
21244 msgstr ""
21245
21246 #. type: verbatim
21247 #: ../fish/guestfish.pod:840
21248 #, no-wrap
21249 msgid ""
21250 " upload -<<END /foo\n"
21251 " input line 1\n"
21252 " input line 2\n"
21253 " input line 3\n"
21254 " END\n"
21255 "\n"
21256 msgstr ""
21257
21258 #. type: textblock
21259 #: ../fish/guestfish.pod:846
21260 msgid ""
21261 "Any string of characters can be used instead of C<END>.  The end marker must "
21262 "appear on a line of its own, without any preceeding or following characters "
21263 "(not even spaces)."
21264 msgstr ""
21265
21266 #. type: textblock
21267 #: ../fish/guestfish.pod:850
21268 msgid ""
21269 "Note that the C<-E<lt>E<lt>> syntax only applies to parameters used to "
21270 "upload local files (so-called \"FileIn\" parameters in the generator)."
21271 msgstr ""
21272
21273 #. type: =head1
21274 #: ../fish/guestfish.pod:853
21275 msgid "EXIT ON ERROR BEHAVIOUR"
21276 msgstr ""
21277
21278 #. type: textblock
21279 #: ../fish/guestfish.pod:855
21280 msgid ""
21281 "By default, guestfish will ignore any errors when in interactive mode (ie. "
21282 "taking commands from a human over a tty), and will exit on the first error "
21283 "in non-interactive mode (scripts, commands given on the command line)."
21284 msgstr ""
21285
21286 #. type: textblock
21287 #: ../fish/guestfish.pod:860
21288 msgid ""
21289 "If you prefix a command with a I<-> character, then that command will not "
21290 "cause guestfish to exit, even if that (one) command returns an error."
21291 msgstr ""
21292
21293 #. type: =head1
21294 #: ../fish/guestfish.pod:864
21295 msgid "REMOTE CONTROL GUESTFISH OVER A SOCKET"
21296 msgstr ""
21297
21298 #. type: textblock
21299 #: ../fish/guestfish.pod:866
21300 msgid ""
21301 "Guestfish can be remote-controlled over a socket.  This is useful "
21302 "particularly in shell scripts where you want to make several different "
21303 "changes to a filesystem, but you don't want the overhead of starting up a "
21304 "guestfish process each time."
21305 msgstr ""
21306
21307 #. type: textblock
21308 #: ../fish/guestfish.pod:871
21309 msgid "Start a guestfish server process using:"
21310 msgstr ""
21311
21312 #. type: verbatim
21313 #: ../fish/guestfish.pod:873
21314 #, no-wrap
21315 msgid ""
21316 " eval \"`guestfish --listen`\"\n"
21317 "\n"
21318 msgstr ""
21319
21320 #. type: textblock
21321 #: ../fish/guestfish.pod:875
21322 msgid "and then send it commands by doing:"
21323 msgstr ""
21324
21325 #. type: verbatim
21326 #: ../fish/guestfish.pod:877
21327 #, no-wrap
21328 msgid ""
21329 " guestfish --remote cmd [...]\n"
21330 "\n"
21331 msgstr ""
21332
21333 #. type: textblock
21334 #: ../fish/guestfish.pod:879
21335 msgid "To cause the server to exit, send it the exit command:"
21336 msgstr ""
21337
21338 #. type: verbatim
21339 #: ../fish/guestfish.pod:881
21340 #, no-wrap
21341 msgid ""
21342 " guestfish --remote exit\n"
21343 "\n"
21344 msgstr ""
21345
21346 #. type: textblock
21347 #: ../fish/guestfish.pod:883
21348 msgid ""
21349 "Note that the server will normally exit if there is an error in a command.  "
21350 "You can change this in the usual way.  See section L</EXIT ON ERROR "
21351 "BEHAVIOUR>."
21352 msgstr ""
21353
21354 #. type: =head2
21355 #: ../fish/guestfish.pod:887
21356 msgid "CONTROLLING MULTIPLE GUESTFISH PROCESSES"
21357 msgstr ""
21358
21359 #. type: textblock
21360 #: ../fish/guestfish.pod:889
21361 msgid ""
21362 "The C<eval> statement sets the environment variable C<$GUESTFISH_PID>, which "
21363 "is how the I<--remote> option knows where to send the commands.  You can "
21364 "have several guestfish listener processes running using:"
21365 msgstr ""
21366
21367 #. type: verbatim
21368 #: ../fish/guestfish.pod:893
21369 #, no-wrap
21370 msgid ""
21371 " eval \"`guestfish --listen`\"\n"
21372 " pid1=$GUESTFISH_PID\n"
21373 " eval \"`guestfish --listen`\"\n"
21374 " pid2=$GUESTFISH_PID\n"
21375 " ...\n"
21376 " guestfish --remote=$pid1 cmd\n"
21377 " guestfish --remote=$pid2 cmd\n"
21378 "\n"
21379 msgstr ""
21380
21381 #. type: =head2
21382 #: ../fish/guestfish.pod:901
21383 msgid "REMOTE CONTROL AND CSH"
21384 msgstr ""
21385
21386 #. type: textblock
21387 #: ../fish/guestfish.pod:903
21388 msgid ""
21389 "When using csh-like shells (csh, tcsh etc) you have to add the I<--csh> "
21390 "option:"
21391 msgstr ""
21392
21393 #. type: verbatim
21394 #: ../fish/guestfish.pod:906
21395 #, no-wrap
21396 msgid ""
21397 " eval \"`guestfish --listen --csh`\"\n"
21398 "\n"
21399 msgstr ""
21400
21401 #. type: =head2
21402 #: ../fish/guestfish.pod:908
21403 msgid "REMOTE CONTROL DETAILS"
21404 msgstr ""
21405
21406 #. type: textblock
21407 #: ../fish/guestfish.pod:910
21408 msgid ""
21409 "Remote control happens over a Unix domain socket called C</tmp/.guestfish-"
21410 "$UID/socket-$PID>, where C<$UID> is the effective user ID of the process, "
21411 "and C<$PID> is the process ID of the server."
21412 msgstr ""
21413
21414 #. type: textblock
21415 #: ../fish/guestfish.pod:914
21416 msgid "Guestfish client and server versions must match exactly."
21417 msgstr ""
21418
21419 #. type: =head1
21420 #: ../fish/guestfish.pod:916
21421 msgid "PREPARED DISK IMAGES"
21422 msgstr ""
21423
21424 #. type: textblock
21425 #: ../fish/guestfish.pod:918
21426 msgid ""
21427 "Use the I<-N type> or I<--new type> parameter to select one of a set of "
21428 "preformatted disk images that guestfish can make for you to save typing.  "
21429 "This is particularly useful for testing purposes.  This option is used "
21430 "instead of the I<-a> option, and like I<-a> can appear multiple times (and "
21431 "can be mixed with I<-a>)."
21432 msgstr ""
21433
21434 #. type: textblock
21435 #: ../fish/guestfish.pod:924
21436 msgid ""
21437 "The new disk is called C<test1.img> for the first I<-N>, C<test2.img> for "
21438 "the second and so on.  Existing files in the current directory are "
21439 "I<overwritten>."
21440 msgstr ""
21441
21442 #. type: textblock
21443 #: ../fish/guestfish.pod:928
21444 msgid ""
21445 "The type briefly describes how the disk should be sized, partitioned, how "
21446 "filesystem(s) should be created, and how content should be added.  "
21447 "Optionally the type can be followed by extra parameters, separated by C<:> "
21448 "(colon) characters.  For example, I<-N fs> creates a default 100MB, sparsely-"
21449 "allocated disk, containing a single partition, with the partition formatted "
21450 "as ext2.  I<-N fs:ext4:1G> is the same, but for an ext4 filesystem on a 1GB "
21451 "disk instead."
21452 msgstr ""
21453
21454 #. type: textblock
21455 #: ../fish/guestfish.pod:936
21456 msgid "To list the available types and any extra parameters they take, run:"
21457 msgstr ""
21458
21459 #. type: textblock
21460 #: ../fish/guestfish.pod:940
21461 msgid ""
21462 "Note that the prepared filesystem is not mounted.  You would usually have to "
21463 "use the C<mount /dev/sda1 /> command or add the I<-m /dev/sda1> option."
21464 msgstr ""
21465
21466 #. type: textblock
21467 #: ../fish/guestfish.pod:944
21468 msgid ""
21469 "If any I<-N> or I<--new> options are given, the guest is automatically "
21470 "launched."
21471 msgstr ""
21472
21473 #. type: textblock
21474 #: ../fish/guestfish.pod:949
21475 msgid "Create a 100MB disk with an ext4-formatted partition:"
21476 msgstr ""
21477
21478 #. type: verbatim
21479 #: ../fish/guestfish.pod:951
21480 #, no-wrap
21481 msgid ""
21482 " guestfish -N fs:ext4\n"
21483 "\n"
21484 msgstr ""
21485
21486 #. type: textblock
21487 #: ../fish/guestfish.pod:953
21488 msgid "Create a 32MB disk with a VFAT-formatted partition, and mount it:"
21489 msgstr ""
21490
21491 #. type: verbatim
21492 #: ../fish/guestfish.pod:955
21493 #, no-wrap
21494 msgid ""
21495 " guestfish -N fs:vfat:32M -m /dev/sda1\n"
21496 "\n"
21497 msgstr ""
21498
21499 #. type: textblock
21500 #: ../fish/guestfish.pod:957
21501 msgid "Create a blank 200MB disk:"
21502 msgstr ""
21503
21504 #. type: verbatim
21505 #: ../fish/guestfish.pod:959
21506 #, no-wrap
21507 msgid ""
21508 " guestfish -N disk:200M\n"
21509 "\n"
21510 msgstr ""
21511
21512 #. type: =head1
21513 #: ../fish/guestfish.pod:961
21514 msgid "PROGRESS BARS"
21515 msgstr ""
21516
21517 #. type: textblock
21518 #: ../fish/guestfish.pod:963
21519 msgid ""
21520 "Some (not all) long-running commands send progress notification messages as "
21521 "they are running.  Guestfish turns these messages into progress bars."
21522 msgstr ""
21523
21524 #. type: textblock
21525 #: ../fish/guestfish.pod:967
21526 msgid ""
21527 "When a command that supports progress bars takes longer than two seconds to "
21528 "run, and if progress bars are enabled, then you will see one appearing below "
21529 "the command:"
21530 msgstr ""
21531
21532 #. type: verbatim
21533 #: ../fish/guestfish.pod:971
21534 #, no-wrap
21535 msgid ""
21536 " ><fs> copy-size /large-file /another-file 2048M\n"
21537 " / 10% [#####-----------------------------------------] 00:30\n"
21538 "\n"
21539 msgstr ""
21540
21541 #. type: textblock
21542 #: ../fish/guestfish.pod:974
21543 msgid ""
21544 "The spinner on the left hand side moves round once for every progress "
21545 "notification received from the backend.  This is a (reasonably) golden "
21546 "assurance that the command is \"doing something\" even if the progress bar "
21547 "is not moving, because the command is able to send the progress "
21548 "notifications.  When the bar reaches 100% and the command finishes, the "
21549 "spinner disappears."
21550 msgstr ""
21551
21552 #. type: textblock
21553 #: ../fish/guestfish.pod:981
21554 msgid ""
21555 "Progress bars are enabled by default when guestfish is used interactively.  "
21556 "You can enable them even for non-interactive modes using I<--progress-bars>, "
21557 "and you can disable them completely using I<--no-progress-bars>."
21558 msgstr ""
21559
21560 #. type: =head1
21561 #: ../fish/guestfish.pod:986
21562 msgid "GUESTFISH COMMANDS"
21563 msgstr ""
21564
21565 #. type: textblock
21566 #: ../fish/guestfish.pod:988
21567 msgid ""
21568 "The commands in this section are guestfish convenience commands, in other "
21569 "words, they are not part of the L<guestfs(3)> API."
21570 msgstr ""
21571
21572 #. type: =head2
21573 #: ../fish/guestfish.pod:991
21574 msgid "help"
21575 msgstr ""
21576
21577 #. type: verbatim
21578 #: ../fish/guestfish.pod:993
21579 #, no-wrap
21580 msgid ""
21581 " help\n"
21582 " help cmd\n"
21583 "\n"
21584 msgstr ""
21585
21586 #. type: textblock
21587 #: ../fish/guestfish.pod:996
21588 msgid "Without any parameter, this provides general help."
21589 msgstr ""
21590
21591 #. type: textblock
21592 #: ../fish/guestfish.pod:998
21593 msgid "With a C<cmd> parameter, this displays detailed help for that command."
21594 msgstr ""
21595
21596 #. type: =head2
21597 #: ../fish/guestfish.pod:1000
21598 msgid "quit | exit"
21599 msgstr ""
21600
21601 #. type: textblock
21602 #: ../fish/guestfish.pod:1002
21603 msgid "This exits guestfish.  You can also use C<^D> key."
21604 msgstr ""
21605
21606 #. type: textblock
21607 #: ../fish/guestfish.pod:1004
21608 msgid "@FISH_COMMANDS@"
21609 msgstr ""
21610
21611 #. type: =head1
21612 #: ../fish/guestfish.pod:1006
21613 msgid "COMMANDS"
21614 msgstr ""
21615
21616 #. type: =head1
21617 #: ../fish/guestfish.pod:1010 ../test-tool/libguestfs-test-tool.pod:77
21618 msgid "EXIT CODE"
21619 msgstr ""
21620
21621 #. type: textblock
21622 #: ../fish/guestfish.pod:1012
21623 msgid ""
21624 "guestfish returns 0 if the commands completed without error, or 1 if there "
21625 "was an error."
21626 msgstr ""
21627
21628 #. type: =item
21629 #: ../fish/guestfish.pod:1019
21630 msgid "EDITOR"
21631 msgstr ""
21632
21633 #. type: textblock
21634 #: ../fish/guestfish.pod:1021
21635 msgid ""
21636 "The C<edit> command uses C<$EDITOR> as the editor.  If not set, it uses "
21637 "C<vi>."
21638 msgstr ""
21639
21640 #. type: =item
21641 #: ../fish/guestfish.pod:1024
21642 msgid "GUESTFISH_PID"
21643 msgstr ""
21644
21645 #. type: textblock
21646 #: ../fish/guestfish.pod:1026
21647 msgid ""
21648 "Used with the I<--remote> option to specify the remote guestfish process to "
21649 "control.  See section L</REMOTE CONTROL GUESTFISH OVER A SOCKET>."
21650 msgstr ""
21651
21652 #. type: =item
21653 #: ../fish/guestfish.pod:1030
21654 msgid "HEXEDITOR"
21655 msgstr ""
21656
21657 #. type: textblock
21658 #: ../fish/guestfish.pod:1032
21659 msgid ""
21660 "The L</hexedit> command uses C<$HEXEDITOR> as the external hex editor.  If "
21661 "not specified, the external L<hexedit(1)> program is used."
21662 msgstr ""
21663
21664 #. type: =item
21665 #: ../fish/guestfish.pod:1036
21666 msgid "HOME"
21667 msgstr ""
21668
21669 #. type: textblock
21670 #: ../fish/guestfish.pod:1038
21671 msgid ""
21672 "If compiled with GNU readline support, various files in the home directory "
21673 "can be used.  See L</FILES>."
21674 msgstr ""
21675
21676 #. type: textblock
21677 #: ../fish/guestfish.pod:1047
21678 msgid ""
21679 "Set C<LIBGUESTFS_DEBUG=1> to enable verbose messages.  This has the same "
21680 "effect as using the B<-v> option."
21681 msgstr ""
21682
21683 #. type: textblock
21684 #: ../fish/guestfish.pod:1059
21685 msgid ""
21686 "Set the path that guestfish uses to search for kernel and initrd.img.  See "
21687 "the discussion of paths in L<guestfs(3)>."
21688 msgstr ""
21689
21690 #. type: textblock
21691 #: ../fish/guestfish.pod:1070
21692 msgid "Set C<LIBGUESTFS_TRACE=1> to enable command traces."
21693 msgstr ""
21694
21695 #. type: =item
21696 #: ../fish/guestfish.pod:1072
21697 msgid "PAGER"
21698 msgstr ""
21699
21700 #. type: textblock
21701 #: ../fish/guestfish.pod:1074
21702 msgid ""
21703 "The C<more> command uses C<$PAGER> as the pager.  If not set, it uses "
21704 "C<more>."
21705 msgstr ""
21706
21707 #. type: =head1
21708 #: ../fish/guestfish.pod:1090 ../fuse/guestmount.pod:262
21709 msgid "FILES"
21710 msgstr ""
21711
21712 #. type: =item
21713 #: ../fish/guestfish.pod:1094 ../fuse/guestmount.pod:266
21714 msgid "$HOME/.libguestfs-tools.rc"
21715 msgstr ""
21716
21717 #. type: =item
21718 #: ../fish/guestfish.pod:1096 ../fuse/guestmount.pod:268
21719 msgid "/etc/libguestfs-tools.conf"
21720 msgstr ""
21721
21722 #. type: textblock
21723 #: ../fish/guestfish.pod:1098 ../fuse/guestmount.pod:270
21724 msgid ""
21725 "This configuration file controls the default read-only or read-write mode "
21726 "(I<--ro> or I<--rw>)."
21727 msgstr ""
21728
21729 #. type: textblock
21730 #: ../fish/guestfish.pod:1101
21731 msgid "See L</OPENING DISKS FOR READ AND WRITE>."
21732 msgstr ""
21733
21734 #. type: =item
21735 #: ../fish/guestfish.pod:1103
21736 msgid "$HOME/.guestfish"
21737 msgstr ""
21738
21739 #. type: textblock
21740 #: ../fish/guestfish.pod:1105
21741 msgid ""
21742 "If compiled with GNU readline support, then the command history is saved in "
21743 "this file."
21744 msgstr ""
21745
21746 #. type: =item
21747 #: ../fish/guestfish.pod:1108
21748 msgid "$HOME/.inputrc"
21749 msgstr ""
21750
21751 #. type: =item
21752 #: ../fish/guestfish.pod:1110
21753 msgid "/etc/inputrc"
21754 msgstr ""
21755
21756 #. type: textblock
21757 #: ../fish/guestfish.pod:1112
21758 msgid ""
21759 "If compiled with GNU readline support, then these files can be used to "
21760 "configure readline.  For further information, please see L<readline(3)/"
21761 "INITIALIZATION FILE>."
21762 msgstr ""
21763
21764 #. type: textblock
21765 #: ../fish/guestfish.pod:1116
21766 msgid "To write rules which only apply to guestfish, use:"
21767 msgstr ""
21768
21769 #. type: verbatim
21770 #: ../fish/guestfish.pod:1118
21771 #, no-wrap
21772 msgid ""
21773 " $if guestfish\n"
21774 " ...\n"
21775 " $endif\n"
21776 "\n"
21777 msgstr ""
21778
21779 #. type: textblock
21780 #: ../fish/guestfish.pod:1122
21781 msgid ""
21782 "Variables that you can set in inputrc that change the behaviour of guestfish "
21783 "in useful ways include:"
21784 msgstr ""
21785
21786 #. type: =item
21787 #: ../fish/guestfish.pod:1127
21788 msgid "completion-ignore-case (default: on)"
21789 msgstr ""
21790
21791 #. type: textblock
21792 #: ../fish/guestfish.pod:1129
21793 msgid ""
21794 "By default, guestfish will ignore case when tab-completing paths on the "
21795 "disk.  Use:"
21796 msgstr ""
21797
21798 #. type: verbatim
21799 #: ../fish/guestfish.pod:1132
21800 #, no-wrap
21801 msgid ""
21802 " set completion-ignore-case off\n"
21803 "\n"
21804 msgstr ""
21805
21806 #. type: textblock
21807 #: ../fish/guestfish.pod:1134
21808 msgid "to make guestfish case sensitive."
21809 msgstr ""
21810
21811 #. type: =item
21812 #: ../fish/guestfish.pod:1138
21813 msgid "test1.img"
21814 msgstr ""
21815
21816 #. type: =item
21817 #: ../fish/guestfish.pod:1140
21818 msgid "test2.img (etc)"
21819 msgstr ""
21820
21821 #. type: textblock
21822 #: ../fish/guestfish.pod:1142
21823 msgid ""
21824 "When using the I<-N> or I<--new> option, the prepared disk or filesystem "
21825 "will be created in the file C<test1.img> in the current directory.  The "
21826 "second use of I<-N> will use C<test2.img> and so on.  Any existing file with "
21827 "the same name will be overwritten."
21828 msgstr ""
21829
21830 #. type: textblock
21831 #: ../fish/guestfish.pod:1151
21832 msgid ""
21833 "L<guestfs(3)>, L<http://libguestfs.org/>, L<virt-cat(1)>, L<virt-copy-in(1)"
21834 ">, L<virt-copy-out(1)>, L<virt-df(1)>, L<virt-edit(1)>, L<virt-filesystems(1)"
21835 ">, L<virt-inspector(1)>, L<virt-list-filesystems(1)>, L<virt-list-partitions"
21836 "(1)>, L<virt-ls(1)>, L<virt-make-fs(1)>, L<virt-rescue(1)>, L<virt-resize(1)"
21837 ">, L<virt-tar(1)>, L<virt-tar-in(1)>, L<virt-tar-out(1)>, L<virt-win-reg(1)"
21838 ">, L<hexedit(1)>."
21839 msgstr ""
21840
21841 #. type: textblock
21842 #: ../fish/guestfish.pod:1181 ../test-tool/libguestfs-test-tool.pod:102
21843 #: ../fuse/guestmount.pod:297 ../tools/virt-edit.pl:518
21844 #: ../tools/virt-win-reg.pl:606 ../tools/virt-list-filesystems.pl:210
21845 #: ../tools/virt-tar.pl:309 ../tools/virt-make-fs.pl:572
21846 #: ../tools/virt-list-partitions.pl:277
21847 msgid ""
21848 "This program is free software; you can redistribute it and/or modify it "
21849 "under the terms of the GNU General Public License as published by the Free "
21850 "Software Foundation; either version 2 of the License, or (at your option) "
21851 "any later version."
21852 msgstr ""
21853
21854 #. type: textblock
21855 #: ../fish/guestfish.pod:1186 ../test-tool/libguestfs-test-tool.pod:107
21856 #: ../fuse/guestmount.pod:302 ../tools/virt-edit.pl:523
21857 #: ../tools/virt-win-reg.pl:611 ../tools/virt-list-filesystems.pl:215
21858 #: ../tools/virt-tar.pl:314 ../tools/virt-make-fs.pl:577
21859 #: ../tools/virt-list-partitions.pl:282
21860 msgid ""
21861 "This program is distributed in the hope that it will be useful, but WITHOUT "
21862 "ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or "
21863 "FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for "
21864 "more details."
21865 msgstr ""
21866
21867 #. type: textblock
21868 #: ../fish/guestfish.pod:1191 ../test-tool/libguestfs-test-tool.pod:112
21869 #: ../fuse/guestmount.pod:307 ../tools/virt-edit.pl:528
21870 #: ../tools/virt-win-reg.pl:616 ../tools/virt-list-filesystems.pl:220
21871 #: ../tools/virt-tar.pl:319 ../tools/virt-make-fs.pl:582
21872 #: ../tools/virt-list-partitions.pl:287
21873 msgid ""
21874 "You should have received a copy of the GNU General Public License along with "
21875 "this program; if not, write to the Free Software Foundation, Inc., 675 Mass "
21876 "Ave, Cambridge, MA 02139, USA."
21877 msgstr ""
21878
21879 #. type: =head2
21880 #: ../fish/guestfish-actions.pod:1
21881 msgid "add-cdrom"
21882 msgstr ""
21883
21884 #. type: verbatim
21885 #: ../fish/guestfish-actions.pod:3
21886 #, no-wrap
21887 msgid ""
21888 " add-cdrom filename\n"
21889 "\n"
21890 msgstr ""
21891
21892 #. type: textblock
21893 #: ../fish/guestfish-actions.pod:15
21894 msgid ""
21895 "This call checks for the existence of C<filename>.  This stops you from "
21896 "specifying other types of drive which are supported by qemu such as C<nbd:> "
21897 "and C<http:> URLs.  To specify those, use the general L</config> call "
21898 "instead."
21899 msgstr ""
21900
21901 #. type: textblock
21902 #: ../fish/guestfish-actions.pod:22
21903 msgid ""
21904 "If you just want to add an ISO file (often you use this as an efficient way "
21905 "to transfer large files into the guest), then you should probably use L</add-"
21906 "drive-ro> instead."
21907 msgstr ""
21908
21909 #. type: =head2
21910 #: ../fish/guestfish-actions.pod:35
21911 msgid "add-domain"
21912 msgstr ""
21913
21914 #. type: =head2
21915 #: ../fish/guestfish-actions.pod:37
21916 msgid "domain"
21917 msgstr ""
21918
21919 #. type: verbatim
21920 #: ../fish/guestfish-actions.pod:39
21921 #, no-wrap
21922 msgid ""
21923 " add-domain dom [libvirturi:..] [readonly:..] [iface:..] [live:..]\n"
21924 "\n"
21925 msgstr ""
21926
21927 #. type: textblock
21928 #: ../fish/guestfish-actions.pod:41
21929 msgid ""
21930 "This function adds the disk(s) attached to the named libvirt domain C<dom>.  "
21931 "It works by connecting to libvirt, requesting the domain and domain XML from "
21932 "libvirt, parsing it for disks, and calling L</add-drive-opts> on each one."
21933 msgstr ""
21934
21935 #. type: textblock
21936 #: ../fish/guestfish-actions.pod:71
21937 msgid ""
21938 "The other optional parameters are passed directly through to L</add-drive-"
21939 "opts>."
21940 msgstr ""
21941
21942 #. type: textblock
21943 #: ../fish/guestfish-actions.pod:74 ../fish/guestfish-actions.pod:138
21944 #: ../fish/guestfish-actions.pod:3044
21945 msgid ""
21946 "This command has one or more optional arguments.  See L</OPTIONAL ARGUMENTS>."
21947 msgstr ""
21948
21949 #. type: =head2
21950 #: ../fish/guestfish-actions.pod:76
21951 msgid "add-drive"
21952 msgstr ""
21953
21954 #. type: verbatim
21955 #: ../fish/guestfish-actions.pod:78
21956 #, no-wrap
21957 msgid ""
21958 " add-drive filename\n"
21959 "\n"
21960 msgstr ""
21961
21962 #. type: textblock
21963 #: ../fish/guestfish-actions.pod:80
21964 msgid ""
21965 "This function is the equivalent of calling L</add-drive-opts> with no "
21966 "optional parameters, so the disk is added writable, with the format being "
21967 "detected automatically."
21968 msgstr ""
21969
21970 #. type: textblock
21971 #: ../fish/guestfish-actions.pod:84
21972 msgid ""
21973 "Automatic detection of the format opens you up to a potential security hole "
21974 "when dealing with untrusted raw-format images.  See CVE-2010-3851 and "
21975 "RHBZ#642934.  Specifying the format closes this security hole.  Therefore "
21976 "you should think about replacing calls to this function with calls to L</add-"
21977 "drive-opts>, and specifying the format."
21978 msgstr ""
21979
21980 #. type: =head2
21981 #: ../fish/guestfish-actions.pod:91
21982 msgid "add-drive-opts"
21983 msgstr ""
21984
21985 #. type: =head2
21986 #: ../fish/guestfish-actions.pod:93
21987 msgid "add"
21988 msgstr ""
21989
21990 #. type: verbatim
21991 #: ../fish/guestfish-actions.pod:95
21992 #, no-wrap
21993 msgid ""
21994 " add-drive-opts filename [readonly:..] [format:..] [iface:..]\n"
21995 "\n"
21996 msgstr ""
21997
21998 #. type: textblock
21999 #: ../fish/guestfish-actions.pod:122
22000 msgid ""
22001 "This forces the image format.  If you omit this (or use L</add-drive> or L</"
22002 "add-drive-ro>) then the format is automatically detected.  Possible formats "
22003 "include C<raw> and C<qcow2>."
22004 msgstr ""
22005
22006 #. type: textblock
22007 #: ../fish/guestfish-actions.pod:133
22008 msgid ""
22009 "This rarely-used option lets you emulate the behaviour of the deprecated L</"
22010 "add-drive-with-if> call (q.v.)"
22011 msgstr ""
22012
22013 #. type: =head2
22014 #: ../fish/guestfish-actions.pod:140
22015 msgid "add-drive-ro"
22016 msgstr ""
22017
22018 #. type: =head2
22019 #: ../fish/guestfish-actions.pod:142
22020 msgid "add-ro"
22021 msgstr ""
22022
22023 #. type: verbatim
22024 #: ../fish/guestfish-actions.pod:144
22025 #, no-wrap
22026 msgid ""
22027 " add-drive-ro filename\n"
22028 "\n"
22029 msgstr ""
22030
22031 #. type: textblock
22032 #: ../fish/guestfish-actions.pod:146
22033 msgid ""
22034 "This function is the equivalent of calling L</add-drive-opts> with the "
22035 "optional parameter C<GUESTFS_ADD_DRIVE_OPTS_READONLY> set to 1, so the disk "
22036 "is added read-only, with the format being detected automatically."
22037 msgstr ""
22038
22039 #. type: =head2
22040 #: ../fish/guestfish-actions.pod:151
22041 msgid "add-drive-ro-with-if"
22042 msgstr ""
22043
22044 #. type: verbatim
22045 #: ../fish/guestfish-actions.pod:153
22046 #, no-wrap
22047 msgid ""
22048 " add-drive-ro-with-if filename iface\n"
22049 "\n"
22050 msgstr ""
22051
22052 #. type: textblock
22053 #: ../fish/guestfish-actions.pod:155
22054 msgid ""
22055 "This is the same as L</add-drive-ro> but it allows you to specify the QEMU "
22056 "interface emulation to use at run time."
22057 msgstr ""
22058
22059 #. type: =head2
22060 #: ../fish/guestfish-actions.pod:165
22061 msgid "add-drive-with-if"
22062 msgstr ""
22063
22064 #. type: verbatim
22065 #: ../fish/guestfish-actions.pod:167
22066 #, no-wrap
22067 msgid ""
22068 " add-drive-with-if filename iface\n"
22069 "\n"
22070 msgstr ""
22071
22072 #. type: textblock
22073 #: ../fish/guestfish-actions.pod:169
22074 msgid ""
22075 "This is the same as L</add-drive> but it allows you to specify the QEMU "
22076 "interface emulation to use at run time."
22077 msgstr ""
22078
22079 #. type: =head2
22080 #: ../fish/guestfish-actions.pod:179
22081 msgid "aug-clear"
22082 msgstr ""
22083
22084 #. type: verbatim
22085 #: ../fish/guestfish-actions.pod:181
22086 #, no-wrap
22087 msgid ""
22088 " aug-clear augpath\n"
22089 "\n"
22090 msgstr ""
22091
22092 #. type: =head2
22093 #: ../fish/guestfish-actions.pod:186
22094 msgid "aug-close"
22095 msgstr ""
22096
22097 #. type: verbatim
22098 #: ../fish/guestfish-actions.pod:188
22099 #, no-wrap
22100 msgid ""
22101 " aug-close\n"
22102 "\n"
22103 msgstr ""
22104
22105 #. type: textblock
22106 #: ../fish/guestfish-actions.pod:190
22107 msgid ""
22108 "Close the current Augeas handle and free up any resources used by it.  After "
22109 "calling this, you have to call L</aug-init> again before you can use any "
22110 "other Augeas functions."
22111 msgstr ""
22112
22113 #. type: =head2
22114 #: ../fish/guestfish-actions.pod:195
22115 msgid "aug-defnode"
22116 msgstr ""
22117
22118 #. type: verbatim
22119 #: ../fish/guestfish-actions.pod:197
22120 #, no-wrap
22121 msgid ""
22122 " aug-defnode name expr val\n"
22123 "\n"
22124 msgstr ""
22125
22126 #. type: textblock
22127 #: ../fish/guestfish-actions.pod:202
22128 msgid ""
22129 "If C<expr> evaluates to an empty nodeset, a node is created, equivalent to "
22130 "calling L</aug-set> C<expr>, C<value>.  C<name> will be the nodeset "
22131 "containing that single node."
22132 msgstr ""
22133
22134 #. type: =head2
22135 #: ../fish/guestfish-actions.pod:210
22136 msgid "aug-defvar"
22137 msgstr ""
22138
22139 #. type: verbatim
22140 #: ../fish/guestfish-actions.pod:212
22141 #, no-wrap
22142 msgid ""
22143 " aug-defvar name expr\n"
22144 "\n"
22145 msgstr ""
22146
22147 #. type: =head2
22148 #: ../fish/guestfish-actions.pod:221
22149 msgid "aug-get"
22150 msgstr ""
22151
22152 #. type: verbatim
22153 #: ../fish/guestfish-actions.pod:223
22154 #, no-wrap
22155 msgid ""
22156 " aug-get augpath\n"
22157 "\n"
22158 msgstr ""
22159
22160 #. type: =head2
22161 #: ../fish/guestfish-actions.pod:228
22162 msgid "aug-init"
22163 msgstr ""
22164
22165 #. type: verbatim
22166 #: ../fish/guestfish-actions.pod:230
22167 #, no-wrap
22168 msgid ""
22169 " aug-init root flags\n"
22170 "\n"
22171 msgstr ""
22172
22173 #. type: textblock
22174 #: ../fish/guestfish-actions.pod:236
22175 msgid "You must call this before using any other L</aug-*> commands."
22176 msgstr ""
22177
22178 #. type: textblock
22179 #: ../fish/guestfish-actions.pod:271
22180 msgid "Do not load the tree in L</aug-init>."
22181 msgstr ""
22182
22183 #. type: textblock
22184 #: ../fish/guestfish-actions.pod:275
22185 msgid "To close the handle, you can call L</aug-close>."
22186 msgstr ""
22187
22188 #. type: =head2
22189 #: ../fish/guestfish-actions.pod:279
22190 msgid "aug-insert"
22191 msgstr ""
22192
22193 #. type: verbatim
22194 #: ../fish/guestfish-actions.pod:281
22195 #, no-wrap
22196 msgid ""
22197 " aug-insert augpath label true|false\n"
22198 "\n"
22199 msgstr ""
22200
22201 #. type: =head2
22202 #: ../fish/guestfish-actions.pod:291
22203 msgid "aug-load"
22204 msgstr ""
22205
22206 #. type: verbatim
22207 #: ../fish/guestfish-actions.pod:293
22208 #, no-wrap
22209 msgid ""
22210 " aug-load\n"
22211 "\n"
22212 msgstr ""
22213
22214 #. type: =head2
22215 #: ../fish/guestfish-actions.pod:300
22216 msgid "aug-ls"
22217 msgstr ""
22218
22219 #. type: verbatim
22220 #: ../fish/guestfish-actions.pod:302
22221 #, no-wrap
22222 msgid ""
22223 " aug-ls augpath\n"
22224 "\n"
22225 msgstr ""
22226
22227 #. type: textblock
22228 #: ../fish/guestfish-actions.pod:304
22229 msgid ""
22230 "This is just a shortcut for listing L</aug-match> C<path/*> and sorting the "
22231 "resulting nodes into alphabetical order."
22232 msgstr ""
22233
22234 #. type: =head2
22235 #: ../fish/guestfish-actions.pod:307
22236 msgid "aug-match"
22237 msgstr ""
22238
22239 #. type: verbatim
22240 #: ../fish/guestfish-actions.pod:309
22241 #, no-wrap
22242 msgid ""
22243 " aug-match augpath\n"
22244 "\n"
22245 msgstr ""
22246
22247 #. type: =head2
22248 #: ../fish/guestfish-actions.pod:315
22249 msgid "aug-mv"
22250 msgstr ""
22251
22252 #. type: verbatim
22253 #: ../fish/guestfish-actions.pod:317
22254 #, no-wrap
22255 msgid ""
22256 " aug-mv src dest\n"
22257 "\n"
22258 msgstr ""
22259
22260 #. type: =head2
22261 #: ../fish/guestfish-actions.pod:322
22262 msgid "aug-rm"
22263 msgstr ""
22264
22265 #. type: verbatim
22266 #: ../fish/guestfish-actions.pod:324
22267 #, no-wrap
22268 msgid ""
22269 " aug-rm augpath\n"
22270 "\n"
22271 msgstr ""
22272
22273 #. type: =head2
22274 #: ../fish/guestfish-actions.pod:330
22275 msgid "aug-save"
22276 msgstr ""
22277
22278 #. type: verbatim
22279 #: ../fish/guestfish-actions.pod:332
22280 #, no-wrap
22281 msgid ""
22282 " aug-save\n"
22283 "\n"
22284 msgstr ""
22285
22286 #. type: textblock
22287 #: ../fish/guestfish-actions.pod:336
22288 msgid ""
22289 "The flags which were passed to L</aug-init> affect exactly how files are "
22290 "saved."
22291 msgstr ""
22292
22293 #. type: =head2
22294 #: ../fish/guestfish-actions.pod:339
22295 msgid "aug-set"
22296 msgstr ""
22297
22298 #. type: verbatim
22299 #: ../fish/guestfish-actions.pod:341
22300 #, no-wrap
22301 msgid ""
22302 " aug-set augpath val\n"
22303 "\n"
22304 msgstr ""
22305
22306 #. type: textblock
22307 #: ../fish/guestfish-actions.pod:345
22308 msgid ""
22309 "In the Augeas API, it is possible to clear a node by setting the value to "
22310 "NULL.  Due to an oversight in the libguestfs API you cannot do that with "
22311 "this call.  Instead you must use the L</aug-clear> call."
22312 msgstr ""
22313
22314 #. type: =head2
22315 #: ../fish/guestfish-actions.pod:350
22316 msgid "available"
22317 msgstr ""
22318
22319 #. type: verbatim
22320 #: ../fish/guestfish-actions.pod:352
22321 #, no-wrap
22322 msgid ""
22323 " available 'groups ...'\n"
22324 "\n"
22325 msgstr ""
22326
22327 #. type: textblock
22328 #: ../fish/guestfish-actions.pod:358
22329 msgid ""
22330 "The libguestfs groups, and the functions that those groups correspond to, "
22331 "are listed in L<guestfs(3)/AVAILABILITY>.  You can also fetch this list at "
22332 "runtime by calling L</available-all-groups>."
22333 msgstr ""
22334
22335 #. type: textblock
22336 #: ../fish/guestfish-actions.pod:382
22337 msgid "You must call L</launch> before calling this function."
22338 msgstr ""
22339
22340 #. type: textblock
22341 #: ../fish/guestfish-actions.pod:404
22342 msgid ""
22343 "This call was added in version C<1.0.80>.  In previous versions of "
22344 "libguestfs all you could do would be to speculatively execute a command to "
22345 "find out if the daemon implemented it.  See also L</version>."
22346 msgstr ""
22347
22348 #. type: =head2
22349 #: ../fish/guestfish-actions.pod:411
22350 msgid "available-all-groups"
22351 msgstr ""
22352
22353 #. type: verbatim
22354 #: ../fish/guestfish-actions.pod:413
22355 #, no-wrap
22356 msgid ""
22357 " available-all-groups\n"
22358 "\n"
22359 msgstr ""
22360
22361 #. type: textblock
22362 #: ../fish/guestfish-actions.pod:415
22363 msgid ""
22364 "This command returns a list of all optional groups that this daemon knows "
22365 "about.  Note this returns both supported and unsupported groups.  To find "
22366 "out which ones the daemon can actually support you have to call L</"
22367 "available> on each member of the returned list."
22368 msgstr ""
22369
22370 #. type: textblock
22371 #: ../fish/guestfish-actions.pod:421
22372 msgid "See also L</available> and L<guestfs(3)/AVAILABILITY>."
22373 msgstr ""
22374
22375 #. type: =head2
22376 #: ../fish/guestfish-actions.pod:423
22377 msgid "base64-in"
22378 msgstr ""
22379
22380 #. type: verbatim
22381 #: ../fish/guestfish-actions.pod:425
22382 #, no-wrap
22383 msgid ""
22384 " base64-in (base64file|-) filename\n"
22385 "\n"
22386 msgstr ""
22387
22388 #. type: textblock
22389 #: ../fish/guestfish-actions.pod:430 ../fish/guestfish-actions.pod:439
22390 #: ../fish/guestfish-actions.pod:663 ../fish/guestfish-actions.pod:832
22391 #: ../fish/guestfish-actions.pod:851 ../fish/guestfish-actions.pod:1225
22392 #: ../fish/guestfish-actions.pod:4486 ../fish/guestfish-actions.pod:4498
22393 #: ../fish/guestfish-actions.pod:4509 ../fish/guestfish-actions.pod:4520
22394 #: ../fish/guestfish-actions.pod:4572 ../fish/guestfish-actions.pod:4581
22395 #: ../fish/guestfish-actions.pod:4635 ../fish/guestfish-actions.pod:4658
22396 msgid "Use C<-> instead of a filename to read/write from stdin/stdout."
22397 msgstr ""
22398
22399 #. type: =head2
22400 #: ../fish/guestfish-actions.pod:432
22401 msgid "base64-out"
22402 msgstr ""
22403
22404 #. type: verbatim
22405 #: ../fish/guestfish-actions.pod:434
22406 #, no-wrap
22407 msgid ""
22408 " base64-out filename (base64file|-)\n"
22409 "\n"
22410 msgstr ""
22411
22412 #. type: =head2
22413 #: ../fish/guestfish-actions.pod:441
22414 msgid "blockdev-flushbufs"
22415 msgstr ""
22416
22417 #. type: verbatim
22418 #: ../fish/guestfish-actions.pod:443
22419 #, no-wrap
22420 msgid ""
22421 " blockdev-flushbufs device\n"
22422 "\n"
22423 msgstr ""
22424
22425 #. type: =head2
22426 #: ../fish/guestfish-actions.pod:450
22427 msgid "blockdev-getbsz"
22428 msgstr ""
22429
22430 #. type: verbatim
22431 #: ../fish/guestfish-actions.pod:452
22432 #, no-wrap
22433 msgid ""
22434 " blockdev-getbsz device\n"
22435 "\n"
22436 msgstr ""
22437
22438 #. type: =head2
22439 #: ../fish/guestfish-actions.pod:461
22440 msgid "blockdev-getro"
22441 msgstr ""
22442
22443 #. type: verbatim
22444 #: ../fish/guestfish-actions.pod:463
22445 #, no-wrap
22446 msgid ""
22447 " blockdev-getro device\n"
22448 "\n"
22449 msgstr ""
22450
22451 #. type: =head2
22452 #: ../fish/guestfish-actions.pod:470
22453 msgid "blockdev-getsize64"
22454 msgstr ""
22455
22456 #. type: verbatim
22457 #: ../fish/guestfish-actions.pod:472
22458 #, no-wrap
22459 msgid ""
22460 " blockdev-getsize64 device\n"
22461 "\n"
22462 msgstr ""
22463
22464 #. type: textblock
22465 #: ../fish/guestfish-actions.pod:476
22466 msgid "See also L</blockdev-getsz>."
22467 msgstr ""
22468
22469 #. type: =head2
22470 #: ../fish/guestfish-actions.pod:480
22471 msgid "blockdev-getss"
22472 msgstr ""
22473
22474 #. type: verbatim
22475 #: ../fish/guestfish-actions.pod:482
22476 #, no-wrap
22477 msgid ""
22478 " blockdev-getss device\n"
22479 "\n"
22480 msgstr ""
22481
22482 #. type: textblock
22483 #: ../fish/guestfish-actions.pod:487
22484 msgid ""
22485 "(Note, this is not the size in sectors, use L</blockdev-getsz> for that)."
22486 msgstr ""
22487
22488 #. type: =head2
22489 #: ../fish/guestfish-actions.pod:492
22490 msgid "blockdev-getsz"
22491 msgstr ""
22492
22493 #. type: verbatim
22494 #: ../fish/guestfish-actions.pod:494
22495 #, no-wrap
22496 msgid ""
22497 " blockdev-getsz device\n"
22498 "\n"
22499 msgstr ""
22500
22501 #. type: textblock
22502 #: ../fish/guestfish-actions.pod:499
22503 msgid ""
22504 "See also L</blockdev-getss> for the real sector size of the device, and L</"
22505 "blockdev-getsize64> for the more useful I<size in bytes>."
22506 msgstr ""
22507
22508 #. type: =head2
22509 #: ../fish/guestfish-actions.pod:505
22510 msgid "blockdev-rereadpt"
22511 msgstr ""
22512
22513 #. type: verbatim
22514 #: ../fish/guestfish-actions.pod:507
22515 #, no-wrap
22516 msgid ""
22517 " blockdev-rereadpt device\n"
22518 "\n"
22519 msgstr ""
22520
22521 #. type: =head2
22522 #: ../fish/guestfish-actions.pod:513
22523 msgid "blockdev-setbsz"
22524 msgstr ""
22525
22526 #. type: verbatim
22527 #: ../fish/guestfish-actions.pod:515
22528 #, no-wrap
22529 msgid ""
22530 " blockdev-setbsz device blocksize\n"
22531 "\n"
22532 msgstr ""
22533
22534 #. type: =head2
22535 #: ../fish/guestfish-actions.pod:524
22536 msgid "blockdev-setro"
22537 msgstr ""
22538
22539 #. type: verbatim
22540 #: ../fish/guestfish-actions.pod:526
22541 #, no-wrap
22542 msgid ""
22543 " blockdev-setro device\n"
22544 "\n"
22545 msgstr ""
22546
22547 #. type: =head2
22548 #: ../fish/guestfish-actions.pod:532
22549 msgid "blockdev-setrw"
22550 msgstr ""
22551
22552 #. type: verbatim
22553 #: ../fish/guestfish-actions.pod:534
22554 #, no-wrap
22555 msgid ""
22556 " blockdev-setrw device\n"
22557 "\n"
22558 msgstr ""
22559
22560 #. type: =head2
22561 #: ../fish/guestfish-actions.pod:540
22562 msgid "case-sensitive-path"
22563 msgstr ""
22564
22565 #. type: verbatim
22566 #: ../fish/guestfish-actions.pod:542
22567 #, no-wrap
22568 msgid ""
22569 " case-sensitive-path path\n"
22570 "\n"
22571 msgstr ""
22572
22573 #. type: textblock
22574 #: ../fish/guestfish-actions.pod:566
22575 msgid ""
22576 "Thus L</case-sensitive-path> (\"/Windows/System32\")  might return C<\"/"
22577 "WINDOWS/system32\"> (the exact return value would depend on details of how "
22578 "the directories were originally created under Windows)."
22579 msgstr ""
22580
22581 #. type: textblock
22582 #: ../fish/guestfish-actions.pod:574
22583 msgid "See also L</realpath>."
22584 msgstr ""
22585
22586 #. type: =head2
22587 #: ../fish/guestfish-actions.pod:576
22588 msgid "cat"
22589 msgstr ""
22590
22591 #. type: verbatim
22592 #: ../fish/guestfish-actions.pod:578
22593 #, no-wrap
22594 msgid ""
22595 " cat path\n"
22596 "\n"
22597 msgstr ""
22598
22599 #. type: textblock
22600 #: ../fish/guestfish-actions.pod:582
22601 msgid ""
22602 "Note that this function cannot correctly handle binary files (specifically, "
22603 "files containing C<\\0> character which is treated as end of string).  For "
22604 "those you need to use the L</read-file> or L</download> functions which have "
22605 "a more complex interface."
22606 msgstr ""
22607
22608 #. type: =head2
22609 #: ../fish/guestfish-actions.pod:590
22610 msgid "checksum"
22611 msgstr ""
22612
22613 #. type: verbatim
22614 #: ../fish/guestfish-actions.pod:592
22615 #, no-wrap
22616 msgid ""
22617 " checksum csumtype path\n"
22618 "\n"
22619 msgstr ""
22620
22621 #. type: textblock
22622 #: ../fish/guestfish-actions.pod:635
22623 msgid "To get the checksum for a device, use L</checksum-device>."
22624 msgstr ""
22625
22626 #. type: textblock
22627 #: ../fish/guestfish-actions.pod:637
22628 msgid "To get the checksums for many files, use L</checksums-out>."
22629 msgstr ""
22630
22631 #. type: =head2
22632 #: ../fish/guestfish-actions.pod:639
22633 msgid "checksum-device"
22634 msgstr ""
22635
22636 #. type: verbatim
22637 #: ../fish/guestfish-actions.pod:641
22638 #, no-wrap
22639 msgid ""
22640 " checksum-device csumtype device\n"
22641 "\n"
22642 msgstr ""
22643
22644 #. type: textblock
22645 #: ../fish/guestfish-actions.pod:643
22646 msgid ""
22647 "This call computes the MD5, SHAx or CRC checksum of the contents of the "
22648 "device named C<device>.  For the types of checksums supported see the L</"
22649 "checksum> command."
22650 msgstr ""
22651
22652 #. type: =head2
22653 #: ../fish/guestfish-actions.pod:647
22654 msgid "checksums-out"
22655 msgstr ""
22656
22657 #. type: verbatim
22658 #: ../fish/guestfish-actions.pod:649
22659 #, no-wrap
22660 msgid ""
22661 " checksums-out csumtype directory (sumsfile|-)\n"
22662 "\n"
22663 msgstr ""
22664
22665 #. type: =head2
22666 #: ../fish/guestfish-actions.pod:665
22667 msgid "chmod"
22668 msgstr ""
22669
22670 #. type: verbatim
22671 #: ../fish/guestfish-actions.pod:667
22672 #, no-wrap
22673 msgid ""
22674 " chmod mode path\n"
22675 "\n"
22676 msgstr ""
22677
22678 #. type: =head2
22679 #: ../fish/guestfish-actions.pod:678
22680 msgid "chown"
22681 msgstr ""
22682
22683 #. type: verbatim
22684 #: ../fish/guestfish-actions.pod:680
22685 #, no-wrap
22686 msgid ""
22687 " chown owner group path\n"
22688 "\n"
22689 msgstr ""
22690
22691 #. type: =head2
22692 #: ../fish/guestfish-actions.pod:688
22693 msgid "command"
22694 msgstr ""
22695
22696 #. type: verbatim
22697 #: ../fish/guestfish-actions.pod:690
22698 #, no-wrap
22699 msgid ""
22700 " command 'arguments ...'\n"
22701 "\n"
22702 msgstr ""
22703
22704 #. type: textblock
22705 #: ../fish/guestfish-actions.pod:697
22706 msgid ""
22707 "The single parameter is an argv-style list of arguments.  The first element "
22708 "is the name of the program to run.  Subsequent elements are parameters.  The "
22709 "list must be non-empty (ie. must contain a program name).  Note that the "
22710 "command runs directly, and is I<not> invoked via the shell (see L</sh>)."
22711 msgstr ""
22712
22713 #. type: =head2
22714 #: ../fish/guestfish-actions.pod:725
22715 msgid "command-lines"
22716 msgstr ""
22717
22718 #. type: verbatim
22719 #: ../fish/guestfish-actions.pod:727
22720 #, no-wrap
22721 msgid ""
22722 " command-lines 'arguments ...'\n"
22723 "\n"
22724 msgstr ""
22725
22726 #. type: textblock
22727 #: ../fish/guestfish-actions.pod:729
22728 msgid ""
22729 "This is the same as L</command>, but splits the result into a list of lines."
22730 msgstr ""
22731
22732 #. type: textblock
22733 #: ../fish/guestfish-actions.pod:732
22734 msgid "See also: L</sh-lines>"
22735 msgstr ""
22736
22737 #. type: =head2
22738 #: ../fish/guestfish-actions.pod:737
22739 msgid "config"
22740 msgstr ""
22741
22742 #. type: verbatim
22743 #: ../fish/guestfish-actions.pod:739
22744 #, no-wrap
22745 msgid ""
22746 " config qemuparam qemuvalue\n"
22747 "\n"
22748 msgstr ""
22749
22750 #. type: =head2
22751 #: ../fish/guestfish-actions.pod:750
22752 msgid "copy-size"
22753 msgstr ""
22754
22755 #. type: verbatim
22756 #: ../fish/guestfish-actions.pod:752
22757 #, no-wrap
22758 msgid ""
22759 " copy-size src dest size\n"
22760 "\n"
22761 msgstr ""
22762
22763 #. type: =head2
22764 #: ../fish/guestfish-actions.pod:760
22765 msgid "cp"
22766 msgstr ""
22767
22768 #. type: verbatim
22769 #: ../fish/guestfish-actions.pod:762
22770 #, no-wrap
22771 msgid ""
22772 " cp src dest\n"
22773 "\n"
22774 msgstr ""
22775
22776 #. type: =head2
22777 #: ../fish/guestfish-actions.pod:767
22778 msgid "cp-a"
22779 msgstr ""
22780
22781 #. type: verbatim
22782 #: ../fish/guestfish-actions.pod:769
22783 #, no-wrap
22784 msgid ""
22785 " cp-a src dest\n"
22786 "\n"
22787 msgstr ""
22788
22789 #. type: =head2
22790 #: ../fish/guestfish-actions.pod:774
22791 msgid "dd"
22792 msgstr ""
22793
22794 #. type: verbatim
22795 #: ../fish/guestfish-actions.pod:776
22796 #, no-wrap
22797 msgid ""
22798 " dd src dest\n"
22799 "\n"
22800 msgstr ""
22801
22802 #. type: textblock
22803 #: ../fish/guestfish-actions.pod:783
22804 msgid ""
22805 "If the destination is a device, it must be as large or larger than the "
22806 "source file or device, otherwise the copy will fail.  This command cannot do "
22807 "partial copies (see L</copy-size>)."
22808 msgstr ""
22809
22810 #. type: =head2
22811 #: ../fish/guestfish-actions.pod:787
22812 msgid "df"
22813 msgstr ""
22814
22815 #. type: verbatim
22816 #: ../fish/guestfish-actions.pod:789
22817 #, no-wrap
22818 msgid ""
22819 " df\n"
22820 "\n"
22821 msgstr ""
22822
22823 #. type: textblock
22824 #: ../fish/guestfish-actions.pod:793 ../fish/guestfish-actions.pod:804
22825 msgid ""
22826 "This command is mostly useful for interactive sessions.  It is I<not> "
22827 "intended that you try to parse the output string.  Use L</statvfs> from "
22828 "programs."
22829 msgstr ""
22830
22831 #. type: =head2
22832 #: ../fish/guestfish-actions.pod:797
22833 msgid "df-h"
22834 msgstr ""
22835
22836 #. type: verbatim
22837 #: ../fish/guestfish-actions.pod:799
22838 #, no-wrap
22839 msgid ""
22840 " df-h\n"
22841 "\n"
22842 msgstr ""
22843
22844 #. type: =head2
22845 #: ../fish/guestfish-actions.pod:808
22846 msgid "dmesg"
22847 msgstr ""
22848
22849 #. type: verbatim
22850 #: ../fish/guestfish-actions.pod:810
22851 #, no-wrap
22852 msgid ""
22853 " dmesg\n"
22854 "\n"
22855 msgstr ""
22856
22857 #. type: textblock
22858 #: ../fish/guestfish-actions.pod:816
22859 msgid ""
22860 "Another way to get the same information is to enable verbose messages with "
22861 "L</set-verbose> or by setting the environment variable C<LIBGUESTFS_DEBUG=1> "
22862 "before running the program."
22863 msgstr ""
22864
22865 #. type: =head2
22866 #: ../fish/guestfish-actions.pod:821
22867 msgid "download"
22868 msgstr ""
22869
22870 #. type: verbatim
22871 #: ../fish/guestfish-actions.pod:823
22872 #, no-wrap
22873 msgid ""
22874 " download remotefilename (filename|-)\n"
22875 "\n"
22876 msgstr ""
22877
22878 #. type: textblock
22879 #: ../fish/guestfish-actions.pod:830
22880 msgid "See also L</upload>, L</cat>."
22881 msgstr ""
22882
22883 #. type: =head2
22884 #: ../fish/guestfish-actions.pod:834
22885 msgid "download-offset"
22886 msgstr ""
22887
22888 #. type: verbatim
22889 #: ../fish/guestfish-actions.pod:836
22890 #, no-wrap
22891 msgid ""
22892 " download-offset remotefilename (filename|-) offset size\n"
22893 "\n"
22894 msgstr ""
22895
22896 #. type: textblock
22897 #: ../fish/guestfish-actions.pod:844
22898 msgid ""
22899 "Note that there is no limit on the amount of data that can be downloaded "
22900 "with this call, unlike with L</pread>, and this call always reads the full "
22901 "amount unless an error occurs."
22902 msgstr ""
22903
22904 #. type: textblock
22905 #: ../fish/guestfish-actions.pod:849
22906 msgid "See also L</download>, L</pread>."
22907 msgstr ""
22908
22909 #. type: =head2
22910 #: ../fish/guestfish-actions.pod:853
22911 msgid "drop-caches"
22912 msgstr ""
22913
22914 #. type: verbatim
22915 #: ../fish/guestfish-actions.pod:855
22916 #, no-wrap
22917 msgid ""
22918 " drop-caches whattodrop\n"
22919 "\n"
22920 msgstr ""
22921
22922 #. type: =head2
22923 #: ../fish/guestfish-actions.pod:867
22924 msgid "du"
22925 msgstr ""
22926
22927 #. type: verbatim
22928 #: ../fish/guestfish-actions.pod:869
22929 #, no-wrap
22930 msgid ""
22931 " du path\n"
22932 "\n"
22933 msgstr ""
22934
22935 #. type: =head2
22936 #: ../fish/guestfish-actions.pod:881
22937 msgid "e2fsck-f"
22938 msgstr ""
22939
22940 #. type: verbatim
22941 #: ../fish/guestfish-actions.pod:883
22942 #, no-wrap
22943 msgid ""
22944 " e2fsck-f device\n"
22945 "\n"
22946 msgstr ""
22947
22948 #. type: textblock
22949 #: ../fish/guestfish-actions.pod:889
22950 msgid ""
22951 "This command is only needed because of L</resize2fs> (q.v.).  Normally you "
22952 "should use L</fsck>."
22953 msgstr ""
22954
22955 #. type: =head2
22956 #: ../fish/guestfish-actions.pod:892
22957 msgid "echo-daemon"
22958 msgstr ""
22959
22960 #. type: verbatim
22961 #: ../fish/guestfish-actions.pod:894
22962 #, no-wrap
22963 msgid ""
22964 " echo-daemon 'words ...'\n"
22965 "\n"
22966 msgstr ""
22967
22968 #. type: textblock
22969 #: ../fish/guestfish-actions.pod:901
22970 msgid "See also L</ping-daemon>."
22971 msgstr ""
22972
22973 #. type: =head2
22974 #: ../fish/guestfish-actions.pod:903
22975 msgid "egrep"
22976 msgstr ""
22977
22978 #. type: verbatim
22979 #: ../fish/guestfish-actions.pod:905
22980 #, no-wrap
22981 msgid ""
22982 " egrep regex path\n"
22983 "\n"
22984 msgstr ""
22985
22986 #. type: =head2
22987 #: ../fish/guestfish-actions.pod:913
22988 msgid "egrepi"
22989 msgstr ""
22990
22991 #. type: verbatim
22992 #: ../fish/guestfish-actions.pod:915
22993 #, no-wrap
22994 msgid ""
22995 " egrepi regex path\n"
22996 "\n"
22997 msgstr ""
22998
22999 #. type: =head2
23000 #: ../fish/guestfish-actions.pod:923
23001 msgid "equal"
23002 msgstr ""
23003
23004 #. type: verbatim
23005 #: ../fish/guestfish-actions.pod:925
23006 #, no-wrap
23007 msgid ""
23008 " equal file1 file2\n"
23009 "\n"
23010 msgstr ""
23011
23012 #. type: =head2
23013 #: ../fish/guestfish-actions.pod:932
23014 msgid "exists"
23015 msgstr ""
23016
23017 #. type: verbatim
23018 #: ../fish/guestfish-actions.pod:934
23019 #, no-wrap
23020 msgid ""
23021 " exists path\n"
23022 "\n"
23023 msgstr ""
23024
23025 #. type: textblock
23026 #: ../fish/guestfish-actions.pod:939
23027 msgid "See also L</is-file>, L</is-dir>, L</stat>."
23028 msgstr ""
23029
23030 #. type: =head2
23031 #: ../fish/guestfish-actions.pod:941
23032 msgid "fallocate"
23033 msgstr ""
23034
23035 #. type: verbatim
23036 #: ../fish/guestfish-actions.pod:943
23037 #, no-wrap
23038 msgid ""
23039 " fallocate path len\n"
23040 "\n"
23041 msgstr ""
23042
23043 #. type: =head2
23044 #: ../fish/guestfish-actions.pod:960
23045 msgid "fallocate64"
23046 msgstr ""
23047
23048 #. type: verbatim
23049 #: ../fish/guestfish-actions.pod:962
23050 #, no-wrap
23051 msgid ""
23052 " fallocate64 path len\n"
23053 "\n"
23054 msgstr ""
23055
23056 #. type: textblock
23057 #: ../fish/guestfish-actions.pod:968
23058 msgid ""
23059 "Note that this call allocates disk blocks for the file.  To create a sparse "
23060 "file use L</truncate-size> instead."
23061 msgstr ""
23062
23063 #. type: textblock
23064 #: ../fish/guestfish-actions.pod:971
23065 msgid ""
23066 "The deprecated call L</fallocate> does the same, but owing to an oversight "
23067 "it only allowed 30 bit lengths to be specified, effectively limiting the "
23068 "maximum size of files created through that call to 1GB."
23069 msgstr ""
23070
23071 #. type: =head2
23072 #: ../fish/guestfish-actions.pod:980
23073 msgid "fgrep"
23074 msgstr ""
23075
23076 #. type: verbatim
23077 #: ../fish/guestfish-actions.pod:982
23078 #, no-wrap
23079 msgid ""
23080 " fgrep pattern path\n"
23081 "\n"
23082 msgstr ""
23083
23084 #. type: =head2
23085 #: ../fish/guestfish-actions.pod:990
23086 msgid "fgrepi"
23087 msgstr ""
23088
23089 #. type: verbatim
23090 #: ../fish/guestfish-actions.pod:992
23091 #, no-wrap
23092 msgid ""
23093 " fgrepi pattern path\n"
23094 "\n"
23095 msgstr ""
23096
23097 #. type: =head2
23098 #: ../fish/guestfish-actions.pod:1000
23099 msgid "file"
23100 msgstr ""
23101
23102 #. type: verbatim
23103 #: ../fish/guestfish-actions.pod:1002
23104 #, no-wrap
23105 msgid ""
23106 " file path\n"
23107 "\n"
23108 msgstr ""
23109
23110 #. type: textblock
23111 #: ../fish/guestfish-actions.pod:1018
23112 msgid ""
23113 "See also: L<file(1)>, L</vfs-type>, L</lstat>, L</is-file>, L</is-blockdev> "
23114 "(etc)."
23115 msgstr ""
23116
23117 #. type: =head2
23118 #: ../fish/guestfish-actions.pod:1021
23119 msgid "file-architecture"
23120 msgstr ""
23121
23122 #. type: verbatim
23123 #: ../fish/guestfish-actions.pod:1023
23124 #, no-wrap
23125 msgid ""
23126 " file-architecture filename\n"
23127 "\n"
23128 msgstr ""
23129
23130 #. type: =head2
23131 #: ../fish/guestfish-actions.pod:1126
23132 msgid "filesize"
23133 msgstr ""
23134
23135 #. type: verbatim
23136 #: ../fish/guestfish-actions.pod:1128
23137 #, no-wrap
23138 msgid ""
23139 " filesize file\n"
23140 "\n"
23141 msgstr ""
23142
23143 #. type: textblock
23144 #: ../fish/guestfish-actions.pod:1132
23145 msgid ""
23146 "To get other stats about a file, use L</stat>, L</lstat>, L</is-dir>, L</is-"
23147 "file> etc.  To get the size of block devices, use L</blockdev-getsize64>."
23148 msgstr ""
23149
23150 #. type: =head2
23151 #: ../fish/guestfish-actions.pod:1136
23152 msgid "fill"
23153 msgstr ""
23154
23155 #. type: verbatim
23156 #: ../fish/guestfish-actions.pod:1138
23157 #, no-wrap
23158 msgid ""
23159 " fill c len path\n"
23160 "\n"
23161 msgstr ""
23162
23163 #. type: textblock
23164 #: ../fish/guestfish-actions.pod:1144
23165 msgid ""
23166 "To fill a file with zero bytes (sparsely), it is much more efficient to use "
23167 "L</truncate-size>.  To create a file with a pattern of repeating bytes use "
23168 "L</fill-pattern>."
23169 msgstr ""
23170
23171 #. type: =head2
23172 #: ../fish/guestfish-actions.pod:1149
23173 msgid "fill-pattern"
23174 msgstr ""
23175
23176 #. type: verbatim
23177 #: ../fish/guestfish-actions.pod:1151
23178 #, no-wrap
23179 msgid ""
23180 " fill-pattern pattern len path\n"
23181 "\n"
23182 msgstr ""
23183
23184 #. type: textblock
23185 #: ../fish/guestfish-actions.pod:1153
23186 msgid ""
23187 "This function is like L</fill> except that it creates a new file of length "
23188 "C<len> containing the repeating pattern of bytes in C<pattern>.  The pattern "
23189 "is truncated if necessary to ensure the length of the file is exactly C<len> "
23190 "bytes."
23191 msgstr ""
23192
23193 #. type: =head2
23194 #: ../fish/guestfish-actions.pod:1158
23195 msgid "find"
23196 msgstr ""
23197
23198 #. type: verbatim
23199 #: ../fish/guestfish-actions.pod:1160
23200 #, no-wrap
23201 msgid ""
23202 " find directory\n"
23203 "\n"
23204 msgstr ""
23205
23206 #. type: textblock
23207 #: ../fish/guestfish-actions.pod:1174
23208 msgid "then the returned list from L</find> C</tmp> would be 4 elements:"
23209 msgstr ""
23210
23211 #. type: textblock
23212 #: ../fish/guestfish-actions.pod:1187
23213 msgid "See also L</find0>."
23214 msgstr ""
23215
23216 #. type: =head2
23217 #: ../fish/guestfish-actions.pod:1192
23218 msgid "find0"
23219 msgstr ""
23220
23221 #. type: verbatim
23222 #: ../fish/guestfish-actions.pod:1194
23223 #, no-wrap
23224 msgid ""
23225 " find0 directory (files|-)\n"
23226 "\n"
23227 msgstr ""
23228
23229 #. type: textblock
23230 #: ../fish/guestfish-actions.pod:1200
23231 msgid ""
23232 "This command works the same way as L</find> with the following exceptions:"
23233 msgstr ""
23234
23235 #. type: =head2
23236 #: ../fish/guestfish-actions.pod:1227
23237 msgid "findfs-label"
23238 msgstr ""
23239
23240 #. type: verbatim
23241 #: ../fish/guestfish-actions.pod:1229
23242 #, no-wrap
23243 msgid ""
23244 " findfs-label label\n"
23245 "\n"
23246 msgstr ""
23247
23248 #. type: textblock
23249 #: ../fish/guestfish-actions.pod:1235
23250 msgid "To find the label of a filesystem, use L</vfs-label>."
23251 msgstr ""
23252
23253 #. type: =head2
23254 #: ../fish/guestfish-actions.pod:1237
23255 msgid "findfs-uuid"
23256 msgstr ""
23257
23258 #. type: verbatim
23259 #: ../fish/guestfish-actions.pod:1239
23260 #, no-wrap
23261 msgid ""
23262 " findfs-uuid uuid\n"
23263 "\n"
23264 msgstr ""
23265
23266 #. type: textblock
23267 #: ../fish/guestfish-actions.pod:1245
23268 msgid "To find the UUID of a filesystem, use L</vfs-uuid>."
23269 msgstr ""
23270
23271 #. type: =head2
23272 #: ../fish/guestfish-actions.pod:1247
23273 msgid "fsck"
23274 msgstr ""
23275
23276 #. type: verbatim
23277 #: ../fish/guestfish-actions.pod:1249
23278 #, no-wrap
23279 msgid ""
23280 " fsck fstype device\n"
23281 "\n"
23282 msgstr ""
23283
23284 #. type: =head2
23285 #: ../fish/guestfish-actions.pod:1279
23286 msgid "get-append"
23287 msgstr ""
23288
23289 #. type: verbatim
23290 #: ../fish/guestfish-actions.pod:1281
23291 #, no-wrap
23292 msgid ""
23293 " get-append\n"
23294 "\n"
23295 msgstr ""
23296
23297 #. type: =head2
23298 #: ../fish/guestfish-actions.pod:1288
23299 msgid "get-attach-method"
23300 msgstr ""
23301
23302 #. type: verbatim
23303 #: ../fish/guestfish-actions.pod:1290
23304 #, no-wrap
23305 msgid ""
23306 " get-attach-method\n"
23307 "\n"
23308 msgstr ""
23309
23310 #. type: textblock
23311 #: ../fish/guestfish-actions.pod:1292
23312 msgid "Return the current attach method.  See L</set-attach-method>."
23313 msgstr ""
23314
23315 #. type: =head2
23316 #: ../fish/guestfish-actions.pod:1294
23317 msgid "get-autosync"
23318 msgstr ""
23319
23320 #. type: verbatim
23321 #: ../fish/guestfish-actions.pod:1296
23322 #, no-wrap
23323 msgid ""
23324 " get-autosync\n"
23325 "\n"
23326 msgstr ""
23327
23328 #. type: =head2
23329 #: ../fish/guestfish-actions.pod:1300
23330 msgid "get-direct"
23331 msgstr ""
23332
23333 #. type: verbatim
23334 #: ../fish/guestfish-actions.pod:1302
23335 #, no-wrap
23336 msgid ""
23337 " get-direct\n"
23338 "\n"
23339 msgstr ""
23340
23341 #. type: =head2
23342 #: ../fish/guestfish-actions.pod:1306
23343 msgid "get-e2label"
23344 msgstr ""
23345
23346 #. type: verbatim
23347 #: ../fish/guestfish-actions.pod:1308
23348 #, no-wrap
23349 msgid ""
23350 " get-e2label device\n"
23351 "\n"
23352 msgstr ""
23353
23354 #. type: =head2
23355 #: ../fish/guestfish-actions.pod:1320
23356 msgid "get-e2uuid"
23357 msgstr ""
23358
23359 #. type: verbatim
23360 #: ../fish/guestfish-actions.pod:1322
23361 #, no-wrap
23362 msgid ""
23363 " get-e2uuid device\n"
23364 "\n"
23365 msgstr ""
23366
23367 #. type: =head2
23368 #: ../fish/guestfish-actions.pod:1334
23369 msgid "get-memsize"
23370 msgstr ""
23371
23372 #. type: verbatim
23373 #: ../fish/guestfish-actions.pod:1336
23374 #, no-wrap
23375 msgid ""
23376 " get-memsize\n"
23377 "\n"
23378 msgstr ""
23379
23380 #. type: textblock
23381 #: ../fish/guestfish-actions.pod:1341
23382 msgid ""
23383 "If L</set-memsize> was not called on this handle, and if "
23384 "C<LIBGUESTFS_MEMSIZE> was not set, then this returns the compiled-in default "
23385 "value for memsize."
23386 msgstr ""
23387
23388 #. type: =head2
23389 #: ../fish/guestfish-actions.pod:1348
23390 msgid "get-network"
23391 msgstr ""
23392
23393 #. type: verbatim
23394 #: ../fish/guestfish-actions.pod:1350
23395 #, no-wrap
23396 msgid ""
23397 " get-network\n"
23398 "\n"
23399 msgstr ""
23400
23401 #. type: =head2
23402 #: ../fish/guestfish-actions.pod:1354
23403 msgid "get-path"
23404 msgstr ""
23405
23406 #. type: verbatim
23407 #: ../fish/guestfish-actions.pod:1356
23408 #, no-wrap
23409 msgid ""
23410 " get-path\n"
23411 "\n"
23412 msgstr ""
23413
23414 #. type: =head2
23415 #: ../fish/guestfish-actions.pod:1363
23416 msgid "get-pid"
23417 msgstr ""
23418
23419 #. type: =head2
23420 #: ../fish/guestfish-actions.pod:1365
23421 msgid "pid"
23422 msgstr ""
23423
23424 #. type: verbatim
23425 #: ../fish/guestfish-actions.pod:1367
23426 #, no-wrap
23427 msgid ""
23428 " get-pid\n"
23429 "\n"
23430 msgstr ""
23431
23432 #. type: =head2
23433 #: ../fish/guestfish-actions.pod:1374
23434 msgid "get-qemu"
23435 msgstr ""
23436
23437 #. type: verbatim
23438 #: ../fish/guestfish-actions.pod:1376
23439 #, no-wrap
23440 msgid ""
23441 " get-qemu\n"
23442 "\n"
23443 msgstr ""
23444
23445 #. type: =head2
23446 #: ../fish/guestfish-actions.pod:1383
23447 msgid "get-recovery-proc"
23448 msgstr ""
23449
23450 #. type: verbatim
23451 #: ../fish/guestfish-actions.pod:1385
23452 #, no-wrap
23453 msgid ""
23454 " get-recovery-proc\n"
23455 "\n"
23456 msgstr ""
23457
23458 #. type: =head2
23459 #: ../fish/guestfish-actions.pod:1389
23460 msgid "get-selinux"
23461 msgstr ""
23462
23463 #. type: verbatim
23464 #: ../fish/guestfish-actions.pod:1391
23465 #, no-wrap
23466 msgid ""
23467 " get-selinux\n"
23468 "\n"
23469 msgstr ""
23470
23471 #. type: textblock
23472 #: ../fish/guestfish-actions.pod:1393
23473 msgid ""
23474 "This returns the current setting of the selinux flag which is passed to the "
23475 "appliance at boot time.  See L</set-selinux>."
23476 msgstr ""
23477
23478 #. type: =head2
23479 #: ../fish/guestfish-actions.pod:1399
23480 msgid "get-state"
23481 msgstr ""
23482
23483 #. type: verbatim
23484 #: ../fish/guestfish-actions.pod:1401
23485 #, no-wrap
23486 msgid ""
23487 " get-state\n"
23488 "\n"
23489 msgstr ""
23490
23491 #. type: =head2
23492 #: ../fish/guestfish-actions.pod:1408
23493 msgid "get-trace"
23494 msgstr ""
23495
23496 #. type: verbatim
23497 #: ../fish/guestfish-actions.pod:1410
23498 #, no-wrap
23499 msgid ""
23500 " get-trace\n"
23501 "\n"
23502 msgstr ""
23503
23504 #. type: =head2
23505 #: ../fish/guestfish-actions.pod:1414
23506 msgid "get-umask"
23507 msgstr ""
23508
23509 #. type: verbatim
23510 #: ../fish/guestfish-actions.pod:1416
23511 #, no-wrap
23512 msgid ""
23513 " get-umask\n"
23514 "\n"
23515 msgstr ""
23516
23517 #. type: textblock
23518 #: ../fish/guestfish-actions.pod:1418
23519 msgid ""
23520 "Return the current umask.  By default the umask is C<022> unless it has been "
23521 "set by calling L</umask>."
23522 msgstr ""
23523
23524 #. type: =head2
23525 #: ../fish/guestfish-actions.pod:1421
23526 msgid "get-verbose"
23527 msgstr ""
23528
23529 #. type: verbatim
23530 #: ../fish/guestfish-actions.pod:1423
23531 #, no-wrap
23532 msgid ""
23533 " get-verbose\n"
23534 "\n"
23535 msgstr ""
23536
23537 #. type: =head2
23538 #: ../fish/guestfish-actions.pod:1427
23539 msgid "getcon"
23540 msgstr ""
23541
23542 #. type: verbatim
23543 #: ../fish/guestfish-actions.pod:1429
23544 #, no-wrap
23545 msgid ""
23546 " getcon\n"
23547 "\n"
23548 msgstr ""
23549
23550 #. type: textblock
23551 #: ../fish/guestfish-actions.pod:1433
23552 msgid "See the documentation about SELINUX in L<guestfs(3)>, and L</setcon>"
23553 msgstr ""
23554
23555 #. type: =head2
23556 #: ../fish/guestfish-actions.pod:1436
23557 msgid "getxattr"
23558 msgstr ""
23559
23560 #. type: verbatim
23561 #: ../fish/guestfish-actions.pod:1438
23562 #, no-wrap
23563 msgid ""
23564 " getxattr path name\n"
23565 "\n"
23566 msgstr ""
23567
23568 #. type: textblock
23569 #: ../fish/guestfish-actions.pod:1440
23570 msgid ""
23571 "Get a single extended attribute from file C<path> named C<name>.  This call "
23572 "follows symlinks.  If you want to lookup an extended attribute for the "
23573 "symlink itself, use L</lgetxattr>."
23574 msgstr ""
23575
23576 #. type: textblock
23577 #: ../fish/guestfish-actions.pod:1444 ../fish/guestfish-actions.pod:2450
23578 msgid ""
23579 "Normally it is better to get all extended attributes from a file in one go "
23580 "by calling L</getxattrs>.  However some Linux filesystem implementations are "
23581 "buggy and do not provide a way to list out attributes.  For these "
23582 "filesystems (notably ntfs-3g)  you have to know the names of the extended "
23583 "attributes you want in advance and call this function."
23584 msgstr ""
23585
23586 #. type: textblock
23587 #: ../fish/guestfish-actions.pod:1454
23588 msgid "See also: L</getxattrs>, L</lgetxattr>, L<attr(5)>."
23589 msgstr ""
23590
23591 #. type: =head2
23592 #: ../fish/guestfish-actions.pod:1456
23593 msgid "getxattrs"
23594 msgstr ""
23595
23596 #. type: verbatim
23597 #: ../fish/guestfish-actions.pod:1458
23598 #, no-wrap
23599 msgid ""
23600 " getxattrs path\n"
23601 "\n"
23602 msgstr ""
23603
23604 #. type: textblock
23605 #: ../fish/guestfish-actions.pod:1466
23606 msgid "See also: L</lgetxattrs>, L<attr(5)>."
23607 msgstr ""
23608
23609 #. type: =head2
23610 #: ../fish/guestfish-actions.pod:1468
23611 msgid "glob-expand"
23612 msgstr ""
23613
23614 #. type: verbatim
23615 #: ../fish/guestfish-actions.pod:1470
23616 #, no-wrap
23617 msgid ""
23618 " glob-expand pattern\n"
23619 "\n"
23620 msgstr ""
23621
23622 #. type: =head2
23623 #: ../fish/guestfish-actions.pod:1483
23624 msgid "grep"
23625 msgstr ""
23626
23627 #. type: verbatim
23628 #: ../fish/guestfish-actions.pod:1485
23629 #, no-wrap
23630 msgid ""
23631 " grep regex path\n"
23632 "\n"
23633 msgstr ""
23634
23635 #. type: =head2
23636 #: ../fish/guestfish-actions.pod:1493
23637 msgid "grepi"
23638 msgstr ""
23639
23640 #. type: verbatim
23641 #: ../fish/guestfish-actions.pod:1495
23642 #, no-wrap
23643 msgid ""
23644 " grepi regex path\n"
23645 "\n"
23646 msgstr ""
23647
23648 #. type: =head2
23649 #: ../fish/guestfish-actions.pod:1503
23650 msgid "grub-install"
23651 msgstr ""
23652
23653 #. type: verbatim
23654 #: ../fish/guestfish-actions.pod:1505
23655 #, no-wrap
23656 msgid ""
23657 " grub-install root device\n"
23658 "\n"
23659 msgstr ""
23660
23661 #. type: =head2
23662 #: ../fish/guestfish-actions.pod:1521
23663 msgid "head"
23664 msgstr ""
23665
23666 #. type: verbatim
23667 #: ../fish/guestfish-actions.pod:1523
23668 #, no-wrap
23669 msgid ""
23670 " head path\n"
23671 "\n"
23672 msgstr ""
23673
23674 #. type: =head2
23675 #: ../fish/guestfish-actions.pod:1531
23676 msgid "head-n"
23677 msgstr ""
23678
23679 #. type: verbatim
23680 #: ../fish/guestfish-actions.pod:1533
23681 #, no-wrap
23682 msgid ""
23683 " head-n nrlines path\n"
23684 "\n"
23685 msgstr ""
23686
23687 #. type: =head2
23688 #: ../fish/guestfish-actions.pod:1546
23689 msgid "hexdump"
23690 msgstr ""
23691
23692 #. type: verbatim
23693 #: ../fish/guestfish-actions.pod:1548
23694 #, no-wrap
23695 msgid ""
23696 " hexdump path\n"
23697 "\n"
23698 msgstr ""
23699
23700 #. type: =head2
23701 #: ../fish/guestfish-actions.pod:1556
23702 msgid "initrd-cat"
23703 msgstr ""
23704
23705 #. type: verbatim
23706 #: ../fish/guestfish-actions.pod:1558
23707 #, no-wrap
23708 msgid ""
23709 " initrd-cat initrdpath filename\n"
23710 "\n"
23711 msgstr ""
23712
23713 #. type: textblock
23714 #: ../fish/guestfish-actions.pod:1570
23715 msgid "See also L</initrd-list>."
23716 msgstr ""
23717
23718 #. type: =head2
23719 #: ../fish/guestfish-actions.pod:1575
23720 msgid "initrd-list"
23721 msgstr ""
23722
23723 #. type: verbatim
23724 #: ../fish/guestfish-actions.pod:1577
23725 #, no-wrap
23726 msgid ""
23727 " initrd-list path\n"
23728 "\n"
23729 msgstr ""
23730
23731 #. type: =head2
23732 #: ../fish/guestfish-actions.pod:1589
23733 msgid "inotify-add-watch"
23734 msgstr ""
23735
23736 #. type: verbatim
23737 #: ../fish/guestfish-actions.pod:1591
23738 #, no-wrap
23739 msgid ""
23740 " inotify-add-watch path mask\n"
23741 "\n"
23742 msgstr ""
23743
23744 #. type: =head2
23745 #: ../fish/guestfish-actions.pod:1603
23746 msgid "inotify-close"
23747 msgstr ""
23748
23749 #. type: verbatim
23750 #: ../fish/guestfish-actions.pod:1605
23751 #, no-wrap
23752 msgid ""
23753 " inotify-close\n"
23754 "\n"
23755 msgstr ""
23756
23757 #. type: =head2
23758 #: ../fish/guestfish-actions.pod:1611
23759 msgid "inotify-files"
23760 msgstr ""
23761
23762 #. type: verbatim
23763 #: ../fish/guestfish-actions.pod:1613
23764 #, no-wrap
23765 msgid ""
23766 " inotify-files\n"
23767 "\n"
23768 msgstr ""
23769
23770 #. type: textblock
23771 #: ../fish/guestfish-actions.pod:1615
23772 msgid ""
23773 "This function is a helpful wrapper around L</inotify-read> which just "
23774 "returns a list of pathnames of objects that were touched.  The returned "
23775 "pathnames are sorted and deduplicated."
23776 msgstr ""
23777
23778 #. type: =head2
23779 #: ../fish/guestfish-actions.pod:1619
23780 msgid "inotify-init"
23781 msgstr ""
23782
23783 #. type: verbatim
23784 #: ../fish/guestfish-actions.pod:1621
23785 #, no-wrap
23786 msgid ""
23787 " inotify-init maxevents\n"
23788 "\n"
23789 msgstr ""
23790
23791 #. type: textblock
23792 #: ../fish/guestfish-actions.pod:1627
23793 msgid ""
23794 "C<maxevents> is the maximum number of events which will be queued up between "
23795 "calls to L</inotify-read> or L</inotify-files>.  If this is passed as C<0>, "
23796 "then the kernel (or previously set)  default is used.  For Linux 2.6.29 the "
23797 "default was 16384 events.  Beyond this limit, the kernel throws away events, "
23798 "but records the fact that it threw them away by setting a flag "
23799 "C<IN_Q_OVERFLOW> in the returned structure list (see L</inotify-read>)."
23800 msgstr ""
23801
23802 #. type: textblock
23803 #: ../fish/guestfish-actions.pod:1637
23804 msgid ""
23805 "Before any events are generated, you have to add some watches to the "
23806 "internal watch list.  See: L</inotify-add-watch>, L</inotify-rm-watch> and "
23807 "L</inotify-watch-all>."
23808 msgstr ""
23809
23810 #. type: textblock
23811 #: ../fish/guestfish-actions.pod:1643
23812 msgid ""
23813 "Queued up events should be read periodically by calling L</inotify-read> (or "
23814 "L</inotify-files> which is just a helpful wrapper around L</inotify-read>).  "
23815 "If you don't read the events out often enough then you risk the internal "
23816 "queue overflowing."
23817 msgstr ""
23818
23819 #. type: textblock
23820 #: ../fish/guestfish-actions.pod:1650
23821 msgid ""
23822 "The handle should be closed after use by calling L</inotify-close>.  This "
23823 "also removes any watches automatically."
23824 msgstr ""
23825
23826 #. type: =head2
23827 #: ../fish/guestfish-actions.pod:1659
23828 msgid "inotify-read"
23829 msgstr ""
23830
23831 #. type: verbatim
23832 #: ../fish/guestfish-actions.pod:1661
23833 #, no-wrap
23834 msgid ""
23835 " inotify-read\n"
23836 "\n"
23837 msgstr ""
23838
23839 #. type: =head2
23840 #: ../fish/guestfish-actions.pod:1674
23841 msgid "inotify-rm-watch"
23842 msgstr ""
23843
23844 #. type: verbatim
23845 #: ../fish/guestfish-actions.pod:1676
23846 #, no-wrap
23847 msgid ""
23848 " inotify-rm-watch wd\n"
23849 "\n"
23850 msgstr ""
23851
23852 #. type: textblock
23853 #: ../fish/guestfish-actions.pod:1678
23854 msgid "Remove a previously defined inotify watch.  See L</inotify-add-watch>."
23855 msgstr ""
23856
23857 #. type: =head2
23858 #: ../fish/guestfish-actions.pod:1681
23859 msgid "inspect-get-arch"
23860 msgstr ""
23861
23862 #. type: verbatim
23863 #: ../fish/guestfish-actions.pod:1683
23864 #, no-wrap
23865 msgid ""
23866 " inspect-get-arch root\n"
23867 "\n"
23868 msgstr ""
23869
23870 #. type: textblock
23871 #: ../fish/guestfish-actions.pod:1685 ../fish/guestfish-actions.pod:1701
23872 #: ../fish/guestfish-actions.pod:1787 ../fish/guestfish-actions.pod:1823
23873 #: ../fish/guestfish-actions.pod:1841 ../fish/guestfish-actions.pod:1875
23874 #: ../fish/guestfish-actions.pod:1890 ../fish/guestfish-actions.pod:1911
23875 #: ../fish/guestfish-actions.pod:1926 ../fish/guestfish-actions.pod:1959
23876 #: ../fish/guestfish-actions.pod:1981 ../fish/guestfish-actions.pod:2005
23877 #: ../fish/guestfish-actions.pod:2022 ../fish/guestfish-actions.pod:2065
23878 #: ../fish/guestfish-actions.pod:2100 ../fish/guestfish-actions.pod:2116
23879 #: ../fish/guestfish-actions.pod:2132 ../fish/guestfish-actions.pod:2145
23880 #: ../fish/guestfish-actions.pod:2158 ../fish/guestfish-actions.pod:2173
23881 msgid ""
23882 "This function should only be called with a root device string as returned by "
23883 "L</inspect-os>."
23884 msgstr ""
23885
23886 #. type: textblock
23887 #: ../fish/guestfish-actions.pod:1688
23888 msgid ""
23889 "This returns the architecture of the inspected operating system.  The "
23890 "possible return values are listed under L</file-architecture>."
23891 msgstr ""
23892
23893 #. type: =head2
23894 #: ../fish/guestfish-actions.pod:1697
23895 msgid "inspect-get-distro"
23896 msgstr ""
23897
23898 #. type: verbatim
23899 #: ../fish/guestfish-actions.pod:1699
23900 #, no-wrap
23901 msgid ""
23902 " inspect-get-distro root\n"
23903 "\n"
23904 msgstr ""
23905
23906 #. type: =head2
23907 #: ../fish/guestfish-actions.pod:1783
23908 msgid "inspect-get-drive-mappings"
23909 msgstr ""
23910
23911 #. type: verbatim
23912 #: ../fish/guestfish-actions.pod:1785
23913 #, no-wrap
23914 msgid ""
23915 " inspect-get-drive-mappings root\n"
23916 "\n"
23917 msgstr ""
23918
23919 #. type: textblock
23920 #: ../fish/guestfish-actions.pod:1815
23921 msgid ""
23922 "Please read L<guestfs(3)/INSPECTION> for more details.  See also L</inspect-"
23923 "get-mountpoints>, L</inspect-get-filesystems>."
23924 msgstr ""
23925
23926 #. type: =head2
23927 #: ../fish/guestfish-actions.pod:1819
23928 msgid "inspect-get-filesystems"
23929 msgstr ""
23930
23931 #. type: verbatim
23932 #: ../fish/guestfish-actions.pod:1821
23933 #, no-wrap
23934 msgid ""
23935 " inspect-get-filesystems root\n"
23936 "\n"
23937 msgstr ""
23938
23939 #. type: textblock
23940 #: ../fish/guestfish-actions.pod:1834
23941 msgid ""
23942 "Please read L<guestfs(3)/INSPECTION> for more details.  See also L</inspect-"
23943 "get-mountpoints>."
23944 msgstr ""
23945
23946 #. type: =head2
23947 #: ../fish/guestfish-actions.pod:1837
23948 msgid "inspect-get-format"
23949 msgstr ""
23950
23951 #. type: verbatim
23952 #: ../fish/guestfish-actions.pod:1839
23953 #, no-wrap
23954 msgid ""
23955 " inspect-get-format root\n"
23956 "\n"
23957 msgstr ""
23958
23959 #. type: =head2
23960 #: ../fish/guestfish-actions.pod:1871
23961 msgid "inspect-get-hostname"
23962 msgstr ""
23963
23964 #. type: verbatim
23965 #: ../fish/guestfish-actions.pod:1873
23966 #, no-wrap
23967 msgid ""
23968 " inspect-get-hostname root\n"
23969 "\n"
23970 msgstr ""
23971
23972 #. type: =head2
23973 #: ../fish/guestfish-actions.pod:1886
23974 msgid "inspect-get-major-version"
23975 msgstr ""
23976
23977 #. type: verbatim
23978 #: ../fish/guestfish-actions.pod:1888
23979 #, no-wrap
23980 msgid ""
23981 " inspect-get-major-version root\n"
23982 "\n"
23983 msgstr ""
23984
23985 #. type: =head2
23986 #: ../fish/guestfish-actions.pod:1907
23987 msgid "inspect-get-minor-version"
23988 msgstr ""
23989
23990 #. type: verbatim
23991 #: ../fish/guestfish-actions.pod:1909
23992 #, no-wrap
23993 msgid ""
23994 " inspect-get-minor-version root\n"
23995 "\n"
23996 msgstr ""
23997
23998 #. type: textblock
23999 #: ../fish/guestfish-actions.pod:1919
24000 msgid ""
24001 "Please read L<guestfs(3)/INSPECTION> for more details.  See also L</inspect-"
24002 "get-major-version>."
24003 msgstr ""
24004
24005 #. type: =head2
24006 #: ../fish/guestfish-actions.pod:1922
24007 msgid "inspect-get-mountpoints"
24008 msgstr ""
24009
24010 #. type: verbatim
24011 #: ../fish/guestfish-actions.pod:1924
24012 #, no-wrap
24013 msgid ""
24014 " inspect-get-mountpoints root\n"
24015 "\n"
24016 msgstr ""
24017
24018 #. type: textblock
24019 #: ../fish/guestfish-actions.pod:1946
24020 msgid ""
24021 "For operating systems like Windows which still use drive letters, this call "
24022 "will only return an entry for the first drive \"mounted on\" C</>.  For "
24023 "information about the mapping of drive letters to partitions, see L</inspect-"
24024 "get-drive-mappings>."
24025 msgstr ""
24026
24027 #. type: textblock
24028 #: ../fish/guestfish-actions.pod:1952
24029 msgid ""
24030 "Please read L<guestfs(3)/INSPECTION> for more details.  See also L</inspect-"
24031 "get-filesystems>."
24032 msgstr ""
24033
24034 #. type: =head2
24035 #: ../fish/guestfish-actions.pod:1955
24036 msgid "inspect-get-package-format"
24037 msgstr ""
24038
24039 #. type: verbatim
24040 #: ../fish/guestfish-actions.pod:1957
24041 #, no-wrap
24042 msgid ""
24043 " inspect-get-package-format root\n"
24044 "\n"
24045 msgstr ""
24046
24047 #. type: textblock
24048 #: ../fish/guestfish-actions.pod:1962
24049 msgid ""
24050 "This function and L</inspect-get-package-management> return the package "
24051 "format and package management tool used by the inspected operating system.  "
24052 "For example for Fedora these functions would return C<rpm> (package format) "
24053 "and C<yum> (package management)."
24054 msgstr ""
24055
24056 #. type: =head2
24057 #: ../fish/guestfish-actions.pod:1977
24058 msgid "inspect-get-package-management"
24059 msgstr ""
24060
24061 #. type: verbatim
24062 #: ../fish/guestfish-actions.pod:1979
24063 #, no-wrap
24064 msgid ""
24065 " inspect-get-package-management root\n"
24066 "\n"
24067 msgstr ""
24068
24069 #. type: textblock
24070 #: ../fish/guestfish-actions.pod:1984
24071 msgid ""
24072 "L</inspect-get-package-format> and this function return the package format "
24073 "and package management tool used by the inspected operating system.  For "
24074 "example for Fedora these functions would return C<rpm> (package format) and "
24075 "C<yum> (package management)."
24076 msgstr ""
24077
24078 #. type: =head2
24079 #: ../fish/guestfish-actions.pod:2001
24080 msgid "inspect-get-product-name"
24081 msgstr ""
24082
24083 #. type: verbatim
24084 #: ../fish/guestfish-actions.pod:2003
24085 #, no-wrap
24086 msgid ""
24087 " inspect-get-product-name root\n"
24088 "\n"
24089 msgstr ""
24090
24091 #. type: =head2
24092 #: ../fish/guestfish-actions.pod:2018
24093 msgid "inspect-get-product-variant"
24094 msgstr ""
24095
24096 #. type: verbatim
24097 #: ../fish/guestfish-actions.pod:2020
24098 #, no-wrap
24099 msgid ""
24100 " inspect-get-product-variant root\n"
24101 "\n"
24102 msgstr ""
24103
24104 #. type: textblock
24105 #: ../fish/guestfish-actions.pod:2044
24106 msgid ""
24107 "Please read L<guestfs(3)/INSPECTION> for more details.  See also L</inspect-"
24108 "get-product-name>, L</inspect-get-major-version>."
24109 msgstr ""
24110
24111 #. type: =head2
24112 #: ../fish/guestfish-actions.pod:2048
24113 msgid "inspect-get-roots"
24114 msgstr ""
24115
24116 #. type: verbatim
24117 #: ../fish/guestfish-actions.pod:2050
24118 #, no-wrap
24119 msgid ""
24120 " inspect-get-roots\n"
24121 "\n"
24122 msgstr ""
24123
24124 #. type: textblock
24125 #: ../fish/guestfish-actions.pod:2052
24126 msgid ""
24127 "This function is a convenient way to get the list of root devices, as "
24128 "returned from a previous call to L</inspect-os>, but without redoing the "
24129 "whole inspection process."
24130 msgstr ""
24131
24132 #. type: textblock
24133 #: ../fish/guestfish-actions.pod:2056
24134 msgid ""
24135 "This returns an empty list if either no root devices were found or the "
24136 "caller has not called L</inspect-os>."
24137 msgstr ""
24138
24139 #. type: =head2
24140 #: ../fish/guestfish-actions.pod:2061
24141 msgid "inspect-get-type"
24142 msgstr ""
24143
24144 #. type: verbatim
24145 #: ../fish/guestfish-actions.pod:2063
24146 #, no-wrap
24147 msgid ""
24148 " inspect-get-type root\n"
24149 "\n"
24150 msgstr ""
24151
24152 #. type: =head2
24153 #: ../fish/guestfish-actions.pod:2096
24154 msgid "inspect-get-windows-current-control-set"
24155 msgstr ""
24156
24157 #. type: verbatim
24158 #: ../fish/guestfish-actions.pod:2098
24159 #, no-wrap
24160 msgid ""
24161 " inspect-get-windows-current-control-set root\n"
24162 "\n"
24163 msgstr ""
24164
24165 #. type: =head2
24166 #: ../fish/guestfish-actions.pod:2112
24167 msgid "inspect-get-windows-systemroot"
24168 msgstr ""
24169
24170 #. type: verbatim
24171 #: ../fish/guestfish-actions.pod:2114
24172 #, no-wrap
24173 msgid ""
24174 " inspect-get-windows-systemroot root\n"
24175 "\n"
24176 msgstr ""
24177
24178 #. type: =head2
24179 #: ../fish/guestfish-actions.pod:2128
24180 msgid "inspect-is-live"
24181 msgstr ""
24182
24183 #. type: verbatim
24184 #: ../fish/guestfish-actions.pod:2130
24185 #, no-wrap
24186 msgid ""
24187 " inspect-is-live root\n"
24188 "\n"
24189 msgstr ""
24190
24191 #. type: textblock
24192 #: ../fish/guestfish-actions.pod:2135
24193 msgid ""
24194 "If L</inspect-get-format> returns C<installer> (this is an install disk), "
24195 "then this returns true if a live image was detected on the disk."
24196 msgstr ""
24197
24198 #. type: =head2
24199 #: ../fish/guestfish-actions.pod:2141
24200 msgid "inspect-is-multipart"
24201 msgstr ""
24202
24203 #. type: verbatim
24204 #: ../fish/guestfish-actions.pod:2143
24205 #, no-wrap
24206 msgid ""
24207 " inspect-is-multipart root\n"
24208 "\n"
24209 msgstr ""
24210
24211 #. type: textblock
24212 #: ../fish/guestfish-actions.pod:2148
24213 msgid ""
24214 "If L</inspect-get-format> returns C<installer> (this is an install disk), "
24215 "then this returns true if the disk is part of a set."
24216 msgstr ""
24217
24218 #. type: =head2
24219 #: ../fish/guestfish-actions.pod:2154
24220 msgid "inspect-is-netinst"
24221 msgstr ""
24222
24223 #. type: verbatim
24224 #: ../fish/guestfish-actions.pod:2156
24225 #, no-wrap
24226 msgid ""
24227 " inspect-is-netinst root\n"
24228 "\n"
24229 msgstr ""
24230
24231 #. type: textblock
24232 #: ../fish/guestfish-actions.pod:2161
24233 msgid ""
24234 "If L</inspect-get-format> returns C<installer> (this is an install disk), "
24235 "then this returns true if the disk is a network installer, ie. not a self-"
24236 "contained install CD but one which is likely to require network access to "
24237 "complete the install."
24238 msgstr ""
24239
24240 #. type: =head2
24241 #: ../fish/guestfish-actions.pod:2169
24242 msgid "inspect-list-applications"
24243 msgstr ""
24244
24245 #. type: verbatim
24246 #: ../fish/guestfish-actions.pod:2171
24247 #, no-wrap
24248 msgid ""
24249 " inspect-list-applications root\n"
24250 "\n"
24251 msgstr ""
24252
24253 #. type: textblock
24254 #: ../fish/guestfish-actions.pod:2178
24255 msgid ""
24256 "I<Note:> This call works differently from other parts of the inspection "
24257 "API.  You have to call L</inspect-os>, then L</inspect-get-mountpoints>, "
24258 "then mount up the disks, before calling this.  Listing applications is a "
24259 "significantly more difficult operation which requires access to the full "
24260 "filesystem.  Also note that unlike the other L</inspect-get-*> calls which "
24261 "are just returning data cached in the libguestfs handle, this call actually "
24262 "reads parts of the mounted filesystems during the call."
24263 msgstr ""
24264
24265 #. type: =head2
24266 #: ../fish/guestfish-actions.pod:2268
24267 msgid "inspect-os"
24268 msgstr ""
24269
24270 #. type: verbatim
24271 #: ../fish/guestfish-actions.pod:2270
24272 #, no-wrap
24273 msgid ""
24274 " inspect-os\n"
24275 "\n"
24276 msgstr ""
24277
24278 #. type: textblock
24279 #: ../fish/guestfish-actions.pod:2285
24280 msgid ""
24281 "You can pass the root string(s) returned to other L</inspect-get-*> "
24282 "functions in order to query further information about each operating system, "
24283 "such as the name and version."
24284 msgstr ""
24285
24286 #. type: textblock
24287 #: ../fish/guestfish-actions.pod:2290
24288 msgid ""
24289 "This function uses other libguestfs features such as L</mount-ro> and L</"
24290 "umount-all> in order to mount and unmount filesystems and look at the "
24291 "contents.  This should be called with no disks currently mounted.  The "
24292 "function may also use Augeas, so any existing Augeas handle will be closed."
24293 msgstr ""
24294
24295 #. type: textblock
24296 #: ../fish/guestfish-actions.pod:2302 ../fish/guestfish-actions.pod:2478
24297 #: ../fish/guestfish-actions.pod:2524
24298 msgid "See also L</list-filesystems>."
24299 msgstr ""
24300
24301 #. type: =head2
24302 #: ../fish/guestfish-actions.pod:2304
24303 msgid "is-blockdev"
24304 msgstr ""
24305
24306 #. type: verbatim
24307 #: ../fish/guestfish-actions.pod:2306
24308 #, no-wrap
24309 msgid ""
24310 " is-blockdev path\n"
24311 "\n"
24312 msgstr ""
24313
24314 #. type: textblock
24315 #: ../fish/guestfish-actions.pod:2311 ../fish/guestfish-actions.pod:2329
24316 #: ../fish/guestfish-actions.pod:2348 ../fish/guestfish-actions.pod:2357
24317 #: ../fish/guestfish-actions.pod:2367 ../fish/guestfish-actions.pod:2401
24318 #: ../fish/guestfish-actions.pod:2410
24319 msgid "See also L</stat>."
24320 msgstr ""
24321
24322 #. type: =head2
24323 #: ../fish/guestfish-actions.pod:2313
24324 msgid "is-busy"
24325 msgstr ""
24326
24327 #. type: verbatim
24328 #: ../fish/guestfish-actions.pod:2315
24329 #, no-wrap
24330 msgid ""
24331 " is-busy\n"
24332 "\n"
24333 msgstr ""
24334
24335 #. type: =head2
24336 #: ../fish/guestfish-actions.pod:2322
24337 msgid "is-chardev"
24338 msgstr ""
24339
24340 #. type: verbatim
24341 #: ../fish/guestfish-actions.pod:2324
24342 #, no-wrap
24343 msgid ""
24344 " is-chardev path\n"
24345 "\n"
24346 msgstr ""
24347
24348 #. type: =head2
24349 #: ../fish/guestfish-actions.pod:2331
24350 msgid "is-config"
24351 msgstr ""
24352
24353 #. type: verbatim
24354 #: ../fish/guestfish-actions.pod:2333
24355 #, no-wrap
24356 msgid ""
24357 " is-config\n"
24358 "\n"
24359 msgstr ""
24360
24361 #. type: =head2
24362 #: ../fish/guestfish-actions.pod:2340
24363 msgid "is-dir"
24364 msgstr ""
24365
24366 #. type: verbatim
24367 #: ../fish/guestfish-actions.pod:2342
24368 #, no-wrap
24369 msgid ""
24370 " is-dir path\n"
24371 "\n"
24372 msgstr ""
24373
24374 #. type: =head2
24375 #: ../fish/guestfish-actions.pod:2350
24376 msgid "is-fifo"
24377 msgstr ""
24378
24379 #. type: verbatim
24380 #: ../fish/guestfish-actions.pod:2352
24381 #, no-wrap
24382 msgid ""
24383 " is-fifo path\n"
24384 "\n"
24385 msgstr ""
24386
24387 #. type: =head2
24388 #: ../fish/guestfish-actions.pod:2359
24389 msgid "is-file"
24390 msgstr ""
24391
24392 #. type: verbatim
24393 #: ../fish/guestfish-actions.pod:2361
24394 #, no-wrap
24395 msgid ""
24396 " is-file path\n"
24397 "\n"
24398 msgstr ""
24399
24400 #. type: =head2
24401 #: ../fish/guestfish-actions.pod:2369
24402 msgid "is-launching"
24403 msgstr ""
24404
24405 #. type: verbatim
24406 #: ../fish/guestfish-actions.pod:2371
24407 #, no-wrap
24408 msgid ""
24409 " is-launching\n"
24410 "\n"
24411 msgstr ""
24412
24413 #. type: =head2
24414 #: ../fish/guestfish-actions.pod:2378
24415 msgid "is-lv"
24416 msgstr ""
24417
24418 #. type: verbatim
24419 #: ../fish/guestfish-actions.pod:2380
24420 #, no-wrap
24421 msgid ""
24422 " is-lv device\n"
24423 "\n"
24424 msgstr ""
24425
24426 #. type: =head2
24427 #: ../fish/guestfish-actions.pod:2385
24428 msgid "is-ready"
24429 msgstr ""
24430
24431 #. type: verbatim
24432 #: ../fish/guestfish-actions.pod:2387
24433 #, no-wrap
24434 msgid ""
24435 " is-ready\n"
24436 "\n"
24437 msgstr ""
24438
24439 #. type: =head2
24440 #: ../fish/guestfish-actions.pod:2394
24441 msgid "is-socket"
24442 msgstr ""
24443
24444 #. type: verbatim
24445 #: ../fish/guestfish-actions.pod:2396
24446 #, no-wrap
24447 msgid ""
24448 " is-socket path\n"
24449 "\n"
24450 msgstr ""
24451
24452 #. type: =head2
24453 #: ../fish/guestfish-actions.pod:2403
24454 msgid "is-symlink"
24455 msgstr ""
24456
24457 #. type: verbatim
24458 #: ../fish/guestfish-actions.pod:2405
24459 #, no-wrap
24460 msgid ""
24461 " is-symlink path\n"
24462 "\n"
24463 msgstr ""
24464
24465 #. type: =head2
24466 #: ../fish/guestfish-actions.pod:2412
24467 msgid "kill-subprocess"
24468 msgstr ""
24469
24470 #. type: verbatim
24471 #: ../fish/guestfish-actions.pod:2414
24472 #, no-wrap
24473 msgid ""
24474 " kill-subprocess\n"
24475 "\n"
24476 msgstr ""
24477
24478 #. type: =head2
24479 #: ../fish/guestfish-actions.pod:2418
24480 msgid "launch"
24481 msgstr ""
24482
24483 #. type: =head2
24484 #: ../fish/guestfish-actions.pod:2420
24485 msgid "run"
24486 msgstr ""
24487
24488 #. type: verbatim
24489 #: ../fish/guestfish-actions.pod:2422
24490 #, no-wrap
24491 msgid ""
24492 " launch\n"
24493 "\n"
24494 msgstr ""
24495
24496 #. type: =head2
24497 #: ../fish/guestfish-actions.pod:2430
24498 msgid "lchown"
24499 msgstr ""
24500
24501 #. type: verbatim
24502 #: ../fish/guestfish-actions.pod:2432
24503 #, no-wrap
24504 msgid ""
24505 " lchown owner group path\n"
24506 "\n"
24507 msgstr ""
24508
24509 #. type: textblock
24510 #: ../fish/guestfish-actions.pod:2434
24511 msgid ""
24512 "Change the file owner to C<owner> and group to C<group>.  This is like L</"
24513 "chown> but if C<path> is a symlink then the link itself is changed, not the "
24514 "target."
24515 msgstr ""
24516
24517 #. type: =head2
24518 #: ../fish/guestfish-actions.pod:2442
24519 msgid "lgetxattr"
24520 msgstr ""
24521
24522 #. type: verbatim
24523 #: ../fish/guestfish-actions.pod:2444
24524 #, no-wrap
24525 msgid ""
24526 " lgetxattr path name\n"
24527 "\n"
24528 msgstr ""
24529
24530 #. type: textblock
24531 #: ../fish/guestfish-actions.pod:2460
24532 msgid "See also: L</lgetxattrs>, L</getxattr>, L<attr(5)>."
24533 msgstr ""
24534
24535 #. type: =head2
24536 #: ../fish/guestfish-actions.pod:2462
24537 msgid "lgetxattrs"
24538 msgstr ""
24539
24540 #. type: verbatim
24541 #: ../fish/guestfish-actions.pod:2464
24542 #, no-wrap
24543 msgid ""
24544 " lgetxattrs path\n"
24545 "\n"
24546 msgstr ""
24547
24548 #. type: textblock
24549 #: ../fish/guestfish-actions.pod:2466
24550 msgid ""
24551 "This is the same as L</getxattrs>, but if C<path> is a symbolic link, then "
24552 "it returns the extended attributes of the link itself."
24553 msgstr ""
24554
24555 #. type: =head2
24556 #: ../fish/guestfish-actions.pod:2470
24557 msgid "list-devices"
24558 msgstr ""
24559
24560 #. type: verbatim
24561 #: ../fish/guestfish-actions.pod:2472
24562 #, no-wrap
24563 msgid ""
24564 " list-devices\n"
24565 "\n"
24566 msgstr ""
24567
24568 #. type: =head2
24569 #: ../fish/guestfish-actions.pod:2480
24570 msgid "list-filesystems"
24571 msgstr ""
24572
24573 #. type: verbatim
24574 #: ../fish/guestfish-actions.pod:2482
24575 #, no-wrap
24576 msgid ""
24577 " list-filesystems\n"
24578 "\n"
24579 msgstr ""
24580
24581 #. type: textblock
24582 #: ../fish/guestfish-actions.pod:2501
24583 msgid ""
24584 "This command runs other libguestfs commands, which might include L</mount> "
24585 "and L</umount>, and therefore you should use this soon after launch and only "
24586 "when nothing is mounted."
24587 msgstr ""
24588
24589 #. type: textblock
24590 #: ../fish/guestfish-actions.pod:2505
24591 msgid ""
24592 "Not all of the filesystems returned will be mountable.  In particular, swap "
24593 "partitions are returned in the list.  Also this command does not check that "
24594 "each filesystem found is valid and mountable, and some filesystems might be "
24595 "mountable but require special options.  Filesystems may not all belong to a "
24596 "single logical operating system (use L</inspect-os> to look for OSes)."
24597 msgstr ""
24598
24599 #. type: =head2
24600 #: ../fish/guestfish-actions.pod:2513
24601 msgid "list-partitions"
24602 msgstr ""
24603
24604 #. type: verbatim
24605 #: ../fish/guestfish-actions.pod:2515
24606 #, no-wrap
24607 msgid ""
24608 " list-partitions\n"
24609 "\n"
24610 msgstr ""
24611
24612 #. type: textblock
24613 #: ../fish/guestfish-actions.pod:2521
24614 msgid ""
24615 "This does not return logical volumes.  For that you will need to call L</"
24616 "lvs>."
24617 msgstr ""
24618
24619 #. type: =head2
24620 #: ../fish/guestfish-actions.pod:2526
24621 msgid "ll"
24622 msgstr ""
24623
24624 #. type: verbatim
24625 #: ../fish/guestfish-actions.pod:2528
24626 #, no-wrap
24627 msgid ""
24628 " ll directory\n"
24629 "\n"
24630 msgstr ""
24631
24632 #. type: =head2
24633 #: ../fish/guestfish-actions.pod:2536
24634 msgid "ln"
24635 msgstr ""
24636
24637 #. type: verbatim
24638 #: ../fish/guestfish-actions.pod:2538
24639 #, no-wrap
24640 msgid ""
24641 " ln target linkname\n"
24642 "\n"
24643 msgstr ""
24644
24645 #. type: =head2
24646 #: ../fish/guestfish-actions.pod:2542
24647 msgid "ln-f"
24648 msgstr ""
24649
24650 #. type: verbatim
24651 #: ../fish/guestfish-actions.pod:2544
24652 #, no-wrap
24653 msgid ""
24654 " ln-f target linkname\n"
24655 "\n"
24656 msgstr ""
24657
24658 #. type: =head2
24659 #: ../fish/guestfish-actions.pod:2549
24660 msgid "ln-s"
24661 msgstr ""
24662
24663 #. type: verbatim
24664 #: ../fish/guestfish-actions.pod:2551
24665 #, no-wrap
24666 msgid ""
24667 " ln-s target linkname\n"
24668 "\n"
24669 msgstr ""
24670
24671 #. type: =head2
24672 #: ../fish/guestfish-actions.pod:2555
24673 msgid "ln-sf"
24674 msgstr ""
24675
24676 #. type: verbatim
24677 #: ../fish/guestfish-actions.pod:2557
24678 #, no-wrap
24679 msgid ""
24680 " ln-sf target linkname\n"
24681 "\n"
24682 msgstr ""
24683
24684 #. type: =head2
24685 #: ../fish/guestfish-actions.pod:2562
24686 msgid "lremovexattr"
24687 msgstr ""
24688
24689 #. type: verbatim
24690 #: ../fish/guestfish-actions.pod:2564
24691 #, no-wrap
24692 msgid ""
24693 " lremovexattr xattr path\n"
24694 "\n"
24695 msgstr ""
24696
24697 #. type: textblock
24698 #: ../fish/guestfish-actions.pod:2566
24699 msgid ""
24700 "This is the same as L</removexattr>, but if C<path> is a symbolic link, then "
24701 "it removes an extended attribute of the link itself."
24702 msgstr ""
24703
24704 #. type: =head2
24705 #: ../fish/guestfish-actions.pod:2570
24706 msgid "ls"
24707 msgstr ""
24708
24709 #. type: verbatim
24710 #: ../fish/guestfish-actions.pod:2572
24711 #, no-wrap
24712 msgid ""
24713 " ls directory\n"
24714 "\n"
24715 msgstr ""
24716
24717 #. type: textblock
24718 #: ../fish/guestfish-actions.pod:2578
24719 msgid ""
24720 "This command is mostly useful for interactive sessions.  Programs should "
24721 "probably use L</readdir> instead."
24722 msgstr ""
24723
24724 #. type: =head2
24725 #: ../fish/guestfish-actions.pod:2581
24726 msgid "lsetxattr"
24727 msgstr ""
24728
24729 #. type: verbatim
24730 #: ../fish/guestfish-actions.pod:2583
24731 #, no-wrap
24732 msgid ""
24733 " lsetxattr xattr val vallen path\n"
24734 "\n"
24735 msgstr ""
24736
24737 #. type: textblock
24738 #: ../fish/guestfish-actions.pod:2585
24739 msgid ""
24740 "This is the same as L</setxattr>, but if C<path> is a symbolic link, then it "
24741 "sets an extended attribute of the link itself."
24742 msgstr ""
24743
24744 #. type: =head2
24745 #: ../fish/guestfish-actions.pod:2589
24746 msgid "lstat"
24747 msgstr ""
24748
24749 #. type: verbatim
24750 #: ../fish/guestfish-actions.pod:2591
24751 #, no-wrap
24752 msgid ""
24753 " lstat path\n"
24754 "\n"
24755 msgstr ""
24756
24757 #. type: textblock
24758 #: ../fish/guestfish-actions.pod:2595
24759 msgid ""
24760 "This is the same as L</stat> except that if C<path> is a symbolic link, then "
24761 "the link is stat-ed, not the file it refers to."
24762 msgstr ""
24763
24764 #. type: =head2
24765 #: ../fish/guestfish-actions.pod:2601
24766 msgid "lstatlist"
24767 msgstr ""
24768
24769 #. type: verbatim
24770 #: ../fish/guestfish-actions.pod:2603
24771 #, no-wrap
24772 msgid ""
24773 " lstatlist path 'names ...'\n"
24774 "\n"
24775 msgstr ""
24776
24777 #. type: textblock
24778 #: ../fish/guestfish-actions.pod:2605
24779 msgid ""
24780 "This call allows you to perform the L</lstat> operation on multiple files, "
24781 "where all files are in the directory C<path>.  C<names> is the list of files "
24782 "from this directory."
24783 msgstr ""
24784
24785 #. type: textblock
24786 #: ../fish/guestfish-actions.pod:2614
24787 msgid ""
24788 "This call is intended for programs that want to efficiently list a directory "
24789 "contents without making many round-trips.  See also L</lxattrlist> for a "
24790 "similarly efficient call for getting extended attributes.  Very long "
24791 "directory listings might cause the protocol message size to be exceeded, "
24792 "causing this call to fail.  The caller must split up such requests into "
24793 "smaller groups of names."
24794 msgstr ""
24795
24796 #. type: =head2
24797 #: ../fish/guestfish-actions.pod:2622
24798 msgid "luks-add-key"
24799 msgstr ""
24800
24801 #. type: verbatim
24802 #: ../fish/guestfish-actions.pod:2624
24803 #, no-wrap
24804 msgid ""
24805 " luks-add-key device keyslot\n"
24806 "\n"
24807 msgstr ""
24808
24809 #. type: textblock
24810 #: ../fish/guestfish-actions.pod:2631
24811 msgid ""
24812 "Note that if C<keyslot> already contains a key, then this command will "
24813 "fail.  You have to use L</luks-kill-slot> first to remove that key."
24814 msgstr ""
24815
24816 #. type: textblock
24817 #: ../fish/guestfish-actions.pod:2635 ../fish/guestfish-actions.pod:2657
24818 #: ../fish/guestfish-actions.pod:2670 ../fish/guestfish-actions.pod:2684
24819 #: ../fish/guestfish-actions.pod:2707 ../fish/guestfish-actions.pod:2717
24820 msgid ""
24821 "This command has one or more key or passphrase parameters.  Guestfish will "
24822 "prompt for these separately."
24823 msgstr ""
24824
24825 #. type: =head2
24826 #: ../fish/guestfish-actions.pod:2638
24827 msgid "luks-close"
24828 msgstr ""
24829
24830 #. type: verbatim
24831 #: ../fish/guestfish-actions.pod:2640
24832 #, no-wrap
24833 msgid ""
24834 " luks-close device\n"
24835 "\n"
24836 msgstr ""
24837
24838 #. type: textblock
24839 #: ../fish/guestfish-actions.pod:2642
24840 msgid ""
24841 "This closes a LUKS device that was created earlier by L</luks-open> or L</"
24842 "luks-open-ro>.  The C<device> parameter must be the name of the LUKS mapping "
24843 "device (ie. C</dev/mapper/mapname>) and I<not> the name of the underlying "
24844 "block device."
24845 msgstr ""
24846
24847 #. type: =head2
24848 #: ../fish/guestfish-actions.pod:2648
24849 msgid "luks-format"
24850 msgstr ""
24851
24852 #. type: verbatim
24853 #: ../fish/guestfish-actions.pod:2650
24854 #, no-wrap
24855 msgid ""
24856 " luks-format device keyslot\n"
24857 "\n"
24858 msgstr ""
24859
24860 #. type: =head2
24861 #: ../fish/guestfish-actions.pod:2663
24862 msgid "luks-format-cipher"
24863 msgstr ""
24864
24865 #. type: verbatim
24866 #: ../fish/guestfish-actions.pod:2665
24867 #, no-wrap
24868 msgid ""
24869 " luks-format-cipher device keyslot cipher\n"
24870 "\n"
24871 msgstr ""
24872
24873 #. type: textblock
24874 #: ../fish/guestfish-actions.pod:2667
24875 msgid ""
24876 "This command is the same as L</luks-format> but it also allows you to set "
24877 "the C<cipher> used."
24878 msgstr ""
24879
24880 #. type: =head2
24881 #: ../fish/guestfish-actions.pod:2676
24882 msgid "luks-kill-slot"
24883 msgstr ""
24884
24885 #. type: verbatim
24886 #: ../fish/guestfish-actions.pod:2678
24887 #, no-wrap
24888 msgid ""
24889 " luks-kill-slot device keyslot\n"
24890 "\n"
24891 msgstr ""
24892
24893 #. type: =head2
24894 #: ../fish/guestfish-actions.pod:2687
24895 msgid "luks-open"
24896 msgstr ""
24897
24898 #. type: verbatim
24899 #: ../fish/guestfish-actions.pod:2689
24900 #, no-wrap
24901 msgid ""
24902 " luks-open device mapname\n"
24903 "\n"
24904 msgstr ""
24905
24906 #. type: textblock
24907 #: ../fish/guestfish-actions.pod:2703
24908 msgid ""
24909 "If this block device contains LVM volume groups, then calling L</vgscan> "
24910 "followed by L</vg-activate-all> will make them visible."
24911 msgstr ""
24912
24913 #. type: =head2
24914 #: ../fish/guestfish-actions.pod:2710
24915 msgid "luks-open-ro"
24916 msgstr ""
24917
24918 #. type: verbatim
24919 #: ../fish/guestfish-actions.pod:2712
24920 #, no-wrap
24921 msgid ""
24922 " luks-open-ro device mapname\n"
24923 "\n"
24924 msgstr ""
24925
24926 #. type: textblock
24927 #: ../fish/guestfish-actions.pod:2714
24928 msgid ""
24929 "This is the same as L</luks-open> except that a read-only mapping is created."
24930 msgstr ""
24931
24932 #. type: =head2
24933 #: ../fish/guestfish-actions.pod:2720
24934 msgid "lvcreate"
24935 msgstr ""
24936
24937 #. type: verbatim
24938 #: ../fish/guestfish-actions.pod:2722
24939 #, no-wrap
24940 msgid ""
24941 " lvcreate logvol volgroup mbytes\n"
24942 "\n"
24943 msgstr ""
24944
24945 #. type: =head2
24946 #: ../fish/guestfish-actions.pod:2727
24947 msgid "lvm-canonical-lv-name"
24948 msgstr ""
24949
24950 #. type: verbatim
24951 #: ../fish/guestfish-actions.pod:2729
24952 #, no-wrap
24953 msgid ""
24954 " lvm-canonical-lv-name lvname\n"
24955 "\n"
24956 msgstr ""
24957
24958 #. type: textblock
24959 #: ../fish/guestfish-actions.pod:2738
24960 msgid "See also L</is-lv>."
24961 msgstr ""
24962
24963 #. type: =head2
24964 #: ../fish/guestfish-actions.pod:2740
24965 msgid "lvm-clear-filter"
24966 msgstr ""
24967
24968 #. type: verbatim
24969 #: ../fish/guestfish-actions.pod:2742
24970 #, no-wrap
24971 msgid ""
24972 " lvm-clear-filter\n"
24973 "\n"
24974 msgstr ""
24975
24976 #. type: textblock
24977 #: ../fish/guestfish-actions.pod:2744
24978 msgid ""
24979 "This undoes the effect of L</lvm-set-filter>.  LVM will be able to see every "
24980 "block device."
24981 msgstr ""
24982
24983 #. type: =head2
24984 #: ../fish/guestfish-actions.pod:2750
24985 msgid "lvm-remove-all"
24986 msgstr ""
24987
24988 #. type: verbatim
24989 #: ../fish/guestfish-actions.pod:2752
24990 #, no-wrap
24991 msgid ""
24992 " lvm-remove-all\n"
24993 "\n"
24994 msgstr ""
24995
24996 #. type: =head2
24997 #: ../fish/guestfish-actions.pod:2760
24998 msgid "lvm-set-filter"
24999 msgstr ""
25000
25001 #. type: verbatim
25002 #: ../fish/guestfish-actions.pod:2762
25003 #, no-wrap
25004 msgid ""
25005 " lvm-set-filter 'devices ...'\n"
25006 "\n"
25007 msgstr ""
25008
25009 #. type: =head2
25010 #: ../fish/guestfish-actions.pod:2787
25011 msgid "lvremove"
25012 msgstr ""
25013
25014 #. type: verbatim
25015 #: ../fish/guestfish-actions.pod:2789
25016 #, no-wrap
25017 msgid ""
25018 " lvremove device\n"
25019 "\n"
25020 msgstr ""
25021
25022 #. type: =head2
25023 #: ../fish/guestfish-actions.pod:2797
25024 msgid "lvrename"
25025 msgstr ""
25026
25027 #. type: verbatim
25028 #: ../fish/guestfish-actions.pod:2799
25029 #, no-wrap
25030 msgid ""
25031 " lvrename logvol newlogvol\n"
25032 "\n"
25033 msgstr ""
25034
25035 #. type: =head2
25036 #: ../fish/guestfish-actions.pod:2803
25037 msgid "lvresize"
25038 msgstr ""
25039
25040 #. type: verbatim
25041 #: ../fish/guestfish-actions.pod:2805
25042 #, no-wrap
25043 msgid ""
25044 " lvresize device mbytes\n"
25045 "\n"
25046 msgstr ""
25047
25048 #. type: =head2
25049 #: ../fish/guestfish-actions.pod:2811
25050 msgid "lvresize-free"
25051 msgstr ""
25052
25053 #. type: verbatim
25054 #: ../fish/guestfish-actions.pod:2813
25055 #, no-wrap
25056 msgid ""
25057 " lvresize-free lv percent\n"
25058 "\n"
25059 msgstr ""
25060
25061 #. type: =head2
25062 #: ../fish/guestfish-actions.pod:2821
25063 msgid "lvs"
25064 msgstr ""
25065
25066 #. type: verbatim
25067 #: ../fish/guestfish-actions.pod:2823
25068 #, no-wrap
25069 msgid ""
25070 " lvs\n"
25071 "\n"
25072 msgstr ""
25073
25074 #. type: textblock
25075 #: ../fish/guestfish-actions.pod:2831
25076 msgid "See also L</lvs-full>, L</list-filesystems>."
25077 msgstr ""
25078
25079 #. type: =head2
25080 #: ../fish/guestfish-actions.pod:2833
25081 msgid "lvs-full"
25082 msgstr ""
25083
25084 #. type: verbatim
25085 #: ../fish/guestfish-actions.pod:2835
25086 #, no-wrap
25087 msgid ""
25088 " lvs-full\n"
25089 "\n"
25090 msgstr ""
25091
25092 #. type: =head2
25093 #: ../fish/guestfish-actions.pod:2840
25094 msgid "lvuuid"
25095 msgstr ""
25096
25097 #. type: verbatim
25098 #: ../fish/guestfish-actions.pod:2842
25099 #, no-wrap
25100 msgid ""
25101 " lvuuid device\n"
25102 "\n"
25103 msgstr ""
25104
25105 #. type: =head2
25106 #: ../fish/guestfish-actions.pod:2846
25107 msgid "lxattrlist"
25108 msgstr ""
25109
25110 #. type: verbatim
25111 #: ../fish/guestfish-actions.pod:2848
25112 #, no-wrap
25113 msgid ""
25114 " lxattrlist path 'names ...'\n"
25115 "\n"
25116 msgstr ""
25117
25118 #. type: textblock
25119 #: ../fish/guestfish-actions.pod:2864
25120 msgid ""
25121 "This call is intended for programs that want to efficiently list a directory "
25122 "contents without making many round-trips.  See also L</lstatlist> for a "
25123 "similarly efficient call for getting standard stats.  Very long directory "
25124 "listings might cause the protocol message size to be exceeded, causing this "
25125 "call to fail.  The caller must split up such requests into smaller groups of "
25126 "names."
25127 msgstr ""
25128
25129 #. type: =head2
25130 #: ../fish/guestfish-actions.pod:2872
25131 msgid "mkdir"
25132 msgstr ""
25133
25134 #. type: verbatim
25135 #: ../fish/guestfish-actions.pod:2874
25136 #, no-wrap
25137 msgid ""
25138 " mkdir path\n"
25139 "\n"
25140 msgstr ""
25141
25142 #. type: =head2
25143 #: ../fish/guestfish-actions.pod:2878
25144 msgid "mkdir-mode"
25145 msgstr ""
25146
25147 #. type: verbatim
25148 #: ../fish/guestfish-actions.pod:2880
25149 #, no-wrap
25150 msgid ""
25151 " mkdir-mode path mode\n"
25152 "\n"
25153 msgstr ""
25154
25155 #. type: textblock
25156 #: ../fish/guestfish-actions.pod:2889
25157 msgid "See also L</mkdir>, L</umask>"
25158 msgstr ""
25159
25160 #. type: =head2
25161 #: ../fish/guestfish-actions.pod:2891
25162 msgid "mkdir-p"
25163 msgstr ""
25164
25165 #. type: verbatim
25166 #: ../fish/guestfish-actions.pod:2893
25167 #, no-wrap
25168 msgid ""
25169 " mkdir-p path\n"
25170 "\n"
25171 msgstr ""
25172
25173 #. type: =head2
25174 #: ../fish/guestfish-actions.pod:2898
25175 msgid "mkdtemp"
25176 msgstr ""
25177
25178 #. type: verbatim
25179 #: ../fish/guestfish-actions.pod:2900
25180 #, no-wrap
25181 msgid ""
25182 " mkdtemp template\n"
25183 "\n"
25184 msgstr ""
25185
25186 #. type: =head2
25187 #: ../fish/guestfish-actions.pod:2921
25188 msgid "mke2fs-J"
25189 msgstr ""
25190
25191 #. type: verbatim
25192 #: ../fish/guestfish-actions.pod:2923
25193 #, no-wrap
25194 msgid ""
25195 " mke2fs-J fstype blocksize device journal\n"
25196 "\n"
25197 msgstr ""
25198
25199 #. type: textblock
25200 #: ../fish/guestfish-actions.pod:2931
25201 msgid "See also L</mke2journal>."
25202 msgstr ""
25203
25204 #. type: =head2
25205 #: ../fish/guestfish-actions.pod:2933
25206 msgid "mke2fs-JL"
25207 msgstr ""
25208
25209 #. type: verbatim
25210 #: ../fish/guestfish-actions.pod:2935
25211 #, no-wrap
25212 msgid ""
25213 " mke2fs-JL fstype blocksize device label\n"
25214 "\n"
25215 msgstr ""
25216
25217 #. type: textblock
25218 #: ../fish/guestfish-actions.pod:2940
25219 msgid "See also L</mke2journal-L>."
25220 msgstr ""
25221
25222 #. type: =head2
25223 #: ../fish/guestfish-actions.pod:2942
25224 msgid "mke2fs-JU"
25225 msgstr ""
25226
25227 #. type: verbatim
25228 #: ../fish/guestfish-actions.pod:2944
25229 #, no-wrap
25230 msgid ""
25231 " mke2fs-JU fstype blocksize device uuid\n"
25232 "\n"
25233 msgstr ""
25234
25235 #. type: textblock
25236 #: ../fish/guestfish-actions.pod:2949
25237 msgid "See also L</mke2journal-U>."
25238 msgstr ""
25239
25240 #. type: =head2
25241 #: ../fish/guestfish-actions.pod:2951
25242 msgid "mke2journal"
25243 msgstr ""
25244
25245 #. type: verbatim
25246 #: ../fish/guestfish-actions.pod:2953
25247 #, no-wrap
25248 msgid ""
25249 " mke2journal blocksize device\n"
25250 "\n"
25251 msgstr ""
25252
25253 #. type: =head2
25254 #: ../fish/guestfish-actions.pod:2960
25255 msgid "mke2journal-L"
25256 msgstr ""
25257
25258 #. type: verbatim
25259 #: ../fish/guestfish-actions.pod:2962
25260 #, no-wrap
25261 msgid ""
25262 " mke2journal-L blocksize label device\n"
25263 "\n"
25264 msgstr ""
25265
25266 #. type: =head2
25267 #: ../fish/guestfish-actions.pod:2966
25268 msgid "mke2journal-U"
25269 msgstr ""
25270
25271 #. type: verbatim
25272 #: ../fish/guestfish-actions.pod:2968
25273 #, no-wrap
25274 msgid ""
25275 " mke2journal-U blocksize uuid device\n"
25276 "\n"
25277 msgstr ""
25278
25279 #. type: =head2
25280 #: ../fish/guestfish-actions.pod:2972
25281 msgid "mkfifo"
25282 msgstr ""
25283
25284 #. type: verbatim
25285 #: ../fish/guestfish-actions.pod:2974
25286 #, no-wrap
25287 msgid ""
25288 " mkfifo mode path\n"
25289 "\n"
25290 msgstr ""
25291
25292 #. type: textblock
25293 #: ../fish/guestfish-actions.pod:2976
25294 msgid ""
25295 "This call creates a FIFO (named pipe) called C<path> with mode C<mode>.  It "
25296 "is just a convenient wrapper around L</mknod>."
25297 msgstr ""
25298
25299 #. type: =head2
25300 #: ../fish/guestfish-actions.pod:2982
25301 msgid "mkfs"
25302 msgstr ""
25303
25304 #. type: verbatim
25305 #: ../fish/guestfish-actions.pod:2984
25306 #, no-wrap
25307 msgid ""
25308 " mkfs fstype device\n"
25309 "\n"
25310 msgstr ""
25311
25312 #. type: =head2
25313 #: ../fish/guestfish-actions.pod:2990
25314 msgid "mkfs-b"
25315 msgstr ""
25316
25317 #. type: verbatim
25318 #: ../fish/guestfish-actions.pod:2992
25319 #, no-wrap
25320 msgid ""
25321 " mkfs-b fstype blocksize device\n"
25322 "\n"
25323 msgstr ""
25324
25325 #. type: textblock
25326 #: ../fish/guestfish-actions.pod:2994
25327 msgid ""
25328 "This call is similar to L</mkfs>, but it allows you to control the block "
25329 "size of the resulting filesystem.  Supported block sizes depend on the "
25330 "filesystem type, but typically they are C<1024>, C<2048> or C<4096> only."
25331 msgstr ""
25332
25333 #. type: =head2
25334 #: ../fish/guestfish-actions.pod:3009
25335 msgid "mkfs-opts"
25336 msgstr ""
25337
25338 #. type: verbatim
25339 #: ../fish/guestfish-actions.pod:3011
25340 #, no-wrap
25341 msgid ""
25342 " mkfs-opts fstype device [blocksize:..] [features:..]\n"
25343 "\n"
25344 msgstr ""
25345
25346 #. type: =head2
25347 #: ../fish/guestfish-actions.pod:3046
25348 msgid "mkmountpoint"
25349 msgstr ""
25350
25351 #. type: verbatim
25352 #: ../fish/guestfish-actions.pod:3048
25353 #, no-wrap
25354 msgid ""
25355 " mkmountpoint exemptpath\n"
25356 "\n"
25357 msgstr ""
25358
25359 #. type: textblock
25360 #: ../fish/guestfish-actions.pod:3050
25361 msgid ""
25362 "L</mkmountpoint> and L</rmmountpoint> are specialized calls that can be used "
25363 "to create extra mountpoints before mounting the first filesystem."
25364 msgstr ""
25365
25366 #. type: textblock
25367 #: ../fish/guestfish-actions.pod:3074
25368 msgid ""
25369 "L</mkmountpoint> is not compatible with L</umount-all>.  You may get "
25370 "unexpected errors if you try to mix these calls.  It is safest to manually "
25371 "unmount filesystems and remove mountpoints after use."
25372 msgstr ""
25373
25374 #. type: textblock
25375 #: ../fish/guestfish-actions.pod:3078
25376 msgid ""
25377 "L</umount-all> unmounts filesystems by sorting the paths longest first, so "
25378 "for this to work for manual mountpoints, you must ensure that the innermost "
25379 "mountpoints have the longest pathnames, as in the example code above."
25380 msgstr ""
25381
25382 #. type: textblock
25383 #: ../fish/guestfish-actions.pod:3085
25384 msgid ""
25385 "Autosync [see L</set-autosync>, this is set by default on handles] can cause "
25386 "L</umount-all> to be called when the handle is closed which can also trigger "
25387 "these issues."
25388 msgstr ""
25389
25390 #. type: =head2
25391 #: ../fish/guestfish-actions.pod:3089
25392 msgid "mknod"
25393 msgstr ""
25394
25395 #. type: verbatim
25396 #: ../fish/guestfish-actions.pod:3091
25397 #, no-wrap
25398 msgid ""
25399 " mknod mode devmajor devminor path\n"
25400 "\n"
25401 msgstr ""
25402
25403 #. type: textblock
25404 #: ../fish/guestfish-actions.pod:3101
25405 msgid ""
25406 "Note that, just like L<mknod(2)>, the mode must be bitwise OR'd with "
25407 "S_IFBLK, S_IFCHR, S_IFIFO or S_IFSOCK (otherwise this call just creates a "
25408 "regular file).  These constants are available in the standard Linux header "
25409 "files, or you can use L</mknod-b>, L</mknod-c> or L</mkfifo> which are "
25410 "wrappers around this command which bitwise OR in the appropriate constant "
25411 "for you."
25412 msgstr ""
25413
25414 #. type: =head2
25415 #: ../fish/guestfish-actions.pod:3111
25416 msgid "mknod-b"
25417 msgstr ""
25418
25419 #. type: verbatim
25420 #: ../fish/guestfish-actions.pod:3113
25421 #, no-wrap
25422 msgid ""
25423 " mknod-b mode devmajor devminor path\n"
25424 "\n"
25425 msgstr ""
25426
25427 #. type: textblock
25428 #: ../fish/guestfish-actions.pod:3115
25429 msgid ""
25430 "This call creates a block device node called C<path> with mode C<mode> and "
25431 "device major/minor C<devmajor> and C<devminor>.  It is just a convenient "
25432 "wrapper around L</mknod>."
25433 msgstr ""
25434
25435 #. type: =head2
25436 #: ../fish/guestfish-actions.pod:3121
25437 msgid "mknod-c"
25438 msgstr ""
25439
25440 #. type: verbatim
25441 #: ../fish/guestfish-actions.pod:3123
25442 #, no-wrap
25443 msgid ""
25444 " mknod-c mode devmajor devminor path\n"
25445 "\n"
25446 msgstr ""
25447
25448 #. type: textblock
25449 #: ../fish/guestfish-actions.pod:3125
25450 msgid ""
25451 "This call creates a char device node called C<path> with mode C<mode> and "
25452 "device major/minor C<devmajor> and C<devminor>.  It is just a convenient "
25453 "wrapper around L</mknod>."
25454 msgstr ""
25455
25456 #. type: =head2
25457 #: ../fish/guestfish-actions.pod:3131
25458 msgid "mkswap"
25459 msgstr ""
25460
25461 #. type: verbatim
25462 #: ../fish/guestfish-actions.pod:3133
25463 #, no-wrap
25464 msgid ""
25465 " mkswap device\n"
25466 "\n"
25467 msgstr ""
25468
25469 #. type: =head2
25470 #: ../fish/guestfish-actions.pod:3137
25471 msgid "mkswap-L"
25472 msgstr ""
25473
25474 #. type: verbatim
25475 #: ../fish/guestfish-actions.pod:3139
25476 #, no-wrap
25477 msgid ""
25478 " mkswap-L label device\n"
25479 "\n"
25480 msgstr ""
25481
25482 #. type: =head2
25483 #: ../fish/guestfish-actions.pod:3147
25484 msgid "mkswap-U"
25485 msgstr ""
25486
25487 #. type: verbatim
25488 #: ../fish/guestfish-actions.pod:3149
25489 #, no-wrap
25490 msgid ""
25491 " mkswap-U uuid device\n"
25492 "\n"
25493 msgstr ""
25494
25495 #. type: =head2
25496 #: ../fish/guestfish-actions.pod:3153
25497 msgid "mkswap-file"
25498 msgstr ""
25499
25500 #. type: verbatim
25501 #: ../fish/guestfish-actions.pod:3155
25502 #, no-wrap
25503 msgid ""
25504 " mkswap-file path\n"
25505 "\n"
25506 msgstr ""
25507
25508 #. type: textblock
25509 #: ../fish/guestfish-actions.pod:3159
25510 msgid ""
25511 "This command just writes a swap file signature to an existing file.  To "
25512 "create the file itself, use something like L</fallocate>."
25513 msgstr ""
25514
25515 #. type: =head2
25516 #: ../fish/guestfish-actions.pod:3162
25517 msgid "modprobe"
25518 msgstr ""
25519
25520 #. type: verbatim
25521 #: ../fish/guestfish-actions.pod:3164
25522 #, no-wrap
25523 msgid ""
25524 " modprobe modulename\n"
25525 "\n"
25526 msgstr ""
25527
25528 #. type: =head2
25529 #: ../fish/guestfish-actions.pod:3171
25530 msgid "mount"
25531 msgstr ""
25532
25533 #. type: verbatim
25534 #: ../fish/guestfish-actions.pod:3173
25535 #, no-wrap
25536 msgid ""
25537 " mount device mountpoint\n"
25538 "\n"
25539 msgstr ""
25540
25541 #. type: textblock
25542 #: ../fish/guestfish-actions.pod:3189
25543 msgid ""
25544 "B<Important note:> When you use this call, the filesystem options C<sync> "
25545 "and C<noatime> are set implicitly.  This was originally done because we "
25546 "thought it would improve reliability, but it turns out that I<-o sync> has a "
25547 "very large negative performance impact and negligible effect on "
25548 "reliability.  Therefore we recommend that you avoid using L</mount> in any "
25549 "code that needs performance, and instead use L</mount-options> (use an empty "
25550 "string for the first parameter if you don't want any options)."
25551 msgstr ""
25552
25553 #. type: =head2
25554 #: ../fish/guestfish-actions.pod:3206
25555 msgid "mount-loop"
25556 msgstr ""
25557
25558 #. type: verbatim
25559 #: ../fish/guestfish-actions.pod:3208
25560 #, no-wrap
25561 msgid ""
25562 " mount-loop file mountpoint\n"
25563 "\n"
25564 msgstr ""
25565
25566 #. type: =head2
25567 #: ../fish/guestfish-actions.pod:3214
25568 msgid "mount-options"
25569 msgstr ""
25570
25571 #. type: verbatim
25572 #: ../fish/guestfish-actions.pod:3216
25573 #, no-wrap
25574 msgid ""
25575 " mount-options options device mountpoint\n"
25576 "\n"
25577 msgstr ""
25578
25579 #. type: textblock
25580 #: ../fish/guestfish-actions.pod:3218
25581 msgid ""
25582 "This is the same as the L</mount> command, but it allows you to set the "
25583 "mount options as for the L<mount(8)> I<-o> flag."
25584 msgstr ""
25585
25586 #. type: =head2
25587 #: ../fish/guestfish-actions.pod:3226
25588 msgid "mount-ro"
25589 msgstr ""
25590
25591 #. type: verbatim
25592 #: ../fish/guestfish-actions.pod:3228
25593 #, no-wrap
25594 msgid ""
25595 " mount-ro device mountpoint\n"
25596 "\n"
25597 msgstr ""
25598
25599 #. type: textblock
25600 #: ../fish/guestfish-actions.pod:3230
25601 msgid ""
25602 "This is the same as the L</mount> command, but it mounts the filesystem with "
25603 "the read-only (I<-o ro>) flag."
25604 msgstr ""
25605
25606 #. type: =head2
25607 #: ../fish/guestfish-actions.pod:3233
25608 msgid "mount-vfs"
25609 msgstr ""
25610
25611 #. type: verbatim
25612 #: ../fish/guestfish-actions.pod:3235
25613 #, no-wrap
25614 msgid ""
25615 " mount-vfs options vfstype device mountpoint\n"
25616 "\n"
25617 msgstr ""
25618
25619 #. type: textblock
25620 #: ../fish/guestfish-actions.pod:3237
25621 msgid ""
25622 "This is the same as the L</mount> command, but it allows you to set both the "
25623 "mount options and the vfstype as for the L<mount(8)> I<-o> and I<-t> flags."
25624 msgstr ""
25625
25626 #. type: =head2
25627 #: ../fish/guestfish-actions.pod:3241
25628 msgid "mountpoints"
25629 msgstr ""
25630
25631 #. type: verbatim
25632 #: ../fish/guestfish-actions.pod:3243
25633 #, no-wrap
25634 msgid ""
25635 " mountpoints\n"
25636 "\n"
25637 msgstr ""
25638
25639 #. type: textblock
25640 #: ../fish/guestfish-actions.pod:3245
25641 msgid ""
25642 "This call is similar to L</mounts>.  That call returns a list of devices.  "
25643 "This one returns a hash table (map) of device name to directory where the "
25644 "device is mounted."
25645 msgstr ""
25646
25647 #. type: =head2
25648 #: ../fish/guestfish-actions.pod:3249
25649 msgid "mounts"
25650 msgstr ""
25651
25652 #. type: verbatim
25653 #: ../fish/guestfish-actions.pod:3251
25654 #, no-wrap
25655 msgid ""
25656 " mounts\n"
25657 "\n"
25658 msgstr ""
25659
25660 #. type: textblock
25661 #: ../fish/guestfish-actions.pod:3258
25662 msgid "See also: L</mountpoints>"
25663 msgstr ""
25664
25665 #. type: =head2
25666 #: ../fish/guestfish-actions.pod:3260
25667 msgid "mv"
25668 msgstr ""
25669
25670 #. type: verbatim
25671 #: ../fish/guestfish-actions.pod:3262
25672 #, no-wrap
25673 msgid ""
25674 " mv src dest\n"
25675 "\n"
25676 msgstr ""
25677
25678 #. type: =head2
25679 #: ../fish/guestfish-actions.pod:3267
25680 msgid "ntfs-3g-probe"
25681 msgstr ""
25682
25683 #. type: verbatim
25684 #: ../fish/guestfish-actions.pod:3269
25685 #, no-wrap
25686 msgid ""
25687 " ntfs-3g-probe true|false device\n"
25688 "\n"
25689 msgstr ""
25690
25691 #. type: =head2
25692 #: ../fish/guestfish-actions.pod:3283
25693 msgid "ntfsresize"
25694 msgstr ""
25695
25696 #. type: verbatim
25697 #: ../fish/guestfish-actions.pod:3285
25698 #, no-wrap
25699 msgid ""
25700 " ntfsresize device\n"
25701 "\n"
25702 msgstr ""
25703
25704 #. type: =head2
25705 #: ../fish/guestfish-actions.pod:3300
25706 msgid "ntfsresize-size"
25707 msgstr ""
25708
25709 #. type: verbatim
25710 #: ../fish/guestfish-actions.pod:3302
25711 #, no-wrap
25712 msgid ""
25713 " ntfsresize-size device size\n"
25714 "\n"
25715 msgstr ""
25716
25717 #. type: textblock
25718 #: ../fish/guestfish-actions.pod:3304
25719 msgid ""
25720 "This command is the same as L</ntfsresize> except that it allows you to "
25721 "specify the new size (in bytes) explicitly."
25722 msgstr ""
25723
25724 #. type: =head2
25725 #: ../fish/guestfish-actions.pod:3307
25726 msgid "part-add"
25727 msgstr ""
25728
25729 #. type: verbatim
25730 #: ../fish/guestfish-actions.pod:3309
25731 #, no-wrap
25732 msgid ""
25733 " part-add device prlogex startsect endsect\n"
25734 "\n"
25735 msgstr ""
25736
25737 #. type: textblock
25738 #: ../fish/guestfish-actions.pod:3311
25739 msgid ""
25740 "This command adds a partition to C<device>.  If there is no partition table "
25741 "on the device, call L</part-init> first."
25742 msgstr ""
25743
25744 #. type: textblock
25745 #: ../fish/guestfish-actions.pod:3323
25746 msgid ""
25747 "Creating a partition which covers the whole disk is not so easy.  Use L</"
25748 "part-disk> to do that."
25749 msgstr ""
25750
25751 #. type: =head2
25752 #: ../fish/guestfish-actions.pod:3326
25753 msgid "part-del"
25754 msgstr ""
25755
25756 #. type: verbatim
25757 #: ../fish/guestfish-actions.pod:3328
25758 #, no-wrap
25759 msgid ""
25760 " part-del device partnum\n"
25761 "\n"
25762 msgstr ""
25763
25764 #. type: =head2
25765 #: ../fish/guestfish-actions.pod:3336
25766 msgid "part-disk"
25767 msgstr ""
25768
25769 #. type: verbatim
25770 #: ../fish/guestfish-actions.pod:3338
25771 #, no-wrap
25772 msgid ""
25773 " part-disk device parttype\n"
25774 "\n"
25775 msgstr ""
25776
25777 #. type: textblock
25778 #: ../fish/guestfish-actions.pod:3340
25779 msgid ""
25780 "This command is simply a combination of L</part-init> followed by L</part-"
25781 "add> to create a single primary partition covering the whole disk."
25782 msgstr ""
25783
25784 #. type: textblock
25785 #: ../fish/guestfish-actions.pod:3344
25786 msgid ""
25787 "C<parttype> is the partition table type, usually C<mbr> or C<gpt>, but other "
25788 "possible values are described in L</part-init>."
25789 msgstr ""
25790
25791 #. type: =head2
25792 #: ../fish/guestfish-actions.pod:3350
25793 msgid "part-get-bootable"
25794 msgstr ""
25795
25796 #. type: verbatim
25797 #: ../fish/guestfish-actions.pod:3352
25798 #, no-wrap
25799 msgid ""
25800 " part-get-bootable device partnum\n"
25801 "\n"
25802 msgstr ""
25803
25804 #. type: textblock
25805 #: ../fish/guestfish-actions.pod:3357
25806 msgid "See also L</part-set-bootable>."
25807 msgstr ""
25808
25809 #. type: =head2
25810 #: ../fish/guestfish-actions.pod:3359
25811 msgid "part-get-mbr-id"
25812 msgstr ""
25813
25814 #. type: verbatim
25815 #: ../fish/guestfish-actions.pod:3361
25816 #, no-wrap
25817 msgid ""
25818 " part-get-mbr-id device partnum\n"
25819 "\n"
25820 msgstr ""
25821
25822 #. type: textblock
25823 #: ../fish/guestfish-actions.pod:3366 ../fish/guestfish-actions.pod:3504
25824 msgid ""
25825 "Note that only MBR (old DOS-style) partitions have type bytes.  You will get "
25826 "undefined results for other partition table types (see L</part-get-"
25827 "parttype>)."
25828 msgstr ""
25829
25830 #. type: =head2
25831 #: ../fish/guestfish-actions.pod:3370
25832 msgid "part-get-parttype"
25833 msgstr ""
25834
25835 #. type: verbatim
25836 #: ../fish/guestfish-actions.pod:3372
25837 #, no-wrap
25838 msgid ""
25839 " part-get-parttype device\n"
25840 "\n"
25841 msgstr ""
25842
25843 #. type: textblock
25844 #: ../fish/guestfish-actions.pod:3377
25845 msgid ""
25846 "Common return values include: C<msdos> (a DOS/Windows style MBR partition "
25847 "table), C<gpt> (a GPT/EFI-style partition table).  Other values are "
25848 "possible, although unusual.  See L</part-init> for a full list."
25849 msgstr ""
25850
25851 #. type: =head2
25852 #: ../fish/guestfish-actions.pod:3382
25853 msgid "part-init"
25854 msgstr ""
25855
25856 #. type: verbatim
25857 #: ../fish/guestfish-actions.pod:3384
25858 #, no-wrap
25859 msgid ""
25860 " part-init device parttype\n"
25861 "\n"
25862 msgstr ""
25863
25864 #. type: textblock
25865 #: ../fish/guestfish-actions.pod:3390
25866 msgid ""
25867 "Initially there are no partitions.  Following this, you should call L</part-"
25868 "add> for each partition required."
25869 msgstr ""
25870
25871 #. type: =head2
25872 #: ../fish/guestfish-actions.pod:3453
25873 msgid "part-list"
25874 msgstr ""
25875
25876 #. type: verbatim
25877 #: ../fish/guestfish-actions.pod:3455
25878 #, no-wrap
25879 msgid ""
25880 " part-list device\n"
25881 "\n"
25882 msgstr ""
25883
25884 #. type: textblock
25885 #: ../fish/guestfish-actions.pod:3470
25886 msgid ""
25887 "Start of the partition I<in bytes>.  To get sectors you have to divide by "
25888 "the device's sector size, see L</blockdev-getss>."
25889 msgstr ""
25890
25891 #. type: =head2
25892 #: ../fish/guestfish-actions.pod:3483
25893 msgid "part-set-bootable"
25894 msgstr ""
25895
25896 #. type: verbatim
25897 #: ../fish/guestfish-actions.pod:3485
25898 #, no-wrap
25899 msgid ""
25900 " part-set-bootable device partnum true|false\n"
25901 "\n"
25902 msgstr ""
25903
25904 #. type: =head2
25905 #: ../fish/guestfish-actions.pod:3494
25906 msgid "part-set-mbr-id"
25907 msgstr ""
25908
25909 #. type: verbatim
25910 #: ../fish/guestfish-actions.pod:3496
25911 #, no-wrap
25912 msgid ""
25913 " part-set-mbr-id device partnum idbyte\n"
25914 "\n"
25915 msgstr ""
25916
25917 #. type: =head2
25918 #: ../fish/guestfish-actions.pod:3508
25919 msgid "part-set-name"
25920 msgstr ""
25921
25922 #. type: verbatim
25923 #: ../fish/guestfish-actions.pod:3510
25924 #, no-wrap
25925 msgid ""
25926 " part-set-name device partnum name\n"
25927 "\n"
25928 msgstr ""
25929
25930 #. type: =head2
25931 #: ../fish/guestfish-actions.pod:3518
25932 msgid "part-to-dev"
25933 msgstr ""
25934
25935 #. type: verbatim
25936 #: ../fish/guestfish-actions.pod:3520
25937 #, no-wrap
25938 msgid ""
25939 " part-to-dev partition\n"
25940 "\n"
25941 msgstr ""
25942
25943 #. type: textblock
25944 #: ../fish/guestfish-actions.pod:3526
25945 msgid ""
25946 "The named partition must exist, for example as a string returned from L</"
25947 "list-partitions>."
25948 msgstr ""
25949
25950 #. type: =head2
25951 #: ../fish/guestfish-actions.pod:3529
25952 msgid "ping-daemon"
25953 msgstr ""
25954
25955 #. type: verbatim
25956 #: ../fish/guestfish-actions.pod:3531
25957 #, no-wrap
25958 msgid ""
25959 " ping-daemon\n"
25960 "\n"
25961 msgstr ""
25962
25963 #. type: =head2
25964 #: ../fish/guestfish-actions.pod:3538
25965 msgid "pread"
25966 msgstr ""
25967
25968 #. type: verbatim
25969 #: ../fish/guestfish-actions.pod:3540
25970 #, no-wrap
25971 msgid ""
25972 " pread path count offset\n"
25973 "\n"
25974 msgstr ""
25975
25976 #. type: textblock
25977 #: ../fish/guestfish-actions.pod:3548
25978 msgid "See also L</pwrite>, L</pread-device>."
25979 msgstr ""
25980
25981 #. type: =head2
25982 #: ../fish/guestfish-actions.pod:3553
25983 msgid "pread-device"
25984 msgstr ""
25985
25986 #. type: verbatim
25987 #: ../fish/guestfish-actions.pod:3555
25988 #, no-wrap
25989 msgid ""
25990 " pread-device device count offset\n"
25991 "\n"
25992 msgstr ""
25993
25994 #. type: textblock
25995 #: ../fish/guestfish-actions.pod:3563
25996 msgid "See also L</pread>."
25997 msgstr ""
25998
25999 #. type: =head2
26000 #: ../fish/guestfish-actions.pod:3568
26001 msgid "pvcreate"
26002 msgstr ""
26003
26004 #. type: verbatim
26005 #: ../fish/guestfish-actions.pod:3570
26006 #, no-wrap
26007 msgid ""
26008 " pvcreate device\n"
26009 "\n"
26010 msgstr ""
26011
26012 #. type: =head2
26013 #: ../fish/guestfish-actions.pod:3576
26014 msgid "pvremove"
26015 msgstr ""
26016
26017 #. type: verbatim
26018 #: ../fish/guestfish-actions.pod:3578
26019 #, no-wrap
26020 msgid ""
26021 " pvremove device\n"
26022 "\n"
26023 msgstr ""
26024
26025 #. type: =head2
26026 #: ../fish/guestfish-actions.pod:3587
26027 msgid "pvresize"
26028 msgstr ""
26029
26030 #. type: verbatim
26031 #: ../fish/guestfish-actions.pod:3589
26032 #, no-wrap
26033 msgid ""
26034 " pvresize device\n"
26035 "\n"
26036 msgstr ""
26037
26038 #. type: =head2
26039 #: ../fish/guestfish-actions.pod:3594
26040 msgid "pvresize-size"
26041 msgstr ""
26042
26043 #. type: verbatim
26044 #: ../fish/guestfish-actions.pod:3596
26045 #, no-wrap
26046 msgid ""
26047 " pvresize-size device size\n"
26048 "\n"
26049 msgstr ""
26050
26051 #. type: textblock
26052 #: ../fish/guestfish-actions.pod:3598
26053 msgid ""
26054 "This command is the same as L</pvresize> except that it allows you to "
26055 "specify the new size (in bytes) explicitly."
26056 msgstr ""
26057
26058 #. type: =head2
26059 #: ../fish/guestfish-actions.pod:3601
26060 msgid "pvs"
26061 msgstr ""
26062
26063 #. type: verbatim
26064 #: ../fish/guestfish-actions.pod:3603
26065 #, no-wrap
26066 msgid ""
26067 " pvs\n"
26068 "\n"
26069 msgstr ""
26070
26071 #. type: textblock
26072 #: ../fish/guestfish-actions.pod:3611
26073 msgid "See also L</pvs-full>."
26074 msgstr ""
26075
26076 #. type: =head2
26077 #: ../fish/guestfish-actions.pod:3613
26078 msgid "pvs-full"
26079 msgstr ""
26080
26081 #. type: verbatim
26082 #: ../fish/guestfish-actions.pod:3615
26083 #, no-wrap
26084 msgid ""
26085 " pvs-full\n"
26086 "\n"
26087 msgstr ""
26088
26089 #. type: =head2
26090 #: ../fish/guestfish-actions.pod:3620
26091 msgid "pvuuid"
26092 msgstr ""
26093
26094 #. type: verbatim
26095 #: ../fish/guestfish-actions.pod:3622
26096 #, no-wrap
26097 msgid ""
26098 " pvuuid device\n"
26099 "\n"
26100 msgstr ""
26101
26102 #. type: =head2
26103 #: ../fish/guestfish-actions.pod:3626
26104 msgid "pwrite"
26105 msgstr ""
26106
26107 #. type: verbatim
26108 #: ../fish/guestfish-actions.pod:3628
26109 #, no-wrap
26110 msgid ""
26111 " pwrite path content offset\n"
26112 "\n"
26113 msgstr ""
26114
26115 #. type: textblock
26116 #: ../fish/guestfish-actions.pod:3639
26117 msgid "See also L</pread>, L</pwrite-device>."
26118 msgstr ""
26119
26120 #. type: =head2
26121 #: ../fish/guestfish-actions.pod:3644
26122 msgid "pwrite-device"
26123 msgstr ""
26124
26125 #. type: verbatim
26126 #: ../fish/guestfish-actions.pod:3646
26127 #, no-wrap
26128 msgid ""
26129 " pwrite-device device content offset\n"
26130 "\n"
26131 msgstr ""
26132
26133 #. type: textblock
26134 #: ../fish/guestfish-actions.pod:3656
26135 msgid "See also L</pwrite>."
26136 msgstr ""
26137
26138 #. type: =head2
26139 #: ../fish/guestfish-actions.pod:3661
26140 msgid "read-file"
26141 msgstr ""
26142
26143 #. type: verbatim
26144 #: ../fish/guestfish-actions.pod:3663
26145 #, no-wrap
26146 msgid ""
26147 " read-file path\n"
26148 "\n"
26149 msgstr ""
26150
26151 #. type: textblock
26152 #: ../fish/guestfish-actions.pod:3668
26153 msgid ""
26154 "Unlike L</cat>, this function can correctly handle files that contain "
26155 "embedded ASCII NUL characters.  However unlike L</download>, this function "
26156 "is limited in the total size of file that can be handled."
26157 msgstr ""
26158
26159 #. type: =head2
26160 #: ../fish/guestfish-actions.pod:3676
26161 msgid "read-lines"
26162 msgstr ""
26163
26164 #. type: verbatim
26165 #: ../fish/guestfish-actions.pod:3678
26166 #, no-wrap
26167 msgid ""
26168 " read-lines path\n"
26169 "\n"
26170 msgstr ""
26171
26172 #. type: textblock
26173 #: ../fish/guestfish-actions.pod:3685
26174 msgid ""
26175 "Note that this function cannot correctly handle binary files (specifically, "
26176 "files containing C<\\0> character which is treated as end of line).  For "
26177 "those you need to use the L</read-file> function which has a more complex "
26178 "interface."
26179 msgstr ""
26180
26181 #. type: =head2
26182 #: ../fish/guestfish-actions.pod:3690
26183 msgid "readdir"
26184 msgstr ""
26185
26186 #. type: verbatim
26187 #: ../fish/guestfish-actions.pod:3692
26188 #, no-wrap
26189 msgid ""
26190 " readdir dir\n"
26191 "\n"
26192 msgstr ""
26193
26194 #. type: textblock
26195 #: ../fish/guestfish-actions.pod:3744
26196 msgid ""
26197 "This function is primarily intended for use by programs.  To get a simple "
26198 "list of names, use L</ls>.  To get a printable directory for human "
26199 "consumption, use L</ll>."
26200 msgstr ""
26201
26202 #. type: =head2
26203 #: ../fish/guestfish-actions.pod:3748
26204 msgid "readlink"
26205 msgstr ""
26206
26207 #. type: verbatim
26208 #: ../fish/guestfish-actions.pod:3750
26209 #, no-wrap
26210 msgid ""
26211 " readlink path\n"
26212 "\n"
26213 msgstr ""
26214
26215 #. type: =head2
26216 #: ../fish/guestfish-actions.pod:3754
26217 msgid "readlinklist"
26218 msgstr ""
26219
26220 #. type: verbatim
26221 #: ../fish/guestfish-actions.pod:3756
26222 #, no-wrap
26223 msgid ""
26224 " readlinklist path 'names ...'\n"
26225 "\n"
26226 msgstr ""
26227
26228 #. type: =head2
26229 #: ../fish/guestfish-actions.pod:3780
26230 msgid "realpath"
26231 msgstr ""
26232
26233 #. type: verbatim
26234 #: ../fish/guestfish-actions.pod:3782
26235 #, no-wrap
26236 msgid ""
26237 " realpath path\n"
26238 "\n"
26239 msgstr ""
26240
26241 #. type: =head2
26242 #: ../fish/guestfish-actions.pod:3787
26243 msgid "removexattr"
26244 msgstr ""
26245
26246 #. type: verbatim
26247 #: ../fish/guestfish-actions.pod:3789
26248 #, no-wrap
26249 msgid ""
26250 " removexattr xattr path\n"
26251 "\n"
26252 msgstr ""
26253
26254 #. type: textblock
26255 #: ../fish/guestfish-actions.pod:3794
26256 msgid "See also: L</lremovexattr>, L<attr(5)>."
26257 msgstr ""
26258
26259 #. type: =head2
26260 #: ../fish/guestfish-actions.pod:3796
26261 msgid "resize2fs"
26262 msgstr ""
26263
26264 #. type: verbatim
26265 #: ../fish/guestfish-actions.pod:3798
26266 #, no-wrap
26267 msgid ""
26268 " resize2fs device\n"
26269 "\n"
26270 msgstr ""
26271
26272 #. type: textblock
26273 #: ../fish/guestfish-actions.pod:3803
26274 msgid ""
26275 "I<Note:> It is sometimes required that you run L</e2fsck-f> on the C<device> "
26276 "before calling this command.  For unknown reasons C<resize2fs> sometimes "
26277 "gives an error about this and sometimes not.  In any case, it is always safe "
26278 "to call L</e2fsck-f> before calling this function."
26279 msgstr ""
26280
26281 #. type: =head2
26282 #: ../fish/guestfish-actions.pod:3809
26283 msgid "resize2fs-M"
26284 msgstr ""
26285
26286 #. type: verbatim
26287 #: ../fish/guestfish-actions.pod:3811
26288 #, no-wrap
26289 msgid ""
26290 " resize2fs-M device\n"
26291 "\n"
26292 msgstr ""
26293
26294 #. type: textblock
26295 #: ../fish/guestfish-actions.pod:3813
26296 msgid ""
26297 "This command is the same as L</resize2fs>, but the filesystem is resized to "
26298 "its minimum size.  This works like the I<-M> option to the C<resize2fs> "
26299 "command."
26300 msgstr ""
26301
26302 #. type: textblock
26303 #: ../fish/guestfish-actions.pod:3817
26304 msgid ""
26305 "To get the resulting size of the filesystem you should call L</tune2fs-l> "
26306 "and read the C<Block size> and C<Block count> values.  These two numbers, "
26307 "multiplied together, give the resulting size of the minimal filesystem in "
26308 "bytes."
26309 msgstr ""
26310
26311 #. type: =head2
26312 #: ../fish/guestfish-actions.pod:3822
26313 msgid "resize2fs-size"
26314 msgstr ""
26315
26316 #. type: verbatim
26317 #: ../fish/guestfish-actions.pod:3824
26318 #, no-wrap
26319 msgid ""
26320 " resize2fs-size device size\n"
26321 "\n"
26322 msgstr ""
26323
26324 #. type: textblock
26325 #: ../fish/guestfish-actions.pod:3826
26326 msgid ""
26327 "This command is the same as L</resize2fs> except that it allows you to "
26328 "specify the new size (in bytes) explicitly."
26329 msgstr ""
26330
26331 #. type: =head2
26332 #: ../fish/guestfish-actions.pod:3829
26333 msgid "rm"
26334 msgstr ""
26335
26336 #. type: verbatim
26337 #: ../fish/guestfish-actions.pod:3831
26338 #, no-wrap
26339 msgid ""
26340 " rm path\n"
26341 "\n"
26342 msgstr ""
26343
26344 #. type: =head2
26345 #: ../fish/guestfish-actions.pod:3835
26346 msgid "rm-rf"
26347 msgstr ""
26348
26349 #. type: verbatim
26350 #: ../fish/guestfish-actions.pod:3837
26351 #, no-wrap
26352 msgid ""
26353 " rm-rf path\n"
26354 "\n"
26355 msgstr ""
26356
26357 #. type: =head2
26358 #: ../fish/guestfish-actions.pod:3843
26359 msgid "rmdir"
26360 msgstr ""
26361
26362 #. type: verbatim
26363 #: ../fish/guestfish-actions.pod:3845
26364 #, no-wrap
26365 msgid ""
26366 " rmdir path\n"
26367 "\n"
26368 msgstr ""
26369
26370 #. type: =head2
26371 #: ../fish/guestfish-actions.pod:3849
26372 msgid "rmmountpoint"
26373 msgstr ""
26374
26375 #. type: verbatim
26376 #: ../fish/guestfish-actions.pod:3851
26377 #, no-wrap
26378 msgid ""
26379 " rmmountpoint exemptpath\n"
26380 "\n"
26381 msgstr ""
26382
26383 #. type: textblock
26384 #: ../fish/guestfish-actions.pod:3853
26385 msgid ""
26386 "This calls removes a mountpoint that was previously created with L</"
26387 "mkmountpoint>.  See L</mkmountpoint> for full details."
26388 msgstr ""
26389
26390 #. type: =head2
26391 #: ../fish/guestfish-actions.pod:3857
26392 msgid "scrub-device"
26393 msgstr ""
26394
26395 #. type: verbatim
26396 #: ../fish/guestfish-actions.pod:3859
26397 #, no-wrap
26398 msgid ""
26399 " scrub-device device\n"
26400 "\n"
26401 msgstr ""
26402
26403 #. type: =head2
26404 #: ../fish/guestfish-actions.pod:3870
26405 msgid "scrub-file"
26406 msgstr ""
26407
26408 #. type: verbatim
26409 #: ../fish/guestfish-actions.pod:3872
26410 #, no-wrap
26411 msgid ""
26412 " scrub-file file\n"
26413 "\n"
26414 msgstr ""
26415
26416 #. type: =head2
26417 #: ../fish/guestfish-actions.pod:3882
26418 msgid "scrub-freespace"
26419 msgstr ""
26420
26421 #. type: verbatim
26422 #: ../fish/guestfish-actions.pod:3884
26423 #, no-wrap
26424 msgid ""
26425 " scrub-freespace dir\n"
26426 "\n"
26427 msgstr ""
26428
26429 #. type: textblock
26430 #: ../fish/guestfish-actions.pod:3886
26431 msgid ""
26432 "This command creates the directory C<dir> and then fills it with files until "
26433 "the filesystem is full, and scrubs the files as for L</scrub-file>, and "
26434 "deletes them.  The intention is to scrub any free space on the partition "
26435 "containing C<dir>."
26436 msgstr ""
26437
26438 #. type: =head2
26439 #: ../fish/guestfish-actions.pod:3895
26440 msgid "set-append"
26441 msgstr ""
26442
26443 #. type: =head2
26444 #: ../fish/guestfish-actions.pod:3897
26445 msgid "append"
26446 msgstr ""
26447
26448 #. type: verbatim
26449 #: ../fish/guestfish-actions.pod:3899
26450 #, no-wrap
26451 msgid ""
26452 " set-append append\n"
26453 "\n"
26454 msgstr ""
26455
26456 #. type: =head2
26457 #: ../fish/guestfish-actions.pod:3910
26458 msgid "set-attach-method"
26459 msgstr ""
26460
26461 #. type: =head2
26462 #: ../fish/guestfish-actions.pod:3912
26463 msgid "attach-method"
26464 msgstr ""
26465
26466 #. type: verbatim
26467 #: ../fish/guestfish-actions.pod:3914
26468 #, no-wrap
26469 msgid ""
26470 " set-attach-method attachmethod\n"
26471 "\n"
26472 msgstr ""
26473
26474 #. type: =head2
26475 #: ../fish/guestfish-actions.pod:3936
26476 msgid "set-autosync"
26477 msgstr ""
26478
26479 #. type: =head2
26480 #: ../fish/guestfish-actions.pod:3938
26481 msgid "autosync"
26482 msgstr ""
26483
26484 #. type: verbatim
26485 #: ../fish/guestfish-actions.pod:3940
26486 #, no-wrap
26487 msgid ""
26488 " set-autosync true|false\n"
26489 "\n"
26490 msgstr ""
26491
26492 #. type: =head2
26493 #: ../fish/guestfish-actions.pod:3950
26494 msgid "set-direct"
26495 msgstr ""
26496
26497 #. type: =head2
26498 #: ../fish/guestfish-actions.pod:3952
26499 msgid "direct"
26500 msgstr ""
26501
26502 #. type: verbatim
26503 #: ../fish/guestfish-actions.pod:3954
26504 #, no-wrap
26505 msgid ""
26506 " set-direct true|false\n"
26507 "\n"
26508 msgstr ""
26509
26510 #. type: textblock
26511 #: ../fish/guestfish-actions.pod:3960
26512 msgid ""
26513 "One consequence of this is that log messages aren't caught by the library "
26514 "and handled by L</set-log-message-callback>, but go straight to stdout."
26515 msgstr ""
26516
26517 #. type: =head2
26518 #: ../fish/guestfish-actions.pod:3969
26519 msgid "set-e2label"
26520 msgstr ""
26521
26522 #. type: verbatim
26523 #: ../fish/guestfish-actions.pod:3971
26524 #, no-wrap
26525 msgid ""
26526 " set-e2label device label\n"
26527 "\n"
26528 msgstr ""
26529
26530 #. type: textblock
26531 #: ../fish/guestfish-actions.pod:3977
26532 msgid ""
26533 "You can use either L</tune2fs-l> or L</get-e2label> to return the existing "
26534 "label on a filesystem."
26535 msgstr ""
26536
26537 #. type: =head2
26538 #: ../fish/guestfish-actions.pod:3980
26539 msgid "set-e2uuid"
26540 msgstr ""
26541
26542 #. type: verbatim
26543 #: ../fish/guestfish-actions.pod:3982
26544 #, no-wrap
26545 msgid ""
26546 " set-e2uuid device uuid\n"
26547 "\n"
26548 msgstr ""
26549
26550 #. type: textblock
26551 #: ../fish/guestfish-actions.pod:3989
26552 msgid ""
26553 "You can use either L</tune2fs-l> or L</get-e2uuid> to return the existing "
26554 "UUID of a filesystem."
26555 msgstr ""
26556
26557 #. type: =head2
26558 #: ../fish/guestfish-actions.pod:3992
26559 msgid "set-memsize"
26560 msgstr ""
26561
26562 #. type: =head2
26563 #: ../fish/guestfish-actions.pod:3994
26564 msgid "memsize"
26565 msgstr ""
26566
26567 #. type: verbatim
26568 #: ../fish/guestfish-actions.pod:3996
26569 #, no-wrap
26570 msgid ""
26571 " set-memsize memsize\n"
26572 "\n"
26573 msgstr ""
26574
26575 #. type: textblock
26576 #: ../fish/guestfish-actions.pod:3998
26577 msgid ""
26578 "This sets the memory size in megabytes allocated to the qemu subprocess.  "
26579 "This only has any effect if called before L</launch>."
26580 msgstr ""
26581
26582 #. type: =head2
26583 #: ../fish/guestfish-actions.pod:4009
26584 msgid "set-network"
26585 msgstr ""
26586
26587 #. type: =head2
26588 #: ../fish/guestfish-actions.pod:4011
26589 msgid "network"
26590 msgstr ""
26591
26592 #. type: verbatim
26593 #: ../fish/guestfish-actions.pod:4013
26594 #, no-wrap
26595 msgid ""
26596 " set-network true|false\n"
26597 "\n"
26598 msgstr ""
26599
26600 #. type: textblock
26601 #: ../fish/guestfish-actions.pod:4021
26602 msgid ""
26603 "You must call this before calling L</launch>, otherwise it has no effect."
26604 msgstr ""
26605
26606 #. type: =head2
26607 #: ../fish/guestfish-actions.pod:4024
26608 msgid "set-path"
26609 msgstr ""
26610
26611 #. type: =head2
26612 #: ../fish/guestfish-actions.pod:4026
26613 msgid "path"
26614 msgstr ""
26615
26616 #. type: verbatim
26617 #: ../fish/guestfish-actions.pod:4028
26618 #, no-wrap
26619 msgid ""
26620 " set-path searchpath\n"
26621 "\n"
26622 msgstr ""
26623
26624 #. type: =head2
26625 #: ../fish/guestfish-actions.pod:4037
26626 msgid "set-qemu"
26627 msgstr ""
26628
26629 #. type: =head2
26630 #: ../fish/guestfish-actions.pod:4039
26631 msgid "qemu"
26632 msgstr ""
26633
26634 #. type: verbatim
26635 #: ../fish/guestfish-actions.pod:4041
26636 #, no-wrap
26637 msgid ""
26638 " set-qemu qemu\n"
26639 "\n"
26640 msgstr ""
26641
26642 #. type: =head2
26643 #: ../fish/guestfish-actions.pod:4061
26644 msgid "set-recovery-proc"
26645 msgstr ""
26646
26647 #. type: =head2
26648 #: ../fish/guestfish-actions.pod:4063
26649 msgid "recovery-proc"
26650 msgstr ""
26651
26652 #. type: verbatim
26653 #: ../fish/guestfish-actions.pod:4065
26654 #, no-wrap
26655 msgid ""
26656 " set-recovery-proc true|false\n"
26657 "\n"
26658 msgstr ""
26659
26660 #. type: textblock
26661 #: ../fish/guestfish-actions.pod:4067
26662 msgid ""
26663 "If this is called with the parameter C<false> then L</launch> does not "
26664 "create a recovery process.  The purpose of the recovery process is to stop "
26665 "runaway qemu processes in the case where the main program aborts abruptly."
26666 msgstr ""
26667
26668 #. type: textblock
26669 #: ../fish/guestfish-actions.pod:4072
26670 msgid ""
26671 "This only has any effect if called before L</launch>, and the default is "
26672 "true."
26673 msgstr ""
26674
26675 #. type: =head2
26676 #: ../fish/guestfish-actions.pod:4081
26677 msgid "set-selinux"
26678 msgstr ""
26679
26680 #. type: =head2
26681 #: ../fish/guestfish-actions.pod:4083
26682 msgid "selinux"
26683 msgstr ""
26684
26685 #. type: verbatim
26686 #: ../fish/guestfish-actions.pod:4085
26687 #, no-wrap
26688 msgid ""
26689 " set-selinux true|false\n"
26690 "\n"
26691 msgstr ""
26692
26693 #. type: =head2
26694 #: ../fish/guestfish-actions.pod:4096
26695 msgid "set-trace"
26696 msgstr ""
26697
26698 #. type: =head2
26699 #: ../fish/guestfish-actions.pod:4098
26700 msgid "trace"
26701 msgstr ""
26702
26703 #. type: verbatim
26704 #: ../fish/guestfish-actions.pod:4100
26705 #, no-wrap
26706 msgid ""
26707 " set-trace true|false\n"
26708 "\n"
26709 msgstr ""
26710
26711 #. type: textblock
26712 #: ../fish/guestfish-actions.pod:4112
26713 msgid ""
26714 "Trace messages are normally sent to C<stderr>, unless you register a "
26715 "callback to send them somewhere else (see L</set-event-callback>)."
26716 msgstr ""
26717
26718 #. type: =head2
26719 #: ../fish/guestfish-actions.pod:4116
26720 msgid "set-verbose"
26721 msgstr ""
26722
26723 #. type: =head2
26724 #: ../fish/guestfish-actions.pod:4118
26725 msgid "verbose"
26726 msgstr ""
26727
26728 #. type: verbatim
26729 #: ../fish/guestfish-actions.pod:4120
26730 #, no-wrap
26731 msgid ""
26732 " set-verbose true|false\n"
26733 "\n"
26734 msgstr ""
26735
26736 #. type: textblock
26737 #: ../fish/guestfish-actions.pod:4127
26738 msgid ""
26739 "Verbose messages are normally sent to C<stderr>, unless you register a "
26740 "callback to send them somewhere else (see L</set-event-callback>)."
26741 msgstr ""
26742
26743 #. type: =head2
26744 #: ../fish/guestfish-actions.pod:4131
26745 msgid "setcon"
26746 msgstr ""
26747
26748 #. type: verbatim
26749 #: ../fish/guestfish-actions.pod:4133
26750 #, no-wrap
26751 msgid ""
26752 " setcon context\n"
26753 "\n"
26754 msgstr ""
26755
26756 #. type: =head2
26757 #: ../fish/guestfish-actions.pod:4140
26758 msgid "setxattr"
26759 msgstr ""
26760
26761 #. type: verbatim
26762 #: ../fish/guestfish-actions.pod:4142
26763 #, no-wrap
26764 msgid ""
26765 " setxattr xattr val vallen path\n"
26766 "\n"
26767 msgstr ""
26768
26769 #. type: textblock
26770 #: ../fish/guestfish-actions.pod:4148
26771 msgid "See also: L</lsetxattr>, L<attr(5)>."
26772 msgstr ""
26773
26774 #. type: =head2
26775 #: ../fish/guestfish-actions.pod:4150
26776 msgid "sfdisk"
26777 msgstr ""
26778
26779 #. type: verbatim
26780 #: ../fish/guestfish-actions.pod:4152
26781 #, no-wrap
26782 msgid ""
26783 " sfdisk device cyls heads sectors 'lines ...'\n"
26784 "\n"
26785 msgstr ""
26786
26787 #. type: textblock
26788 #: ../fish/guestfish-actions.pod:4174
26789 msgid "See also: L</sfdisk-l>, L</sfdisk-N>, L</part-init>"
26790 msgstr ""
26791
26792 #. type: =head2
26793 #: ../fish/guestfish-actions.pod:4187
26794 msgid "sfdiskM"
26795 msgstr ""
26796
26797 #. type: verbatim
26798 #: ../fish/guestfish-actions.pod:4189
26799 #, no-wrap
26800 msgid ""
26801 " sfdiskM device 'lines ...'\n"
26802 "\n"
26803 msgstr ""
26804
26805 #. type: textblock
26806 #: ../fish/guestfish-actions.pod:4191
26807 msgid ""
26808 "This is a simplified interface to the L</sfdisk> command, where partition "
26809 "sizes are specified in megabytes only (rounded to the nearest cylinder) and "
26810 "you don't need to specify the cyls, heads and sectors parameters which were "
26811 "rarely if ever used anyway."
26812 msgstr ""
26813
26814 #. type: textblock
26815 #: ../fish/guestfish-actions.pod:4197
26816 msgid "See also: L</sfdisk>, the L<sfdisk(8)> manpage and L</part-disk>"
26817 msgstr ""
26818
26819 #. type: =head2
26820 #: ../fish/guestfish-actions.pod:4210
26821 msgid "sfdisk-N"
26822 msgstr ""
26823
26824 #. type: verbatim
26825 #: ../fish/guestfish-actions.pod:4212
26826 #, no-wrap
26827 msgid ""
26828 " sfdisk-N device partnum cyls heads sectors line\n"
26829 "\n"
26830 msgstr ""
26831
26832 #. type: textblock
26833 #: ../fish/guestfish-actions.pod:4217
26834 msgid ""
26835 "For other parameters, see L</sfdisk>.  You should usually pass C<0> for the "
26836 "cyls/heads/sectors parameters."
26837 msgstr ""
26838
26839 #. type: textblock
26840 #: ../fish/guestfish-actions.pod:4220
26841 msgid "See also: L</part-add>"
26842 msgstr ""
26843
26844 #. type: =head2
26845 #: ../fish/guestfish-actions.pod:4232
26846 msgid "sfdisk-disk-geometry"
26847 msgstr ""
26848
26849 #. type: verbatim
26850 #: ../fish/guestfish-actions.pod:4234
26851 #, no-wrap
26852 msgid ""
26853 " sfdisk-disk-geometry device\n"
26854 "\n"
26855 msgstr ""
26856
26857 #. type: textblock
26858 #: ../fish/guestfish-actions.pod:4236
26859 msgid ""
26860 "This displays the disk geometry of C<device> read from the partition table.  "
26861 "Especially in the case where the underlying block device has been resized, "
26862 "this can be different from the kernel's idea of the geometry (see L</sfdisk-"
26863 "kernel-geometry>)."
26864 msgstr ""
26865
26866 #. type: =head2
26867 #: ../fish/guestfish-actions.pod:4244
26868 msgid "sfdisk-kernel-geometry"
26869 msgstr ""
26870
26871 #. type: verbatim
26872 #: ../fish/guestfish-actions.pod:4246
26873 #, no-wrap
26874 msgid ""
26875 " sfdisk-kernel-geometry device\n"
26876 "\n"
26877 msgstr ""
26878
26879 #. type: =head2
26880 #: ../fish/guestfish-actions.pod:4253
26881 msgid "sfdisk-l"
26882 msgstr ""
26883
26884 #. type: verbatim
26885 #: ../fish/guestfish-actions.pod:4255
26886 #, no-wrap
26887 msgid ""
26888 " sfdisk-l device\n"
26889 "\n"
26890 msgstr ""
26891
26892 #. type: textblock
26893 #: ../fish/guestfish-actions.pod:4261
26894 msgid "See also: L</part-list>"
26895 msgstr ""
26896
26897 #. type: =head2
26898 #: ../fish/guestfish-actions.pod:4270
26899 msgid "sh"
26900 msgstr ""
26901
26902 #. type: verbatim
26903 #: ../fish/guestfish-actions.pod:4272
26904 #, no-wrap
26905 msgid ""
26906 " sh command\n"
26907 "\n"
26908 msgstr ""
26909
26910 #. type: textblock
26911 #: ../fish/guestfish-actions.pod:4277
26912 msgid "This is like L</command>, but passes the command to:"
26913 msgstr ""
26914
26915 #. type: textblock
26916 #: ../fish/guestfish-actions.pod:4285
26917 msgid "All the provisos about L</command> apply to this call."
26918 msgstr ""
26919
26920 #. type: =head2
26921 #: ../fish/guestfish-actions.pod:4287
26922 msgid "sh-lines"
26923 msgstr ""
26924
26925 #. type: verbatim
26926 #: ../fish/guestfish-actions.pod:4289
26927 #, no-wrap
26928 msgid ""
26929 " sh-lines command\n"
26930 "\n"
26931 msgstr ""
26932
26933 #. type: textblock
26934 #: ../fish/guestfish-actions.pod:4291
26935 msgid "This is the same as L</sh>, but splits the result into a list of lines."
26936 msgstr ""
26937
26938 #. type: textblock
26939 #: ../fish/guestfish-actions.pod:4294
26940 msgid "See also: L</command-lines>"
26941 msgstr ""
26942
26943 #. type: =head2
26944 #: ../fish/guestfish-actions.pod:4296
26945 msgid "sleep"
26946 msgstr ""
26947
26948 #. type: verbatim
26949 #: ../fish/guestfish-actions.pod:4298
26950 #, no-wrap
26951 msgid ""
26952 " sleep secs\n"
26953 "\n"
26954 msgstr ""
26955
26956 #. type: =head2
26957 #: ../fish/guestfish-actions.pod:4302
26958 msgid "stat"
26959 msgstr ""
26960
26961 #. type: verbatim
26962 #: ../fish/guestfish-actions.pod:4304
26963 #, no-wrap
26964 msgid ""
26965 " stat path\n"
26966 "\n"
26967 msgstr ""
26968
26969 #. type: =head2
26970 #: ../fish/guestfish-actions.pod:4310
26971 msgid "statvfs"
26972 msgstr ""
26973
26974 #. type: verbatim
26975 #: ../fish/guestfish-actions.pod:4312
26976 #, no-wrap
26977 msgid ""
26978 " statvfs path\n"
26979 "\n"
26980 msgstr ""
26981
26982 #. type: =head2
26983 #: ../fish/guestfish-actions.pod:4320
26984 msgid "strings"
26985 msgstr ""
26986
26987 #. type: verbatim
26988 #: ../fish/guestfish-actions.pod:4322
26989 #, no-wrap
26990 msgid ""
26991 " strings path\n"
26992 "\n"
26993 msgstr ""
26994
26995 #. type: =head2
26996 #: ../fish/guestfish-actions.pod:4330
26997 msgid "strings-e"
26998 msgstr ""
26999
27000 #. type: verbatim
27001 #: ../fish/guestfish-actions.pod:4332
27002 #, no-wrap
27003 msgid ""
27004 " strings-e encoding path\n"
27005 "\n"
27006 msgstr ""
27007
27008 #. type: textblock
27009 #: ../fish/guestfish-actions.pod:4334
27010 msgid ""
27011 "This is like the L</strings> command, but allows you to specify the encoding "
27012 "of strings that are looked for in the source file C<path>."
27013 msgstr ""
27014
27015 #. type: textblock
27016 #: ../fish/guestfish-actions.pod:4344
27017 msgid ""
27018 "Single 7-bit-byte characters like ASCII and the ASCII-compatible parts of "
27019 "ISO-8859-X (this is what L</strings> uses)."
27020 msgstr ""
27021
27022 #. type: =head2
27023 #: ../fish/guestfish-actions.pod:4376
27024 msgid "swapoff-device"
27025 msgstr ""
27026
27027 #. type: verbatim
27028 #: ../fish/guestfish-actions.pod:4378
27029 #, no-wrap
27030 msgid ""
27031 " swapoff-device device\n"
27032 "\n"
27033 msgstr ""
27034
27035 #. type: textblock
27036 #: ../fish/guestfish-actions.pod:4380
27037 msgid ""
27038 "This command disables the libguestfs appliance swap device or partition "
27039 "named C<device>.  See L</swapon-device>."
27040 msgstr ""
27041
27042 #. type: =head2
27043 #: ../fish/guestfish-actions.pod:4384
27044 msgid "swapoff-file"
27045 msgstr ""
27046
27047 #. type: verbatim
27048 #: ../fish/guestfish-actions.pod:4386
27049 #, no-wrap
27050 msgid ""
27051 " swapoff-file file\n"
27052 "\n"
27053 msgstr ""
27054
27055 #. type: =head2
27056 #: ../fish/guestfish-actions.pod:4390
27057 msgid "swapoff-label"
27058 msgstr ""
27059
27060 #. type: verbatim
27061 #: ../fish/guestfish-actions.pod:4392
27062 #, no-wrap
27063 msgid ""
27064 " swapoff-label label\n"
27065 "\n"
27066 msgstr ""
27067
27068 #. type: =head2
27069 #: ../fish/guestfish-actions.pod:4397
27070 msgid "swapoff-uuid"
27071 msgstr ""
27072
27073 #. type: verbatim
27074 #: ../fish/guestfish-actions.pod:4399
27075 #, no-wrap
27076 msgid ""
27077 " swapoff-uuid uuid\n"
27078 "\n"
27079 msgstr ""
27080
27081 #. type: =head2
27082 #: ../fish/guestfish-actions.pod:4404
27083 msgid "swapon-device"
27084 msgstr ""
27085
27086 #. type: verbatim
27087 #: ../fish/guestfish-actions.pod:4406
27088 #, no-wrap
27089 msgid ""
27090 " swapon-device device\n"
27091 "\n"
27092 msgstr ""
27093
27094 #. type: textblock
27095 #: ../fish/guestfish-actions.pod:4408
27096 msgid ""
27097 "This command enables the libguestfs appliance to use the swap device or "
27098 "partition named C<device>.  The increased memory is made available for all "
27099 "commands, for example those run using L</command> or L</sh>."
27100 msgstr ""
27101
27102 #. type: =head2
27103 #: ../fish/guestfish-actions.pod:4420
27104 msgid "swapon-file"
27105 msgstr ""
27106
27107 #. type: verbatim
27108 #: ../fish/guestfish-actions.pod:4422
27109 #, no-wrap
27110 msgid ""
27111 " swapon-file file\n"
27112 "\n"
27113 msgstr ""
27114
27115 #. type: textblock
27116 #: ../fish/guestfish-actions.pod:4424
27117 msgid ""
27118 "This command enables swap to a file.  See L</swapon-device> for other notes."
27119 msgstr ""
27120
27121 #. type: =head2
27122 #: ../fish/guestfish-actions.pod:4427
27123 msgid "swapon-label"
27124 msgstr ""
27125
27126 #. type: verbatim
27127 #: ../fish/guestfish-actions.pod:4429
27128 #, no-wrap
27129 msgid ""
27130 " swapon-label label\n"
27131 "\n"
27132 msgstr ""
27133
27134 #. type: textblock
27135 #: ../fish/guestfish-actions.pod:4431
27136 msgid ""
27137 "This command enables swap to a labeled swap partition.  See L</swapon-"
27138 "device> for other notes."
27139 msgstr ""
27140
27141 #. type: =head2
27142 #: ../fish/guestfish-actions.pod:4434
27143 msgid "swapon-uuid"
27144 msgstr ""
27145
27146 #. type: verbatim
27147 #: ../fish/guestfish-actions.pod:4436
27148 #, no-wrap
27149 msgid ""
27150 " swapon-uuid uuid\n"
27151 "\n"
27152 msgstr ""
27153
27154 #. type: textblock
27155 #: ../fish/guestfish-actions.pod:4438
27156 msgid ""
27157 "This command enables swap to a swap partition with the given UUID.  See L</"
27158 "swapon-device> for other notes."
27159 msgstr ""
27160
27161 #. type: =head2
27162 #: ../fish/guestfish-actions.pod:4441
27163 msgid "sync"
27164 msgstr ""
27165
27166 #. type: verbatim
27167 #: ../fish/guestfish-actions.pod:4443
27168 #, no-wrap
27169 msgid ""
27170 " sync\n"
27171 "\n"
27172 msgstr ""
27173
27174 #. type: =head2
27175 #: ../fish/guestfish-actions.pod:4451
27176 msgid "tail"
27177 msgstr ""
27178
27179 #. type: verbatim
27180 #: ../fish/guestfish-actions.pod:4453
27181 #, no-wrap
27182 msgid ""
27183 " tail path\n"
27184 "\n"
27185 msgstr ""
27186
27187 #. type: =head2
27188 #: ../fish/guestfish-actions.pod:4461
27189 msgid "tail-n"
27190 msgstr ""
27191
27192 #. type: verbatim
27193 #: ../fish/guestfish-actions.pod:4463
27194 #, no-wrap
27195 msgid ""
27196 " tail-n nrlines path\n"
27197 "\n"
27198 msgstr ""
27199
27200 #. type: =head2
27201 #: ../fish/guestfish-actions.pod:4476
27202 msgid "tar-in"
27203 msgstr ""
27204
27205 #. type: verbatim
27206 #: ../fish/guestfish-actions.pod:4478
27207 #, no-wrap
27208 msgid ""
27209 " tar-in (tarfile|-) directory\n"
27210 "\n"
27211 msgstr ""
27212
27213 #. type: textblock
27214 #: ../fish/guestfish-actions.pod:4483
27215 msgid "To upload a compressed tarball, use L</tgz-in> or L</txz-in>."
27216 msgstr ""
27217
27218 #. type: =head2
27219 #: ../fish/guestfish-actions.pod:4488
27220 msgid "tar-out"
27221 msgstr ""
27222
27223 #. type: verbatim
27224 #: ../fish/guestfish-actions.pod:4490
27225 #, no-wrap
27226 msgid ""
27227 " tar-out directory (tarfile|-)\n"
27228 "\n"
27229 msgstr ""
27230
27231 #. type: textblock
27232 #: ../fish/guestfish-actions.pod:4495
27233 msgid "To download a compressed tarball, use L</tgz-out> or L</txz-out>."
27234 msgstr ""
27235
27236 #. type: =head2
27237 #: ../fish/guestfish-actions.pod:4500
27238 msgid "tgz-in"
27239 msgstr ""
27240
27241 #. type: verbatim
27242 #: ../fish/guestfish-actions.pod:4502
27243 #, no-wrap
27244 msgid ""
27245 " tgz-in (tarball|-) directory\n"
27246 "\n"
27247 msgstr ""
27248
27249 #. type: textblock
27250 #: ../fish/guestfish-actions.pod:4507
27251 msgid "To upload an uncompressed tarball, use L</tar-in>."
27252 msgstr ""
27253
27254 #. type: =head2
27255 #: ../fish/guestfish-actions.pod:4511
27256 msgid "tgz-out"
27257 msgstr ""
27258
27259 #. type: verbatim
27260 #: ../fish/guestfish-actions.pod:4513
27261 #, no-wrap
27262 msgid ""
27263 " tgz-out directory (tarball|-)\n"
27264 "\n"
27265 msgstr ""
27266
27267 #. type: textblock
27268 #: ../fish/guestfish-actions.pod:4518
27269 msgid "To download an uncompressed tarball, use L</tar-out>."
27270 msgstr ""
27271
27272 #. type: =head2
27273 #: ../fish/guestfish-actions.pod:4522
27274 msgid "touch"
27275 msgstr ""
27276
27277 #. type: verbatim
27278 #: ../fish/guestfish-actions.pod:4524
27279 #, no-wrap
27280 msgid ""
27281 " touch path\n"
27282 "\n"
27283 msgstr ""
27284
27285 #. type: =head2
27286 #: ../fish/guestfish-actions.pod:4533
27287 msgid "truncate"
27288 msgstr ""
27289
27290 #. type: verbatim
27291 #: ../fish/guestfish-actions.pod:4535
27292 #, no-wrap
27293 msgid ""
27294 " truncate path\n"
27295 "\n"
27296 msgstr ""
27297
27298 #. type: =head2
27299 #: ../fish/guestfish-actions.pod:4540
27300 msgid "truncate-size"
27301 msgstr ""
27302
27303 #. type: verbatim
27304 #: ../fish/guestfish-actions.pod:4542
27305 #, no-wrap
27306 msgid ""
27307 " truncate-size path size\n"
27308 "\n"
27309 msgstr ""
27310
27311 #. type: textblock
27312 #: ../fish/guestfish-actions.pod:4547
27313 msgid ""
27314 "If the current file size is less than C<size> then the file is extended to "
27315 "the required size with zero bytes.  This creates a sparse file (ie. disk "
27316 "blocks are not allocated for the file until you write to it).  To create a "
27317 "non-sparse file of zeroes, use L</fallocate64> instead."
27318 msgstr ""
27319
27320 #. type: =head2
27321 #: ../fish/guestfish-actions.pod:4553
27322 msgid "tune2fs-l"
27323 msgstr ""
27324
27325 #. type: verbatim
27326 #: ../fish/guestfish-actions.pod:4555
27327 #, no-wrap
27328 msgid ""
27329 " tune2fs-l device\n"
27330 "\n"
27331 msgstr ""
27332
27333 #. type: =head2
27334 #: ../fish/guestfish-actions.pod:4565
27335 msgid "txz-in"
27336 msgstr ""
27337
27338 #. type: verbatim
27339 #: ../fish/guestfish-actions.pod:4567
27340 #, no-wrap
27341 msgid ""
27342 " txz-in (tarball|-) directory\n"
27343 "\n"
27344 msgstr ""
27345
27346 #. type: =head2
27347 #: ../fish/guestfish-actions.pod:4574
27348 msgid "txz-out"
27349 msgstr ""
27350
27351 #. type: verbatim
27352 #: ../fish/guestfish-actions.pod:4576
27353 #, no-wrap
27354 msgid ""
27355 " txz-out directory (tarball|-)\n"
27356 "\n"
27357 msgstr ""
27358
27359 #. type: =head2
27360 #: ../fish/guestfish-actions.pod:4583
27361 msgid "umask"
27362 msgstr ""
27363
27364 #. type: verbatim
27365 #: ../fish/guestfish-actions.pod:4585
27366 #, no-wrap
27367 msgid ""
27368 " umask mask\n"
27369 "\n"
27370 msgstr ""
27371
27372 #. type: textblock
27373 #: ../fish/guestfish-actions.pod:4599
27374 msgid "See also L</get-umask>, L<umask(2)>, L</mknod>, L</mkdir>."
27375 msgstr ""
27376
27377 #. type: =head2
27378 #: ../fish/guestfish-actions.pod:4604
27379 msgid "umount"
27380 msgstr ""
27381
27382 #. type: =head2
27383 #: ../fish/guestfish-actions.pod:4606
27384 msgid "unmount"
27385 msgstr ""
27386
27387 #. type: verbatim
27388 #: ../fish/guestfish-actions.pod:4608
27389 #, no-wrap
27390 msgid ""
27391 " umount pathordevice\n"
27392 "\n"
27393 msgstr ""
27394
27395 #. type: =head2
27396 #: ../fish/guestfish-actions.pod:4614
27397 msgid "umount-all"
27398 msgstr ""
27399
27400 #. type: =head2
27401 #: ../fish/guestfish-actions.pod:4616
27402 msgid "unmount-all"
27403 msgstr ""
27404
27405 #. type: verbatim
27406 #: ../fish/guestfish-actions.pod:4618
27407 #, no-wrap
27408 msgid ""
27409 " umount-all\n"
27410 "\n"
27411 msgstr ""
27412
27413 #. type: =head2
27414 #: ../fish/guestfish-actions.pod:4624
27415 msgid "upload"
27416 msgstr ""
27417
27418 #. type: verbatim
27419 #: ../fish/guestfish-actions.pod:4626
27420 #, no-wrap
27421 msgid ""
27422 " upload (filename|-) remotefilename\n"
27423 "\n"
27424 msgstr ""
27425
27426 #. type: textblock
27427 #: ../fish/guestfish-actions.pod:4633
27428 msgid "See also L</download>."
27429 msgstr ""
27430
27431 #. type: =head2
27432 #: ../fish/guestfish-actions.pod:4637
27433 msgid "upload-offset"
27434 msgstr ""
27435
27436 #. type: verbatim
27437 #: ../fish/guestfish-actions.pod:4639
27438 #, no-wrap
27439 msgid ""
27440 " upload-offset (filename|-) remotefilename offset\n"
27441 "\n"
27442 msgstr ""
27443
27444 #. type: textblock
27445 #: ../fish/guestfish-actions.pod:4651
27446 msgid ""
27447 "Note that there is no limit on the amount of data that can be uploaded with "
27448 "this call, unlike with L</pwrite>, and this call always writes the full "
27449 "amount unless an error occurs."
27450 msgstr ""
27451
27452 #. type: textblock
27453 #: ../fish/guestfish-actions.pod:4656
27454 msgid "See also L</upload>, L</pwrite>."
27455 msgstr ""
27456
27457 #. type: =head2
27458 #: ../fish/guestfish-actions.pod:4660
27459 msgid "utimens"
27460 msgstr ""
27461
27462 #. type: verbatim
27463 #: ../fish/guestfish-actions.pod:4662
27464 #, no-wrap
27465 msgid ""
27466 " utimens path atsecs atnsecs mtsecs mtnsecs\n"
27467 "\n"
27468 msgstr ""
27469
27470 #. type: =head2
27471 #: ../fish/guestfish-actions.pod:4681
27472 msgid "version"
27473 msgstr ""
27474
27475 #. type: verbatim
27476 #: ../fish/guestfish-actions.pod:4683
27477 #, no-wrap
27478 msgid ""
27479 " version\n"
27480 "\n"
27481 msgstr ""
27482
27483 #. type: textblock
27484 #: ../fish/guestfish-actions.pod:4710
27485 msgid ""
27486 "I<Note:> Don't use this call to test for availability of features.  In "
27487 "enterprise distributions we backport features from later versions into "
27488 "earlier versions, making this an unreliable way to test for features.  Use "
27489 "L</available> instead."
27490 msgstr ""
27491
27492 #. type: =head2
27493 #: ../fish/guestfish-actions.pod:4716
27494 msgid "vfs-label"
27495 msgstr ""
27496
27497 #. type: verbatim
27498 #: ../fish/guestfish-actions.pod:4718
27499 #, no-wrap
27500 msgid ""
27501 " vfs-label device\n"
27502 "\n"
27503 msgstr ""
27504
27505 #. type: textblock
27506 #: ../fish/guestfish-actions.pod:4725
27507 msgid "To find a filesystem from the label, use L</findfs-label>."
27508 msgstr ""
27509
27510 #. type: =head2
27511 #: ../fish/guestfish-actions.pod:4727
27512 msgid "vfs-type"
27513 msgstr ""
27514
27515 #. type: verbatim
27516 #: ../fish/guestfish-actions.pod:4729
27517 #, no-wrap
27518 msgid ""
27519 " vfs-type device\n"
27520 "\n"
27521 msgstr ""
27522
27523 #. type: =head2
27524 #: ../fish/guestfish-actions.pod:4739
27525 msgid "vfs-uuid"
27526 msgstr ""
27527
27528 #. type: verbatim
27529 #: ../fish/guestfish-actions.pod:4741
27530 #, no-wrap
27531 msgid ""
27532 " vfs-uuid device\n"
27533 "\n"
27534 msgstr ""
27535
27536 #. type: textblock
27537 #: ../fish/guestfish-actions.pod:4748
27538 msgid "To find a filesystem from the UUID, use L</findfs-uuid>."
27539 msgstr ""
27540
27541 #. type: =head2
27542 #: ../fish/guestfish-actions.pod:4750
27543 msgid "vg-activate"
27544 msgstr ""
27545
27546 #. type: verbatim
27547 #: ../fish/guestfish-actions.pod:4752
27548 #, no-wrap
27549 msgid ""
27550 " vg-activate true|false 'volgroups ...'\n"
27551 "\n"
27552 msgstr ""
27553
27554 #. type: =head2
27555 #: ../fish/guestfish-actions.pod:4765
27556 msgid "vg-activate-all"
27557 msgstr ""
27558
27559 #. type: verbatim
27560 #: ../fish/guestfish-actions.pod:4767
27561 #, no-wrap
27562 msgid ""
27563 " vg-activate-all true|false\n"
27564 "\n"
27565 msgstr ""
27566
27567 #. type: =head2
27568 #: ../fish/guestfish-actions.pod:4777
27569 msgid "vgcreate"
27570 msgstr ""
27571
27572 #. type: verbatim
27573 #: ../fish/guestfish-actions.pod:4779
27574 #, no-wrap
27575 msgid ""
27576 " vgcreate volgroup 'physvols ...'\n"
27577 "\n"
27578 msgstr ""
27579
27580 #. type: =head2
27581 #: ../fish/guestfish-actions.pod:4784
27582 msgid "vglvuuids"
27583 msgstr ""
27584
27585 #. type: verbatim
27586 #: ../fish/guestfish-actions.pod:4786
27587 #, no-wrap
27588 msgid ""
27589 " vglvuuids vgname\n"
27590 "\n"
27591 msgstr ""
27592
27593 #. type: textblock
27594 #: ../fish/guestfish-actions.pod:4791
27595 msgid ""
27596 "You can use this along with L</lvs> and L</lvuuid> calls to associate "
27597 "logical volumes and volume groups."
27598 msgstr ""
27599
27600 #. type: textblock
27601 #: ../fish/guestfish-actions.pod:4794
27602 msgid "See also L</vgpvuuids>."
27603 msgstr ""
27604
27605 #. type: =head2
27606 #: ../fish/guestfish-actions.pod:4796
27607 msgid "vgpvuuids"
27608 msgstr ""
27609
27610 #. type: verbatim
27611 #: ../fish/guestfish-actions.pod:4798
27612 #, no-wrap
27613 msgid ""
27614 " vgpvuuids vgname\n"
27615 "\n"
27616 msgstr ""
27617
27618 #. type: textblock
27619 #: ../fish/guestfish-actions.pod:4803
27620 msgid ""
27621 "You can use this along with L</pvs> and L</pvuuid> calls to associate "
27622 "physical volumes and volume groups."
27623 msgstr ""
27624
27625 #. type: textblock
27626 #: ../fish/guestfish-actions.pod:4806
27627 msgid "See also L</vglvuuids>."
27628 msgstr ""
27629
27630 #. type: =head2
27631 #: ../fish/guestfish-actions.pod:4808
27632 msgid "vgremove"
27633 msgstr ""
27634
27635 #. type: verbatim
27636 #: ../fish/guestfish-actions.pod:4810
27637 #, no-wrap
27638 msgid ""
27639 " vgremove vgname\n"
27640 "\n"
27641 msgstr ""
27642
27643 #. type: =head2
27644 #: ../fish/guestfish-actions.pod:4817
27645 msgid "vgrename"
27646 msgstr ""
27647
27648 #. type: verbatim
27649 #: ../fish/guestfish-actions.pod:4819
27650 #, no-wrap
27651 msgid ""
27652 " vgrename volgroup newvolgroup\n"
27653 "\n"
27654 msgstr ""
27655
27656 #. type: =head2
27657 #: ../fish/guestfish-actions.pod:4823
27658 msgid "vgs"
27659 msgstr ""
27660
27661 #. type: verbatim
27662 #: ../fish/guestfish-actions.pod:4825
27663 #, no-wrap
27664 msgid ""
27665 " vgs\n"
27666 "\n"
27667 msgstr ""
27668
27669 #. type: textblock
27670 #: ../fish/guestfish-actions.pod:4833
27671 msgid "See also L</vgs-full>."
27672 msgstr ""
27673
27674 #. type: =head2
27675 #: ../fish/guestfish-actions.pod:4835
27676 msgid "vgs-full"
27677 msgstr ""
27678
27679 #. type: verbatim
27680 #: ../fish/guestfish-actions.pod:4837
27681 #, no-wrap
27682 msgid ""
27683 " vgs-full\n"
27684 "\n"
27685 msgstr ""
27686
27687 #. type: =head2
27688 #: ../fish/guestfish-actions.pod:4842
27689 msgid "vgscan"
27690 msgstr ""
27691
27692 #. type: verbatim
27693 #: ../fish/guestfish-actions.pod:4844
27694 #, no-wrap
27695 msgid ""
27696 " vgscan\n"
27697 "\n"
27698 msgstr ""
27699
27700 #. type: =head2
27701 #: ../fish/guestfish-actions.pod:4849
27702 msgid "vguuid"
27703 msgstr ""
27704
27705 #. type: verbatim
27706 #: ../fish/guestfish-actions.pod:4851
27707 #, no-wrap
27708 msgid ""
27709 " vguuid vgname\n"
27710 "\n"
27711 msgstr ""
27712
27713 #. type: =head2
27714 #: ../fish/guestfish-actions.pod:4855
27715 msgid "wc-c"
27716 msgstr ""
27717
27718 #. type: verbatim
27719 #: ../fish/guestfish-actions.pod:4857
27720 #, no-wrap
27721 msgid ""
27722 " wc-c path\n"
27723 "\n"
27724 msgstr ""
27725
27726 #. type: =head2
27727 #: ../fish/guestfish-actions.pod:4862
27728 msgid "wc-l"
27729 msgstr ""
27730
27731 #. type: verbatim
27732 #: ../fish/guestfish-actions.pod:4864
27733 #, no-wrap
27734 msgid ""
27735 " wc-l path\n"
27736 "\n"
27737 msgstr ""
27738
27739 #. type: =head2
27740 #: ../fish/guestfish-actions.pod:4869
27741 msgid "wc-w"
27742 msgstr ""
27743
27744 #. type: verbatim
27745 #: ../fish/guestfish-actions.pod:4871
27746 #, no-wrap
27747 msgid ""
27748 " wc-w path\n"
27749 "\n"
27750 msgstr ""
27751
27752 #. type: =head2
27753 #: ../fish/guestfish-actions.pod:4876
27754 msgid "write"
27755 msgstr ""
27756
27757 #. type: verbatim
27758 #: ../fish/guestfish-actions.pod:4878
27759 #, no-wrap
27760 msgid ""
27761 " write path content\n"
27762 "\n"
27763 msgstr ""
27764
27765 #. type: =head2
27766 #: ../fish/guestfish-actions.pod:4886
27767 msgid "write-file"
27768 msgstr ""
27769
27770 #. type: verbatim
27771 #: ../fish/guestfish-actions.pod:4888
27772 #, no-wrap
27773 msgid ""
27774 " write-file path content size\n"
27775 "\n"
27776 msgstr ""
27777
27778 #. type: =head2
27779 #: ../fish/guestfish-actions.pod:4911
27780 msgid "zegrep"
27781 msgstr ""
27782
27783 #. type: verbatim
27784 #: ../fish/guestfish-actions.pod:4913
27785 #, no-wrap
27786 msgid ""
27787 " zegrep regex path\n"
27788 "\n"
27789 msgstr ""
27790
27791 #. type: =head2
27792 #: ../fish/guestfish-actions.pod:4921
27793 msgid "zegrepi"
27794 msgstr ""
27795
27796 #. type: verbatim
27797 #: ../fish/guestfish-actions.pod:4923
27798 #, no-wrap
27799 msgid ""
27800 " zegrepi regex path\n"
27801 "\n"
27802 msgstr ""
27803
27804 #. type: =head2
27805 #: ../fish/guestfish-actions.pod:4931
27806 msgid "zero"
27807 msgstr ""
27808
27809 #. type: verbatim
27810 #: ../fish/guestfish-actions.pod:4933
27811 #, no-wrap
27812 msgid ""
27813 " zero device\n"
27814 "\n"
27815 msgstr ""
27816
27817 #. type: textblock
27818 #: ../fish/guestfish-actions.pod:4941
27819 msgid "See also: L</zero-device>, L</scrub-device>."
27820 msgstr ""
27821
27822 #. type: =head2
27823 #: ../fish/guestfish-actions.pod:4943
27824 msgid "zero-device"
27825 msgstr ""
27826
27827 #. type: verbatim
27828 #: ../fish/guestfish-actions.pod:4945
27829 #, no-wrap
27830 msgid ""
27831 " zero-device device\n"
27832 "\n"
27833 msgstr ""
27834
27835 #. type: textblock
27836 #: ../fish/guestfish-actions.pod:4947
27837 msgid ""
27838 "This command writes zeroes over the entire C<device>.  Compare with L</zero> "
27839 "which just zeroes the first few blocks of a device."
27840 msgstr ""
27841
27842 #. type: =head2
27843 #: ../fish/guestfish-actions.pod:4954
27844 msgid "zerofree"
27845 msgstr ""
27846
27847 #. type: verbatim
27848 #: ../fish/guestfish-actions.pod:4956
27849 #, no-wrap
27850 msgid ""
27851 " zerofree device\n"
27852 "\n"
27853 msgstr ""
27854
27855 #. type: =head2
27856 #: ../fish/guestfish-actions.pod:4969
27857 msgid "zfgrep"
27858 msgstr ""
27859
27860 #. type: verbatim
27861 #: ../fish/guestfish-actions.pod:4971
27862 #, no-wrap
27863 msgid ""
27864 " zfgrep pattern path\n"
27865 "\n"
27866 msgstr ""
27867
27868 #. type: =head2
27869 #: ../fish/guestfish-actions.pod:4979
27870 msgid "zfgrepi"
27871 msgstr ""
27872
27873 #. type: verbatim
27874 #: ../fish/guestfish-actions.pod:4981
27875 #, no-wrap
27876 msgid ""
27877 " zfgrepi pattern path\n"
27878 "\n"
27879 msgstr ""
27880
27881 #. type: =head2
27882 #: ../fish/guestfish-actions.pod:4989
27883 msgid "zfile"
27884 msgstr ""
27885
27886 #. type: verbatim
27887 #: ../fish/guestfish-actions.pod:4991
27888 #, no-wrap
27889 msgid ""
27890 " zfile meth path\n"
27891 "\n"
27892 msgstr ""
27893
27894 #. type: textblock
27895 #: ../fish/guestfish-actions.pod:4998
27896 msgid ""
27897 "Since 1.0.63, use L</file> instead which can now process compressed files."
27898 msgstr ""
27899
27900 #. type: =head2
27901 #: ../fish/guestfish-actions.pod:5008
27902 msgid "zgrep"
27903 msgstr ""
27904
27905 #. type: verbatim
27906 #: ../fish/guestfish-actions.pod:5010
27907 #, no-wrap
27908 msgid ""
27909 " zgrep regex path\n"
27910 "\n"
27911 msgstr ""
27912
27913 #. type: =head2
27914 #: ../fish/guestfish-actions.pod:5018
27915 msgid "zgrepi"
27916 msgstr ""
27917
27918 #. type: verbatim
27919 #: ../fish/guestfish-actions.pod:5020
27920 #, no-wrap
27921 msgid ""
27922 " zgrepi regex path\n"
27923 "\n"
27924 msgstr ""
27925
27926 #. type: =head2
27927 #: ../fish/guestfish-commands.pod:1
27928 msgid "alloc"
27929 msgstr ""
27930
27931 #. type: =head2
27932 #: ../fish/guestfish-commands.pod:3
27933 msgid "allocate"
27934 msgstr ""
27935
27936 #. type: verbatim
27937 #: ../fish/guestfish-commands.pod:5
27938 #, no-wrap
27939 msgid ""
27940 " alloc filename size\n"
27941 "\n"
27942 msgstr ""
27943
27944 #. type: textblock
27945 #: ../fish/guestfish-commands.pod:7
27946 msgid ""
27947 "This creates an empty (zeroed) file of the given size, and then adds so it "
27948 "can be further examined."
27949 msgstr ""
27950
27951 #. type: textblock
27952 #: ../fish/guestfish-commands.pod:10 ../fish/guestfish-commands.pod:168
27953 msgid "For more advanced image creation, see L<qemu-img(1)> utility."
27954 msgstr ""
27955
27956 #. type: textblock
27957 #: ../fish/guestfish-commands.pod:12 ../fish/guestfish-commands.pod:170
27958 msgid "Size can be specified using standard suffixes, eg. C<1M>."
27959 msgstr ""
27960
27961 #. type: textblock
27962 #: ../fish/guestfish-commands.pod:14
27963 msgid ""
27964 "To create a sparse file, use L</sparse> instead.  To create a prepared disk "
27965 "image, see L</PREPARED DISK IMAGES>."
27966 msgstr ""
27967
27968 #. type: =head2
27969 #: ../fish/guestfish-commands.pod:17
27970 msgid "copy-in"
27971 msgstr ""
27972
27973 #. type: verbatim
27974 #: ../fish/guestfish-commands.pod:19
27975 #, no-wrap
27976 msgid ""
27977 " copy-in local [local ...] /remotedir\n"
27978 "\n"
27979 msgstr ""
27980
27981 #. type: textblock
27982 #: ../fish/guestfish-commands.pod:21
27983 msgid ""
27984 "C<copy-in> copies local files or directories recursively into the disk "
27985 "image, placing them in the directory called C</remotedir> (which must "
27986 "exist).  This guestfish meta-command turns into a sequence of L</tar-in> and "
27987 "other commands as necessary."
27988 msgstr ""
27989
27990 #. type: textblock
27991 #: ../fish/guestfish-commands.pod:26
27992 msgid ""
27993 "Multiple local files and directories can be specified, but the last "
27994 "parameter must always be a remote directory.  Wildcards cannot be used."
27995 msgstr ""
27996
27997 #. type: =head2
27998 #: ../fish/guestfish-commands.pod:30
27999 msgid "copy-out"
28000 msgstr ""
28001
28002 #. type: verbatim
28003 #: ../fish/guestfish-commands.pod:32
28004 #, no-wrap
28005 msgid ""
28006 " copy-out remote [remote ...] localdir\n"
28007 "\n"
28008 msgstr ""
28009
28010 #. type: textblock
28011 #: ../fish/guestfish-commands.pod:34
28012 msgid ""
28013 "C<copy-out> copies remote files or directories recursively out of the disk "
28014 "image, placing them on the host disk in a local directory called C<localdir> "
28015 "(which must exist).  This guestfish meta-command turns into a sequence of L</"
28016 "download>, L</tar-out> and other commands as necessary."
28017 msgstr ""
28018
28019 #. type: textblock
28020 #: ../fish/guestfish-commands.pod:40
28021 msgid ""
28022 "Multiple remote files and directories can be specified, but the last "
28023 "parameter must always be a local directory.  To download to the current "
28024 "directory, use C<.> as in:"
28025 msgstr ""
28026
28027 #. type: verbatim
28028 #: ../fish/guestfish-commands.pod:44
28029 #, no-wrap
28030 msgid ""
28031 " copy-out /home .\n"
28032 "\n"
28033 msgstr ""
28034
28035 #. type: textblock
28036 #: ../fish/guestfish-commands.pod:46
28037 msgid ""
28038 "Wildcards cannot be used in the ordinary command, but you can use them with "
28039 "the help of L</glob> like this:"
28040 msgstr ""
28041
28042 #. type: verbatim
28043 #: ../fish/guestfish-commands.pod:49
28044 #, no-wrap
28045 msgid ""
28046 " glob copy-out /home/* .\n"
28047 "\n"
28048 msgstr ""
28049
28050 #. type: =head2
28051 #: ../fish/guestfish-commands.pod:51
28052 msgid "echo"
28053 msgstr ""
28054
28055 #. type: verbatim
28056 #: ../fish/guestfish-commands.pod:53
28057 #, no-wrap
28058 msgid ""
28059 " echo [params ...]\n"
28060 "\n"
28061 msgstr ""
28062
28063 #. type: textblock
28064 #: ../fish/guestfish-commands.pod:55
28065 msgid "This echos the parameters to the terminal."
28066 msgstr ""
28067
28068 #. type: =head2
28069 #: ../fish/guestfish-commands.pod:57
28070 msgid "edit"
28071 msgstr ""
28072
28073 #. type: =head2
28074 #: ../fish/guestfish-commands.pod:59
28075 msgid "vi"
28076 msgstr ""
28077
28078 #. type: =head2
28079 #: ../fish/guestfish-commands.pod:61
28080 msgid "emacs"
28081 msgstr ""
28082
28083 #. type: verbatim
28084 #: ../fish/guestfish-commands.pod:63
28085 #, no-wrap
28086 msgid ""
28087 " edit filename\n"
28088 "\n"
28089 msgstr ""
28090
28091 #. type: textblock
28092 #: ../fish/guestfish-commands.pod:65
28093 msgid ""
28094 "This is used to edit a file.  It downloads the file, edits it locally using "
28095 "your editor, then uploads the result."
28096 msgstr ""
28097
28098 #. type: textblock
28099 #: ../fish/guestfish-commands.pod:68
28100 msgid ""
28101 "The editor is C<$EDITOR>.  However if you use the alternate commands C<vi> "
28102 "or C<emacs> you will get those corresponding editors."
28103 msgstr ""
28104
28105 #. type: =head2
28106 #: ../fish/guestfish-commands.pod:72
28107 msgid "glob"
28108 msgstr ""
28109
28110 #. type: verbatim
28111 #: ../fish/guestfish-commands.pod:74
28112 #, no-wrap
28113 msgid ""
28114 " glob command args...\n"
28115 "\n"
28116 msgstr ""
28117
28118 #. type: textblock
28119 #: ../fish/guestfish-commands.pod:76
28120 msgid ""
28121 "Expand wildcards in any paths in the args list, and run C<command> "
28122 "repeatedly on each matching path."
28123 msgstr ""
28124
28125 #. type: textblock
28126 #: ../fish/guestfish-commands.pod:79
28127 msgid "See L</WILDCARDS AND GLOBBING>."
28128 msgstr ""
28129
28130 #. type: =head2
28131 #: ../fish/guestfish-commands.pod:81
28132 msgid "hexedit"
28133 msgstr ""
28134
28135 #. type: verbatim
28136 #: ../fish/guestfish-commands.pod:83
28137 #, no-wrap
28138 msgid ""
28139 " hexedit <filename|device>\n"
28140 " hexedit <filename|device> <max>\n"
28141 " hexedit <filename|device> <start> <max>\n"
28142 "\n"
28143 msgstr ""
28144
28145 #. type: textblock
28146 #: ../fish/guestfish-commands.pod:87
28147 msgid ""
28148 "Use hexedit (a hex editor) to edit all or part of a binary file or block "
28149 "device."
28150 msgstr ""
28151
28152 #. type: textblock
28153 #: ../fish/guestfish-commands.pod:90
28154 msgid ""
28155 "This command works by downloading potentially the whole file or device, "
28156 "editing it locally, then uploading it.  If the file or device is large, you "
28157 "have to specify which part you wish to edit by using C<max> and/or C<start> "
28158 "C<max> parameters.  C<start> and C<max> are specified in bytes, with the "
28159 "usual modifiers allowed such as C<1M> (1 megabyte)."
28160 msgstr ""
28161
28162 #. type: textblock
28163 #: ../fish/guestfish-commands.pod:97
28164 msgid "For example to edit the first few sectors of a disk you might do:"
28165 msgstr ""
28166
28167 #. type: verbatim
28168 #: ../fish/guestfish-commands.pod:100
28169 #, no-wrap
28170 msgid ""
28171 " hexedit /dev/sda 1M\n"
28172 "\n"
28173 msgstr ""
28174
28175 #. type: textblock
28176 #: ../fish/guestfish-commands.pod:102
28177 msgid ""
28178 "which would allow you to edit anywhere within the first megabyte of the disk."
28179 msgstr ""
28180
28181 #. type: textblock
28182 #: ../fish/guestfish-commands.pod:105
28183 msgid "To edit the superblock of an ext2 filesystem on C</dev/sda1>, do:"
28184 msgstr ""
28185
28186 #. type: verbatim
28187 #: ../fish/guestfish-commands.pod:107
28188 #, no-wrap
28189 msgid ""
28190 " hexedit /dev/sda1 0x400 0x400\n"
28191 "\n"
28192 msgstr ""
28193
28194 #. type: textblock
28195 #: ../fish/guestfish-commands.pod:109
28196 msgid "(assuming the superblock is in the standard location)."
28197 msgstr ""
28198
28199 #. type: textblock
28200 #: ../fish/guestfish-commands.pod:111
28201 msgid ""
28202 "This command requires the external L<hexedit(1)> program.  You can specify "
28203 "another program to use by setting the C<HEXEDITOR> environment variable."
28204 msgstr ""
28205
28206 #. type: textblock
28207 #: ../fish/guestfish-commands.pod:115
28208 msgid "See also L</hexdump>."
28209 msgstr ""
28210
28211 #. type: =head2
28212 #: ../fish/guestfish-commands.pod:117
28213 msgid "lcd"
28214 msgstr ""
28215
28216 #. type: verbatim
28217 #: ../fish/guestfish-commands.pod:119
28218 #, no-wrap
28219 msgid ""
28220 " lcd directory\n"
28221 "\n"
28222 msgstr ""
28223
28224 #. type: textblock
28225 #: ../fish/guestfish-commands.pod:121
28226 msgid ""
28227 "Change the local directory, ie. the current directory of guestfish itself."
28228 msgstr ""
28229
28230 #. type: textblock
28231 #: ../fish/guestfish-commands.pod:124
28232 msgid "Note that C<!cd> won't do what you might expect."
28233 msgstr ""
28234
28235 #. type: =head2
28236 #: ../fish/guestfish-commands.pod:126
28237 msgid "man"
28238 msgstr ""
28239
28240 #. type: =head2
28241 #: ../fish/guestfish-commands.pod:128
28242 msgid "manual"
28243 msgstr ""
28244
28245 #. type: verbatim
28246 #: ../fish/guestfish-commands.pod:130
28247 #, no-wrap
28248 msgid ""
28249 "  man\n"
28250 "\n"
28251 msgstr ""
28252
28253 #. type: textblock
28254 #: ../fish/guestfish-commands.pod:132
28255 msgid "Opens the manual page for guestfish."
28256 msgstr ""
28257
28258 #. type: =head2
28259 #: ../fish/guestfish-commands.pod:134
28260 msgid "more"
28261 msgstr ""
28262
28263 #. type: =head2
28264 #: ../fish/guestfish-commands.pod:136
28265 msgid "less"
28266 msgstr ""
28267
28268 #. type: verbatim
28269 #: ../fish/guestfish-commands.pod:138
28270 #, no-wrap
28271 msgid ""
28272 " more filename\n"
28273 "\n"
28274 msgstr ""
28275
28276 #. type: verbatim
28277 #: ../fish/guestfish-commands.pod:140
28278 #, no-wrap
28279 msgid ""
28280 " less filename\n"
28281 "\n"
28282 msgstr ""
28283
28284 #. type: textblock
28285 #: ../fish/guestfish-commands.pod:142
28286 msgid "This is used to view a file."
28287 msgstr ""
28288
28289 #. type: textblock
28290 #: ../fish/guestfish-commands.pod:144
28291 msgid ""
28292 "The default viewer is C<$PAGER>.  However if you use the alternate command "
28293 "C<less> you will get the C<less> command specifically."
28294 msgstr ""
28295
28296 #. type: =head2
28297 #: ../fish/guestfish-commands.pod:147
28298 msgid "reopen"
28299 msgstr ""
28300
28301 #. type: verbatim
28302 #: ../fish/guestfish-commands.pod:149
28303 #, no-wrap
28304 msgid ""
28305 "  reopen\n"
28306 "\n"
28307 msgstr ""
28308
28309 #. type: textblock
28310 #: ../fish/guestfish-commands.pod:151
28311 msgid ""
28312 "Close and reopen the libguestfs handle.  It is not necessary to use this "
28313 "normally, because the handle is closed properly when guestfish exits.  "
28314 "However this is occasionally useful for testing."
28315 msgstr ""
28316
28317 #. type: =head2
28318 #: ../fish/guestfish-commands.pod:155
28319 msgid "sparse"
28320 msgstr ""
28321
28322 #. type: verbatim
28323 #: ../fish/guestfish-commands.pod:157
28324 #, no-wrap
28325 msgid ""
28326 " sparse filename size\n"
28327 "\n"
28328 msgstr ""
28329
28330 #. type: textblock
28331 #: ../fish/guestfish-commands.pod:159
28332 msgid ""
28333 "This creates an empty sparse file of the given size, and then adds so it can "
28334 "be further examined."
28335 msgstr ""
28336
28337 #. type: textblock
28338 #: ../fish/guestfish-commands.pod:162
28339 msgid ""
28340 "In all respects it works the same as the L</alloc> command, except that the "
28341 "image file is allocated sparsely, which means that disk blocks are not "
28342 "assigned to the file until they are needed.  Sparse disk files only use "
28343 "space when written to, but they are slower and there is a danger you could "
28344 "run out of real disk space during a write operation."
28345 msgstr ""
28346
28347 #. type: =head2
28348 #: ../fish/guestfish-commands.pod:172
28349 msgid "supported"
28350 msgstr ""
28351
28352 #. type: verbatim
28353 #: ../fish/guestfish-commands.pod:174
28354 #, no-wrap
28355 msgid ""
28356 " supported\n"
28357 "\n"
28358 msgstr ""
28359
28360 #. type: textblock
28361 #: ../fish/guestfish-commands.pod:176
28362 msgid ""
28363 "This command returns a list of the optional groups known to the daemon, and "
28364 "indicates which ones are supported by this build of the libguestfs appliance."
28365 msgstr ""
28366
28367 #. type: textblock
28368 #: ../fish/guestfish-commands.pod:180
28369 msgid "See also L<guestfs(3)/AVAILABILITY>."
28370 msgstr ""
28371
28372 #. type: =head2
28373 #: ../fish/guestfish-commands.pod:182
28374 msgid "time"
28375 msgstr ""
28376
28377 #. type: verbatim
28378 #: ../fish/guestfish-commands.pod:184
28379 #, no-wrap
28380 msgid ""
28381 " time command args...\n"
28382 "\n"
28383 msgstr ""
28384
28385 #. type: textblock
28386 #: ../fish/guestfish-commands.pod:186
28387 msgid ""
28388 "Run the command as usual, but print the elapsed time afterwards.  This can "
28389 "be useful for benchmarking operations."
28390 msgstr ""
28391
28392 #. type: textblock
28393 #: ../test-tool/libguestfs-test-tool.pod:5
28394 msgid "libguestfs-test-tool - End user tests for libguestfs"
28395 msgstr ""
28396
28397 #. type: verbatim
28398 #: ../test-tool/libguestfs-test-tool.pod:9
28399 #, no-wrap
28400 msgid ""
28401 " libguestfs-test-tool [--options]\n"
28402 "\n"
28403 msgstr ""
28404
28405 #. type: textblock
28406 #: ../test-tool/libguestfs-test-tool.pod:13
28407 msgid ""
28408 "libguestfs-test-tool is a test program shipped with libguestfs to end users "
28409 "and developers, to allow them to check basic libguestfs functionality is "
28410 "working.  This is needed because libguestfs occasionally breaks for reasons "
28411 "beyond our control: usually because of changes in the underlying qemu or "
28412 "kernel packages, or the host environment."
28413 msgstr ""
28414
28415 #. type: textblock
28416 #: ../test-tool/libguestfs-test-tool.pod:20
28417 msgid "If you suspect a problem in libguestfs, then just run:"
28418 msgstr ""
28419
28420 #. type: verbatim
28421 #: ../test-tool/libguestfs-test-tool.pod:22
28422 #, no-wrap
28423 msgid ""
28424 " libguestfs-test-tool\n"
28425 "\n"
28426 msgstr ""
28427
28428 #. type: textblock
28429 #: ../test-tool/libguestfs-test-tool.pod:24
28430 msgid "It will print lots of diagnostic messages."
28431 msgstr ""
28432
28433 #. type: textblock
28434 #: ../test-tool/libguestfs-test-tool.pod:26
28435 msgid "If it runs to completion successfully, you will see this near the end:"
28436 msgstr ""
28437
28438 #. type: verbatim
28439 #: ../test-tool/libguestfs-test-tool.pod:28
28440 #, no-wrap
28441 msgid ""
28442 " ===== TEST FINISHED OK =====\n"
28443 "\n"
28444 msgstr ""
28445
28446 #. type: textblock
28447 #: ../test-tool/libguestfs-test-tool.pod:30
28448 msgid "and the test tool will exit with code 0."
28449 msgstr ""
28450
28451 #. type: textblock
28452 #: ../test-tool/libguestfs-test-tool.pod:32
28453 msgid ""
28454 "If it fails (and/or exits with non-zero error code), please paste the "
28455 "B<complete, unedited> output of the test tool into a bug report.  More "
28456 "information about reporting bugs can be found on the L<http://libguestfs.org/"
28457 "> website."
28458 msgstr ""
28459
28460 #. type: =item
28461 #: ../test-tool/libguestfs-test-tool.pod:41
28462 msgid "I<--help>"
28463 msgstr ""
28464
28465 #. type: textblock
28466 #: ../test-tool/libguestfs-test-tool.pod:43
28467 msgid "Display short usage information and exit."
28468 msgstr ""
28469
28470 #. type: =item
28471 #: ../test-tool/libguestfs-test-tool.pod:45
28472 msgid "I<--qemu qemu_binary>"
28473 msgstr ""
28474
28475 #. type: textblock
28476 #: ../test-tool/libguestfs-test-tool.pod:47
28477 msgid ""
28478 "If you have downloaded another qemu binary, point this option at the full "
28479 "path of the binary to try it."
28480 msgstr ""
28481
28482 #. type: =item
28483 #: ../test-tool/libguestfs-test-tool.pod:50
28484 msgid "I<--qemudir qemu_source_dir>"
28485 msgstr ""
28486
28487 #. type: textblock
28488 #: ../test-tool/libguestfs-test-tool.pod:52
28489 msgid ""
28490 "If you have compiled qemu from source, point this option at the source "
28491 "directory to try it."
28492 msgstr ""
28493
28494 #. type: =item
28495 #: ../test-tool/libguestfs-test-tool.pod:55
28496 msgid "I<--timeout N>"
28497 msgstr ""
28498
28499 #. type: textblock
28500 #: ../test-tool/libguestfs-test-tool.pod:57
28501 msgid ""
28502 "Set the launch timeout to C<N> seconds.  The default is 120 seconds which "
28503 "does not usually need to be adjusted unless your machine is very slow."
28504 msgstr ""
28505
28506 #. type: =head1
28507 #: ../test-tool/libguestfs-test-tool.pod:63
28508 msgid "TRYING OUT A DIFFERENT VERSION OF QEMU"
28509 msgstr ""
28510
28511 #. type: textblock
28512 #: ../test-tool/libguestfs-test-tool.pod:65
28513 msgid ""
28514 "If you have compiled another version of qemu from source and would like to "
28515 "try that, then you can use the I<--qemudir> option to point to the qemu "
28516 "source directory."
28517 msgstr ""
28518
28519 #. type: textblock
28520 #: ../test-tool/libguestfs-test-tool.pod:69
28521 msgid ""
28522 "If you have downloaded a qemu binary from somewhere, use the I<--qemu> "
28523 "option to point to the binary."
28524 msgstr ""
28525
28526 #. type: textblock
28527 #: ../test-tool/libguestfs-test-tool.pod:72
28528 msgid ""
28529 "When using an alternate qemu with libguestfs, usually you would need to "
28530 "write a qemu wrapper script (see section I<QEMU WRAPPERS> in L<guestfs(3)"
28531 ">).  libguestfs-test-tool writes a temporary qemu wrapper script when you "
28532 "use either of the I<--qemudir> or I<--qemu> options."
28533 msgstr ""
28534
28535 #. type: textblock
28536 #: ../test-tool/libguestfs-test-tool.pod:79
28537 msgid ""
28538 "libguestfs-test-tool returns I<0> if the tests completed without error, or "
28539 "I<1> if there was an error."
28540 msgstr ""
28541
28542 #. type: textblock
28543 #: ../test-tool/libguestfs-test-tool.pod:84
28544 msgid ""
28545 "For the full list of environment variables which may affect libguestfs, "
28546 "please see the L<guestfs(3)> manual page."
28547 msgstr ""
28548
28549 #. type: textblock
28550 #: ../test-tool/libguestfs-test-tool.pod:89
28551 msgid "L<guestfs(3)>, L<http://libguestfs.org/>, L<http://qemu.org/>."
28552 msgstr ""
28553
28554 #. type: textblock
28555 #: ../fuse/guestmount.pod:5
28556 msgid ""
28557 "guestmount - Mount a guest filesystem on the host using FUSE and libguestfs"
28558 msgstr ""
28559
28560 #. type: verbatim
28561 #: ../fuse/guestmount.pod:9
28562 #, no-wrap
28563 msgid ""
28564 " guestmount [--options] -a disk.img -m device [--ro] mountpoint\n"
28565 "\n"
28566 msgstr ""
28567
28568 #. type: verbatim
28569 #: ../fuse/guestmount.pod:11
28570 #, no-wrap
28571 msgid ""
28572 " guestmount [--options] -a disk.img -i [--ro] mountpoint\n"
28573 "\n"
28574 msgstr ""
28575
28576 #. type: verbatim
28577 #: ../fuse/guestmount.pod:13
28578 #, no-wrap
28579 msgid ""
28580 " guestmount [--options] -d Guest -i [--ro] mountpoint\n"
28581 "\n"
28582 msgstr ""
28583
28584 #. type: textblock
28585 #: ../fuse/guestmount.pod:17
28586 msgid ""
28587 "You must I<not> use C<guestmount> in read-write mode on live virtual "
28588 "machines.  If you do this, you risk disk corruption in the VM."
28589 msgstr ""
28590
28591 #. type: textblock
28592 #: ../fuse/guestmount.pod:22
28593 msgid ""
28594 "The guestmount program can be used to mount virtual machine filesystems and "
28595 "other disk images on the host.  It uses libguestfs for access to the guest "
28596 "filesystem, and FUSE (the \"filesystem in userspace\") to make it appear as "
28597 "a mountable device."
28598 msgstr ""
28599
28600 #. type: textblock
28601 #: ../fuse/guestmount.pod:27
28602 msgid ""
28603 "Along with other options, you have to give at least one device (I<-a> "
28604 "option) or libvirt domain (I<-d> option), and at least one mountpoint (I<-m> "
28605 "option) or use the I<-i> inspection option.  How this works is better "
28606 "explained in the L<guestfish(1)> manual page, or by looking at the examples "
28607 "below."
28608 msgstr ""
28609
28610 #. type: textblock
28611 #: ../fuse/guestmount.pod:33
28612 msgid ""
28613 "FUSE lets you mount filesystems as non-root.  The mountpoint must be owned "
28614 "by you, and the filesystem will not be visible to any other users unless you "
28615 "make certain global configuration changes to C</etc/fuse.conf>.  To unmount "
28616 "the filesystem, use the C<fusermount -u> command."
28617 msgstr ""
28618
28619 #. type: textblock
28620 #: ../fuse/guestmount.pod:41
28621 msgid ""
28622 "For a typical Windows guest which has its main filesystem on the first "
28623 "partition:"
28624 msgstr ""
28625
28626 #. type: verbatim
28627 #: ../fuse/guestmount.pod:44
28628 #, no-wrap
28629 msgid ""
28630 " guestmount -a windows.img -m /dev/sda1 --ro /mnt\n"
28631 "\n"
28632 msgstr ""
28633
28634 #. type: textblock
28635 #: ../fuse/guestmount.pod:46
28636 msgid ""
28637 "For a typical Linux guest which has a /boot filesystem on the first "
28638 "partition, and the root filesystem on a logical volume:"
28639 msgstr ""
28640
28641 #. type: verbatim
28642 #: ../fuse/guestmount.pod:49
28643 #, no-wrap
28644 msgid ""
28645 " guestmount -a linux.img -m /dev/VG/LV -m /dev/sda1:/boot --ro /mnt\n"
28646 "\n"
28647 msgstr ""
28648
28649 #. type: textblock
28650 #: ../fuse/guestmount.pod:51
28651 msgid "To get libguestfs to detect guest mountpoints for you:"
28652 msgstr ""
28653
28654 #. type: verbatim
28655 #: ../fuse/guestmount.pod:53
28656 #, no-wrap
28657 msgid ""
28658 " guestmount -a guest.img -i --ro /mnt\n"
28659 "\n"
28660 msgstr ""
28661
28662 #. type: textblock
28663 #: ../fuse/guestmount.pod:55
28664 msgid "For a libvirt guest called \"Guest\" you could do:"
28665 msgstr ""
28666
28667 #. type: verbatim
28668 #: ../fuse/guestmount.pod:57
28669 #, no-wrap
28670 msgid ""
28671 " guestmount -d Guest -i --ro /mnt\n"
28672 "\n"
28673 msgstr ""
28674
28675 #. type: textblock
28676 #: ../fuse/guestmount.pod:59
28677 msgid ""
28678 "If you don't know what filesystems are contained in a guest or disk image, "
28679 "use L<virt-filesystems(1)> first:"
28680 msgstr ""
28681
28682 #. type: verbatim
28683 #: ../fuse/guestmount.pod:62
28684 #, no-wrap
28685 msgid ""
28686 " virt-filesystems MyGuest\n"
28687 "\n"
28688 msgstr ""
28689
28690 #. type: textblock
28691 #: ../fuse/guestmount.pod:64
28692 msgid ""
28693 "If you want to trace the libguestfs calls but without excessive debugging "
28694 "information, we recommend:"
28695 msgstr ""
28696
28697 #. type: verbatim
28698 #: ../fuse/guestmount.pod:67
28699 #, no-wrap
28700 msgid ""
28701 " guestmount [...] --trace /mnt\n"
28702 "\n"
28703 msgstr ""
28704
28705 #. type: textblock
28706 #: ../fuse/guestmount.pod:69
28707 msgid "If you want to debug the program, we recommend:"
28708 msgstr ""
28709
28710 #. type: verbatim
28711 #: ../fuse/guestmount.pod:71
28712 #, no-wrap
28713 msgid ""
28714 " guestmount [...] --trace --verbose /mnt\n"
28715 "\n"
28716 msgstr ""
28717
28718 #. type: =head1
28719 #: ../fuse/guestmount.pod:73
28720 msgid "NOTES"
28721 msgstr ""
28722
28723 #. type: =head2
28724 #: ../fuse/guestmount.pod:75
28725 msgid "Other users cannot see the filesystem by default"
28726 msgstr ""
28727
28728 #. type: textblock
28729 #: ../fuse/guestmount.pod:77
28730 msgid ""
28731 "If you mount a filesystem as one user (eg. root), then other users will not "
28732 "be able to see it by default.  The fix is to add the FUSE C<allow_other> "
28733 "option when mounting:"
28734 msgstr ""
28735
28736 #. type: verbatim
28737 #: ../fuse/guestmount.pod:81
28738 #, no-wrap
28739 msgid ""
28740 " sudo guestmount [...] -o allow_other /mnt\n"
28741 "\n"
28742 msgstr ""
28743
28744 #. type: =item
28745 #: ../fuse/guestmount.pod:87
28746 msgid "B<-a image> | B<--add image>"
28747 msgstr ""
28748
28749 #. type: textblock
28750 #: ../fuse/guestmount.pod:89
28751 msgid "Add a block device or virtual machine image."
28752 msgstr ""
28753
28754 #. type: =item
28755 #: ../fuse/guestmount.pod:94
28756 msgid "B<-c URI> | B<--connect URI>"
28757 msgstr ""
28758
28759 #. type: =item
28760 #: ../fuse/guestmount.pod:100
28761 msgid "B<-d libvirt-domain> | B<--domain libvirt-domain>"
28762 msgstr ""
28763
28764 #. type: =item
28765 #: ../fuse/guestmount.pod:106
28766 msgid "B<--dir-cache-timeout N>"
28767 msgstr ""
28768
28769 #. type: textblock
28770 #: ../fuse/guestmount.pod:108
28771 msgid ""
28772 "Set the readdir cache timeout to I<N> seconds, the default being 60 "
28773 "seconds.  The readdir cache [actually, there are several semi-independent "
28774 "caches] is populated after a readdir(2) call with the stat and extended "
28775 "attributes of the files in the directory, in anticipation that they will be "
28776 "requested soon after."
28777 msgstr ""
28778
28779 #. type: textblock
28780 #: ../fuse/guestmount.pod:114
28781 msgid ""
28782 "There is also a different attribute cache implemented by FUSE (see the FUSE "
28783 "option I<-o attr_timeout>), but the FUSE cache does not anticipate future "
28784 "requests, only cache existing ones."
28785 msgstr ""
28786
28787 #. type: =item
28788 #: ../fuse/guestmount.pod:125
28789 msgid "B<--format=raw|qcow2|..> | B<--format>"
28790 msgstr ""
28791
28792 #. type: textblock
28793 #: ../fuse/guestmount.pod:132
28794 msgid ""
28795 "If you have untrusted raw-format guest disk images, you should use this "
28796 "option to specify the disk format.  This avoids a possible security problem "
28797 "with malicious guests (CVE-2010-3851).  See also L<guestfs(3)/"
28798 "guestfs_add_drive_opts>."
28799 msgstr ""
28800
28801 #. type: =item
28802 #: ../fuse/guestmount.pod:137
28803 msgid "B<--fuse-help>"
28804 msgstr ""
28805
28806 #. type: textblock
28807 #: ../fuse/guestmount.pod:139
28808 msgid "Display help on special FUSE options (see I<-o> below)."
28809 msgstr ""
28810
28811 #. type: textblock
28812 #: ../fuse/guestmount.pod:143
28813 msgid "Display brief help and exit."
28814 msgstr ""
28815
28816 #. type: =item
28817 #: ../fuse/guestmount.pod:145
28818 msgid "B<-i> | B<--inspector>"
28819 msgstr ""
28820
28821 #. type: textblock
28822 #: ../fuse/guestmount.pod:165
28823 msgid ""
28824 "Mount the named partition or logical volume on the given mountpoint B<in the "
28825 "guest> (this has nothing to do with mountpoints in the host)."
28826 msgstr ""
28827
28828 #. type: textblock
28829 #: ../fuse/guestmount.pod:168
28830 msgid ""
28831 "If the mountpoint is omitted, it defaults to C</>.  You have to mount "
28832 "something on C</>."
28833 msgstr ""
28834
28835 #. type: =item
28836 #: ../fuse/guestmount.pod:181
28837 msgid "B<-n> | B<--no-sync>"
28838 msgstr ""
28839
28840 #. type: textblock
28841 #: ../fuse/guestmount.pod:183
28842 msgid ""
28843 "By default, we attempt to sync the guest disk when the FUSE mountpoint is "
28844 "unmounted.  If you specify this option, then we don't attempt to sync the "
28845 "disk.  See the discussion of autosync in the L<guestfs(3)> manpage."
28846 msgstr ""
28847
28848 #. type: =item
28849 #: ../fuse/guestmount.pod:188
28850 msgid "B<-o option> | B<--option option>"
28851 msgstr ""
28852
28853 #. type: textblock
28854 #: ../fuse/guestmount.pod:190
28855 msgid "Pass extra options to FUSE."
28856 msgstr ""
28857
28858 #. type: textblock
28859 #: ../fuse/guestmount.pod:192
28860 msgid ""
28861 "To get a list of all the extra options supported by FUSE, use the command "
28862 "below.  Note that only the FUSE I<-o> options can be passed, and only some "
28863 "of them are a good idea."
28864 msgstr ""
28865
28866 #. type: verbatim
28867 #: ../fuse/guestmount.pod:196
28868 #, no-wrap
28869 msgid ""
28870 " guestmount --fuse-help\n"
28871 "\n"
28872 msgstr ""
28873
28874 #. type: textblock
28875 #: ../fuse/guestmount.pod:198
28876 msgid "Some potentially useful FUSE options:"
28877 msgstr ""
28878
28879 #. type: =item
28880 #: ../fuse/guestmount.pod:202
28881 msgid "B<-o allow_other>"
28882 msgstr ""
28883
28884 #. type: textblock
28885 #: ../fuse/guestmount.pod:204
28886 msgid "Allow other users to see the filesystem."
28887 msgstr ""
28888
28889 #. type: =item
28890 #: ../fuse/guestmount.pod:206
28891 msgid "B<-o attr_timeout=N>"
28892 msgstr ""
28893
28894 #. type: textblock
28895 #: ../fuse/guestmount.pod:208
28896 msgid "Enable attribute caching by FUSE, and set the timeout to I<N> seconds."
28897 msgstr ""
28898
28899 #. type: =item
28900 #: ../fuse/guestmount.pod:210
28901 msgid "B<-o kernel_cache>"
28902 msgstr ""
28903
28904 #. type: textblock
28905 #: ../fuse/guestmount.pod:212
28906 msgid ""
28907 "Allow the kernel to cache files (reduces the number of reads that have to go "
28908 "through the L<guestfs(3)> API).  This is generally a good idea if you can "
28909 "afford the extra memory usage."
28910 msgstr ""
28911
28912 #. type: =item
28913 #: ../fuse/guestmount.pod:216
28914 msgid "B<-o uid=N> B<-o gid=N>"
28915 msgstr ""
28916
28917 #. type: textblock
28918 #: ../fuse/guestmount.pod:218
28919 msgid ""
28920 "Use these options to map all UIDs and GIDs inside the guest filesystem to "
28921 "the chosen values."
28922 msgstr ""
28923
28924 #. type: =item
28925 #: ../fuse/guestmount.pod:223
28926 msgid "B<-r> | B<--ro>"
28927 msgstr ""
28928
28929 #. type: textblock
28930 #: ../fuse/guestmount.pod:225
28931 msgid ""
28932 "Add devices and mount everything read-only.  Also disallow writes and make "
28933 "the disk appear read-only to FUSE."
28934 msgstr ""
28935
28936 #. type: textblock
28937 #: ../fuse/guestmount.pod:228
28938 msgid ""
28939 "This is highly recommended if you are not going to edit the guest disk.  If "
28940 "the guest is running and this option is I<not> supplied, then there is a "
28941 "strong risk of disk corruption in the guest.  We try to prevent this from "
28942 "happening, but it is not always possible."
28943 msgstr ""
28944
28945 #. type: textblock
28946 #: ../fuse/guestmount.pod:233
28947 msgid "See also L<guestfish(1)/OPENING DISKS FOR READ AND WRITE>."
28948 msgstr ""
28949
28950 #. type: textblock
28951 #: ../fuse/guestmount.pod:237
28952 msgid "Enable SELinux support for the guest."
28953 msgstr ""
28954
28955 #. type: =item
28956 #: ../fuse/guestmount.pod:239
28957 msgid "B<-v> | B<--verbose>"
28958 msgstr ""
28959
28960 #. type: textblock
28961 #: ../fuse/guestmount.pod:241
28962 msgid "Enable verbose messages from underlying libguestfs."
28963 msgstr ""
28964
28965 #. type: =item
28966 #: ../fuse/guestmount.pod:243
28967 msgid "B<-V> | B<--version>"
28968 msgstr ""
28969
28970 #. type: textblock
28971 #: ../fuse/guestmount.pod:245
28972 msgid "Display the program version and exit."
28973 msgstr ""
28974
28975 #. type: =item
28976 #: ../fuse/guestmount.pod:247
28977 msgid "B<-w> | B<--rw>"
28978 msgstr ""
28979
28980 #. type: textblock
28981 #: ../fuse/guestmount.pod:252 ../fuse/guestmount.pod:273
28982 msgid "See L<guestfish(1)/OPENING DISKS FOR READ AND WRITE>."
28983 msgstr ""
28984
28985 #. type: =item
28986 #: ../fuse/guestmount.pod:254
28987 msgid "B<-x> | B<--trace>"
28988 msgstr ""
28989
28990 #. type: textblock
28991 #: ../fuse/guestmount.pod:256
28992 msgid "Trace libguestfs calls and entry into each FUSE function."
28993 msgstr ""
28994
28995 #. type: textblock
28996 #: ../fuse/guestmount.pod:258
28997 msgid "This also stops the daemon from forking into the background."
28998 msgstr ""
28999
29000 #. type: textblock
29001 #: ../fuse/guestmount.pod:279
29002 msgid ""
29003 "L<guestfish(1)>, L<virt-inspector(1)>, L<virt-cat(1)>, L<virt-edit(1)>, "
29004 "L<virt-tar(1)>, L<guestfs(3)>, L<http://libguestfs.org/>, L<http://fuse.sf."
29005 "net/>."
29006 msgstr ""
29007
29008 #. type: textblock
29009 #: ../fuse/guestmount.pod:294
29010 msgid "Copyright (C) 2009-2010 Red Hat Inc.  L<http://libguestfs.org/>"
29011 msgstr ""
29012
29013 #. type: textblock
29014 #: ../tools/virt-edit.pl:34
29015 msgid "virt-edit - Edit a file in a virtual machine"
29016 msgstr ""
29017
29018 #. type: verbatim
29019 #: ../tools/virt-edit.pl:38
29020 #, no-wrap
29021 msgid ""
29022 " virt-edit [--options] domname file\n"
29023 "\n"
29024 msgstr ""
29025
29026 #. type: verbatim
29027 #: ../tools/virt-edit.pl:40
29028 #, no-wrap
29029 msgid ""
29030 " virt-edit [--options] disk.img [disk.img ...] file\n"
29031 "\n"
29032 msgstr ""
29033
29034 #. type: verbatim
29035 #: ../tools/virt-edit.pl:42
29036 #, no-wrap
29037 msgid ""
29038 " virt-edit [domname|disk.img] file -e 'expr'\n"
29039 "\n"
29040 msgstr ""
29041
29042 #. type: textblock
29043 #: ../tools/virt-edit.pl:46
29044 msgid ""
29045 "You must I<not> use C<virt-edit> on live virtual machines.  If you do this, "
29046 "you risk disk corruption in the VM.  C<virt-edit> tries to stop you from "
29047 "doing this, but doesn't catch all cases."
29048 msgstr ""
29049
29050 #. type: textblock
29051 #: ../tools/virt-edit.pl:52
29052 msgid ""
29053 "C<virt-edit> is a command line tool to edit C<file> where C<file> exists in "
29054 "the named virtual machine (or disk image)."
29055 msgstr ""
29056
29057 #. type: textblock
29058 #: ../tools/virt-edit.pl:55
29059 msgid "If you want to just view a file, use L<virt-cat(1)>."
29060 msgstr ""
29061
29062 #. type: textblock
29063 #: ../tools/virt-edit.pl:57
29064 msgid ""
29065 "For more complex cases you should look at the L<guestfish(1)> tool (see L</"
29066 "USING GUESTFISH> below)."
29067 msgstr ""
29068
29069 #. type: textblock
29070 #: ../tools/virt-edit.pl:60
29071 msgid ""
29072 "C<virt-edit> cannot be used to create a new file, nor to edit multiple "
29073 "files.  L<guestfish(1)> can do that and much more."
29074 msgstr ""
29075
29076 #. type: textblock
29077 #: ../tools/virt-edit.pl:65
29078 msgid "Edit the named files interactively:"
29079 msgstr ""
29080
29081 #. type: verbatim
29082 #: ../tools/virt-edit.pl:67
29083 #, no-wrap
29084 msgid ""
29085 " virt-edit mydomain /boot/grub/grub.conf\n"
29086 "\n"
29087 msgstr ""
29088
29089 #. type: verbatim
29090 #: ../tools/virt-edit.pl:69
29091 #, no-wrap
29092 msgid ""
29093 " virt-edit mydomain /etc/passwd\n"
29094 "\n"
29095 msgstr ""
29096
29097 #. type: textblock
29098 #: ../tools/virt-edit.pl:71
29099 msgid "For Windows guests, some Windows paths are understood:"
29100 msgstr ""
29101
29102 #. type: verbatim
29103 #: ../tools/virt-edit.pl:73
29104 #, no-wrap
29105 msgid ""
29106 " virt-edit mywindomain 'c:\\autoexec.bat'\n"
29107 "\n"
29108 msgstr ""
29109
29110 #. type: textblock
29111 #: ../tools/virt-edit.pl:75
29112 msgid ""
29113 "You can also edit files non-interactively (see L</NON-INTERACTIVE EDITING> "
29114 "below).  To change the init default level to 5:"
29115 msgstr ""
29116
29117 #. type: verbatim
29118 #: ../tools/virt-edit.pl:79
29119 #, no-wrap
29120 msgid ""
29121 " virt-edit mydomain /etc/inittab -e 's/^id:.*/id:5:initdefault:/'\n"
29122 "\n"
29123 msgstr ""
29124
29125 #. type: textblock
29126 #: ../tools/virt-edit.pl:91 ../tools/virt-win-reg.pl:106
29127 #: ../tools/virt-list-filesystems.pl:63 ../tools/virt-tar.pl:113
29128 #: ../tools/virt-make-fs.pl:163 ../tools/virt-list-partitions.pl:64
29129 msgid "Display brief help."
29130 msgstr ""
29131
29132 #. type: textblock
29133 #: ../tools/virt-edit.pl:99 ../tools/virt-win-reg.pl:114
29134 #: ../tools/virt-list-filesystems.pl:71 ../tools/virt-tar.pl:121
29135 #: ../tools/virt-make-fs.pl:171 ../tools/virt-list-partitions.pl:72
29136 msgid "Display version number and exit."
29137 msgstr ""
29138
29139 #. type: =item
29140 #: ../tools/virt-edit.pl:105
29141 msgid "B<--backup extension> | B<-b extension>"
29142 msgstr ""
29143
29144 #. type: textblock
29145 #: ../tools/virt-edit.pl:107
29146 msgid ""
29147 "Create a backup of the original file I<in the guest disk image>.  The backup "
29148 "has the original filename with C<extension> added."
29149 msgstr ""
29150
29151 #. type: textblock
29152 #: ../tools/virt-edit.pl:110
29153 msgid ""
29154 "Usually the first character of C<extension> would be a dot C<.> so you would "
29155 "write:"
29156 msgstr ""
29157
29158 #. type: verbatim
29159 #: ../tools/virt-edit.pl:113
29160 #, no-wrap
29161 msgid ""
29162 " virt-edit -b .orig [etc]\n"
29163 "\n"
29164 msgstr ""
29165
29166 #. type: textblock
29167 #: ../tools/virt-edit.pl:115
29168 msgid "By default, no backup file is made."
29169 msgstr ""
29170
29171 #. type: =item
29172 #: ../tools/virt-edit.pl:121 ../tools/virt-win-reg.pl:128
29173 #: ../tools/virt-list-filesystems.pl:77 ../tools/virt-tar.pl:127
29174 #: ../tools/virt-list-partitions.pl:78
29175 msgid "B<--connect URI> | B<-c URI>"
29176 msgstr ""
29177
29178 #. type: textblock
29179 #: ../tools/virt-edit.pl:123 ../tools/virt-win-reg.pl:130
29180 #: ../tools/virt-list-filesystems.pl:79 ../tools/virt-tar.pl:129
29181 #: ../tools/virt-list-partitions.pl:80
29182 msgid ""
29183 "If using libvirt, connect to the given I<URI>.  If omitted, then we connect "
29184 "to the default libvirt hypervisor."
29185 msgstr ""
29186
29187 #. type: textblock
29188 #: ../tools/virt-edit.pl:126 ../tools/virt-win-reg.pl:133
29189 #: ../tools/virt-list-filesystems.pl:82 ../tools/virt-tar.pl:132
29190 #: ../tools/virt-list-partitions.pl:83
29191 msgid ""
29192 "If you specify guest block devices directly, then libvirt is not used at all."
29193 msgstr ""
29194
29195 #. type: =item
29196 #: ../tools/virt-edit.pl:133 ../tools/virt-win-reg.pl:140
29197 #: ../tools/virt-list-filesystems.pl:89 ../tools/virt-tar.pl:139
29198 #: ../tools/virt-list-partitions.pl:90
29199 msgid "B<--format> raw"
29200 msgstr ""
29201
29202 #. type: textblock
29203 #: ../tools/virt-edit.pl:135 ../tools/virt-win-reg.pl:142
29204 #: ../tools/virt-list-filesystems.pl:91 ../tools/virt-tar.pl:141
29205 #: ../tools/virt-list-partitions.pl:92
29206 msgid ""
29207 "Specify the format of disk images given on the command line.  If this is "
29208 "omitted then the format is autodetected from the content of the disk image."
29209 msgstr ""
29210
29211 #. type: textblock
29212 #: ../tools/virt-edit.pl:139 ../tools/virt-win-reg.pl:146
29213 #: ../tools/virt-list-filesystems.pl:95 ../tools/virt-tar.pl:145
29214 #: ../tools/virt-list-partitions.pl:96
29215 msgid ""
29216 "If disk images are requested from libvirt, then this program asks libvirt "
29217 "for this information.  In this case, the value of the format parameter is "
29218 "ignored."
29219 msgstr ""
29220
29221 #. type: textblock
29222 #: ../tools/virt-edit.pl:143 ../tools/virt-win-reg.pl:150
29223 #: ../tools/virt-list-filesystems.pl:99 ../tools/virt-tar.pl:149
29224 #: ../tools/virt-list-partitions.pl:100
29225 msgid ""
29226 "If working with untrusted raw-format guest disk images, you should ensure "
29227 "the format is always specified."
29228 msgstr ""
29229
29230 #. type: =item
29231 #: ../tools/virt-edit.pl:150
29232 msgid "B<--expr EXPR> | B<-e EXPR>"
29233 msgstr ""
29234
29235 #. type: textblock
29236 #: ../tools/virt-edit.pl:152
29237 msgid ""
29238 "Instead of launching the external editor, non-interactively apply the Perl "
29239 "expression C<EXPR> to each line in the file.  See L</NON-INTERACTIVE "
29240 "EDITING> below."
29241 msgstr ""
29242
29243 #. type: textblock
29244 #: ../tools/virt-edit.pl:156
29245 msgid ""
29246 "Be careful to properly quote the expression to prevent it from being altered "
29247 "by the shell."
29248 msgstr ""
29249
29250 #. type: =head1
29251 #: ../tools/virt-edit.pl:280
29252 msgid "NON-INTERACTIVE EDITING"
29253 msgstr ""
29254
29255 #. type: textblock
29256 #: ../tools/virt-edit.pl:282
29257 msgid ""
29258 "C<virt-edit> normally calls out to C<$EDITOR> (or vi) so the system "
29259 "administrator can interactively edit the file."
29260 msgstr ""
29261
29262 #. type: textblock
29263 #: ../tools/virt-edit.pl:285
29264 msgid ""
29265 "There are two ways also to use C<virt-edit> from scripts in order to make "
29266 "automated edits to files.  (Note that although you I<can> use C<virt-edit> "
29267 "like this, it's less error-prone to write scripts directly using the "
29268 "libguestfs API and Augeas for configuration file editing.)"
29269 msgstr ""
29270
29271 #. type: textblock
29272 #: ../tools/virt-edit.pl:291
29273 msgid ""
29274 "The first method is to temporarily set C<$EDITOR> to any script or program "
29275 "you want to run.  The script is invoked as C<$EDITOR tmpfile> and it should "
29276 "update C<tmpfile> in place however it likes."
29277 msgstr ""
29278
29279 #. type: textblock
29280 #: ../tools/virt-edit.pl:295
29281 msgid ""
29282 "The second method is to use the I<-e> parameter of C<virt-edit> to run a "
29283 "short Perl snippet in the style of L<sed(1)>.  For example to replace all "
29284 "instances of C<foo> with C<bar> in a file:"
29285 msgstr ""
29286
29287 #. type: verbatim
29288 #: ../tools/virt-edit.pl:299
29289 #, no-wrap
29290 msgid ""
29291 " virt-edit domname filename -e 's/foo/bar/'\n"
29292 "\n"
29293 msgstr ""
29294
29295 #. type: textblock
29296 #: ../tools/virt-edit.pl:301
29297 msgid ""
29298 "The full power of Perl regular expressions can be used (see L<perlre(1)>).  "
29299 "For example to delete root's password you could do:"
29300 msgstr ""
29301
29302 #. type: verbatim
29303 #: ../tools/virt-edit.pl:304
29304 #, no-wrap
29305 msgid ""
29306 " virt-edit domname /etc/passwd -e 's/^root:.*?:/root::/'\n"
29307 "\n"
29308 msgstr ""
29309
29310 #. type: textblock
29311 #: ../tools/virt-edit.pl:306
29312 msgid ""
29313 "What really happens is that the snippet is evaluated as a Perl expression "
29314 "for each line of the file.  The line, including the final C<\\n>, is passed "
29315 "in C<$_> and the expression should update C<$_> or leave it unchanged."
29316 msgstr ""
29317
29318 #. type: textblock
29319 #: ../tools/virt-edit.pl:311
29320 msgid ""
29321 "To delete a line, set C<$_> to the empty string.  For example, to delete the "
29322 "C<apache> user account from the password file you can do:"
29323 msgstr ""
29324
29325 #. type: verbatim
29326 #: ../tools/virt-edit.pl:314
29327 #, no-wrap
29328 msgid ""
29329 " virt-edit mydomain /etc/passwd -e '$_ = \"\" if /^apache:/'\n"
29330 "\n"
29331 msgstr ""
29332
29333 #. type: textblock
29334 #: ../tools/virt-edit.pl:316
29335 msgid ""
29336 "To insert a line, prepend or append it to C<$_>.  However appending lines to "
29337 "the end of the file is rather difficult this way since there is no concept "
29338 "of \"last line of the file\" - your expression just doesn't get called "
29339 "again.  You might want to use the first method (setting C<$EDITOR>) if you "
29340 "want to do this."
29341 msgstr ""
29342
29343 #. type: textblock
29344 #: ../tools/virt-edit.pl:322
29345 msgid ""
29346 "The variable C<$lineno> contains the current line number.  As is "
29347 "traditional, the first line in the file is number C<1>."
29348 msgstr ""
29349
29350 #. type: textblock
29351 #: ../tools/virt-edit.pl:325
29352 msgid ""
29353 "The return value from the expression is ignored, but the expression may call "
29354 "C<die> in order to abort the whole program, leaving the original file "
29355 "untouched."
29356 msgstr ""
29357
29358 #. type: textblock
29359 #: ../tools/virt-edit.pl:329
29360 msgid ""
29361 "Remember when matching the end of a line that C<$_> may contain the final C<"
29362 "\\n>, or (for DOS files) C<\\r\\n>, or if the file does not end with a "
29363 "newline then neither of these.  Thus to match or substitute some text at the "
29364 "end of a line, use this regular expression:"
29365 msgstr ""
29366
29367 #. type: verbatim
29368 #: ../tools/virt-edit.pl:334
29369 #, no-wrap
29370 msgid ""
29371 " /some text(\\r?\\n)?$/\n"
29372 "\n"
29373 msgstr ""
29374
29375 #. type: textblock
29376 #: ../tools/virt-edit.pl:336
29377 msgid ""
29378 "Alternately, use the perl C<chomp> function, being careful not to chomp C<"
29379 "$_> itself (since that would remove all newlines from the file):"
29380 msgstr ""
29381
29382 #. type: verbatim
29383 #: ../tools/virt-edit.pl:340
29384 #, no-wrap
29385 msgid ""
29386 " my $m = $_; chomp $m; $m =~ /some text$/\n"
29387 "\n"
29388 msgstr ""
29389
29390 #. type: textblock
29391 #: ../tools/virt-edit.pl:344
29392 msgid ""
29393 "C<virt-edit> has a limited ability to understand Windows drive letters and "
29394 "paths (eg. C<E:\\foo\\bar.txt>)."
29395 msgstr ""
29396
29397 #. type: textblock
29398 #: ../tools/virt-edit.pl:347
29399 msgid "If and only if the guest is running Windows then:"
29400 msgstr ""
29401
29402 #. type: textblock
29403 #: ../tools/virt-edit.pl:353
29404 msgid ""
29405 "Drive letter prefixes like C<C:> are resolved against the Windows Registry "
29406 "to the correct filesystem."
29407 msgstr ""
29408
29409 #. type: textblock
29410 #: ../tools/virt-edit.pl:358
29411 msgid ""
29412 "Any backslash (C<\\>) characters in the path are replaced with forward "
29413 "slashes so that libguestfs can process it."
29414 msgstr ""
29415
29416 #. type: textblock
29417 #: ../tools/virt-edit.pl:363
29418 msgid ""
29419 "The path is resolved case insensitively to locate the file that should be "
29420 "edited."
29421 msgstr ""
29422
29423 #. type: textblock
29424 #: ../tools/virt-edit.pl:368
29425 msgid "There are some known shortcomings:"
29426 msgstr ""
29427
29428 #. type: textblock
29429 #: ../tools/virt-edit.pl:374
29430 msgid "Some NTFS symbolic links may not be followed correctly."
29431 msgstr ""
29432
29433 #. type: textblock
29434 #: ../tools/virt-edit.pl:378
29435 msgid "NTFS junction points that cross filesystems are not followed."
29436 msgstr ""
29437
29438 #. type: =head1
29439 #: ../tools/virt-edit.pl:435
29440 msgid "USING GUESTFISH"
29441 msgstr ""
29442
29443 #. type: textblock
29444 #: ../tools/virt-edit.pl:437
29445 msgid ""
29446 "L<guestfish(1)> is a more powerful, lower level tool which you can use when "
29447 "C<virt-edit> doesn't work."
29448 msgstr ""
29449
29450 #. type: textblock
29451 #: ../tools/virt-edit.pl:440
29452 msgid "Using C<virt-edit> is approximately equivalent to doing:"
29453 msgstr ""
29454
29455 #. type: verbatim
29456 #: ../tools/virt-edit.pl:442
29457 #, no-wrap
29458 msgid ""
29459 " guestfish --rw -i -d domname edit /file\n"
29460 "\n"
29461 msgstr ""
29462
29463 #. type: textblock
29464 #: ../tools/virt-edit.pl:444
29465 msgid ""
29466 "where C<domname> is the name of the libvirt guest, and C</file> is the full "
29467 "path to the file."
29468 msgstr ""
29469
29470 #. type: textblock
29471 #: ../tools/virt-edit.pl:447
29472 msgid ""
29473 "The command above uses libguestfs's guest inspection feature and so does not "
29474 "work on guests that libguestfs cannot inspect, or on things like arbitrary "
29475 "disk images that don't contain guests.  To edit a file on a disk image "
29476 "directly, use:"
29477 msgstr ""
29478
29479 #. type: verbatim
29480 #: ../tools/virt-edit.pl:452
29481 #, no-wrap
29482 msgid ""
29483 " guestfish --rw -a disk.img -m /dev/sda1 edit /file\n"
29484 "\n"
29485 msgstr ""
29486
29487 #. type: textblock
29488 #: ../tools/virt-edit.pl:454
29489 msgid ""
29490 "where C<disk.img> is the disk image, C</dev/sda1> is the filesystem within "
29491 "the disk image to edit, and C</file> is the full path to the file."
29492 msgstr ""
29493
29494 #. type: textblock
29495 #: ../tools/virt-edit.pl:458
29496 msgid ""
29497 "C<virt-edit> cannot create new files.  Use the guestfish commands C<touch>, "
29498 "C<write> or C<upload> instead:"
29499 msgstr ""
29500
29501 #. type: verbatim
29502 #: ../tools/virt-edit.pl:461
29503 #, no-wrap
29504 msgid ""
29505 " guestfish --rw -i -d domname touch /newfile\n"
29506 "\n"
29507 msgstr ""
29508
29509 #. type: verbatim
29510 #: ../tools/virt-edit.pl:463
29511 #, no-wrap
29512 msgid ""
29513 " guestfish --rw -i -d domname write /newfile \"new content\"\n"
29514 "\n"
29515 msgstr ""
29516
29517 #. type: verbatim
29518 #: ../tools/virt-edit.pl:465
29519 #, no-wrap
29520 msgid ""
29521 " guestfish --rw -i -d domname upload localfile /newfile\n"
29522 "\n"
29523 msgstr ""
29524
29525 #. type: textblock
29526 #: ../tools/virt-edit.pl:467
29527 msgid ""
29528 "C<virt-edit> cannot edit multiple files, but guestfish can do it like this:"
29529 msgstr ""
29530
29531 #. type: verbatim
29532 #: ../tools/virt-edit.pl:470
29533 #, no-wrap
29534 msgid ""
29535 " guestfish --rw -i -d domname edit /file1 : edit /file2\n"
29536 "\n"
29537 msgstr ""
29538
29539 #. type: =item
29540 #: ../tools/virt-edit.pl:480
29541 msgid "C<EDITOR>"
29542 msgstr ""
29543
29544 #. type: textblock
29545 #: ../tools/virt-edit.pl:482
29546 msgid ""
29547 "If set, this string is used as the editor.  It may contain arguments, eg. C<"
29548 "\"emacs -nw\">"
29549 msgstr ""
29550
29551 #. type: textblock
29552 #: ../tools/virt-edit.pl:485
29553 msgid "If not set, C<vi> is used."
29554 msgstr ""
29555
29556 #. type: =head1
29557 #: ../tools/virt-edit.pl:489 ../tools/virt-win-reg.pl:559
29558 #: ../tools/virt-list-filesystems.pl:182 ../tools/virt-tar.pl:279
29559 #: ../tools/virt-make-fs.pl:532 ../tools/virt-list-partitions.pl:250
29560 msgid "SHELL QUOTING"
29561 msgstr ""
29562
29563 #. type: textblock
29564 #: ../tools/virt-edit.pl:491 ../tools/virt-win-reg.pl:567
29565 #: ../tools/virt-list-filesystems.pl:184 ../tools/virt-tar.pl:281
29566 #: ../tools/virt-make-fs.pl:534 ../tools/virt-list-partitions.pl:252
29567 msgid ""
29568 "Libvirt guest names can contain arbitrary characters, some of which have "
29569 "meaning to the shell such as C<#> and space.  You may need to quote or "
29570 "escape these characters on the command line.  See the shell manual page L<sh"
29571 "(1)> for details."
29572 msgstr ""
29573
29574 #. type: textblock
29575 #: ../tools/virt-edit.pl:498
29576 msgid ""
29577 "L<guestfs(3)>, L<guestfish(1)>, L<virt-cat(1)>, L<virt-copy-in(1)>, L<virt-"
29578 "tar-in(1)>, L<Sys::Guestfs(3)>, L<Sys::Guestfs::Lib(3)>, L<Sys::Virt(3)>, "
29579 "L<http://libguestfs.org/>, L<perl(1)>, L<perlre(1)>."
29580 msgstr ""
29581
29582 #. type: =head1
29583 #: ../tools/virt-edit.pl:510 ../tools/virt-win-reg.pl:598
29584 #: ../tools/virt-list-filesystems.pl:202 ../tools/virt-tar.pl:301
29585 #: ../tools/virt-make-fs.pl:564 ../tools/virt-list-partitions.pl:269
29586 msgid "AUTHOR"
29587 msgstr ""
29588
29589 #. type: textblock
29590 #: ../tools/virt-edit.pl:512 ../tools/virt-win-reg.pl:600
29591 #: ../tools/virt-list-filesystems.pl:204 ../tools/virt-tar.pl:303
29592 #: ../tools/virt-make-fs.pl:566 ../tools/virt-list-partitions.pl:271
29593 msgid "Richard W.M. Jones L<http://people.redhat.com/~rjones/>"
29594 msgstr ""
29595
29596 #. type: textblock
29597 #: ../tools/virt-edit.pl:516
29598 msgid "Copyright (C) 2009-2011 Red Hat Inc."
29599 msgstr ""
29600
29601 #. type: textblock
29602 #: ../tools/virt-win-reg.pl:37
29603 msgid ""
29604 "virt-win-reg - Export and merge Windows Registry entries from a Windows guest"
29605 msgstr ""
29606
29607 #. type: verbatim
29608 #: ../tools/virt-win-reg.pl:41
29609 #, no-wrap
29610 msgid ""
29611 " virt-win-reg domname 'HKLM\\Path\\To\\Subkey'\n"
29612 "\n"
29613 msgstr ""
29614
29615 #. type: verbatim
29616 #: ../tools/virt-win-reg.pl:43
29617 #, no-wrap
29618 msgid ""
29619 " virt-win-reg domname 'HKLM\\Path\\To\\Subkey' name\n"
29620 "\n"
29621 msgstr ""
29622
29623 #. type: verbatim
29624 #: ../tools/virt-win-reg.pl:45
29625 #, no-wrap
29626 msgid ""
29627 " virt-win-reg domname 'HKLM\\Path\\To\\Subkey' @\n"
29628 "\n"
29629 msgstr ""
29630
29631 #. type: verbatim
29632 #: ../tools/virt-win-reg.pl:47
29633 #, no-wrap
29634 msgid ""
29635 " virt-win-reg --merge domname [input.reg ...]\n"
29636 "\n"
29637 msgstr ""
29638
29639 #. type: verbatim
29640 #: ../tools/virt-win-reg.pl:49
29641 #, no-wrap
29642 msgid ""
29643 " virt-win-reg [--options] disk.img ... # instead of domname\n"
29644 "\n"
29645 msgstr ""
29646
29647 #. type: textblock
29648 #: ../tools/virt-win-reg.pl:53
29649 msgid ""
29650 "You must I<not> use C<virt-win-reg> with the I<--merge> option on live "
29651 "virtual machines.  If you do this, you I<will> get irreversible disk "
29652 "corruption in the VM.  C<virt-win-reg> tries to stop you from doing this, "
29653 "but doesn't catch all cases."
29654 msgstr ""
29655
29656 #. type: textblock
29657 #: ../tools/virt-win-reg.pl:58
29658 msgid ""
29659 "Modifying the Windows Registry is an inherently risky operation.  The format "
29660 "is deliberately obscure and undocumented, and Registry changes can leave the "
29661 "system unbootable.  Therefore when using the I<--merge> option, make sure "
29662 "you have a reliable backup first."
29663 msgstr ""
29664
29665 #. type: textblock
29666 #: ../tools/virt-win-reg.pl:65
29667 msgid ""
29668 "This program can export and merge Windows Registry entries from a Windows "
29669 "guest."
29670 msgstr ""
29671
29672 #. type: textblock
29673 #: ../tools/virt-win-reg.pl:68
29674 msgid ""
29675 "The first parameter is the libvirt guest name or the raw disk image of a "
29676 "Windows guest."
29677 msgstr ""
29678
29679 #. type: textblock
29680 #: ../tools/virt-win-reg.pl:71
29681 msgid ""
29682 "If I<--merge> is I<not> specified, then the chosen registry key is displayed/"
29683 "exported (recursively).  For example:"
29684 msgstr ""
29685
29686 #. type: verbatim
29687 #: ../tools/virt-win-reg.pl:74
29688 #, no-wrap
29689 msgid ""
29690 " $ virt-win-reg Windows7 'HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft'\n"
29691 "\n"
29692 msgstr ""
29693
29694 #. type: textblock
29695 #: ../tools/virt-win-reg.pl:76
29696 msgid ""
29697 "You can also display single values from within registry keys, for example:"
29698 msgstr ""
29699
29700 #. type: verbatim
29701 #: ../tools/virt-win-reg.pl:79
29702 #, no-wrap
29703 msgid ""
29704 " $ cvkey='HKLM\\SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion'\n"
29705 " $ virt-win-reg Windows7 $cvkey ProductName\n"
29706 " Windows 7 Enterprise\n"
29707 "\n"
29708 msgstr ""
29709
29710 #. type: textblock
29711 #: ../tools/virt-win-reg.pl:83
29712 msgid ""
29713 "With I<--merge>, you can merge a textual regedit file into the Windows "
29714 "Registry:"
29715 msgstr ""
29716
29717 #. type: verbatim
29718 #: ../tools/virt-win-reg.pl:86
29719 #, no-wrap
29720 msgid ""
29721 " $ virt-win-reg --merge Windows7 changes.reg\n"
29722 "\n"
29723 msgstr ""
29724
29725 #. type: =head1
29726 #: ../tools/virt-win-reg.pl:88 ../tools/virt-tar.pl:45
29727 msgid "NOTE"
29728 msgstr ""
29729
29730 #. type: textblock
29731 #: ../tools/virt-win-reg.pl:90
29732 msgid ""
29733 "This program is only meant for simple access to the registry.  If you want "
29734 "to do complicated things with the registry, we suggest you download the "
29735 "Registry hive files from the guest using L<libguestfs(3)> or L<guestfish(1)> "
29736 "and access them locally, eg. using L<hivex(3)>, L<hivexsh(1)> or "
29737 "L<hivexregedit(1)>."
29738 msgstr ""
29739
29740 #. type: =item
29741 #: ../tools/virt-win-reg.pl:120 ../tools/virt-make-fs.pl:177
29742 msgid "B<--debug>"
29743 msgstr ""
29744
29745 #. type: textblock
29746 #: ../tools/virt-win-reg.pl:122
29747 msgid "Enable debugging messages."
29748 msgstr ""
29749
29750 #. type: =item
29751 #: ../tools/virt-win-reg.pl:157
29752 msgid "B<--merge>"
29753 msgstr ""
29754
29755 #. type: textblock
29756 #: ../tools/virt-win-reg.pl:159
29757 msgid ""
29758 "In merge mode, this merges a textual regedit file into the Windows Registry "
29759 "of the virtual machine.  If this flag is I<not> given then virt-win-reg "
29760 "displays or exports Registry entries instead."
29761 msgstr ""
29762
29763 #. type: textblock
29764 #: ../tools/virt-win-reg.pl:163
29765 msgid ""
29766 "Note that I<--merge> is I<unsafe> to use on live virtual machines, and will "
29767 "result in disk corruption.  However exporting (without this flag)  is always "
29768 "safe."
29769 msgstr ""
29770
29771 #. type: =item
29772 #: ../tools/virt-win-reg.pl:171
29773 msgid "B<--encoding> UTF-16LE|ASCII"
29774 msgstr ""
29775
29776 #. type: textblock
29777 #: ../tools/virt-win-reg.pl:173
29778 msgid ""
29779 "When merging (only), you may need to specify the encoding for strings to be "
29780 "used in the hive file.  This is explained in detail in L<Win::Hivex::Regedit"
29781 "(3)/ENCODING STRINGS>."
29782 msgstr ""
29783
29784 #. type: textblock
29785 #: ../tools/virt-win-reg.pl:177
29786 msgid ""
29787 "The default is to use UTF-16LE, which should work with recent versions of "
29788 "Windows."
29789 msgstr ""
29790
29791 #. type: =head1
29792 #: ../tools/virt-win-reg.pl:402
29793 msgid "SUPPORTED SYSTEMS"
29794 msgstr ""
29795
29796 #. type: textblock
29797 #: ../tools/virt-win-reg.pl:404
29798 msgid ""
29799 "The program currently supports Windows NT-derived guests starting with "
29800 "Windows XP through to at least Windows 7."
29801 msgstr ""
29802
29803 #. type: textblock
29804 #: ../tools/virt-win-reg.pl:407
29805 msgid ""
29806 "Registry support is done for C<HKEY_LOCAL_MACHINE\\SAM>, C<HKEY_LOCAL_MACHINE"
29807 "\\SECURITY>, C<HKEY_LOCAL_MACHINE\\SOFTWARE>, C<HKEY_LOCAL_MACHINE\\SYSTEM> "
29808 "and C<HKEY_USERS\\.DEFAULT>."
29809 msgstr ""
29810
29811 #. type: textblock
29812 #: ../tools/virt-win-reg.pl:411
29813 msgid ""
29814 "You can use C<HKLM> as a shorthand for C<HKEY_LOCAL_MACHINE>, and C<HKU> for "
29815 "C<HKEY_USERS>."
29816 msgstr ""
29817
29818 #. type: textblock
29819 #: ../tools/virt-win-reg.pl:414
29820 msgid ""
29821 "C<HKEY_USERS\\$SID> and C<HKEY_CURRENT_USER> are B<not> supported at this "
29822 "time."
29823 msgstr ""
29824
29825 #. type: =head1
29826 #: ../tools/virt-win-reg.pl:417
29827 msgid "ENCODING"
29828 msgstr ""
29829
29830 #. type: textblock
29831 #: ../tools/virt-win-reg.pl:419
29832 msgid ""
29833 "C<virt-win-reg> expects that regedit files have already been reencoded in "
29834 "the local encoding.  Usually on Linux hosts, this means UTF-8 with Unix-"
29835 "style line endings.  Since Windows regedit files are often in UTF-16LE with "
29836 "Windows-style line endings, you may need to reencode the whole file before "
29837 "or after processing."
29838 msgstr ""
29839
29840 #. type: textblock
29841 #: ../tools/virt-win-reg.pl:425
29842 msgid ""
29843 "To reencode a file from Windows format to Linux (before processing it with "
29844 "the I<--merge> option), you would do something like this:"
29845 msgstr ""
29846
29847 #. type: verbatim
29848 #: ../tools/virt-win-reg.pl:428
29849 #, no-wrap
29850 msgid ""
29851 " iconv -f utf-16le -t utf-8 < win.reg | dos2unix > linux.reg\n"
29852 "\n"
29853 msgstr ""
29854
29855 #. type: textblock
29856 #: ../tools/virt-win-reg.pl:430
29857 msgid ""
29858 "To go in the opposite direction, after exporting and before sending the file "
29859 "to a Windows user, do something like this:"
29860 msgstr ""
29861
29862 #. type: verbatim
29863 #: ../tools/virt-win-reg.pl:433
29864 #, no-wrap
29865 msgid ""
29866 " unix2dos linux.reg | iconv -f utf-8 -t utf-16le > win.reg\n"
29867 "\n"
29868 msgstr ""
29869
29870 #. type: textblock
29871 #: ../tools/virt-win-reg.pl:435
29872 msgid "For more information about encoding, see L<Win::Hivex::Regedit(3)>."
29873 msgstr ""
29874
29875 #. type: textblock
29876 #: ../tools/virt-win-reg.pl:437
29877 msgid ""
29878 "If you are unsure about the current encoding, use the L<file(1)> command.  "
29879 "Recent versions of Windows regedit.exe produce a UTF-16LE file with Windows-"
29880 "style (CRLF) line endings, like this:"
29881 msgstr ""
29882
29883 #. type: verbatim
29884 #: ../tools/virt-win-reg.pl:441
29885 #, no-wrap
29886 msgid ""
29887 " $ file software.reg\n"
29888 " software.reg: Little-endian UTF-16 Unicode text, with very long lines,\n"
29889 " with CRLF line terminators\n"
29890 "\n"
29891 msgstr ""
29892
29893 #. type: textblock
29894 #: ../tools/virt-win-reg.pl:445
29895 msgid "This file would need conversion before you could I<--merge> it."
29896 msgstr ""
29897
29898 #. type: =head1
29899 #: ../tools/virt-win-reg.pl:447
29900 msgid "CurrentControlSet etc."
29901 msgstr ""
29902
29903 #. type: textblock
29904 #: ../tools/virt-win-reg.pl:449
29905 msgid ""
29906 "Registry keys like C<CurrentControlSet> don't really exist in the Windows "
29907 "Registry at the level of the hive file, and therefore you cannot modify "
29908 "these."
29909 msgstr ""
29910
29911 #. type: textblock
29912 #: ../tools/virt-win-reg.pl:453
29913 msgid ""
29914 "C<CurrentControlSet> is usually an alias for C<ControlSet001>.  In some "
29915 "circumstances it might refer to another control set.  The way to find out is "
29916 "to look at the C<HKLM\\SYSTEM\\Select> key:"
29917 msgstr ""
29918
29919 #. type: verbatim
29920 #: ../tools/virt-win-reg.pl:457
29921 #, no-wrap
29922 msgid ""
29923 " # virt-win-reg WindowsGuest 'HKLM\\SYSTEM\\Select'\n"
29924 " [HKEY_LOCAL_MACHINE\\SYSTEM\\Select]\n"
29925 " \"Current\"=dword:00000001\n"
29926 " \"Default\"=dword:00000001\n"
29927 " \"Failed\"=dword:00000000\n"
29928 " \"LastKnownGood\"=dword:00000002\n"
29929 "\n"
29930 msgstr ""
29931
29932 #. type: textblock
29933 #: ../tools/virt-win-reg.pl:464
29934 msgid "\"Current\" is the one which Windows will choose when it boots."
29935 msgstr ""
29936
29937 #. type: textblock
29938 #: ../tools/virt-win-reg.pl:466
29939 msgid ""
29940 "Similarly, other C<Current...> keys in the path may need to be replaced."
29941 msgstr ""
29942
29943 #. type: =head1
29944 #: ../tools/virt-win-reg.pl:469
29945 msgid "WINDOWS TIPS"
29946 msgstr ""
29947
29948 #. type: textblock
29949 #: ../tools/virt-win-reg.pl:471
29950 msgid ""
29951 "Note that some of these tips modify the guest disk image.  The guest I<must> "
29952 "be shut off, else you will get disk corruption."
29953 msgstr ""
29954
29955 #. type: =head2
29956 #: ../tools/virt-win-reg.pl:474
29957 msgid "RUNNING A BATCH SCRIPT WHEN A USER LOGS IN"
29958 msgstr ""
29959
29960 #. type: textblock
29961 #: ../tools/virt-win-reg.pl:476
29962 msgid ""
29963 "Prepare a DOS batch script, VBScript or executable.  Upload this using "
29964 "L<guestfish(1)>.  For this example the script is called C<test.bat> and it "
29965 "is uploaded into C<C:\\>:"
29966 msgstr ""
29967
29968 #. type: verbatim
29969 #: ../tools/virt-win-reg.pl:480
29970 #, no-wrap
29971 msgid ""
29972 " guestfish -i -d WindowsGuest upload test.bat /test.bat\n"
29973 "\n"
29974 msgstr ""
29975
29976 #. type: textblock
29977 #: ../tools/virt-win-reg.pl:482
29978 msgid "Prepare a regedit file containing the registry change:"
29979 msgstr ""
29980
29981 #. type: verbatim
29982 #: ../tools/virt-win-reg.pl:484
29983 #, no-wrap
29984 msgid ""
29985 " cat > test.reg <<'EOF'\n"
29986 " [HKLM\\Software\\Microsoft\\Windows\\CurrentVersion\\RunOnce]\n"
29987 " \"Test\"=\"c:\\\\test.bat\"\n"
29988 " EOF\n"
29989 "\n"
29990 msgstr ""
29991
29992 #. type: textblock
29993 #: ../tools/virt-win-reg.pl:489
29994 msgid ""
29995 "In this example we use the key C<RunOnce> which means that the script will "
29996 "run precisely once when the first user logs in.  If you want it to run every "
29997 "time a user logs in, replace C<RunOnce> with C<Run>."
29998 msgstr ""
29999
30000 #. type: textblock
30001 #: ../tools/virt-win-reg.pl:493
30002 msgid "Now update the registry:"
30003 msgstr ""
30004
30005 #. type: verbatim
30006 #: ../tools/virt-win-reg.pl:495
30007 #, no-wrap
30008 msgid ""
30009 " virt-win-reg --merge WindowsGuest test.reg\n"
30010 "\n"
30011 msgstr ""
30012
30013 #. type: =head2
30014 #: ../tools/virt-win-reg.pl:497
30015 msgid "INSTALLING A SERVICE"
30016 msgstr ""
30017
30018 #. type: textblock
30019 #: ../tools/virt-win-reg.pl:499
30020 msgid ""
30021 "This section assumes you are familiar with Windows services, and you either "
30022 "have a program which handles the Windows Service Control Protocol directly "
30023 "or you want to run any program using a service wrapper like SrvAny or the "
30024 "free RHSrvAny."
30025 msgstr ""
30026
30027 #. type: textblock
30028 #: ../tools/virt-win-reg.pl:504
30029 msgid ""
30030 "First upload the program and optionally the service wrapper.  In this case "
30031 "the test program is called C<test.exe> and we are using the RHSrvAny wrapper:"
30032 msgstr ""
30033
30034 #. type: verbatim
30035 #: ../tools/virt-win-reg.pl:508
30036 #, no-wrap
30037 msgid ""
30038 " guestfish -i -d WindowsGuest <<EOF\n"
30039 "   upload rhsrvany.exe /rhsrvany.exe\n"
30040 "   upload test.exe /test.exe\n"
30041 " EOF\n"
30042 "\n"
30043 msgstr ""
30044
30045 #. type: textblock
30046 #: ../tools/virt-win-reg.pl:513
30047 msgid ""
30048 "Prepare a regedit file containing the registry changes.  In this example, "
30049 "the first registry change is needed for the service itself or the service "
30050 "wrapper (if used).  The second registry change is only needed because I am "
30051 "using the RHSrvAny service wrapper."
30052 msgstr ""
30053
30054 #. type: verbatim
30055 #: ../tools/virt-win-reg.pl:518
30056 #, no-wrap
30057 msgid ""
30058 " cat > service.reg <<'EOF'\n"
30059 " [HKLM\\SYSTEM\\ControlSet001\\services\\RHSrvAny]\n"
30060 " \"Type\"=dword:00000010\n"
30061 " \"Start\"=dword:00000002\n"
30062 " \"ErrorControl\"=dword:00000001\n"
30063 " \"ImagePath\"=\"c:\\\\rhsrvany.exe\"\n"
30064 " \"DisplayName\"=\"RHSrvAny\"\n"
30065 " \"ObjectName\"=\"NetworkService\"\n"
30066 " \n"
30067 msgstr ""
30068
30069 #. type: verbatim
30070 #: ../tools/virt-win-reg.pl:527
30071 #, no-wrap
30072 msgid ""
30073 " [HKLM\\SYSTEM\\ControlSet001\\services\\RHSrvAny\\Parameters]\n"
30074 " \"CommandLine\"=\"c:\\\\test.exe\"\n"
30075 " \"PWD\"=\"c:\\\\Temp\"\n"
30076 " EOF\n"
30077 "\n"
30078 msgstr ""
30079
30080 #. type: textblock
30081 #: ../tools/virt-win-reg.pl:538
30082 msgid ""
30083 "For use of C<ControlSet001> see the section above in this manual page.  You "
30084 "may need to adjust this according to the control set that is in use by the "
30085 "guest."
30086 msgstr ""
30087
30088 #. type: textblock
30089 #: ../tools/virt-win-reg.pl:544
30090 msgid ""
30091 "C<\"ObjectName\"> controls the privileges that the service will have.  An "
30092 "alternative is C<\"ObjectName\"=\"LocalSystem\"> which would be the most "
30093 "privileged account."
30094 msgstr ""
30095
30096 #. type: textblock
30097 #: ../tools/virt-win-reg.pl:550
30098 msgid ""
30099 "For the meaning of the magic numbers, see this Microsoft KB article: "
30100 "L<http://support.microsoft.com/kb/103000>."
30101 msgstr ""
30102
30103 #. type: textblock
30104 #: ../tools/virt-win-reg.pl:555
30105 msgid "Update the registry:"
30106 msgstr ""
30107
30108 #. type: verbatim
30109 #: ../tools/virt-win-reg.pl:557
30110 #, no-wrap
30111 msgid ""
30112 " virt-win-reg --merge WindowsGuest service.reg\n"
30113 "\n"
30114 msgstr ""
30115
30116 #. type: textblock
30117 #: ../tools/virt-win-reg.pl:561
30118 msgid ""
30119 "Be careful when passing parameters containing C<\\> (backslash) in the "
30120 "shell.  Usually you will have to use 'single quotes' or double backslashes "
30121 "(but not both) to protect them from the shell."
30122 msgstr ""
30123
30124 #. type: textblock
30125 #: ../tools/virt-win-reg.pl:565
30126 msgid "Paths and value names are case-insensitive."
30127 msgstr ""
30128
30129 #. type: textblock
30130 #: ../tools/virt-win-reg.pl:574
30131 msgid ""
30132 "L<hivex(3)>, L<hivexsh(1)>, L<hivexregedit(1)>, L<guestfs(3)>, L<guestfish(1)"
30133 ">, L<virt-cat(1)>, L<Sys::Guestfs(3)>, L<Sys::Guestfs::Lib(3)>, L<Win::Hivex"
30134 "(3)>, L<Win::Hivex::Regedit(3)>, L<Sys::Virt(3)>, L<http://libguestfs.org/>."
30135 msgstr ""
30136
30137 #. type: textblock
30138 #: ../tools/virt-win-reg.pl:589 ../tools/virt-make-fs.pl:555
30139 msgid ""
30140 "When reporting bugs, please enable debugging and capture the I<complete> "
30141 "output:"
30142 msgstr ""
30143
30144 #. type: verbatim
30145 #: ../tools/virt-win-reg.pl:592
30146 #, no-wrap
30147 msgid ""
30148 " export LIBGUESTFS_DEBUG=1\n"
30149 " virt-win-reg --debug [... rest ...] > /tmp/virt-win-reg.log 2>&1\n"
30150 "\n"
30151 msgstr ""
30152
30153 #. type: textblock
30154 #: ../tools/virt-win-reg.pl:595
30155 msgid ""
30156 "Attach /tmp/virt-win-reg.log to a new bug report at L<https://bugzilla."
30157 "redhat.com/>"
30158 msgstr ""
30159
30160 #. type: textblock
30161 #: ../tools/virt-win-reg.pl:604 ../tools/virt-make-fs.pl:570
30162 msgid "Copyright (C) 2010 Red Hat Inc."
30163 msgstr ""
30164
30165 #. type: textblock
30166 #: ../tools/virt-list-filesystems.pl:32
30167 msgid ""
30168 "virt-list-filesystems - List filesystems in a virtual machine or disk image"
30169 msgstr ""
30170
30171 #. type: verbatim
30172 #: ../tools/virt-list-filesystems.pl:36
30173 #, no-wrap
30174 msgid ""
30175 " virt-list-filesystems [--options] domname\n"
30176 "\n"
30177 msgstr ""
30178
30179 #. type: verbatim
30180 #: ../tools/virt-list-filesystems.pl:38
30181 #, no-wrap
30182 msgid ""
30183 " virt-list-filesystems [--options] disk.img [disk.img ...]\n"
30184 "\n"
30185 msgstr ""
30186
30187 #. type: textblock
30188 #: ../tools/virt-list-filesystems.pl:42 ../tools/virt-list-partitions.pl:42
30189 msgid ""
30190 "This tool is obsolete.  Use L<virt-filesystems(1)> as a more flexible "
30191 "replacement."
30192 msgstr ""
30193
30194 #. type: textblock
30195 #: ../tools/virt-list-filesystems.pl:45
30196 msgid ""
30197 "C<virt-list-filesystems> is a command line tool to list the filesystems that "
30198 "are contained in a virtual machine or disk image."
30199 msgstr ""
30200
30201 #. type: textblock
30202 #: ../tools/virt-list-filesystems.pl:49
30203 msgid ""
30204 "C<virt-list-filesystems> is just a simple wrapper around L<libguestfs(3)> "
30205 "functionality.  For more complex cases you should look at the L<guestfish(1)"
30206 "> tool."
30207 msgstr ""
30208
30209 #. type: =item
30210 #: ../tools/virt-list-filesystems.pl:106 ../tools/virt-list-partitions.pl:115
30211 msgid "B<-l> | B<--long>"
30212 msgstr ""
30213
30214 #. type: textblock
30215 #: ../tools/virt-list-filesystems.pl:108
30216 msgid ""
30217 "With this option, C<virt-list-filesystems> displays the type of each "
30218 "filesystem too (where \"type\" means C<ext3>, C<xfs> etc.)"
30219 msgstr ""
30220
30221 #. type: =item
30222 #: ../tools/virt-list-filesystems.pl:115
30223 msgid "B<-a> | B<--all>"
30224 msgstr ""
30225
30226 #. type: textblock
30227 #: ../tools/virt-list-filesystems.pl:117
30228 msgid ""
30229 "Normally we only show mountable filesystems.  If this option is given then "
30230 "swap devices are shown too."
30231 msgstr ""
30232
30233 #. type: textblock
30234 #: ../tools/virt-list-filesystems.pl:191
30235 msgid ""
30236 "L<guestfs(3)>, L<guestfish(1)>, L<virt-cat(1)>, L<virt-tar(1)>, L<virt-"
30237 "filesystems(1)>, L<virt-list-partitions(1)>, L<Sys::Guestfs(3)>, L<Sys::"
30238 "Guestfs::Lib(3)>, L<Sys::Virt(3)>, L<http://libguestfs.org/>."
30239 msgstr ""
30240
30241 #. type: textblock
30242 #: ../tools/virt-list-filesystems.pl:208 ../tools/virt-tar.pl:307
30243 msgid "Copyright (C) 2009 Red Hat Inc."
30244 msgstr ""
30245
30246 #. type: textblock
30247 #: ../tools/virt-tar.pl:33
30248 msgid "virt-tar - Extract or upload files to a virtual machine"
30249 msgstr ""
30250
30251 #. type: verbatim
30252 #: ../tools/virt-tar.pl:37
30253 #, no-wrap
30254 msgid ""
30255 " virt-tar [--options] -x domname directory tarball\n"
30256 "\n"
30257 msgstr ""
30258
30259 #. type: verbatim
30260 #: ../tools/virt-tar.pl:39
30261 #, no-wrap
30262 msgid ""
30263 " virt-tar [--options] -u domname tarball directory\n"
30264 "\n"
30265 msgstr ""
30266
30267 #. type: verbatim
30268 #: ../tools/virt-tar.pl:41
30269 #, no-wrap
30270 msgid ""
30271 " virt-tar [--options] disk.img [disk.img ...] -x directory tarball\n"
30272 "\n"
30273 msgstr ""
30274
30275 #. type: verbatim
30276 #: ../tools/virt-tar.pl:43
30277 #, no-wrap
30278 msgid ""
30279 " virt-tar [--options] disk.img [disk.img ...] -u tarball directory\n"
30280 "\n"
30281 msgstr ""
30282
30283 #. type: textblock
30284 #: ../tools/virt-tar.pl:47
30285 msgid ""
30286 "This tool is obsolete.  Use L<virt-copy-in(1)>, L<virt-copy-out(1)>, L<virt-"
30287 "tar-in(1)>, L<virt-tar-out(1)> as replacements."
30288 msgstr ""
30289
30290 #. type: textblock
30291 #: ../tools/virt-tar.pl:52
30292 msgid "Download C</home> from the VM into a local tarball:"
30293 msgstr ""
30294
30295 #. type: verbatim
30296 #: ../tools/virt-tar.pl:54
30297 #, no-wrap
30298 msgid ""
30299 " virt-tar -x domname /home home.tar\n"
30300 "\n"
30301 msgstr ""
30302
30303 #. type: verbatim
30304 #: ../tools/virt-tar.pl:56
30305 #, no-wrap
30306 msgid ""
30307 " virt-tar -zx domname /home home.tar.gz\n"
30308 "\n"
30309 msgstr ""
30310
30311 #. type: textblock
30312 #: ../tools/virt-tar.pl:58
30313 msgid "Upload a local tarball and unpack it inside C</tmp> in the VM:"
30314 msgstr ""
30315
30316 #. type: verbatim
30317 #: ../tools/virt-tar.pl:60
30318 #, no-wrap
30319 msgid ""
30320 " virt-tar -u domname uploadstuff.tar /tmp\n"
30321 "\n"
30322 msgstr ""
30323
30324 #. type: verbatim
30325 #: ../tools/virt-tar.pl:62
30326 #, no-wrap
30327 msgid ""
30328 " virt-tar -zu domname uploadstuff.tar.gz /tmp\n"
30329 "\n"
30330 msgstr ""
30331
30332 #. type: textblock
30333 #: ../tools/virt-tar.pl:66
30334 msgid ""
30335 "You must I<not> use C<virt-tar> with the I<-u> option (upload) on live "
30336 "virtual machines.  If you do this, you risk disk corruption in the VM.  "
30337 "C<virt-tar> tries to stop you from doing this, but doesn't catch all cases."
30338 msgstr ""
30339
30340 #. type: textblock
30341 #: ../tools/virt-tar.pl:71
30342 msgid ""
30343 "You can use I<-x> (extract) on live virtual machines, but you might get "
30344 "inconsistent results or errors if there is filesystem activity inside the "
30345 "VM.  If the live VM is synched and quiescent, then C<virt-tar> will usually "
30346 "work, but the only way to guarantee consistent results is if the virtual "
30347 "machine is shut down."
30348 msgstr ""
30349
30350 #. type: textblock
30351 #: ../tools/virt-tar.pl:79
30352 msgid ""
30353 "C<virt-tar> is a general purpose archive tool for downloading and uploading "
30354 "parts of a guest filesystem.  There are many possibilities: making backups, "
30355 "uploading data files, snooping on guest activity, fixing or customizing "
30356 "guests, etc."
30357 msgstr ""
30358
30359 #. type: textblock
30360 #: ../tools/virt-tar.pl:84
30361 msgid ""
30362 "If you want to just view a single file, use L<virt-cat(1)>.  If you just "
30363 "want to edit a single file, use L<virt-edit(1)>.  For more complex cases you "
30364 "should look at the L<guestfish(1)> tool."
30365 msgstr ""
30366
30367 #. type: textblock
30368 #: ../tools/virt-tar.pl:88
30369 msgid ""
30370 "There are two modes of operation: I<-x> (eXtract) downloads a directory and "
30371 "its contents (recursively) from the virtual machine into a local tarball.  "
30372 "I<-u> uploads from a local tarball, unpacking it into a directory inside the "
30373 "virtual machine.  You cannot use these two options together."
30374 msgstr ""
30375
30376 #. type: textblock
30377 #: ../tools/virt-tar.pl:94
30378 msgid ""
30379 "In addition, you may need to use the I<-z> (gZip) option to enable "
30380 "compression.  When uploading, you have to specify I<-z> if the upload file "
30381 "is compressed because virt-tar won't detect this on its own."
30382 msgstr ""
30383
30384 #. type: textblock
30385 #: ../tools/virt-tar.pl:98
30386 msgid ""
30387 "C<virt-tar> can only handle tar (optionally gzipped) format tarballs.  For "
30388 "example it cannot do PKZip files or bzip2 compression.  If you want that "
30389 "then you'll have to rebuild the tarballs yourself.  (This is a limitation of "
30390 "the L<libguestfs(3)> API)."
30391 msgstr ""
30392
30393 #. type: =item
30394 #: ../tools/virt-tar.pl:156
30395 msgid "B<-x> | B<--extract> | B<--download>"
30396 msgstr ""
30397
30398 #. type: =item
30399 #: ../tools/virt-tar.pl:158
30400 msgid "B<-u> | B<--upload>"
30401 msgstr ""
30402
30403 #. type: textblock
30404 #: ../tools/virt-tar.pl:160
30405 msgid ""
30406 "Use I<-x> to extract (download) a directory from a virtual machine to a "
30407 "local tarball."
30408 msgstr ""
30409
30410 #. type: textblock
30411 #: ../tools/virt-tar.pl:163
30412 msgid ""
30413 "Use I<-u> to upload and unpack from a local tarball into a virtual machine.  "
30414 "Please read the L</WARNING> section above before using this option."
30415 msgstr ""
30416
30417 #. type: textblock
30418 #: ../tools/virt-tar.pl:167
30419 msgid "You must specify exactly one of these options."
30420 msgstr ""
30421
30422 #. type: =item
30423 #: ../tools/virt-tar.pl:173
30424 msgid "B<-z> | B<--gzip>"
30425 msgstr ""
30426
30427 #. type: textblock
30428 #: ../tools/virt-tar.pl:175
30429 msgid "Specify that the input or output tarball is gzip-compressed."
30430 msgstr ""
30431
30432 #. type: textblock
30433 #: ../tools/virt-tar.pl:288
30434 msgid ""
30435 "L<guestfs(3)>, L<guestfish(1)>, L<virt-cat(1)>, L<virt-edit(1)>, L<virt-copy-"
30436 "in(1)>, L<virt-copy-out(1)>, L<virt-tar-in(1)>, L<virt-tar-out(1)>, L<Sys::"
30437 "Guestfs(3)>, L<Sys::Guestfs::Lib(3)>, L<Sys::Virt(3)>, L<http://libguestfs."
30438 "org/>."
30439 msgstr ""
30440
30441 #. type: textblock
30442 #: ../tools/virt-make-fs.pl:37
30443 msgid "virt-make-fs - Make a filesystem from a tar archive or files"
30444 msgstr ""
30445
30446 #. type: verbatim
30447 #: ../tools/virt-make-fs.pl:41
30448 #, no-wrap
30449 msgid ""
30450 " virt-make-fs [--options] input.tar output.img\n"
30451 "\n"
30452 msgstr ""
30453
30454 #. type: verbatim
30455 #: ../tools/virt-make-fs.pl:43
30456 #, no-wrap
30457 msgid ""
30458 " virt-make-fs [--options] input.tar.gz output.img\n"
30459 "\n"
30460 msgstr ""
30461
30462 #. type: verbatim
30463 #: ../tools/virt-make-fs.pl:45
30464 #, no-wrap
30465 msgid ""
30466 " virt-make-fs [--options] directory output.img\n"
30467 "\n"
30468 msgstr ""
30469
30470 #. type: textblock
30471 #: ../tools/virt-make-fs.pl:49
30472 msgid ""
30473 "Virt-make-fs is a command line tool for creating a filesystem from a tar "
30474 "archive or some files in a directory.  It is similar to tools like L<mkisofs"
30475 "(1)>, L<genisoimage(1)> and L<mksquashfs(1)>.  Unlike those tools, it can "
30476 "create common filesystem types like ext2/3 or NTFS, which can be useful if "
30477 "you want to attach these filesystems to existing virtual machines (eg. to "
30478 "import large amounts of read-only data to a VM)."
30479 msgstr ""
30480
30481 #. type: textblock
30482 #: ../tools/virt-make-fs.pl:57
30483 msgid "Basic usage is:"
30484 msgstr ""
30485
30486 #. type: verbatim
30487 #: ../tools/virt-make-fs.pl:59
30488 #, no-wrap
30489 msgid ""
30490 " virt-make-fs input output\n"
30491 "\n"
30492 msgstr ""
30493
30494 #. type: textblock
30495 #: ../tools/virt-make-fs.pl:61
30496 msgid ""
30497 "where C<input> is either a directory containing files that you want to add, "
30498 "or a tar archive (either uncompressed tar or gzip-compressed tar); and "
30499 "C<output> is a disk image.  The input type is detected automatically.  The "
30500 "output disk image defaults to a raw ext2 image unless you specify extra "
30501 "flags (see L</OPTIONS> below)."
30502 msgstr ""
30503
30504 #. type: =head2
30505 #: ../tools/virt-make-fs.pl:67
30506 msgid "EXTRA SPACE"
30507 msgstr ""
30508
30509 #. type: textblock
30510 #: ../tools/virt-make-fs.pl:69
30511 msgid ""
30512 "Unlike formats such as tar and squashfs, a filesystem does not \"just fit\" "
30513 "the files that it contains, but might have extra space.  Depending on how "
30514 "you are going to use the output, you might think this extra space is wasted "
30515 "and want to minimize it, or you might want to leave space so that more files "
30516 "can be added later.  Virt-make-fs defaults to minimizing the extra space, "
30517 "but you can use the I<--size> flag to leave space in the filesystem if you "
30518 "want it."
30519 msgstr ""
30520
30521 #. type: textblock
30522 #: ../tools/virt-make-fs.pl:77
30523 msgid ""
30524 "An alternative way to leave extra space but not make the output image any "
30525 "bigger is to use an alternative disk image format (instead of the default "
30526 "\"raw\" format).  Using I<--format=qcow2> will use the native QEmu/KVM qcow2 "
30527 "image format (check your hypervisor supports this before using it).  This "
30528 "allows you to choose a large I<--size> but the extra space won't actually be "
30529 "allocated in the image until you try to store something in it."
30530 msgstr ""
30531
30532 #. type: textblock
30533 #: ../tools/virt-make-fs.pl:85
30534 msgid ""
30535 "Don't forget that you can also use local commands including L<resize2fs(8)> "
30536 "and L<virt-resize(1)> to resize existing filesystems, or rerun virt-make-fs "
30537 "to build another image from scratch."
30538 msgstr ""
30539
30540 #. type: =head3
30541 #: ../tools/virt-make-fs.pl:89 ../tools/virt-make-fs.pl:123
30542 #: ../tools/virt-make-fs.pl:142
30543 msgid "EXAMPLE"
30544 msgstr ""
30545
30546 #. type: verbatim
30547 #: ../tools/virt-make-fs.pl:91
30548 #, no-wrap
30549 msgid ""
30550 " virt-make-fs --format=qcow2 --size=+200M input output.img\n"
30551 "\n"
30552 msgstr ""
30553
30554 #. type: =head2
30555 #: ../tools/virt-make-fs.pl:93
30556 msgid "FILESYSTEM TYPE"
30557 msgstr ""
30558
30559 #. type: textblock
30560 #: ../tools/virt-make-fs.pl:95
30561 msgid ""
30562 "The default filesystem type is C<ext2>.  Just about any filesystem type that "
30563 "libguestfs supports can be used (but I<not> read-only formats like "
30564 "ISO9660).  Here are some of the more common choices:"
30565 msgstr ""
30566
30567 #. type: =item
30568 #: ../tools/virt-make-fs.pl:101
30569 msgid "I<ext3>"
30570 msgstr ""
30571
30572 #. type: textblock
30573 #: ../tools/virt-make-fs.pl:103
30574 msgid ""
30575 "Note that ext3 filesystems contain a journal, typically 1-32 MB in size.  If "
30576 "you are not going to use the filesystem in a way that requires the journal, "
30577 "then this is just wasted overhead."
30578 msgstr ""
30579
30580 #. type: =item
30581 #: ../tools/virt-make-fs.pl:107
30582 msgid "I<ntfs> or I<vfat>"
30583 msgstr ""
30584
30585 #. type: textblock
30586 #: ../tools/virt-make-fs.pl:109
30587 msgid "Useful if exporting data to a Windows guest."
30588 msgstr ""
30589
30590 #. type: textblock
30591 #: ../tools/virt-make-fs.pl:111
30592 msgid ""
30593 "I<Note for vfat>: The tar archive or local directory must only contain files "
30594 "which are owned by root (ie. UID:GID = 0:0).  The reason is that the tar "
30595 "program running within libguestfs is unable to change the ownership of non-"
30596 "root files, since vfat itself does not support this."
30597 msgstr ""
30598
30599 #. type: =item
30600 #: ../tools/virt-make-fs.pl:116
30601 msgid "I<minix>"
30602 msgstr ""
30603
30604 #. type: textblock
30605 #: ../tools/virt-make-fs.pl:118
30606 msgid ""
30607 "Lower overhead than C<ext2>, but certain limitations on filename length and "
30608 "total filesystem size."
30609 msgstr ""
30610
30611 #. type: verbatim
30612 #: ../tools/virt-make-fs.pl:125
30613 #, no-wrap
30614 msgid ""
30615 " virt-make-fs --type=minix input minixfs.img\n"
30616 "\n"
30617 msgstr ""
30618
30619 #. type: =head2
30620 #: ../tools/virt-make-fs.pl:127
30621 msgid "TO PARTITION OR NOT TO PARTITION"
30622 msgstr ""
30623
30624 #. type: textblock
30625 #: ../tools/virt-make-fs.pl:129
30626 msgid "Optionally virt-make-fs can add a partition table to the output disk."
30627 msgstr ""
30628
30629 #. type: textblock
30630 #: ../tools/virt-make-fs.pl:131
30631 msgid ""
30632 "Adding a partition can make the disk image more compatible with certain "
30633 "virtualized operating systems which don't expect to see a filesystem "
30634 "directly located on a block device (Linux doesn't care and will happily "
30635 "handle both types)."
30636 msgstr ""
30637
30638 #. type: textblock
30639 #: ../tools/virt-make-fs.pl:136
30640 msgid ""
30641 "On the other hand, if you have a partition table then the output image is no "
30642 "longer a straight filesystem.  For example you cannot run L<fsck(8)> "
30643 "directly on a partitioned disk image.  (However libguestfs tools such as "
30644 "L<guestfish(1)> and L<virt-resize(1)> can still be used)."
30645 msgstr ""
30646
30647 #. type: textblock
30648 #: ../tools/virt-make-fs.pl:144
30649 msgid "Add an MBR partition:"
30650 msgstr ""
30651
30652 #. type: verbatim
30653 #: ../tools/virt-make-fs.pl:146
30654 #, no-wrap
30655 msgid ""
30656 " virt-make-fs --partition -- input disk.img\n"
30657 "\n"
30658 msgstr ""
30659
30660 #. type: textblock
30661 #: ../tools/virt-make-fs.pl:148
30662 msgid ""
30663 "If the output disk image could be terabyte-sized or larger, it's better to "
30664 "use an EFI/GPT-compatible partition table:"
30665 msgstr ""
30666
30667 #. type: verbatim
30668 #: ../tools/virt-make-fs.pl:151
30669 #, no-wrap
30670 msgid ""
30671 " virt-make-fs --partition=gpt --size=+4T --format=qcow2 input disk.img\n"
30672 "\n"
30673 msgstr ""
30674
30675 #. type: textblock
30676 #: ../tools/virt-make-fs.pl:179
30677 msgid "Enable debugging information."
30678 msgstr ""
30679
30680 #. type: =item
30681 #: ../tools/virt-make-fs.pl:185
30682 msgid "B<--size=E<lt>NE<gt>>"
30683 msgstr ""
30684
30685 #. type: =item
30686 #: ../tools/virt-make-fs.pl:187
30687 msgid "B<--size=+E<lt>NE<gt>>"
30688 msgstr ""
30689
30690 #. type: =item
30691 #: ../tools/virt-make-fs.pl:189
30692 msgid "B<-s E<lt>NE<gt>>"
30693 msgstr ""
30694
30695 #. type: =item
30696 #: ../tools/virt-make-fs.pl:191
30697 msgid "B<-s +E<lt>NE<gt>>"
30698 msgstr ""
30699
30700 #. type: textblock
30701 #: ../tools/virt-make-fs.pl:193
30702 msgid ""
30703 "Use the I<--size> (or I<-s>) option to choose the size of the output image."
30704 msgstr ""
30705
30706 #. type: textblock
30707 #: ../tools/virt-make-fs.pl:196
30708 msgid ""
30709 "If this option is I<not> given, then the output image will be just large "
30710 "enough to contain all the files, with not much wasted space."
30711 msgstr ""
30712
30713 #. type: textblock
30714 #: ../tools/virt-make-fs.pl:199
30715 msgid ""
30716 "To choose a fixed size output disk, specify an absolute number followed by b/"
30717 "K/M/G/T/P/E to mean bytes, Kilobytes, Megabytes, Gigabytes, Terabytes, "
30718 "Petabytes or Exabytes.  This must be large enough to contain all the input "
30719 "files, else you will get an error."
30720 msgstr ""
30721
30722 #. type: textblock
30723 #: ../tools/virt-make-fs.pl:204
30724 msgid ""
30725 "To leave extra space, specify C<+> (plus sign) and a number followed by b/K/"
30726 "M/G/T/P/E to mean bytes, Kilobytes, Megabytes, Gigabytes, Terabytes, "
30727 "Petabytes or Exabytes.  For example: I<--size=+200M> means enough space for "
30728 "the input files, and (approximately) an extra 200 MB free space."
30729 msgstr ""
30730
30731 #. type: textblock
30732 #: ../tools/virt-make-fs.pl:210
30733 msgid ""
30734 "Note that virt-make-fs estimates free space, and therefore will not produce "
30735 "filesystems containing precisely the free space requested.  (It is much more "
30736 "expensive and time-consuming to produce a filesystem which has precisely the "
30737 "desired free space)."
30738 msgstr ""
30739
30740 #. type: =item
30741 #: ../tools/virt-make-fs.pl:219
30742 msgid "B<--format=E<lt>fmtE<gt>>"
30743 msgstr ""
30744
30745 #. type: =item
30746 #: ../tools/virt-make-fs.pl:221
30747 msgid "B<-F E<lt>fmtE<gt>>"
30748 msgstr ""
30749
30750 #. type: textblock
30751 #: ../tools/virt-make-fs.pl:223
30752 msgid "Choose the output disk image format."
30753 msgstr ""
30754
30755 #. type: textblock
30756 #: ../tools/virt-make-fs.pl:225
30757 msgid "The default is C<raw> (raw disk image)."
30758 msgstr ""
30759
30760 #. type: textblock
30761 #: ../tools/virt-make-fs.pl:227
30762 msgid ""
30763 "For other choices, see the L<qemu-img(1)> manpage.  The only other choice "
30764 "that would really make sense here is C<qcow2>."
30765 msgstr ""
30766
30767 #. type: =item
30768 #: ../tools/virt-make-fs.pl:234
30769 msgid "B<--type=E<lt>fsE<gt>>"
30770 msgstr ""
30771
30772 #. type: =item
30773 #: ../tools/virt-make-fs.pl:236
30774 msgid "B<-t E<lt>fsE<gt>>"
30775 msgstr ""
30776
30777 #. type: textblock
30778 #: ../tools/virt-make-fs.pl:238
30779 msgid "Choose the output filesystem type."
30780 msgstr ""
30781
30782 #. type: textblock
30783 #: ../tools/virt-make-fs.pl:240
30784 msgid "The default is C<ext2>."
30785 msgstr ""
30786
30787 #. type: textblock
30788 #: ../tools/virt-make-fs.pl:242
30789 msgid ""
30790 "Any filesystem which is supported read-write by libguestfs can be used here."
30791 msgstr ""
30792
30793 #. type: =item
30794 #: ../tools/virt-make-fs.pl:249
30795 msgid "B<--partition>"
30796 msgstr ""
30797
30798 #. type: =item
30799 #: ../tools/virt-make-fs.pl:251
30800 msgid "B<--partition=E<lt>parttypeE<gt>>"
30801 msgstr ""
30802
30803 #. type: textblock
30804 #: ../tools/virt-make-fs.pl:253
30805 msgid ""
30806 "If specified, this flag adds an MBR partition table to the output disk image."
30807 msgstr ""
30808
30809 #. type: textblock
30810 #: ../tools/virt-make-fs.pl:256
30811 msgid ""
30812 "You can change the partition table type, eg. I<--partition=gpt> for large "
30813 "disks."
30814 msgstr ""
30815
30816 #. type: textblock
30817 #: ../tools/virt-make-fs.pl:259
30818 msgid ""
30819 "Note that if you just use a lonesome I<--partition>, the Perl option parser "
30820 "might consider the next parameter to be the partition type.  For example:"
30821 msgstr ""
30822
30823 #. type: verbatim
30824 #: ../tools/virt-make-fs.pl:263
30825 #, no-wrap
30826 msgid ""
30827 " virt-make-fs --partition input.tar ...\n"
30828 "\n"
30829 msgstr ""
30830
30831 #. type: textblock
30832 #: ../tools/virt-make-fs.pl:265
30833 msgid ""
30834 "would cause virt-make-fs to think you wanted to use a partition type of "
30835 "C<input.tar> which is completely wrong.  To avoid this, use I<--> (a double "
30836 "dash) between options and the input file argument:"
30837 msgstr ""
30838
30839 #. type: verbatim
30840 #: ../tools/virt-make-fs.pl:269
30841 #, no-wrap
30842 msgid ""
30843 " virt-make-fs --partition -- input.tar ...\n"
30844 "\n"
30845 msgstr ""
30846
30847 #. type: textblock
30848 #: ../tools/virt-make-fs.pl:541
30849 msgid ""
30850 "L<guestfish(1)>, L<virt-resize(1)>, L<virt-tar-in(1)>, L<mkisofs(1)>, "
30851 "L<genisoimage(1)>, L<mksquashfs(1)>, L<mke2fs(8)>, L<resize2fs(8)>, L<guestfs"
30852 "(3)>, L<Sys::Guestfs(3)>, L<http://libguestfs.org/>."
30853 msgstr ""
30854
30855 #. type: verbatim
30856 #: ../tools/virt-make-fs.pl:558
30857 #, no-wrap
30858 msgid ""
30859 " export LIBGUESTFS_DEBUG=1\n"
30860 " virt-make-fs --debug [...] > /tmp/virt-make-fs.log 2>&1\n"
30861 "\n"
30862 msgstr ""
30863
30864 #. type: textblock
30865 #: ../tools/virt-make-fs.pl:561
30866 msgid ""
30867 "Attach /tmp/virt-make-fs.log to a new bug report at L<https://bugzilla."
30868 "redhat.com/>"
30869 msgstr ""
30870
30871 #. type: textblock
30872 #: ../tools/virt-list-partitions.pl:32
30873 msgid ""
30874 "virt-list-partitions - List partitions in a virtual machine or disk image"
30875 msgstr ""
30876
30877 #. type: verbatim
30878 #: ../tools/virt-list-partitions.pl:36
30879 #, no-wrap
30880 msgid ""
30881 " virt-list-partitions [--options] domname\n"
30882 "\n"
30883 msgstr ""
30884
30885 #. type: verbatim
30886 #: ../tools/virt-list-partitions.pl:38
30887 #, no-wrap
30888 msgid ""
30889 " virt-list-partitions [--options] disk.img [disk.img ...]\n"
30890 "\n"
30891 msgstr ""
30892
30893 #. type: textblock
30894 #: ../tools/virt-list-partitions.pl:45
30895 msgid ""
30896 "C<virt-list-partitions> is a command line tool to list the partitions that "
30897 "are contained in a virtual machine or disk image.  It is mainly useful as a "
30898 "first step to using L<virt-resize(1)>."
30899 msgstr ""
30900
30901 #. type: textblock
30902 #: ../tools/virt-list-partitions.pl:50
30903 msgid ""
30904 "C<virt-list-partitions> is just a simple wrapper around L<libguestfs(3)> "
30905 "functionality.  For more complex cases you should look at the L<guestfish(1)"
30906 "> tool."
30907 msgstr ""
30908
30909 #. type: =item
30910 #: ../tools/virt-list-partitions.pl:107
30911 msgid "B<-h> | B<--human-readable>"
30912 msgstr ""
30913
30914 #. type: textblock
30915 #: ../tools/virt-list-partitions.pl:109
30916 msgid "Show sizes in human-readable form (eg. \"1G\")."
30917 msgstr ""
30918
30919 #. type: textblock
30920 #: ../tools/virt-list-partitions.pl:117
30921 msgid ""
30922 "With this option, C<virt-list-partitions> displays the type and size of each "
30923 "partition too (where \"type\" means C<ext3>, C<pv> etc.)"
30924 msgstr ""
30925
30926 #. type: =item
30927 #: ../tools/virt-list-partitions.pl:124
30928 msgid "B<-t> | B<--total>"
30929 msgstr ""
30930
30931 #. type: textblock
30932 #: ../tools/virt-list-partitions.pl:126
30933 msgid ""
30934 "Display the total size of each block device (as a separate row or rows)."
30935 msgstr ""
30936
30937 #. type: textblock
30938 #: ../tools/virt-list-partitions.pl:259
30939 msgid ""
30940 "L<guestfs(3)>, L<guestfish(1)>, L<virt-filesystems(1)>, L<virt-list-"
30941 "filesystems(1)>, L<virt-resize(1)>, L<Sys::Guestfs(3)>, L<Sys::Guestfs::Lib"
30942 "(3)>, L<Sys::Virt(3)>, L<http://libguestfs.org/>."
30943 msgstr ""
30944
30945 #. type: textblock
30946 #: ../tools/virt-list-partitions.pl:275
30947 msgid "Copyright (C) 2009-2010 Red Hat Inc."
30948 msgstr ""