Version 1.10.6.
[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-27 15: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:2968 ../src/guestfs.pod:2972 ../src/guestfs.pod:2976
868 #: ../src/guestfs.pod:2980 ../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-perl(3)>, L<guestfs-"
5747 "python(3)>, L<guestfs-ruby(3)>, L<guestfish(1)>, L<guestmount(1)>, L<virt-cat"
5748 "(1)>, L<virt-copy-in(1)>, L<virt-copy-out(1)>, L<virt-df(1)>, L<virt-edit(1)"
5749 ">, L<virt-filesystems(1)>, L<virt-inspector(1)>, L<virt-list-filesystems(1)"
5750 ">, L<virt-list-partitions(1)>, L<virt-ls(1)>, L<virt-make-fs(1)>, L<virt-"
5751 "rescue(1)>, L<virt-tar(1)>, L<virt-tar-in(1)>, L<virt-tar-out(1)>, L<virt-"
5752 "win-reg(1)>, L<qemu(1)>, L<febootstrap(1)>, L<hivex(3)>, L<http://libguestfs."
5753 "org/>."
5754 msgstr ""
5755
5756 #. type: textblock
5757 #: ../src/guestfs.pod:2947
5758 msgid ""
5759 "Tools with a similar purpose: L<fdisk(8)>, L<parted(8)>, L<kpartx(8)>, L<lvm"
5760 "(8)>, L<disktype(1)>."
5761 msgstr ""
5762
5763 #. type: =head1
5764 #: ../src/guestfs.pod:2954 ../tools/virt-win-reg.pl:587
5765 #: ../tools/virt-make-fs.pl:553
5766 msgid "BUGS"
5767 msgstr "ВАДИ"
5768
5769 #. type: textblock
5770 #: ../src/guestfs.pod:2956
5771 msgid "To get a list of bugs against libguestfs use this link:"
5772 msgstr ""
5773 "Щоб переглянути список відомих вад у libguestfs, скористайтеся таким "
5774 "посиланням:"
5775
5776 #. type: textblock
5777 #: ../src/guestfs.pod:2958
5778 msgid ""
5779 "L<https://bugzilla.redhat.com/buglist.cgi?"
5780 "component=libguestfs&product=Virtualization+Tools>"
5781 msgstr ""
5782 "L<https://bugzilla.redhat.com/buglist.cgi?"
5783 "component=libguestfs&product=Virtualization+Tools>"
5784
5785 #. type: textblock
5786 #: ../src/guestfs.pod:2960
5787 msgid "To report a new bug against libguestfs use this link:"
5788 msgstr "Для звітування щодо вад у libguestfs скористайтеся цим посиланням:"
5789
5790 #. type: textblock
5791 #: ../src/guestfs.pod:2962
5792 msgid ""
5793 "L<https://bugzilla.redhat.com/enter_bug.cgi?"
5794 "component=libguestfs&product=Virtualization+Tools>"
5795 msgstr ""
5796 "L<https://bugzilla.redhat.com/enter_bug.cgi?"
5797 "component=libguestfs&product=Virtualization+Tools>"
5798
5799 #. type: textblock
5800 #: ../src/guestfs.pod:2964
5801 msgid "When reporting a bug, please check:"
5802 msgstr ""
5803
5804 #. type: textblock
5805 #: ../src/guestfs.pod:2970
5806 msgid "That the bug hasn't been reported already."
5807 msgstr ""
5808
5809 #. type: textblock
5810 #: ../src/guestfs.pod:2974
5811 msgid "That you are testing a recent version."
5812 msgstr ""
5813
5814 #. type: textblock
5815 #: ../src/guestfs.pod:2978
5816 msgid "Describe the bug accurately, and give a way to reproduce it."
5817 msgstr ""
5818
5819 #. type: textblock
5820 #: ../src/guestfs.pod:2982
5821 msgid ""
5822 "Run libguestfs-test-tool and paste the B<complete, unedited> output into the "
5823 "bug report."
5824 msgstr ""
5825
5826 #. type: =head1
5827 #: ../src/guestfs.pod:2987 ../fish/guestfish.pod:1172
5828 #: ../test-tool/libguestfs-test-tool.pod:93 ../fuse/guestmount.pod:288
5829 msgid "AUTHORS"
5830 msgstr "АВТОРИ"
5831
5832 #. type: textblock
5833 #: ../src/guestfs.pod:2989 ../fish/guestfish.pod:1174
5834 #: ../test-tool/libguestfs-test-tool.pod:95 ../fuse/guestmount.pod:290
5835 msgid "Richard W.M. Jones (C<rjones at redhat dot com>)"
5836 msgstr ""
5837
5838 #. type: =head1
5839 #: ../src/guestfs.pod:2991 ../fish/guestfish.pod:1176
5840 #: ../test-tool/libguestfs-test-tool.pod:97 ../fuse/guestmount.pod:292
5841 #: ../tools/virt-edit.pl:514 ../tools/virt-win-reg.pl:602
5842 #: ../tools/virt-list-filesystems.pl:206 ../tools/virt-tar.pl:305
5843 #: ../tools/virt-make-fs.pl:568 ../tools/virt-list-partitions.pl:273
5844 msgid "COPYRIGHT"
5845 msgstr "АВТОРСЬКІ ПРАВА"
5846
5847 #. type: textblock
5848 #: ../src/guestfs.pod:2993 ../fish/guestfish.pod:1178
5849 #: ../test-tool/libguestfs-test-tool.pod:99
5850 msgid "Copyright (C) 2009-2011 Red Hat Inc.  L<http://libguestfs.org/>"
5851 msgstr ""
5852
5853 #. type: textblock
5854 #: ../src/guestfs.pod:2996
5855 msgid ""
5856 "This library is free software; you can redistribute it and/or modify it "
5857 "under the terms of the GNU Lesser General Public License as published by the "
5858 "Free Software Foundation; either version 2 of the License, or (at your "
5859 "option) any later version."
5860 msgstr ""
5861
5862 #. type: textblock
5863 #: ../src/guestfs.pod:3001
5864 msgid ""
5865 "This library is distributed in the hope that it will be useful, but WITHOUT "
5866 "ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or "
5867 "FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public License "
5868 "for more details."
5869 msgstr ""
5870
5871 #. type: textblock
5872 #: ../src/guestfs.pod:3006
5873 msgid ""
5874 "You should have received a copy of the GNU Lesser General Public License "
5875 "along with this library; if not, write to the Free Software Foundation, "
5876 "Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA"
5877 msgstr ""
5878
5879 #. type: =head2
5880 #: ../src/guestfs-actions.pod:1
5881 msgid "guestfs_add_cdrom"
5882 msgstr ""
5883
5884 #. type: verbatim
5885 #: ../src/guestfs-actions.pod:3
5886 #, no-wrap
5887 msgid ""
5888 " int\n"
5889 " guestfs_add_cdrom (guestfs_h *g,\n"
5890 "                    const char *filename);\n"
5891 "\n"
5892 msgstr ""
5893
5894 #. type: textblock
5895 #: ../src/guestfs-actions.pod:7 ../fish/guestfish-actions.pod:5
5896 msgid "This function adds a virtual CD-ROM disk image to the guest."
5897 msgstr ""
5898
5899 #. type: textblock
5900 #: ../src/guestfs-actions.pod:9 ../fish/guestfish-actions.pod:7
5901 msgid "This is equivalent to the qemu parameter I<-cdrom filename>."
5902 msgstr ""
5903
5904 #. type: textblock
5905 #: ../src/guestfs-actions.pod:17
5906 msgid ""
5907 "This call checks for the existence of C<filename>.  This stops you from "
5908 "specifying other types of drive which are supported by qemu such as C<nbd:> "
5909 "and C<http:> URLs.  To specify those, use the general C<guestfs_config> call "
5910 "instead."
5911 msgstr ""
5912
5913 #. type: textblock
5914 #: ../src/guestfs-actions.pod:24
5915 msgid ""
5916 "If you just want to add an ISO file (often you use this as an efficient way "
5917 "to transfer large files into the guest), then you should probably use "
5918 "C<guestfs_add_drive_ro> instead."
5919 msgstr ""
5920
5921 #. type: textblock
5922 #: ../src/guestfs-actions.pod:30 ../src/guestfs-actions.pod:134
5923 #: ../src/guestfs-actions.pod:195 ../src/guestfs-actions.pod:232
5924 #: ../src/guestfs-actions.pod:246 ../src/guestfs-actions.pod:267
5925 #: ../src/guestfs-actions.pod:287 ../src/guestfs-actions.pod:301
5926 #: ../src/guestfs-actions.pod:416 ../src/guestfs-actions.pod:436
5927 #: ../src/guestfs-actions.pod:450 ../src/guestfs-actions.pod:495
5928 #: ../src/guestfs-actions.pod:523 ../src/guestfs-actions.pod:541
5929 #: ../src/guestfs-actions.pod:608 ../src/guestfs-actions.pod:641
5930 #: ../src/guestfs-actions.pod:655 ../src/guestfs-actions.pod:670
5931 #: ../src/guestfs-actions.pod:769 ../src/guestfs-actions.pod:787
5932 #: ../src/guestfs-actions.pod:801 ../src/guestfs-actions.pod:815
5933 #: ../src/guestfs-actions.pod:976 ../src/guestfs-actions.pod:996
5934 #: ../src/guestfs-actions.pod:1014 ../src/guestfs-actions.pod:1098
5935 #: ../src/guestfs-actions.pod:1116 ../src/guestfs-actions.pod:1135
5936 #: ../src/guestfs-actions.pod:1149 ../src/guestfs-actions.pod:1169
5937 #: ../src/guestfs-actions.pod:1239 ../src/guestfs-actions.pod:1270
5938 #: ../src/guestfs-actions.pod:1295 ../src/guestfs-actions.pod:1337
5939 #: ../src/guestfs-actions.pod:1443 ../src/guestfs-actions.pod:1477
5940 #: ../src/guestfs-actions.pod:1692 ../src/guestfs-actions.pod:1714
5941 #: ../src/guestfs-actions.pod:1801 ../src/guestfs-actions.pod:2263
5942 #: ../src/guestfs-actions.pod:2407 ../src/guestfs-actions.pod:2468
5943 #: ../src/guestfs-actions.pod:2503 ../src/guestfs-actions.pod:3456
5944 #: ../src/guestfs-actions.pod:3471 ../src/guestfs-actions.pod:3496
5945 #: ../src/guestfs-actions.pod:3651 ../src/guestfs-actions.pod:3665
5946 #: ../src/guestfs-actions.pod:3678 ../src/guestfs-actions.pod:3692
5947 #: ../src/guestfs-actions.pod:3707 ../src/guestfs-actions.pod:3743
5948 #: ../src/guestfs-actions.pod:3815 ../src/guestfs-actions.pod:3835
5949 #: ../src/guestfs-actions.pod:3852 ../src/guestfs-actions.pod:3875
5950 #: ../src/guestfs-actions.pod:3898 ../src/guestfs-actions.pod:3930
5951 #: ../src/guestfs-actions.pod:3949 ../src/guestfs-actions.pod:3968
5952 #: ../src/guestfs-actions.pod:4003 ../src/guestfs-actions.pod:4015
5953 #: ../src/guestfs-actions.pod:4051 ../src/guestfs-actions.pod:4067
5954 #: ../src/guestfs-actions.pod:4080 ../src/guestfs-actions.pod:4095
5955 #: ../src/guestfs-actions.pod:4112 ../src/guestfs-actions.pod:4205
5956 #: ../src/guestfs-actions.pod:4225 ../src/guestfs-actions.pod:4238
5957 #: ../src/guestfs-actions.pod:4289 ../src/guestfs-actions.pod:4307
5958 #: ../src/guestfs-actions.pod:4325 ../src/guestfs-actions.pod:4341
5959 #: ../src/guestfs-actions.pod:4355 ../src/guestfs-actions.pod:4369
5960 #: ../src/guestfs-actions.pod:4386 ../src/guestfs-actions.pod:4401
5961 #: ../src/guestfs-actions.pod:4421 ../src/guestfs-actions.pod:4479
5962 #: ../src/guestfs-actions.pod:4552 ../src/guestfs-actions.pod:4583
5963 #: ../src/guestfs-actions.pod:4602 ../src/guestfs-actions.pod:4621
5964 #: ../src/guestfs-actions.pod:4633 ../src/guestfs-actions.pod:4650
5965 #: ../src/guestfs-actions.pod:4663 ../src/guestfs-actions.pod:4678
5966 #: ../src/guestfs-actions.pod:4693 ../src/guestfs-actions.pod:4728
5967 #: ../src/guestfs-actions.pod:4750 ../src/guestfs-actions.pod:4770
5968 #: ../src/guestfs-actions.pod:4784 ../src/guestfs-actions.pod:4801
5969 #: ../src/guestfs-actions.pod:4850 ../src/guestfs-actions.pod:4896
5970 #: ../src/guestfs-actions.pod:4910 ../src/guestfs-actions.pod:4938
5971 #: ../src/guestfs-actions.pod:4955 ../src/guestfs-actions.pod:4973
5972 #: ../src/guestfs-actions.pod:5107 ../src/guestfs-actions.pod:5164
5973 #: ../src/guestfs-actions.pod:5186 ../src/guestfs-actions.pod:5204
5974 #: ../src/guestfs-actions.pod:5236 ../src/guestfs-actions.pod:5302
5975 #: ../src/guestfs-actions.pod:5319 ../src/guestfs-actions.pod:5332
5976 #: ../src/guestfs-actions.pod:5346 ../src/guestfs-actions.pod:5635
5977 #: ../src/guestfs-actions.pod:5654 ../src/guestfs-actions.pod:5673
5978 #: ../src/guestfs-actions.pod:5685 ../src/guestfs-actions.pod:5697
5979 #: ../src/guestfs-actions.pod:5711 ../src/guestfs-actions.pod:5723
5980 #: ../src/guestfs-actions.pod:5737 ../src/guestfs-actions.pod:5753
5981 #: ../src/guestfs-actions.pod:5774 ../src/guestfs-actions.pod:5793
5982 #: ../src/guestfs-actions.pod:5812 ../src/guestfs-actions.pod:5842
5983 #: ../src/guestfs-actions.pod:5858 ../src/guestfs-actions.pod:5881
5984 #: ../src/guestfs-actions.pod:5899 ../src/guestfs-actions.pod:5918
5985 #: ../src/guestfs-actions.pod:5939 ../src/guestfs-actions.pod:5958
5986 #: ../src/guestfs-actions.pod:5975 ../src/guestfs-actions.pod:6003
5987 #: ../src/guestfs-actions.pod:6027 ../src/guestfs-actions.pod:6046
5988 #: ../src/guestfs-actions.pod:6070 ../src/guestfs-actions.pod:6089
5989 #: ../src/guestfs-actions.pod:6104 ../src/guestfs-actions.pod:6123
5990 #: ../src/guestfs-actions.pod:6160 ../src/guestfs-actions.pod:6190
5991 #: ../src/guestfs-actions.pod:6223 ../src/guestfs-actions.pod:6345
5992 #: ../src/guestfs-actions.pod:6466 ../src/guestfs-actions.pod:6478
5993 #: ../src/guestfs-actions.pod:6491 ../src/guestfs-actions.pod:6504
5994 #: ../src/guestfs-actions.pod:6526 ../src/guestfs-actions.pod:6539
5995 #: ../src/guestfs-actions.pod:6552 ../src/guestfs-actions.pod:6565
5996 #: ../src/guestfs-actions.pod:6580 ../src/guestfs-actions.pod:6639
5997 #: ../src/guestfs-actions.pod:6656 ../src/guestfs-actions.pod:6672
5998 #: ../src/guestfs-actions.pod:6688 ../src/guestfs-actions.pod:6705
5999 #: ../src/guestfs-actions.pod:6718 ../src/guestfs-actions.pod:6738
6000 #: ../src/guestfs-actions.pod:6774 ../src/guestfs-actions.pod:6788
6001 #: ../src/guestfs-actions.pod:6829 ../src/guestfs-actions.pod:6842
6002 #: ../src/guestfs-actions.pod:6860 ../src/guestfs-actions.pod:6894
6003 #: ../src/guestfs-actions.pod:6930 ../src/guestfs-actions.pod:7049
6004 #: ../src/guestfs-actions.pod:7067 ../src/guestfs-actions.pod:7081
6005 #: ../src/guestfs-actions.pod:7136 ../src/guestfs-actions.pod:7149
6006 #: ../src/guestfs-actions.pod:7194 ../src/guestfs-actions.pod:7227
6007 #: ../src/guestfs-actions.pod:7288 ../src/guestfs-actions.pod:7314
6008 #: ../src/guestfs-actions.pod:7380 ../src/guestfs-actions.pod:7399
6009 #: ../src/guestfs-actions.pod:7428
6010 msgid "This function returns 0 on success or -1 on error."
6011 msgstr ""
6012
6013 #. type: textblock
6014 #: ../src/guestfs-actions.pod:32 ../src/guestfs-actions.pod:248
6015 #: ../src/guestfs-actions.pod:269 ../fish/guestfish-actions.pod:28
6016 #: ../fish/guestfish-actions.pod:158 ../fish/guestfish-actions.pod:172
6017 msgid ""
6018 "This function is deprecated.  In new code, use the C<add_drive_opts> call "
6019 "instead."
6020 msgstr ""
6021
6022 #. type: textblock
6023 #: ../src/guestfs-actions.pod:35 ../src/guestfs-actions.pod:251
6024 #: ../src/guestfs-actions.pod:272 ../src/guestfs-actions.pod:1448
6025 #: ../src/guestfs-actions.pod:1941 ../src/guestfs-actions.pod:1962
6026 #: ../src/guestfs-actions.pod:4426 ../src/guestfs-actions.pod:4733
6027 #: ../src/guestfs-actions.pod:6168 ../src/guestfs-actions.pod:6198
6028 #: ../src/guestfs-actions.pod:6231 ../src/guestfs-actions.pod:6290
6029 #: ../src/guestfs-actions.pod:7232 ../src/guestfs-actions.pod:7322
6030 #: ../src/guestfs-actions.pod:7491 ../fish/guestfish-actions.pod:31
6031 #: ../fish/guestfish-actions.pod:161 ../fish/guestfish-actions.pod:175
6032 #: ../fish/guestfish-actions.pod:956 ../fish/guestfish-actions.pod:1316
6033 #: ../fish/guestfish-actions.pod:1330 ../fish/guestfish-actions.pod:3005
6034 #: ../fish/guestfish-actions.pod:3202 ../fish/guestfish-actions.pod:4183
6035 #: ../fish/guestfish-actions.pod:4206 ../fish/guestfish-actions.pod:4228
6036 #: ../fish/guestfish-actions.pod:4266 ../fish/guestfish-actions.pod:4907
6037 #: ../fish/guestfish-actions.pod:5004
6038 msgid ""
6039 "Deprecated functions will not be removed from the API, but the fact that "
6040 "they are deprecated indicates that there are problems with correct use of "
6041 "these functions."
6042 msgstr ""
6043
6044 #. type: textblock
6045 #: ../src/guestfs-actions.pod:39 ../src/guestfs-actions.pod:136
6046 #: ../src/guestfs-actions.pod:1100 ../src/guestfs-actions.pod:1913
6047 #: ../src/guestfs-actions.pod:2011 ../src/guestfs-actions.pod:2114
6048 #: ../src/guestfs-actions.pod:3458 ../src/guestfs-actions.pod:3478
6049 #: ../src/guestfs-actions.pod:4737 ../src/guestfs-actions.pod:5860
6050 #: ../src/guestfs-actions.pod:5977 ../src/guestfs-actions.pod:6091
6051 #: ../src/guestfs-actions.pod:6582 ../src/guestfs-actions.pod:6707
6052 #: ../src/guestfs-actions.pod:7236
6053 msgid "(Added in 0.3)"
6054 msgstr ""
6055
6056 #. type: =head2
6057 #: ../src/guestfs-actions.pod:41
6058 msgid "guestfs_add_domain"
6059 msgstr ""
6060
6061 #. type: verbatim
6062 #: ../src/guestfs-actions.pod:43
6063 #, no-wrap
6064 msgid ""
6065 " int\n"
6066 " guestfs_add_domain (guestfs_h *g,\n"
6067 "                     const char *dom,\n"
6068 "                     ...);\n"
6069 "\n"
6070 msgstr ""
6071
6072 #. type: textblock
6073 #: ../src/guestfs-actions.pod:48 ../src/guestfs-actions.pod:145
6074 #: ../src/guestfs-actions.pod:4440
6075 msgid ""
6076 "You may supply a list of optional arguments to this call.  Use zero or more "
6077 "of the following pairs of parameters, and terminate the list with C<-1> on "
6078 "its own.  See L</CALLS WITH OPTIONAL ARGUMENTS>."
6079 msgstr ""
6080
6081 #. type: verbatim
6082 #: ../src/guestfs-actions.pod:53
6083 #, no-wrap
6084 msgid ""
6085 " GUESTFS_ADD_DOMAIN_LIBVIRTURI, const char *libvirturi,\n"
6086 " GUESTFS_ADD_DOMAIN_READONLY, int readonly,\n"
6087 " GUESTFS_ADD_DOMAIN_IFACE, const char *iface,\n"
6088 " GUESTFS_ADD_DOMAIN_LIVE, int live,\n"
6089 "\n"
6090 msgstr ""
6091
6092 #. type: textblock
6093 #: ../src/guestfs-actions.pod:58
6094 msgid ""
6095 "This function adds the disk(s) attached to the named libvirt domain C<dom>.  "
6096 "It works by connecting to libvirt, requesting the domain and domain XML from "
6097 "libvirt, parsing it for disks, and calling C<guestfs_add_drive_opts> on each "
6098 "one."
6099 msgstr ""
6100
6101 #. type: textblock
6102 #: ../src/guestfs-actions.pod:63 ../fish/guestfish-actions.pod:46
6103 msgid ""
6104 "The number of disks added is returned.  This operation is atomic: if an "
6105 "error is returned, then no disks are added."
6106 msgstr ""
6107
6108 #. type: textblock
6109 #: ../src/guestfs-actions.pod:66 ../fish/guestfish-actions.pod:49
6110 msgid ""
6111 "This function does some minimal checks to make sure the libvirt domain is "
6112 "not running (unless C<readonly> is true).  In a future version we will try "
6113 "to acquire the libvirt lock on each disk."
6114 msgstr ""
6115
6116 #. type: textblock
6117 #: ../src/guestfs-actions.pod:70 ../fish/guestfish-actions.pod:53
6118 msgid ""
6119 "Disks must be accessible locally.  This often means that adding disks from a "
6120 "remote libvirt connection (see L<http://libvirt.org/remote.html>)  will fail "
6121 "unless those disks are accessible via the same device path locally too."
6122 msgstr ""
6123
6124 #. type: textblock
6125 #: ../src/guestfs-actions.pod:75 ../fish/guestfish-actions.pod:58
6126 msgid ""
6127 "The optional C<libvirturi> parameter sets the libvirt URI (see L<http://"
6128 "libvirt.org/uri.html>).  If this is not set then we connect to the default "
6129 "libvirt URI (or one set through an environment variable, see the libvirt "
6130 "documentation for full details)."
6131 msgstr ""
6132
6133 #. type: textblock
6134 #: ../src/guestfs-actions.pod:81 ../fish/guestfish-actions.pod:64
6135 msgid ""
6136 "The optional C<live> flag controls whether this call will try to connect to "
6137 "a running virtual machine C<guestfsd> process if it sees a suitable "
6138 "E<lt>channelE<gt> element in the libvirt XML definition.  The default (if "
6139 "the flag is omitted) is never to try.  See L<guestfs(3)/ATTACHING TO RUNNING "
6140 "DAEMONS> for more information."
6141 msgstr ""
6142
6143 #. type: textblock
6144 #: ../src/guestfs-actions.pod:88
6145 msgid ""
6146 "The other optional parameters are passed directly through to "
6147 "C<guestfs_add_drive_opts>."
6148 msgstr ""
6149
6150 #. type: textblock
6151 #: ../src/guestfs-actions.pod:91 ../src/guestfs-actions.pod:344
6152 #: ../src/guestfs-actions.pod:509 ../src/guestfs-actions.pod:687
6153 #: ../src/guestfs-actions.pod:718 ../src/guestfs-actions.pod:736
6154 #: ../src/guestfs-actions.pod:755 ../src/guestfs-actions.pod:1315
6155 #: ../src/guestfs-actions.pod:1671 ../src/guestfs-actions.pod:1874
6156 #: ../src/guestfs-actions.pod:1983 ../src/guestfs-actions.pod:2023
6157 #: ../src/guestfs-actions.pod:2078 ../src/guestfs-actions.pod:2101
6158 #: ../src/guestfs-actions.pod:2394 ../src/guestfs-actions.pod:2777
6159 #: ../src/guestfs-actions.pod:2798 ../src/guestfs-actions.pod:4873
6160 #: ../src/guestfs-actions.pod:5010 ../src/guestfs-actions.pod:5416
6161 #: ../src/guestfs-actions.pod:5442 ../src/guestfs-actions.pod:6815
6162 #: ../src/guestfs-actions.pod:7247 ../src/guestfs-actions.pod:7260
6163 #: ../src/guestfs-actions.pod:7273
6164 msgid "On error this function returns -1."
6165 msgstr ""
6166
6167 #. type: textblock
6168 #: ../src/guestfs-actions.pod:93
6169 msgid "(Added in 1.7.4)"
6170 msgstr ""
6171
6172 #. type: =head2
6173 #: ../src/guestfs-actions.pod:95
6174 msgid "guestfs_add_domain_va"
6175 msgstr ""
6176
6177 #. type: verbatim
6178 #: ../src/guestfs-actions.pod:97
6179 #, no-wrap
6180 msgid ""
6181 " int\n"
6182 " guestfs_add_domain_va (guestfs_h *g,\n"
6183 "                        const char *dom,\n"
6184 "                        va_list args);\n"
6185 "\n"
6186 msgstr ""
6187
6188 #. type: textblock
6189 #: ../src/guestfs-actions.pod:102
6190 msgid "This is the \"va_list variant\" of L</guestfs_add_domain>."
6191 msgstr ""
6192
6193 #. type: textblock
6194 #: ../src/guestfs-actions.pod:104 ../src/guestfs-actions.pod:115
6195 #: ../src/guestfs-actions.pod:208 ../src/guestfs-actions.pod:219
6196 #: ../src/guestfs-actions.pod:4493 ../src/guestfs-actions.pod:4505
6197 msgid "See L</CALLS WITH OPTIONAL ARGUMENTS>."
6198 msgstr ""
6199
6200 #. type: =head2
6201 #: ../src/guestfs-actions.pod:106
6202 msgid "guestfs_add_domain_argv"
6203 msgstr ""
6204
6205 #. type: verbatim
6206 #: ../src/guestfs-actions.pod:108
6207 #, no-wrap
6208 msgid ""
6209 " int\n"
6210 " guestfs_add_domain_argv (guestfs_h *g,\n"
6211 "                          const char *dom,\n"
6212 "                          const struct guestfs_add_domain_argv *optargs);\n"
6213 "\n"
6214 msgstr ""
6215
6216 #. type: textblock
6217 #: ../src/guestfs-actions.pod:113
6218 msgid "This is the \"argv variant\" of L</guestfs_add_domain>."
6219 msgstr ""
6220
6221 #. type: =head2
6222 #: ../src/guestfs-actions.pod:117
6223 msgid "guestfs_add_drive"
6224 msgstr ""
6225
6226 #. type: verbatim
6227 #: ../src/guestfs-actions.pod:119
6228 #, no-wrap
6229 msgid ""
6230 " int\n"
6231 " guestfs_add_drive (guestfs_h *g,\n"
6232 "                    const char *filename);\n"
6233 "\n"
6234 msgstr ""
6235
6236 #. type: textblock
6237 #: ../src/guestfs-actions.pod:123
6238 msgid ""
6239 "This function is the equivalent of calling C<guestfs_add_drive_opts> with no "
6240 "optional parameters, so the disk is added writable, with the format being "
6241 "detected automatically."
6242 msgstr ""
6243
6244 #. type: textblock
6245 #: ../src/guestfs-actions.pod:127
6246 msgid ""
6247 "Automatic detection of the format opens you up to a potential security hole "
6248 "when dealing with untrusted raw-format images.  See CVE-2010-3851 and "
6249 "RHBZ#642934.  Specifying the format closes this security hole.  Therefore "
6250 "you should think about replacing calls to this function with calls to "
6251 "C<guestfs_add_drive_opts>, and specifying the format."
6252 msgstr ""
6253
6254 #. type: =head2
6255 #: ../src/guestfs-actions.pod:138
6256 msgid "guestfs_add_drive_opts"
6257 msgstr ""
6258
6259 #. type: verbatim
6260 #: ../src/guestfs-actions.pod:140
6261 #, no-wrap
6262 msgid ""
6263 " int\n"
6264 " guestfs_add_drive_opts (guestfs_h *g,\n"
6265 "                         const char *filename,\n"
6266 "                         ...);\n"
6267 "\n"
6268 msgstr ""
6269
6270 #. type: verbatim
6271 #: ../src/guestfs-actions.pod:150
6272 #, no-wrap
6273 msgid ""
6274 " GUESTFS_ADD_DRIVE_OPTS_READONLY, int readonly,\n"
6275 " GUESTFS_ADD_DRIVE_OPTS_FORMAT, const char *format,\n"
6276 " GUESTFS_ADD_DRIVE_OPTS_IFACE, const char *iface,\n"
6277 "\n"
6278 msgstr ""
6279
6280 #. type: textblock
6281 #: ../src/guestfs-actions.pod:154 ../fish/guestfish-actions.pod:97
6282 msgid ""
6283 "This function adds a virtual machine disk image C<filename> to libguestfs.  "
6284 "The first time you call this function, the disk appears as C</dev/sda>, the "
6285 "second time as C</dev/sdb>, and so on."
6286 msgstr ""
6287
6288 #. type: textblock
6289 #: ../src/guestfs-actions.pod:159 ../fish/guestfish-actions.pod:102
6290 msgid ""
6291 "You don't necessarily need to be root when using libguestfs.  However you "
6292 "obviously do need sufficient permissions to access the filename for whatever "
6293 "operations you want to perform (ie. read access if you just want to read the "
6294 "image or write access if you want to modify the image)."
6295 msgstr ""
6296
6297 #. type: textblock
6298 #: ../src/guestfs-actions.pod:165 ../fish/guestfish-actions.pod:108
6299 msgid "This call checks that C<filename> exists."
6300 msgstr ""
6301
6302 #. type: textblock
6303 #: ../src/guestfs-actions.pod:167 ../src/guestfs-actions.pod:4451
6304 #: ../fish/guestfish-actions.pod:110 ../fish/guestfish-actions.pod:3016
6305 msgid "The optional arguments are:"
6306 msgstr ""
6307
6308 #. type: =item
6309 #: ../src/guestfs-actions.pod:171 ../fish/guestfish-actions.pod:114
6310 msgid "C<readonly>"
6311 msgstr "C<readonly>"
6312
6313 #. type: textblock
6314 #: ../src/guestfs-actions.pod:173 ../fish/guestfish-actions.pod:116
6315 msgid ""
6316 "If true then the image is treated as read-only.  Writes are still allowed, "
6317 "but they are stored in a temporary snapshot overlay which is discarded at "
6318 "the end.  The disk that you add is not modified."
6319 msgstr ""
6320
6321 #. type: =item
6322 #: ../src/guestfs-actions.pod:177 ../fish/guestfish-actions.pod:120
6323 msgid "C<format>"
6324 msgstr "C<format>"
6325
6326 #. type: textblock
6327 #: ../src/guestfs-actions.pod:179
6328 msgid ""
6329 "This forces the image format.  If you omit this (or use C<guestfs_add_drive> "
6330 "or C<guestfs_add_drive_ro>) then the format is automatically detected.  "
6331 "Possible formats include C<raw> and C<qcow2>."
6332 msgstr ""
6333
6334 #. type: textblock
6335 #: ../src/guestfs-actions.pod:183 ../fish/guestfish-actions.pod:126
6336 msgid ""
6337 "Automatic detection of the format opens you up to a potential security hole "
6338 "when dealing with untrusted raw-format images.  See CVE-2010-3851 and "
6339 "RHBZ#642934.  Specifying the format closes this security hole."
6340 msgstr ""
6341
6342 #. type: =item
6343 #: ../src/guestfs-actions.pod:188 ../fish/guestfish-actions.pod:131
6344 msgid "C<iface>"
6345 msgstr "C<iface>"
6346
6347 #. type: textblock
6348 #: ../src/guestfs-actions.pod:190
6349 msgid ""
6350 "This rarely-used option lets you emulate the behaviour of the deprecated "
6351 "C<guestfs_add_drive_with_if> call (q.v.)"
6352 msgstr ""
6353
6354 #. type: textblock
6355 #: ../src/guestfs-actions.pod:197
6356 msgid "(Added in 1.5.23)"
6357 msgstr ""
6358
6359 #. type: =head2
6360 #: ../src/guestfs-actions.pod:199
6361 msgid "guestfs_add_drive_opts_va"
6362 msgstr ""
6363
6364 #. type: verbatim
6365 #: ../src/guestfs-actions.pod:201
6366 #, no-wrap
6367 msgid ""
6368 " int\n"
6369 " guestfs_add_drive_opts_va (guestfs_h *g,\n"
6370 "                            const char *filename,\n"
6371 "                            va_list args);\n"
6372 "\n"
6373 msgstr ""
6374
6375 #. type: textblock
6376 #: ../src/guestfs-actions.pod:206
6377 msgid "This is the \"va_list variant\" of L</guestfs_add_drive_opts>."
6378 msgstr ""
6379
6380 #. type: =head2
6381 #: ../src/guestfs-actions.pod:210
6382 msgid "guestfs_add_drive_opts_argv"
6383 msgstr ""
6384
6385 #. type: verbatim
6386 #: ../src/guestfs-actions.pod:212
6387 #, no-wrap
6388 msgid ""
6389 " int\n"
6390 " guestfs_add_drive_opts_argv (guestfs_h *g,\n"
6391 "                              const char *filename,\n"
6392 "                              const struct guestfs_add_drive_opts_argv *optargs);\n"
6393 "\n"
6394 msgstr ""
6395
6396 #. type: textblock
6397 #: ../src/guestfs-actions.pod:217
6398 msgid "This is the \"argv variant\" of L</guestfs_add_drive_opts>."
6399 msgstr ""
6400
6401 #. type: =head2
6402 #: ../src/guestfs-actions.pod:221
6403 msgid "guestfs_add_drive_ro"
6404 msgstr ""
6405
6406 #. type: verbatim
6407 #: ../src/guestfs-actions.pod:223
6408 #, no-wrap
6409 msgid ""
6410 " int\n"
6411 " guestfs_add_drive_ro (guestfs_h *g,\n"
6412 "                       const char *filename);\n"
6413 "\n"
6414 msgstr ""
6415
6416 #. type: textblock
6417 #: ../src/guestfs-actions.pod:227
6418 msgid ""
6419 "This function is the equivalent of calling C<guestfs_add_drive_opts> with "
6420 "the optional parameter C<GUESTFS_ADD_DRIVE_OPTS_READONLY> set to 1, so the "
6421 "disk is added read-only, with the format being detected automatically."
6422 msgstr ""
6423
6424 #. type: textblock
6425 #: ../src/guestfs-actions.pod:234
6426 msgid "(Added in 1.0.38)"
6427 msgstr ""
6428
6429 #. type: =head2
6430 #: ../src/guestfs-actions.pod:236
6431 msgid "guestfs_add_drive_ro_with_if"
6432 msgstr ""
6433
6434 #. type: verbatim
6435 #: ../src/guestfs-actions.pod:238
6436 #, no-wrap
6437 msgid ""
6438 " int\n"
6439 " guestfs_add_drive_ro_with_if (guestfs_h *g,\n"
6440 "                               const char *filename,\n"
6441 "                               const char *iface);\n"
6442 "\n"
6443 msgstr ""
6444
6445 #. type: textblock
6446 #: ../src/guestfs-actions.pod:243
6447 msgid ""
6448 "This is the same as C<guestfs_add_drive_ro> but it allows you to specify the "
6449 "QEMU interface emulation to use at run time."
6450 msgstr ""
6451
6452 #. type: textblock
6453 #: ../src/guestfs-actions.pod:255 ../src/guestfs-actions.pod:276
6454 #: ../src/guestfs-actions.pod:2353
6455 msgid "(Added in 1.0.84)"
6456 msgstr ""
6457
6458 #. type: =head2
6459 #: ../src/guestfs-actions.pod:257
6460 msgid "guestfs_add_drive_with_if"
6461 msgstr ""
6462
6463 #. type: verbatim
6464 #: ../src/guestfs-actions.pod:259
6465 #, no-wrap
6466 msgid ""
6467 " int\n"
6468 " guestfs_add_drive_with_if (guestfs_h *g,\n"
6469 "                            const char *filename,\n"
6470 "                            const char *iface);\n"
6471 "\n"
6472 msgstr ""
6473
6474 #. type: textblock
6475 #: ../src/guestfs-actions.pod:264
6476 msgid ""
6477 "This is the same as C<guestfs_add_drive> but it allows you to specify the "
6478 "QEMU interface emulation to use at run time."
6479 msgstr ""
6480
6481 #. type: =head2
6482 #: ../src/guestfs-actions.pod:278
6483 msgid "guestfs_aug_clear"
6484 msgstr ""
6485
6486 #. type: verbatim
6487 #: ../src/guestfs-actions.pod:280
6488 #, no-wrap
6489 msgid ""
6490 " int\n"
6491 " guestfs_aug_clear (guestfs_h *g,\n"
6492 "                    const char *augpath);\n"
6493 "\n"
6494 msgstr ""
6495
6496 #. type: textblock
6497 #: ../src/guestfs-actions.pod:284 ../fish/guestfish-actions.pod:183
6498 msgid ""
6499 "Set the value associated with C<path> to C<NULL>.  This is the same as the "
6500 "L<augtool(1)> C<clear> command."
6501 msgstr ""
6502
6503 #. type: textblock
6504 #: ../src/guestfs-actions.pod:289 ../src/guestfs-actions.pod:2103
6505 msgid "(Added in 1.3.4)"
6506 msgstr ""
6507
6508 #. type: =head2
6509 #: ../src/guestfs-actions.pod:291
6510 msgid "guestfs_aug_close"
6511 msgstr ""
6512
6513 #. type: verbatim
6514 #: ../src/guestfs-actions.pod:293
6515 #, no-wrap
6516 msgid ""
6517 " int\n"
6518 " guestfs_aug_close (guestfs_h *g);\n"
6519 "\n"
6520 msgstr ""
6521
6522 #. type: textblock
6523 #: ../src/guestfs-actions.pod:296
6524 msgid ""
6525 "Close the current Augeas handle and free up any resources used by it.  After "
6526 "calling this, you have to call C<guestfs_aug_init> again before you can use "
6527 "any other Augeas functions."
6528 msgstr ""
6529
6530 #. type: textblock
6531 #: ../src/guestfs-actions.pod:303 ../src/guestfs-actions.pod:328
6532 #: ../src/guestfs-actions.pod:346 ../src/guestfs-actions.pod:360
6533 #: ../src/guestfs-actions.pod:418 ../src/guestfs-actions.pod:438
6534 #: ../src/guestfs-actions.pod:452 ../src/guestfs-actions.pod:483
6535 #: ../src/guestfs-actions.pod:497 ../src/guestfs-actions.pod:511
6536 #: ../src/guestfs-actions.pod:525 ../src/guestfs-actions.pod:543
6537 #: ../src/guestfs-actions.pod:5493
6538 msgid "(Added in 0.7)"
6539 msgstr ""
6540
6541 #. type: =head2
6542 #: ../src/guestfs-actions.pod:305
6543 msgid "guestfs_aug_defnode"
6544 msgstr ""
6545
6546 #. type: verbatim
6547 #: ../src/guestfs-actions.pod:307
6548 #, no-wrap
6549 msgid ""
6550 " struct guestfs_int_bool *\n"
6551 " guestfs_aug_defnode (guestfs_h *g,\n"
6552 "                      const char *name,\n"
6553 "                      const char *expr,\n"
6554 "                      const char *val);\n"
6555 "\n"
6556 msgstr ""
6557
6558 #. type: textblock
6559 #: ../src/guestfs-actions.pod:313 ../fish/guestfish-actions.pod:199
6560 msgid ""
6561 "Defines a variable C<name> whose value is the result of evaluating C<expr>."
6562 msgstr ""
6563
6564 #. type: textblock
6565 #: ../src/guestfs-actions.pod:316
6566 msgid ""
6567 "If C<expr> evaluates to an empty nodeset, a node is created, equivalent to "
6568 "calling C<guestfs_aug_set> C<expr>, C<value>.  C<name> will be the nodeset "
6569 "containing that single node."
6570 msgstr ""
6571
6572 #. type: textblock
6573 #: ../src/guestfs-actions.pod:320 ../fish/guestfish-actions.pod:206
6574 msgid ""
6575 "On success this returns a pair containing the number of nodes in the "
6576 "nodeset, and a boolean flag if a node was created."
6577 msgstr ""
6578
6579 #. type: textblock
6580 #: ../src/guestfs-actions.pod:324
6581 msgid ""
6582 "This function returns a C<struct guestfs_int_bool *>, or NULL if there was "
6583 "an error.  I<The caller must call C<guestfs_free_int_bool> after use>."
6584 msgstr ""
6585
6586 #. type: =head2
6587 #: ../src/guestfs-actions.pod:330
6588 msgid "guestfs_aug_defvar"
6589 msgstr ""
6590
6591 #. type: verbatim
6592 #: ../src/guestfs-actions.pod:332
6593 #, no-wrap
6594 msgid ""
6595 " int\n"
6596 " guestfs_aug_defvar (guestfs_h *g,\n"
6597 "                     const char *name,\n"
6598 "                     const char *expr);\n"
6599 "\n"
6600 msgstr ""
6601
6602 #. type: textblock
6603 #: ../src/guestfs-actions.pod:337 ../fish/guestfish-actions.pod:214
6604 msgid ""
6605 "Defines an Augeas variable C<name> whose value is the result of evaluating "
6606 "C<expr>.  If C<expr> is NULL, then C<name> is undefined."
6607 msgstr ""
6608
6609 #. type: textblock
6610 #: ../src/guestfs-actions.pod:341 ../fish/guestfish-actions.pod:218
6611 msgid ""
6612 "On success this returns the number of nodes in C<expr>, or C<0> if C<expr> "
6613 "evaluates to something which is not a nodeset."
6614 msgstr ""
6615
6616 #. type: =head2
6617 #: ../src/guestfs-actions.pod:348
6618 msgid "guestfs_aug_get"
6619 msgstr ""
6620
6621 #. type: verbatim
6622 #: ../src/guestfs-actions.pod:350
6623 #, no-wrap
6624 msgid ""
6625 " char *\n"
6626 " guestfs_aug_get (guestfs_h *g,\n"
6627 "                  const char *augpath);\n"
6628 "\n"
6629 msgstr ""
6630
6631 #. type: textblock
6632 #: ../src/guestfs-actions.pod:354 ../fish/guestfish-actions.pod:225
6633 msgid ""
6634 "Look up the value associated with C<path>.  If C<path> matches exactly one "
6635 "node, the C<value> is returned."
6636 msgstr ""
6637
6638 #. type: textblock
6639 #: ../src/guestfs-actions.pod:357 ../src/guestfs-actions.pod:857
6640 #: ../src/guestfs-actions.pod:875 ../src/guestfs-actions.pod:935
6641 #: ../src/guestfs-actions.pod:951 ../src/guestfs-actions.pod:1054
6642 #: ../src/guestfs-actions.pod:1184 ../src/guestfs-actions.pod:1201
6643 #: ../src/guestfs-actions.pod:1220 ../src/guestfs-actions.pod:1354
6644 #: ../src/guestfs-actions.pod:1542 ../src/guestfs-actions.pod:1654
6645 #: ../src/guestfs-actions.pod:1817 ../src/guestfs-actions.pod:1834
6646 #: ../src/guestfs-actions.pod:1901 ../src/guestfs-actions.pod:1935
6647 #: ../src/guestfs-actions.pod:1956 ../src/guestfs-actions.pod:2126
6648 #: ../src/guestfs-actions.pod:2318 ../src/guestfs-actions.pod:2525
6649 #: ../src/guestfs-actions.pod:2618 ../src/guestfs-actions.pod:2729
6650 #: ../src/guestfs-actions.pod:2749 ../src/guestfs-actions.pod:2869
6651 #: ../src/guestfs-actions.pod:2900 ../src/guestfs-actions.pod:2924
6652 #: ../src/guestfs-actions.pod:2961 ../src/guestfs-actions.pod:3021
6653 #: ../src/guestfs-actions.pod:3044 ../src/guestfs-actions.pod:3065
6654 #: ../src/guestfs-actions.pod:3637 ../src/guestfs-actions.pod:3987
6655 #: ../src/guestfs-actions.pod:4157 ../src/guestfs-actions.pod:4267
6656 #: ../src/guestfs-actions.pod:5028 ../src/guestfs-actions.pod:5221
6657 #: ../src/guestfs-actions.pod:5391 ../src/guestfs-actions.pod:5569
6658 #: ../src/guestfs-actions.pod:5618 ../src/guestfs-actions.pod:6251
6659 #: ../src/guestfs-actions.pod:6267 ../src/guestfs-actions.pod:6284
6660 #: ../src/guestfs-actions.pod:6315 ../src/guestfs-actions.pod:6989
6661 #: ../src/guestfs-actions.pod:7008 ../src/guestfs-actions.pod:7026
6662 #: ../src/guestfs-actions.pod:7206 ../src/guestfs-actions.pod:7485
6663 msgid ""
6664 "This function returns a string, or NULL on error.  I<The caller must free "
6665 "the returned string after use>."
6666 msgstr ""
6667
6668 #. type: =head2
6669 #: ../src/guestfs-actions.pod:362
6670 msgid "guestfs_aug_init"
6671 msgstr ""
6672
6673 #. type: verbatim
6674 #: ../src/guestfs-actions.pod:364
6675 #, no-wrap
6676 msgid ""
6677 " int\n"
6678 " guestfs_aug_init (guestfs_h *g,\n"
6679 "                   const char *root,\n"
6680 "                   int flags);\n"
6681 "\n"
6682 msgstr ""
6683
6684 #. type: textblock
6685 #: ../src/guestfs-actions.pod:369 ../fish/guestfish-actions.pod:232
6686 msgid ""
6687 "Create a new Augeas handle for editing configuration files.  If there was "
6688 "any previous Augeas handle associated with this guestfs session, then it is "
6689 "closed."
6690 msgstr ""
6691
6692 #. type: textblock
6693 #: ../src/guestfs-actions.pod:373
6694 msgid "You must call this before using any other C<guestfs_aug_*> commands."
6695 msgstr ""
6696
6697 #. type: textblock
6698 #: ../src/guestfs-actions.pod:376 ../fish/guestfish-actions.pod:239
6699 msgid ""
6700 "C<root> is the filesystem root.  C<root> must not be NULL, use C</> instead."
6701 msgstr ""
6702
6703 #. type: textblock
6704 #: ../src/guestfs-actions.pod:379 ../fish/guestfish-actions.pod:242
6705 msgid ""
6706 "The flags are the same as the flags defined in E<lt>augeas.hE<gt>, the "
6707 "logical I<or> of the following integers:"
6708 msgstr ""
6709
6710 #. type: =item
6711 #: ../src/guestfs-actions.pod:385 ../fish/guestfish-actions.pod:248
6712 msgid "C<AUG_SAVE_BACKUP> = 1"
6713 msgstr "C<AUG_SAVE_BACKUP> = 1"
6714
6715 #. type: textblock
6716 #: ../src/guestfs-actions.pod:387 ../fish/guestfish-actions.pod:250
6717 msgid "Keep the original file with a C<.augsave> extension."
6718 msgstr ""
6719
6720 #. type: =item
6721 #: ../src/guestfs-actions.pod:389 ../fish/guestfish-actions.pod:252
6722 msgid "C<AUG_SAVE_NEWFILE> = 2"
6723 msgstr "C<AUG_SAVE_NEWFILE> = 2"
6724
6725 #. type: textblock
6726 #: ../src/guestfs-actions.pod:391 ../fish/guestfish-actions.pod:254
6727 msgid ""
6728 "Save changes into a file with extension C<.augnew>, and do not overwrite "
6729 "original.  Overrides C<AUG_SAVE_BACKUP>."
6730 msgstr ""
6731
6732 #. type: =item
6733 #: ../src/guestfs-actions.pod:394 ../fish/guestfish-actions.pod:257
6734 msgid "C<AUG_TYPE_CHECK> = 4"
6735 msgstr "C<AUG_TYPE_CHECK> = 4"
6736
6737 #. type: textblock
6738 #: ../src/guestfs-actions.pod:396 ../fish/guestfish-actions.pod:259
6739 msgid "Typecheck lenses (can be expensive)."
6740 msgstr ""
6741
6742 #. type: =item
6743 #: ../src/guestfs-actions.pod:398 ../fish/guestfish-actions.pod:261
6744 msgid "C<AUG_NO_STDINC> = 8"
6745 msgstr "C<AUG_NO_STDINC> = 8"
6746
6747 #. type: textblock
6748 #: ../src/guestfs-actions.pod:400 ../fish/guestfish-actions.pod:263
6749 msgid "Do not use standard load path for modules."
6750 msgstr ""
6751
6752 #. type: =item
6753 #: ../src/guestfs-actions.pod:402 ../fish/guestfish-actions.pod:265
6754 msgid "C<AUG_SAVE_NOOP> = 16"
6755 msgstr "C<AUG_SAVE_NOOP> = 16"
6756
6757 #. type: textblock
6758 #: ../src/guestfs-actions.pod:404 ../fish/guestfish-actions.pod:267
6759 msgid "Make save a no-op, just record what would have been changed."
6760 msgstr ""
6761
6762 #. type: =item
6763 #: ../src/guestfs-actions.pod:406 ../fish/guestfish-actions.pod:269
6764 msgid "C<AUG_NO_LOAD> = 32"
6765 msgstr "C<AUG_NO_LOAD> = 32"
6766
6767 #. type: textblock
6768 #: ../src/guestfs-actions.pod:408
6769 msgid "Do not load the tree in C<guestfs_aug_init>."
6770 msgstr ""
6771
6772 #. type: textblock
6773 #: ../src/guestfs-actions.pod:412
6774 msgid "To close the handle, you can call C<guestfs_aug_close>."
6775 msgstr ""
6776
6777 #. type: textblock
6778 #: ../src/guestfs-actions.pod:414 ../fish/guestfish-actions.pod:277
6779 msgid "To find out more about Augeas, see L<http://augeas.net/>."
6780 msgstr ""
6781
6782 #. type: =head2
6783 #: ../src/guestfs-actions.pod:420
6784 msgid "guestfs_aug_insert"
6785 msgstr ""
6786
6787 #. type: verbatim
6788 #: ../src/guestfs-actions.pod:422
6789 #, no-wrap
6790 msgid ""
6791 " int\n"
6792 " guestfs_aug_insert (guestfs_h *g,\n"
6793 "                     const char *augpath,\n"
6794 "                     const char *label,\n"
6795 "                     int before);\n"
6796 "\n"
6797 msgstr ""
6798
6799 #. type: textblock
6800 #: ../src/guestfs-actions.pod:428 ../fish/guestfish-actions.pod:283
6801 msgid ""
6802 "Create a new sibling C<label> for C<path>, inserting it into the tree before "
6803 "or after C<path> (depending on the boolean flag C<before>)."
6804 msgstr ""
6805
6806 #. type: textblock
6807 #: ../src/guestfs-actions.pod:432 ../fish/guestfish-actions.pod:287
6808 msgid ""
6809 "C<path> must match exactly one existing node in the tree, and C<label> must "
6810 "be a label, ie. not contain C</>, C<*> or end with a bracketed index C<[N]>."
6811 msgstr ""
6812
6813 #. type: =head2
6814 #: ../src/guestfs-actions.pod:440
6815 msgid "guestfs_aug_load"
6816 msgstr ""
6817
6818 #. type: verbatim
6819 #: ../src/guestfs-actions.pod:442
6820 #, no-wrap
6821 msgid ""
6822 " int\n"
6823 " guestfs_aug_load (guestfs_h *g);\n"
6824 "\n"
6825 msgstr ""
6826
6827 #. type: textblock
6828 #: ../src/guestfs-actions.pod:445 ../fish/guestfish-actions.pod:295
6829 msgid "Load files into the tree."
6830 msgstr "Завантажити файли до ієрархії."
6831
6832 #. type: textblock
6833 #: ../src/guestfs-actions.pod:447 ../fish/guestfish-actions.pod:297
6834 msgid "See C<aug_load> in the Augeas documentation for the full gory details."
6835 msgstr ""
6836
6837 #. type: =head2
6838 #: ../src/guestfs-actions.pod:454
6839 msgid "guestfs_aug_ls"
6840 msgstr ""
6841
6842 #. type: verbatim
6843 #: ../src/guestfs-actions.pod:456
6844 #, no-wrap
6845 msgid ""
6846 " char **\n"
6847 " guestfs_aug_ls (guestfs_h *g,\n"
6848 "                 const char *augpath);\n"
6849 "\n"
6850 msgstr ""
6851
6852 #. type: textblock
6853 #: ../src/guestfs-actions.pod:460
6854 msgid ""
6855 "This is just a shortcut for listing C<guestfs_aug_match> C<path/*> and "
6856 "sorting the resulting nodes into alphabetical order."
6857 msgstr ""
6858
6859 #. type: textblock
6860 #: ../src/guestfs-actions.pod:463 ../src/guestfs-actions.pod:479
6861 #: ../src/guestfs-actions.pod:625 ../src/guestfs-actions.pod:1073
6862 #: ../src/guestfs-actions.pod:1369 ../src/guestfs-actions.pod:1388
6863 #: ../src/guestfs-actions.pod:1491 ../src/guestfs-actions.pod:1510
6864 #: ../src/guestfs-actions.pod:1756 ../src/guestfs-actions.pod:2198
6865 #: ../src/guestfs-actions.pod:2214 ../src/guestfs-actions.pod:2233
6866 #: ../src/guestfs-actions.pod:2276 ../src/guestfs-actions.pod:2300
6867 #: ../src/guestfs-actions.pod:2371 ../src/guestfs-actions.pod:2420
6868 #: ../src/guestfs-actions.pod:2687 ../src/guestfs-actions.pod:2978
6869 #: ../src/guestfs-actions.pod:3267 ../src/guestfs-actions.pod:3557
6870 #: ../src/guestfs-actions.pod:3619 ../src/guestfs-actions.pod:3724
6871 #: ../src/guestfs-actions.pod:4129 ../src/guestfs-actions.pod:4834
6872 #: ../src/guestfs-actions.pod:5363 ../src/guestfs-actions.pod:5489
6873 #: ../src/guestfs-actions.pod:5603 ../src/guestfs-actions.pod:6331
6874 #: ../src/guestfs-actions.pod:6392 ../src/guestfs-actions.pod:6447
6875 #: ../src/guestfs-actions.pod:6593 ../src/guestfs-actions.pod:6617
6876 #: ../src/guestfs-actions.pod:7099 ../src/guestfs-actions.pod:7119
6877 #: ../src/guestfs-actions.pod:7166 ../src/guestfs-actions.pod:7338
6878 #: ../src/guestfs-actions.pod:7357 ../src/guestfs-actions.pod:7442
6879 #: ../src/guestfs-actions.pod:7461 ../src/guestfs-actions.pod:7507
6880 #: ../src/guestfs-actions.pod:7526
6881 msgid ""
6882 "This function returns a NULL-terminated array of strings (like L<environ(3)"
6883 ">), or NULL if there was an error.  I<The caller must free the strings and "
6884 "the array after use>."
6885 msgstr ""
6886
6887 #. type: textblock
6888 #: ../src/guestfs-actions.pod:467 ../src/guestfs-actions.pod:998
6889 #: ../src/guestfs-actions.pod:1016 ../src/guestfs-actions.pod:1426
6890 #: ../src/guestfs-actions.pod:3345 ../src/guestfs-actions.pod:3376
6891 #: ../src/guestfs-actions.pod:3970 ../src/guestfs-actions.pod:4020
6892 #: ../src/guestfs-actions.pod:4207 ../src/guestfs-actions.pod:4240
6893 #: ../src/guestfs-actions.pod:4403 ../src/guestfs-actions.pod:4838
6894 #: ../src/guestfs-actions.pod:5304 ../src/guestfs-actions.pod:5699
6895 #: ../src/guestfs-actions.pod:5713 ../src/guestfs-actions.pod:5725
6896 #: ../src/guestfs-actions.pod:6172 ../src/guestfs-actions.pod:6831
6897 #: ../src/guestfs-actions.pod:6844 ../src/guestfs-actions.pod:7083
6898 #: ../src/guestfs-actions.pod:7326
6899 msgid "(Added in 0.8)"
6900 msgstr ""
6901
6902 #. type: =head2
6903 #: ../src/guestfs-actions.pod:469
6904 msgid "guestfs_aug_match"
6905 msgstr ""
6906
6907 #. type: verbatim
6908 #: ../src/guestfs-actions.pod:471
6909 #, no-wrap
6910 msgid ""
6911 " char **\n"
6912 " guestfs_aug_match (guestfs_h *g,\n"
6913 "                    const char *augpath);\n"
6914 "\n"
6915 msgstr ""
6916
6917 #. type: textblock
6918 #: ../src/guestfs-actions.pod:475 ../fish/guestfish-actions.pod:311
6919 msgid ""
6920 "Returns a list of paths which match the path expression C<path>.  The "
6921 "returned paths are sufficiently qualified so that they match exactly one "
6922 "node in the current tree."
6923 msgstr ""
6924
6925 #. type: =head2
6926 #: ../src/guestfs-actions.pod:485
6927 msgid "guestfs_aug_mv"
6928 msgstr ""
6929
6930 #. type: verbatim
6931 #: ../src/guestfs-actions.pod:487
6932 #, no-wrap
6933 msgid ""
6934 " int\n"
6935 " guestfs_aug_mv (guestfs_h *g,\n"
6936 "                 const char *src,\n"
6937 "                 const char *dest);\n"
6938 "\n"
6939 msgstr ""
6940
6941 #. type: textblock
6942 #: ../src/guestfs-actions.pod:492 ../fish/guestfish-actions.pod:319
6943 msgid ""
6944 "Move the node C<src> to C<dest>.  C<src> must match exactly one node.  "
6945 "C<dest> is overwritten if it exists."
6946 msgstr ""
6947
6948 #. type: =head2
6949 #: ../src/guestfs-actions.pod:499
6950 msgid "guestfs_aug_rm"
6951 msgstr ""
6952
6953 #. type: verbatim
6954 #: ../src/guestfs-actions.pod:501
6955 #, no-wrap
6956 msgid ""
6957 " int\n"
6958 " guestfs_aug_rm (guestfs_h *g,\n"
6959 "                 const char *augpath);\n"
6960 "\n"
6961 msgstr ""
6962
6963 #. type: textblock
6964 #: ../src/guestfs-actions.pod:505 ../fish/guestfish-actions.pod:326
6965 msgid "Remove C<path> and all of its children."
6966 msgstr ""
6967
6968 #. type: textblock
6969 #: ../src/guestfs-actions.pod:507 ../fish/guestfish-actions.pod:328
6970 msgid "On success this returns the number of entries which were removed."
6971 msgstr ""
6972
6973 #. type: =head2
6974 #: ../src/guestfs-actions.pod:513
6975 msgid "guestfs_aug_save"
6976 msgstr ""
6977
6978 #. type: verbatim
6979 #: ../src/guestfs-actions.pod:515
6980 #, no-wrap
6981 msgid ""
6982 " int\n"
6983 " guestfs_aug_save (guestfs_h *g);\n"
6984 "\n"
6985 msgstr ""
6986
6987 #. type: textblock
6988 #: ../src/guestfs-actions.pod:518 ../fish/guestfish-actions.pod:334
6989 msgid "This writes all pending changes to disk."
6990 msgstr ""
6991
6992 #. type: textblock
6993 #: ../src/guestfs-actions.pod:520
6994 msgid ""
6995 "The flags which were passed to C<guestfs_aug_init> affect exactly how files "
6996 "are saved."
6997 msgstr ""
6998
6999 #. type: =head2
7000 #: ../src/guestfs-actions.pod:527
7001 msgid "guestfs_aug_set"
7002 msgstr ""
7003
7004 #. type: verbatim
7005 #: ../src/guestfs-actions.pod:529
7006 #, no-wrap
7007 msgid ""
7008 " int\n"
7009 " guestfs_aug_set (guestfs_h *g,\n"
7010 "                  const char *augpath,\n"
7011 "                  const char *val);\n"
7012 "\n"
7013 msgstr ""
7014
7015 #. type: textblock
7016 #: ../src/guestfs-actions.pod:534 ../fish/guestfish-actions.pod:343
7017 msgid "Set the value associated with C<path> to C<val>."
7018 msgstr ""
7019
7020 #. type: textblock
7021 #: ../src/guestfs-actions.pod:536
7022 msgid ""
7023 "In the Augeas API, it is possible to clear a node by setting the value to "
7024 "NULL.  Due to an oversight in the libguestfs API you cannot do that with "
7025 "this call.  Instead you must use the C<guestfs_aug_clear> call."
7026 msgstr ""
7027
7028 #. type: =head2
7029 #: ../src/guestfs-actions.pod:545
7030 msgid "guestfs_available"
7031 msgstr ""
7032
7033 #. type: verbatim
7034 #: ../src/guestfs-actions.pod:547
7035 #, no-wrap
7036 msgid ""
7037 " int\n"
7038 " guestfs_available (guestfs_h *g,\n"
7039 "                    char *const *groups);\n"
7040 "\n"
7041 msgstr ""
7042
7043 #. type: textblock
7044 #: ../src/guestfs-actions.pod:551 ../fish/guestfish-actions.pod:354
7045 msgid ""
7046 "This command is used to check the availability of some groups of "
7047 "functionality in the appliance, which not all builds of the libguestfs "
7048 "appliance will be able to provide."
7049 msgstr ""
7050
7051 #. type: textblock
7052 #: ../src/guestfs-actions.pod:555
7053 msgid ""
7054 "The libguestfs groups, and the functions that those groups correspond to, "
7055 "are listed in L<guestfs(3)/AVAILABILITY>.  You can also fetch this list at "
7056 "runtime by calling C<guestfs_available_all_groups>."
7057 msgstr ""
7058
7059 #. type: textblock
7060 #: ../src/guestfs-actions.pod:560 ../fish/guestfish-actions.pod:363
7061 msgid ""
7062 "The argument C<groups> is a list of group names, eg: C<[\"inotify\", \"augeas"
7063 "\"]> would check for the availability of the Linux inotify functions and "
7064 "Augeas (configuration file editing) functions."
7065 msgstr ""
7066
7067 #. type: textblock
7068 #: ../src/guestfs-actions.pod:565 ../fish/guestfish-actions.pod:368
7069 msgid "The command returns no error if I<all> requested groups are available."
7070 msgstr ""
7071
7072 #. type: textblock
7073 #: ../src/guestfs-actions.pod:567 ../fish/guestfish-actions.pod:370
7074 msgid ""
7075 "It fails with an error if one or more of the requested groups is unavailable "
7076 "in the appliance."
7077 msgstr ""
7078
7079 #. type: textblock
7080 #: ../src/guestfs-actions.pod:570 ../fish/guestfish-actions.pod:373
7081 msgid ""
7082 "If an unknown group name is included in the list of groups then an error is "
7083 "always returned."
7084 msgstr ""
7085
7086 #. type: textblock
7087 #: ../src/guestfs-actions.pod:573 ../fish/guestfish-actions.pod:376
7088 msgid "I<Notes:>"
7089 msgstr "I<Нотатки:>"
7090
7091 #. type: textblock
7092 #: ../src/guestfs-actions.pod:579
7093 msgid "You must call C<guestfs_launch> before calling this function."
7094 msgstr ""
7095
7096 #. type: textblock
7097 #: ../src/guestfs-actions.pod:581 ../fish/guestfish-actions.pod:384
7098 msgid ""
7099 "The reason is because we don't know what groups are supported by the "
7100 "appliance/daemon until it is running and can be queried."
7101 msgstr ""
7102
7103 #. type: textblock
7104 #: ../src/guestfs-actions.pod:587 ../fish/guestfish-actions.pod:390
7105 msgid ""
7106 "If a group of functions is available, this does not necessarily mean that "
7107 "they will work.  You still have to check for errors when calling individual "
7108 "API functions even if they are available."
7109 msgstr ""
7110
7111 #. type: textblock
7112 #: ../src/guestfs-actions.pod:594 ../fish/guestfish-actions.pod:397
7113 msgid ""
7114 "It is usually the job of distro packagers to build complete functionality "
7115 "into the libguestfs appliance.  Upstream libguestfs, if built from source "
7116 "with all requirements satisfied, will support everything."
7117 msgstr ""
7118
7119 #. type: textblock
7120 #: ../src/guestfs-actions.pod:601
7121 msgid ""
7122 "This call was added in version C<1.0.80>.  In previous versions of "
7123 "libguestfs all you could do would be to speculatively execute a command to "
7124 "find out if the daemon implemented it.  See also C<guestfs_version>."
7125 msgstr ""
7126
7127 #. type: textblock
7128 #: ../src/guestfs-actions.pod:610 ../src/guestfs-actions.pod:1171
7129 msgid "(Added in 1.0.80)"
7130 msgstr ""
7131
7132 #. type: =head2
7133 #: ../src/guestfs-actions.pod:612
7134 msgid "guestfs_available_all_groups"
7135 msgstr ""
7136
7137 #. type: verbatim
7138 #: ../src/guestfs-actions.pod:614
7139 #, no-wrap
7140 msgid ""
7141 " char **\n"
7142 " guestfs_available_all_groups (guestfs_h *g);\n"
7143 "\n"
7144 msgstr ""
7145
7146 #. type: textblock
7147 #: ../src/guestfs-actions.pod:617
7148 msgid ""
7149 "This command returns a list of all optional groups that this daemon knows "
7150 "about.  Note this returns both supported and unsupported groups.  To find "
7151 "out which ones the daemon can actually support you have to call "
7152 "C<guestfs_available> on each member of the returned list."
7153 msgstr ""
7154
7155 #. type: textblock
7156 #: ../src/guestfs-actions.pod:623
7157 msgid "See also C<guestfs_available> and L<guestfs(3)/AVAILABILITY>."
7158 msgstr ""
7159
7160 #. type: textblock
7161 #: ../src/guestfs-actions.pod:629
7162 msgid "(Added in 1.3.15)"
7163 msgstr ""
7164
7165 #. type: =head2
7166 #: ../src/guestfs-actions.pod:631
7167 msgid "guestfs_base64_in"
7168 msgstr ""
7169
7170 #. type: verbatim
7171 #: ../src/guestfs-actions.pod:633
7172 #, no-wrap
7173 msgid ""
7174 " int\n"
7175 " guestfs_base64_in (guestfs_h *g,\n"
7176 "                    const char *base64file,\n"
7177 "                    const char *filename);\n"
7178 "\n"
7179 msgstr ""
7180
7181 #. type: textblock
7182 #: ../src/guestfs-actions.pod:638 ../fish/guestfish-actions.pod:427
7183 msgid ""
7184 "This command uploads base64-encoded data from C<base64file> to C<filename>."
7185 msgstr ""
7186
7187 #. type: textblock
7188 #: ../src/guestfs-actions.pod:643 ../src/guestfs-actions.pod:657
7189 msgid "(Added in 1.3.5)"
7190 msgstr ""
7191
7192 #. type: =head2
7193 #: ../src/guestfs-actions.pod:645
7194 msgid "guestfs_base64_out"
7195 msgstr ""
7196
7197 #. type: verbatim
7198 #: ../src/guestfs-actions.pod:647
7199 #, no-wrap
7200 msgid ""
7201 " int\n"
7202 " guestfs_base64_out (guestfs_h *g,\n"
7203 "                     const char *filename,\n"
7204 "                     const char *base64file);\n"
7205 "\n"
7206 msgstr ""
7207
7208 #. type: textblock
7209 #: ../src/guestfs-actions.pod:652 ../fish/guestfish-actions.pod:436
7210 msgid ""
7211 "This command downloads the contents of C<filename>, writing it out to local "
7212 "file C<base64file> encoded as base64."
7213 msgstr ""
7214
7215 #. type: =head2
7216 #: ../src/guestfs-actions.pod:659
7217 msgid "guestfs_blockdev_flushbufs"
7218 msgstr ""
7219
7220 #. type: verbatim
7221 #: ../src/guestfs-actions.pod:661
7222 #, no-wrap
7223 msgid ""
7224 " int\n"
7225 " guestfs_blockdev_flushbufs (guestfs_h *g,\n"
7226 "                             const char *device);\n"
7227 "\n"
7228 msgstr ""
7229
7230 #. type: textblock
7231 #: ../src/guestfs-actions.pod:665 ../fish/guestfish-actions.pod:445
7232 msgid ""
7233 "This tells the kernel to flush internal buffers associated with C<device>."
7234 msgstr ""
7235
7236 #. type: textblock
7237 #: ../src/guestfs-actions.pod:668 ../src/guestfs-actions.pod:685
7238 #: ../src/guestfs-actions.pod:700 ../src/guestfs-actions.pod:716
7239 #: ../src/guestfs-actions.pod:734 ../src/guestfs-actions.pod:753
7240 #: ../src/guestfs-actions.pod:767 ../src/guestfs-actions.pod:785
7241 #: ../src/guestfs-actions.pod:799 ../src/guestfs-actions.pod:813
7242 #: ../fish/guestfish-actions.pod:448 ../fish/guestfish-actions.pod:459
7243 #: ../fish/guestfish-actions.pod:468 ../fish/guestfish-actions.pod:478
7244 #: ../fish/guestfish-actions.pod:490 ../fish/guestfish-actions.pod:503
7245 #: ../fish/guestfish-actions.pod:511 ../fish/guestfish-actions.pod:522
7246 #: ../fish/guestfish-actions.pod:530 ../fish/guestfish-actions.pod:538
7247 msgid "This uses the L<blockdev(8)> command."
7248 msgstr ""
7249
7250 #. type: textblock
7251 #: ../src/guestfs-actions.pod:672 ../src/guestfs-actions.pod:689
7252 #: ../src/guestfs-actions.pod:704 ../src/guestfs-actions.pod:720
7253 #: ../src/guestfs-actions.pod:738 ../src/guestfs-actions.pod:757
7254 #: ../src/guestfs-actions.pod:771 ../src/guestfs-actions.pod:789
7255 #: ../src/guestfs-actions.pod:803 ../src/guestfs-actions.pod:817
7256 msgid "(Added in 0.9.3)"
7257 msgstr ""
7258
7259 #. type: =head2
7260 #: ../src/guestfs-actions.pod:674
7261 msgid "guestfs_blockdev_getbsz"
7262 msgstr ""
7263
7264 #. type: verbatim
7265 #: ../src/guestfs-actions.pod:676
7266 #, no-wrap
7267 msgid ""
7268 " int\n"
7269 " guestfs_blockdev_getbsz (guestfs_h *g,\n"
7270 "                          const char *device);\n"
7271 "\n"
7272 msgstr ""
7273
7274 #. type: textblock
7275 #: ../src/guestfs-actions.pod:680 ../fish/guestfish-actions.pod:454
7276 msgid "This returns the block size of a device."
7277 msgstr ""
7278
7279 #. type: textblock
7280 #: ../src/guestfs-actions.pod:682 ../src/guestfs-actions.pod:782
7281 #: ../fish/guestfish-actions.pod:456 ../fish/guestfish-actions.pod:519
7282 msgid ""
7283 "(Note this is different from both I<size in blocks> and I<filesystem block "
7284 "size>)."
7285 msgstr ""
7286
7287 #. type: =head2
7288 #: ../src/guestfs-actions.pod:691
7289 msgid "guestfs_blockdev_getro"
7290 msgstr ""
7291
7292 #. type: verbatim
7293 #: ../src/guestfs-actions.pod:693
7294 #, no-wrap
7295 msgid ""
7296 " int\n"
7297 " guestfs_blockdev_getro (guestfs_h *g,\n"
7298 "                         const char *device);\n"
7299 "\n"
7300 msgstr ""
7301
7302 #. type: textblock
7303 #: ../src/guestfs-actions.pod:697 ../fish/guestfish-actions.pod:465
7304 msgid ""
7305 "Returns a boolean indicating if the block device is read-only (true if read-"
7306 "only, false if not)."
7307 msgstr ""
7308
7309 #. type: textblock
7310 #: ../src/guestfs-actions.pod:702 ../src/guestfs-actions.pod:1409
7311 #: ../src/guestfs-actions.pod:1424 ../src/guestfs-actions.pod:1911
7312 #: ../src/guestfs-actions.pod:1922 ../src/guestfs-actions.pod:1994
7313 #: ../src/guestfs-actions.pod:2049 ../src/guestfs-actions.pod:2064
7314 #: ../src/guestfs-actions.pod:2089 ../src/guestfs-actions.pod:2112
7315 #: ../src/guestfs-actions.pod:3085 ../src/guestfs-actions.pod:3102
7316 #: ../src/guestfs-actions.pod:3121 ../src/guestfs-actions.pod:3284
7317 #: ../src/guestfs-actions.pod:3298 ../src/guestfs-actions.pod:3313
7318 #: ../src/guestfs-actions.pod:3327 ../src/guestfs-actions.pod:3343
7319 #: ../src/guestfs-actions.pod:3358 ../src/guestfs-actions.pod:3374
7320 #: ../src/guestfs-actions.pod:3388 ../src/guestfs-actions.pod:3401
7321 #: ../src/guestfs-actions.pod:3415 ../src/guestfs-actions.pod:3430
7322 #: ../src/guestfs-actions.pod:3445 ../src/guestfs-actions.pod:4992
7323 msgid "This function returns a C truth value on success or -1 on error."
7324 msgstr ""
7325
7326 #. type: =head2
7327 #: ../src/guestfs-actions.pod:706
7328 msgid "guestfs_blockdev_getsize64"
7329 msgstr ""
7330
7331 #. type: verbatim
7332 #: ../src/guestfs-actions.pod:708
7333 #, no-wrap
7334 msgid ""
7335 " int64_t\n"
7336 " guestfs_blockdev_getsize64 (guestfs_h *g,\n"
7337 "                             const char *device);\n"
7338 "\n"
7339 msgstr ""
7340
7341 #. type: textblock
7342 #: ../src/guestfs-actions.pod:712 ../fish/guestfish-actions.pod:474
7343 msgid "This returns the size of the device in bytes."
7344 msgstr ""
7345
7346 #. type: textblock
7347 #: ../src/guestfs-actions.pod:714
7348 msgid "See also C<guestfs_blockdev_getsz>."
7349 msgstr ""
7350
7351 #. type: =head2
7352 #: ../src/guestfs-actions.pod:722
7353 msgid "guestfs_blockdev_getss"
7354 msgstr ""
7355
7356 #. type: verbatim
7357 #: ../src/guestfs-actions.pod:724
7358 #, no-wrap
7359 msgid ""
7360 " int\n"
7361 " guestfs_blockdev_getss (guestfs_h *g,\n"
7362 "                         const char *device);\n"
7363 "\n"
7364 msgstr ""
7365
7366 #. type: textblock
7367 #: ../src/guestfs-actions.pod:728 ../fish/guestfish-actions.pod:484
7368 msgid ""
7369 "This returns the size of sectors on a block device.  Usually 512, but can be "
7370 "larger for modern devices."
7371 msgstr ""
7372
7373 #. type: textblock
7374 #: ../src/guestfs-actions.pod:731
7375 msgid ""
7376 "(Note, this is not the size in sectors, use C<guestfs_blockdev_getsz> for "
7377 "that)."
7378 msgstr ""
7379
7380 #. type: =head2
7381 #: ../src/guestfs-actions.pod:740
7382 msgid "guestfs_blockdev_getsz"
7383 msgstr ""
7384
7385 #. type: verbatim
7386 #: ../src/guestfs-actions.pod:742
7387 #, no-wrap
7388 msgid ""
7389 " int64_t\n"
7390 " guestfs_blockdev_getsz (guestfs_h *g,\n"
7391 "                         const char *device);\n"
7392 "\n"
7393 msgstr ""
7394
7395 #. type: textblock
7396 #: ../src/guestfs-actions.pod:746 ../fish/guestfish-actions.pod:496
7397 msgid ""
7398 "This returns the size of the device in units of 512-byte sectors (even if "
7399 "the sectorsize isn't 512 bytes ... weird)."
7400 msgstr ""
7401
7402 #. type: textblock
7403 #: ../src/guestfs-actions.pod:749
7404 msgid ""
7405 "See also C<guestfs_blockdev_getss> for the real sector size of the device, "
7406 "and C<guestfs_blockdev_getsize64> for the more useful I<size in bytes>."
7407 msgstr ""
7408
7409 #. type: =head2
7410 #: ../src/guestfs-actions.pod:759
7411 msgid "guestfs_blockdev_rereadpt"
7412 msgstr ""
7413
7414 #. type: verbatim
7415 #: ../src/guestfs-actions.pod:761
7416 #, no-wrap
7417 msgid ""
7418 " int\n"
7419 " guestfs_blockdev_rereadpt (guestfs_h *g,\n"
7420 "                            const char *device);\n"
7421 "\n"
7422 msgstr ""
7423
7424 #. type: textblock
7425 #: ../src/guestfs-actions.pod:765 ../fish/guestfish-actions.pod:509
7426 msgid "Reread the partition table on C<device>."
7427 msgstr ""
7428
7429 #. type: =head2
7430 #: ../src/guestfs-actions.pod:773
7431 msgid "guestfs_blockdev_setbsz"
7432 msgstr ""
7433
7434 #. type: verbatim
7435 #: ../src/guestfs-actions.pod:775
7436 #, no-wrap
7437 msgid ""
7438 " int\n"
7439 " guestfs_blockdev_setbsz (guestfs_h *g,\n"
7440 "                          const char *device,\n"
7441 "                          int blocksize);\n"
7442 "\n"
7443 msgstr ""
7444
7445 #. type: textblock
7446 #: ../src/guestfs-actions.pod:780 ../fish/guestfish-actions.pod:517
7447 msgid "This sets the block size of a device."
7448 msgstr ""
7449
7450 #. type: =head2
7451 #: ../src/guestfs-actions.pod:791
7452 msgid "guestfs_blockdev_setro"
7453 msgstr ""
7454
7455 #. type: verbatim
7456 #: ../src/guestfs-actions.pod:793
7457 #, no-wrap
7458 msgid ""
7459 " int\n"
7460 " guestfs_blockdev_setro (guestfs_h *g,\n"
7461 "                         const char *device);\n"
7462 "\n"
7463 msgstr ""
7464
7465 #. type: textblock
7466 #: ../src/guestfs-actions.pod:797 ../fish/guestfish-actions.pod:528
7467 msgid "Sets the block device named C<device> to read-only."
7468 msgstr ""
7469
7470 #. type: =head2
7471 #: ../src/guestfs-actions.pod:805
7472 msgid "guestfs_blockdev_setrw"
7473 msgstr ""
7474
7475 #. type: verbatim
7476 #: ../src/guestfs-actions.pod:807
7477 #, no-wrap
7478 msgid ""
7479 " int\n"
7480 " guestfs_blockdev_setrw (guestfs_h *g,\n"
7481 "                         const char *device);\n"
7482 "\n"
7483 msgstr ""
7484
7485 #. type: textblock
7486 #: ../src/guestfs-actions.pod:811 ../fish/guestfish-actions.pod:536
7487 msgid "Sets the block device named C<device> to read-write."
7488 msgstr ""
7489
7490 #. type: =head2
7491 #: ../src/guestfs-actions.pod:819
7492 msgid "guestfs_case_sensitive_path"
7493 msgstr ""
7494
7495 #. type: verbatim
7496 #: ../src/guestfs-actions.pod:821
7497 #, no-wrap
7498 msgid ""
7499 " char *\n"
7500 " guestfs_case_sensitive_path (guestfs_h *g,\n"
7501 "                              const char *path);\n"
7502 "\n"
7503 msgstr ""
7504
7505 #. type: textblock
7506 #: ../src/guestfs-actions.pod:825 ../fish/guestfish-actions.pod:544
7507 msgid ""
7508 "This can be used to resolve case insensitive paths on a filesystem which is "
7509 "case sensitive.  The use case is to resolve paths which you have read from "
7510 "Windows configuration files or the Windows Registry, to the true path."
7511 msgstr ""
7512
7513 #. type: textblock
7514 #: ../src/guestfs-actions.pod:830 ../fish/guestfish-actions.pod:549
7515 msgid ""
7516 "The command handles a peculiarity of the Linux ntfs-3g filesystem driver "
7517 "(and probably others), which is that although the underlying filesystem is "
7518 "case-insensitive, the driver exports the filesystem to Linux as case-"
7519 "sensitive."
7520 msgstr ""
7521
7522 #. type: textblock
7523 #: ../src/guestfs-actions.pod:835 ../fish/guestfish-actions.pod:554
7524 msgid ""
7525 "One consequence of this is that special directories such as C<c:\\windows> "
7526 "may appear as C</WINDOWS> or C</windows> (or other things) depending on the "
7527 "precise details of how they were created.  In Windows itself this would not "
7528 "be a problem."
7529 msgstr ""
7530
7531 #. type: textblock
7532 #: ../src/guestfs-actions.pod:841 ../fish/guestfish-actions.pod:560
7533 msgid ""
7534 "Bug or feature? You decide: L<http://www.tuxera.com/community/ntfs-3g-faq/"
7535 "#posixfilenames1>"
7536 msgstr ""
7537
7538 #. type: textblock
7539 #: ../src/guestfs-actions.pod:844 ../fish/guestfish-actions.pod:563
7540 msgid ""
7541 "This function resolves the true case of each element in the path and returns "
7542 "the case-sensitive path."
7543 msgstr ""
7544
7545 #. type: textblock
7546 #: ../src/guestfs-actions.pod:847
7547 msgid ""
7548 "Thus C<guestfs_case_sensitive_path> (\"/Windows/System32\")  might return C<"
7549 "\"/WINDOWS/system32\"> (the exact return value would depend on details of "
7550 "how the directories were originally created under Windows)."
7551 msgstr ""
7552
7553 #. type: textblock
7554 #: ../src/guestfs-actions.pod:852 ../fish/guestfish-actions.pod:571
7555 msgid "I<Note>: This function does not handle drive names, backslashes etc."
7556 msgstr ""
7557
7558 #. type: textblock
7559 #: ../src/guestfs-actions.pod:855
7560 msgid "See also C<guestfs_realpath>."
7561 msgstr ""
7562
7563 #. type: textblock
7564 #: ../src/guestfs-actions.pod:860 ../src/guestfs-actions.pod:7011
7565 msgid "(Added in 1.0.75)"
7566 msgstr ""
7567
7568 #. type: =head2
7569 #: ../src/guestfs-actions.pod:862
7570 msgid "guestfs_cat"
7571 msgstr ""
7572
7573 #. type: verbatim
7574 #: ../src/guestfs-actions.pod:864
7575 #, no-wrap
7576 msgid ""
7577 " char *\n"
7578 " guestfs_cat (guestfs_h *g,\n"
7579 "              const char *path);\n"
7580 "\n"
7581 msgstr ""
7582
7583 #. type: textblock
7584 #: ../src/guestfs-actions.pod:868 ../src/guestfs-actions.pod:5479
7585 #: ../fish/guestfish-actions.pod:580 ../fish/guestfish-actions.pod:3680
7586 msgid "Return the contents of the file named C<path>."
7587 msgstr ""
7588
7589 #. type: textblock
7590 #: ../src/guestfs-actions.pod:870
7591 msgid ""
7592 "Note that this function cannot correctly handle binary files (specifically, "
7593 "files containing C<\\0> character which is treated as end of string).  For "
7594 "those you need to use the C<guestfs_read_file> or C<guestfs_download> "
7595 "functions which have a more complex interface."
7596 msgstr ""
7597
7598 #. type: textblock
7599 #: ../src/guestfs-actions.pod:878 ../src/guestfs-actions.pod:1057
7600 #: ../src/guestfs-actions.pod:1077 ../src/guestfs-actions.pod:1373
7601 #: ../src/guestfs-actions.pod:1392 ../src/guestfs-actions.pod:1495
7602 #: ../src/guestfs-actions.pod:1514 ../src/guestfs-actions.pod:1760
7603 #: ../src/guestfs-actions.pod:2218 ../src/guestfs-actions.pod:2237
7604 #: ../src/guestfs-actions.pod:2280 ../src/guestfs-actions.pod:2304
7605 #: ../src/guestfs-actions.pod:2321 ../src/guestfs-actions.pod:2350
7606 #: ../src/guestfs-actions.pod:5261 ../src/guestfs-actions.pod:5287
7607 #: ../src/guestfs-actions.pod:5418 ../src/guestfs-actions.pod:5444
7608 #: ../src/guestfs-actions.pod:5468 ../src/guestfs-actions.pod:6396
7609 #: ../src/guestfs-actions.pod:6451 ../src/guestfs-actions.pod:6597
7610 #: ../src/guestfs-actions.pod:6621 ../src/guestfs-actions.pod:7290
7611 #: ../src/guestfs-actions.pod:7316 ../src/guestfs-actions.pod:7342
7612 #: ../src/guestfs-actions.pod:7361 ../src/guestfs-actions.pod:7446
7613 #: ../src/guestfs-actions.pod:7465 ../src/guestfs-actions.pod:7511
7614 #: ../src/guestfs-actions.pod:7530 ../fish/guestfish-actions.pod:587
7615 #: ../fish/guestfish-actions.pod:722 ../fish/guestfish-actions.pod:734
7616 #: ../fish/guestfish-actions.pod:910 ../fish/guestfish-actions.pod:920
7617 #: ../fish/guestfish-actions.pod:987 ../fish/guestfish-actions.pod:997
7618 #: ../fish/guestfish-actions.pod:1189 ../fish/guestfish-actions.pod:1490
7619 #: ../fish/guestfish-actions.pod:1500 ../fish/guestfish-actions.pod:1528
7620 #: ../fish/guestfish-actions.pod:1543 ../fish/guestfish-actions.pod:1553
7621 #: ../fish/guestfish-actions.pod:1572 ../fish/guestfish-actions.pod:3550
7622 #: ../fish/guestfish-actions.pod:3565 ../fish/guestfish-actions.pod:3641
7623 #: ../fish/guestfish-actions.pod:3658 ../fish/guestfish-actions.pod:3673
7624 #: ../fish/guestfish-actions.pod:4327 ../fish/guestfish-actions.pod:4373
7625 #: ../fish/guestfish-actions.pod:4458 ../fish/guestfish-actions.pod:4473
7626 #: ../fish/guestfish-actions.pod:4883 ../fish/guestfish-actions.pod:4901
7627 #: ../fish/guestfish-actions.pod:4918 ../fish/guestfish-actions.pod:4928
7628 #: ../fish/guestfish-actions.pod:4976 ../fish/guestfish-actions.pod:4986
7629 #: ../fish/guestfish-actions.pod:5015 ../fish/guestfish-actions.pod:5025
7630 msgid ""
7631 "Because of the message protocol, there is a transfer limit of somewhere "
7632 "between 2MB and 4MB.  See L<guestfs(3)/PROTOCOL LIMITS>."
7633 msgstr ""
7634
7635 #. type: textblock
7636 #: ../src/guestfs-actions.pod:881 ../src/guestfs-actions.pod:3561
7637 #: ../src/guestfs-actions.pod:3623 ../src/guestfs-actions.pod:3640
7638 #: ../src/guestfs-actions.pod:3728 ../src/guestfs-actions.pod:4133
7639 #: ../src/guestfs-actions.pod:4147 ../src/guestfs-actions.pod:5367
7640 #: ../src/guestfs-actions.pod:5381 ../src/guestfs-actions.pod:7170
7641 #: ../src/guestfs-actions.pod:7184
7642 msgid "(Added in 0.4)"
7643 msgstr ""
7644
7645 #. type: =head2
7646 #: ../src/guestfs-actions.pod:883
7647 msgid "guestfs_checksum"
7648 msgstr ""
7649
7650 #. type: verbatim
7651 #: ../src/guestfs-actions.pod:885
7652 #, no-wrap
7653 msgid ""
7654 " char *\n"
7655 " guestfs_checksum (guestfs_h *g,\n"
7656 "                   const char *csumtype,\n"
7657 "                   const char *path);\n"
7658 "\n"
7659 msgstr ""
7660
7661 #. type: textblock
7662 #: ../src/guestfs-actions.pod:890 ../fish/guestfish-actions.pod:594
7663 msgid ""
7664 "This call computes the MD5, SHAx or CRC checksum of the file named C<path>."
7665 msgstr ""
7666
7667 #. type: textblock
7668 #: ../src/guestfs-actions.pod:893 ../fish/guestfish-actions.pod:597
7669 msgid ""
7670 "The type of checksum to compute is given by the C<csumtype> parameter which "
7671 "must have one of the following values:"
7672 msgstr ""
7673
7674 #. type: =item
7675 #: ../src/guestfs-actions.pod:898 ../fish/guestfish-actions.pod:602
7676 msgid "C<crc>"
7677 msgstr "C<crc>"
7678
7679 #. type: textblock
7680 #: ../src/guestfs-actions.pod:900 ../fish/guestfish-actions.pod:604
7681 msgid ""
7682 "Compute the cyclic redundancy check (CRC) specified by POSIX for the "
7683 "C<cksum> command."
7684 msgstr ""
7685
7686 #. type: =item
7687 #: ../src/guestfs-actions.pod:903 ../fish/guestfish-actions.pod:607
7688 msgid "C<md5>"
7689 msgstr "C<md5>"
7690
7691 #. type: textblock
7692 #: ../src/guestfs-actions.pod:905 ../fish/guestfish-actions.pod:609
7693 msgid "Compute the MD5 hash (using the C<md5sum> program)."
7694 msgstr ""
7695
7696 #. type: =item
7697 #: ../src/guestfs-actions.pod:907 ../fish/guestfish-actions.pod:611
7698 msgid "C<sha1>"
7699 msgstr "C<sha1>"
7700
7701 #. type: textblock
7702 #: ../src/guestfs-actions.pod:909 ../fish/guestfish-actions.pod:613
7703 msgid "Compute the SHA1 hash (using the C<sha1sum> program)."
7704 msgstr ""
7705
7706 #. type: =item
7707 #: ../src/guestfs-actions.pod:911 ../fish/guestfish-actions.pod:615
7708 msgid "C<sha224>"
7709 msgstr "C<sha224>"
7710
7711 #. type: textblock
7712 #: ../src/guestfs-actions.pod:913 ../fish/guestfish-actions.pod:617
7713 msgid "Compute the SHA224 hash (using the C<sha224sum> program)."
7714 msgstr ""
7715
7716 #. type: =item
7717 #: ../src/guestfs-actions.pod:915 ../fish/guestfish-actions.pod:619
7718 msgid "C<sha256>"
7719 msgstr "C<sha256>"
7720
7721 #. type: textblock
7722 #: ../src/guestfs-actions.pod:917 ../fish/guestfish-actions.pod:621
7723 msgid "Compute the SHA256 hash (using the C<sha256sum> program)."
7724 msgstr ""
7725
7726 #. type: =item
7727 #: ../src/guestfs-actions.pod:919 ../fish/guestfish-actions.pod:623
7728 msgid "C<sha384>"
7729 msgstr "C<sha384>"
7730
7731 #. type: textblock
7732 #: ../src/guestfs-actions.pod:921 ../fish/guestfish-actions.pod:625
7733 msgid "Compute the SHA384 hash (using the C<sha384sum> program)."
7734 msgstr ""
7735
7736 #. type: =item
7737 #: ../src/guestfs-actions.pod:923 ../fish/guestfish-actions.pod:627
7738 msgid "C<sha512>"
7739 msgstr "C<sha512>"
7740
7741 #. type: textblock
7742 #: ../src/guestfs-actions.pod:925 ../fish/guestfish-actions.pod:629
7743 msgid "Compute the SHA512 hash (using the C<sha512sum> program)."
7744 msgstr ""
7745
7746 #. type: textblock
7747 #: ../src/guestfs-actions.pod:929 ../fish/guestfish-actions.pod:633
7748 msgid "The checksum is returned as a printable string."
7749 msgstr ""
7750
7751 #. type: textblock
7752 #: ../src/guestfs-actions.pod:931
7753 msgid "To get the checksum for a device, use C<guestfs_checksum_device>."
7754 msgstr ""
7755
7756 #. type: textblock
7757 #: ../src/guestfs-actions.pod:933
7758 msgid "To get the checksums for many files, use C<guestfs_checksums_out>."
7759 msgstr ""
7760
7761 #. type: textblock
7762 #: ../src/guestfs-actions.pod:938 ../src/guestfs-actions.pod:1246
7763 #: ../src/guestfs-actions.pod:2080 ../src/guestfs-actions.pod:3300
7764 #: ../src/guestfs-actions.pod:3329 ../src/guestfs-actions.pod:3390
7765 #: ../src/guestfs-actions.pod:3417 ../src/guestfs-actions.pod:6867
7766 msgid "(Added in 1.0.2)"
7767 msgstr ""
7768
7769 #. type: =head2
7770 #: ../src/guestfs-actions.pod:940
7771 msgid "guestfs_checksum_device"
7772 msgstr ""
7773
7774 #. type: verbatim
7775 #: ../src/guestfs-actions.pod:942
7776 #, no-wrap
7777 msgid ""
7778 " char *\n"
7779 " guestfs_checksum_device (guestfs_h *g,\n"
7780 "                          const char *csumtype,\n"
7781 "                          const char *device);\n"
7782 "\n"
7783 msgstr ""
7784
7785 #. type: textblock
7786 #: ../src/guestfs-actions.pod:947
7787 msgid ""
7788 "This call computes the MD5, SHAx or CRC checksum of the contents of the "
7789 "device named C<device>.  For the types of checksums supported see the "
7790 "C<guestfs_checksum> command."
7791 msgstr ""
7792
7793 #. type: textblock
7794 #: ../src/guestfs-actions.pod:954 ../src/guestfs-actions.pod:4898
7795 #: ../src/guestfs-actions.pod:4957 ../src/guestfs-actions.pod:4994
7796 #: ../src/guestfs-actions.pod:5012 ../src/guestfs-actions.pod:5188
7797 #: ../src/guestfs-actions.pod:6776 ../src/guestfs-actions.pod:6790
7798 #: ../src/guestfs-actions.pod:7196
7799 msgid "(Added in 1.3.2)"
7800 msgstr ""
7801
7802 #. type: =head2
7803 #: ../src/guestfs-actions.pod:956
7804 msgid "guestfs_checksums_out"
7805 msgstr ""
7806
7807 #. type: verbatim
7808 #: ../src/guestfs-actions.pod:958
7809 #, no-wrap
7810 msgid ""
7811 " int\n"
7812 " guestfs_checksums_out (guestfs_h *g,\n"
7813 "                        const char *csumtype,\n"
7814 "                        const char *directory,\n"
7815 "                        const char *sumsfile);\n"
7816 "\n"
7817 msgstr ""
7818
7819 #. type: textblock
7820 #: ../src/guestfs-actions.pod:964 ../fish/guestfish-actions.pod:651
7821 msgid ""
7822 "This command computes the checksums of all regular files in C<directory> and "
7823 "then emits a list of those checksums to the local output file C<sumsfile>."
7824 msgstr ""
7825
7826 #. type: textblock
7827 #: ../src/guestfs-actions.pod:968 ../fish/guestfish-actions.pod:655
7828 msgid ""
7829 "This can be used for verifying the integrity of a virtual machine.  However "
7830 "to be properly secure you should pay attention to the output of the checksum "
7831 "command (it uses the ones from GNU coreutils).  In particular when the "
7832 "filename is not printable, coreutils uses a special backslash syntax.  For "
7833 "more information, see the GNU coreutils info file."
7834 msgstr ""
7835
7836 #. type: textblock
7837 #: ../src/guestfs-actions.pod:978
7838 msgid "(Added in 1.3.7)"
7839 msgstr ""
7840
7841 #. type: =head2
7842 #: ../src/guestfs-actions.pod:980
7843 msgid "guestfs_chmod"
7844 msgstr ""
7845
7846 #. type: verbatim
7847 #: ../src/guestfs-actions.pod:982
7848 #, no-wrap
7849 msgid ""
7850 " int\n"
7851 " guestfs_chmod (guestfs_h *g,\n"
7852 "                int mode,\n"
7853 "                const char *path);\n"
7854 "\n"
7855 msgstr ""
7856
7857 #. type: textblock
7858 #: ../src/guestfs-actions.pod:987 ../fish/guestfish-actions.pod:669
7859 msgid ""
7860 "Change the mode (permissions) of C<path> to C<mode>.  Only numeric modes are "
7861 "supported."
7862 msgstr ""
7863
7864 #. type: textblock
7865 #: ../src/guestfs-actions.pod:990 ../fish/guestfish-actions.pod:672
7866 msgid ""
7867 "I<Note>: When using this command from guestfish, C<mode> by default would be "
7868 "decimal, unless you prefix it with C<0> to get octal, ie. use C<0700> not "
7869 "C<700>."
7870 msgstr ""
7871
7872 #. type: textblock
7873 #: ../src/guestfs-actions.pod:994 ../src/guestfs-actions.pod:4384
7874 #: ../src/guestfs-actions.pod:4581 ../src/guestfs-actions.pod:4600
7875 #: ../src/guestfs-actions.pod:4619 ../fish/guestfish-actions.pod:676
7876 #: ../fish/guestfish-actions.pod:2980 ../fish/guestfish-actions.pod:3109
7877 #: ../fish/guestfish-actions.pod:3119 ../fish/guestfish-actions.pod:3129
7878 msgid "The mode actually set is affected by the umask."
7879 msgstr ""
7880
7881 #. type: =head2
7882 #: ../src/guestfs-actions.pod:1000
7883 msgid "guestfs_chown"
7884 msgstr ""
7885
7886 #. type: verbatim
7887 #: ../src/guestfs-actions.pod:1002
7888 #, no-wrap
7889 msgid ""
7890 " int\n"
7891 " guestfs_chown (guestfs_h *g,\n"
7892 "                int owner,\n"
7893 "                int group,\n"
7894 "                const char *path);\n"
7895 "\n"
7896 msgstr ""
7897
7898 #. type: textblock
7899 #: ../src/guestfs-actions.pod:1008 ../fish/guestfish-actions.pod:682
7900 msgid "Change the file owner to C<owner> and group to C<group>."
7901 msgstr ""
7902
7903 #. type: textblock
7904 #: ../src/guestfs-actions.pod:1010 ../src/guestfs-actions.pod:3492
7905 #: ../fish/guestfish-actions.pod:684 ../fish/guestfish-actions.pod:2438
7906 msgid ""
7907 "Only numeric uid and gid are supported.  If you want to use names, you will "
7908 "need to locate and parse the password file yourself (Augeas support makes "
7909 "this relatively easy)."
7910 msgstr ""
7911
7912 #. type: =head2
7913 #: ../src/guestfs-actions.pod:1018
7914 msgid "guestfs_command"
7915 msgstr ""
7916
7917 #. type: verbatim
7918 #: ../src/guestfs-actions.pod:1020
7919 #, no-wrap
7920 msgid ""
7921 " char *\n"
7922 " guestfs_command (guestfs_h *g,\n"
7923 "                  char *const *arguments);\n"
7924 "\n"
7925 msgstr ""
7926
7927 #. type: textblock
7928 #: ../src/guestfs-actions.pod:1024 ../fish/guestfish-actions.pod:692
7929 msgid ""
7930 "This call runs a command from the guest filesystem.  The filesystem must be "
7931 "mounted, and must contain a compatible operating system (ie. something "
7932 "Linux, with the same or compatible processor architecture)."
7933 msgstr ""
7934
7935 #. type: textblock
7936 #: ../src/guestfs-actions.pod:1029
7937 msgid ""
7938 "The single parameter is an argv-style list of arguments.  The first element "
7939 "is the name of the program to run.  Subsequent elements are parameters.  The "
7940 "list must be non-empty (ie. must contain a program name).  Note that the "
7941 "command runs directly, and is I<not> invoked via the shell (see "
7942 "C<guestfs_sh>)."
7943 msgstr ""
7944
7945 #. type: textblock
7946 #: ../src/guestfs-actions.pod:1036 ../fish/guestfish-actions.pod:704
7947 msgid "The return value is anything printed to I<stdout> by the command."
7948 msgstr ""
7949
7950 #. type: textblock
7951 #: ../src/guestfs-actions.pod:1039 ../fish/guestfish-actions.pod:707
7952 msgid ""
7953 "If the command returns a non-zero exit status, then this function returns an "
7954 "error message.  The error message string is the content of I<stderr> from "
7955 "the command."
7956 msgstr ""
7957
7958 #. type: textblock
7959 #: ../src/guestfs-actions.pod:1043 ../fish/guestfish-actions.pod:711
7960 msgid ""
7961 "The C<$PATH> environment variable will contain at least C</usr/bin> and C</"
7962 "bin>.  If you require a program from another location, you should provide "
7963 "the full path in the first parameter."
7964 msgstr ""
7965
7966 #. type: textblock
7967 #: ../src/guestfs-actions.pod:1048 ../fish/guestfish-actions.pod:716
7968 msgid ""
7969 "Shared libraries and data files required by the program must be available on "
7970 "filesystems which are mounted in the correct places.  It is the caller's "
7971 "responsibility to ensure all filesystems that are needed are mounted at the "
7972 "right locations."
7973 msgstr ""
7974
7975 #. type: textblock
7976 #: ../src/guestfs-actions.pod:1060 ../src/guestfs-actions.pod:1080
7977 #: ../src/guestfs-actions.pod:1545
7978 msgid "(Added in 0.9.1)"
7979 msgstr ""
7980
7981 #. type: =head2
7982 #: ../src/guestfs-actions.pod:1062
7983 msgid "guestfs_command_lines"
7984 msgstr ""
7985
7986 #. type: verbatim
7987 #: ../src/guestfs-actions.pod:1064
7988 #, no-wrap
7989 msgid ""
7990 " char **\n"
7991 " guestfs_command_lines (guestfs_h *g,\n"
7992 "                        char *const *arguments);\n"
7993 "\n"
7994 msgstr ""
7995
7996 #. type: textblock
7997 #: ../src/guestfs-actions.pod:1068
7998 msgid ""
7999 "This is the same as C<guestfs_command>, but splits the result into a list of "
8000 "lines."
8001 msgstr ""
8002
8003 #. type: textblock
8004 #: ../src/guestfs-actions.pod:1071
8005 msgid "See also: C<guestfs_sh_lines>"
8006 msgstr ""
8007
8008 #. type: =head2
8009 #: ../src/guestfs-actions.pod:1082
8010 msgid "guestfs_config"
8011 msgstr ""
8012
8013 #. type: verbatim
8014 #: ../src/guestfs-actions.pod:1084
8015 #, no-wrap
8016 msgid ""
8017 " int\n"
8018 " guestfs_config (guestfs_h *g,\n"
8019 "                 const char *qemuparam,\n"
8020 "                 const char *qemuvalue);\n"
8021 "\n"
8022 msgstr ""
8023
8024 #. type: textblock
8025 #: ../src/guestfs-actions.pod:1089 ../fish/guestfish-actions.pod:741
8026 msgid ""
8027 "This can be used to add arbitrary qemu command line parameters of the form "
8028 "I<-param value>.  Actually it's not quite arbitrary - we prevent you from "
8029 "setting some parameters which would interfere with parameters that we use."
8030 msgstr ""
8031
8032 #. type: textblock
8033 #: ../src/guestfs-actions.pod:1094 ../fish/guestfish-actions.pod:746
8034 msgid "The first character of C<param> string must be a C<-> (dash)."
8035 msgstr ""
8036
8037 #. type: textblock
8038 #: ../src/guestfs-actions.pod:1096 ../fish/guestfish-actions.pod:748
8039 msgid "C<value> can be NULL."
8040 msgstr ""
8041
8042 #. type: =head2
8043 #: ../src/guestfs-actions.pod:1102
8044 msgid "guestfs_copy_size"
8045 msgstr ""
8046
8047 #. type: verbatim
8048 #: ../src/guestfs-actions.pod:1104
8049 #, no-wrap
8050 msgid ""
8051 " int\n"
8052 " guestfs_copy_size (guestfs_h *g,\n"
8053 "                    const char *src,\n"
8054 "                    const char *dest,\n"
8055 "                    int64_t size);\n"
8056 "\n"
8057 msgstr ""
8058
8059 #. type: textblock
8060 #: ../src/guestfs-actions.pod:1110 ../fish/guestfish-actions.pod:754
8061 msgid ""
8062 "This command copies exactly C<size> bytes from one source device or file "
8063 "C<src> to another destination device or file C<dest>."
8064 msgstr ""
8065
8066 #. type: textblock
8067 #: ../src/guestfs-actions.pod:1113 ../fish/guestfish-actions.pod:757
8068 msgid ""
8069 "Note this will fail if the source is too short or if the destination is not "
8070 "large enough."
8071 msgstr ""
8072
8073 #. type: textblock
8074 #: ../src/guestfs-actions.pod:1118 ../src/guestfs-actions.pod:1241
8075 #: ../src/guestfs-actions.pod:1272 ../src/guestfs-actions.pod:1317
8076 #: ../src/guestfs-actions.pod:1694 ../src/guestfs-actions.pod:1716
8077 #: ../src/guestfs-actions.pod:3473 ../src/guestfs-actions.pod:6862
8078 #: ../src/guestfs-actions.pod:6896 ../src/guestfs-actions.pod:7382
8079 #: ../src/guestfs-actions.pod:7401
8080 msgid ""
8081 "This long-running command can generate progress notification messages so "
8082 "that the caller can display a progress bar or indicator.  To receive these "
8083 "messages, the caller must register a progress event callback.  See L<guestfs"
8084 "(3)/GUESTFS_EVENT_PROGRESS>."
8085 msgstr ""
8086
8087 #. type: textblock
8088 #: ../src/guestfs-actions.pod:1123 ../src/guestfs-actions.pod:4160
8089 #: ../src/guestfs-actions.pod:5394 ../src/guestfs-actions.pod:7103
8090 #: ../src/guestfs-actions.pod:7123 ../src/guestfs-actions.pod:7209
8091 msgid "(Added in 1.0.87)"
8092 msgstr ""
8093
8094 #. type: =head2
8095 #: ../src/guestfs-actions.pod:1125
8096 msgid "guestfs_cp"
8097 msgstr ""
8098
8099 #. type: verbatim
8100 #: ../src/guestfs-actions.pod:1127
8101 #, no-wrap
8102 msgid ""
8103 " int\n"
8104 " guestfs_cp (guestfs_h *g,\n"
8105 "             const char *src,\n"
8106 "             const char *dest);\n"
8107 "\n"
8108 msgstr ""
8109
8110 #. type: textblock
8111 #: ../src/guestfs-actions.pod:1132 ../fish/guestfish-actions.pod:764
8112 msgid ""
8113 "This copies a file from C<src> to C<dest> where C<dest> is either a "
8114 "destination filename or destination directory."
8115 msgstr ""
8116
8117 #. type: textblock
8118 #: ../src/guestfs-actions.pod:1137 ../src/guestfs-actions.pod:1151
8119 #: ../src/guestfs-actions.pod:1223 ../src/guestfs-actions.pod:1297
8120 #: ../src/guestfs-actions.pod:1411 ../src/guestfs-actions.pod:4852
8121 #: ../src/guestfs-actions.pod:5238
8122 msgid "(Added in 1.0.18)"
8123 msgstr ""
8124
8125 #. type: =head2
8126 #: ../src/guestfs-actions.pod:1139
8127 msgid "guestfs_cp_a"
8128 msgstr ""
8129
8130 #. type: verbatim
8131 #: ../src/guestfs-actions.pod:1141
8132 #, no-wrap
8133 msgid ""
8134 " int\n"
8135 " guestfs_cp_a (guestfs_h *g,\n"
8136 "               const char *src,\n"
8137 "               const char *dest);\n"
8138 "\n"
8139 msgstr ""
8140
8141 #. type: textblock
8142 #: ../src/guestfs-actions.pod:1146 ../fish/guestfish-actions.pod:771
8143 msgid ""
8144 "This copies a file or directory from C<src> to C<dest> recursively using the "
8145 "C<cp -a> command."
8146 msgstr ""
8147
8148 #. type: =head2
8149 #: ../src/guestfs-actions.pod:1153
8150 msgid "guestfs_dd"
8151 msgstr ""
8152
8153 #. type: verbatim
8154 #: ../src/guestfs-actions.pod:1155
8155 #, no-wrap
8156 msgid ""
8157 " int\n"
8158 " guestfs_dd (guestfs_h *g,\n"
8159 "             const char *src,\n"
8160 "             const char *dest);\n"
8161 "\n"
8162 msgstr ""
8163
8164 #. type: textblock
8165 #: ../src/guestfs-actions.pod:1160 ../fish/guestfish-actions.pod:778
8166 msgid ""
8167 "This command copies from one source device or file C<src> to another "
8168 "destination device or file C<dest>.  Normally you would use this to copy to "
8169 "or from a device or partition, for example to duplicate a filesystem."
8170 msgstr ""
8171
8172 #. type: textblock
8173 #: ../src/guestfs-actions.pod:1165
8174 msgid ""
8175 "If the destination is a device, it must be as large or larger than the "
8176 "source file or device, otherwise the copy will fail.  This command cannot do "
8177 "partial copies (see C<guestfs_copy_size>)."
8178 msgstr ""
8179
8180 #. type: =head2
8181 #: ../src/guestfs-actions.pod:1173
8182 msgid "guestfs_df"
8183 msgstr ""
8184
8185 #. type: verbatim
8186 #: ../src/guestfs-actions.pod:1175
8187 #, no-wrap
8188 msgid ""
8189 " char *\n"
8190 " guestfs_df (guestfs_h *g);\n"
8191 "\n"
8192 msgstr ""
8193
8194 #. type: textblock
8195 #: ../src/guestfs-actions.pod:1178 ../fish/guestfish-actions.pod:791
8196 msgid "This command runs the C<df> command to report disk space used."
8197 msgstr ""
8198
8199 #. type: textblock
8200 #: ../src/guestfs-actions.pod:1180 ../src/guestfs-actions.pod:1197
8201 msgid ""
8202 "This command is mostly useful for interactive sessions.  It is I<not> "
8203 "intended that you try to parse the output string.  Use C<guestfs_statvfs> "
8204 "from programs."
8205 msgstr ""
8206
8207 #. type: textblock
8208 #: ../src/guestfs-actions.pod:1187 ../src/guestfs-actions.pod:1204
8209 #: ../src/guestfs-actions.pod:1322 ../src/guestfs-actions.pod:2283
8210 #: ../src/guestfs-actions.pod:2307 ../src/guestfs-actions.pod:2375
8211 #: ../src/guestfs-actions.pod:4270 ../src/guestfs-actions.pod:4752
8212 #: ../src/guestfs-actions.pod:6600 ../src/guestfs-actions.pod:6624
8213 #: ../src/guestfs-actions.pod:7249 ../src/guestfs-actions.pod:7262
8214 #: ../src/guestfs-actions.pod:7275
8215 msgid "(Added in 1.0.54)"
8216 msgstr ""
8217
8218 #. type: =head2
8219 #: ../src/guestfs-actions.pod:1189
8220 msgid "guestfs_df_h"
8221 msgstr ""
8222
8223 #. type: verbatim
8224 #: ../src/guestfs-actions.pod:1191
8225 #, no-wrap
8226 msgid ""
8227 " char *\n"
8228 " guestfs_df_h (guestfs_h *g);\n"
8229 "\n"
8230 msgstr ""
8231
8232 #. type: textblock
8233 #: ../src/guestfs-actions.pod:1194 ../fish/guestfish-actions.pod:801
8234 msgid ""
8235 "This command runs the C<df -h> command to report disk space used in human-"
8236 "readable format."
8237 msgstr ""
8238
8239 #. type: =head2
8240 #: ../src/guestfs-actions.pod:1206
8241 msgid "guestfs_dmesg"
8242 msgstr ""
8243
8244 #. type: verbatim
8245 #: ../src/guestfs-actions.pod:1208
8246 #, no-wrap
8247 msgid ""
8248 " char *\n"
8249 " guestfs_dmesg (guestfs_h *g);\n"
8250 "\n"
8251 msgstr ""
8252
8253 #. type: textblock
8254 #: ../src/guestfs-actions.pod:1211 ../fish/guestfish-actions.pod:812
8255 msgid ""
8256 "This returns the kernel messages (C<dmesg> output) from the guest kernel.  "
8257 "This is sometimes useful for extended debugging of problems."
8258 msgstr ""
8259
8260 #. type: textblock
8261 #: ../src/guestfs-actions.pod:1215
8262 msgid ""
8263 "Another way to get the same information is to enable verbose messages with "
8264 "C<guestfs_set_verbose> or by setting the environment variable "
8265 "C<LIBGUESTFS_DEBUG=1> before running the program."
8266 msgstr ""
8267
8268 #. type: =head2
8269 #: ../src/guestfs-actions.pod:1225
8270 msgid "guestfs_download"
8271 msgstr ""
8272
8273 #. type: verbatim
8274 #: ../src/guestfs-actions.pod:1227
8275 #, no-wrap
8276 msgid ""
8277 " int\n"
8278 " guestfs_download (guestfs_h *g,\n"
8279 "                   const char *remotefilename,\n"
8280 "                   const char *filename);\n"
8281 "\n"
8282 msgstr ""
8283
8284 #. type: textblock
8285 #: ../src/guestfs-actions.pod:1232 ../src/guestfs-actions.pod:1257
8286 #: ../fish/guestfish-actions.pod:825 ../fish/guestfish-actions.pod:838
8287 msgid ""
8288 "Download file C<remotefilename> and save it as C<filename> on the local "
8289 "machine."
8290 msgstr ""
8291
8292 #. type: textblock
8293 #: ../src/guestfs-actions.pod:1235 ../src/guestfs-actions.pod:6856
8294 #: ../fish/guestfish-actions.pod:828 ../fish/guestfish-actions.pod:4631
8295 msgid "C<filename> can also be a named pipe."
8296 msgstr ""
8297
8298 #. type: textblock
8299 #: ../src/guestfs-actions.pod:1237
8300 msgid "See also C<guestfs_upload>, C<guestfs_cat>."
8301 msgstr ""
8302
8303 #. type: =head2
8304 #: ../src/guestfs-actions.pod:1248
8305 msgid "guestfs_download_offset"
8306 msgstr ""
8307
8308 #. type: verbatim
8309 #: ../src/guestfs-actions.pod:1250
8310 #, no-wrap
8311 msgid ""
8312 " int\n"
8313 " guestfs_download_offset (guestfs_h *g,\n"
8314 "                          const char *remotefilename,\n"
8315 "                          const char *filename,\n"
8316 "                          int64_t offset,\n"
8317 "                          int64_t size);\n"
8318 "\n"
8319 msgstr ""
8320
8321 #. type: textblock
8322 #: ../src/guestfs-actions.pod:1260 ../fish/guestfish-actions.pod:841
8323 msgid ""
8324 "C<remotefilename> is read for C<size> bytes starting at C<offset> (this "
8325 "region must be within the file or device)."
8326 msgstr ""
8327
8328 #. type: textblock
8329 #: ../src/guestfs-actions.pod:1263
8330 msgid ""
8331 "Note that there is no limit on the amount of data that can be downloaded "
8332 "with this call, unlike with C<guestfs_pread>, and this call always reads the "
8333 "full amount unless an error occurs."
8334 msgstr ""
8335
8336 #. type: textblock
8337 #: ../src/guestfs-actions.pod:1268
8338 msgid "See also C<guestfs_download>, C<guestfs_pread>."
8339 msgstr ""
8340
8341 #. type: textblock
8342 #: ../src/guestfs-actions.pod:1277 ../src/guestfs-actions.pod:6901
8343 msgid "(Added in 1.5.17)"
8344 msgstr ""
8345
8346 #. type: =head2
8347 #: ../src/guestfs-actions.pod:1279
8348 msgid "guestfs_drop_caches"
8349 msgstr ""
8350
8351 #. type: verbatim
8352 #: ../src/guestfs-actions.pod:1281
8353 #, no-wrap
8354 msgid ""
8355 " int\n"
8356 " guestfs_drop_caches (guestfs_h *g,\n"
8357 "                      int whattodrop);\n"
8358 "\n"
8359 msgstr ""
8360
8361 #. type: textblock
8362 #: ../src/guestfs-actions.pod:1285 ../fish/guestfish-actions.pod:857
8363 msgid ""
8364 "This instructs the guest kernel to drop its page cache, and/or dentries and "
8365 "inode caches.  The parameter C<whattodrop> tells the kernel what precisely "
8366 "to drop, see L<http://linux-mm.org/Drop_Caches>"
8367 msgstr ""
8368
8369 #. type: textblock
8370 #: ../src/guestfs-actions.pod:1290 ../fish/guestfish-actions.pod:862
8371 msgid "Setting C<whattodrop> to 3 should drop everything."
8372 msgstr ""
8373
8374 #. type: textblock
8375 #: ../src/guestfs-actions.pod:1292 ../fish/guestfish-actions.pod:864
8376 msgid ""
8377 "This automatically calls L<sync(2)> before the operation, so that the "
8378 "maximum guest memory is freed."
8379 msgstr ""
8380
8381 #. type: =head2
8382 #: ../src/guestfs-actions.pod:1299
8383 msgid "guestfs_du"
8384 msgstr ""
8385
8386 #. type: verbatim
8387 #: ../src/guestfs-actions.pod:1301
8388 #, no-wrap
8389 msgid ""
8390 " int64_t\n"
8391 " guestfs_du (guestfs_h *g,\n"
8392 "             const char *path);\n"
8393 "\n"
8394 msgstr ""
8395
8396 #. type: textblock
8397 #: ../src/guestfs-actions.pod:1305 ../fish/guestfish-actions.pod:871
8398 msgid ""
8399 "This command runs the C<du -s> command to estimate file space usage for "
8400 "C<path>."
8401 msgstr ""
8402
8403 #. type: textblock
8404 #: ../src/guestfs-actions.pod:1308 ../fish/guestfish-actions.pod:874
8405 msgid ""
8406 "C<path> can be a file or a directory.  If C<path> is a directory then the "
8407 "estimate includes the contents of the directory and all subdirectories "
8408 "(recursively)."
8409 msgstr ""
8410
8411 #. type: textblock
8412 #: ../src/guestfs-actions.pod:1312 ../fish/guestfish-actions.pod:878
8413 msgid ""
8414 "The result is the estimated size in I<kilobytes> (ie. units of 1024 bytes)."
8415 msgstr ""
8416
8417 #. type: =head2
8418 #: ../src/guestfs-actions.pod:1324
8419 msgid "guestfs_e2fsck_f"
8420 msgstr ""
8421
8422 #. type: verbatim
8423 #: ../src/guestfs-actions.pod:1326
8424 #, no-wrap
8425 msgid ""
8426 " int\n"
8427 " guestfs_e2fsck_f (guestfs_h *g,\n"
8428 "                   const char *device);\n"
8429 "\n"
8430 msgstr ""
8431
8432 #. type: textblock
8433 #: ../src/guestfs-actions.pod:1330 ../fish/guestfish-actions.pod:885
8434 msgid ""
8435 "This runs C<e2fsck -p -f device>, ie. runs the ext2/ext3 filesystem checker "
8436 "on C<device>, noninteractively (I<-p>), even if the filesystem appears to be "
8437 "clean (I<-f>)."
8438 msgstr ""
8439
8440 #. type: textblock
8441 #: ../src/guestfs-actions.pod:1334
8442 msgid ""
8443 "This command is only needed because of C<guestfs_resize2fs> (q.v.).  "
8444 "Normally you should use C<guestfs_fsck>."
8445 msgstr ""
8446
8447 #. type: textblock
8448 #: ../src/guestfs-actions.pod:1339
8449 msgid "(Added in 1.0.29)"
8450 msgstr ""
8451
8452 #. type: =head2
8453 #: ../src/guestfs-actions.pod:1341
8454 msgid "guestfs_echo_daemon"
8455 msgstr ""
8456
8457 #. type: verbatim
8458 #: ../src/guestfs-actions.pod:1343
8459 #, no-wrap
8460 msgid ""
8461 " char *\n"
8462 " guestfs_echo_daemon (guestfs_h *g,\n"
8463 "                      char *const *words);\n"
8464 "\n"
8465 msgstr ""
8466
8467 #. type: textblock
8468 #: ../src/guestfs-actions.pod:1347 ../fish/guestfish-actions.pod:896
8469 msgid ""
8470 "This command concatenates the list of C<words> passed with single spaces "
8471 "between them and returns the resulting string."
8472 msgstr ""
8473
8474 #. type: textblock
8475 #: ../src/guestfs-actions.pod:1350 ../fish/guestfish-actions.pod:899
8476 msgid "You can use this command to test the connection through to the daemon."
8477 msgstr ""
8478
8479 #. type: textblock
8480 #: ../src/guestfs-actions.pod:1352
8481 msgid "See also C<guestfs_ping_daemon>."
8482 msgstr ""
8483
8484 #. type: textblock
8485 #: ../src/guestfs-actions.pod:1357 ../src/guestfs-actions.pod:2091
8486 #: ../src/guestfs-actions.pod:6072
8487 msgid "(Added in 1.0.69)"
8488 msgstr ""
8489
8490 #. type: =head2
8491 #: ../src/guestfs-actions.pod:1359
8492 msgid "guestfs_egrep"
8493 msgstr ""
8494
8495 #. type: verbatim
8496 #: ../src/guestfs-actions.pod:1361
8497 #, no-wrap
8498 msgid ""
8499 " char **\n"
8500 " guestfs_egrep (guestfs_h *g,\n"
8501 "                const char *regex,\n"
8502 "                const char *path);\n"
8503 "\n"
8504 msgstr ""
8505
8506 #. type: textblock
8507 #: ../src/guestfs-actions.pod:1366 ../fish/guestfish-actions.pod:907
8508 msgid ""
8509 "This calls the external C<egrep> program and returns the matching lines."
8510 msgstr ""
8511
8512 #. type: textblock
8513 #: ../src/guestfs-actions.pod:1376 ../src/guestfs-actions.pod:1395
8514 #: ../src/guestfs-actions.pod:1452 ../src/guestfs-actions.pod:1498
8515 #: ../src/guestfs-actions.pod:1517 ../src/guestfs-actions.pod:2221
8516 #: ../src/guestfs-actions.pod:2240 ../src/guestfs-actions.pod:2396
8517 #: ../src/guestfs-actions.pod:2409 ../src/guestfs-actions.pod:2424
8518 #: ../src/guestfs-actions.pod:2470 ../src/guestfs-actions.pod:2492
8519 #: ../src/guestfs-actions.pod:2505 ../src/guestfs-actions.pod:3653
8520 #: ../src/guestfs-actions.pod:3667 ../src/guestfs-actions.pod:3680
8521 #: ../src/guestfs-actions.pod:3694 ../src/guestfs-actions.pod:4680
8522 #: ../src/guestfs-actions.pod:5572 ../src/guestfs-actions.pod:5621
8523 #: ../src/guestfs-actions.pod:6468 ../src/guestfs-actions.pod:6480
8524 #: ../src/guestfs-actions.pod:6493 ../src/guestfs-actions.pod:6506
8525 #: ../src/guestfs-actions.pod:6528 ../src/guestfs-actions.pod:6541
8526 #: ../src/guestfs-actions.pod:6554 ../src/guestfs-actions.pod:6567
8527 #: ../src/guestfs-actions.pod:7345 ../src/guestfs-actions.pod:7364
8528 #: ../src/guestfs-actions.pod:7449 ../src/guestfs-actions.pod:7468
8529 #: ../src/guestfs-actions.pod:7514 ../src/guestfs-actions.pod:7533
8530 msgid "(Added in 1.0.66)"
8531 msgstr ""
8532
8533 #. type: =head2
8534 #: ../src/guestfs-actions.pod:1378
8535 msgid "guestfs_egrepi"
8536 msgstr ""
8537
8538 #. type: verbatim
8539 #: ../src/guestfs-actions.pod:1380
8540 #, no-wrap
8541 msgid ""
8542 " char **\n"
8543 " guestfs_egrepi (guestfs_h *g,\n"
8544 "                 const char *regex,\n"
8545 "                 const char *path);\n"
8546 "\n"
8547 msgstr ""
8548
8549 #. type: textblock
8550 #: ../src/guestfs-actions.pod:1385 ../fish/guestfish-actions.pod:917
8551 msgid ""
8552 "This calls the external C<egrep -i> program and returns the matching lines."
8553 msgstr ""
8554
8555 #. type: =head2
8556 #: ../src/guestfs-actions.pod:1397
8557 msgid "guestfs_equal"
8558 msgstr ""
8559
8560 #. type: verbatim
8561 #: ../src/guestfs-actions.pod:1399
8562 #, no-wrap
8563 msgid ""
8564 " int\n"
8565 " guestfs_equal (guestfs_h *g,\n"
8566 "                const char *file1,\n"
8567 "                const char *file2);\n"
8568 "\n"
8569 msgstr ""
8570
8571 #. type: textblock
8572 #: ../src/guestfs-actions.pod:1404 ../fish/guestfish-actions.pod:927
8573 msgid ""
8574 "This compares the two files C<file1> and C<file2> and returns true if their "
8575 "content is exactly equal, or false otherwise."
8576 msgstr ""
8577
8578 #. type: textblock
8579 #: ../src/guestfs-actions.pod:1407 ../fish/guestfish-actions.pod:930
8580 msgid "The external L<cmp(1)> program is used for the comparison."
8581 msgstr ""
8582
8583 #. type: =head2
8584 #: ../src/guestfs-actions.pod:1413
8585 msgid "guestfs_exists"
8586 msgstr ""
8587
8588 #. type: verbatim
8589 #: ../src/guestfs-actions.pod:1415
8590 #, no-wrap
8591 msgid ""
8592 " int\n"
8593 " guestfs_exists (guestfs_h *g,\n"
8594 "                 const char *path);\n"
8595 "\n"
8596 msgstr ""
8597
8598 #. type: textblock
8599 #: ../src/guestfs-actions.pod:1419 ../fish/guestfish-actions.pod:936
8600 msgid ""
8601 "This returns C<true> if and only if there is a file, directory (or anything) "
8602 "with the given C<path> name."
8603 msgstr ""
8604
8605 #. type: textblock
8606 #: ../src/guestfs-actions.pod:1422
8607 msgid "See also C<guestfs_is_file>, C<guestfs_is_dir>, C<guestfs_stat>."
8608 msgstr ""
8609
8610 #. type: =head2
8611 #: ../src/guestfs-actions.pod:1428
8612 msgid "guestfs_fallocate"
8613 msgstr ""
8614
8615 #. type: verbatim
8616 #: ../src/guestfs-actions.pod:1430
8617 #, no-wrap
8618 msgid ""
8619 " int\n"
8620 " guestfs_fallocate (guestfs_h *g,\n"
8621 "                    const char *path,\n"
8622 "                    int len);\n"
8623 "\n"
8624 msgstr ""
8625
8626 #. type: textblock
8627 #: ../src/guestfs-actions.pod:1435 ../src/guestfs-actions.pod:1461
8628 #: ../fish/guestfish-actions.pod:945 ../fish/guestfish-actions.pod:964
8629 msgid ""
8630 "This command preallocates a file (containing zero bytes) named C<path> of "
8631 "size C<len> bytes.  If the file exists already, it is overwritten."
8632 msgstr ""
8633
8634 #. type: textblock
8635 #: ../src/guestfs-actions.pod:1439 ../fish/guestfish-actions.pod:949
8636 msgid ""
8637 "Do not confuse this with the guestfish-specific C<alloc> command which "
8638 "allocates a file in the host and attaches it as a device."
8639 msgstr ""
8640
8641 #. type: textblock
8642 #: ../src/guestfs-actions.pod:1445 ../fish/guestfish-actions.pod:953
8643 msgid ""
8644 "This function is deprecated.  In new code, use the C<fallocate64> call "
8645 "instead."
8646 msgstr ""
8647
8648 #. type: =head2
8649 #: ../src/guestfs-actions.pod:1454
8650 msgid "guestfs_fallocate64"
8651 msgstr ""
8652
8653 #. type: verbatim
8654 #: ../src/guestfs-actions.pod:1456
8655 #, no-wrap
8656 msgid ""
8657 " int\n"
8658 " guestfs_fallocate64 (guestfs_h *g,\n"
8659 "                      const char *path,\n"
8660 "                      int64_t len);\n"
8661 "\n"
8662 msgstr ""
8663
8664 #. type: textblock
8665 #: ../src/guestfs-actions.pod:1465
8666 msgid ""
8667 "Note that this call allocates disk blocks for the file.  To create a sparse "
8668 "file use C<guestfs_truncate_size> instead."
8669 msgstr ""
8670
8671 #. type: textblock
8672 #: ../src/guestfs-actions.pod:1468
8673 msgid ""
8674 "The deprecated call C<guestfs_fallocate> does the same, but owing to an "
8675 "oversight it only allowed 30 bit lengths to be specified, effectively "
8676 "limiting the maximum size of files created through that call to 1GB."
8677 msgstr ""
8678
8679 #. type: textblock
8680 #: ../src/guestfs-actions.pod:1473 ../fish/guestfish-actions.pod:976
8681 msgid ""
8682 "Do not confuse this with the guestfish-specific C<alloc> and C<sparse> "
8683 "commands which create a file in the host and attach it as a device."
8684 msgstr ""
8685
8686 #. type: textblock
8687 #: ../src/guestfs-actions.pod:1479
8688 msgid "(Added in 1.3.17)"
8689 msgstr ""
8690
8691 #. type: =head2
8692 #: ../src/guestfs-actions.pod:1481
8693 msgid "guestfs_fgrep"
8694 msgstr ""
8695
8696 #. type: verbatim
8697 #: ../src/guestfs-actions.pod:1483
8698 #, no-wrap
8699 msgid ""
8700 " char **\n"
8701 " guestfs_fgrep (guestfs_h *g,\n"
8702 "                const char *pattern,\n"
8703 "                const char *path);\n"
8704 "\n"
8705 msgstr ""
8706
8707 #. type: textblock
8708 #: ../src/guestfs-actions.pod:1488 ../fish/guestfish-actions.pod:984
8709 msgid ""
8710 "This calls the external C<fgrep> program and returns the matching lines."
8711 msgstr ""
8712
8713 #. type: =head2
8714 #: ../src/guestfs-actions.pod:1500
8715 msgid "guestfs_fgrepi"
8716 msgstr ""
8717
8718 #. type: verbatim
8719 #: ../src/guestfs-actions.pod:1502
8720 #, no-wrap
8721 msgid ""
8722 " char **\n"
8723 " guestfs_fgrepi (guestfs_h *g,\n"
8724 "                 const char *pattern,\n"
8725 "                 const char *path);\n"
8726 "\n"
8727 msgstr ""
8728
8729 #. type: textblock
8730 #: ../src/guestfs-actions.pod:1507 ../fish/guestfish-actions.pod:994
8731 msgid ""
8732 "This calls the external C<fgrep -i> program and returns the matching lines."
8733 msgstr ""
8734
8735 #. type: =head2
8736 #: ../src/guestfs-actions.pod:1519
8737 msgid "guestfs_file"
8738 msgstr ""
8739
8740 #. type: verbatim
8741 #: ../src/guestfs-actions.pod:1521
8742 #, no-wrap
8743 msgid ""
8744 " char *\n"
8745 " guestfs_file (guestfs_h *g,\n"
8746 "               const char *path);\n"
8747 "\n"
8748 msgstr ""
8749
8750 #. type: textblock
8751 #: ../src/guestfs-actions.pod:1525 ../fish/guestfish-actions.pod:1004
8752 msgid ""
8753 "This call uses the standard L<file(1)> command to determine the type or "
8754 "contents of the file."
8755 msgstr ""
8756
8757 #. type: textblock
8758 #: ../src/guestfs-actions.pod:1528 ../fish/guestfish-actions.pod:1007
8759 msgid ""
8760 "This call will also transparently look inside various types of compressed "
8761 "file."
8762 msgstr ""
8763
8764 #. type: textblock
8765 #: ../src/guestfs-actions.pod:1531 ../fish/guestfish-actions.pod:1010
8766 msgid ""
8767 "The exact command which runs is C<file -zb path>.  Note in particular that "
8768 "the filename is not prepended to the output (the I<-b> option)."
8769 msgstr ""
8770
8771 #. type: textblock
8772 #: ../src/guestfs-actions.pod:1535 ../fish/guestfish-actions.pod:1014
8773 msgid ""
8774 "The output depends on the output of the underlying L<file(1)> command and it "
8775 "can change in future in ways beyond our control.  In other words, the output "
8776 "is not guaranteed by the ABI."
8777 msgstr ""
8778
8779 #. type: textblock
8780 #: ../src/guestfs-actions.pod:1539
8781 msgid ""
8782 "See also: L<file(1)>, C<guestfs_vfs_type>, C<guestfs_lstat>, "
8783 "C<guestfs_is_file>, C<guestfs_is_blockdev> (etc)."
8784 msgstr ""
8785
8786 #. type: =head2
8787 #: ../src/guestfs-actions.pod:1547
8788 msgid "guestfs_file_architecture"
8789 msgstr ""
8790
8791 #. type: verbatim
8792 #: ../src/guestfs-actions.pod:1549
8793 #, no-wrap
8794 msgid ""
8795 " char *\n"
8796 " guestfs_file_architecture (guestfs_h *g,\n"
8797 "                            const char *filename);\n"
8798 "\n"
8799 msgstr ""
8800
8801 #. type: textblock
8802 #: ../src/guestfs-actions.pod:1553 ../fish/guestfish-actions.pod:1025
8803 msgid ""
8804 "This detects the architecture of the binary C<filename>, and returns it if "
8805 "known."
8806 msgstr ""
8807
8808 #. type: textblock
8809 #: ../src/guestfs-actions.pod:1556 ../fish/guestfish-actions.pod:1028
8810 msgid "Currently defined architectures are:"
8811 msgstr ""
8812
8813 #. type: =item
8814 #: ../src/guestfs-actions.pod:1560 ../fish/guestfish-actions.pod:1032
8815 msgid "\"i386\""
8816 msgstr "\"i386\""
8817
8818 #. type: textblock
8819 #: ../src/guestfs-actions.pod:1562 ../fish/guestfish-actions.pod:1034
8820 msgid ""
8821 "This string is returned for all 32 bit i386, i486, i586, i686 binaries "
8822 "irrespective of the precise processor requirements of the binary."
8823 msgstr ""
8824
8825 #. type: =item
8826 #: ../src/guestfs-actions.pod:1565 ../fish/guestfish-actions.pod:1037
8827 msgid "\"x86_64\""
8828 msgstr "\"x86_64\""
8829
8830 #. type: textblock
8831 #: ../src/guestfs-actions.pod:1567 ../fish/guestfish-actions.pod:1039
8832 msgid "64 bit x86-64."
8833 msgstr ""
8834
8835 #. type: =item
8836 #: ../src/guestfs-actions.pod:1569 ../fish/guestfish-actions.pod:1041
8837 msgid "\"sparc\""
8838 msgstr ""
8839
8840 #. type: textblock
8841 #: ../src/guestfs-actions.pod:1571 ../fish/guestfish-actions.pod:1043
8842 msgid "32 bit SPARC."
8843 msgstr ""
8844
8845 #. type: =item
8846 #: ../src/guestfs-actions.pod:1573 ../fish/guestfish-actions.pod:1045
8847 msgid "\"sparc64\""
8848 msgstr ""
8849
8850 #. type: textblock
8851 #: ../src/guestfs-actions.pod:1575 ../fish/guestfish-actions.pod:1047
8852 msgid "64 bit SPARC V9 and above."
8853 msgstr ""
8854
8855 #. type: =item
8856 #: ../src/guestfs-actions.pod:1577 ../fish/guestfish-actions.pod:1049
8857 msgid "\"ia64\""
8858 msgstr "\"ia64\""
8859
8860 #. type: textblock
8861 #: ../src/guestfs-actions.pod:1579 ../fish/guestfish-actions.pod:1051
8862 msgid "Intel Itanium."
8863 msgstr "Intel Itanium."
8864
8865 #. type: =item
8866 #: ../src/guestfs-actions.pod:1581 ../fish/guestfish-actions.pod:1053
8867 msgid "\"ppc\""
8868 msgstr ""
8869
8870 #. type: textblock
8871 #: ../src/guestfs-actions.pod:1583 ../fish/guestfish-actions.pod:1055
8872 msgid "32 bit Power PC."
8873 msgstr ""
8874
8875 #. type: =item
8876 #: ../src/guestfs-actions.pod:1585 ../fish/guestfish-actions.pod:1057
8877 msgid "\"ppc64\""
8878 msgstr ""
8879
8880 #. type: textblock
8881 #: ../src/guestfs-actions.pod:1587 ../fish/guestfish-actions.pod:1059
8882 msgid "64 bit Power PC."
8883 msgstr ""
8884
8885 #. type: textblock
8886 #: ../src/guestfs-actions.pod:1591 ../fish/guestfish-actions.pod:1063
8887 msgid "Libguestfs may return other architecture strings in future."
8888 msgstr ""
8889
8890 #. type: textblock
8891 #: ../src/guestfs-actions.pod:1593 ../fish/guestfish-actions.pod:1065
8892 msgid "The function works on at least the following types of files:"
8893 msgstr ""
8894
8895 #. type: textblock
8896 #: ../src/guestfs-actions.pod:1599 ../fish/guestfish-actions.pod:1071
8897 msgid "many types of Un*x and Linux binary"
8898 msgstr ""
8899
8900 #. type: textblock
8901 #: ../src/guestfs-actions.pod:1603 ../fish/guestfish-actions.pod:1075
8902 msgid "many types of Un*x and Linux shared library"
8903 msgstr ""
8904
8905 #. type: textblock
8906 #: ../src/guestfs-actions.pod:1607 ../fish/guestfish-actions.pod:1079
8907 msgid "Windows Win32 and Win64 binaries"
8908 msgstr ""
8909
8910 #. type: textblock
8911 #: ../src/guestfs-actions.pod:1611 ../fish/guestfish-actions.pod:1083
8912 msgid "Windows Win32 and Win64 DLLs"
8913 msgstr ""
8914
8915 #. type: textblock
8916 #: ../src/guestfs-actions.pod:1613 ../fish/guestfish-actions.pod:1085
8917 msgid "Win32 binaries and DLLs return C<i386>."
8918 msgstr ""
8919
8920 #. type: textblock
8921 #: ../src/guestfs-actions.pod:1615 ../fish/guestfish-actions.pod:1087
8922 msgid "Win64 binaries and DLLs return C<x86_64>."
8923 msgstr ""
8924
8925 #. type: textblock
8926 #: ../src/guestfs-actions.pod:1619 ../fish/guestfish-actions.pod:1091
8927 msgid "Linux kernel modules"
8928 msgstr ""
8929
8930 #. type: textblock
8931 #: ../src/guestfs-actions.pod:1623 ../fish/guestfish-actions.pod:1095
8932 msgid "Linux new-style initrd images"
8933 msgstr ""
8934
8935 #. type: textblock
8936 #: ../src/guestfs-actions.pod:1627 ../fish/guestfish-actions.pod:1099
8937 msgid "some non-x86 Linux vmlinuz kernels"
8938 msgstr ""
8939
8940 #. type: textblock
8941 #: ../src/guestfs-actions.pod:1631 ../fish/guestfish-actions.pod:1103
8942 msgid "What it can't do currently:"
8943 msgstr ""
8944
8945 #. type: textblock
8946 #: ../src/guestfs-actions.pod:1637 ../fish/guestfish-actions.pod:1109
8947 msgid "static libraries (libfoo.a)"
8948 msgstr ""
8949
8950 #. type: textblock
8951 #: ../src/guestfs-actions.pod:1641 ../fish/guestfish-actions.pod:1113
8952 msgid "Linux old-style initrd as compressed ext2 filesystem (RHEL 3)"
8953 msgstr ""
8954
8955 #. type: textblock
8956 #: ../src/guestfs-actions.pod:1645 ../fish/guestfish-actions.pod:1117
8957 msgid "x86 Linux vmlinuz kernels"
8958 msgstr ""
8959
8960 #. type: textblock
8961 #: ../src/guestfs-actions.pod:1647 ../fish/guestfish-actions.pod:1119
8962 msgid ""
8963 "x86 vmlinuz images (bzImage format) consist of a mix of 16-, 32- and "
8964 "compressed code, and are horribly hard to unpack.  If you want to find the "
8965 "architecture of a kernel, use the architecture of the associated initrd or "
8966 "kernel module(s) instead."
8967 msgstr ""
8968
8969 #. type: textblock
8970 #: ../src/guestfs-actions.pod:1657 ../src/guestfs-actions.pod:1820
8971 #: ../src/guestfs-actions.pod:1837 ../src/guestfs-actions.pod:2528
8972 #: ../src/guestfs-actions.pod:2621 ../src/guestfs-actions.pod:2691
8973 #: ../src/guestfs-actions.pod:2779 ../src/guestfs-actions.pod:2800
8974 #: ../src/guestfs-actions.pod:2843 ../src/guestfs-actions.pod:2927
8975 #: ../src/guestfs-actions.pod:3024 ../src/guestfs-actions.pod:3271
8976 #: ../src/guestfs-actions.pod:3403
8977 msgid "(Added in 1.5.3)"
8978 msgstr ""
8979
8980 #. type: =head2
8981 #: ../src/guestfs-actions.pod:1659
8982 msgid "guestfs_filesize"
8983 msgstr ""
8984
8985 #. type: verbatim
8986 #: ../src/guestfs-actions.pod:1661
8987 #, no-wrap
8988 msgid ""
8989 " int64_t\n"
8990 " guestfs_filesize (guestfs_h *g,\n"
8991 "                   const char *file);\n"
8992 "\n"
8993 msgstr ""
8994
8995 #. type: textblock
8996 #: ../src/guestfs-actions.pod:1665 ../fish/guestfish-actions.pod:1130
8997 msgid "This command returns the size of C<file> in bytes."
8998 msgstr ""
8999
9000 #. type: textblock
9001 #: ../src/guestfs-actions.pod:1667
9002 msgid ""
9003 "To get other stats about a file, use C<guestfs_stat>, C<guestfs_lstat>, "
9004 "C<guestfs_is_dir>, C<guestfs_is_file> etc.  To get the size of block "
9005 "devices, use C<guestfs_blockdev_getsize64>."
9006 msgstr ""
9007
9008 #. type: textblock
9009 #: ../src/guestfs-actions.pod:1673
9010 msgid "(Added in 1.0.82)"
9011 msgstr ""
9012
9013 #. type: =head2
9014 #: ../src/guestfs-actions.pod:1675
9015 msgid "guestfs_fill"
9016 msgstr ""
9017
9018 #. type: verbatim
9019 #: ../src/guestfs-actions.pod:1677
9020 #, no-wrap
9021 msgid ""
9022 " int\n"
9023 " guestfs_fill (guestfs_h *g,\n"
9024 "               int c,\n"
9025 "               int len,\n"
9026 "               const char *path);\n"
9027 "\n"
9028 msgstr ""
9029
9030 #. type: textblock
9031 #: ../src/guestfs-actions.pod:1683 ../fish/guestfish-actions.pod:1140
9032 msgid ""
9033 "This command creates a new file called C<path>.  The initial content of the "
9034 "file is C<len> octets of C<c>, where C<c> must be a number in the range C<"
9035 "[0..255]>."
9036 msgstr ""
9037
9038 #. type: textblock
9039 #: ../src/guestfs-actions.pod:1687
9040 msgid ""
9041 "To fill a file with zero bytes (sparsely), it is much more efficient to use "
9042 "C<guestfs_truncate_size>.  To create a file with a pattern of repeating "
9043 "bytes use C<guestfs_fill_pattern>."
9044 msgstr ""
9045
9046 #. type: textblock
9047 #: ../src/guestfs-actions.pod:1699
9048 msgid "(Added in 1.0.79)"
9049 msgstr ""
9050
9051 #. type: =head2
9052 #: ../src/guestfs-actions.pod:1701
9053 msgid "guestfs_fill_pattern"
9054 msgstr ""
9055
9056 #. type: verbatim
9057 #: ../src/guestfs-actions.pod:1703
9058 #, no-wrap
9059 msgid ""
9060 " int\n"
9061 " guestfs_fill_pattern (guestfs_h *g,\n"
9062 "                       const char *pattern,\n"
9063 "                       int len,\n"
9064 "                       const char *path);\n"
9065 "\n"
9066 msgstr ""
9067
9068 #. type: textblock
9069 #: ../src/guestfs-actions.pod:1709
9070 msgid ""
9071 "This function is like C<guestfs_fill> except that it creates a new file of "
9072 "length C<len> containing the repeating pattern of bytes in C<pattern>.  The "
9073 "pattern is truncated if necessary to ensure the length of the file is "
9074 "exactly C<len> bytes."
9075 msgstr ""
9076
9077 #. type: textblock
9078 #: ../src/guestfs-actions.pod:1721
9079 msgid "(Added in 1.3.12)"
9080 msgstr ""
9081
9082 #. type: =head2
9083 #: ../src/guestfs-actions.pod:1723
9084 msgid "guestfs_find"
9085 msgstr ""
9086
9087 #. type: verbatim
9088 #: ../src/guestfs-actions.pod:1725
9089 #, no-wrap
9090 msgid ""
9091 " char **\n"
9092 " guestfs_find (guestfs_h *g,\n"
9093 "               const char *directory);\n"
9094 "\n"
9095 msgstr ""
9096
9097 #. type: textblock
9098 #: ../src/guestfs-actions.pod:1729 ../fish/guestfish-actions.pod:1162
9099 msgid ""
9100 "This command lists out all files and directories, recursively, starting at "
9101 "C<directory>.  It is essentially equivalent to running the shell command "
9102 "C<find directory -print> but some post-processing happens on the output, "
9103 "described below."
9104 msgstr ""
9105
9106 #. type: textblock
9107 #: ../src/guestfs-actions.pod:1734 ../fish/guestfish-actions.pod:1167
9108 msgid ""
9109 "This returns a list of strings I<without any prefix>.  Thus if the directory "
9110 "structure was:"
9111 msgstr ""
9112
9113 #. type: verbatim
9114 #: ../src/guestfs-actions.pod:1737 ../fish/guestfish-actions.pod:1170
9115 #, no-wrap
9116 msgid ""
9117 " /tmp/a\n"
9118 " /tmp/b\n"
9119 " /tmp/c/d\n"
9120 "\n"
9121 msgstr ""
9122
9123 #. type: textblock
9124 #: ../src/guestfs-actions.pod:1741
9125 msgid ""
9126 "then the returned list from C<guestfs_find> C</tmp> would be 4 elements:"
9127 msgstr ""
9128
9129 #. type: verbatim
9130 #: ../src/guestfs-actions.pod:1744 ../fish/guestfish-actions.pod:1177
9131 #, no-wrap
9132 msgid ""
9133 " a\n"
9134 " b\n"
9135 " c\n"
9136 " c/d\n"
9137 "\n"
9138 msgstr ""
9139
9140 #. type: textblock
9141 #: ../src/guestfs-actions.pod:1749 ../fish/guestfish-actions.pod:1182
9142 msgid "If C<directory> is not a directory, then this command returns an error."
9143 msgstr ""
9144
9145 #. type: textblock
9146 #: ../src/guestfs-actions.pod:1752 ../fish/guestfish-actions.pod:1185
9147 msgid "The returned list is sorted."
9148 msgstr ""
9149
9150 #. type: textblock
9151 #: ../src/guestfs-actions.pod:1754
9152 msgid "See also C<guestfs_find0>."
9153 msgstr ""
9154
9155 #. type: textblock
9156 #: ../src/guestfs-actions.pod:1763 ../src/guestfs-actions.pod:4097
9157 #: ../src/guestfs-actions.pod:5656
9158 msgid "(Added in 1.0.27)"
9159 msgstr ""
9160
9161 #. type: =head2
9162 #: ../src/guestfs-actions.pod:1765
9163 msgid "guestfs_find0"
9164 msgstr ""
9165
9166 #. type: verbatim
9167 #: ../src/guestfs-actions.pod:1767
9168 #, no-wrap
9169 msgid ""
9170 " int\n"
9171 " guestfs_find0 (guestfs_h *g,\n"
9172 "                const char *directory,\n"
9173 "                const char *files);\n"
9174 "\n"
9175 msgstr ""
9176
9177 #. type: textblock
9178 #: ../src/guestfs-actions.pod:1772 ../fish/guestfish-actions.pod:1196
9179 msgid ""
9180 "This command lists out all files and directories, recursively, starting at "
9181 "C<directory>, placing the resulting list in the external file called "
9182 "C<files>."
9183 msgstr ""
9184
9185 #. type: textblock
9186 #: ../src/guestfs-actions.pod:1776
9187 msgid ""
9188 "This command works the same way as C<guestfs_find> with the following "
9189 "exceptions:"
9190 msgstr ""
9191
9192 #. type: textblock
9193 #: ../src/guestfs-actions.pod:1783 ../fish/guestfish-actions.pod:1207
9194 msgid "The resulting list is written to an external file."
9195 msgstr ""
9196
9197 #. type: textblock
9198 #: ../src/guestfs-actions.pod:1787 ../fish/guestfish-actions.pod:1211
9199 msgid ""
9200 "Items (filenames) in the result are separated by C<\\0> characters.  See "
9201 "L<find(1)> option I<-print0>."
9202 msgstr ""
9203
9204 #. type: textblock
9205 #: ../src/guestfs-actions.pod:1792 ../fish/guestfish-actions.pod:1216
9206 msgid "This command is not limited in the number of names that it can return."
9207 msgstr ""
9208
9209 #. type: textblock
9210 #: ../src/guestfs-actions.pod:1797 ../fish/guestfish-actions.pod:1221
9211 msgid "The result list is not sorted."
9212 msgstr ""
9213
9214 #. type: textblock
9215 #: ../src/guestfs-actions.pod:1803
9216 msgid "(Added in 1.0.74)"
9217 msgstr ""
9218
9219 #. type: =head2
9220 #: ../src/guestfs-actions.pod:1805
9221 msgid "guestfs_findfs_label"
9222 msgstr ""
9223
9224 #. type: verbatim
9225 #: ../src/guestfs-actions.pod:1807
9226 #, no-wrap
9227 msgid ""
9228 " char *\n"
9229 " guestfs_findfs_label (guestfs_h *g,\n"
9230 "                       const char *label);\n"
9231 "\n"
9232 msgstr ""
9233
9234 #. type: textblock
9235 #: ../src/guestfs-actions.pod:1811 ../fish/guestfish-actions.pod:1231
9236 msgid ""
9237 "This command searches the filesystems and returns the one which has the "
9238 "given label.  An error is returned if no such filesystem can be found."
9239 msgstr ""
9240
9241 #. type: textblock
9242 #: ../src/guestfs-actions.pod:1815
9243 msgid "To find the label of a filesystem, use C<guestfs_vfs_label>."
9244 msgstr ""
9245
9246 #. type: =head2
9247 #: ../src/guestfs-actions.pod:1822
9248 msgid "guestfs_findfs_uuid"
9249 msgstr ""
9250
9251 #. type: verbatim
9252 #: ../src/guestfs-actions.pod:1824
9253 #, no-wrap
9254 msgid ""
9255 " char *\n"
9256 " guestfs_findfs_uuid (guestfs_h *g,\n"
9257 "                      const char *uuid);\n"
9258 "\n"
9259 msgstr ""
9260
9261 #. type: textblock
9262 #: ../src/guestfs-actions.pod:1828 ../fish/guestfish-actions.pod:1241
9263 msgid ""
9264 "This command searches the filesystems and returns the one which has the "
9265 "given UUID.  An error is returned if no such filesystem can be found."
9266 msgstr ""
9267
9268 #. type: textblock
9269 #: ../src/guestfs-actions.pod:1832
9270 msgid "To find the UUID of a filesystem, use C<guestfs_vfs_uuid>."
9271 msgstr ""
9272
9273 #. type: =head2
9274 #: ../src/guestfs-actions.pod:1839
9275 msgid "guestfs_fsck"
9276 msgstr ""
9277
9278 #. type: verbatim
9279 #: ../src/guestfs-actions.pod:1841
9280 #, no-wrap
9281 msgid ""
9282 " int\n"
9283 " guestfs_fsck (guestfs_h *g,\n"
9284 "               const char *fstype,\n"
9285 "               const char *device);\n"
9286 "\n"
9287 msgstr ""
9288
9289 #. type: textblock
9290 #: ../src/guestfs-actions.pod:1846 ../fish/guestfish-actions.pod:1251
9291 msgid ""
9292 "This runs the filesystem checker (fsck) on C<device> which should have "
9293 "filesystem type C<fstype>."
9294 msgstr ""
9295
9296 #. type: textblock
9297 #: ../src/guestfs-actions.pod:1849 ../fish/guestfish-actions.pod:1254
9298 msgid ""
9299 "The returned integer is the status.  See L<fsck(8)> for the list of status "
9300 "codes from C<fsck>."
9301 msgstr ""
9302
9303 #. type: textblock
9304 #: ../src/guestfs-actions.pod:1858 ../fish/guestfish-actions.pod:1263
9305 msgid "Multiple status codes can be summed together."
9306 msgstr ""
9307
9308 #. type: textblock
9309 #: ../src/guestfs-actions.pod:1862 ../fish/guestfish-actions.pod:1267
9310 msgid ""
9311 "A non-zero return code can mean \"success\", for example if errors have been "
9312 "corrected on the filesystem."
9313 msgstr ""
9314
9315 #. type: textblock
9316 #: ../src/guestfs-actions.pod:1867 ../fish/guestfish-actions.pod:1272
9317 msgid "Checking or repairing NTFS volumes is not supported (by linux-ntfs)."
9318 msgstr ""
9319
9320 #. type: textblock
9321 #: ../src/guestfs-actions.pod:1872 ../fish/guestfish-actions.pod:1277
9322 msgid ""
9323 "This command is entirely equivalent to running C<fsck -a -t fstype device>."
9324 msgstr ""
9325
9326 #. type: textblock
9327 #: ../src/guestfs-actions.pod:1876 ../src/guestfs-actions.pod:7387
9328 msgid "(Added in 1.0.16)"
9329 msgstr ""
9330
9331 #. type: =head2
9332 #: ../src/guestfs-actions.pod:1878
9333 msgid "guestfs_get_append"
9334 msgstr ""
9335
9336 #. type: verbatim
9337 #: ../src/guestfs-actions.pod:1880
9338 #, no-wrap
9339 msgid ""
9340 " const char *\n"
9341 " guestfs_get_append (guestfs_h *g);\n"
9342 "\n"
9343 msgstr ""
9344
9345 #. type: textblock
9346 #: ../src/guestfs-actions.pod:1883 ../fish/guestfish-actions.pod:1283
9347 msgid ""
9348 "Return the additional kernel options which are added to the guest kernel "
9349 "command line."
9350 msgstr ""
9351
9352 #. type: textblock
9353 #: ../src/guestfs-actions.pod:1886 ../fish/guestfish-actions.pod:1286
9354 msgid "If C<NULL> then no options are added."
9355 msgstr ""
9356
9357 #. type: textblock
9358 #: ../src/guestfs-actions.pod:1888
9359 msgid ""
9360 "This function returns a string which may be NULL.  There is no way to return "
9361 "an error from this function.  The string is owned by the guest handle and "
9362 "must I<not> be freed."
9363 msgstr ""
9364
9365 #. type: textblock
9366 #: ../src/guestfs-actions.pod:1892 ../src/guestfs-actions.pod:5334
9367 #: ../src/guestfs-actions.pod:5814 ../src/guestfs-actions.pod:6235
9368 #: ../src/guestfs-actions.pod:6254 ../src/guestfs-actions.pod:6270
9369 #: ../src/guestfs-actions.pod:6294 ../src/guestfs-actions.pod:7051
9370 #: ../src/guestfs-actions.pod:7069 ../src/guestfs-actions.pod:7430
9371 msgid "(Added in 1.0.26)"
9372 msgstr ""
9373
9374 #. type: =head2
9375 #: ../src/guestfs-actions.pod:1894
9376 msgid "guestfs_get_attach_method"
9377 msgstr ""
9378
9379 #. type: verbatim
9380 #: ../src/guestfs-actions.pod:1896
9381 #, no-wrap
9382 msgid ""
9383 " char *\n"
9384 " guestfs_get_attach_method (guestfs_h *g);\n"
9385 "\n"
9386 msgstr ""
9387
9388 #. type: textblock
9389 #: ../src/guestfs-actions.pod:1899
9390 msgid "Return the current attach method.  See C<guestfs_set_attach_method>."
9391 msgstr ""
9392
9393 #. type: =head2
9394 #: ../src/guestfs-actions.pod:1904
9395 msgid "guestfs_get_autosync"
9396 msgstr ""
9397
9398 #. type: verbatim
9399 #: ../src/guestfs-actions.pod:1906
9400 #, no-wrap
9401 msgid ""
9402 " int\n"
9403 " guestfs_get_autosync (guestfs_h *g);\n"
9404 "\n"
9405 msgstr ""
9406
9407 #. type: textblock
9408 #: ../src/guestfs-actions.pod:1909 ../fish/guestfish-actions.pod:1298
9409 msgid "Get the autosync flag."
9410 msgstr ""
9411
9412 #. type: =head2
9413 #: ../src/guestfs-actions.pod:1915
9414 msgid "guestfs_get_direct"
9415 msgstr ""
9416
9417 #. type: verbatim
9418 #: ../src/guestfs-actions.pod:1917
9419 #, no-wrap
9420 msgid ""
9421 " int\n"
9422 " guestfs_get_direct (guestfs_h *g);\n"
9423 "\n"
9424 msgstr ""
9425
9426 #. type: textblock
9427 #: ../src/guestfs-actions.pod:1920 ../fish/guestfish-actions.pod:1304
9428 msgid "Return the direct appliance mode flag."
9429 msgstr ""
9430
9431 #. type: textblock
9432 #: ../src/guestfs-actions.pod:1924 ../src/guestfs-actions.pod:5883
9433 msgid "(Added in 1.0.72)"
9434 msgstr ""
9435
9436 #. type: =head2
9437 #: ../src/guestfs-actions.pod:1926
9438 msgid "guestfs_get_e2label"
9439 msgstr ""
9440
9441 #. type: verbatim
9442 #: ../src/guestfs-actions.pod:1928
9443 #, no-wrap
9444 msgid ""
9445 " char *\n"
9446 " guestfs_get_e2label (guestfs_h *g,\n"
9447 "                      const char *device);\n"
9448 "\n"
9449 msgstr ""
9450
9451 #. type: textblock
9452 #: ../src/guestfs-actions.pod:1932 ../fish/guestfish-actions.pod:1310
9453 msgid ""
9454 "This returns the ext2/3/4 filesystem label of the filesystem on C<device>."
9455 msgstr ""
9456
9457 #. type: textblock
9458 #: ../src/guestfs-actions.pod:1938 ../fish/guestfish-actions.pod:1313
9459 msgid ""
9460 "This function is deprecated.  In new code, use the C<vfs_label> call instead."
9461 msgstr ""
9462
9463 #. type: textblock
9464 #: ../src/guestfs-actions.pod:1945 ../src/guestfs-actions.pod:1966
9465 #: ../src/guestfs-actions.pod:5901 ../src/guestfs-actions.pod:5920
9466 msgid "(Added in 1.0.15)"
9467 msgstr ""
9468
9469 #. type: =head2
9470 #: ../src/guestfs-actions.pod:1947
9471 msgid "guestfs_get_e2uuid"
9472 msgstr ""
9473
9474 #. type: verbatim
9475 #: ../src/guestfs-actions.pod:1949
9476 #, no-wrap
9477 msgid ""
9478 " char *\n"
9479 " guestfs_get_e2uuid (guestfs_h *g,\n"
9480 "                     const char *device);\n"
9481 "\n"
9482 msgstr ""
9483
9484 #. type: textblock
9485 #: ../src/guestfs-actions.pod:1953 ../fish/guestfish-actions.pod:1324
9486 msgid ""
9487 "This returns the ext2/3/4 filesystem UUID of the filesystem on C<device>."
9488 msgstr ""
9489
9490 #. type: textblock
9491 #: ../src/guestfs-actions.pod:1959 ../fish/guestfish-actions.pod:1327
9492 msgid ""
9493 "This function is deprecated.  In new code, use the C<vfs_uuid> call instead."
9494 msgstr ""
9495
9496 #. type: =head2
9497 #: ../src/guestfs-actions.pod:1968
9498 msgid "guestfs_get_memsize"
9499 msgstr ""
9500
9501 #. type: verbatim
9502 #: ../src/guestfs-actions.pod:1970
9503 #, no-wrap
9504 msgid ""
9505 " int\n"
9506 " guestfs_get_memsize (guestfs_h *g);\n"
9507 "\n"
9508 msgstr ""
9509
9510 #. type: textblock
9511 #: ../src/guestfs-actions.pod:1973 ../fish/guestfish-actions.pod:1338
9512 msgid ""
9513 "This gets the memory size in megabytes allocated to the qemu subprocess."
9514 msgstr ""
9515
9516 #. type: textblock
9517 #: ../src/guestfs-actions.pod:1976
9518 msgid ""
9519 "If C<guestfs_set_memsize> was not called on this handle, and if "
9520 "C<LIBGUESTFS_MEMSIZE> was not set, then this returns the compiled-in default "
9521 "value for memsize."
9522 msgstr ""
9523
9524 #. type: textblock
9525 #: ../src/guestfs-actions.pod:1980 ../src/guestfs-actions.pod:2061
9526 #: ../src/guestfs-actions.pod:5936 ../src/guestfs-actions.pod:6043
9527 #: ../fish/guestfish-actions.pod:1345 ../fish/guestfish-actions.pod:1396
9528 #: ../fish/guestfish-actions.pod:4006 ../fish/guestfish-actions.pod:4093
9529 msgid ""
9530 "For more information on the architecture of libguestfs, see L<guestfs(3)>."
9531 msgstr ""
9532
9533 #. type: textblock
9534 #: ../src/guestfs-actions.pod:1985 ../src/guestfs-actions.pod:4388
9535 #: ../src/guestfs-actions.pod:4585 ../src/guestfs-actions.pod:4604
9536 #: ../src/guestfs-actions.pod:4623 ../src/guestfs-actions.pod:4635
9537 #: ../src/guestfs-actions.pod:4652 ../src/guestfs-actions.pod:4665
9538 #: ../src/guestfs-actions.pod:5559 ../src/guestfs-actions.pod:5941
9539 #: ../src/guestfs-actions.pod:6202 ../src/guestfs-actions.pod:6817
9540 msgid "(Added in 1.0.55)"
9541 msgstr ""
9542
9543 #. type: =head2
9544 #: ../src/guestfs-actions.pod:1987
9545 msgid "guestfs_get_network"
9546 msgstr ""
9547
9548 #. type: verbatim
9549 #: ../src/guestfs-actions.pod:1989
9550 #, no-wrap
9551 msgid ""
9552 " int\n"
9553 " guestfs_get_network (guestfs_h *g);\n"
9554 "\n"
9555 msgstr ""
9556
9557 #. type: textblock
9558 #: ../src/guestfs-actions.pod:1992 ../fish/guestfish-actions.pod:1352
9559 msgid "This returns the enable network flag."
9560 msgstr ""
9561
9562 #. type: textblock
9563 #: ../src/guestfs-actions.pod:1996 ../src/guestfs-actions.pod:5960
9564 msgid "(Added in 1.5.4)"
9565 msgstr ""
9566
9567 #. type: =head2
9568 #: ../src/guestfs-actions.pod:1998
9569 msgid "guestfs_get_path"
9570 msgstr ""
9571
9572 #. type: verbatim
9573 #: ../src/guestfs-actions.pod:2000
9574 #, no-wrap
9575 msgid ""
9576 " const char *\n"
9577 " guestfs_get_path (guestfs_h *g);\n"
9578 "\n"
9579 msgstr ""
9580
9581 #. type: textblock
9582 #: ../src/guestfs-actions.pod:2003 ../fish/guestfish-actions.pod:1358
9583 msgid "Return the current search path."
9584 msgstr ""
9585
9586 #. type: textblock
9587 #: ../src/guestfs-actions.pod:2005 ../fish/guestfish-actions.pod:1360
9588 msgid ""
9589 "This is always non-NULL.  If it wasn't set already, then this will return "
9590 "the default path."
9591 msgstr ""
9592
9593 #. type: textblock
9594 #: ../src/guestfs-actions.pod:2008 ../src/guestfs-actions.pod:2037
9595 msgid ""
9596 "This function returns a string, or NULL on error.  The string is owned by "
9597 "the guest handle and must I<not> be freed."
9598 msgstr ""
9599
9600 #. type: =head2
9601 #: ../src/guestfs-actions.pod:2013
9602 msgid "guestfs_get_pid"
9603 msgstr ""
9604
9605 #. type: verbatim
9606 #: ../src/guestfs-actions.pod:2015
9607 #, no-wrap
9608 msgid ""
9609 " int\n"
9610 " guestfs_get_pid (guestfs_h *g);\n"
9611 "\n"
9612 msgstr ""
9613
9614 #. type: textblock
9615 #: ../src/guestfs-actions.pod:2018 ../fish/guestfish-actions.pod:1369
9616 msgid ""
9617 "Return the process ID of the qemu subprocess.  If there is no qemu "
9618 "subprocess, then this will return an error."
9619 msgstr ""
9620
9621 #. type: textblock
9622 #: ../src/guestfs-actions.pod:2021 ../fish/guestfish-actions.pod:1372
9623 msgid "This is an internal call used for debugging and testing."
9624 msgstr ""
9625
9626 #. type: textblock
9627 #: ../src/guestfs-actions.pod:2025
9628 msgid "(Added in 1.0.56)"
9629 msgstr ""
9630
9631 #. type: =head2
9632 #: ../src/guestfs-actions.pod:2027
9633 msgid "guestfs_get_qemu"
9634 msgstr ""
9635
9636 #. type: verbatim
9637 #: ../src/guestfs-actions.pod:2029
9638 #, no-wrap
9639 msgid ""
9640 " const char *\n"
9641 " guestfs_get_qemu (guestfs_h *g);\n"
9642 "\n"
9643 msgstr ""
9644
9645 #. type: textblock
9646 #: ../src/guestfs-actions.pod:2032 ../fish/guestfish-actions.pod:1378
9647 msgid "Return the current qemu binary."
9648 msgstr ""
9649
9650 #. type: textblock
9651 #: ../src/guestfs-actions.pod:2034 ../fish/guestfish-actions.pod:1380
9652 msgid ""
9653 "This is always non-NULL.  If it wasn't set already, then this will return "
9654 "the default qemu binary name."
9655 msgstr ""
9656
9657 #. type: textblock
9658 #: ../src/guestfs-actions.pod:2040 ../src/guestfs-actions.pod:6005
9659 msgid "(Added in 1.0.6)"
9660 msgstr ""
9661
9662 #. type: =head2
9663 #: ../src/guestfs-actions.pod:2042
9664 msgid "guestfs_get_recovery_proc"
9665 msgstr ""
9666
9667 #. type: verbatim
9668 #: ../src/guestfs-actions.pod:2044
9669 #, no-wrap
9670 msgid ""
9671 " int\n"
9672 " guestfs_get_recovery_proc (guestfs_h *g);\n"
9673 "\n"
9674 msgstr ""
9675
9676 #. type: textblock
9677 #: ../src/guestfs-actions.pod:2047 ../fish/guestfish-actions.pod:1387
9678 msgid "Return the recovery process enabled flag."
9679 msgstr ""
9680
9681 #. type: textblock
9682 #: ../src/guestfs-actions.pod:2051 ../src/guestfs-actions.pod:3498
9683 #: ../src/guestfs-actions.pod:3795 ../src/guestfs-actions.pod:4195
9684 #: ../src/guestfs-actions.pod:4227 ../src/guestfs-actions.pod:5264
9685 #: ../src/guestfs-actions.pod:5607 ../src/guestfs-actions.pod:6029
9686 #: ../src/guestfs-actions.pod:6720 ../src/guestfs-actions.pod:6740
9687 #: ../src/guestfs-actions.pod:6932
9688 msgid "(Added in 1.0.77)"
9689 msgstr ""
9690
9691 #. type: =head2
9692 #: ../src/guestfs-actions.pod:2053
9693 msgid "guestfs_get_selinux"
9694 msgstr ""
9695
9696 #. type: verbatim
9697 #: ../src/guestfs-actions.pod:2055
9698 #, no-wrap
9699 msgid ""
9700 " int\n"
9701 " guestfs_get_selinux (guestfs_h *g);\n"
9702 "\n"
9703 msgstr ""
9704
9705 #. type: textblock
9706 #: ../src/guestfs-actions.pod:2058
9707 msgid ""
9708 "This returns the current setting of the selinux flag which is passed to the "
9709 "appliance at boot time.  See C<guestfs_set_selinux>."
9710 msgstr ""
9711
9712 #. type: textblock
9713 #: ../src/guestfs-actions.pod:2066 ../src/guestfs-actions.pod:2129
9714 #: ../src/guestfs-actions.pod:6048 ../src/guestfs-actions.pod:6106
9715 msgid "(Added in 1.0.67)"
9716 msgstr ""
9717
9718 #. type: =head2
9719 #: ../src/guestfs-actions.pod:2068
9720 msgid "guestfs_get_state"
9721 msgstr ""
9722
9723 #. type: verbatim
9724 #: ../src/guestfs-actions.pod:2070
9725 #, no-wrap
9726 msgid ""
9727 " int\n"
9728 " guestfs_get_state (guestfs_h *g);\n"
9729 "\n"
9730 msgstr ""
9731
9732 #. type: textblock
9733 #: ../src/guestfs-actions.pod:2073 ../fish/guestfish-actions.pod:1403
9734 msgid ""
9735 "This returns the current state as an opaque integer.  This is only useful "
9736 "for printing debug and internal error messages."
9737 msgstr ""
9738
9739 #. type: textblock
9740 #: ../src/guestfs-actions.pod:2076 ../src/guestfs-actions.pod:3296
9741 #: ../src/guestfs-actions.pod:3325 ../src/guestfs-actions.pod:3386
9742 #: ../src/guestfs-actions.pod:3413 ../fish/guestfish-actions.pod:1406
9743 #: ../fish/guestfish-actions.pod:2320 ../fish/guestfish-actions.pod:2338
9744 #: ../fish/guestfish-actions.pod:2376 ../fish/guestfish-actions.pod:2392
9745 msgid "For more information on states, see L<guestfs(3)>."
9746 msgstr ""
9747
9748 #. type: =head2
9749 #: ../src/guestfs-actions.pod:2082
9750 msgid "guestfs_get_trace"
9751 msgstr ""
9752
9753 #. type: verbatim
9754 #: ../src/guestfs-actions.pod:2084
9755 #, no-wrap
9756 msgid ""
9757 " int\n"
9758 " guestfs_get_trace (guestfs_h *g);\n"
9759 "\n"
9760 msgstr ""
9761
9762 #. type: textblock
9763 #: ../src/guestfs-actions.pod:2087 ../fish/guestfish-actions.pod:1412
9764 msgid "Return the command trace flag."
9765 msgstr ""
9766
9767 #. type: =head2
9768 #: ../src/guestfs-actions.pod:2093
9769 msgid "guestfs_get_umask"
9770 msgstr ""
9771
9772 #. type: verbatim
9773 #: ../src/guestfs-actions.pod:2095
9774 #, no-wrap
9775 msgid ""
9776 " int\n"
9777 " guestfs_get_umask (guestfs_h *g);\n"
9778 "\n"
9779 msgstr ""
9780
9781 #. type: textblock
9782 #: ../src/guestfs-actions.pod:2098
9783 msgid ""
9784 "Return the current umask.  By default the umask is C<022> unless it has been "
9785 "set by calling C<guestfs_umask>."
9786 msgstr ""
9787
9788 #. type: =head2
9789 #: ../src/guestfs-actions.pod:2105
9790 msgid "guestfs_get_verbose"
9791 msgstr ""
9792
9793 #. type: verbatim
9794 #: ../src/guestfs-actions.pod:2107
9795 #, no-wrap
9796 msgid ""
9797 " int\n"
9798 " guestfs_get_verbose (guestfs_h *g);\n"
9799 "\n"
9800 msgstr ""
9801
9802 #. type: textblock
9803 #: ../src/guestfs-actions.pod:2110 ../fish/guestfish-actions.pod:1425
9804 msgid "This returns the verbose messages flag."
9805 msgstr ""
9806
9807 #. type: =head2
9808 #: ../src/guestfs-actions.pod:2116
9809 msgid "guestfs_getcon"
9810 msgstr ""
9811
9812 #. type: verbatim
9813 #: ../src/guestfs-actions.pod:2118
9814 #, no-wrap
9815 msgid ""
9816 " char *\n"
9817 " guestfs_getcon (guestfs_h *g);\n"
9818 "\n"
9819 msgstr ""
9820
9821 #. type: textblock
9822 #: ../src/guestfs-actions.pod:2121 ../fish/guestfish-actions.pod:1431
9823 msgid "This gets the SELinux security context of the daemon."
9824 msgstr ""
9825
9826 #. type: textblock
9827 #: ../src/guestfs-actions.pod:2123
9828 msgid ""
9829 "See the documentation about SELINUX in L<guestfs(3)>, and C<guestfs_setcon>"
9830 msgstr ""
9831
9832 #. type: =head2
9833 #: ../src/guestfs-actions.pod:2131
9834 msgid "guestfs_getxattr"
9835 msgstr ""
9836
9837 #. type: verbatim
9838 #: ../src/guestfs-actions.pod:2133
9839 #, no-wrap
9840 msgid ""
9841 " char *\n"
9842 " guestfs_getxattr (guestfs_h *g,\n"
9843 "                   const char *path,\n"
9844 "                   const char *name,\n"
9845 "                   size_t *size_r);\n"
9846 "\n"
9847 msgstr ""
9848
9849 #. type: textblock
9850 #: ../src/guestfs-actions.pod:2139
9851 msgid ""
9852 "Get a single extended attribute from file C<path> named C<name>.  This call "
9853 "follows symlinks.  If you want to lookup an extended attribute for the "
9854 "symlink itself, use C<guestfs_lgetxattr>."
9855 msgstr ""
9856
9857 #. type: textblock
9858 #: ../src/guestfs-actions.pod:2143 ../src/guestfs-actions.pod:3512
9859 msgid ""
9860 "Normally it is better to get all extended attributes from a file in one go "
9861 "by calling C<guestfs_getxattrs>.  However some Linux filesystem "
9862 "implementations are buggy and do not provide a way to list out attributes.  "
9863 "For these filesystems (notably ntfs-3g)  you have to know the names of the "
9864 "extended attributes you want in advance and call this function."
9865 msgstr ""
9866
9867 #. type: textblock
9868 #: ../src/guestfs-actions.pod:2150 ../src/guestfs-actions.pod:3519
9869 #: ../fish/guestfish-actions.pod:1451 ../fish/guestfish-actions.pod:2457
9870 msgid ""
9871 "Extended attribute values are blobs of binary data.  If there is no extended "
9872 "attribute named C<name>, this returns an error."
9873 msgstr ""
9874
9875 #. type: textblock
9876 #: ../src/guestfs-actions.pod:2153
9877 msgid "See also: C<guestfs_getxattrs>, C<guestfs_lgetxattr>, L<attr(5)>."
9878 msgstr ""
9879
9880 #. type: textblock
9881 #: ../src/guestfs-actions.pod:2155 ../src/guestfs-actions.pod:2346
9882 #: ../src/guestfs-actions.pod:3524 ../src/guestfs-actions.pod:5257
9883 #: ../src/guestfs-actions.pod:5283 ../src/guestfs-actions.pod:5464
9884 msgid ""
9885 "This function returns a buffer, or NULL on error.  The size of the returned "
9886 "buffer is written to C<*size_r>.  I<The caller must free the returned buffer "
9887 "after use>."
9888 msgstr ""
9889
9890 #. type: textblock
9891 #: ../src/guestfs-actions.pod:2159 ../src/guestfs-actions.pod:3528
9892 msgid "(Added in 1.7.24)"
9893 msgstr ""
9894
9895 #. type: =head2
9896 #: ../src/guestfs-actions.pod:2161
9897 msgid "guestfs_getxattrs"
9898 msgstr ""
9899
9900 #. type: verbatim
9901 #: ../src/guestfs-actions.pod:2163
9902 #, no-wrap
9903 msgid ""
9904 " struct guestfs_xattr_list *\n"
9905 " guestfs_getxattrs (guestfs_h *g,\n"
9906 "                    const char *path);\n"
9907 "\n"
9908 msgstr ""
9909
9910 #. type: textblock
9911 #: ../src/guestfs-actions.pod:2167 ../fish/guestfish-actions.pod:1460
9912 msgid ""
9913 "This call lists the extended attributes of the file or directory C<path>."
9914 msgstr ""
9915
9916 #. type: textblock
9917 #: ../src/guestfs-actions.pod:2170 ../fish/guestfish-actions.pod:1463
9918 msgid ""
9919 "At the system call level, this is a combination of the L<listxattr(2)> and "
9920 "L<getxattr(2)> calls."
9921 msgstr ""
9922
9923 #. type: textblock
9924 #: ../src/guestfs-actions.pod:2173
9925 msgid "See also: C<guestfs_lgetxattrs>, L<attr(5)>."
9926 msgstr ""
9927
9928 #. type: textblock
9929 #: ../src/guestfs-actions.pod:2175 ../src/guestfs-actions.pod:3540
9930 #: ../src/guestfs-actions.pod:4191
9931 msgid ""
9932 "This function returns a C<struct guestfs_xattr_list *>, or NULL if there was "
9933 "an error.  I<The caller must call C<guestfs_free_xattr_list> after use>."
9934 msgstr ""
9935
9936 #. type: textblock
9937 #: ../src/guestfs-actions.pod:2179 ../src/guestfs-actions.pod:3544
9938 #: ../src/guestfs-actions.pod:3709 ../src/guestfs-actions.pod:3745
9939 #: ../src/guestfs-actions.pod:5637 ../src/guestfs-actions.pod:6125
9940 #: ../src/guestfs-actions.pod:7495
9941 msgid "(Added in 1.0.59)"
9942 msgstr ""
9943
9944 #. type: =head2
9945 #: ../src/guestfs-actions.pod:2181
9946 msgid "guestfs_glob_expand"
9947 msgstr ""
9948
9949 #. type: verbatim
9950 #: ../src/guestfs-actions.pod:2183
9951 #, no-wrap
9952 msgid ""
9953 " char **\n"
9954 " guestfs_glob_expand (guestfs_h *g,\n"
9955 "                      const char *pattern);\n"
9956 "\n"
9957 msgstr ""
9958
9959 #. type: textblock
9960 #: ../src/guestfs-actions.pod:2187 ../fish/guestfish-actions.pod:1472
9961 msgid ""
9962 "This command searches for all the pathnames matching C<pattern> according to "
9963 "the wildcard expansion rules used by the shell."
9964 msgstr ""
9965
9966 #. type: textblock
9967 #: ../src/guestfs-actions.pod:2191 ../fish/guestfish-actions.pod:1476
9968 msgid ""
9969 "If no paths match, then this returns an empty list (note: not an error)."
9970 msgstr ""
9971
9972 #. type: textblock
9973 #: ../src/guestfs-actions.pod:2194 ../fish/guestfish-actions.pod:1479
9974 msgid ""
9975 "It is just a wrapper around the C L<glob(3)> function with flags C<GLOB_MARK|"
9976 "GLOB_BRACE>.  See that manual page for more details."
9977 msgstr ""
9978
9979 #. type: textblock
9980 #: ../src/guestfs-actions.pod:2202 ../src/guestfs-actions.pod:6318
9981 #: ../src/guestfs-actions.pod:6335
9982 msgid "(Added in 1.0.50)"
9983 msgstr ""
9984
9985 #. type: =head2
9986 #: ../src/guestfs-actions.pod:2204
9987 msgid "guestfs_grep"
9988 msgstr ""
9989
9990 #. type: verbatim
9991 #: ../src/guestfs-actions.pod:2206
9992 #, no-wrap
9993 msgid ""
9994 " char **\n"
9995 " guestfs_grep (guestfs_h *g,\n"
9996 "               const char *regex,\n"
9997 "               const char *path);\n"
9998 "\n"
9999 msgstr ""
10000
10001 #. type: textblock
10002 #: ../src/guestfs-actions.pod:2211 ../fish/guestfish-actions.pod:1487
10003 msgid "This calls the external C<grep> program and returns the matching lines."
10004 msgstr ""
10005
10006 #. type: =head2
10007 #: ../src/guestfs-actions.pod:2223
10008 msgid "guestfs_grepi"
10009 msgstr ""
10010
10011 #. type: verbatim
10012 #: ../src/guestfs-actions.pod:2225
10013 #, no-wrap
10014 msgid ""
10015 " char **\n"
10016 " guestfs_grepi (guestfs_h *g,\n"
10017 "                const char *regex,\n"
10018 "                const char *path);\n"
10019 "\n"
10020 msgstr ""
10021
10022 #. type: textblock
10023 #: ../src/guestfs-actions.pod:2230 ../fish/guestfish-actions.pod:1497
10024 msgid ""
10025 "This calls the external C<grep -i> program and returns the matching lines."
10026 msgstr ""
10027
10028 #. type: =head2
10029 #: ../src/guestfs-actions.pod:2242
10030 msgid "guestfs_grub_install"
10031 msgstr ""
10032
10033 #. type: verbatim
10034 #: ../src/guestfs-actions.pod:2244
10035 #, no-wrap
10036 msgid ""
10037 " int\n"
10038 " guestfs_grub_install (guestfs_h *g,\n"
10039 "                       const char *root,\n"
10040 "                       const char *device);\n"
10041 "\n"
10042 msgstr ""
10043
10044 #. type: textblock
10045 #: ../src/guestfs-actions.pod:2249 ../fish/guestfish-actions.pod:1507
10046 msgid ""
10047 "This command installs GRUB (the Grand Unified Bootloader) on C<device>, with "
10048 "the root directory being C<root>."
10049 msgstr ""
10050
10051 #. type: textblock
10052 #: ../src/guestfs-actions.pod:2252 ../fish/guestfish-actions.pod:1510
10053 msgid ""
10054 "Note: If grub-install reports the error \"No suitable drive was found in the "
10055 "generated device map.\" it may be that you need to create a C</boot/grub/"
10056 "device.map> file first that contains the mapping between grub device names "
10057 "and Linux device names.  It is usually sufficient to create a file "
10058 "containing:"
10059 msgstr ""
10060
10061 #. type: verbatim
10062 #: ../src/guestfs-actions.pod:2259 ../fish/guestfish-actions.pod:1517
10063 #, no-wrap
10064 msgid ""
10065 " (hd0) /dev/vda\n"
10066 "\n"
10067 msgstr ""
10068
10069 #. type: textblock
10070 #: ../src/guestfs-actions.pod:2261 ../fish/guestfish-actions.pod:1519
10071 msgid "replacing C</dev/vda> with the name of the installation device."
10072 msgstr ""
10073
10074 #. type: textblock
10075 #: ../src/guestfs-actions.pod:2265
10076 msgid "(Added in 1.0.17)"
10077 msgstr ""
10078
10079 #. type: =head2
10080 #: ../src/guestfs-actions.pod:2267
10081 msgid "guestfs_head"
10082 msgstr ""
10083
10084 #. type: verbatim
10085 #: ../src/guestfs-actions.pod:2269
10086 #, no-wrap
10087 msgid ""
10088 " char **\n"
10089 " guestfs_head (guestfs_h *g,\n"
10090 "               const char *path);\n"
10091 "\n"
10092 msgstr ""
10093
10094 #. type: textblock
10095 #: ../src/guestfs-actions.pod:2273 ../fish/guestfish-actions.pod:1525
10096 msgid ""
10097 "This command returns up to the first 10 lines of a file as a list of strings."
10098 msgstr ""
10099
10100 #. type: =head2
10101 #: ../src/guestfs-actions.pod:2285
10102 msgid "guestfs_head_n"
10103 msgstr ""
10104
10105 #. type: verbatim
10106 #: ../src/guestfs-actions.pod:2287
10107 #, no-wrap
10108 msgid ""
10109 " char **\n"
10110 " guestfs_head_n (guestfs_h *g,\n"
10111 "                 int nrlines,\n"
10112 "                 const char *path);\n"
10113 "\n"
10114 msgstr ""
10115
10116 #. type: textblock
10117 #: ../src/guestfs-actions.pod:2292 ../fish/guestfish-actions.pod:1535
10118 msgid ""
10119 "If the parameter C<nrlines> is a positive number, this returns the first "
10120 "C<nrlines> lines of the file C<path>."
10121 msgstr ""
10122
10123 #. type: textblock
10124 #: ../src/guestfs-actions.pod:2295 ../fish/guestfish-actions.pod:1538
10125 msgid ""
10126 "If the parameter C<nrlines> is a negative number, this returns lines from "
10127 "the file C<path>, excluding the last C<nrlines> lines."
10128 msgstr ""
10129
10130 #. type: textblock
10131 #: ../src/guestfs-actions.pod:2298 ../src/guestfs-actions.pod:6615
10132 #: ../fish/guestfish-actions.pod:1541 ../fish/guestfish-actions.pod:4471
10133 msgid "If the parameter C<nrlines> is zero, this returns an empty list."
10134 msgstr ""
10135
10136 #. type: =head2
10137 #: ../src/guestfs-actions.pod:2309
10138 msgid "guestfs_hexdump"
10139 msgstr ""
10140
10141 #. type: verbatim
10142 #: ../src/guestfs-actions.pod:2311
10143 #, no-wrap
10144 msgid ""
10145 " char *\n"
10146 " guestfs_hexdump (guestfs_h *g,\n"
10147 "                  const char *path);\n"
10148 "\n"
10149 msgstr ""
10150
10151 #. type: textblock
10152 #: ../src/guestfs-actions.pod:2315 ../fish/guestfish-actions.pod:1550
10153 msgid ""
10154 "This runs C<hexdump -C> on the given C<path>.  The result is the human-"
10155 "readable, canonical hex dump of the file."
10156 msgstr ""
10157
10158 #. type: textblock
10159 #: ../src/guestfs-actions.pod:2324 ../src/guestfs-actions.pod:6399
10160 #: ../src/guestfs-actions.pod:6454
10161 msgid "(Added in 1.0.22)"
10162 msgstr ""
10163
10164 #. type: =head2
10165 #: ../src/guestfs-actions.pod:2326
10166 msgid "guestfs_initrd_cat"
10167 msgstr ""
10168
10169 #. type: verbatim
10170 #: ../src/guestfs-actions.pod:2328
10171 #, no-wrap
10172 msgid ""
10173 " char *\n"
10174 " guestfs_initrd_cat (guestfs_h *g,\n"
10175 "                     const char *initrdpath,\n"
10176 "                     const char *filename,\n"
10177 "                     size_t *size_r);\n"
10178 "\n"
10179 msgstr ""
10180
10181 #. type: textblock
10182 #: ../src/guestfs-actions.pod:2334 ../fish/guestfish-actions.pod:1560
10183 msgid ""
10184 "This command unpacks the file C<filename> from the initrd file called "
10185 "C<initrdpath>.  The filename must be given I<without> the initial C</> "
10186 "character."
10187 msgstr ""
10188
10189 #. type: textblock
10190 #: ../src/guestfs-actions.pod:2338 ../fish/guestfish-actions.pod:1564
10191 msgid ""
10192 "For example, in guestfish you could use the following command to examine the "
10193 "boot script (usually called C</init>)  contained in a Linux initrd or "
10194 "initramfs image:"
10195 msgstr ""
10196
10197 #. type: verbatim
10198 #: ../src/guestfs-actions.pod:2342 ../fish/guestfish-actions.pod:1568
10199 #, no-wrap
10200 msgid ""
10201 " initrd-cat /boot/initrd-<version>.img init\n"
10202 "\n"
10203 msgstr ""
10204
10205 #. type: textblock
10206 #: ../src/guestfs-actions.pod:2344
10207 msgid "See also C<guestfs_initrd_list>."
10208 msgstr ""
10209
10210 #. type: =head2
10211 #: ../src/guestfs-actions.pod:2355
10212 msgid "guestfs_initrd_list"
10213 msgstr ""
10214
10215 #. type: verbatim
10216 #: ../src/guestfs-actions.pod:2357
10217 #, no-wrap
10218 msgid ""
10219 " char **\n"
10220 " guestfs_initrd_list (guestfs_h *g,\n"
10221 "                      const char *path);\n"
10222 "\n"
10223 msgstr ""
10224
10225 #. type: textblock
10226 #: ../src/guestfs-actions.pod:2361 ../fish/guestfish-actions.pod:1579
10227 msgid "This command lists out files contained in an initrd."
10228 msgstr ""
10229
10230 #. type: textblock
10231 #: ../src/guestfs-actions.pod:2363 ../fish/guestfish-actions.pod:1581
10232 msgid ""
10233 "The files are listed without any initial C</> character.  The files are "
10234 "listed in the order they appear (not necessarily alphabetical).  Directory "
10235 "names are listed as separate items."
10236 msgstr ""
10237
10238 #. type: textblock
10239 #: ../src/guestfs-actions.pod:2367 ../fish/guestfish-actions.pod:1585
10240 msgid ""
10241 "Old Linux kernels (2.4 and earlier) used a compressed ext2 filesystem as "
10242 "initrd.  We I<only> support the newer initramfs format (compressed cpio "
10243 "files)."
10244 msgstr ""
10245
10246 #. type: =head2
10247 #: ../src/guestfs-actions.pod:2377
10248 msgid "guestfs_inotify_add_watch"
10249 msgstr ""
10250
10251 #. type: verbatim
10252 #: ../src/guestfs-actions.pod:2379
10253 #, no-wrap
10254 msgid ""
10255 " int64_t\n"
10256 " guestfs_inotify_add_watch (guestfs_h *g,\n"
10257 "                            const char *path,\n"
10258 "                            int mask);\n"
10259 "\n"
10260 msgstr ""
10261
10262 #. type: textblock
10263 #: ../src/guestfs-actions.pod:2384 ../fish/guestfish-actions.pod:1593
10264 msgid "Watch C<path> for the events listed in C<mask>."
10265 msgstr ""
10266
10267 #. type: textblock
10268 #: ../src/guestfs-actions.pod:2386 ../fish/guestfish-actions.pod:1595
10269 msgid ""
10270 "Note that if C<path> is a directory then events within that directory are "
10271 "watched, but this does I<not> happen recursively (in subdirectories)."
10272 msgstr ""
10273
10274 #. type: textblock
10275 #: ../src/guestfs-actions.pod:2390 ../fish/guestfish-actions.pod:1599
10276 msgid ""
10277 "Note for non-C or non-Linux callers: the inotify events are defined by the "
10278 "Linux kernel ABI and are listed in C</usr/include/sys/inotify.h>."
10279 msgstr ""
10280
10281 #. type: =head2
10282 #: ../src/guestfs-actions.pod:2398
10283 msgid "guestfs_inotify_close"
10284 msgstr ""
10285
10286 #. type: verbatim
10287 #: ../src/guestfs-actions.pod:2400
10288 #, no-wrap
10289 msgid ""
10290 " int\n"
10291 " guestfs_inotify_close (guestfs_h *g);\n"
10292 "\n"
10293 msgstr ""
10294
10295 #. type: textblock
10296 #: ../src/guestfs-actions.pod:2403 ../fish/guestfish-actions.pod:1607
10297 msgid ""
10298 "This closes the inotify handle which was previously opened by inotify_init.  "
10299 "It removes all watches, throws away any pending events, and deallocates all "
10300 "resources."
10301 msgstr ""
10302
10303 #. type: =head2
10304 #: ../src/guestfs-actions.pod:2411
10305 msgid "guestfs_inotify_files"
10306 msgstr ""
10307
10308 #. type: verbatim
10309 #: ../src/guestfs-actions.pod:2413
10310 #, no-wrap
10311 msgid ""
10312 " char **\n"
10313 " guestfs_inotify_files (guestfs_h *g);\n"
10314 "\n"
10315 msgstr ""
10316
10317 #. type: textblock
10318 #: ../src/guestfs-actions.pod:2416
10319 msgid ""
10320 "This function is a helpful wrapper around C<guestfs_inotify_read> which just "
10321 "returns a list of pathnames of objects that were touched.  The returned "
10322 "pathnames are sorted and deduplicated."
10323 msgstr ""
10324
10325 #. type: =head2
10326 #: ../src/guestfs-actions.pod:2426
10327 msgid "guestfs_inotify_init"
10328 msgstr ""
10329
10330 #. type: verbatim
10331 #: ../src/guestfs-actions.pod:2428
10332 #, no-wrap
10333 msgid ""
10334 " int\n"
10335 " guestfs_inotify_init (guestfs_h *g,\n"
10336 "                       int maxevents);\n"
10337 "\n"
10338 msgstr ""
10339
10340 #. type: textblock
10341 #: ../src/guestfs-actions.pod:2432 ../fish/guestfish-actions.pod:1623
10342 msgid ""
10343 "This command creates a new inotify handle.  The inotify subsystem can be "
10344 "used to notify events which happen to objects in the guest filesystem."
10345 msgstr ""
10346
10347 #. type: textblock
10348 #: ../src/guestfs-actions.pod:2436
10349 msgid ""
10350 "C<maxevents> is the maximum number of events which will be queued up between "
10351 "calls to C<guestfs_inotify_read> or C<guestfs_inotify_files>.  If this is "
10352 "passed as C<0>, then the kernel (or previously set)  default is used.  For "
10353 "Linux 2.6.29 the default was 16384 events.  Beyond this limit, the kernel "
10354 "throws away events, but records the fact that it threw them away by setting "
10355 "a flag C<IN_Q_OVERFLOW> in the returned structure list (see "
10356 "C<guestfs_inotify_read>)."
10357 msgstr ""
10358
10359 #. type: textblock
10360 #: ../src/guestfs-actions.pod:2446
10361 msgid ""
10362 "Before any events are generated, you have to add some watches to the "
10363 "internal watch list.  See: C<guestfs_inotify_add_watch>, "
10364 "C<guestfs_inotify_rm_watch> and C<guestfs_inotify_watch_all>."
10365 msgstr ""
10366
10367 #. type: textblock
10368 #: ../src/guestfs-actions.pod:2452
10369 msgid ""
10370 "Queued up events should be read periodically by calling "
10371 "C<guestfs_inotify_read> (or C<guestfs_inotify_files> which is just a helpful "
10372 "wrapper around C<guestfs_inotify_read>).  If you don't read the events out "
10373 "often enough then you risk the internal queue overflowing."
10374 msgstr ""
10375
10376 #. type: textblock
10377 #: ../src/guestfs-actions.pod:2459
10378 msgid ""
10379 "The handle should be closed after use by calling C<guestfs_inotify_close>.  "
10380 "This also removes any watches automatically."
10381 msgstr ""
10382
10383 #. type: textblock
10384 #: ../src/guestfs-actions.pod:2463 ../fish/guestfish-actions.pod:1654
10385 msgid ""
10386 "See also L<inotify(7)> for an overview of the inotify interface as exposed "
10387 "by the Linux kernel, which is roughly what we expose via libguestfs.  Note "
10388 "that there is one global inotify handle per libguestfs instance."
10389 msgstr ""
10390
10391 #. type: =head2
10392 #: ../src/guestfs-actions.pod:2472
10393 msgid "guestfs_inotify_read"
10394 msgstr ""
10395
10396 #. type: verbatim
10397 #: ../src/guestfs-actions.pod:2474
10398 #, no-wrap
10399 msgid ""
10400 " struct guestfs_inotify_event_list *\n"
10401 " guestfs_inotify_read (guestfs_h *g);\n"
10402 "\n"
10403 msgstr ""
10404
10405 #. type: textblock
10406 #: ../src/guestfs-actions.pod:2477 ../fish/guestfish-actions.pod:1663
10407 msgid ""
10408 "Return the complete queue of events that have happened since the previous "
10409 "read call."
10410 msgstr ""
10411
10412 #. type: textblock
10413 #: ../src/guestfs-actions.pod:2480 ../fish/guestfish-actions.pod:1666
10414 msgid "If no events have happened, this returns an empty list."
10415 msgstr ""
10416
10417 #. type: textblock
10418 #: ../src/guestfs-actions.pod:2482 ../fish/guestfish-actions.pod:1668
10419 msgid ""
10420 "I<Note>: In order to make sure that all events have been read, you must call "
10421 "this function repeatedly until it returns an empty list.  The reason is that "
10422 "the call will read events up to the maximum appliance-to-host message size "
10423 "and leave remaining events in the queue."
10424 msgstr ""
10425
10426 #. type: textblock
10427 #: ../src/guestfs-actions.pod:2488
10428 msgid ""
10429 "This function returns a C<struct guestfs_inotify_event_list *>, or NULL if "
10430 "there was an error.  I<The caller must call "
10431 "C<guestfs_free_inotify_event_list> after use>."
10432 msgstr ""
10433
10434 #. type: =head2
10435 #: ../src/guestfs-actions.pod:2494
10436 msgid "guestfs_inotify_rm_watch"
10437 msgstr ""
10438
10439 #. type: verbatim
10440 #: ../src/guestfs-actions.pod:2496
10441 #, no-wrap
10442 msgid ""
10443 " int\n"
10444 " guestfs_inotify_rm_watch (guestfs_h *g,\n"
10445 "                           int wd);\n"
10446 "\n"
10447 msgstr ""
10448
10449 #. type: textblock
10450 #: ../src/guestfs-actions.pod:2500
10451 msgid ""
10452 "Remove a previously defined inotify watch.  See C<guestfs_inotify_add_watch>."
10453 msgstr ""
10454
10455 #. type: =head2
10456 #: ../src/guestfs-actions.pod:2507
10457 msgid "guestfs_inspect_get_arch"
10458 msgstr ""
10459
10460 #. type: verbatim
10461 #: ../src/guestfs-actions.pod:2509
10462 #, no-wrap
10463 msgid ""
10464 " char *\n"
10465 " guestfs_inspect_get_arch (guestfs_h *g,\n"
10466 "                           const char *root);\n"
10467 "\n"
10468 msgstr ""
10469
10470 #. type: textblock
10471 #: ../src/guestfs-actions.pod:2513 ../src/guestfs-actions.pod:2536
10472 #: ../src/guestfs-actions.pod:2629 ../src/guestfs-actions.pod:2673
10473 #: ../src/guestfs-actions.pod:2699 ../src/guestfs-actions.pod:2738
10474 #: ../src/guestfs-actions.pod:2760 ../src/guestfs-actions.pod:2787
10475 #: ../src/guestfs-actions.pod:2808 ../src/guestfs-actions.pod:2851
10476 #: ../src/guestfs-actions.pod:2880 ../src/guestfs-actions.pod:2911
10477 #: ../src/guestfs-actions.pod:2935 ../src/guestfs-actions.pod:2990
10478 #: ../src/guestfs-actions.pod:3032 ../src/guestfs-actions.pod:3053
10479 #: ../src/guestfs-actions.pod:3076 ../src/guestfs-actions.pod:3093
10480 #: ../src/guestfs-actions.pod:3110 ../src/guestfs-actions.pod:3129
10481 msgid ""
10482 "This function should only be called with a root device string as returned by "
10483 "C<guestfs_inspect_os>."
10484 msgstr ""
10485
10486 #. type: textblock
10487 #: ../src/guestfs-actions.pod:2516
10488 msgid ""
10489 "This returns the architecture of the inspected operating system.  The "
10490 "possible return values are listed under C<guestfs_file_architecture>."
10491 msgstr ""
10492
10493 #. type: textblock
10494 #: ../src/guestfs-actions.pod:2520 ../fish/guestfish-actions.pod:1692
10495 msgid ""
10496 "If the architecture could not be determined, then the string C<unknown> is "
10497 "returned."
10498 msgstr ""
10499
10500 #. type: textblock
10501 #: ../src/guestfs-actions.pod:2523 ../src/guestfs-actions.pod:2616
10502 #: ../src/guestfs-actions.pod:2727 ../src/guestfs-actions.pod:2747
10503 #: ../src/guestfs-actions.pod:2775 ../src/guestfs-actions.pod:2867
10504 #: ../src/guestfs-actions.pod:2898 ../src/guestfs-actions.pod:2922
10505 #: ../src/guestfs-actions.pod:2976 ../src/guestfs-actions.pod:3019
10506 #: ../src/guestfs-actions.pod:3042 ../src/guestfs-actions.pod:3063
10507 #: ../src/guestfs-actions.pod:3083 ../src/guestfs-actions.pod:3100
10508 #: ../src/guestfs-actions.pod:3119 ../src/guestfs-actions.pod:3222
10509 #: ../src/guestfs-actions.pod:3263 ../fish/guestfish-actions.pod:1695
10510 #: ../fish/guestfish-actions.pod:1781 ../fish/guestfish-actions.pod:1869
10511 #: ../fish/guestfish-actions.pod:1884 ../fish/guestfish-actions.pod:1905
10512 #: ../fish/guestfish-actions.pod:1975 ../fish/guestfish-actions.pod:1999
10513 #: ../fish/guestfish-actions.pod:2016 ../fish/guestfish-actions.pod:2059
10514 #: ../fish/guestfish-actions.pod:2094 ../fish/guestfish-actions.pod:2110
10515 #: ../fish/guestfish-actions.pod:2126 ../fish/guestfish-actions.pod:2139
10516 #: ../fish/guestfish-actions.pod:2152 ../fish/guestfish-actions.pod:2167
10517 #: ../fish/guestfish-actions.pod:2266 ../fish/guestfish-actions.pod:2300
10518 msgid "Please read L<guestfs(3)/INSPECTION> for more details."
10519 msgstr ""
10520
10521 #. type: =head2
10522 #: ../src/guestfs-actions.pod:2530
10523 msgid "guestfs_inspect_get_distro"
10524 msgstr ""
10525
10526 #. type: verbatim
10527 #: ../src/guestfs-actions.pod:2532
10528 #, no-wrap
10529 msgid ""
10530 " char *\n"
10531 " guestfs_inspect_get_distro (guestfs_h *g,\n"
10532 "                             const char *root);\n"
10533 "\n"
10534 msgstr ""
10535
10536 #. type: textblock
10537 #: ../src/guestfs-actions.pod:2539 ../fish/guestfish-actions.pod:1704
10538 msgid ""
10539 "This returns the distro (distribution) of the inspected operating system."
10540 msgstr ""
10541
10542 #. type: textblock
10543 #: ../src/guestfs-actions.pod:2542 ../fish/guestfish-actions.pod:1707
10544 msgid "Currently defined distros are:"
10545 msgstr ""
10546
10547 #. type: =item
10548 #: ../src/guestfs-actions.pod:2546 ../fish/guestfish-actions.pod:1711
10549 msgid "\"archlinux\""
10550 msgstr "\"archlinux\""
10551
10552 #. type: textblock
10553 #: ../src/guestfs-actions.pod:2548 ../fish/guestfish-actions.pod:1713
10554 msgid "Arch Linux."
10555 msgstr "Arch Linux."
10556
10557 #. type: =item
10558 #: ../src/guestfs-actions.pod:2550 ../fish/guestfish-actions.pod:1715
10559 #, fuzzy
10560 #| msgid "\"gentoo\""
10561 msgid "\"centos\""
10562 msgstr "\"gentoo\""
10563
10564 #. type: textblock
10565 #: ../src/guestfs-actions.pod:2552 ../fish/guestfish-actions.pod:1717
10566 msgid "CentOS."
10567 msgstr ""
10568
10569 #. type: =item
10570 #: ../src/guestfs-actions.pod:2554 ../fish/guestfish-actions.pod:1719
10571 msgid "\"debian\""
10572 msgstr "\"debian\""
10573
10574 #. type: textblock
10575 #: ../src/guestfs-actions.pod:2556 ../fish/guestfish-actions.pod:1721
10576 msgid "Debian."
10577 msgstr "Debian."
10578
10579 #. type: =item
10580 #: ../src/guestfs-actions.pod:2558 ../fish/guestfish-actions.pod:1723
10581 msgid "\"fedora\""
10582 msgstr "\"fedora\""
10583
10584 #. type: textblock
10585 #: ../src/guestfs-actions.pod:2560 ../fish/guestfish-actions.pod:1725
10586 msgid "Fedora."
10587 msgstr "Fedora."
10588
10589 #. type: =item
10590 #: ../src/guestfs-actions.pod:2562 ../fish/guestfish-actions.pod:1727
10591 msgid "\"gentoo\""
10592 msgstr "\"gentoo\""
10593
10594 #. type: textblock
10595 #: ../src/guestfs-actions.pod:2564 ../fish/guestfish-actions.pod:1729
10596 msgid "Gentoo."
10597 msgstr "Gentoo."
10598
10599 #. type: =item
10600 #: ../src/guestfs-actions.pod:2566 ../fish/guestfish-actions.pod:1731
10601 msgid "\"linuxmint\""
10602 msgstr "\"linuxmint\""
10603
10604 #. type: textblock
10605 #: ../src/guestfs-actions.pod:2568 ../fish/guestfish-actions.pod:1733
10606 msgid "Linux Mint."
10607 msgstr "Linux Mint."
10608
10609 #. type: =item
10610 #: ../src/guestfs-actions.pod:2570 ../fish/guestfish-actions.pod:1735
10611 msgid "\"mandriva\""
10612 msgstr "\"mandriva\""
10613
10614 #. type: textblock
10615 #: ../src/guestfs-actions.pod:2572 ../fish/guestfish-actions.pod:1737
10616 msgid "Mandriva."
10617 msgstr "Mandriva."
10618
10619 #. type: =item
10620 #: ../src/guestfs-actions.pod:2574 ../fish/guestfish-actions.pod:1739
10621 msgid "\"meego\""
10622 msgstr "\"meego\""
10623
10624 #. type: textblock
10625 #: ../src/guestfs-actions.pod:2576 ../fish/guestfish-actions.pod:1741
10626 msgid "MeeGo."
10627 msgstr "MeeGo."
10628
10629 #. type: =item
10630 #: ../src/guestfs-actions.pod:2578 ../fish/guestfish-actions.pod:1743
10631 msgid "\"pardus\""
10632 msgstr "\"pardus\""
10633
10634 #. type: textblock
10635 #: ../src/guestfs-actions.pod:2580 ../fish/guestfish-actions.pod:1745
10636 msgid "Pardus."
10637 msgstr "Pardus."
10638
10639 #. type: =item
10640 #: ../src/guestfs-actions.pod:2582 ../fish/guestfish-actions.pod:1747
10641 msgid "\"redhat-based\""
10642 msgstr "\"redhat-based\""
10643
10644 #. type: textblock
10645 #: ../src/guestfs-actions.pod:2584 ../fish/guestfish-actions.pod:1749
10646 msgid "Some Red Hat-derived distro."
10647 msgstr "Дистрибутив, що походить від Red Hat."
10648
10649 #. type: =item
10650 #: ../src/guestfs-actions.pod:2586 ../fish/guestfish-actions.pod:1751
10651 msgid "\"rhel\""
10652 msgstr "\"rhel\""
10653
10654 #. type: textblock
10655 #: ../src/guestfs-actions.pod:2588 ../fish/guestfish-actions.pod:1753
10656 #, fuzzy
10657 #| msgid "Red Hat Enterprise Linux and some derivatives."
10658 msgid "Red Hat Enterprise Linux."
10659 msgstr "Red Hat Enterprise Linux та деякі з похідних дистрибутивів."
10660
10661 #. type: =item
10662 #: ../src/guestfs-actions.pod:2590 ../fish/guestfish-actions.pod:1755
10663 msgid "\"scientificlinux\""
10664 msgstr ""
10665
10666 #. type: textblock
10667 #: ../src/guestfs-actions.pod:2592 ../fish/guestfish-actions.pod:1757
10668 msgid "Scientific Linux."
10669 msgstr ""
10670
10671 #. type: =item
10672 #: ../src/guestfs-actions.pod:2594 ../fish/guestfish-actions.pod:1759
10673 msgid "\"slackware\""
10674 msgstr ""
10675
10676 #. type: textblock
10677 #: ../src/guestfs-actions.pod:2596 ../fish/guestfish-actions.pod:1761
10678 msgid "Slackware."
10679 msgstr ""
10680
10681 #. type: =item
10682 #: ../src/guestfs-actions.pod:2598 ../fish/guestfish-actions.pod:1763
10683 msgid "\"ubuntu\""
10684 msgstr "\"ubuntu\""
10685
10686 #. type: textblock
10687 #: ../src/guestfs-actions.pod:2600 ../fish/guestfish-actions.pod:1765
10688 msgid "Ubuntu."
10689 msgstr "Ubuntu."
10690
10691 #. type: =item
10692 #: ../src/guestfs-actions.pod:2602 ../src/guestfs-actions.pod:2718
10693 #: ../src/guestfs-actions.pod:3010 ../fish/guestfish-actions.pod:1767
10694 #: ../fish/guestfish-actions.pod:1860 ../fish/guestfish-actions.pod:2085
10695 msgid "\"unknown\""
10696 msgstr "\"unknown\""
10697
10698 #. type: textblock
10699 #: ../src/guestfs-actions.pod:2604 ../fish/guestfish-actions.pod:1769
10700 msgid "The distro could not be determined."
10701 msgstr "Дистрибутив, тип якого не вдалося визначити."
10702
10703 #. type: =item
10704 #: ../src/guestfs-actions.pod:2606 ../src/guestfs-actions.pod:3002
10705 #: ../fish/guestfish-actions.pod:1771 ../fish/guestfish-actions.pod:2077
10706 msgid "\"windows\""
10707 msgstr "\"windows\""
10708
10709 #. type: textblock
10710 #: ../src/guestfs-actions.pod:2608 ../fish/guestfish-actions.pod:1773
10711 msgid ""
10712 "Windows does not have distributions.  This string is returned if the OS type "
10713 "is Windows."
10714 msgstr ""
10715
10716 #. type: textblock
10717 #: ../src/guestfs-actions.pod:2613 ../src/guestfs-actions.pod:2724
10718 #: ../src/guestfs-actions.pod:3016 ../fish/guestfish-actions.pod:1778
10719 #: ../fish/guestfish-actions.pod:1866 ../fish/guestfish-actions.pod:2091
10720 msgid ""
10721 "Future versions of libguestfs may return other strings here.  The caller "
10722 "should be prepared to handle any string."
10723 msgstr ""
10724
10725 #. type: =head2
10726 #: ../src/guestfs-actions.pod:2623
10727 msgid "guestfs_inspect_get_drive_mappings"
10728 msgstr ""
10729
10730 #. type: verbatim
10731 #: ../src/guestfs-actions.pod:2625
10732 #, no-wrap
10733 msgid ""
10734 " char **\n"
10735 " guestfs_inspect_get_drive_mappings (guestfs_h *g,\n"
10736 "                                     const char *root);\n"
10737 "\n"
10738 msgstr ""
10739
10740 #. type: textblock
10741 #: ../src/guestfs-actions.pod:2632 ../fish/guestfish-actions.pod:1790
10742 msgid ""
10743 "This call is useful for Windows which uses a primitive system of assigning "
10744 "drive letters (like \"C:\") to partitions.  This inspection API examines the "
10745 "Windows Registry to find out how disks/partitions are mapped to drive "
10746 "letters, and returns a hash table as in the example below:"
10747 msgstr ""
10748
10749 #. type: verbatim
10750 #: ../src/guestfs-actions.pod:2638 ../fish/guestfish-actions.pod:1796
10751 #, no-wrap
10752 msgid ""
10753 " C      =>     /dev/vda2\n"
10754 " E      =>     /dev/vdb1\n"
10755 " F      =>     /dev/vdc1\n"
10756 "\n"
10757 msgstr ""
10758
10759 #. type: textblock
10760 #: ../src/guestfs-actions.pod:2642 ../fish/guestfish-actions.pod:1800
10761 msgid ""
10762 "Note that keys are drive letters.  For Windows, the key is case insensitive "
10763 "and just contains the drive letter, without the customary colon separator "
10764 "character."
10765 msgstr ""
10766
10767 #. type: textblock
10768 #: ../src/guestfs-actions.pod:2646 ../fish/guestfish-actions.pod:1804
10769 msgid ""
10770 "In future we may support other operating systems that also used drive "
10771 "letters, but the keys for those might not be case insensitive and might be "
10772 "longer than 1 character.  For example in OS-9, hard drives were named C<h0>, "
10773 "C<h1> etc."
10774 msgstr ""
10775
10776 #. type: textblock
10777 #: ../src/guestfs-actions.pod:2651 ../fish/guestfish-actions.pod:1809
10778 msgid ""
10779 "For Windows guests, currently only hard drive mappings are returned.  "
10780 "Removable disks (eg. DVD-ROMs) are ignored."
10781 msgstr ""
10782
10783 #. type: textblock
10784 #: ../src/guestfs-actions.pod:2654 ../fish/guestfish-actions.pod:1812
10785 msgid ""
10786 "For guests that do not use drive mappings, or if the drive mappings could "
10787 "not be determined, this returns an empty hash table."
10788 msgstr ""
10789
10790 #. type: textblock
10791 #: ../src/guestfs-actions.pod:2657
10792 msgid ""
10793 "Please read L<guestfs(3)/INSPECTION> for more details.  See also "
10794 "C<guestfs_inspect_get_mountpoints>, C<guestfs_inspect_get_filesystems>."
10795 msgstr ""
10796
10797 #. type: textblock
10798 #: ../src/guestfs-actions.pod:2661 ../src/guestfs-actions.pod:2837
10799 #: ../src/guestfs-actions.pod:3597 ../src/guestfs-actions.pod:4814
10800 #: ../src/guestfs-actions.pod:6756
10801 msgid ""
10802 "This function returns a NULL-terminated array of strings, or NULL if there "
10803 "was an error.  The array of strings will always have length C<2n+1>, where "
10804 "C<n> keys and values alternate, followed by the trailing NULL entry.  I<The "
10805 "caller must free the strings and the array after use>."
10806 msgstr ""
10807
10808 #. type: =head2
10809 #: ../src/guestfs-actions.pod:2667
10810 msgid "guestfs_inspect_get_filesystems"
10811 msgstr ""
10812
10813 #. type: verbatim
10814 #: ../src/guestfs-actions.pod:2669
10815 #, no-wrap
10816 msgid ""
10817 " char **\n"
10818 " guestfs_inspect_get_filesystems (guestfs_h *g,\n"
10819 "                                  const char *root);\n"
10820 "\n"
10821 msgstr ""
10822
10823 #. type: textblock
10824 #: ../src/guestfs-actions.pod:2676 ../fish/guestfish-actions.pod:1826
10825 msgid ""
10826 "This returns a list of all the filesystems that we think are associated with "
10827 "this operating system.  This includes the root filesystem, other ordinary "
10828 "filesystems, and non-mounted devices like swap partitions."
10829 msgstr ""
10830
10831 #. type: textblock
10832 #: ../src/guestfs-actions.pod:2681 ../fish/guestfish-actions.pod:1831
10833 msgid ""
10834 "In the case of a multi-boot virtual machine, it is possible for a filesystem "
10835 "to be shared between operating systems."
10836 msgstr ""
10837
10838 #. type: textblock
10839 #: ../src/guestfs-actions.pod:2684
10840 msgid ""
10841 "Please read L<guestfs(3)/INSPECTION> for more details.  See also "
10842 "C<guestfs_inspect_get_mountpoints>."
10843 msgstr ""
10844
10845 #. type: =head2
10846 #: ../src/guestfs-actions.pod:2693
10847 msgid "guestfs_inspect_get_format"
10848 msgstr ""
10849
10850 #. type: verbatim
10851 #: ../src/guestfs-actions.pod:2695
10852 #, no-wrap
10853 msgid ""
10854 " char *\n"
10855 " guestfs_inspect_get_format (guestfs_h *g,\n"
10856 "                             const char *root);\n"
10857 "\n"
10858 msgstr ""
10859
10860 #. type: textblock
10861 #: ../src/guestfs-actions.pod:2702 ../fish/guestfish-actions.pod:1844
10862 msgid ""
10863 "This returns the format of the inspected operating system.  You can use it "
10864 "to detect install images, live CDs and similar."
10865 msgstr ""
10866
10867 #. type: textblock
10868 #: ../src/guestfs-actions.pod:2705 ../fish/guestfish-actions.pod:1847
10869 msgid "Currently defined formats are:"
10870 msgstr ""
10871
10872 #. type: =item
10873 #: ../src/guestfs-actions.pod:2709 ../fish/guestfish-actions.pod:1851
10874 msgid "\"installed\""
10875 msgstr "\"installed\""
10876
10877 #. type: textblock
10878 #: ../src/guestfs-actions.pod:2711 ../fish/guestfish-actions.pod:1853
10879 msgid "This is an installed operating system."
10880 msgstr "Це встановлена операційна система."
10881
10882 #. type: =item
10883 #: ../src/guestfs-actions.pod:2713 ../fish/guestfish-actions.pod:1855
10884 msgid "\"installer\""
10885 msgstr ""
10886
10887 #. type: textblock
10888 #: ../src/guestfs-actions.pod:2715 ../fish/guestfish-actions.pod:1857
10889 msgid ""
10890 "The disk image being inspected is not an installed operating system, but a "
10891 "I<bootable> install disk, live CD, or similar."
10892 msgstr ""
10893
10894 #. type: textblock
10895 #: ../src/guestfs-actions.pod:2720 ../fish/guestfish-actions.pod:1862
10896 msgid "The format of this disk image is not known."
10897 msgstr ""
10898
10899 #. type: =head2
10900 #: ../src/guestfs-actions.pod:2732
10901 msgid "guestfs_inspect_get_hostname"
10902 msgstr ""
10903
10904 #. type: verbatim
10905 #: ../src/guestfs-actions.pod:2734
10906 #, no-wrap
10907 msgid ""
10908 " char *\n"
10909 " guestfs_inspect_get_hostname (guestfs_h *g,\n"
10910 "                               const char *root);\n"
10911 "\n"
10912 msgstr ""
10913
10914 #. type: textblock
10915 #: ../src/guestfs-actions.pod:2741 ../fish/guestfish-actions.pod:1878
10916 msgid ""
10917 "This function returns the hostname of the operating system as found by "
10918 "inspection of the guest's configuration files."
10919 msgstr ""
10920
10921 #. type: textblock
10922 #: ../src/guestfs-actions.pod:2744 ../fish/guestfish-actions.pod:1881
10923 msgid ""
10924 "If the hostname could not be determined, then the string C<unknown> is "
10925 "returned."
10926 msgstr ""
10927
10928 #. type: textblock
10929 #: ../src/guestfs-actions.pod:2752
10930 msgid "(Added in 1.7.9)"
10931 msgstr ""
10932
10933 #. type: =head2
10934 #: ../src/guestfs-actions.pod:2754
10935 msgid "guestfs_inspect_get_major_version"
10936 msgstr ""
10937
10938 #. type: verbatim
10939 #: ../src/guestfs-actions.pod:2756
10940 #, no-wrap
10941 msgid ""
10942 " int\n"
10943 " guestfs_inspect_get_major_version (guestfs_h *g,\n"
10944 "                                    const char *root);\n"
10945 "\n"
10946 msgstr ""
10947
10948 #. type: textblock
10949 #: ../src/guestfs-actions.pod:2763 ../fish/guestfish-actions.pod:1893
10950 msgid ""
10951 "This returns the major version number of the inspected operating system."
10952 msgstr ""
10953
10954 #. type: textblock
10955 #: ../src/guestfs-actions.pod:2766 ../fish/guestfish-actions.pod:1896
10956 msgid ""
10957 "Windows uses a consistent versioning scheme which is I<not> reflected in the "
10958 "popular public names used by the operating system.  Notably the operating "
10959 "system known as \"Windows 7\" is really version 6.1 (ie. major = 6, minor = "
10960 "1).  You can find out the real versions corresponding to releases of Windows "
10961 "by consulting Wikipedia or MSDN."
10962 msgstr ""
10963
10964 #. type: textblock
10965 #: ../src/guestfs-actions.pod:2773 ../src/guestfs-actions.pod:2793
10966 #: ../fish/guestfish-actions.pod:1903 ../fish/guestfish-actions.pod:1917
10967 msgid "If the version could not be determined, then C<0> is returned."
10968 msgstr ""
10969
10970 #. type: =head2
10971 #: ../src/guestfs-actions.pod:2781
10972 msgid "guestfs_inspect_get_minor_version"
10973 msgstr ""
10974
10975 #. type: verbatim
10976 #: ../src/guestfs-actions.pod:2783
10977 #, no-wrap
10978 msgid ""
10979 " int\n"
10980 " guestfs_inspect_get_minor_version (guestfs_h *g,\n"
10981 "                                    const char *root);\n"
10982 "\n"
10983 msgstr ""
10984
10985 #. type: textblock
10986 #: ../src/guestfs-actions.pod:2790 ../fish/guestfish-actions.pod:1914
10987 msgid ""
10988 "This returns the minor version number of the inspected operating system."
10989 msgstr ""
10990
10991 #. type: textblock
10992 #: ../src/guestfs-actions.pod:2795
10993 msgid ""
10994 "Please read L<guestfs(3)/INSPECTION> for more details.  See also "
10995 "C<guestfs_inspect_get_major_version>."
10996 msgstr ""
10997
10998 #. type: =head2
10999 #: ../src/guestfs-actions.pod:2802
11000 msgid "guestfs_inspect_get_mountpoints"
11001 msgstr ""
11002
11003 #. type: verbatim
11004 #: ../src/guestfs-actions.pod:2804
11005 #, no-wrap
11006 msgid ""
11007 " char **\n"
11008 " guestfs_inspect_get_mountpoints (guestfs_h *g,\n"
11009 "                                  const char *root);\n"
11010 "\n"
11011 msgstr ""
11012
11013 #. type: textblock
11014 #: ../src/guestfs-actions.pod:2811 ../fish/guestfish-actions.pod:1929
11015 msgid ""
11016 "This returns a hash of where we think the filesystems associated with this "
11017 "operating system should be mounted.  Callers should note that this is at "
11018 "best an educated guess made by reading configuration files such as C</etc/"
11019 "fstab>.  I<In particular note> that this may return filesystems which are "
11020 "non-existent or not mountable and callers should be prepared to handle or "
11021 "ignore failures if they try to mount them."
11022 msgstr ""
11023
11024 #. type: textblock
11025 #: ../src/guestfs-actions.pod:2820 ../fish/guestfish-actions.pod:1938
11026 msgid ""
11027 "Each element in the returned hashtable has a key which is the path of the "
11028 "mountpoint (eg. C</boot>) and a value which is the filesystem that would be "
11029 "mounted there (eg. C</dev/sda1>)."
11030 msgstr ""
11031
11032 #. type: textblock
11033 #: ../src/guestfs-actions.pod:2825 ../fish/guestfish-actions.pod:1943
11034 msgid ""
11035 "Non-mounted devices such as swap devices are I<not> returned in this list."
11036 msgstr ""
11037
11038 #. type: textblock
11039 #: ../src/guestfs-actions.pod:2828
11040 msgid ""
11041 "For operating systems like Windows which still use drive letters, this call "
11042 "will only return an entry for the first drive \"mounted on\" C</>.  For "
11043 "information about the mapping of drive letters to partitions, see "
11044 "C<guestfs_inspect_get_drive_mappings>."
11045 msgstr ""
11046
11047 #. type: textblock
11048 #: ../src/guestfs-actions.pod:2834
11049 msgid ""
11050 "Please read L<guestfs(3)/INSPECTION> for more details.  See also "
11051 "C<guestfs_inspect_get_filesystems>."
11052 msgstr ""
11053
11054 #. type: =head2
11055 #: ../src/guestfs-actions.pod:2845
11056 msgid "guestfs_inspect_get_package_format"
11057 msgstr ""
11058
11059 #. type: verbatim
11060 #: ../src/guestfs-actions.pod:2847
11061 #, no-wrap
11062 msgid ""
11063 " char *\n"
11064 " guestfs_inspect_get_package_format (guestfs_h *g,\n"
11065 "                                     const char *root);\n"
11066 "\n"
11067 msgstr ""
11068
11069 #. type: textblock
11070 #: ../src/guestfs-actions.pod:2854
11071 msgid ""
11072 "This function and C<guestfs_inspect_get_package_management> return the "
11073 "package format and package management tool used by the inspected operating "
11074 "system.  For example for Fedora these functions would return C<rpm> (package "
11075 "format) and C<yum> (package management)."
11076 msgstr ""
11077
11078 #. type: textblock
11079 #: ../src/guestfs-actions.pod:2860 ../fish/guestfish-actions.pod:1968
11080 msgid ""
11081 "This returns the string C<unknown> if we could not determine the package "
11082 "format I<or> if the operating system does not have a real packaging system "
11083 "(eg. Windows)."
11084 msgstr ""
11085
11086 #. type: textblock
11087 #: ../src/guestfs-actions.pod:2864 ../fish/guestfish-actions.pod:1972
11088 msgid ""
11089 "Possible strings include: C<rpm>, C<deb>, C<ebuild>, C<pisi>, C<pacman>.  "
11090 "Future versions of libguestfs may return other strings."
11091 msgstr ""
11092
11093 #. type: textblock
11094 #: ../src/guestfs-actions.pod:2872 ../src/guestfs-actions.pod:2903
11095 msgid "(Added in 1.7.5)"
11096 msgstr ""
11097
11098 #. type: =head2
11099 #: ../src/guestfs-actions.pod:2874
11100 msgid "guestfs_inspect_get_package_management"
11101 msgstr ""
11102
11103 #. type: verbatim
11104 #: ../src/guestfs-actions.pod:2876
11105 #, no-wrap
11106 msgid ""
11107 " char *\n"
11108 " guestfs_inspect_get_package_management (guestfs_h *g,\n"
11109 "                                         const char *root);\n"
11110 "\n"
11111 msgstr ""
11112
11113 #. type: textblock
11114 #: ../src/guestfs-actions.pod:2883
11115 msgid ""
11116 "C<guestfs_inspect_get_package_format> and this function return the package "
11117 "format and package management tool used by the inspected operating system.  "
11118 "For example for Fedora these functions would return C<rpm> (package format) "
11119 "and C<yum> (package management)."
11120 msgstr ""
11121
11122 #. type: textblock
11123 #: ../src/guestfs-actions.pod:2889 ../fish/guestfish-actions.pod:1990
11124 msgid ""
11125 "This returns the string C<unknown> if we could not determine the package "
11126 "management tool I<or> if the operating system does not have a real packaging "
11127 "system (eg. Windows)."
11128 msgstr ""
11129
11130 #. type: textblock
11131 #: ../src/guestfs-actions.pod:2893 ../fish/guestfish-actions.pod:1994
11132 msgid ""
11133 "Possible strings include: C<yum>, C<up2date>, C<apt> (for all Debian "
11134 "derivatives), C<portage>, C<pisi>, C<pacman>, C<urpmi>.  Future versions of "
11135 "libguestfs may return other strings."
11136 msgstr ""
11137
11138 #. type: =head2
11139 #: ../src/guestfs-actions.pod:2905
11140 msgid "guestfs_inspect_get_product_name"
11141 msgstr ""
11142
11143 #. type: verbatim
11144 #: ../src/guestfs-actions.pod:2907
11145 #, no-wrap
11146 msgid ""
11147 " char *\n"
11148 " guestfs_inspect_get_product_name (guestfs_h *g,\n"
11149 "                                   const char *root);\n"
11150 "\n"
11151 msgstr ""
11152
11153 #. type: textblock
11154 #: ../src/guestfs-actions.pod:2914 ../fish/guestfish-actions.pod:2008
11155 msgid ""
11156 "This returns the product name of the inspected operating system.  The "
11157 "product name is generally some freeform string which can be displayed to the "
11158 "user, but should not be parsed by programs."
11159 msgstr ""
11160
11161 #. type: textblock
11162 #: ../src/guestfs-actions.pod:2919 ../fish/guestfish-actions.pod:2013
11163 msgid ""
11164 "If the product name could not be determined, then the string C<unknown> is "
11165 "returned."
11166 msgstr ""
11167
11168 #. type: =head2
11169 #: ../src/guestfs-actions.pod:2929
11170 msgid "guestfs_inspect_get_product_variant"
11171 msgstr ""
11172
11173 #. type: verbatim
11174 #: ../src/guestfs-actions.pod:2931
11175 #, no-wrap
11176 msgid ""
11177 " char *\n"
11178 " guestfs_inspect_get_product_variant (guestfs_h *g,\n"
11179 "                                      const char *root);\n"
11180 "\n"
11181 msgstr ""
11182
11183 #. type: textblock
11184 #: ../src/guestfs-actions.pod:2938 ../fish/guestfish-actions.pod:2025
11185 #, fuzzy
11186 #| msgid "This is an installed operating system."
11187 msgid "This returns the product variant of the inspected operating system."
11188 msgstr "Це встановлена операційна система."
11189
11190 #. type: textblock
11191 #: ../src/guestfs-actions.pod:2941 ../fish/guestfish-actions.pod:2028
11192 msgid ""
11193 "For Windows guests, this returns the contents of the Registry key C<HKLM"
11194 "\\Software\\Microsoft\\Windows NT\\CurrentVersion> C<InstallationType> which "
11195 "is usually a string such as C<Client> or C<Server> (other values are "
11196 "possible).  This can be used to distinguish consumer and enterprise versions "
11197 "of Windows that have the same version number (for example, Windows 7 and "
11198 "Windows 2008 Server are both version 6.1, but the former is C<Client> and "
11199 "the latter is C<Server>)."
11200 msgstr ""
11201
11202 #. type: textblock
11203 #: ../src/guestfs-actions.pod:2950 ../fish/guestfish-actions.pod:2037
11204 msgid ""
11205 "For enterprise Linux guests, in future we intend this to return the product "
11206 "variant such as C<Desktop>, C<Server> and so on.  But this is not "
11207 "implemented at present."
11208 msgstr ""
11209
11210 #. type: textblock
11211 #: ../src/guestfs-actions.pod:2954 ../fish/guestfish-actions.pod:2041
11212 msgid ""
11213 "If the product variant could not be determined, then the string C<unknown> "
11214 "is returned."
11215 msgstr ""
11216
11217 #. type: textblock
11218 #: ../src/guestfs-actions.pod:2957
11219 msgid ""
11220 "Please read L<guestfs(3)/INSPECTION> for more details.  See also "
11221 "C<guestfs_inspect_get_product_name>, C<guestfs_inspect_get_major_version>."
11222 msgstr ""
11223
11224 #. type: =head2
11225 #: ../src/guestfs-actions.pod:2964
11226 msgid "guestfs_inspect_get_roots"
11227 msgstr ""
11228
11229 #. type: verbatim
11230 #: ../src/guestfs-actions.pod:2966
11231 #, no-wrap
11232 msgid ""
11233 " char **\n"
11234 " guestfs_inspect_get_roots (guestfs_h *g);\n"
11235 "\n"
11236 msgstr ""
11237
11238 #. type: textblock
11239 #: ../src/guestfs-actions.pod:2969
11240 msgid ""
11241 "This function is a convenient way to get the list of root devices, as "
11242 "returned from a previous call to C<guestfs_inspect_os>, but without redoing "
11243 "the whole inspection process."
11244 msgstr ""
11245
11246 #. type: textblock
11247 #: ../src/guestfs-actions.pod:2973
11248 msgid ""
11249 "This returns an empty list if either no root devices were found or the "
11250 "caller has not called C<guestfs_inspect_os>."
11251 msgstr ""
11252
11253 #. type: textblock
11254 #: ../src/guestfs-actions.pod:2982
11255 msgid "(Added in 1.7.3)"
11256 msgstr ""
11257
11258 #. type: =head2
11259 #: ../src/guestfs-actions.pod:2984
11260 msgid "guestfs_inspect_get_type"
11261 msgstr ""
11262
11263 #. type: verbatim
11264 #: ../src/guestfs-actions.pod:2986
11265 #, no-wrap
11266 msgid ""
11267 " char *\n"
11268 " guestfs_inspect_get_type (guestfs_h *g,\n"
11269 "                           const char *root);\n"
11270 "\n"
11271 msgstr ""
11272
11273 #. type: textblock
11274 #: ../src/guestfs-actions.pod:2993 ../fish/guestfish-actions.pod:2068
11275 msgid ""
11276 "This returns the type of the inspected operating system.  Currently defined "
11277 "types are:"
11278 msgstr ""
11279
11280 #. type: =item
11281 #: ../src/guestfs-actions.pod:2998 ../fish/guestfish-actions.pod:2073
11282 msgid "\"linux\""
11283 msgstr "\"linux\""
11284
11285 #. type: textblock
11286 #: ../src/guestfs-actions.pod:3000 ../fish/guestfish-actions.pod:2075
11287 msgid "Any Linux-based operating system."
11288 msgstr ""
11289
11290 #. type: textblock
11291 #: ../src/guestfs-actions.pod:3004 ../fish/guestfish-actions.pod:2079
11292 msgid "Any Microsoft Windows operating system."
11293 msgstr ""
11294
11295 #. type: =item
11296 #: ../src/guestfs-actions.pod:3006 ../fish/guestfish-actions.pod:2081
11297 msgid "\"freebsd\""
11298 msgstr "\"freebsd\""
11299
11300 #. type: textblock
11301 #: ../src/guestfs-actions.pod:3008 ../fish/guestfish-actions.pod:2083
11302 msgid "FreeBSD."
11303 msgstr "FreeBSD."
11304
11305 #. type: textblock
11306 #: ../src/guestfs-actions.pod:3012 ../fish/guestfish-actions.pod:2087
11307 msgid "The operating system type could not be determined."
11308 msgstr ""
11309
11310 #. type: =head2
11311 #: ../src/guestfs-actions.pod:3026
11312 msgid "guestfs_inspect_get_windows_current_control_set"
11313 msgstr ""
11314
11315 #. type: verbatim
11316 #: ../src/guestfs-actions.pod:3028
11317 #, no-wrap
11318 msgid ""
11319 " char *\n"
11320 " guestfs_inspect_get_windows_current_control_set (guestfs_h *g,\n"
11321 "                                                  const char *root);\n"
11322 "\n"
11323 msgstr ""
11324
11325 #. type: textblock
11326 #: ../src/guestfs-actions.pod:3035 ../fish/guestfish-actions.pod:2103
11327 msgid ""
11328 "This returns the Windows CurrentControlSet of the inspected guest.  The "
11329 "CurrentControlSet is a registry key name such as C<ControlSet001>."
11330 msgstr ""
11331
11332 #. type: textblock
11333 #: ../src/guestfs-actions.pod:3038 ../fish/guestfish-actions.pod:2106
11334 msgid ""
11335 "This call assumes that the guest is Windows and that the Registry could be "
11336 "examined by inspection.  If this is not the case then an error is returned."
11337 msgstr ""
11338
11339 #. type: =head2
11340 #: ../src/guestfs-actions.pod:3047
11341 msgid "guestfs_inspect_get_windows_systemroot"
11342 msgstr ""
11343
11344 #. type: verbatim
11345 #: ../src/guestfs-actions.pod:3049
11346 #, no-wrap
11347 msgid ""
11348 " char *\n"
11349 " guestfs_inspect_get_windows_systemroot (guestfs_h *g,\n"
11350 "                                         const char *root);\n"
11351 "\n"
11352 msgstr ""
11353
11354 #. type: textblock
11355 #: ../src/guestfs-actions.pod:3056 ../fish/guestfish-actions.pod:2119
11356 msgid ""
11357 "This returns the Windows systemroot of the inspected guest.  The systemroot "
11358 "is a directory path such as C</WINDOWS>."
11359 msgstr ""
11360
11361 #. type: textblock
11362 #: ../src/guestfs-actions.pod:3059 ../fish/guestfish-actions.pod:2122
11363 msgid ""
11364 "This call assumes that the guest is Windows and that the systemroot could be "
11365 "determined by inspection.  If this is not the case then an error is returned."
11366 msgstr ""
11367
11368 #. type: textblock
11369 #: ../src/guestfs-actions.pod:3068
11370 msgid "(Added in 1.5.25)"
11371 msgstr ""
11372
11373 #. type: =head2
11374 #: ../src/guestfs-actions.pod:3070
11375 msgid "guestfs_inspect_is_live"
11376 msgstr ""
11377
11378 #. type: verbatim
11379 #: ../src/guestfs-actions.pod:3072
11380 #, no-wrap
11381 msgid ""
11382 " int\n"
11383 " guestfs_inspect_is_live (guestfs_h *g,\n"
11384 "                          const char *root);\n"
11385 "\n"
11386 msgstr ""
11387
11388 #. type: textblock
11389 #: ../src/guestfs-actions.pod:3079
11390 msgid ""
11391 "If C<guestfs_inspect_get_format> returns C<installer> (this is an install "
11392 "disk), then this returns true if a live image was detected on the disk."
11393 msgstr ""
11394
11395 #. type: =head2
11396 #: ../src/guestfs-actions.pod:3087
11397 msgid "guestfs_inspect_is_multipart"
11398 msgstr ""
11399
11400 #. type: verbatim
11401 #: ../src/guestfs-actions.pod:3089
11402 #, no-wrap
11403 msgid ""
11404 " int\n"
11405 " guestfs_inspect_is_multipart (guestfs_h *g,\n"
11406 "                               const char *root);\n"
11407 "\n"
11408 msgstr ""
11409
11410 #. type: textblock
11411 #: ../src/guestfs-actions.pod:3096
11412 msgid ""
11413 "If C<guestfs_inspect_get_format> returns C<installer> (this is an install "
11414 "disk), then this returns true if the disk is part of a set."
11415 msgstr ""
11416
11417 #. type: =head2
11418 #: ../src/guestfs-actions.pod:3104
11419 msgid "guestfs_inspect_is_netinst"
11420 msgstr ""
11421
11422 #. type: verbatim
11423 #: ../src/guestfs-actions.pod:3106
11424 #, no-wrap
11425 msgid ""
11426 " int\n"
11427 " guestfs_inspect_is_netinst (guestfs_h *g,\n"
11428 "                             const char *root);\n"
11429 "\n"
11430 msgstr ""
11431
11432 #. type: textblock
11433 #: ../src/guestfs-actions.pod:3113
11434 msgid ""
11435 "If C<guestfs_inspect_get_format> returns C<installer> (this is an install "
11436 "disk), then this returns true if the disk is a network installer, ie. not a "
11437 "self-contained install CD but one which is likely to require network access "
11438 "to complete the install."
11439 msgstr ""
11440
11441 #. type: =head2
11442 #: ../src/guestfs-actions.pod:3123
11443 msgid "guestfs_inspect_list_applications"
11444 msgstr ""
11445
11446 #. type: verbatim
11447 #: ../src/guestfs-actions.pod:3125
11448 #, no-wrap
11449 msgid ""
11450 " struct guestfs_application_list *\n"
11451 " guestfs_inspect_list_applications (guestfs_h *g,\n"
11452 "                                    const char *root);\n"
11453 "\n"
11454 msgstr ""
11455
11456 #. type: textblock
11457 #: ../src/guestfs-actions.pod:3132 ../fish/guestfish-actions.pod:2176
11458 msgid "Return the list of applications installed in the operating system."
11459 msgstr ""
11460
11461 #. type: textblock
11462 #: ../src/guestfs-actions.pod:3134
11463 msgid ""
11464 "I<Note:> This call works differently from other parts of the inspection "
11465 "API.  You have to call C<guestfs_inspect_os>, then "
11466 "C<guestfs_inspect_get_mountpoints>, then mount up the disks, before calling "
11467 "this.  Listing applications is a significantly more difficult operation "
11468 "which requires access to the full filesystem.  Also note that unlike the "
11469 "other C<guestfs_inspect_get_*> calls which are just returning data cached in "
11470 "the libguestfs handle, this call actually reads parts of the mounted "
11471 "filesystems during the call."
11472 msgstr ""
11473
11474 #. type: textblock
11475 #: ../src/guestfs-actions.pod:3144 ../fish/guestfish-actions.pod:2188
11476 msgid ""
11477 "This returns an empty list if the inspection code was not able to determine "
11478 "the list of applications."
11479 msgstr ""
11480
11481 #. type: textblock
11482 #: ../src/guestfs-actions.pod:3147 ../fish/guestfish-actions.pod:2191
11483 msgid "The application structure contains the following fields:"
11484 msgstr ""
11485
11486 #. type: =item
11487 #: ../src/guestfs-actions.pod:3151 ../fish/guestfish-actions.pod:2195
11488 msgid "C<app_name>"
11489 msgstr "C<app_name>"
11490
11491 #. type: textblock
11492 #: ../src/guestfs-actions.pod:3153 ../fish/guestfish-actions.pod:2197
11493 msgid ""
11494 "The name of the application.  For Red Hat-derived and Debian-derived Linux "
11495 "guests, this is the package name."
11496 msgstr ""
11497
11498 #. type: =item
11499 #: ../src/guestfs-actions.pod:3156 ../fish/guestfish-actions.pod:2200
11500 msgid "C<app_display_name>"
11501 msgstr "C<app_display_name>"
11502
11503 #. type: textblock
11504 #: ../src/guestfs-actions.pod:3158 ../fish/guestfish-actions.pod:2202
11505 msgid ""
11506 "The display name of the application, sometimes localized to the install "
11507 "language of the guest operating system."
11508 msgstr ""
11509
11510 #. type: textblock
11511 #: ../src/guestfs-actions.pod:3161 ../fish/guestfish-actions.pod:2205
11512 msgid ""
11513 "If unavailable this is returned as an empty string C<\"\">.  Callers needing "
11514 "to display something can use C<app_name> instead."
11515 msgstr ""
11516
11517 #. type: =item
11518 #: ../src/guestfs-actions.pod:3164 ../fish/guestfish-actions.pod:2208
11519 msgid "C<app_epoch>"
11520 msgstr "C<app_epoch>"
11521
11522 #. type: textblock
11523 #: ../src/guestfs-actions.pod:3166 ../fish/guestfish-actions.pod:2210
11524 msgid ""
11525 "For package managers which use epochs, this contains the epoch of the "
11526 "package (an integer).  If unavailable, this is returned as C<0>."
11527 msgstr ""
11528
11529 #. type: =item
11530 #: ../src/guestfs-actions.pod:3169 ../fish/guestfish-actions.pod:2213
11531 msgid "C<app_version>"
11532 msgstr "C<app_version>"
11533
11534 #. type: textblock
11535 #: ../src/guestfs-actions.pod:3171 ../fish/guestfish-actions.pod:2215
11536 msgid ""
11537 "The version string of the application or package.  If unavailable this is "
11538 "returned as an empty string C<\"\">."
11539 msgstr ""
11540
11541 #. type: =item
11542 #: ../src/guestfs-actions.pod:3174 ../fish/guestfish-actions.pod:2218
11543 msgid "C<app_release>"
11544 msgstr "C<app_release>"
11545
11546 #. type: textblock
11547 #: ../src/guestfs-actions.pod:3176 ../fish/guestfish-actions.pod:2220
11548 msgid ""
11549 "The release string of the application or package, for package managers that "
11550 "use this.  If unavailable this is returned as an empty string C<\"\">."
11551 msgstr ""
11552
11553 #. type: =item
11554 #: ../src/guestfs-actions.pod:3180 ../fish/guestfish-actions.pod:2224
11555 msgid "C<app_install_path>"
11556 msgstr "C<app_install_path>"
11557
11558 #. type: textblock
11559 #: ../src/guestfs-actions.pod:3182 ../fish/guestfish-actions.pod:2226
11560 msgid ""
11561 "The installation path of the application (on operating systems such as "
11562 "Windows which use installation paths).  This path is in the format used by "
11563 "the guest operating system, it is not a libguestfs path."
11564 msgstr ""
11565
11566 #. type: textblock
11567 #: ../src/guestfs-actions.pod:3187 ../fish/guestfish-actions.pod:2231
11568 msgid "If unavailable this is returned as an empty string C<\"\">."
11569 msgstr ""
11570
11571 #. type: =item
11572 #: ../src/guestfs-actions.pod:3189 ../fish/guestfish-actions.pod:2233
11573 msgid "C<app_trans_path>"
11574 msgstr "C<app_trans_path>"
11575
11576 #. type: textblock
11577 #: ../src/guestfs-actions.pod:3191 ../fish/guestfish-actions.pod:2235
11578 msgid ""
11579 "The install path translated into a libguestfs path.  If unavailable this is "
11580 "returned as an empty string C<\"\">."
11581 msgstr ""
11582
11583 #. type: =item
11584 #: ../src/guestfs-actions.pod:3194 ../fish/guestfish-actions.pod:2238
11585 msgid "C<app_publisher>"
11586 msgstr "C<app_publisher>"
11587
11588 #. type: textblock
11589 #: ../src/guestfs-actions.pod:3196 ../fish/guestfish-actions.pod:2240
11590 msgid ""
11591 "The name of the publisher of the application, for package managers that use "
11592 "this.  If unavailable this is returned as an empty string C<\"\">."
11593 msgstr ""
11594
11595 #. type: =item
11596 #: ../src/guestfs-actions.pod:3200 ../fish/guestfish-actions.pod:2244
11597 msgid "C<app_url>"
11598 msgstr "C<app_url>"
11599
11600 #. type: textblock
11601 #: ../src/guestfs-actions.pod:3202 ../fish/guestfish-actions.pod:2246
11602 msgid ""
11603 "The URL (eg. upstream URL) of the application.  If unavailable this is "
11604 "returned as an empty string C<\"\">."
11605 msgstr ""
11606
11607 #. type: =item
11608 #: ../src/guestfs-actions.pod:3205 ../fish/guestfish-actions.pod:2249
11609 msgid "C<app_source_package>"
11610 msgstr ""
11611
11612 #. type: textblock
11613 #: ../src/guestfs-actions.pod:3207 ../fish/guestfish-actions.pod:2251
11614 msgid ""
11615 "For packaging systems which support this, the name of the source package.  "
11616 "If unavailable this is returned as an empty string C<\"\">."
11617 msgstr ""
11618
11619 #. type: =item
11620 #: ../src/guestfs-actions.pod:3210 ../fish/guestfish-actions.pod:2254
11621 msgid "C<app_summary>"
11622 msgstr ""
11623
11624 #. type: textblock
11625 #: ../src/guestfs-actions.pod:3212 ../fish/guestfish-actions.pod:2256
11626 msgid ""
11627 "A short (usually one line) description of the application or package.  If "
11628 "unavailable this is returned as an empty string C<\"\">."
11629 msgstr ""
11630
11631 #. type: =item
11632 #: ../src/guestfs-actions.pod:3215 ../fish/guestfish-actions.pod:2259
11633 msgid "C<app_description>"
11634 msgstr ""
11635
11636 #. type: textblock
11637 #: ../src/guestfs-actions.pod:3217 ../fish/guestfish-actions.pod:2261
11638 msgid ""
11639 "A longer description of the application or package.  If unavailable this is "
11640 "returned as an empty string C<\"\">."
11641 msgstr ""
11642
11643 #. type: textblock
11644 #: ../src/guestfs-actions.pod:3224
11645 msgid ""
11646 "This function returns a C<struct guestfs_application_list *>, or NULL if "
11647 "there was an error.  I<The caller must call C<guestfs_free_application_list> "
11648 "after use>."
11649 msgstr ""
11650
11651 #. type: textblock
11652 #: ../src/guestfs-actions.pod:3228
11653 msgid "(Added in 1.7.8)"
11654 msgstr ""
11655
11656 #. type: =head2
11657 #: ../src/guestfs-actions.pod:3230
11658 msgid "guestfs_inspect_os"
11659 msgstr ""
11660
11661 #. type: verbatim
11662 #: ../src/guestfs-actions.pod:3232
11663 #, no-wrap
11664 msgid ""
11665 " char **\n"
11666 " guestfs_inspect_os (guestfs_h *g);\n"
11667 "\n"
11668 msgstr ""
11669
11670 #. type: textblock
11671 #: ../src/guestfs-actions.pod:3235 ../fish/guestfish-actions.pod:2272
11672 msgid ""
11673 "This function uses other libguestfs functions and certain heuristics to "
11674 "inspect the disk(s) (usually disks belonging to a virtual machine), looking "
11675 "for operating systems."
11676 msgstr ""
11677
11678 #. type: textblock
11679 #: ../src/guestfs-actions.pod:3239 ../fish/guestfish-actions.pod:2276
11680 msgid "The list returned is empty if no operating systems were found."
11681 msgstr ""
11682
11683 #. type: textblock
11684 #: ../src/guestfs-actions.pod:3241 ../fish/guestfish-actions.pod:2278
11685 msgid ""
11686 "If one operating system was found, then this returns a list with a single "
11687 "element, which is the name of the root filesystem of this operating system.  "
11688 "It is also possible for this function to return a list containing more than "
11689 "one element, indicating a dual-boot or multi-boot virtual machine, with each "
11690 "element being the root filesystem of one of the operating systems."
11691 msgstr ""
11692
11693 #. type: textblock
11694 #: ../src/guestfs-actions.pod:3248
11695 msgid ""
11696 "You can pass the root string(s) returned to other C<guestfs_inspect_get_*> "
11697 "functions in order to query further information about each operating system, "
11698 "such as the name and version."
11699 msgstr ""
11700
11701 #. type: textblock
11702 #: ../src/guestfs-actions.pod:3253
11703 msgid ""
11704 "This function uses other libguestfs features such as C<guestfs_mount_ro> and "
11705 "C<guestfs_umount_all> in order to mount and unmount filesystems and look at "
11706 "the contents.  This should be called with no disks currently mounted.  The "
11707 "function may also use Augeas, so any existing Augeas handle will be closed."
11708 msgstr ""
11709
11710 #. type: textblock
11711 #: ../src/guestfs-actions.pod:3259 ../fish/guestfish-actions.pod:2296
11712 msgid ""
11713 "This function cannot decrypt encrypted disks.  The caller must do that first "
11714 "(supplying the necessary keys) if the disk is encrypted."
11715 msgstr ""
11716
11717 #. type: textblock
11718 #: ../src/guestfs-actions.pod:3265 ../src/guestfs-actions.pod:3555
11719 #: ../src/guestfs-actions.pod:3617
11720 msgid "See also C<guestfs_list_filesystems>."
11721 msgstr ""
11722
11723 #. type: =head2
11724 #: ../src/guestfs-actions.pod:3273
11725 msgid "guestfs_is_blockdev"
11726 msgstr ""
11727
11728 #. type: verbatim
11729 #: ../src/guestfs-actions.pod:3275
11730 #, no-wrap
11731 msgid ""
11732 " int\n"
11733 " guestfs_is_blockdev (guestfs_h *g,\n"
11734 "                      const char *path);\n"
11735 "\n"
11736 msgstr ""
11737
11738 #. type: textblock
11739 #: ../src/guestfs-actions.pod:3279 ../fish/guestfish-actions.pod:2308
11740 msgid ""
11741 "This returns C<true> if and only if there is a block device with the given "
11742 "C<path> name."
11743 msgstr ""
11744
11745 #. type: textblock
11746 #: ../src/guestfs-actions.pod:3282 ../src/guestfs-actions.pod:3311
11747 #: ../src/guestfs-actions.pod:3341 ../src/guestfs-actions.pod:3356
11748 #: ../src/guestfs-actions.pod:3372 ../src/guestfs-actions.pod:3428
11749 #: ../src/guestfs-actions.pod:3443
11750 msgid "See also C<guestfs_stat>."
11751 msgstr ""
11752
11753 #. type: textblock
11754 #: ../src/guestfs-actions.pod:3286 ../src/guestfs-actions.pod:3315
11755 #: ../src/guestfs-actions.pod:3360 ../src/guestfs-actions.pod:3432
11756 #: ../src/guestfs-actions.pod:3447
11757 msgid "(Added in 1.5.10)"
11758 msgstr ""
11759
11760 #. type: =head2
11761 #: ../src/guestfs-actions.pod:3288
11762 msgid "guestfs_is_busy"
11763 msgstr ""
11764
11765 #. type: verbatim
11766 #: ../src/guestfs-actions.pod:3290
11767 #, no-wrap
11768 msgid ""
11769 " int\n"
11770 " guestfs_is_busy (guestfs_h *g);\n"
11771 "\n"
11772 msgstr ""
11773
11774 #. type: textblock
11775 #: ../src/guestfs-actions.pod:3293 ../fish/guestfish-actions.pod:2317
11776 msgid ""
11777 "This returns true iff this handle is busy processing a command (in the "
11778 "C<BUSY> state)."
11779 msgstr ""
11780
11781 #. type: =head2
11782 #: ../src/guestfs-actions.pod:3302
11783 msgid "guestfs_is_chardev"
11784 msgstr ""
11785
11786 #. type: verbatim
11787 #: ../src/guestfs-actions.pod:3304
11788 #, no-wrap
11789 msgid ""
11790 " int\n"
11791 " guestfs_is_chardev (guestfs_h *g,\n"
11792 "                     const char *path);\n"
11793 "\n"
11794 msgstr ""
11795
11796 #. type: textblock
11797 #: ../src/guestfs-actions.pod:3308 ../fish/guestfish-actions.pod:2326
11798 msgid ""
11799 "This returns C<true> if and only if there is a character device with the "
11800 "given C<path> name."
11801 msgstr ""
11802
11803 #. type: =head2
11804 #: ../src/guestfs-actions.pod:3317
11805 msgid "guestfs_is_config"
11806 msgstr ""
11807
11808 #. type: verbatim
11809 #: ../src/guestfs-actions.pod:3319
11810 #, no-wrap
11811 msgid ""
11812 " int\n"
11813 " guestfs_is_config (guestfs_h *g);\n"
11814 "\n"
11815 msgstr ""
11816
11817 #. type: textblock
11818 #: ../src/guestfs-actions.pod:3322 ../fish/guestfish-actions.pod:2335
11819 msgid ""
11820 "This returns true iff this handle is being configured (in the C<CONFIG> "
11821 "state)."
11822 msgstr ""
11823
11824 #. type: =head2
11825 #: ../src/guestfs-actions.pod:3331
11826 msgid "guestfs_is_dir"
11827 msgstr ""
11828
11829 #. type: verbatim
11830 #: ../src/guestfs-actions.pod:3333
11831 #, no-wrap
11832 msgid ""
11833 " int\n"
11834 " guestfs_is_dir (guestfs_h *g,\n"
11835 "                 const char *path);\n"
11836 "\n"
11837 msgstr ""
11838
11839 #. type: textblock
11840 #: ../src/guestfs-actions.pod:3337 ../fish/guestfish-actions.pod:2344
11841 msgid ""
11842 "This returns C<true> if and only if there is a directory with the given "
11843 "C<path> name.  Note that it returns false for other objects like files."
11844 msgstr ""
11845
11846 #. type: =head2
11847 #: ../src/guestfs-actions.pod:3347
11848 msgid "guestfs_is_fifo"
11849 msgstr ""
11850
11851 #. type: verbatim
11852 #: ../src/guestfs-actions.pod:3349
11853 #, no-wrap
11854 msgid ""
11855 " int\n"
11856 " guestfs_is_fifo (guestfs_h *g,\n"
11857 "                  const char *path);\n"
11858 "\n"
11859 msgstr ""
11860
11861 #. type: textblock
11862 #: ../src/guestfs-actions.pod:3353 ../fish/guestfish-actions.pod:2354
11863 msgid ""
11864 "This returns C<true> if and only if there is a FIFO (named pipe)  with the "
11865 "given C<path> name."
11866 msgstr ""
11867
11868 #. type: =head2
11869 #: ../src/guestfs-actions.pod:3362
11870 msgid "guestfs_is_file"
11871 msgstr ""
11872
11873 #. type: verbatim
11874 #: ../src/guestfs-actions.pod:3364
11875 #, no-wrap
11876 msgid ""
11877 " int\n"
11878 " guestfs_is_file (guestfs_h *g,\n"
11879 "                  const char *path);\n"
11880 "\n"
11881 msgstr ""
11882
11883 #. type: textblock
11884 #: ../src/guestfs-actions.pod:3368 ../fish/guestfish-actions.pod:2363
11885 msgid ""
11886 "This returns C<true> if and only if there is a regular file with the given "
11887 "C<path> name.  Note that it returns false for other objects like directories."
11888 msgstr ""
11889
11890 #. type: =head2
11891 #: ../src/guestfs-actions.pod:3378
11892 msgid "guestfs_is_launching"
11893 msgstr ""
11894
11895 #. type: verbatim
11896 #: ../src/guestfs-actions.pod:3380
11897 #, no-wrap
11898 msgid ""
11899 " int\n"
11900 " guestfs_is_launching (guestfs_h *g);\n"
11901 "\n"
11902 msgstr ""
11903
11904 #. type: textblock
11905 #: ../src/guestfs-actions.pod:3383 ../fish/guestfish-actions.pod:2373
11906 msgid ""
11907 "This returns true iff this handle is launching the subprocess (in the "
11908 "C<LAUNCHING> state)."
11909 msgstr ""
11910
11911 #. type: =head2
11912 #: ../src/guestfs-actions.pod:3392
11913 msgid "guestfs_is_lv"
11914 msgstr ""
11915
11916 #. type: verbatim
11917 #: ../src/guestfs-actions.pod:3394
11918 #, no-wrap
11919 msgid ""
11920 " int\n"
11921 " guestfs_is_lv (guestfs_h *g,\n"
11922 "                const char *device);\n"
11923 "\n"
11924 msgstr ""
11925
11926 #. type: textblock
11927 #: ../src/guestfs-actions.pod:3398 ../fish/guestfish-actions.pod:2382
11928 msgid ""
11929 "This command tests whether C<device> is a logical volume, and returns true "
11930 "iff this is the case."
11931 msgstr ""
11932
11933 #. type: =head2
11934 #: ../src/guestfs-actions.pod:3405
11935 msgid "guestfs_is_ready"
11936 msgstr ""
11937
11938 #. type: verbatim
11939 #: ../src/guestfs-actions.pod:3407
11940 #, no-wrap
11941 msgid ""
11942 " int\n"
11943 " guestfs_is_ready (guestfs_h *g);\n"
11944 "\n"
11945 msgstr ""
11946
11947 #. type: textblock
11948 #: ../src/guestfs-actions.pod:3410 ../fish/guestfish-actions.pod:2389
11949 msgid ""
11950 "This returns true iff this handle is ready to accept commands (in the "
11951 "C<READY> state)."
11952 msgstr ""
11953
11954 #. type: =head2
11955 #: ../src/guestfs-actions.pod:3419
11956 msgid "guestfs_is_socket"
11957 msgstr ""
11958
11959 #. type: verbatim
11960 #: ../src/guestfs-actions.pod:3421
11961 #, no-wrap
11962 msgid ""
11963 " int\n"
11964 " guestfs_is_socket (guestfs_h *g,\n"
11965 "                    const char *path);\n"
11966 "\n"
11967 msgstr ""
11968
11969 #. type: textblock
11970 #: ../src/guestfs-actions.pod:3425 ../fish/guestfish-actions.pod:2398
11971 msgid ""
11972 "This returns C<true> if and only if there is a Unix domain socket with the "
11973 "given C<path> name."
11974 msgstr ""
11975
11976 #. type: =head2
11977 #: ../src/guestfs-actions.pod:3434
11978 msgid "guestfs_is_symlink"
11979 msgstr ""
11980
11981 #. type: verbatim
11982 #: ../src/guestfs-actions.pod:3436
11983 #, no-wrap
11984 msgid ""
11985 " int\n"
11986 " guestfs_is_symlink (guestfs_h *g,\n"
11987 "                     const char *path);\n"
11988 "\n"
11989 msgstr ""
11990
11991 #. type: textblock
11992 #: ../src/guestfs-actions.pod:3440 ../fish/guestfish-actions.pod:2407
11993 msgid ""
11994 "This returns C<true> if and only if there is a symbolic link with the given "
11995 "C<path> name."
11996 msgstr ""
11997
11998 #. type: =head2
11999 #: ../src/guestfs-actions.pod:3449
12000 msgid "guestfs_kill_subprocess"
12001 msgstr ""
12002
12003 #. type: verbatim
12004 #: ../src/guestfs-actions.pod:3451
12005 #, no-wrap
12006 msgid ""
12007 " int\n"
12008 " guestfs_kill_subprocess (guestfs_h *g);\n"
12009 "\n"
12010 msgstr ""
12011
12012 #. type: textblock
12013 #: ../src/guestfs-actions.pod:3454 ../fish/guestfish-actions.pod:2416
12014 msgid "This kills the qemu subprocess.  You should never need to call this."
12015 msgstr ""
12016
12017 #. type: =head2
12018 #: ../src/guestfs-actions.pod:3460
12019 msgid "guestfs_launch"
12020 msgstr ""
12021
12022 #. type: verbatim
12023 #: ../src/guestfs-actions.pod:3462
12024 #, no-wrap
12025 msgid ""
12026 " int\n"
12027 " guestfs_launch (guestfs_h *g);\n"
12028 "\n"
12029 msgstr ""
12030
12031 #. type: textblock
12032 #: ../src/guestfs-actions.pod:3465 ../fish/guestfish-actions.pod:2424
12033 msgid ""
12034 "Internally libguestfs is implemented by running a virtual machine using "
12035 "L<qemu(1)>."
12036 msgstr ""
12037
12038 #. type: textblock
12039 #: ../src/guestfs-actions.pod:3468 ../fish/guestfish-actions.pod:2427
12040 msgid ""
12041 "You should call this after configuring the handle (eg. adding drives) but "
12042 "before performing any actions."
12043 msgstr ""
12044
12045 #. type: =head2
12046 #: ../src/guestfs-actions.pod:3480
12047 msgid "guestfs_lchown"
12048 msgstr ""
12049
12050 #. type: verbatim
12051 #: ../src/guestfs-actions.pod:3482
12052 #, no-wrap
12053 msgid ""
12054 " int\n"
12055 " guestfs_lchown (guestfs_h *g,\n"
12056 "                 int owner,\n"
12057 "                 int group,\n"
12058 "                 const char *path);\n"
12059 "\n"
12060 msgstr ""
12061
12062 #. type: textblock
12063 #: ../src/guestfs-actions.pod:3488
12064 msgid ""
12065 "Change the file owner to C<owner> and group to C<group>.  This is like "
12066 "C<guestfs_chown> but if C<path> is a symlink then the link itself is "
12067 "changed, not the target."
12068 msgstr ""
12069
12070 #. type: =head2
12071 #: ../src/guestfs-actions.pod:3500
12072 msgid "guestfs_lgetxattr"
12073 msgstr ""
12074
12075 #. type: verbatim
12076 #: ../src/guestfs-actions.pod:3502
12077 #, no-wrap
12078 msgid ""
12079 " char *\n"
12080 " guestfs_lgetxattr (guestfs_h *g,\n"
12081 "                    const char *path,\n"
12082 "                    const char *name,\n"
12083 "                    size_t *size_r);\n"
12084 "\n"
12085 msgstr ""
12086
12087 #. type: textblock
12088 #: ../src/guestfs-actions.pod:3508 ../fish/guestfish-actions.pod:2446
12089 msgid ""
12090 "Get a single extended attribute from file C<path> named C<name>.  If C<path> "
12091 "is a symlink, then this call returns an extended attribute from the symlink."
12092 msgstr ""
12093
12094 #. type: textblock
12095 #: ../src/guestfs-actions.pod:3522
12096 msgid "See also: C<guestfs_lgetxattrs>, C<guestfs_getxattr>, L<attr(5)>."
12097 msgstr ""
12098
12099 #. type: =head2
12100 #: ../src/guestfs-actions.pod:3530
12101 msgid "guestfs_lgetxattrs"
12102 msgstr ""
12103
12104 #. type: verbatim
12105 #: ../src/guestfs-actions.pod:3532
12106 #, no-wrap
12107 msgid ""
12108 " struct guestfs_xattr_list *\n"
12109 " guestfs_lgetxattrs (guestfs_h *g,\n"
12110 "                     const char *path);\n"
12111 "\n"
12112 msgstr ""
12113
12114 #. type: textblock
12115 #: ../src/guestfs-actions.pod:3536
12116 msgid ""
12117 "This is the same as C<guestfs_getxattrs>, but if C<path> is a symbolic link, "
12118 "then it returns the extended attributes of the link itself."
12119 msgstr ""
12120
12121 #. type: =head2
12122 #: ../src/guestfs-actions.pod:3546
12123 msgid "guestfs_list_devices"
12124 msgstr ""
12125
12126 #. type: verbatim
12127 #: ../src/guestfs-actions.pod:3548
12128 #, no-wrap
12129 msgid ""
12130 " char **\n"
12131 " guestfs_list_devices (guestfs_h *g);\n"
12132 "\n"
12133 msgstr ""
12134
12135 #. type: textblock
12136 #: ../src/guestfs-actions.pod:3551 ../fish/guestfish-actions.pod:2474
12137 msgid "List all the block devices."
12138 msgstr ""
12139
12140 #. type: textblock
12141 #: ../src/guestfs-actions.pod:3553 ../fish/guestfish-actions.pod:2476
12142 msgid "The full block device names are returned, eg. C</dev/sda>."
12143 msgstr ""
12144
12145 #. type: =head2
12146 #: ../src/guestfs-actions.pod:3563
12147 msgid "guestfs_list_filesystems"
12148 msgstr ""
12149
12150 #. type: verbatim
12151 #: ../src/guestfs-actions.pod:3565
12152 #, no-wrap
12153 msgid ""
12154 " char **\n"
12155 " guestfs_list_filesystems (guestfs_h *g);\n"
12156 "\n"
12157 msgstr ""
12158
12159 #. type: textblock
12160 #: ../src/guestfs-actions.pod:3568 ../fish/guestfish-actions.pod:2484
12161 msgid ""
12162 "This inspection command looks for filesystems on partitions, block devices "
12163 "and logical volumes, returning a list of devices containing filesystems and "
12164 "their type."
12165 msgstr ""
12166
12167 #. type: textblock
12168 #: ../src/guestfs-actions.pod:3572 ../fish/guestfish-actions.pod:2488
12169 msgid ""
12170 "The return value is a hash, where the keys are the devices containing "
12171 "filesystems, and the values are the filesystem types.  For example:"
12172 msgstr ""
12173
12174 #. type: verbatim
12175 #: ../src/guestfs-actions.pod:3576 ../fish/guestfish-actions.pod:2492
12176 #, no-wrap
12177 msgid ""
12178 " \"/dev/sda1\" => \"ntfs\"\n"
12179 " \"/dev/sda2\" => \"ext2\"\n"
12180 " \"/dev/vg_guest/lv_root\" => \"ext4\"\n"
12181 " \"/dev/vg_guest/lv_swap\" => \"swap\"\n"
12182 "\n"
12183 msgstr ""
12184
12185 #. type: textblock
12186 #: ../src/guestfs-actions.pod:3581 ../fish/guestfish-actions.pod:2497
12187 msgid ""
12188 "The value can have the special value \"unknown\", meaning the content of the "
12189 "device is undetermined or empty.  \"swap\" means a Linux swap partition."
12190 msgstr ""
12191
12192 #. type: textblock
12193 #: ../src/guestfs-actions.pod:3585
12194 msgid ""
12195 "This command runs other libguestfs commands, which might include "
12196 "C<guestfs_mount> and C<guestfs_umount>, and therefore you should use this "
12197 "soon after launch and only when nothing is mounted."
12198 msgstr ""
12199
12200 #. type: textblock
12201 #: ../src/guestfs-actions.pod:3589
12202 msgid ""
12203 "Not all of the filesystems returned will be mountable.  In particular, swap "
12204 "partitions are returned in the list.  Also this command does not check that "
12205 "each filesystem found is valid and mountable, and some filesystems might be "
12206 "mountable but require special options.  Filesystems may not all belong to a "
12207 "single logical operating system (use C<guestfs_inspect_os> to look for OSes)."
12208 msgstr ""
12209
12210 #. type: textblock
12211 #: ../src/guestfs-actions.pod:3603 ../src/guestfs-actions.pod:5224
12212 msgid "(Added in 1.5.15)"
12213 msgstr ""
12214
12215 #. type: =head2
12216 #: ../src/guestfs-actions.pod:3605
12217 msgid "guestfs_list_partitions"
12218 msgstr ""
12219
12220 #. type: verbatim
12221 #: ../src/guestfs-actions.pod:3607
12222 #, no-wrap
12223 msgid ""
12224 " char **\n"
12225 " guestfs_list_partitions (guestfs_h *g);\n"
12226 "\n"
12227 msgstr ""
12228
12229 #. type: textblock
12230 #: ../src/guestfs-actions.pod:3610 ../fish/guestfish-actions.pod:2517
12231 msgid "List all the partitions detected on all block devices."
12232 msgstr ""
12233
12234 #. type: textblock
12235 #: ../src/guestfs-actions.pod:3612 ../fish/guestfish-actions.pod:2519
12236 msgid "The full partition device names are returned, eg. C</dev/sda1>"
12237 msgstr ""
12238
12239 #. type: textblock
12240 #: ../src/guestfs-actions.pod:3614
12241 msgid ""
12242 "This does not return logical volumes.  For that you will need to call "
12243 "C<guestfs_lvs>."
12244 msgstr ""
12245
12246 #. type: =head2
12247 #: ../src/guestfs-actions.pod:3625
12248 msgid "guestfs_ll"
12249 msgstr ""
12250
12251 #. type: verbatim
12252 #: ../src/guestfs-actions.pod:3627
12253 #, no-wrap
12254 msgid ""
12255 " char *\n"
12256 " guestfs_ll (guestfs_h *g,\n"
12257 "             const char *directory);\n"
12258 "\n"
12259 msgstr ""
12260
12261 #. type: textblock
12262 #: ../src/guestfs-actions.pod:3631 ../fish/guestfish-actions.pod:2530
12263 msgid ""
12264 "List the files in C<directory> (relative to the root directory, there is no "
12265 "cwd) in the format of 'ls -la'."
12266 msgstr ""
12267
12268 #. type: textblock
12269 #: ../src/guestfs-actions.pod:3634 ../fish/guestfish-actions.pod:2533
12270 msgid ""
12271 "This command is mostly useful for interactive sessions.  It is I<not> "
12272 "intended that you try to parse the output string."
12273 msgstr ""
12274
12275 #. type: =head2
12276 #: ../src/guestfs-actions.pod:3642
12277 msgid "guestfs_ln"
12278 msgstr ""
12279
12280 #. type: verbatim
12281 #: ../src/guestfs-actions.pod:3644
12282 #, no-wrap
12283 msgid ""
12284 " int\n"
12285 " guestfs_ln (guestfs_h *g,\n"
12286 "             const char *target,\n"
12287 "             const char *linkname);\n"
12288 "\n"
12289 msgstr ""
12290
12291 #. type: textblock
12292 #: ../src/guestfs-actions.pod:3649 ../fish/guestfish-actions.pod:2540
12293 msgid "This command creates a hard link using the C<ln> command."
12294 msgstr ""
12295
12296 #. type: =head2
12297 #: ../src/guestfs-actions.pod:3655
12298 msgid "guestfs_ln_f"
12299 msgstr ""
12300
12301 #. type: verbatim
12302 #: ../src/guestfs-actions.pod:3657
12303 #, no-wrap
12304 msgid ""
12305 " int\n"
12306 " guestfs_ln_f (guestfs_h *g,\n"
12307 "               const char *target,\n"
12308 "               const char *linkname);\n"
12309 "\n"
12310 msgstr ""
12311
12312 #. type: textblock
12313 #: ../src/guestfs-actions.pod:3662 ../fish/guestfish-actions.pod:2546
12314 msgid ""
12315 "This command creates a hard link using the C<ln -f> command.  The I<-f> "
12316 "option removes the link (C<linkname>) if it exists already."
12317 msgstr ""
12318
12319 #. type: =head2
12320 #: ../src/guestfs-actions.pod:3669
12321 msgid "guestfs_ln_s"
12322 msgstr ""
12323
12324 #. type: verbatim
12325 #: ../src/guestfs-actions.pod:3671
12326 #, no-wrap
12327 msgid ""
12328 " int\n"
12329 " guestfs_ln_s (guestfs_h *g,\n"
12330 "               const char *target,\n"
12331 "               const char *linkname);\n"
12332 "\n"
12333 msgstr ""
12334
12335 #. type: textblock
12336 #: ../src/guestfs-actions.pod:3676 ../fish/guestfish-actions.pod:2553
12337 msgid "This command creates a symbolic link using the C<ln -s> command."
12338 msgstr ""
12339
12340 #. type: =head2
12341 #: ../src/guestfs-actions.pod:3682
12342 msgid "guestfs_ln_sf"
12343 msgstr ""
12344
12345 #. type: verbatim
12346 #: ../src/guestfs-actions.pod:3684
12347 #, no-wrap
12348 msgid ""
12349 " int\n"
12350 " guestfs_ln_sf (guestfs_h *g,\n"
12351 "                const char *target,\n"
12352 "                const char *linkname);\n"
12353 "\n"
12354 msgstr ""
12355
12356 #. type: textblock
12357 #: ../src/guestfs-actions.pod:3689 ../fish/guestfish-actions.pod:2559
12358 msgid ""
12359 "This command creates a symbolic link using the C<ln -sf> command, The I<-f> "
12360 "option removes the link (C<linkname>) if it exists already."
12361 msgstr ""
12362
12363 #. type: =head2
12364 #: ../src/guestfs-actions.pod:3696
12365 msgid "guestfs_lremovexattr"
12366 msgstr ""
12367
12368 #. type: verbatim
12369 #: ../src/guestfs-actions.pod:3698
12370 #, no-wrap
12371 msgid ""
12372 " int\n"
12373 " guestfs_lremovexattr (guestfs_h *g,\n"
12374 "                       const char *xattr,\n"
12375 "                       const char *path);\n"
12376 "\n"
12377 msgstr ""
12378
12379 #. type: textblock
12380 #: ../src/guestfs-actions.pod:3703
12381 msgid ""
12382 "This is the same as C<guestfs_removexattr>, but if C<path> is a symbolic "
12383 "link, then it removes an extended attribute of the link itself."
12384 msgstr ""
12385
12386 #. type: =head2
12387 #: ../src/guestfs-actions.pod:3711
12388 msgid "guestfs_ls"
12389 msgstr ""
12390
12391 #. type: verbatim
12392 #: ../src/guestfs-actions.pod:3713
12393 #, no-wrap
12394 msgid ""
12395 " char **\n"
12396 " guestfs_ls (guestfs_h *g,\n"
12397 "             const char *directory);\n"
12398 "\n"
12399 msgstr ""
12400
12401 #. type: textblock
12402 #: ../src/guestfs-actions.pod:3717 ../fish/guestfish-actions.pod:2574
12403 msgid ""
12404 "List the files in C<directory> (relative to the root directory, there is no "
12405 "cwd).  The '.' and '..' entries are not returned, but hidden files are shown."
12406 msgstr ""
12407
12408 #. type: textblock
12409 #: ../src/guestfs-actions.pod:3721
12410 msgid ""
12411 "This command is mostly useful for interactive sessions.  Programs should "
12412 "probably use C<guestfs_readdir> instead."
12413 msgstr ""
12414
12415 #. type: =head2
12416 #: ../src/guestfs-actions.pod:3730
12417 msgid "guestfs_lsetxattr"
12418 msgstr ""
12419
12420 #. type: verbatim
12421 #: ../src/guestfs-actions.pod:3732
12422 #, no-wrap
12423 msgid ""
12424 " int\n"
12425 " guestfs_lsetxattr (guestfs_h *g,\n"
12426 "                    const char *xattr,\n"
12427 "                    const char *val,\n"
12428 "                    int vallen,\n"
12429 "                    const char *path);\n"
12430 "\n"
12431 msgstr ""
12432
12433 #. type: textblock
12434 #: ../src/guestfs-actions.pod:3739
12435 msgid ""
12436 "This is the same as C<guestfs_setxattr>, but if C<path> is a symbolic link, "
12437 "then it sets an extended attribute of the link itself."
12438 msgstr ""
12439
12440 #. type: =head2
12441 #: ../src/guestfs-actions.pod:3747
12442 msgid "guestfs_lstat"
12443 msgstr ""
12444
12445 #. type: verbatim
12446 #: ../src/guestfs-actions.pod:3749
12447 #, no-wrap
12448 msgid ""
12449 " struct guestfs_stat *\n"
12450 " guestfs_lstat (guestfs_h *g,\n"
12451 "                const char *path);\n"
12452 "\n"
12453 msgstr ""
12454
12455 #. type: textblock
12456 #: ../src/guestfs-actions.pod:3753 ../src/guestfs-actions.pod:6355
12457 #: ../fish/guestfish-actions.pod:2593 ../fish/guestfish-actions.pod:4306
12458 msgid "Returns file information for the given C<path>."
12459 msgstr ""
12460
12461 #. type: textblock
12462 #: ../src/guestfs-actions.pod:3755
12463 msgid ""
12464 "This is the same as C<guestfs_stat> except that if C<path> is a symbolic "
12465 "link, then the link is stat-ed, not the file it refers to."
12466 msgstr ""
12467
12468 #. type: textblock
12469 #: ../src/guestfs-actions.pod:3759 ../fish/guestfish-actions.pod:2599
12470 msgid "This is the same as the C<lstat(2)> system call."
12471 msgstr ""
12472
12473 #. type: textblock
12474 #: ../src/guestfs-actions.pod:3761 ../src/guestfs-actions.pod:6359
12475 msgid ""
12476 "This function returns a C<struct guestfs_stat *>, or NULL if there was an "
12477 "error.  I<The caller must call C<guestfs_free_stat> after use>."
12478 msgstr ""
12479
12480 #. type: textblock
12481 #: ../src/guestfs-actions.pod:3765 ../src/guestfs-actions.pod:6363
12482 #: ../src/guestfs-actions.pod:6381 ../src/guestfs-actions.pod:6762
12483 msgid "(Added in 0.9.2)"
12484 msgstr ""
12485
12486 #. type: =head2
12487 #: ../src/guestfs-actions.pod:3767
12488 msgid "guestfs_lstatlist"
12489 msgstr ""
12490
12491 #. type: verbatim
12492 #: ../src/guestfs-actions.pod:3769
12493 #, no-wrap
12494 msgid ""
12495 " struct guestfs_stat_list *\n"
12496 " guestfs_lstatlist (guestfs_h *g,\n"
12497 "                    const char *path,\n"
12498 "                    char *const *names);\n"
12499 "\n"
12500 msgstr ""
12501
12502 #. type: textblock
12503 #: ../src/guestfs-actions.pod:3774
12504 msgid ""
12505 "This call allows you to perform the C<guestfs_lstat> operation on multiple "
12506 "files, where all files are in the directory C<path>.  C<names> is the list "
12507 "of files from this directory."
12508 msgstr ""
12509
12510 #. type: textblock
12511 #: ../src/guestfs-actions.pod:3778 ../fish/guestfish-actions.pod:2609
12512 msgid ""
12513 "On return you get a list of stat structs, with a one-to-one correspondence "
12514 "to the C<names> list.  If any name did not exist or could not be lstat'd, "
12515 "then the C<ino> field of that structure is set to C<-1>."
12516 msgstr ""
12517
12518 #. type: textblock
12519 #: ../src/guestfs-actions.pod:3783
12520 msgid ""
12521 "This call is intended for programs that want to efficiently list a directory "
12522 "contents without making many round-trips.  See also C<guestfs_lxattrlist> "
12523 "for a similarly efficient call for getting extended attributes.  Very long "
12524 "directory listings might cause the protocol message size to be exceeded, "
12525 "causing this call to fail.  The caller must split up such requests into "
12526 "smaller groups of names."
12527 msgstr ""
12528
12529 #. type: textblock
12530 #: ../src/guestfs-actions.pod:3791
12531 msgid ""
12532 "This function returns a C<struct guestfs_stat_list *>, or NULL if there was "
12533 "an error.  I<The caller must call C<guestfs_free_stat_list> after use>."
12534 msgstr ""
12535
12536 #. type: =head2
12537 #: ../src/guestfs-actions.pod:3797
12538 msgid "guestfs_luks_add_key"
12539 msgstr ""
12540
12541 #. type: verbatim
12542 #: ../src/guestfs-actions.pod:3799
12543 #, no-wrap
12544 msgid ""
12545 " int\n"
12546 " guestfs_luks_add_key (guestfs_h *g,\n"
12547 "                       const char *device,\n"
12548 "                       const char *key,\n"
12549 "                       const char *newkey,\n"
12550 "                       int keyslot);\n"
12551 "\n"
12552 msgstr ""
12553
12554 #. type: textblock
12555 #: ../src/guestfs-actions.pod:3806 ../fish/guestfish-actions.pod:2626
12556 msgid ""
12557 "This command adds a new key on LUKS device C<device>.  C<key> is any "
12558 "existing key, and is used to access the device.  C<newkey> is the new key to "
12559 "add.  C<keyslot> is the key slot that will be replaced."
12560 msgstr ""
12561
12562 #. type: textblock
12563 #: ../src/guestfs-actions.pod:3811
12564 msgid ""
12565 "Note that if C<keyslot> already contains a key, then this command will "
12566 "fail.  You have to use C<guestfs_luks_kill_slot> first to remove that key."
12567 msgstr ""
12568
12569 #. type: textblock
12570 #: ../src/guestfs-actions.pod:3817 ../src/guestfs-actions.pod:3857
12571 #: ../src/guestfs-actions.pod:3880 ../src/guestfs-actions.pod:3900
12572 #: ../src/guestfs-actions.pod:3932 ../src/guestfs-actions.pod:3951
12573 msgid ""
12574 "This function takes a key or passphrase parameter which could contain "
12575 "sensitive material.  Read the section L</KEYS AND PASSPHRASES> for more "
12576 "information."
12577 msgstr ""
12578
12579 #. type: textblock
12580 #: ../src/guestfs-actions.pod:3821 ../src/guestfs-actions.pod:3861
12581 #: ../src/guestfs-actions.pod:3884 ../src/guestfs-actions.pod:3904
12582 msgid "(Added in 1.5.2)"
12583 msgstr ""
12584
12585 #. type: =head2
12586 #: ../src/guestfs-actions.pod:3823
12587 msgid "guestfs_luks_close"
12588 msgstr ""
12589
12590 #. type: verbatim
12591 #: ../src/guestfs-actions.pod:3825
12592 #, no-wrap
12593 msgid ""
12594 " int\n"
12595 " guestfs_luks_close (guestfs_h *g,\n"
12596 "                     const char *device);\n"
12597 "\n"
12598 msgstr ""
12599
12600 #. type: textblock
12601 #: ../src/guestfs-actions.pod:3829
12602 msgid ""
12603 "This closes a LUKS device that was created earlier by C<guestfs_luks_open> "
12604 "or C<guestfs_luks_open_ro>.  The C<device> parameter must be the name of the "
12605 "LUKS mapping device (ie. C</dev/mapper/mapname>) and I<not> the name of the "
12606 "underlying block device."
12607 msgstr ""
12608
12609 #. type: textblock
12610 #: ../src/guestfs-actions.pod:3837 ../src/guestfs-actions.pod:3936
12611 #: ../src/guestfs-actions.pod:3955 ../src/guestfs-actions.pod:4005
12612 #: ../src/guestfs-actions.pod:4053
12613 msgid "(Added in 1.5.1)"
12614 msgstr ""
12615
12616 #. type: =head2
12617 #: ../src/guestfs-actions.pod:3839
12618 msgid "guestfs_luks_format"
12619 msgstr ""
12620
12621 #. type: verbatim
12622 #: ../src/guestfs-actions.pod:3841
12623 #, no-wrap
12624 msgid ""
12625 " int\n"
12626 " guestfs_luks_format (guestfs_h *g,\n"
12627 "                      const char *device,\n"
12628 "                      const char *key,\n"
12629 "                      int keyslot);\n"
12630 "\n"
12631 msgstr ""
12632
12633 #. type: textblock
12634 #: ../src/guestfs-actions.pod:3847 ../fish/guestfish-actions.pod:2652
12635 msgid ""
12636 "This command erases existing data on C<device> and formats the device as a "
12637 "LUKS encrypted device.  C<key> is the initial key, which is added to key "
12638 "slot C<slot>.  (LUKS supports 8 key slots, numbered 0-7)."
12639 msgstr ""
12640
12641 #. type: textblock
12642 #: ../src/guestfs-actions.pod:3854 ../src/guestfs-actions.pod:3877
12643 #: ../src/guestfs-actions.pod:4017 ../src/guestfs-actions.pod:4975
12644 #: ../src/guestfs-actions.pod:5755 ../src/guestfs-actions.pod:6162
12645 #: ../src/guestfs-actions.pod:6192 ../src/guestfs-actions.pod:6225
12646 #: ../src/guestfs-actions.pod:7406 ../fish/guestfish-actions.pod:2660
12647 #: ../fish/guestfish-actions.pod:2673 ../fish/guestfish-actions.pod:2757
12648 #: ../fish/guestfish-actions.pod:3347 ../fish/guestfish-actions.pod:3867
12649 #: ../fish/guestfish-actions.pod:4177 ../fish/guestfish-actions.pod:4200
12650 #: ../fish/guestfish-actions.pod:4222 ../fish/guestfish-actions.pod:4951
12651 msgid ""
12652 "B<This command is dangerous.  Without careful use you can easily destroy all "
12653 "your data>."
12654 msgstr ""
12655
12656 #. type: =head2
12657 #: ../src/guestfs-actions.pod:3863
12658 msgid "guestfs_luks_format_cipher"
12659 msgstr ""
12660
12661 #. type: verbatim
12662 #: ../src/guestfs-actions.pod:3865
12663 #, no-wrap
12664 msgid ""
12665 " int\n"
12666 " guestfs_luks_format_cipher (guestfs_h *g,\n"
12667 "                             const char *device,\n"
12668 "                             const char *key,\n"
12669 "                             int keyslot,\n"
12670 "                             const char *cipher);\n"
12671 "\n"
12672 msgstr ""
12673
12674 #. type: textblock
12675 #: ../src/guestfs-actions.pod:3872
12676 msgid ""
12677 "This command is the same as C<guestfs_luks_format> but it also allows you to "
12678 "set the C<cipher> used."
12679 msgstr ""
12680
12681 #. type: =head2
12682 #: ../src/guestfs-actions.pod:3886
12683 msgid "guestfs_luks_kill_slot"
12684 msgstr ""
12685
12686 #. type: verbatim
12687 #: ../src/guestfs-actions.pod:3888
12688 #, no-wrap
12689 msgid ""
12690 " int\n"
12691 " guestfs_luks_kill_slot (guestfs_h *g,\n"
12692 "                         const char *device,\n"
12693 "                         const char *key,\n"
12694 "                         int keyslot);\n"
12695 "\n"
12696 msgstr ""
12697
12698 #. type: textblock
12699 #: ../src/guestfs-actions.pod:3894 ../fish/guestfish-actions.pod:2680
12700 msgid ""
12701 "This command deletes the key in key slot C<keyslot> from the encrypted LUKS "
12702 "device C<device>.  C<key> must be one of the I<other> keys."
12703 msgstr ""
12704
12705 #. type: =head2
12706 #: ../src/guestfs-actions.pod:3906
12707 msgid "guestfs_luks_open"
12708 msgstr ""
12709
12710 #. type: verbatim
12711 #: ../src/guestfs-actions.pod:3908
12712 #, no-wrap
12713 msgid ""
12714 " int\n"
12715 " guestfs_luks_open (guestfs_h *g,\n"
12716 "                    const char *device,\n"
12717 "                    const char *key,\n"
12718 "                    const char *mapname);\n"
12719 "\n"
12720 msgstr ""
12721
12722 #. type: textblock
12723 #: ../src/guestfs-actions.pod:3914 ../fish/guestfish-actions.pod:2691
12724 msgid ""
12725 "This command opens a block device which has been encrypted according to the "
12726 "Linux Unified Key Setup (LUKS) standard."
12727 msgstr ""
12728
12729 #. type: textblock
12730 #: ../src/guestfs-actions.pod:3917 ../fish/guestfish-actions.pod:2694
12731 msgid "C<device> is the encrypted block device or partition."
12732 msgstr ""
12733
12734 #. type: textblock
12735 #: ../src/guestfs-actions.pod:3919 ../fish/guestfish-actions.pod:2696
12736 msgid ""
12737 "The caller must supply one of the keys associated with the LUKS block "
12738 "device, in the C<key> parameter."
12739 msgstr ""
12740
12741 #. type: textblock
12742 #: ../src/guestfs-actions.pod:3922 ../fish/guestfish-actions.pod:2699
12743 msgid ""
12744 "This creates a new block device called C</dev/mapper/mapname>.  Reads and "
12745 "writes to this block device are decrypted from and encrypted to the "
12746 "underlying C<device> respectively."
12747 msgstr ""
12748
12749 #. type: textblock
12750 #: ../src/guestfs-actions.pod:3926
12751 msgid ""
12752 "If this block device contains LVM volume groups, then calling "
12753 "C<guestfs_vgscan> followed by C<guestfs_vg_activate_all> will make them "
12754 "visible."
12755 msgstr ""
12756
12757 #. type: =head2
12758 #: ../src/guestfs-actions.pod:3938
12759 msgid "guestfs_luks_open_ro"
12760 msgstr ""
12761
12762 #. type: verbatim
12763 #: ../src/guestfs-actions.pod:3940
12764 #, no-wrap
12765 msgid ""
12766 " int\n"
12767 " guestfs_luks_open_ro (guestfs_h *g,\n"
12768 "                       const char *device,\n"
12769 "                       const char *key,\n"
12770 "                       const char *mapname);\n"
12771 "\n"
12772 msgstr ""
12773
12774 #. type: textblock
12775 #: ../src/guestfs-actions.pod:3946
12776 msgid ""
12777 "This is the same as C<guestfs_luks_open> except that a read-only mapping is "
12778 "created."
12779 msgstr ""
12780
12781 #. type: =head2
12782 #: ../src/guestfs-actions.pod:3957
12783 msgid "guestfs_lvcreate"
12784 msgstr ""
12785
12786 #. type: verbatim
12787 #: ../src/guestfs-actions.pod:3959
12788 #, no-wrap
12789 msgid ""
12790 " int\n"
12791 " guestfs_lvcreate (guestfs_h *g,\n"
12792 "                   const char *logvol,\n"
12793 "                   const char *volgroup,\n"
12794 "                   int mbytes);\n"
12795 "\n"
12796 msgstr ""
12797
12798 #. type: textblock
12799 #: ../src/guestfs-actions.pod:3965 ../fish/guestfish-actions.pod:2724
12800 msgid ""
12801 "This creates an LVM logical volume called C<logvol> on the volume group "
12802 "C<volgroup>, with C<size> megabytes."
12803 msgstr ""
12804
12805 #. type: =head2
12806 #: ../src/guestfs-actions.pod:3972
12807 msgid "guestfs_lvm_canonical_lv_name"
12808 msgstr ""
12809
12810 #. type: verbatim
12811 #: ../src/guestfs-actions.pod:3974
12812 #, no-wrap
12813 msgid ""
12814 " char *\n"
12815 " guestfs_lvm_canonical_lv_name (guestfs_h *g,\n"
12816 "                                const char *lvname);\n"
12817 "\n"
12818 msgstr ""
12819
12820 #. type: textblock
12821 #: ../src/guestfs-actions.pod:3978 ../fish/guestfish-actions.pod:2731
12822 msgid ""
12823 "This converts alternative naming schemes for LVs that you might find to the "
12824 "canonical name.  For example, C</dev/mapper/VG-LV> is converted to C</dev/VG/"
12825 "LV>."
12826 msgstr ""
12827
12828 #. type: textblock
12829 #: ../src/guestfs-actions.pod:3982 ../fish/guestfish-actions.pod:2735
12830 msgid ""
12831 "This command returns an error if the C<lvname> parameter does not refer to a "
12832 "logical volume."
12833 msgstr ""
12834
12835 #. type: textblock
12836 #: ../src/guestfs-actions.pod:3985
12837 msgid "See also C<guestfs_is_lv>."
12838 msgstr ""
12839
12840 #. type: textblock
12841 #: ../src/guestfs-actions.pod:3990
12842 msgid "(Added in 1.5.24)"
12843 msgstr ""
12844
12845 #. type: =head2
12846 #: ../src/guestfs-actions.pod:3992
12847 msgid "guestfs_lvm_clear_filter"
12848 msgstr ""
12849
12850 #. type: verbatim
12851 #: ../src/guestfs-actions.pod:3994
12852 #, no-wrap
12853 msgid ""
12854 " int\n"
12855 " guestfs_lvm_clear_filter (guestfs_h *g);\n"
12856 "\n"
12857 msgstr ""
12858
12859 #. type: textblock
12860 #: ../src/guestfs-actions.pod:3997
12861 msgid ""
12862 "This undoes the effect of C<guestfs_lvm_set_filter>.  LVM will be able to "
12863 "see every block device."
12864 msgstr ""
12865
12866 #. type: textblock
12867 #: ../src/guestfs-actions.pod:4000 ../src/guestfs-actions.pod:4042
12868 #: ../fish/guestfish-actions.pod:2747 ../fish/guestfish-actions.pod:2778
12869 msgid ""
12870 "This command also clears the LVM cache and performs a volume group scan."
12871 msgstr ""
12872
12873 #. type: =head2
12874 #: ../src/guestfs-actions.pod:4007
12875 msgid "guestfs_lvm_remove_all"
12876 msgstr ""
12877
12878 #. type: verbatim
12879 #: ../src/guestfs-actions.pod:4009
12880 #, no-wrap
12881 msgid ""
12882 " int\n"
12883 " guestfs_lvm_remove_all (guestfs_h *g);\n"
12884 "\n"
12885 msgstr ""
12886
12887 #. type: textblock
12888 #: ../src/guestfs-actions.pod:4012 ../fish/guestfish-actions.pod:2754
12889 msgid ""
12890 "This command removes all LVM logical volumes, volume groups and physical "
12891 "volumes."
12892 msgstr ""
12893
12894 #. type: =head2
12895 #: ../src/guestfs-actions.pod:4022
12896 msgid "guestfs_lvm_set_filter"
12897 msgstr ""
12898
12899 #. type: verbatim
12900 #: ../src/guestfs-actions.pod:4024
12901 #, no-wrap
12902 msgid ""
12903 " int\n"
12904 " guestfs_lvm_set_filter (guestfs_h *g,\n"
12905 "                         char *const *devices);\n"
12906 "\n"
12907 msgstr ""
12908
12909 #. type: textblock
12910 #: ../src/guestfs-actions.pod:4028 ../fish/guestfish-actions.pod:2764
12911 msgid ""
12912 "This sets the LVM device filter so that LVM will only be able to \"see\" the "
12913 "block devices in the list C<devices>, and will ignore all other attached "
12914 "block devices."
12915 msgstr ""
12916
12917 #. type: textblock
12918 #: ../src/guestfs-actions.pod:4032 ../fish/guestfish-actions.pod:2768
12919 msgid ""
12920 "Where disk image(s) contain duplicate PVs or VGs, this command is useful to "
12921 "get LVM to ignore the duplicates, otherwise LVM can get confused.  Note also "
12922 "there are two types of duplication possible: either cloned PVs/VGs which "
12923 "have identical UUIDs; or VGs that are not cloned but just happen to have the "
12924 "same name.  In normal operation you cannot create this situation, but you "
12925 "can do it outside LVM, eg.  by cloning disk images or by bit twiddling "
12926 "inside the LVM metadata."
12927 msgstr ""
12928
12929 #. type: textblock
12930 #: ../src/guestfs-actions.pod:4045 ../fish/guestfish-actions.pod:2781
12931 msgid "You can filter whole block devices or individual partitions."
12932 msgstr ""
12933
12934 #. type: textblock
12935 #: ../src/guestfs-actions.pod:4047 ../fish/guestfish-actions.pod:2783
12936 msgid ""
12937 "You cannot use this if any VG is currently in use (eg.  contains a mounted "
12938 "filesystem), even if you are not filtering out that VG."
12939 msgstr ""
12940
12941 #. type: =head2
12942 #: ../src/guestfs-actions.pod:4055
12943 msgid "guestfs_lvremove"
12944 msgstr ""
12945
12946 #. type: verbatim
12947 #: ../src/guestfs-actions.pod:4057
12948 #, no-wrap
12949 msgid ""
12950 " int\n"
12951 " guestfs_lvremove (guestfs_h *g,\n"
12952 "                   const char *device);\n"
12953 "\n"
12954 msgstr ""
12955
12956 #. type: textblock
12957 #: ../src/guestfs-actions.pod:4061 ../fish/guestfish-actions.pod:2791
12958 msgid ""
12959 "Remove an LVM logical volume C<device>, where C<device> is the path to the "
12960 "LV, such as C</dev/VG/LV>."
12961 msgstr ""
12962
12963 #. type: textblock
12964 #: ../src/guestfs-actions.pod:4064 ../fish/guestfish-actions.pod:2794
12965 msgid ""
12966 "You can also remove all LVs in a volume group by specifying the VG name, C</"
12967 "dev/VG>."
12968 msgstr ""
12969
12970 #. type: textblock
12971 #: ../src/guestfs-actions.pod:4069 ../src/guestfs-actions.pod:5321
12972 #: ../src/guestfs-actions.pod:7138
12973 msgid "(Added in 1.0.13)"
12974 msgstr ""
12975
12976 #. type: =head2
12977 #: ../src/guestfs-actions.pod:4071
12978 msgid "guestfs_lvrename"
12979 msgstr ""
12980
12981 #. type: verbatim
12982 #: ../src/guestfs-actions.pod:4073
12983 #, no-wrap
12984 msgid ""
12985 " int\n"
12986 " guestfs_lvrename (guestfs_h *g,\n"
12987 "                   const char *logvol,\n"
12988 "                   const char *newlogvol);\n"
12989 "\n"
12990 msgstr ""
12991
12992 #. type: textblock
12993 #: ../src/guestfs-actions.pod:4078 ../fish/guestfish-actions.pod:2801
12994 msgid "Rename a logical volume C<logvol> with the new name C<newlogvol>."
12995 msgstr ""
12996
12997 #. type: textblock
12998 #: ../src/guestfs-actions.pod:4082 ../src/guestfs-actions.pod:7151
12999 msgid "(Added in 1.0.83)"
13000 msgstr ""
13001
13002 #. type: =head2
13003 #: ../src/guestfs-actions.pod:4084
13004 msgid "guestfs_lvresize"
13005 msgstr ""
13006
13007 #. type: verbatim
13008 #: ../src/guestfs-actions.pod:4086
13009 #, no-wrap
13010 msgid ""
13011 " int\n"
13012 " guestfs_lvresize (guestfs_h *g,\n"
13013 "                   const char *device,\n"
13014 "                   int mbytes);\n"
13015 "\n"
13016 msgstr ""
13017
13018 #. type: textblock
13019 #: ../src/guestfs-actions.pod:4091 ../fish/guestfish-actions.pod:2807
13020 msgid ""
13021 "This resizes (expands or shrinks) an existing LVM logical volume to "
13022 "C<mbytes>.  When reducing, data in the reduced part is lost."
13023 msgstr ""
13024
13025 #. type: =head2
13026 #: ../src/guestfs-actions.pod:4099
13027 msgid "guestfs_lvresize_free"
13028 msgstr ""
13029
13030 #. type: verbatim
13031 #: ../src/guestfs-actions.pod:4101
13032 #, no-wrap
13033 msgid ""
13034 " int\n"
13035 " guestfs_lvresize_free (guestfs_h *g,\n"
13036 "                        const char *lv,\n"
13037 "                        int percent);\n"
13038 "\n"
13039 msgstr ""
13040
13041 #. type: textblock
13042 #: ../src/guestfs-actions.pod:4106 ../fish/guestfish-actions.pod:2815
13043 msgid ""
13044 "This expands an existing logical volume C<lv> so that it fills C<pc>% of the "
13045 "remaining free space in the volume group.  Commonly you would call this with "
13046 "pc = 100 which expands the logical volume as much as possible, using all "
13047 "remaining free space in the volume group."
13048 msgstr ""
13049
13050 #. type: textblock
13051 #: ../src/guestfs-actions.pod:4114
13052 msgid "(Added in 1.3.3)"
13053 msgstr ""
13054
13055 #. type: =head2
13056 #: ../src/guestfs-actions.pod:4116
13057 msgid "guestfs_lvs"
13058 msgstr ""
13059
13060 #. type: verbatim
13061 #: ../src/guestfs-actions.pod:4118
13062 #, no-wrap
13063 msgid ""
13064 " char **\n"
13065 " guestfs_lvs (guestfs_h *g);\n"
13066 "\n"
13067 msgstr ""
13068
13069 #. type: textblock
13070 #: ../src/guestfs-actions.pod:4121 ../fish/guestfish-actions.pod:2825
13071 msgid ""
13072 "List all the logical volumes detected.  This is the equivalent of the L<lvs"
13073 "(8)> command."
13074 msgstr ""
13075
13076 #. type: textblock
13077 #: ../src/guestfs-actions.pod:4124 ../fish/guestfish-actions.pod:2828
13078 msgid ""
13079 "This returns a list of the logical volume device names (eg. C</dev/"
13080 "VolGroup00/LogVol00>)."
13081 msgstr ""
13082
13083 #. type: textblock
13084 #: ../src/guestfs-actions.pod:4127
13085 msgid "See also C<guestfs_lvs_full>, C<guestfs_list_filesystems>."
13086 msgstr ""
13087
13088 #. type: =head2
13089 #: ../src/guestfs-actions.pod:4135
13090 msgid "guestfs_lvs_full"
13091 msgstr ""
13092
13093 #. type: verbatim
13094 #: ../src/guestfs-actions.pod:4137
13095 #, no-wrap
13096 msgid ""
13097 " struct guestfs_lvm_lv_list *\n"
13098 " guestfs_lvs_full (guestfs_h *g);\n"
13099 "\n"
13100 msgstr ""
13101
13102 #. type: textblock
13103 #: ../src/guestfs-actions.pod:4140 ../fish/guestfish-actions.pod:2837
13104 msgid ""
13105 "List all the logical volumes detected.  This is the equivalent of the L<lvs"
13106 "(8)> command.  The \"full\" version includes all fields."
13107 msgstr ""
13108
13109 #. type: textblock
13110 #: ../src/guestfs-actions.pod:4143
13111 msgid ""
13112 "This function returns a C<struct guestfs_lvm_lv_list *>, or NULL if there "
13113 "was an error.  I<The caller must call C<guestfs_free_lvm_lv_list> after use>."
13114 msgstr ""
13115
13116 #. type: =head2
13117 #: ../src/guestfs-actions.pod:4149
13118 msgid "guestfs_lvuuid"
13119 msgstr ""
13120
13121 #. type: verbatim
13122 #: ../src/guestfs-actions.pod:4151
13123 #, no-wrap
13124 msgid ""
13125 " char *\n"
13126 " guestfs_lvuuid (guestfs_h *g,\n"
13127 "                 const char *device);\n"
13128 "\n"
13129 msgstr ""
13130
13131 #. type: textblock
13132 #: ../src/guestfs-actions.pod:4155 ../fish/guestfish-actions.pod:2844
13133 msgid "This command returns the UUID of the LVM LV C<device>."
13134 msgstr ""
13135
13136 #. type: =head2
13137 #: ../src/guestfs-actions.pod:4162
13138 msgid "guestfs_lxattrlist"
13139 msgstr ""
13140
13141 #. type: verbatim
13142 #: ../src/guestfs-actions.pod:4164
13143 #, no-wrap
13144 msgid ""
13145 " struct guestfs_xattr_list *\n"
13146 " guestfs_lxattrlist (guestfs_h *g,\n"
13147 "                     const char *path,\n"
13148 "                     char *const *names);\n"
13149 "\n"
13150 msgstr ""
13151
13152 #. type: textblock
13153 #: ../src/guestfs-actions.pod:4169 ../fish/guestfish-actions.pod:2850
13154 msgid ""
13155 "This call allows you to get the extended attributes of multiple files, where "
13156 "all files are in the directory C<path>.  C<names> is the list of files from "
13157 "this directory."
13158 msgstr ""
13159
13160 #. type: textblock
13161 #: ../src/guestfs-actions.pod:4173 ../fish/guestfish-actions.pod:2854
13162 msgid ""
13163 "On return you get a flat list of xattr structs which must be interpreted "
13164 "sequentially.  The first xattr struct always has a zero-length C<attrname>.  "
13165 "C<attrval> in this struct is zero-length to indicate there was an error "
13166 "doing C<lgetxattr> for this file, I<or> is a C string which is a decimal "
13167 "number (the number of following attributes for this file, which could be C<"
13168 "\"0\">).  Then after the first xattr struct are the zero or more attributes "
13169 "for the first named file.  This repeats for the second and subsequent files."
13170 msgstr ""
13171
13172 #. type: textblock
13173 #: ../src/guestfs-actions.pod:4183
13174 msgid ""
13175 "This call is intended for programs that want to efficiently list a directory "
13176 "contents without making many round-trips.  See also C<guestfs_lstatlist> for "
13177 "a similarly efficient call for getting standard stats.  Very long directory "
13178 "listings might cause the protocol message size to be exceeded, causing this "
13179 "call to fail.  The caller must split up such requests into smaller groups of "
13180 "names."
13181 msgstr ""
13182
13183 #. type: =head2
13184 #: ../src/guestfs-actions.pod:4197
13185 msgid "guestfs_mkdir"
13186 msgstr ""
13187
13188 #. type: verbatim
13189 #: ../src/guestfs-actions.pod:4199
13190 #, no-wrap
13191 msgid ""
13192 " int\n"
13193 " guestfs_mkdir (guestfs_h *g,\n"
13194 "                const char *path);\n"
13195 "\n"
13196 msgstr ""
13197
13198 #. type: textblock
13199 #: ../src/guestfs-actions.pod:4203 ../fish/guestfish-actions.pod:2876
13200 msgid "Create a directory named C<path>."
13201 msgstr ""
13202
13203 #. type: =head2
13204 #: ../src/guestfs-actions.pod:4209
13205 msgid "guestfs_mkdir_mode"
13206 msgstr ""
13207
13208 #. type: verbatim
13209 #: ../src/guestfs-actions.pod:4211
13210 #, no-wrap
13211 msgid ""
13212 " int\n"
13213 " guestfs_mkdir_mode (guestfs_h *g,\n"
13214 "                     const char *path,\n"
13215 "                     int mode);\n"
13216 "\n"
13217 msgstr ""
13218
13219 #. type: textblock
13220 #: ../src/guestfs-actions.pod:4216 ../fish/guestfish-actions.pod:2882
13221 msgid ""
13222 "This command creates a directory, setting the initial permissions of the "
13223 "directory to C<mode>."
13224 msgstr ""
13225
13226 #. type: textblock
13227 #: ../src/guestfs-actions.pod:4219 ../fish/guestfish-actions.pod:2885
13228 msgid ""
13229 "For common Linux filesystems, the actual mode which is set will be C<mode & "
13230 "~umask & 01777>.  Non-native-Linux filesystems may interpret the mode in "
13231 "other ways."
13232 msgstr ""
13233
13234 #. type: textblock
13235 #: ../src/guestfs-actions.pod:4223
13236 msgid "See also C<guestfs_mkdir>, C<guestfs_umask>"
13237 msgstr ""
13238
13239 #. type: =head2
13240 #: ../src/guestfs-actions.pod:4229
13241 msgid "guestfs_mkdir_p"
13242 msgstr ""
13243
13244 #. type: verbatim
13245 #: ../src/guestfs-actions.pod:4231
13246 #, no-wrap
13247 msgid ""
13248 " int\n"
13249 " guestfs_mkdir_p (guestfs_h *g,\n"
13250 "                  const char *path);\n"
13251 "\n"
13252 msgstr ""
13253
13254 #. type: textblock
13255 #: ../src/guestfs-actions.pod:4235 ../fish/guestfish-actions.pod:2895
13256 msgid ""
13257 "Create a directory named C<path>, creating any parent directories as "
13258 "necessary.  This is like the C<mkdir -p> shell command."
13259 msgstr ""
13260
13261 #. type: =head2
13262 #: ../src/guestfs-actions.pod:4242
13263 msgid "guestfs_mkdtemp"
13264 msgstr ""
13265
13266 #. type: verbatim
13267 #: ../src/guestfs-actions.pod:4244
13268 #, no-wrap
13269 msgid ""
13270 " char *\n"
13271 " guestfs_mkdtemp (guestfs_h *g,\n"
13272 "                  const char *template);\n"
13273 "\n"
13274 msgstr ""
13275
13276 #. type: textblock
13277 #: ../src/guestfs-actions.pod:4248 ../fish/guestfish-actions.pod:2902
13278 msgid ""
13279 "This command creates a temporary directory.  The C<template> parameter "
13280 "should be a full pathname for the temporary directory name with the final "
13281 "six characters being \"XXXXXX\"."
13282 msgstr ""
13283
13284 #. type: textblock
13285 #: ../src/guestfs-actions.pod:4253 ../fish/guestfish-actions.pod:2907
13286 msgid ""
13287 "For example: \"/tmp/myprogXXXXXX\" or \"/Temp/myprogXXXXXX\", the second one "
13288 "being suitable for Windows filesystems."
13289 msgstr ""
13290
13291 #. type: textblock
13292 #: ../src/guestfs-actions.pod:4256 ../fish/guestfish-actions.pod:2910
13293 msgid "The name of the temporary directory that was created is returned."
13294 msgstr ""
13295
13296 #. type: textblock
13297 #: ../src/guestfs-actions.pod:4259 ../fish/guestfish-actions.pod:2913
13298 msgid "The temporary directory is created with mode 0700 and is owned by root."
13299 msgstr ""
13300
13301 #. type: textblock
13302 #: ../src/guestfs-actions.pod:4262 ../fish/guestfish-actions.pod:2916
13303 msgid ""
13304 "The caller is responsible for deleting the temporary directory and its "
13305 "contents after use."
13306 msgstr ""
13307
13308 #. type: textblock
13309 #: ../src/guestfs-actions.pod:4265 ../fish/guestfish-actions.pod:2919
13310 msgid "See also: L<mkdtemp(3)>"
13311 msgstr ""
13312
13313 #. type: =head2
13314 #: ../src/guestfs-actions.pod:4272
13315 msgid "guestfs_mke2fs_J"
13316 msgstr ""
13317
13318 #. type: verbatim
13319 #: ../src/guestfs-actions.pod:4274
13320 #, no-wrap
13321 msgid ""
13322 " int\n"
13323 " guestfs_mke2fs_J (guestfs_h *g,\n"
13324 "                   const char *fstype,\n"
13325 "                   int blocksize,\n"
13326 "                   const char *device,\n"
13327 "                   const char *journal);\n"
13328 "\n"
13329 msgstr ""
13330
13331 #. type: textblock
13332 #: ../src/guestfs-actions.pod:4281 ../fish/guestfish-actions.pod:2925
13333 msgid ""
13334 "This creates an ext2/3/4 filesystem on C<device> with an external journal on "
13335 "C<journal>.  It is equivalent to the command:"
13336 msgstr ""
13337
13338 #. type: verbatim
13339 #: ../src/guestfs-actions.pod:4285 ../fish/guestfish-actions.pod:2929
13340 #, no-wrap
13341 msgid ""
13342 " mke2fs -t fstype -b blocksize -J device=<journal> <device>\n"
13343 "\n"
13344 msgstr ""
13345
13346 #. type: textblock
13347 #: ../src/guestfs-actions.pod:4287
13348 msgid "See also C<guestfs_mke2journal>."
13349 msgstr ""
13350
13351 #. type: textblock
13352 #: ../src/guestfs-actions.pod:4291 ../src/guestfs-actions.pod:4309
13353 #: ../src/guestfs-actions.pod:4327 ../src/guestfs-actions.pod:4343
13354 #: ../src/guestfs-actions.pod:4357 ../src/guestfs-actions.pod:4371
13355 #: ../src/guestfs-actions.pod:4430 ../src/guestfs-actions.pod:4695
13356 msgid "(Added in 1.0.68)"
13357 msgstr ""
13358
13359 #. type: =head2
13360 #: ../src/guestfs-actions.pod:4293
13361 msgid "guestfs_mke2fs_JL"
13362 msgstr ""
13363
13364 #. type: verbatim
13365 #: ../src/guestfs-actions.pod:4295
13366 #, no-wrap
13367 msgid ""
13368 " int\n"
13369 " guestfs_mke2fs_JL (guestfs_h *g,\n"
13370 "                    const char *fstype,\n"
13371 "                    int blocksize,\n"
13372 "                    const char *device,\n"
13373 "                    const char *label);\n"
13374 "\n"
13375 msgstr ""
13376
13377 #. type: textblock
13378 #: ../src/guestfs-actions.pod:4302 ../fish/guestfish-actions.pod:2937
13379 msgid ""
13380 "This creates an ext2/3/4 filesystem on C<device> with an external journal on "
13381 "the journal labeled C<label>."
13382 msgstr ""
13383
13384 #. type: textblock
13385 #: ../src/guestfs-actions.pod:4305
13386 msgid "See also C<guestfs_mke2journal_L>."
13387 msgstr ""
13388
13389 #. type: =head2
13390 #: ../src/guestfs-actions.pod:4311
13391 msgid "guestfs_mke2fs_JU"
13392 msgstr ""
13393
13394 #. type: verbatim
13395 #: ../src/guestfs-actions.pod:4313
13396 #, no-wrap
13397 msgid ""
13398 " int\n"
13399 " guestfs_mke2fs_JU (guestfs_h *g,\n"
13400 "                    const char *fstype,\n"
13401 "                    int blocksize,\n"
13402 "                    const char *device,\n"
13403 "                    const char *uuid);\n"
13404 "\n"
13405 msgstr ""
13406
13407 #. type: textblock
13408 #: ../src/guestfs-actions.pod:4320 ../fish/guestfish-actions.pod:2946
13409 msgid ""
13410 "This creates an ext2/3/4 filesystem on C<device> with an external journal on "
13411 "the journal with UUID C<uuid>."
13412 msgstr ""
13413
13414 #. type: textblock
13415 #: ../src/guestfs-actions.pod:4323
13416 msgid "See also C<guestfs_mke2journal_U>."
13417 msgstr ""
13418
13419 #. type: =head2
13420 #: ../src/guestfs-actions.pod:4329
13421 msgid "guestfs_mke2journal"
13422 msgstr ""
13423
13424 #. type: verbatim
13425 #: ../src/guestfs-actions.pod:4331
13426 #, no-wrap
13427 msgid ""
13428 " int\n"
13429 " guestfs_mke2journal (guestfs_h *g,\n"
13430 "                      int blocksize,\n"
13431 "                      const char *device);\n"
13432 "\n"
13433 msgstr ""
13434
13435 #. type: textblock
13436 #: ../src/guestfs-actions.pod:4336 ../fish/guestfish-actions.pod:2955
13437 msgid ""
13438 "This creates an ext2 external journal on C<device>.  It is equivalent to the "
13439 "command:"
13440 msgstr ""
13441
13442 #. type: verbatim
13443 #: ../src/guestfs-actions.pod:4339 ../fish/guestfish-actions.pod:2958
13444 #, no-wrap
13445 msgid ""
13446 " mke2fs -O journal_dev -b blocksize device\n"
13447 "\n"
13448 msgstr ""
13449
13450 #. type: =head2
13451 #: ../src/guestfs-actions.pod:4345
13452 msgid "guestfs_mke2journal_L"
13453 msgstr ""
13454
13455 #. type: verbatim
13456 #: ../src/guestfs-actions.pod:4347
13457 #, no-wrap
13458 msgid ""
13459 " int\n"
13460 " guestfs_mke2journal_L (guestfs_h *g,\n"
13461 "                        int blocksize,\n"
13462 "                        const char *label,\n"
13463 "                        const char *device);\n"
13464 "\n"
13465 msgstr ""
13466
13467 #. type: textblock
13468 #: ../src/guestfs-actions.pod:4353 ../fish/guestfish-actions.pod:2964
13469 msgid "This creates an ext2 external journal on C<device> with label C<label>."
13470 msgstr ""
13471
13472 #. type: =head2
13473 #: ../src/guestfs-actions.pod:4359
13474 msgid "guestfs_mke2journal_U"
13475 msgstr ""
13476
13477 #. type: verbatim
13478 #: ../src/guestfs-actions.pod:4361
13479 #, no-wrap
13480 msgid ""
13481 " int\n"
13482 " guestfs_mke2journal_U (guestfs_h *g,\n"
13483 "                        int blocksize,\n"
13484 "                        const char *uuid,\n"
13485 "                        const char *device);\n"
13486 "\n"
13487 msgstr ""
13488
13489 #. type: textblock
13490 #: ../src/guestfs-actions.pod:4367 ../fish/guestfish-actions.pod:2970
13491 msgid "This creates an ext2 external journal on C<device> with UUID C<uuid>."
13492 msgstr ""
13493
13494 #. type: =head2
13495 #: ../src/guestfs-actions.pod:4373
13496 msgid "guestfs_mkfifo"
13497 msgstr ""
13498
13499 #. type: verbatim
13500 #: ../src/guestfs-actions.pod:4375
13501 #, no-wrap
13502 msgid ""
13503 " int\n"
13504 " guestfs_mkfifo (guestfs_h *g,\n"
13505 "                 int mode,\n"
13506 "                 const char *path);\n"
13507 "\n"
13508 msgstr ""
13509
13510 #. type: textblock
13511 #: ../src/guestfs-actions.pod:4380
13512 msgid ""
13513 "This call creates a FIFO (named pipe) called C<path> with mode C<mode>.  It "
13514 "is just a convenient wrapper around C<guestfs_mknod>."
13515 msgstr ""
13516
13517 #. type: =head2
13518 #: ../src/guestfs-actions.pod:4390
13519 msgid "guestfs_mkfs"
13520 msgstr ""
13521
13522 #. type: verbatim
13523 #: ../src/guestfs-actions.pod:4392
13524 #, no-wrap
13525 msgid ""
13526 " int\n"
13527 " guestfs_mkfs (guestfs_h *g,\n"
13528 "               const char *fstype,\n"
13529 "               const char *device);\n"
13530 "\n"
13531 msgstr ""
13532
13533 #. type: textblock
13534 #: ../src/guestfs-actions.pod:4397 ../fish/guestfish-actions.pod:2986
13535 msgid ""
13536 "This creates a filesystem on C<device> (usually a partition or LVM logical "
13537 "volume).  The filesystem type is C<fstype>, for example C<ext3>."
13538 msgstr ""
13539
13540 #. type: =head2
13541 #: ../src/guestfs-actions.pod:4405
13542 msgid "guestfs_mkfs_b"
13543 msgstr ""
13544
13545 #. type: verbatim
13546 #: ../src/guestfs-actions.pod:4407
13547 #, no-wrap
13548 msgid ""
13549 " int\n"
13550 " guestfs_mkfs_b (guestfs_h *g,\n"
13551 "                 const char *fstype,\n"
13552 "                 int blocksize,\n"
13553 "                 const char *device);\n"
13554 "\n"
13555 msgstr ""
13556
13557 #. type: textblock
13558 #: ../src/guestfs-actions.pod:4413
13559 msgid ""
13560 "This call is similar to C<guestfs_mkfs>, but it allows you to control the "
13561 "block size of the resulting filesystem.  Supported block sizes depend on the "
13562 "filesystem type, but typically they are C<1024>, C<2048> or C<4096> only."
13563 msgstr ""
13564
13565 #. type: textblock
13566 #: ../src/guestfs-actions.pod:4418 ../src/guestfs-actions.pod:4461
13567 #: ../fish/guestfish-actions.pod:2999 ../fish/guestfish-actions.pod:3026
13568 msgid ""
13569 "For VFAT and NTFS the C<blocksize> parameter is treated as the requested "
13570 "cluster size."
13571 msgstr ""
13572
13573 #. type: textblock
13574 #: ../src/guestfs-actions.pod:4423 ../fish/guestfish-actions.pod:3002
13575 msgid ""
13576 "This function is deprecated.  In new code, use the C<mkfs_opts> call instead."
13577 msgstr ""
13578
13579 #. type: =head2
13580 #: ../src/guestfs-actions.pod:4432
13581 msgid "guestfs_mkfs_opts"
13582 msgstr ""
13583
13584 #. type: verbatim
13585 #: ../src/guestfs-actions.pod:4434
13586 #, no-wrap
13587 msgid ""
13588 " int\n"
13589 " guestfs_mkfs_opts (guestfs_h *g,\n"
13590 "                    const char *fstype,\n"
13591 "                    const char *device,\n"
13592 "                    ...);\n"
13593 "\n"
13594 msgstr ""
13595
13596 #. type: verbatim
13597 #: ../src/guestfs-actions.pod:4445
13598 #, no-wrap
13599 msgid ""
13600 " GUESTFS_MKFS_OPTS_BLOCKSIZE, int blocksize,\n"
13601 " GUESTFS_MKFS_OPTS_FEATURES, const char *features,\n"
13602 "\n"
13603 msgstr ""
13604
13605 #. type: textblock
13606 #: ../src/guestfs-actions.pod:4448 ../fish/guestfish-actions.pod:3013
13607 msgid ""
13608 "This function creates a filesystem on C<device>.  The filesystem type is "
13609 "C<fstype>, for example C<ext3>."
13610 msgstr ""
13611
13612 #. type: =item
13613 #: ../src/guestfs-actions.pod:4455 ../fish/guestfish-actions.pod:3020
13614 msgid "C<blocksize>"
13615 msgstr ""
13616
13617 #. type: textblock
13618 #: ../src/guestfs-actions.pod:4457 ../fish/guestfish-actions.pod:3022
13619 msgid ""
13620 "The filesystem block size.  Supported block sizes depend on the filesystem "
13621 "type, but typically they are C<1024>, C<2048> or C<4096> for Linux ext2/3 "
13622 "filesystems."
13623 msgstr ""
13624
13625 #. type: textblock
13626 #: ../src/guestfs-actions.pod:4464 ../fish/guestfish-actions.pod:3029
13627 msgid "For UFS block sizes, please see L<mkfs.ufs(8)>."
13628 msgstr ""
13629
13630 #. type: =item
13631 #: ../src/guestfs-actions.pod:4466 ../fish/guestfish-actions.pod:3031
13632 msgid "C<features>"
13633 msgstr ""
13634
13635 #. type: textblock
13636 #: ../src/guestfs-actions.pod:4468 ../fish/guestfish-actions.pod:3033
13637 msgid "This passes the I<-O> parameter to the external mkfs program."
13638 msgstr ""
13639
13640 #. type: textblock
13641 #: ../src/guestfs-actions.pod:4470 ../fish/guestfish-actions.pod:3035
13642 msgid ""
13643 "For certain filesystem types, this allows extra filesystem features to be "
13644 "selected.  See L<mke2fs(8)> and L<mkfs.ufs(8)> for more details."
13645 msgstr ""
13646
13647 #. type: textblock
13648 #: ../src/guestfs-actions.pod:4474 ../fish/guestfish-actions.pod:3039
13649 msgid ""
13650 "You cannot use this optional parameter with the C<gfs> or C<gfs2> filesystem "
13651 "type."
13652 msgstr ""
13653
13654 #. type: textblock
13655 #: ../src/guestfs-actions.pod:4481
13656 msgid "(Added in 1.7.19)"
13657 msgstr ""
13658
13659 #. type: =head2
13660 #: ../src/guestfs-actions.pod:4483
13661 msgid "guestfs_mkfs_opts_va"
13662 msgstr ""
13663
13664 #. type: verbatim
13665 #: ../src/guestfs-actions.pod:4485
13666 #, no-wrap
13667 msgid ""
13668 " int\n"
13669 " guestfs_mkfs_opts_va (guestfs_h *g,\n"
13670 "                       const char *fstype,\n"
13671 "                       const char *device,\n"
13672 "                       va_list args);\n"
13673 "\n"
13674 msgstr ""
13675
13676 #. type: textblock
13677 #: ../src/guestfs-actions.pod:4491
13678 msgid "This is the \"va_list variant\" of L</guestfs_mkfs_opts>."
13679 msgstr ""
13680
13681 #. type: =head2
13682 #: ../src/guestfs-actions.pod:4495
13683 msgid "guestfs_mkfs_opts_argv"
13684 msgstr ""
13685
13686 #. type: verbatim
13687 #: ../src/guestfs-actions.pod:4497
13688 #, no-wrap
13689 msgid ""
13690 " int\n"
13691 " guestfs_mkfs_opts_argv (guestfs_h *g,\n"
13692 "                         const char *fstype,\n"
13693 "                         const char *device,\n"
13694 "                         const struct guestfs_mkfs_opts_argv *optargs);\n"
13695 "\n"
13696 msgstr ""
13697
13698 #. type: textblock
13699 #: ../src/guestfs-actions.pod:4503
13700 msgid "This is the \"argv variant\" of L</guestfs_mkfs_opts>."
13701 msgstr ""
13702
13703 #. type: =head2
13704 #: ../src/guestfs-actions.pod:4507
13705 msgid "guestfs_mkmountpoint"
13706 msgstr ""
13707
13708 #. type: verbatim
13709 #: ../src/guestfs-actions.pod:4509
13710 #, no-wrap
13711 msgid ""
13712 " int\n"
13713 " guestfs_mkmountpoint (guestfs_h *g,\n"
13714 "                       const char *exemptpath);\n"
13715 "\n"
13716 msgstr ""
13717
13718 #. type: textblock
13719 #: ../src/guestfs-actions.pod:4513
13720 msgid ""
13721 "C<guestfs_mkmountpoint> and C<guestfs_rmmountpoint> are specialized calls "
13722 "that can be used to create extra mountpoints before mounting the first "
13723 "filesystem."
13724 msgstr ""
13725
13726 #. type: textblock
13727 #: ../src/guestfs-actions.pod:4517 ../fish/guestfish-actions.pod:3054
13728 msgid ""
13729 "These calls are I<only> necessary in some very limited circumstances, mainly "
13730 "the case where you want to mount a mix of unrelated and/or read-only "
13731 "filesystems together."
13732 msgstr ""
13733
13734 #. type: textblock
13735 #: ../src/guestfs-actions.pod:4521 ../fish/guestfish-actions.pod:3058
13736 msgid ""
13737 "For example, live CDs often contain a \"Russian doll\" nest of filesystems, "
13738 "an ISO outer layer, with a squashfs image inside, with an ext2/3 image "
13739 "inside that.  You can unpack this as follows in guestfish:"
13740 msgstr ""
13741
13742 #. type: verbatim
13743 #: ../src/guestfs-actions.pod:4526 ../fish/guestfish-actions.pod:3063
13744 #, no-wrap
13745 msgid ""
13746 " add-ro Fedora-11-i686-Live.iso\n"
13747 " run\n"
13748 " mkmountpoint /cd\n"
13749 " mkmountpoint /sqsh\n"
13750 " mkmountpoint /ext3fs\n"
13751 " mount /dev/sda /cd\n"
13752 " mount-loop /cd/LiveOS/squashfs.img /sqsh\n"
13753 " mount-loop /sqsh/LiveOS/ext3fs.img /ext3fs\n"
13754 "\n"
13755 msgstr ""
13756
13757 #. type: textblock
13758 #: ../src/guestfs-actions.pod:4535 ../fish/guestfish-actions.pod:3072
13759 msgid "The inner filesystem is now unpacked under the /ext3fs mountpoint."
13760 msgstr ""
13761
13762 #. type: textblock
13763 #: ../src/guestfs-actions.pod:4537
13764 msgid ""
13765 "C<guestfs_mkmountpoint> is not compatible with C<guestfs_umount_all>.  You "
13766 "may get unexpected errors if you try to mix these calls.  It is safest to "
13767 "manually unmount filesystems and remove mountpoints after use."
13768 msgstr ""
13769
13770 #. type: textblock
13771 #: ../src/guestfs-actions.pod:4541
13772 msgid ""
13773 "C<guestfs_umount_all> unmounts filesystems by sorting the paths longest "
13774 "first, so for this to work for manual mountpoints, you must ensure that the "
13775 "innermost mountpoints have the longest pathnames, as in the example code "
13776 "above."
13777 msgstr ""
13778
13779 #. type: textblock
13780 #: ../src/guestfs-actions.pod:4546 ../fish/guestfish-actions.pod:3083
13781 msgid ""
13782 "For more details see L<https://bugzilla.redhat.com/show_bug.cgi?id=599503>"
13783 msgstr ""
13784
13785 #. type: textblock
13786 #: ../src/guestfs-actions.pod:4548
13787 msgid ""
13788 "Autosync [see C<guestfs_set_autosync>, this is set by default on handles] "
13789 "can cause C<guestfs_umount_all> to be called when the handle is closed which "
13790 "can also trigger these issues."
13791 msgstr ""
13792
13793 #. type: textblock
13794 #: ../src/guestfs-actions.pod:4554 ../src/guestfs-actions.pod:4820
13795 #: ../src/guestfs-actions.pod:5739
13796 msgid "(Added in 1.0.62)"
13797 msgstr ""
13798
13799 #. type: =head2
13800 #: ../src/guestfs-actions.pod:4556
13801 msgid "guestfs_mknod"
13802 msgstr ""
13803
13804 #. type: verbatim
13805 #: ../src/guestfs-actions.pod:4558
13806 #, no-wrap
13807 msgid ""
13808 " int\n"
13809 " guestfs_mknod (guestfs_h *g,\n"
13810 "                int mode,\n"
13811 "                int devmajor,\n"
13812 "                int devminor,\n"
13813 "                const char *path);\n"
13814 "\n"
13815 msgstr ""
13816
13817 #. type: textblock
13818 #: ../src/guestfs-actions.pod:4565 ../fish/guestfish-actions.pod:3093
13819 msgid ""
13820 "This call creates block or character special devices, or named pipes (FIFOs)."
13821 msgstr ""
13822
13823 #. type: textblock
13824 #: ../src/guestfs-actions.pod:4568 ../fish/guestfish-actions.pod:3096
13825 msgid ""
13826 "The C<mode> parameter should be the mode, using the standard constants.  "
13827 "C<devmajor> and C<devminor> are the device major and minor numbers, only "
13828 "used when creating block and character special devices."
13829 msgstr ""
13830
13831 #. type: textblock
13832 #: ../src/guestfs-actions.pod:4573
13833 msgid ""
13834 "Note that, just like L<mknod(2)>, the mode must be bitwise OR'd with "
13835 "S_IFBLK, S_IFCHR, S_IFIFO or S_IFSOCK (otherwise this call just creates a "
13836 "regular file).  These constants are available in the standard Linux header "
13837 "files, or you can use C<guestfs_mknod_b>, C<guestfs_mknod_c> or "
13838 "C<guestfs_mkfifo> which are wrappers around this command which bitwise OR in "
13839 "the appropriate constant for you."
13840 msgstr ""
13841
13842 #. type: =head2
13843 #: ../src/guestfs-actions.pod:4587
13844 msgid "guestfs_mknod_b"
13845 msgstr ""
13846
13847 #. type: verbatim
13848 #: ../src/guestfs-actions.pod:4589
13849 #, no-wrap
13850 msgid ""
13851 " int\n"
13852 " guestfs_mknod_b (guestfs_h *g,\n"
13853 "                  int mode,\n"
13854 "                  int devmajor,\n"
13855 "                  int devminor,\n"
13856 "                  const char *path);\n"
13857 "\n"
13858 msgstr ""
13859
13860 #. type: textblock
13861 #: ../src/guestfs-actions.pod:4596
13862 msgid ""
13863 "This call creates a block device node called C<path> with mode C<mode> and "
13864 "device major/minor C<devmajor> and C<devminor>.  It is just a convenient "
13865 "wrapper around C<guestfs_mknod>."
13866 msgstr ""
13867
13868 #. type: =head2
13869 #: ../src/guestfs-actions.pod:4606
13870 msgid "guestfs_mknod_c"
13871 msgstr ""
13872
13873 #. type: verbatim
13874 #: ../src/guestfs-actions.pod:4608
13875 #, no-wrap
13876 msgid ""
13877 " int\n"
13878 " guestfs_mknod_c (guestfs_h *g,\n"
13879 "                  int mode,\n"
13880 "                  int devmajor,\n"
13881 "                  int devminor,\n"
13882 "                  const char *path);\n"
13883 "\n"
13884 msgstr ""
13885
13886 #. type: textblock
13887 #: ../src/guestfs-actions.pod:4615
13888 msgid ""
13889 "This call creates a char device node called C<path> with mode C<mode> and "
13890 "device major/minor C<devmajor> and C<devminor>.  It is just a convenient "
13891 "wrapper around C<guestfs_mknod>."
13892 msgstr ""
13893
13894 #. type: =head2
13895 #: ../src/guestfs-actions.pod:4625
13896 msgid "guestfs_mkswap"
13897 msgstr ""
13898
13899 #. type: verbatim
13900 #: ../src/guestfs-actions.pod:4627
13901 #, no-wrap
13902 msgid ""
13903 " int\n"
13904 " guestfs_mkswap (guestfs_h *g,\n"
13905 "                 const char *device);\n"
13906 "\n"
13907 msgstr ""
13908
13909 #. type: textblock
13910 #: ../src/guestfs-actions.pod:4631 ../fish/guestfish-actions.pod:3135
13911 msgid "Create a swap partition on C<device>."
13912 msgstr ""
13913
13914 #. type: =head2
13915 #: ../src/guestfs-actions.pod:4637
13916 msgid "guestfs_mkswap_L"
13917 msgstr ""
13918
13919 #. type: verbatim
13920 #: ../src/guestfs-actions.pod:4639
13921 #, no-wrap
13922 msgid ""
13923 " int\n"
13924 " guestfs_mkswap_L (guestfs_h *g,\n"
13925 "                   const char *label,\n"
13926 "                   const char *device);\n"
13927 "\n"
13928 msgstr ""
13929
13930 #. type: textblock
13931 #: ../src/guestfs-actions.pod:4644 ../fish/guestfish-actions.pod:3141
13932 msgid "Create a swap partition on C<device> with label C<label>."
13933 msgstr ""
13934
13935 #. type: textblock
13936 #: ../src/guestfs-actions.pod:4646 ../fish/guestfish-actions.pod:3143
13937 msgid ""
13938 "Note that you cannot attach a swap label to a block device (eg. C</dev/"
13939 "sda>), just to a partition.  This appears to be a limitation of the kernel "
13940 "or swap tools."
13941 msgstr ""
13942
13943 #. type: =head2
13944 #: ../src/guestfs-actions.pod:4654
13945 msgid "guestfs_mkswap_U"
13946 msgstr ""
13947
13948 #. type: verbatim
13949 #: ../src/guestfs-actions.pod:4656
13950 #, no-wrap
13951 msgid ""
13952 " int\n"
13953 " guestfs_mkswap_U (guestfs_h *g,\n"
13954 "                   const char *uuid,\n"
13955 "                   const char *device);\n"
13956 "\n"
13957 msgstr ""
13958
13959 #. type: textblock
13960 #: ../src/guestfs-actions.pod:4661 ../fish/guestfish-actions.pod:3151
13961 msgid "Create a swap partition on C<device> with UUID C<uuid>."
13962 msgstr ""
13963
13964 #. type: =head2
13965 #: ../src/guestfs-actions.pod:4667
13966 msgid "guestfs_mkswap_file"
13967 msgstr ""
13968
13969 #. type: verbatim
13970 #: ../src/guestfs-actions.pod:4669
13971 #, no-wrap
13972 msgid ""
13973 " int\n"
13974 " guestfs_mkswap_file (guestfs_h *g,\n"
13975 "                      const char *path);\n"
13976 "\n"
13977 msgstr ""
13978
13979 #. type: textblock
13980 #: ../src/guestfs-actions.pod:4673 ../fish/guestfish-actions.pod:3157
13981 msgid "Create a swap file."
13982 msgstr ""
13983
13984 #. type: textblock
13985 #: ../src/guestfs-actions.pod:4675
13986 msgid ""
13987 "This command just writes a swap file signature to an existing file.  To "
13988 "create the file itself, use something like C<guestfs_fallocate>."
13989 msgstr ""
13990
13991 #. type: =head2
13992 #: ../src/guestfs-actions.pod:4682
13993 msgid "guestfs_modprobe"
13994 msgstr ""
13995
13996 #. type: verbatim
13997 #: ../src/guestfs-actions.pod:4684
13998 #, no-wrap
13999 msgid ""
14000 " int\n"
14001 " guestfs_modprobe (guestfs_h *g,\n"
14002 "                   const char *modulename);\n"
14003 "\n"
14004 msgstr ""
14005
14006 #. type: textblock
14007 #: ../src/guestfs-actions.pod:4688 ../fish/guestfish-actions.pod:3166
14008 msgid "This loads a kernel module in the appliance."
14009 msgstr ""
14010
14011 #. type: textblock
14012 #: ../src/guestfs-actions.pod:4690 ../fish/guestfish-actions.pod:3168
14013 msgid ""
14014 "The kernel module must have been whitelisted when libguestfs was built (see "
14015 "C<appliance/kmod.whitelist.in> in the source)."
14016 msgstr ""
14017
14018 #. type: =head2
14019 #: ../src/guestfs-actions.pod:4697
14020 msgid "guestfs_mount"
14021 msgstr ""
14022
14023 #. type: verbatim
14024 #: ../src/guestfs-actions.pod:4699
14025 #, no-wrap
14026 msgid ""
14027 " int\n"
14028 " guestfs_mount (guestfs_h *g,\n"
14029 "                const char *device,\n"
14030 "                const char *mountpoint);\n"
14031 "\n"
14032 msgstr ""
14033
14034 #. type: textblock
14035 #: ../src/guestfs-actions.pod:4704 ../fish/guestfish-actions.pod:3175
14036 msgid ""
14037 "Mount a guest disk at a position in the filesystem.  Block devices are named "
14038 "C</dev/sda>, C</dev/sdb> and so on, as they were added to the guest.  If "
14039 "those block devices contain partitions, they will have the usual names (eg. "
14040 "C</dev/sda1>).  Also LVM C</dev/VG/LV>-style names can be used."
14041 msgstr ""
14042
14043 #. type: textblock
14044 #: ../src/guestfs-actions.pod:4710 ../fish/guestfish-actions.pod:3181
14045 msgid ""
14046 "The rules are the same as for L<mount(2)>: A filesystem must first be "
14047 "mounted on C</> before others can be mounted.  Other filesystems can only be "
14048 "mounted on directories which already exist."
14049 msgstr ""
14050
14051 #. type: textblock
14052 #: ../src/guestfs-actions.pod:4715 ../fish/guestfish-actions.pod:3186
14053 msgid ""
14054 "The mounted filesystem is writable, if we have sufficient permissions on the "
14055 "underlying device."
14056 msgstr ""
14057
14058 #. type: textblock
14059 #: ../src/guestfs-actions.pod:4718
14060 msgid ""
14061 "B<Important note:> When you use this call, the filesystem options C<sync> "
14062 "and C<noatime> are set implicitly.  This was originally done because we "
14063 "thought it would improve reliability, but it turns out that I<-o sync> has a "
14064 "very large negative performance impact and negligible effect on "
14065 "reliability.  Therefore we recommend that you avoid using C<guestfs_mount> "
14066 "in any code that needs performance, and instead use C<guestfs_mount_options> "
14067 "(use an empty string for the first parameter if you don't want any options)."
14068 msgstr ""
14069
14070 #. type: textblock
14071 #: ../src/guestfs-actions.pod:4730 ../fish/guestfish-actions.pod:3199
14072 msgid ""
14073 "This function is deprecated.  In new code, use the C<mount_options> call "
14074 "instead."
14075 msgstr ""
14076
14077 #. type: =head2
14078 #: ../src/guestfs-actions.pod:4739
14079 msgid "guestfs_mount_loop"
14080 msgstr ""
14081
14082 #. type: verbatim
14083 #: ../src/guestfs-actions.pod:4741
14084 #, no-wrap
14085 msgid ""
14086 " int\n"
14087 " guestfs_mount_loop (guestfs_h *g,\n"
14088 "                     const char *file,\n"
14089 "                     const char *mountpoint);\n"
14090 "\n"
14091 msgstr ""
14092
14093 #. type: textblock
14094 #: ../src/guestfs-actions.pod:4746 ../fish/guestfish-actions.pod:3210
14095 msgid ""
14096 "This command lets you mount C<file> (a filesystem image in a file) on a "
14097 "mount point.  It is entirely equivalent to the command C<mount -o loop file "
14098 "mountpoint>."
14099 msgstr ""
14100
14101 #. type: =head2
14102 #: ../src/guestfs-actions.pod:4754
14103 msgid "guestfs_mount_options"
14104 msgstr ""
14105
14106 #. type: verbatim
14107 #: ../src/guestfs-actions.pod:4756
14108 #, no-wrap
14109 msgid ""
14110 " int\n"
14111 " guestfs_mount_options (guestfs_h *g,\n"
14112 "                        const char *options,\n"
14113 "                        const char *device,\n"
14114 "                        const char *mountpoint);\n"
14115 "\n"
14116 msgstr ""
14117
14118 #. type: textblock
14119 #: ../src/guestfs-actions.pod:4762
14120 msgid ""
14121 "This is the same as the C<guestfs_mount> command, but it allows you to set "
14122 "the mount options as for the L<mount(8)> I<-o> flag."
14123 msgstr ""
14124
14125 #. type: textblock
14126 #: ../src/guestfs-actions.pod:4766 ../fish/guestfish-actions.pod:3222
14127 msgid ""
14128 "If the C<options> parameter is an empty string, then no options are passed "
14129 "(all options default to whatever the filesystem uses)."
14130 msgstr ""
14131
14132 #. type: textblock
14133 #: ../src/guestfs-actions.pod:4772 ../src/guestfs-actions.pod:4786
14134 #: ../src/guestfs-actions.pod:4803
14135 msgid "(Added in 1.0.10)"
14136 msgstr ""
14137
14138 #. type: =head2
14139 #: ../src/guestfs-actions.pod:4774
14140 msgid "guestfs_mount_ro"
14141 msgstr ""
14142
14143 #. type: verbatim
14144 #: ../src/guestfs-actions.pod:4776
14145 #, no-wrap
14146 msgid ""
14147 " int\n"
14148 " guestfs_mount_ro (guestfs_h *g,\n"
14149 "                   const char *device,\n"
14150 "                   const char *mountpoint);\n"
14151 "\n"
14152 msgstr ""
14153
14154 #. type: textblock
14155 #: ../src/guestfs-actions.pod:4781
14156 msgid ""
14157 "This is the same as the C<guestfs_mount> command, but it mounts the "
14158 "filesystem with the read-only (I<-o ro>) flag."
14159 msgstr ""
14160
14161 #. type: =head2
14162 #: ../src/guestfs-actions.pod:4788
14163 msgid "guestfs_mount_vfs"
14164 msgstr ""
14165
14166 #. type: verbatim
14167 #: ../src/guestfs-actions.pod:4790
14168 #, no-wrap
14169 msgid ""
14170 " int\n"
14171 " guestfs_mount_vfs (guestfs_h *g,\n"
14172 "                    const char *options,\n"
14173 "                    const char *vfstype,\n"
14174 "                    const char *device,\n"
14175 "                    const char *mountpoint);\n"
14176 "\n"
14177 msgstr ""
14178
14179 #. type: textblock
14180 #: ../src/guestfs-actions.pod:4797
14181 msgid ""
14182 "This is the same as the C<guestfs_mount> command, but it allows you to set "
14183 "both the mount options and the vfstype as for the L<mount(8)> I<-o> and I<-"
14184 "t> flags."
14185 msgstr ""
14186
14187 #. type: =head2
14188 #: ../src/guestfs-actions.pod:4805
14189 msgid "guestfs_mountpoints"
14190 msgstr ""
14191
14192 #. type: verbatim
14193 #: ../src/guestfs-actions.pod:4807
14194 #, no-wrap
14195 msgid ""
14196 " char **\n"
14197 " guestfs_mountpoints (guestfs_h *g);\n"
14198 "\n"
14199 msgstr ""
14200
14201 #. type: textblock
14202 #: ../src/guestfs-actions.pod:4810
14203 msgid ""
14204 "This call is similar to C<guestfs_mounts>.  That call returns a list of "
14205 "devices.  This one returns a hash table (map) of device name to directory "
14206 "where the device is mounted."
14207 msgstr ""
14208
14209 #. type: =head2
14210 #: ../src/guestfs-actions.pod:4822
14211 msgid "guestfs_mounts"
14212 msgstr ""
14213
14214 #. type: verbatim
14215 #: ../src/guestfs-actions.pod:4824
14216 #, no-wrap
14217 msgid ""
14218 " char **\n"
14219 " guestfs_mounts (guestfs_h *g);\n"
14220 "\n"
14221 msgstr ""
14222
14223 #. type: textblock
14224 #: ../src/guestfs-actions.pod:4827 ../fish/guestfish-actions.pod:3253
14225 msgid ""
14226 "This returns the list of currently mounted filesystems.  It returns the list "
14227 "of devices (eg. C</dev/sda1>, C</dev/VG/LV>)."
14228 msgstr ""
14229
14230 #. type: textblock
14231 #: ../src/guestfs-actions.pod:4830 ../fish/guestfish-actions.pod:3256
14232 msgid "Some internal mounts are not shown."
14233 msgstr ""
14234
14235 #. type: textblock
14236 #: ../src/guestfs-actions.pod:4832
14237 msgid "See also: C<guestfs_mountpoints>"
14238 msgstr ""
14239
14240 #. type: =head2
14241 #: ../src/guestfs-actions.pod:4840
14242 msgid "guestfs_mv"
14243 msgstr ""
14244
14245 #. type: verbatim
14246 #: ../src/guestfs-actions.pod:4842
14247 #, no-wrap
14248 msgid ""
14249 " int\n"
14250 " guestfs_mv (guestfs_h *g,\n"
14251 "             const char *src,\n"
14252 "             const char *dest);\n"
14253 "\n"
14254 msgstr ""
14255
14256 #. type: textblock
14257 #: ../src/guestfs-actions.pod:4847 ../fish/guestfish-actions.pod:3264
14258 msgid ""
14259 "This moves a file from C<src> to C<dest> where C<dest> is either a "
14260 "destination filename or destination directory."
14261 msgstr ""
14262
14263 #. type: =head2
14264 #: ../src/guestfs-actions.pod:4854
14265 msgid "guestfs_ntfs_3g_probe"
14266 msgstr ""
14267
14268 #. type: verbatim
14269 #: ../src/guestfs-actions.pod:4856
14270 #, no-wrap
14271 msgid ""
14272 " int\n"
14273 " guestfs_ntfs_3g_probe (guestfs_h *g,\n"
14274 "                        int rw,\n"
14275 "                        const char *device);\n"
14276 "\n"
14277 msgstr ""
14278
14279 #. type: textblock
14280 #: ../src/guestfs-actions.pod:4861 ../fish/guestfish-actions.pod:3271
14281 msgid ""
14282 "This command runs the L<ntfs-3g.probe(8)> command which probes an NTFS "
14283 "C<device> for mountability.  (Not all NTFS volumes can be mounted read-"
14284 "write, and some cannot be mounted at all)."
14285 msgstr ""
14286
14287 #. type: textblock
14288 #: ../src/guestfs-actions.pod:4865 ../fish/guestfish-actions.pod:3275
14289 msgid ""
14290 "C<rw> is a boolean flag.  Set it to true if you want to test if the volume "
14291 "can be mounted read-write.  Set it to false if you want to test if the "
14292 "volume can be mounted read-only."
14293 msgstr ""
14294
14295 #. type: textblock
14296 #: ../src/guestfs-actions.pod:4869 ../fish/guestfish-actions.pod:3279
14297 msgid ""
14298 "The return value is an integer which C<0> if the operation would succeed, or "
14299 "some non-zero value documented in the L<ntfs-3g.probe(8)> manual page."
14300 msgstr ""
14301
14302 #. type: textblock
14303 #: ../src/guestfs-actions.pod:4875
14304 msgid "(Added in 1.0.43)"
14305 msgstr ""
14306
14307 #. type: =head2
14308 #: ../src/guestfs-actions.pod:4877
14309 msgid "guestfs_ntfsresize"
14310 msgstr ""
14311
14312 #. type: verbatim
14313 #: ../src/guestfs-actions.pod:4879
14314 #, no-wrap
14315 msgid ""
14316 " int\n"
14317 " guestfs_ntfsresize (guestfs_h *g,\n"
14318 "                     const char *device);\n"
14319 "\n"
14320 msgstr ""
14321
14322 #. type: textblock
14323 #: ../src/guestfs-actions.pod:4883 ../fish/guestfish-actions.pod:3287
14324 msgid ""
14325 "This command resizes an NTFS filesystem, expanding or shrinking it to the "
14326 "size of the underlying device."
14327 msgstr ""
14328
14329 #. type: textblock
14330 #: ../src/guestfs-actions.pod:4886 ../fish/guestfish-actions.pod:3290
14331 msgid ""
14332 "I<Note:> After the resize operation, the filesystem is marked as requiring a "
14333 "consistency check (for safety).  You have to boot into Windows to perform "
14334 "this check and clear this condition.  Furthermore, ntfsresize refuses to "
14335 "resize filesystems which have been marked in this way.  So in effect it is "
14336 "not possible to call ntfsresize multiple times on a single filesystem "
14337 "without booting into Windows between each resize."
14338 msgstr ""
14339
14340 #. type: textblock
14341 #: ../src/guestfs-actions.pod:4894 ../fish/guestfish-actions.pod:3298
14342 msgid "See also L<ntfsresize(8)>."
14343 msgstr ""
14344
14345 #. type: =head2
14346 #: ../src/guestfs-actions.pod:4900
14347 msgid "guestfs_ntfsresize_size"
14348 msgstr ""
14349
14350 #. type: verbatim
14351 #: ../src/guestfs-actions.pod:4902
14352 #, no-wrap
14353 msgid ""
14354 " int\n"
14355 " guestfs_ntfsresize_size (guestfs_h *g,\n"
14356 "                          const char *device,\n"
14357 "                          int64_t size);\n"
14358 "\n"
14359 msgstr ""
14360
14361 #. type: textblock
14362 #: ../src/guestfs-actions.pod:4907
14363 msgid ""
14364 "This command is the same as C<guestfs_ntfsresize> except that it allows you "
14365 "to specify the new size (in bytes) explicitly."
14366 msgstr ""
14367
14368 #. type: textblock
14369 #: ../src/guestfs-actions.pod:4912 ../src/guestfs-actions.pod:5348
14370 #: ../src/guestfs-actions.pod:5421 ../src/guestfs-actions.pod:5687
14371 #: ../src/guestfs-actions.pod:7293
14372 msgid "(Added in 1.3.14)"
14373 msgstr ""
14374
14375 #. type: =head2
14376 #: ../src/guestfs-actions.pod:4914
14377 msgid "guestfs_part_add"
14378 msgstr ""
14379
14380 #. type: verbatim
14381 #: ../src/guestfs-actions.pod:4916
14382 #, no-wrap
14383 msgid ""
14384 " int\n"
14385 " guestfs_part_add (guestfs_h *g,\n"
14386 "                   const char *device,\n"
14387 "                   const char *prlogex,\n"
14388 "                   int64_t startsect,\n"
14389 "                   int64_t endsect);\n"
14390 "\n"
14391 msgstr ""
14392
14393 #. type: textblock
14394 #: ../src/guestfs-actions.pod:4923
14395 msgid ""
14396 "This command adds a partition to C<device>.  If there is no partition table "
14397 "on the device, call C<guestfs_part_init> first."
14398 msgstr ""
14399
14400 #. type: textblock
14401 #: ../src/guestfs-actions.pod:4926 ../fish/guestfish-actions.pod:3314
14402 msgid ""
14403 "The C<prlogex> parameter is the type of partition.  Normally you should pass "
14404 "C<p> or C<primary> here, but MBR partition tables also support C<l> (or "
14405 "C<logical>) and C<e> (or C<extended>) partition types."
14406 msgstr ""
14407
14408 #. type: textblock
14409 #: ../src/guestfs-actions.pod:4931 ../fish/guestfish-actions.pod:3319
14410 msgid ""
14411 "C<startsect> and C<endsect> are the start and end of the partition in "
14412 "I<sectors>.  C<endsect> may be negative, which means it counts backwards "
14413 "from the end of the disk (C<-1> is the last sector)."
14414 msgstr ""
14415
14416 #. type: textblock
14417 #: ../src/guestfs-actions.pod:4935
14418 msgid ""
14419 "Creating a partition which covers the whole disk is not so easy.  Use "
14420 "C<guestfs_part_disk> to do that."
14421 msgstr ""
14422
14423 #. type: textblock
14424 #: ../src/guestfs-actions.pod:4940 ../src/guestfs-actions.pod:4978
14425 #: ../src/guestfs-actions.pod:5031 ../src/guestfs-actions.pod:5109
14426 #: ../src/guestfs-actions.pod:5147 ../src/guestfs-actions.pod:5166
14427 #: ../src/guestfs-actions.pod:5206
14428 msgid "(Added in 1.0.78)"
14429 msgstr ""
14430
14431 #. type: =head2
14432 #: ../src/guestfs-actions.pod:4942
14433 msgid "guestfs_part_del"
14434 msgstr ""
14435
14436 #. type: verbatim
14437 #: ../src/guestfs-actions.pod:4944
14438 #, no-wrap
14439 msgid ""
14440 " int\n"
14441 " guestfs_part_del (guestfs_h *g,\n"
14442 "                   const char *device,\n"
14443 "                   int partnum);\n"
14444 "\n"
14445 msgstr ""
14446
14447 #. type: textblock
14448 #: ../src/guestfs-actions.pod:4949 ../fish/guestfish-actions.pod:3330
14449 msgid "This command deletes the partition numbered C<partnum> on C<device>."
14450 msgstr ""
14451
14452 #. type: textblock
14453 #: ../src/guestfs-actions.pod:4951 ../fish/guestfish-actions.pod:3332
14454 msgid ""
14455 "Note that in the case of MBR partitioning, deleting an extended partition "
14456 "also deletes any logical partitions it contains."
14457 msgstr ""
14458
14459 #. type: =head2
14460 #: ../src/guestfs-actions.pod:4959
14461 msgid "guestfs_part_disk"
14462 msgstr ""
14463
14464 #. type: verbatim
14465 #: ../src/guestfs-actions.pod:4961
14466 #, no-wrap
14467 msgid ""
14468 " int\n"
14469 " guestfs_part_disk (guestfs_h *g,\n"
14470 "                    const char *device,\n"
14471 "                    const char *parttype);\n"
14472 "\n"
14473 msgstr ""
14474
14475 #. type: textblock
14476 #: ../src/guestfs-actions.pod:4966
14477 msgid ""
14478 "This command is simply a combination of C<guestfs_part_init> followed by "
14479 "C<guestfs_part_add> to create a single primary partition covering the whole "
14480 "disk."
14481 msgstr ""
14482
14483 #. type: textblock
14484 #: ../src/guestfs-actions.pod:4970
14485 msgid ""
14486 "C<parttype> is the partition table type, usually C<mbr> or C<gpt>, but other "
14487 "possible values are described in C<guestfs_part_init>."
14488 msgstr ""
14489
14490 #. type: =head2
14491 #: ../src/guestfs-actions.pod:4980
14492 msgid "guestfs_part_get_bootable"
14493 msgstr ""
14494
14495 #. type: verbatim
14496 #: ../src/guestfs-actions.pod:4982
14497 #, no-wrap
14498 msgid ""
14499 " int\n"
14500 " guestfs_part_get_bootable (guestfs_h *g,\n"
14501 "                            const char *device,\n"
14502 "                            int partnum);\n"
14503 "\n"
14504 msgstr ""
14505
14506 #. type: textblock
14507 #: ../src/guestfs-actions.pod:4987 ../fish/guestfish-actions.pod:3354
14508 msgid ""
14509 "This command returns true if the partition C<partnum> on C<device> has the "
14510 "bootable flag set."
14511 msgstr ""
14512
14513 #. type: textblock
14514 #: ../src/guestfs-actions.pod:4990
14515 msgid "See also C<guestfs_part_set_bootable>."
14516 msgstr ""
14517
14518 #. type: =head2
14519 #: ../src/guestfs-actions.pod:4996
14520 msgid "guestfs_part_get_mbr_id"
14521 msgstr ""
14522
14523 #. type: verbatim
14524 #: ../src/guestfs-actions.pod:4998
14525 #, no-wrap
14526 msgid ""
14527 " int\n"
14528 " guestfs_part_get_mbr_id (guestfs_h *g,\n"
14529 "                          const char *device,\n"
14530 "                          int partnum);\n"
14531 "\n"
14532 msgstr ""
14533
14534 #. type: textblock
14535 #: ../src/guestfs-actions.pod:5003 ../fish/guestfish-actions.pod:3363
14536 msgid ""
14537 "Returns the MBR type byte (also known as the ID byte) from the numbered "
14538 "partition C<partnum>."
14539 msgstr ""
14540
14541 #. type: textblock
14542 #: ../src/guestfs-actions.pod:5006 ../src/guestfs-actions.pod:5182
14543 msgid ""
14544 "Note that only MBR (old DOS-style) partitions have type bytes.  You will get "
14545 "undefined results for other partition table types (see "
14546 "C<guestfs_part_get_parttype>)."
14547 msgstr ""
14548
14549 #. type: =head2
14550 #: ../src/guestfs-actions.pod:5014
14551 msgid "guestfs_part_get_parttype"
14552 msgstr ""
14553
14554 #. type: verbatim
14555 #: ../src/guestfs-actions.pod:5016
14556 #, no-wrap
14557 msgid ""
14558 " char *\n"
14559 " guestfs_part_get_parttype (guestfs_h *g,\n"
14560 "                            const char *device);\n"
14561 "\n"
14562 msgstr ""
14563
14564 #. type: textblock
14565 #: ../src/guestfs-actions.pod:5020 ../fish/guestfish-actions.pod:3374
14566 msgid ""
14567 "This command examines the partition table on C<device> and returns the "
14568 "partition table type (format) being used."
14569 msgstr ""
14570
14571 #. type: textblock
14572 #: ../src/guestfs-actions.pod:5023
14573 msgid ""
14574 "Common return values include: C<msdos> (a DOS/Windows style MBR partition "
14575 "table), C<gpt> (a GPT/EFI-style partition table).  Other values are "
14576 "possible, although unusual.  See C<guestfs_part_init> for a full list."
14577 msgstr ""
14578
14579 #. type: =head2
14580 #: ../src/guestfs-actions.pod:5033
14581 msgid "guestfs_part_init"
14582 msgstr ""
14583
14584 #. type: verbatim
14585 #: ../src/guestfs-actions.pod:5035
14586 #, no-wrap
14587 msgid ""
14588 " int\n"
14589 " guestfs_part_init (guestfs_h *g,\n"
14590 "                    const char *device,\n"
14591 "                    const char *parttype);\n"
14592 "\n"
14593 msgstr ""
14594
14595 #. type: textblock
14596 #: ../src/guestfs-actions.pod:5040 ../fish/guestfish-actions.pod:3386
14597 msgid ""
14598 "This creates an empty partition table on C<device> of one of the partition "
14599 "types listed below.  Usually C<parttype> should be either C<msdos> or C<gpt> "
14600 "(for large disks)."
14601 msgstr ""
14602
14603 #. type: textblock
14604 #: ../src/guestfs-actions.pod:5044
14605 msgid ""
14606 "Initially there are no partitions.  Following this, you should call "
14607 "C<guestfs_part_add> for each partition required."
14608 msgstr ""
14609
14610 #. type: textblock
14611 #: ../src/guestfs-actions.pod:5047 ../fish/guestfish-actions.pod:3393
14612 msgid "Possible values for C<parttype> are:"
14613 msgstr ""
14614
14615 #. type: =item
14616 #: ../src/guestfs-actions.pod:5051 ../fish/guestfish-actions.pod:3397
14617 msgid "B<efi> | B<gpt>"
14618 msgstr ""
14619
14620 #. type: textblock
14621 #: ../src/guestfs-actions.pod:5053 ../fish/guestfish-actions.pod:3399
14622 msgid "Intel EFI / GPT partition table."
14623 msgstr ""
14624
14625 #. type: textblock
14626 #: ../src/guestfs-actions.pod:5055 ../fish/guestfish-actions.pod:3401
14627 msgid ""
14628 "This is recommended for >= 2 TB partitions that will be accessed from Linux "
14629 "and Intel-based Mac OS X.  It also has limited backwards compatibility with "
14630 "the C<mbr> format."
14631 msgstr ""
14632
14633 #. type: =item
14634 #: ../src/guestfs-actions.pod:5059 ../fish/guestfish-actions.pod:3405
14635 msgid "B<mbr> | B<msdos>"
14636 msgstr ""
14637
14638 #. type: textblock
14639 #: ../src/guestfs-actions.pod:5061 ../fish/guestfish-actions.pod:3407
14640 msgid ""
14641 "The standard PC \"Master Boot Record\" (MBR) format used by MS-DOS and "
14642 "Windows.  This partition type will B<only> work for device sizes up to 2 "
14643 "TB.  For large disks we recommend using C<gpt>."
14644 msgstr ""
14645
14646 #. type: textblock
14647 #: ../src/guestfs-actions.pod:5068 ../fish/guestfish-actions.pod:3414
14648 msgid ""
14649 "Other partition table types that may work but are not supported include:"
14650 msgstr ""
14651
14652 #. type: =item
14653 #: ../src/guestfs-actions.pod:5073 ../fish/guestfish-actions.pod:3419
14654 msgid "B<aix>"
14655 msgstr ""
14656
14657 #. type: textblock
14658 #: ../src/guestfs-actions.pod:5075 ../fish/guestfish-actions.pod:3421
14659 msgid "AIX disk labels."
14660 msgstr ""
14661
14662 #. type: =item
14663 #: ../src/guestfs-actions.pod:5077 ../fish/guestfish-actions.pod:3423
14664 msgid "B<amiga> | B<rdb>"
14665 msgstr ""
14666
14667 #. type: textblock
14668 #: ../src/guestfs-actions.pod:5079 ../fish/guestfish-actions.pod:3425
14669 msgid "Amiga \"Rigid Disk Block\" format."
14670 msgstr ""
14671
14672 #. type: =item
14673 #: ../src/guestfs-actions.pod:5081 ../fish/guestfish-actions.pod:3427
14674 msgid "B<bsd>"
14675 msgstr ""
14676
14677 #. type: textblock
14678 #: ../src/guestfs-actions.pod:5083 ../fish/guestfish-actions.pod:3429
14679 msgid "BSD disk labels."
14680 msgstr ""
14681
14682 #. type: =item
14683 #: ../src/guestfs-actions.pod:5085 ../fish/guestfish-actions.pod:3431
14684 msgid "B<dasd>"
14685 msgstr ""
14686
14687 #. type: textblock
14688 #: ../src/guestfs-actions.pod:5087 ../fish/guestfish-actions.pod:3433
14689 msgid "DASD, used on IBM mainframes."
14690 msgstr ""
14691
14692 #. type: =item
14693 #: ../src/guestfs-actions.pod:5089 ../fish/guestfish-actions.pod:3435
14694 msgid "B<dvh>"
14695 msgstr ""
14696
14697 #. type: textblock
14698 #: ../src/guestfs-actions.pod:5091 ../fish/guestfish-actions.pod:3437
14699 msgid "MIPS/SGI volumes."
14700 msgstr ""
14701
14702 #. type: =item
14703 #: ../src/guestfs-actions.pod:5093 ../fish/guestfish-actions.pod:3439
14704 msgid "B<mac>"
14705 msgstr ""
14706
14707 #. type: textblock
14708 #: ../src/guestfs-actions.pod:5095 ../fish/guestfish-actions.pod:3441
14709 msgid "Old Mac partition format.  Modern Macs use C<gpt>."
14710 msgstr ""
14711
14712 #. type: =item
14713 #: ../src/guestfs-actions.pod:5097 ../fish/guestfish-actions.pod:3443
14714 msgid "B<pc98>"
14715 msgstr ""
14716
14717 #. type: textblock
14718 #: ../src/guestfs-actions.pod:5099 ../fish/guestfish-actions.pod:3445
14719 msgid "NEC PC-98 format, common in Japan apparently."
14720 msgstr ""
14721
14722 #. type: =item
14723 #: ../src/guestfs-actions.pod:5101 ../fish/guestfish-actions.pod:3447
14724 msgid "B<sun>"
14725 msgstr ""
14726
14727 #. type: textblock
14728 #: ../src/guestfs-actions.pod:5103 ../fish/guestfish-actions.pod:3449
14729 msgid "Sun disk labels."
14730 msgstr ""
14731
14732 #. type: =head2
14733 #: ../src/guestfs-actions.pod:5111
14734 msgid "guestfs_part_list"
14735 msgstr ""
14736
14737 #. type: verbatim
14738 #: ../src/guestfs-actions.pod:5113
14739 #, no-wrap
14740 msgid ""
14741 " struct guestfs_partition_list *\n"
14742 " guestfs_part_list (guestfs_h *g,\n"
14743 "                    const char *device);\n"
14744 "\n"
14745 msgstr ""
14746
14747 #. type: textblock
14748 #: ../src/guestfs-actions.pod:5117 ../fish/guestfish-actions.pod:3457
14749 msgid ""
14750 "This command parses the partition table on C<device> and returns the list of "
14751 "partitions found."
14752 msgstr ""
14753
14754 #. type: textblock
14755 #: ../src/guestfs-actions.pod:5120 ../fish/guestfish-actions.pod:3460
14756 msgid "The fields in the returned structure are:"
14757 msgstr ""
14758
14759 #. type: =item
14760 #: ../src/guestfs-actions.pod:5124 ../fish/guestfish-actions.pod:3464
14761 msgid "B<part_num>"
14762 msgstr ""
14763
14764 #. type: textblock
14765 #: ../src/guestfs-actions.pod:5126 ../fish/guestfish-actions.pod:3466
14766 msgid "Partition number, counting from 1."
14767 msgstr ""
14768
14769 #. type: =item
14770 #: ../src/guestfs-actions.pod:5128 ../fish/guestfish-actions.pod:3468
14771 msgid "B<part_start>"
14772 msgstr ""
14773
14774 #. type: textblock
14775 #: ../src/guestfs-actions.pod:5130
14776 msgid ""
14777 "Start of the partition I<in bytes>.  To get sectors you have to divide by "
14778 "the device's sector size, see C<guestfs_blockdev_getss>."
14779 msgstr ""
14780
14781 #. type: =item
14782 #: ../src/guestfs-actions.pod:5133 ../fish/guestfish-actions.pod:3473
14783 msgid "B<part_end>"
14784 msgstr ""
14785
14786 #. type: textblock
14787 #: ../src/guestfs-actions.pod:5135 ../fish/guestfish-actions.pod:3475
14788 msgid "End of the partition in bytes."
14789 msgstr ""
14790
14791 #. type: =item
14792 #: ../src/guestfs-actions.pod:5137 ../fish/guestfish-actions.pod:3477
14793 msgid "B<part_size>"
14794 msgstr ""
14795
14796 #. type: textblock
14797 #: ../src/guestfs-actions.pod:5139 ../fish/guestfish-actions.pod:3479
14798 msgid "Size of the partition in bytes."
14799 msgstr ""
14800
14801 #. type: textblock
14802 #: ../src/guestfs-actions.pod:5143
14803 msgid ""
14804 "This function returns a C<struct guestfs_partition_list *>, or NULL if there "
14805 "was an error.  I<The caller must call C<guestfs_free_partition_list> after "
14806 "use>."
14807 msgstr ""
14808
14809 #. type: =head2
14810 #: ../src/guestfs-actions.pod:5149
14811 msgid "guestfs_part_set_bootable"
14812 msgstr ""
14813
14814 #. type: verbatim
14815 #: ../src/guestfs-actions.pod:5151
14816 #, no-wrap
14817 msgid ""
14818 " int\n"
14819 " guestfs_part_set_bootable (guestfs_h *g,\n"
14820 "                            const char *device,\n"
14821 "                            int partnum,\n"
14822 "                            int bootable);\n"
14823 "\n"
14824 msgstr ""
14825
14826 #. type: textblock
14827 #: ../src/guestfs-actions.pod:5157 ../fish/guestfish-actions.pod:3487
14828 msgid ""
14829 "This sets the bootable flag on partition numbered C<partnum> on device "
14830 "C<device>.  Note that partitions are numbered from 1."
14831 msgstr ""
14832
14833 #. type: textblock
14834 #: ../src/guestfs-actions.pod:5160 ../fish/guestfish-actions.pod:3490
14835 msgid ""
14836 "The bootable flag is used by some operating systems (notably Windows) to "
14837 "determine which partition to boot from.  It is by no means universally "
14838 "recognized."
14839 msgstr ""
14840
14841 #. type: =head2
14842 #: ../src/guestfs-actions.pod:5168
14843 msgid "guestfs_part_set_mbr_id"
14844 msgstr ""
14845
14846 #. type: verbatim
14847 #: ../src/guestfs-actions.pod:5170
14848 #, no-wrap
14849 msgid ""
14850 " int\n"
14851 " guestfs_part_set_mbr_id (guestfs_h *g,\n"
14852 "                          const char *device,\n"
14853 "                          int partnum,\n"
14854 "                          int idbyte);\n"
14855 "\n"
14856 msgstr ""
14857
14858 #. type: textblock
14859 #: ../src/guestfs-actions.pod:5176 ../fish/guestfish-actions.pod:3498
14860 msgid ""
14861 "Sets the MBR type byte (also known as the ID byte) of the numbered partition "
14862 "C<partnum> to C<idbyte>.  Note that the type bytes quoted in most "
14863 "documentation are in fact hexadecimal numbers, but usually documented "
14864 "without any leading \"0x\" which might be confusing."
14865 msgstr ""
14866
14867 #. type: =head2
14868 #: ../src/guestfs-actions.pod:5190
14869 msgid "guestfs_part_set_name"
14870 msgstr ""
14871
14872 #. type: verbatim
14873 #: ../src/guestfs-actions.pod:5192
14874 #, no-wrap
14875 msgid ""
14876 " int\n"
14877 " guestfs_part_set_name (guestfs_h *g,\n"
14878 "                        const char *device,\n"
14879 "                        int partnum,\n"
14880 "                        const char *name);\n"
14881 "\n"
14882 msgstr ""
14883
14884 #. type: textblock
14885 #: ../src/guestfs-actions.pod:5198 ../fish/guestfish-actions.pod:3512
14886 msgid ""
14887 "This sets the partition name on partition numbered C<partnum> on device "
14888 "C<device>.  Note that partitions are numbered from 1."
14889 msgstr ""
14890
14891 #. type: textblock
14892 #: ../src/guestfs-actions.pod:5201 ../fish/guestfish-actions.pod:3515
14893 msgid ""
14894 "The partition name can only be set on certain types of partition table.  "
14895 "This works on C<gpt> but not on C<mbr> partitions."
14896 msgstr ""
14897
14898 #. type: =head2
14899 #: ../src/guestfs-actions.pod:5208
14900 msgid "guestfs_part_to_dev"
14901 msgstr ""
14902
14903 #. type: verbatim
14904 #: ../src/guestfs-actions.pod:5210
14905 #, no-wrap
14906 msgid ""
14907 " char *\n"
14908 " guestfs_part_to_dev (guestfs_h *g,\n"
14909 "                      const char *partition);\n"
14910 "\n"
14911 msgstr ""
14912
14913 #. type: textblock
14914 #: ../src/guestfs-actions.pod:5214 ../fish/guestfish-actions.pod:3522
14915 msgid ""
14916 "This function takes a partition name (eg. \"/dev/sdb1\") and removes the "
14917 "partition number, returning the device name (eg. \"/dev/sdb\")."
14918 msgstr ""
14919
14920 #. type: textblock
14921 #: ../src/guestfs-actions.pod:5218
14922 msgid ""
14923 "The named partition must exist, for example as a string returned from "
14924 "C<guestfs_list_partitions>."
14925 msgstr ""
14926
14927 #. type: =head2
14928 #: ../src/guestfs-actions.pod:5226
14929 msgid "guestfs_ping_daemon"
14930 msgstr ""
14931
14932 #. type: verbatim
14933 #: ../src/guestfs-actions.pod:5228
14934 #, no-wrap
14935 msgid ""
14936 " int\n"
14937 " guestfs_ping_daemon (guestfs_h *g);\n"
14938 "\n"
14939 msgstr ""
14940
14941 #. type: textblock
14942 #: ../src/guestfs-actions.pod:5231 ../fish/guestfish-actions.pod:3533
14943 msgid ""
14944 "This is a test probe into the guestfs daemon running inside the qemu "
14945 "subprocess.  Calling this function checks that the daemon responds to the "
14946 "ping message, without affecting the daemon or attached block device(s) in "
14947 "any other way."
14948 msgstr ""
14949
14950 #. type: =head2
14951 #: ../src/guestfs-actions.pod:5240
14952 msgid "guestfs_pread"
14953 msgstr ""
14954
14955 #. type: verbatim
14956 #: ../src/guestfs-actions.pod:5242
14957 #, no-wrap
14958 msgid ""
14959 " char *\n"
14960 " guestfs_pread (guestfs_h *g,\n"
14961 "                const char *path,\n"
14962 "                int count,\n"
14963 "                int64_t offset,\n"
14964 "                size_t *size_r);\n"
14965 "\n"
14966 msgstr ""
14967
14968 #. type: textblock
14969 #: ../src/guestfs-actions.pod:5249 ../fish/guestfish-actions.pod:3542
14970 msgid ""
14971 "This command lets you read part of a file.  It reads C<count> bytes of the "
14972 "file, starting at C<offset>, from file C<path>."
14973 msgstr ""
14974
14975 #. type: textblock
14976 #: ../src/guestfs-actions.pod:5252 ../src/guestfs-actions.pod:5278
14977 #: ../fish/guestfish-actions.pod:3545 ../fish/guestfish-actions.pod:3560
14978 msgid ""
14979 "This may read fewer bytes than requested.  For further details see the "
14980 "L<pread(2)> system call."
14981 msgstr ""
14982
14983 #. type: textblock
14984 #: ../src/guestfs-actions.pod:5255
14985 msgid "See also C<guestfs_pwrite>, C<guestfs_pread_device>."
14986 msgstr ""
14987
14988 #. type: =head2
14989 #: ../src/guestfs-actions.pod:5266
14990 msgid "guestfs_pread_device"
14991 msgstr ""
14992
14993 #. type: verbatim
14994 #: ../src/guestfs-actions.pod:5268
14995 #, no-wrap
14996 msgid ""
14997 " char *\n"
14998 " guestfs_pread_device (guestfs_h *g,\n"
14999 "                       const char *device,\n"
15000 "                       int count,\n"
15001 "                       int64_t offset,\n"
15002 "                       size_t *size_r);\n"
15003 "\n"
15004 msgstr ""
15005
15006 #. type: textblock
15007 #: ../src/guestfs-actions.pod:5275 ../fish/guestfish-actions.pod:3557
15008 msgid ""
15009 "This command lets you read part of a file.  It reads C<count> bytes of "
15010 "C<device>, starting at C<offset>."
15011 msgstr ""
15012
15013 #. type: textblock
15014 #: ../src/guestfs-actions.pod:5281
15015 msgid "See also C<guestfs_pread>."
15016 msgstr ""
15017
15018 #. type: textblock
15019 #: ../src/guestfs-actions.pod:5290
15020 msgid "(Added in 1.5.21)"
15021 msgstr ""
15022
15023 #. type: =head2
15024 #: ../src/guestfs-actions.pod:5292
15025 msgid "guestfs_pvcreate"
15026 msgstr ""
15027
15028 #. type: verbatim
15029 #: ../src/guestfs-actions.pod:5294
15030 #, no-wrap
15031 msgid ""
15032 " int\n"
15033 " guestfs_pvcreate (guestfs_h *g,\n"
15034 "                   const char *device);\n"
15035 "\n"
15036 msgstr ""
15037
15038 #. type: textblock
15039 #: ../src/guestfs-actions.pod:5298 ../fish/guestfish-actions.pod:3572
15040 msgid ""
15041 "This creates an LVM physical volume on the named C<device>, where C<device> "
15042 "should usually be a partition name such as C</dev/sda1>."
15043 msgstr ""
15044
15045 #. type: =head2
15046 #: ../src/guestfs-actions.pod:5306
15047 msgid "guestfs_pvremove"
15048 msgstr ""
15049
15050 #. type: verbatim
15051 #: ../src/guestfs-actions.pod:5308
15052 #, no-wrap
15053 msgid ""
15054 " int\n"
15055 " guestfs_pvremove (guestfs_h *g,\n"
15056 "                   const char *device);\n"
15057 "\n"
15058 msgstr ""
15059
15060 #. type: textblock
15061 #: ../src/guestfs-actions.pod:5312 ../fish/guestfish-actions.pod:3580
15062 msgid ""
15063 "This wipes a physical volume C<device> so that LVM will no longer recognise "
15064 "it."
15065 msgstr ""
15066
15067 #. type: textblock
15068 #: ../src/guestfs-actions.pod:5315 ../fish/guestfish-actions.pod:3583
15069 msgid ""
15070 "The implementation uses the C<pvremove> command which refuses to wipe "
15071 "physical volumes that contain any volume groups, so you have to remove those "
15072 "first."
15073 msgstr ""
15074
15075 #. type: =head2
15076 #: ../src/guestfs-actions.pod:5323
15077 msgid "guestfs_pvresize"
15078 msgstr ""
15079
15080 #. type: verbatim
15081 #: ../src/guestfs-actions.pod:5325
15082 #, no-wrap
15083 msgid ""
15084 " int\n"
15085 " guestfs_pvresize (guestfs_h *g,\n"
15086 "                   const char *device);\n"
15087 "\n"
15088 msgstr ""
15089
15090 #. type: textblock
15091 #: ../src/guestfs-actions.pod:5329 ../fish/guestfish-actions.pod:3591
15092 msgid ""
15093 "This resizes (expands or shrinks) an existing LVM physical volume to match "
15094 "the new size of the underlying device."
15095 msgstr ""
15096
15097 #. type: =head2
15098 #: ../src/guestfs-actions.pod:5336
15099 msgid "guestfs_pvresize_size"
15100 msgstr ""
15101
15102 #. type: verbatim
15103 #: ../src/guestfs-actions.pod:5338
15104 #, no-wrap
15105 msgid ""
15106 " int\n"
15107 " guestfs_pvresize_size (guestfs_h *g,\n"
15108 "                        const char *device,\n"
15109 "                        int64_t size);\n"
15110 "\n"
15111 msgstr ""
15112
15113 #. type: textblock
15114 #: ../src/guestfs-actions.pod:5343
15115 msgid ""
15116 "This command is the same as C<guestfs_pvresize> except that it allows you to "
15117 "specify the new size (in bytes) explicitly."
15118 msgstr ""
15119
15120 #. type: =head2
15121 #: ../src/guestfs-actions.pod:5350
15122 msgid "guestfs_pvs"
15123 msgstr ""
15124
15125 #. type: verbatim
15126 #: ../src/guestfs-actions.pod:5352
15127 #, no-wrap
15128 msgid ""
15129 " char **\n"
15130 " guestfs_pvs (guestfs_h *g);\n"
15131 "\n"
15132 msgstr ""
15133
15134 #. type: textblock
15135 #: ../src/guestfs-actions.pod:5355 ../fish/guestfish-actions.pod:3605
15136 msgid ""
15137 "List all the physical volumes detected.  This is the equivalent of the L<pvs"
15138 "(8)> command."
15139 msgstr ""
15140
15141 #. type: textblock
15142 #: ../src/guestfs-actions.pod:5358 ../fish/guestfish-actions.pod:3608
15143 msgid ""
15144 "This returns a list of just the device names that contain PVs (eg. C</dev/"
15145 "sda2>)."
15146 msgstr ""
15147
15148 #. type: textblock
15149 #: ../src/guestfs-actions.pod:5361
15150 msgid "See also C<guestfs_pvs_full>."
15151 msgstr ""
15152
15153 #. type: =head2
15154 #: ../src/guestfs-actions.pod:5369
15155 msgid "guestfs_pvs_full"
15156 msgstr ""
15157
15158 #. type: verbatim
15159 #: ../src/guestfs-actions.pod:5371
15160 #, no-wrap
15161 msgid ""
15162 " struct guestfs_lvm_pv_list *\n"
15163 " guestfs_pvs_full (guestfs_h *g);\n"
15164 "\n"
15165 msgstr ""
15166
15167 #. type: textblock
15168 #: ../src/guestfs-actions.pod:5374 ../fish/guestfish-actions.pod:3617
15169 msgid ""
15170 "List all the physical volumes detected.  This is the equivalent of the L<pvs"
15171 "(8)> command.  The \"full\" version includes all fields."
15172 msgstr ""
15173
15174 #. type: textblock
15175 #: ../src/guestfs-actions.pod:5377
15176 msgid ""
15177 "This function returns a C<struct guestfs_lvm_pv_list *>, or NULL if there "
15178 "was an error.  I<The caller must call C<guestfs_free_lvm_pv_list> after use>."
15179 msgstr ""
15180
15181 #. type: =head2
15182 #: ../src/guestfs-actions.pod:5383
15183 msgid "guestfs_pvuuid"
15184 msgstr ""
15185
15186 #. type: verbatim
15187 #: ../src/guestfs-actions.pod:5385
15188 #, no-wrap
15189 msgid ""
15190 " char *\n"
15191 " guestfs_pvuuid (guestfs_h *g,\n"
15192 "                 const char *device);\n"
15193 "\n"
15194 msgstr ""
15195
15196 #. type: textblock
15197 #: ../src/guestfs-actions.pod:5389 ../fish/guestfish-actions.pod:3624
15198 msgid "This command returns the UUID of the LVM PV C<device>."
15199 msgstr ""
15200
15201 #. type: =head2
15202 #: ../src/guestfs-actions.pod:5396
15203 msgid "guestfs_pwrite"
15204 msgstr ""
15205
15206 #. type: verbatim
15207 #: ../src/guestfs-actions.pod:5398
15208 #, no-wrap
15209 msgid ""
15210 " int\n"
15211 " guestfs_pwrite (guestfs_h *g,\n"
15212 "                 const char *path,\n"
15213 "                 const char *content,\n"
15214 "                 size_t content_size,\n"
15215 "                 int64_t offset);\n"
15216 "\n"
15217 msgstr ""
15218
15219 #. type: textblock
15220 #: ../src/guestfs-actions.pod:5405 ../fish/guestfish-actions.pod:3630
15221 msgid ""
15222 "This command writes to part of a file.  It writes the data buffer C<content> "
15223 "to the file C<path> starting at offset C<offset>."
15224 msgstr ""
15225
15226 #. type: textblock
15227 #: ../src/guestfs-actions.pod:5408 ../fish/guestfish-actions.pod:3633
15228 msgid ""
15229 "This command implements the L<pwrite(2)> system call, and like that system "
15230 "call it may not write the full data requested.  The return value is the "
15231 "number of bytes that were actually written to the file.  This could even be "
15232 "0, although short writes are unlikely for regular files in ordinary "
15233 "circumstances."
15234 msgstr ""
15235
15236 #. type: textblock
15237 #: ../src/guestfs-actions.pod:5414
15238 msgid "See also C<guestfs_pread>, C<guestfs_pwrite_device>."
15239 msgstr ""
15240
15241 #. type: =head2
15242 #: ../src/guestfs-actions.pod:5423
15243 msgid "guestfs_pwrite_device"
15244 msgstr ""
15245
15246 #. type: verbatim
15247 #: ../src/guestfs-actions.pod:5425
15248 #, no-wrap
15249 msgid ""
15250 " int\n"
15251 " guestfs_pwrite_device (guestfs_h *g,\n"
15252 "                        const char *device,\n"
15253 "                        const char *content,\n"
15254 "                        size_t content_size,\n"
15255 "                        int64_t offset);\n"
15256 "\n"
15257 msgstr ""
15258
15259 #. type: textblock
15260 #: ../src/guestfs-actions.pod:5432 ../fish/guestfish-actions.pod:3648
15261 msgid ""
15262 "This command writes to part of a device.  It writes the data buffer "
15263 "C<content> to C<device> starting at offset C<offset>."
15264 msgstr ""
15265
15266 #. type: textblock
15267 #: ../src/guestfs-actions.pod:5435 ../fish/guestfish-actions.pod:3651
15268 msgid ""
15269 "This command implements the L<pwrite(2)> system call, and like that system "
15270 "call it may not write the full data requested (although short writes to disk "
15271 "devices and partitions are probably impossible with standard Linux kernels)."
15272 msgstr ""
15273
15274 #. type: textblock
15275 #: ../src/guestfs-actions.pod:5440
15276 msgid "See also C<guestfs_pwrite>."
15277 msgstr ""
15278
15279 #. type: textblock
15280 #: ../src/guestfs-actions.pod:5447
15281 msgid "(Added in 1.5.20)"
15282 msgstr ""
15283
15284 #. type: =head2
15285 #: ../src/guestfs-actions.pod:5449
15286 msgid "guestfs_read_file"
15287 msgstr ""
15288
15289 #. type: verbatim
15290 #: ../src/guestfs-actions.pod:5451
15291 #, no-wrap
15292 msgid ""
15293 " char *\n"
15294 " guestfs_read_file (guestfs_h *g,\n"
15295 "                    const char *path,\n"
15296 "                    size_t *size_r);\n"
15297 "\n"
15298 msgstr ""
15299
15300 #. type: textblock
15301 #: ../src/guestfs-actions.pod:5456 ../fish/guestfish-actions.pod:3665
15302 msgid "This calls returns the contents of the file C<path> as a buffer."
15303 msgstr ""
15304
15305 #. type: textblock
15306 #: ../src/guestfs-actions.pod:5459
15307 msgid ""
15308 "Unlike C<guestfs_cat>, this function can correctly handle files that contain "
15309 "embedded ASCII NUL characters.  However unlike C<guestfs_download>, this "
15310 "function is limited in the total size of file that can be handled."
15311 msgstr ""
15312
15313 #. type: textblock
15314 #: ../src/guestfs-actions.pod:5471
15315 msgid "(Added in 1.0.63)"
15316 msgstr ""
15317
15318 #. type: =head2
15319 #: ../src/guestfs-actions.pod:5473
15320 msgid "guestfs_read_lines"
15321 msgstr ""
15322
15323 #. type: verbatim
15324 #: ../src/guestfs-actions.pod:5475
15325 #, no-wrap
15326 msgid ""
15327 " char **\n"
15328 " guestfs_read_lines (guestfs_h *g,\n"
15329 "                     const char *path);\n"
15330 "\n"
15331 msgstr ""
15332
15333 #. type: textblock
15334 #: ../src/guestfs-actions.pod:5481 ../fish/guestfish-actions.pod:3682
15335 msgid ""
15336 "The file contents are returned as a list of lines.  Trailing C<LF> and "
15337 "C<CRLF> character sequences are I<not> returned."
15338 msgstr ""
15339
15340 #. type: textblock
15341 #: ../src/guestfs-actions.pod:5484
15342 msgid ""
15343 "Note that this function cannot correctly handle binary files (specifically, "
15344 "files containing C<\\0> character which is treated as end of line).  For "
15345 "those you need to use the C<guestfs_read_file> function which has a more "
15346 "complex interface."
15347 msgstr ""
15348
15349 #. type: =head2
15350 #: ../src/guestfs-actions.pod:5495
15351 msgid "guestfs_readdir"
15352 msgstr ""
15353
15354 #. type: verbatim
15355 #: ../src/guestfs-actions.pod:5497
15356 #, no-wrap
15357 msgid ""
15358 " struct guestfs_dirent_list *\n"
15359 " guestfs_readdir (guestfs_h *g,\n"
15360 "                  const char *dir);\n"
15361 "\n"
15362 msgstr ""
15363
15364 #. type: textblock
15365 #: ../src/guestfs-actions.pod:5501 ../fish/guestfish-actions.pod:3694
15366 msgid "This returns the list of directory entries in directory C<dir>."
15367 msgstr ""
15368
15369 #. type: textblock
15370 #: ../src/guestfs-actions.pod:5503 ../fish/guestfish-actions.pod:3696
15371 msgid ""
15372 "All entries in the directory are returned, including C<.> and C<..>.  The "
15373 "entries are I<not> sorted, but returned in the same order as the underlying "
15374 "filesystem."
15375 msgstr ""
15376
15377 #. type: textblock
15378 #: ../src/guestfs-actions.pod:5507 ../fish/guestfish-actions.pod:3700
15379 msgid ""
15380 "Also this call returns basic file type information about each file.  The "
15381 "C<ftyp> field will contain one of the following characters:"
15382 msgstr ""
15383
15384 #. type: =item
15385 #: ../src/guestfs-actions.pod:5512 ../fish/guestfish-actions.pod:3705
15386 msgid "'b'"
15387 msgstr ""
15388
15389 #. type: textblock
15390 #: ../src/guestfs-actions.pod:5514 ../fish/guestfish-actions.pod:3707
15391 msgid "Block special"
15392 msgstr ""
15393
15394 #. type: =item
15395 #: ../src/guestfs-actions.pod:5516 ../fish/guestfish-actions.pod:3709
15396 msgid "'c'"
15397 msgstr ""
15398
15399 #. type: textblock
15400 #: ../src/guestfs-actions.pod:5518 ../fish/guestfish-actions.pod:3711
15401 msgid "Char special"
15402 msgstr ""
15403
15404 #. type: =item
15405 #: ../src/guestfs-actions.pod:5520 ../fish/guestfish-actions.pod:3713
15406 msgid "'d'"
15407 msgstr ""
15408
15409 #. type: textblock
15410 #: ../src/guestfs-actions.pod:5522 ../fish/guestfish-actions.pod:3715
15411 msgid "Directory"
15412 msgstr ""
15413
15414 #. type: =item
15415 #: ../src/guestfs-actions.pod:5524 ../fish/guestfish-actions.pod:3717
15416 msgid "'f'"
15417 msgstr ""
15418
15419 #. type: textblock
15420 #: ../src/guestfs-actions.pod:5526 ../fish/guestfish-actions.pod:3719
15421 msgid "FIFO (named pipe)"
15422 msgstr ""
15423
15424 #. type: =item
15425 #: ../src/guestfs-actions.pod:5528 ../fish/guestfish-actions.pod:3721
15426 msgid "'l'"
15427 msgstr ""
15428
15429 #. type: textblock
15430 #: ../src/guestfs-actions.pod:5530 ../fish/guestfish-actions.pod:3723
15431 msgid "Symbolic link"
15432 msgstr ""
15433
15434 #. type: =item
15435 #: ../src/guestfs-actions.pod:5532 ../fish/guestfish-actions.pod:3725
15436 msgid "'r'"
15437 msgstr ""
15438
15439 #. type: textblock
15440 #: ../src/guestfs-actions.pod:5534 ../fish/guestfish-actions.pod:3727
15441 msgid "Regular file"
15442 msgstr ""
15443
15444 #. type: =item
15445 #: ../src/guestfs-actions.pod:5536 ../fish/guestfish-actions.pod:3729
15446 msgid "'s'"
15447 msgstr ""
15448
15449 #. type: textblock
15450 #: ../src/guestfs-actions.pod:5538 ../fish/guestfish-actions.pod:3731
15451 msgid "Socket"
15452 msgstr ""
15453
15454 #. type: =item
15455 #: ../src/guestfs-actions.pod:5540 ../fish/guestfish-actions.pod:3733
15456 msgid "'u'"
15457 msgstr ""
15458
15459 #. type: textblock
15460 #: ../src/guestfs-actions.pod:5542 ../fish/guestfish-actions.pod:3735
15461 msgid "Unknown file type"
15462 msgstr ""
15463
15464 #. type: =item
15465 #: ../src/guestfs-actions.pod:5544 ../fish/guestfish-actions.pod:3737
15466 msgid "'?'"
15467 msgstr ""
15468
15469 #. type: textblock
15470 #: ../src/guestfs-actions.pod:5546 ../fish/guestfish-actions.pod:3739
15471 msgid ""
15472 "The L<readdir(3)> call returned a C<d_type> field with an unexpected value"
15473 msgstr ""
15474
15475 #. type: textblock
15476 #: ../src/guestfs-actions.pod:5551
15477 msgid ""
15478 "This function is primarily intended for use by programs.  To get a simple "
15479 "list of names, use C<guestfs_ls>.  To get a printable directory for human "
15480 "consumption, use C<guestfs_ll>."
15481 msgstr ""
15482
15483 #. type: textblock
15484 #: ../src/guestfs-actions.pod:5555
15485 msgid ""
15486 "This function returns a C<struct guestfs_dirent_list *>, or NULL if there "
15487 "was an error.  I<The caller must call C<guestfs_free_dirent_list> after use>."
15488 msgstr ""
15489
15490 #. type: =head2
15491 #: ../src/guestfs-actions.pod:5561
15492 msgid "guestfs_readlink"
15493 msgstr ""
15494
15495 #. type: verbatim
15496 #: ../src/guestfs-actions.pod:5563
15497 #, no-wrap
15498 msgid ""
15499 " char *\n"
15500 " guestfs_readlink (guestfs_h *g,\n"
15501 "                   const char *path);\n"
15502 "\n"
15503 msgstr ""
15504
15505 #. type: textblock
15506 #: ../src/guestfs-actions.pod:5567 ../fish/guestfish-actions.pod:3752
15507 msgid "This command reads the target of a symbolic link."
15508 msgstr ""
15509
15510 #. type: =head2
15511 #: ../src/guestfs-actions.pod:5574
15512 msgid "guestfs_readlinklist"
15513 msgstr ""
15514
15515 #. type: verbatim
15516 #: ../src/guestfs-actions.pod:5576
15517 #, no-wrap
15518 msgid ""
15519 " char **\n"
15520 " guestfs_readlinklist (guestfs_h *g,\n"
15521 "                       const char *path,\n"
15522 "                       char *const *names);\n"
15523 "\n"
15524 msgstr ""
15525
15526 #. type: textblock
15527 #: ../src/guestfs-actions.pod:5581 ../fish/guestfish-actions.pod:3758
15528 msgid ""
15529 "This call allows you to do a C<readlink> operation on multiple files, where "
15530 "all files are in the directory C<path>.  C<names> is the list of files from "
15531 "this directory."
15532 msgstr ""
15533
15534 #. type: textblock
15535 #: ../src/guestfs-actions.pod:5585 ../fish/guestfish-actions.pod:3762
15536 msgid ""
15537 "On return you get a list of strings, with a one-to-one correspondence to the "
15538 "C<names> list.  Each string is the value of the symbolic link."
15539 msgstr ""
15540
15541 #. type: textblock
15542 #: ../src/guestfs-actions.pod:5589 ../fish/guestfish-actions.pod:3766
15543 msgid ""
15544 "If the C<readlink(2)> operation fails on any name, then the corresponding "
15545 "result string is the empty string C<\"\">.  However the whole operation is "
15546 "completed even if there were C<readlink(2)> errors, and so you can call this "
15547 "function with names where you don't know if they are symbolic links already "
15548 "(albeit slightly less efficient)."
15549 msgstr ""
15550
15551 #. type: textblock
15552 #: ../src/guestfs-actions.pod:5596 ../fish/guestfish-actions.pod:3773
15553 msgid ""
15554 "This call is intended for programs that want to efficiently list a directory "
15555 "contents without making many round-trips.  Very long directory listings "
15556 "might cause the protocol message size to be exceeded, causing this call to "
15557 "fail.  The caller must split up such requests into smaller groups of names."
15558 msgstr ""
15559
15560 #. type: =head2
15561 #: ../src/guestfs-actions.pod:5609
15562 msgid "guestfs_realpath"
15563 msgstr ""
15564
15565 #. type: verbatim
15566 #: ../src/guestfs-actions.pod:5611
15567 #, no-wrap
15568 msgid ""
15569 " char *\n"
15570 " guestfs_realpath (guestfs_h *g,\n"
15571 "                   const char *path);\n"
15572 "\n"
15573 msgstr ""
15574
15575 #. type: textblock
15576 #: ../src/guestfs-actions.pod:5615 ../fish/guestfish-actions.pod:3784
15577 msgid ""
15578 "Return the canonicalized absolute pathname of C<path>.  The returned path "
15579 "has no C<.>, C<..> or symbolic link path elements."
15580 msgstr ""
15581
15582 #. type: =head2
15583 #: ../src/guestfs-actions.pod:5623
15584 msgid "guestfs_removexattr"
15585 msgstr ""
15586
15587 #. type: verbatim
15588 #: ../src/guestfs-actions.pod:5625
15589 #, no-wrap
15590 msgid ""
15591 " int\n"
15592 " guestfs_removexattr (guestfs_h *g,\n"
15593 "                      const char *xattr,\n"
15594 "                      const char *path);\n"
15595 "\n"
15596 msgstr ""
15597
15598 #. type: textblock
15599 #: ../src/guestfs-actions.pod:5630 ../fish/guestfish-actions.pod:3791
15600 msgid ""
15601 "This call removes the extended attribute named C<xattr> of the file C<path>."
15602 msgstr ""
15603
15604 #. type: textblock
15605 #: ../src/guestfs-actions.pod:5633
15606 msgid "See also: C<guestfs_lremovexattr>, L<attr(5)>."
15607 msgstr ""
15608
15609 #. type: =head2
15610 #: ../src/guestfs-actions.pod:5639
15611 msgid "guestfs_resize2fs"
15612 msgstr ""
15613
15614 #. type: verbatim
15615 #: ../src/guestfs-actions.pod:5641
15616 #, no-wrap
15617 msgid ""
15618 " int\n"
15619 " guestfs_resize2fs (guestfs_h *g,\n"
15620 "                    const char *device);\n"
15621 "\n"
15622 msgstr ""
15623
15624 #. type: textblock
15625 #: ../src/guestfs-actions.pod:5645 ../fish/guestfish-actions.pod:3800
15626 msgid ""
15627 "This resizes an ext2, ext3 or ext4 filesystem to match the size of the "
15628 "underlying device."
15629 msgstr ""
15630
15631 #. type: textblock
15632 #: ../src/guestfs-actions.pod:5648
15633 msgid ""
15634 "I<Note:> It is sometimes required that you run C<guestfs_e2fsck_f> on the "
15635 "C<device> before calling this command.  For unknown reasons C<resize2fs> "
15636 "sometimes gives an error about this and sometimes not.  In any case, it is "
15637 "always safe to call C<guestfs_e2fsck_f> before calling this function."
15638 msgstr ""
15639
15640 #. type: =head2
15641 #: ../src/guestfs-actions.pod:5658
15642 msgid "guestfs_resize2fs_M"
15643 msgstr ""
15644
15645 #. type: verbatim
15646 #: ../src/guestfs-actions.pod:5660
15647 #, no-wrap
15648 msgid ""
15649 " int\n"
15650 " guestfs_resize2fs_M (guestfs_h *g,\n"
15651 "                      const char *device);\n"
15652 "\n"
15653 msgstr ""
15654
15655 #. type: textblock
15656 #: ../src/guestfs-actions.pod:5664
15657 msgid ""
15658 "This command is the same as C<guestfs_resize2fs>, but the filesystem is "
15659 "resized to its minimum size.  This works like the I<-M> option to the "
15660 "C<resize2fs> command."
15661 msgstr ""
15662
15663 #. type: textblock
15664 #: ../src/guestfs-actions.pod:5668
15665 msgid ""
15666 "To get the resulting size of the filesystem you should call "
15667 "C<guestfs_tune2fs_l> and read the C<Block size> and C<Block count> values.  "
15668 "These two numbers, multiplied together, give the resulting size of the "
15669 "minimal filesystem in bytes."
15670 msgstr ""
15671
15672 #. type: =head2
15673 #: ../src/guestfs-actions.pod:5675
15674 msgid "guestfs_resize2fs_size"
15675 msgstr ""
15676
15677 #. type: verbatim
15678 #: ../src/guestfs-actions.pod:5677
15679 #, no-wrap
15680 msgid ""
15681 " int\n"
15682 " guestfs_resize2fs_size (guestfs_h *g,\n"
15683 "                         const char *device,\n"
15684 "                         int64_t size);\n"
15685 "\n"
15686 msgstr ""
15687
15688 #. type: textblock
15689 #: ../src/guestfs-actions.pod:5682
15690 msgid ""
15691 "This command is the same as C<guestfs_resize2fs> except that it allows you "
15692 "to specify the new size (in bytes) explicitly."
15693 msgstr ""
15694
15695 #. type: =head2
15696 #: ../src/guestfs-actions.pod:5689
15697 msgid "guestfs_rm"
15698 msgstr ""
15699
15700 #. type: verbatim
15701 #: ../src/guestfs-actions.pod:5691
15702 #, no-wrap
15703 msgid ""
15704 " int\n"
15705 " guestfs_rm (guestfs_h *g,\n"
15706 "             const char *path);\n"
15707 "\n"
15708 msgstr ""
15709
15710 #. type: textblock
15711 #: ../src/guestfs-actions.pod:5695 ../fish/guestfish-actions.pod:3833
15712 msgid "Remove the single file C<path>."
15713 msgstr ""
15714
15715 #. type: =head2
15716 #: ../src/guestfs-actions.pod:5701
15717 msgid "guestfs_rm_rf"
15718 msgstr ""
15719
15720 #. type: verbatim
15721 #: ../src/guestfs-actions.pod:5703
15722 #, no-wrap
15723 msgid ""
15724 " int\n"
15725 " guestfs_rm_rf (guestfs_h *g,\n"
15726 "                const char *path);\n"
15727 "\n"
15728 msgstr ""
15729
15730 #. type: textblock
15731 #: ../src/guestfs-actions.pod:5707 ../fish/guestfish-actions.pod:3839
15732 msgid ""
15733 "Remove the file or directory C<path>, recursively removing the contents if "
15734 "its a directory.  This is like the C<rm -rf> shell command."
15735 msgstr ""
15736
15737 #. type: =head2
15738 #: ../src/guestfs-actions.pod:5715
15739 msgid "guestfs_rmdir"
15740 msgstr ""
15741
15742 #. type: verbatim
15743 #: ../src/guestfs-actions.pod:5717
15744 #, no-wrap
15745 msgid ""
15746 " int\n"
15747 " guestfs_rmdir (guestfs_h *g,\n"
15748 "                const char *path);\n"
15749 "\n"
15750 msgstr ""
15751
15752 #. type: textblock
15753 #: ../src/guestfs-actions.pod:5721 ../fish/guestfish-actions.pod:3847
15754 msgid "Remove the single directory C<path>."
15755 msgstr ""
15756
15757 #. type: =head2
15758 #: ../src/guestfs-actions.pod:5727
15759 msgid "guestfs_rmmountpoint"
15760 msgstr ""
15761
15762 #. type: verbatim
15763 #: ../src/guestfs-actions.pod:5729
15764 #, no-wrap
15765 msgid ""
15766 " int\n"
15767 " guestfs_rmmountpoint (guestfs_h *g,\n"
15768 "                       const char *exemptpath);\n"
15769 "\n"
15770 msgstr ""
15771
15772 #. type: textblock
15773 #: ../src/guestfs-actions.pod:5733
15774 msgid ""
15775 "This calls removes a mountpoint that was previously created with "
15776 "C<guestfs_mkmountpoint>.  See C<guestfs_mkmountpoint> for full details."
15777 msgstr ""
15778
15779 #. type: =head2
15780 #: ../src/guestfs-actions.pod:5741
15781 msgid "guestfs_scrub_device"
15782 msgstr ""
15783
15784 #. type: verbatim
15785 #: ../src/guestfs-actions.pod:5743
15786 #, no-wrap
15787 msgid ""
15788 " int\n"
15789 " guestfs_scrub_device (guestfs_h *g,\n"
15790 "                       const char *device);\n"
15791 "\n"
15792 msgstr ""
15793
15794 #. type: textblock
15795 #: ../src/guestfs-actions.pod:5747 ../fish/guestfish-actions.pod:3861
15796 msgid ""
15797 "This command writes patterns over C<device> to make data retrieval more "
15798 "difficult."
15799 msgstr ""
15800
15801 #. type: textblock
15802 #: ../src/guestfs-actions.pod:5750 ../src/guestfs-actions.pod:5771
15803 #: ../src/guestfs-actions.pod:5790 ../fish/guestfish-actions.pod:3864
15804 #: ../fish/guestfish-actions.pod:3879 ../fish/guestfish-actions.pod:3892
15805 msgid ""
15806 "It is an interface to the L<scrub(1)> program.  See that manual page for "
15807 "more details."
15808 msgstr ""
15809
15810 #. type: textblock
15811 #: ../src/guestfs-actions.pod:5758 ../src/guestfs-actions.pod:5776
15812 #: ../src/guestfs-actions.pod:5795
15813 msgid "(Added in 1.0.52)"
15814 msgstr ""
15815
15816 #. type: =head2
15817 #: ../src/guestfs-actions.pod:5760
15818 msgid "guestfs_scrub_file"
15819 msgstr ""
15820
15821 #. type: verbatim
15822 #: ../src/guestfs-actions.pod:5762
15823 #, no-wrap
15824 msgid ""
15825 " int\n"
15826 " guestfs_scrub_file (guestfs_h *g,\n"
15827 "                     const char *file);\n"
15828 "\n"
15829 msgstr ""
15830
15831 #. type: textblock
15832 #: ../src/guestfs-actions.pod:5766 ../fish/guestfish-actions.pod:3874
15833 msgid ""
15834 "This command writes patterns over a file to make data retrieval more "
15835 "difficult."
15836 msgstr ""
15837
15838 #. type: textblock
15839 #: ../src/guestfs-actions.pod:5769 ../fish/guestfish-actions.pod:3877
15840 msgid "The file is I<removed> after scrubbing."
15841 msgstr ""
15842
15843 #. type: =head2
15844 #: ../src/guestfs-actions.pod:5778
15845 msgid "guestfs_scrub_freespace"
15846 msgstr ""
15847
15848 #. type: verbatim
15849 #: ../src/guestfs-actions.pod:5780
15850 #, no-wrap
15851 msgid ""
15852 " int\n"
15853 " guestfs_scrub_freespace (guestfs_h *g,\n"
15854 "                          const char *dir);\n"
15855 "\n"
15856 msgstr ""
15857
15858 #. type: textblock
15859 #: ../src/guestfs-actions.pod:5784
15860 msgid ""
15861 "This command creates the directory C<dir> and then fills it with files until "
15862 "the filesystem is full, and scrubs the files as for C<guestfs_scrub_file>, "
15863 "and deletes them.  The intention is to scrub any free space on the partition "
15864 "containing C<dir>."
15865 msgstr ""
15866
15867 #. type: =head2
15868 #: ../src/guestfs-actions.pod:5797
15869 msgid "guestfs_set_append"
15870 msgstr ""
15871
15872 #. type: verbatim
15873 #: ../src/guestfs-actions.pod:5799
15874 #, no-wrap
15875 msgid ""
15876 " int\n"
15877 " guestfs_set_append (guestfs_h *g,\n"
15878 "                     const char *append);\n"
15879 "\n"
15880 msgstr ""
15881
15882 #. type: textblock
15883 #: ../src/guestfs-actions.pod:5803 ../fish/guestfish-actions.pod:3901
15884 msgid ""
15885 "This function is used to add additional options to the guest kernel command "
15886 "line."
15887 msgstr ""
15888
15889 #. type: textblock
15890 #: ../src/guestfs-actions.pod:5806 ../fish/guestfish-actions.pod:3904
15891 msgid ""
15892 "The default is C<NULL> unless overridden by setting C<LIBGUESTFS_APPEND> "
15893 "environment variable."
15894 msgstr ""
15895
15896 #. type: textblock
15897 #: ../src/guestfs-actions.pod:5809 ../fish/guestfish-actions.pod:3907
15898 msgid ""
15899 "Setting C<append> to C<NULL> means I<no> additional options are passed "
15900 "(libguestfs always adds a few of its own)."
15901 msgstr ""
15902
15903 #. type: =head2
15904 #: ../src/guestfs-actions.pod:5816
15905 msgid "guestfs_set_attach_method"
15906 msgstr ""
15907
15908 #. type: verbatim
15909 #: ../src/guestfs-actions.pod:5818
15910 #, no-wrap
15911 msgid ""
15912 " int\n"
15913 " guestfs_set_attach_method (guestfs_h *g,\n"
15914 "                            const char *attachmethod);\n"
15915 "\n"
15916 msgstr ""
15917
15918 #. type: textblock
15919 #: ../src/guestfs-actions.pod:5822 ../fish/guestfish-actions.pod:3916
15920 msgid ""
15921 "Set the method that libguestfs uses to connect to the back end guestfsd "
15922 "daemon.  Possible methods are:"
15923 msgstr ""
15924
15925 #. type: textblock
15926 #: ../src/guestfs-actions.pod:5829 ../fish/guestfish-actions.pod:3923
15927 msgid ""
15928 "Launch an appliance and connect to it.  This is the ordinary method and the "
15929 "default."
15930 msgstr ""
15931
15932 #. type: =item
15933 #: ../src/guestfs-actions.pod:5832 ../fish/guestfish-actions.pod:3926
15934 msgid "C<unix:I<path>>"
15935 msgstr ""
15936
15937 #. type: textblock
15938 #: ../src/guestfs-actions.pod:5834 ../fish/guestfish-actions.pod:3928
15939 msgid "Connect to the Unix domain socket I<path>."
15940 msgstr ""
15941
15942 #. type: textblock
15943 #: ../src/guestfs-actions.pod:5836 ../fish/guestfish-actions.pod:3930
15944 msgid ""
15945 "This method lets you connect to an existing daemon or (using virtio-serial) "
15946 "to a live guest.  For more information, see L<guestfs(3)/ATTACHING TO "
15947 "RUNNING DAEMONS>."
15948 msgstr ""
15949
15950 #. type: =head2
15951 #: ../src/guestfs-actions.pod:5844
15952 msgid "guestfs_set_autosync"
15953 msgstr ""
15954
15955 #. type: verbatim
15956 #: ../src/guestfs-actions.pod:5846
15957 #, no-wrap
15958 msgid ""
15959 " int\n"
15960 " guestfs_set_autosync (guestfs_h *g,\n"
15961 "                       int autosync);\n"
15962 "\n"
15963 msgstr ""
15964
15965 #. type: textblock
15966 #: ../src/guestfs-actions.pod:5850 ../fish/guestfish-actions.pod:3942
15967 msgid ""
15968 "If C<autosync> is true, this enables autosync.  Libguestfs will make a best "
15969 "effort attempt to make filesystems consistent and synchronized when the "
15970 "handle is closed (also if the program exits without closing handles)."
15971 msgstr ""
15972
15973 #. type: textblock
15974 #: ../src/guestfs-actions.pod:5855 ../fish/guestfish-actions.pod:3947
15975 msgid ""
15976 "This is enabled by default (since libguestfs 1.5.24, previously it was "
15977 "disabled by default)."
15978 msgstr ""
15979
15980 #. type: =head2
15981 #: ../src/guestfs-actions.pod:5862
15982 msgid "guestfs_set_direct"
15983 msgstr ""
15984
15985 #. type: verbatim
15986 #: ../src/guestfs-actions.pod:5864
15987 #, no-wrap
15988 msgid ""
15989 " int\n"
15990 " guestfs_set_direct (guestfs_h *g,\n"
15991 "                     int direct);\n"
15992 "\n"
15993 msgstr ""
15994
15995 #. type: textblock
15996 #: ../src/guestfs-actions.pod:5868 ../fish/guestfish-actions.pod:3956
15997 msgid ""
15998 "If the direct appliance mode flag is enabled, then stdin and stdout are "
15999 "passed directly through to the appliance once it is launched."
16000 msgstr ""
16001
16002 #. type: textblock
16003 #: ../src/guestfs-actions.pod:5872
16004 msgid ""
16005 "One consequence of this is that log messages aren't caught by the library "
16006 "and handled by C<guestfs_set_log_message_callback>, but go straight to "
16007 "stdout."
16008 msgstr ""
16009
16010 #. type: textblock
16011 #: ../src/guestfs-actions.pod:5876 ../fish/guestfish-actions.pod:3964
16012 msgid "You probably don't want to use this unless you know what you are doing."
16013 msgstr ""
16014
16015 #. type: textblock
16016 #: ../src/guestfs-actions.pod:5879 ../fish/guestfish-actions.pod:3967
16017 msgid "The default is disabled."
16018 msgstr ""
16019
16020 #. type: =head2
16021 #: ../src/guestfs-actions.pod:5885
16022 msgid "guestfs_set_e2label"
16023 msgstr ""
16024
16025 #. type: verbatim
16026 #: ../src/guestfs-actions.pod:5887
16027 #, no-wrap
16028 msgid ""
16029 " int\n"
16030 " guestfs_set_e2label (guestfs_h *g,\n"
16031 "                      const char *device,\n"
16032 "                      const char *label);\n"
16033 "\n"
16034 msgstr ""
16035
16036 #. type: textblock
16037 #: ../src/guestfs-actions.pod:5892 ../fish/guestfish-actions.pod:3973
16038 msgid ""
16039 "This sets the ext2/3/4 filesystem label of the filesystem on C<device> to "
16040 "C<label>.  Filesystem labels are limited to 16 characters."
16041 msgstr ""
16042
16043 #. type: textblock
16044 #: ../src/guestfs-actions.pod:5896
16045 msgid ""
16046 "You can use either C<guestfs_tune2fs_l> or C<guestfs_get_e2label> to return "
16047 "the existing label on a filesystem."
16048 msgstr ""
16049
16050 #. type: =head2
16051 #: ../src/guestfs-actions.pod:5903
16052 msgid "guestfs_set_e2uuid"
16053 msgstr ""
16054
16055 #. type: verbatim
16056 #: ../src/guestfs-actions.pod:5905
16057 #, no-wrap
16058 msgid ""
16059 " int\n"
16060 " guestfs_set_e2uuid (guestfs_h *g,\n"
16061 "                     const char *device,\n"
16062 "                     const char *uuid);\n"
16063 "\n"
16064 msgstr ""
16065
16066 #. type: textblock
16067 #: ../src/guestfs-actions.pod:5910 ../fish/guestfish-actions.pod:3984
16068 msgid ""
16069 "This sets the ext2/3/4 filesystem UUID of the filesystem on C<device> to "
16070 "C<uuid>.  The format of the UUID and alternatives such as C<clear>, "
16071 "C<random> and C<time> are described in the L<tune2fs(8)> manpage."
16072 msgstr ""
16073
16074 #. type: textblock
16075 #: ../src/guestfs-actions.pod:5915
16076 msgid ""
16077 "You can use either C<guestfs_tune2fs_l> or C<guestfs_get_e2uuid> to return "
16078 "the existing UUID of a filesystem."
16079 msgstr ""
16080
16081 #. type: =head2
16082 #: ../src/guestfs-actions.pod:5922
16083 msgid "guestfs_set_memsize"
16084 msgstr ""
16085
16086 #. type: verbatim
16087 #: ../src/guestfs-actions.pod:5924
16088 #, no-wrap
16089 msgid ""
16090 " int\n"
16091 " guestfs_set_memsize (guestfs_h *g,\n"
16092 "                      int memsize);\n"
16093 "\n"
16094 msgstr ""
16095
16096 #. type: textblock
16097 #: ../src/guestfs-actions.pod:5928
16098 msgid ""
16099 "This sets the memory size in megabytes allocated to the qemu subprocess.  "
16100 "This only has any effect if called before C<guestfs_launch>."
16101 msgstr ""
16102
16103 #. type: textblock
16104 #: ../src/guestfs-actions.pod:5932 ../fish/guestfish-actions.pod:4002
16105 msgid ""
16106 "You can also change this by setting the environment variable "
16107 "C<LIBGUESTFS_MEMSIZE> before the handle is created."
16108 msgstr ""
16109
16110 #. type: =head2
16111 #: ../src/guestfs-actions.pod:5943
16112 msgid "guestfs_set_network"
16113 msgstr ""
16114
16115 #. type: verbatim
16116 #: ../src/guestfs-actions.pod:5945
16117 #, no-wrap
16118 msgid ""
16119 " int\n"
16120 " guestfs_set_network (guestfs_h *g,\n"
16121 "                      int network);\n"
16122 "\n"
16123 msgstr ""
16124
16125 #. type: textblock
16126 #: ../src/guestfs-actions.pod:5949 ../fish/guestfish-actions.pod:4015
16127 msgid ""
16128 "If C<network> is true, then the network is enabled in the libguestfs "
16129 "appliance.  The default is false."
16130 msgstr ""
16131
16132 #. type: textblock
16133 #: ../src/guestfs-actions.pod:5952 ../fish/guestfish-actions.pod:4018
16134 msgid ""
16135 "This affects whether commands are able to access the network (see L<guestfs"
16136 "(3)/RUNNING COMMANDS>)."
16137 msgstr ""
16138
16139 #. type: textblock
16140 #: ../src/guestfs-actions.pod:5955
16141 msgid ""
16142 "You must call this before calling C<guestfs_launch>, otherwise it has no "
16143 "effect."
16144 msgstr ""
16145
16146 #. type: =head2
16147 #: ../src/guestfs-actions.pod:5962
16148 msgid "guestfs_set_path"
16149 msgstr ""
16150
16151 #. type: verbatim
16152 #: ../src/guestfs-actions.pod:5964
16153 #, no-wrap
16154 msgid ""
16155 " int\n"
16156 " guestfs_set_path (guestfs_h *g,\n"
16157 "                   const char *searchpath);\n"
16158 "\n"
16159 msgstr ""
16160
16161 #. type: textblock
16162 #: ../src/guestfs-actions.pod:5968 ../fish/guestfish-actions.pod:4030
16163 msgid "Set the path that libguestfs searches for kernel and initrd.img."
16164 msgstr ""
16165
16166 #. type: textblock
16167 #: ../src/guestfs-actions.pod:5970 ../fish/guestfish-actions.pod:4032
16168 msgid ""
16169 "The default is C<$libdir/guestfs> unless overridden by setting "
16170 "C<LIBGUESTFS_PATH> environment variable."
16171 msgstr ""
16172
16173 #. type: textblock
16174 #: ../src/guestfs-actions.pod:5973 ../fish/guestfish-actions.pod:4035
16175 msgid "Setting C<path> to C<NULL> restores the default path."
16176 msgstr ""
16177
16178 #. type: =head2
16179 #: ../src/guestfs-actions.pod:5979
16180 msgid "guestfs_set_qemu"
16181 msgstr ""
16182
16183 #. type: verbatim
16184 #: ../src/guestfs-actions.pod:5981
16185 #, no-wrap
16186 msgid ""
16187 " int\n"
16188 " guestfs_set_qemu (guestfs_h *g,\n"
16189 "                   const char *qemu);\n"
16190 "\n"
16191 msgstr ""
16192
16193 #. type: textblock
16194 #: ../src/guestfs-actions.pod:5985 ../fish/guestfish-actions.pod:4043
16195 msgid "Set the qemu binary that we will use."
16196 msgstr ""
16197
16198 #. type: textblock
16199 #: ../src/guestfs-actions.pod:5987 ../fish/guestfish-actions.pod:4045
16200 msgid ""
16201 "The default is chosen when the library was compiled by the configure script."
16202 msgstr ""
16203
16204 #. type: textblock
16205 #: ../src/guestfs-actions.pod:5990 ../fish/guestfish-actions.pod:4048
16206 msgid ""
16207 "You can also override this by setting the C<LIBGUESTFS_QEMU> environment "
16208 "variable."
16209 msgstr ""
16210
16211 #. type: textblock
16212 #: ../src/guestfs-actions.pod:5993 ../fish/guestfish-actions.pod:4051
16213 msgid "Setting C<qemu> to C<NULL> restores the default qemu binary."
16214 msgstr ""
16215
16216 #. type: textblock
16217 #: ../src/guestfs-actions.pod:5995 ../fish/guestfish-actions.pod:4053
16218 msgid ""
16219 "Note that you should call this function as early as possible after creating "
16220 "the handle.  This is because some pre-launch operations depend on testing "
16221 "qemu features (by running C<qemu -help>).  If the qemu binary changes, we "
16222 "don't retest features, and so you might see inconsistent results.  Using the "
16223 "environment variable C<LIBGUESTFS_QEMU> is safest of all since that picks "
16224 "the qemu binary at the same time as the handle is created."
16225 msgstr ""
16226
16227 #. type: =head2
16228 #: ../src/guestfs-actions.pod:6007
16229 msgid "guestfs_set_recovery_proc"
16230 msgstr ""
16231
16232 #. type: verbatim
16233 #: ../src/guestfs-actions.pod:6009
16234 #, no-wrap
16235 msgid ""
16236 " int\n"
16237 " guestfs_set_recovery_proc (guestfs_h *g,\n"
16238 "                            int recoveryproc);\n"
16239 "\n"
16240 msgstr ""
16241
16242 #. type: textblock
16243 #: ../src/guestfs-actions.pod:6013
16244 msgid ""
16245 "If this is called with the parameter C<false> then C<guestfs_launch> does "
16246 "not create a recovery process.  The purpose of the recovery process is to "
16247 "stop runaway qemu processes in the case where the main program aborts "
16248 "abruptly."
16249 msgstr ""
16250
16251 #. type: textblock
16252 #: ../src/guestfs-actions.pod:6018
16253 msgid ""
16254 "This only has any effect if called before C<guestfs_launch>, and the default "
16255 "is true."
16256 msgstr ""
16257
16258 #. type: textblock
16259 #: ../src/guestfs-actions.pod:6021 ../fish/guestfish-actions.pod:4075
16260 msgid ""
16261 "About the only time when you would want to disable this is if the main "
16262 "process will fork itself into the background (\"daemonize\" itself).  In "
16263 "this case the recovery process thinks that the main program has disappeared "
16264 "and so kills qemu, which is not very helpful."
16265 msgstr ""
16266
16267 #. type: =head2
16268 #: ../src/guestfs-actions.pod:6031
16269 msgid "guestfs_set_selinux"
16270 msgstr ""
16271
16272 #. type: verbatim
16273 #: ../src/guestfs-actions.pod:6033
16274 #, no-wrap
16275 msgid ""
16276 " int\n"
16277 " guestfs_set_selinux (guestfs_h *g,\n"
16278 "                      int selinux);\n"
16279 "\n"
16280 msgstr ""
16281
16282 #. type: textblock
16283 #: ../src/guestfs-actions.pod:6037 ../fish/guestfish-actions.pod:4087
16284 msgid ""
16285 "This sets the selinux flag that is passed to the appliance at boot time.  "
16286 "The default is C<selinux=0> (disabled)."
16287 msgstr ""
16288
16289 #. type: textblock
16290 #: ../src/guestfs-actions.pod:6040 ../fish/guestfish-actions.pod:4090
16291 msgid ""
16292 "Note that if SELinux is enabled, it is always in Permissive mode "
16293 "(C<enforcing=0>)."
16294 msgstr ""
16295
16296 #. type: =head2
16297 #: ../src/guestfs-actions.pod:6050
16298 msgid "guestfs_set_trace"
16299 msgstr ""
16300
16301 #. type: verbatim
16302 #: ../src/guestfs-actions.pod:6052
16303 #, no-wrap
16304 msgid ""
16305 " int\n"
16306 " guestfs_set_trace (guestfs_h *g,\n"
16307 "                    int trace);\n"
16308 "\n"
16309 msgstr ""
16310
16311 #. type: textblock
16312 #: ../src/guestfs-actions.pod:6056 ../fish/guestfish-actions.pod:4102
16313 msgid ""
16314 "If the command trace flag is set to 1, then libguestfs calls, parameters and "
16315 "return values are traced."
16316 msgstr ""
16317
16318 #. type: textblock
16319 #: ../src/guestfs-actions.pod:6059 ../fish/guestfish-actions.pod:4105
16320 msgid ""
16321 "If you want to trace C API calls into libguestfs (and other libraries) then "
16322 "possibly a better way is to use the external ltrace(1) command."
16323 msgstr ""
16324
16325 #. type: textblock
16326 #: ../src/guestfs-actions.pod:6063 ../fish/guestfish-actions.pod:4109
16327 msgid ""
16328 "Command traces are disabled unless the environment variable "
16329 "C<LIBGUESTFS_TRACE> is defined and set to C<1>."
16330 msgstr ""
16331
16332 #. type: textblock
16333 #: ../src/guestfs-actions.pod:6066
16334 msgid ""
16335 "Trace messages are normally sent to C<stderr>, unless you register a "
16336 "callback to send them somewhere else (see C<guestfs_set_event_callback>)."
16337 msgstr ""
16338
16339 #. type: =head2
16340 #: ../src/guestfs-actions.pod:6074
16341 msgid "guestfs_set_verbose"
16342 msgstr ""
16343
16344 #. type: verbatim
16345 #: ../src/guestfs-actions.pod:6076
16346 #, no-wrap
16347 msgid ""
16348 " int\n"
16349 " guestfs_set_verbose (guestfs_h *g,\n"
16350 "                      int verbose);\n"
16351 "\n"
16352 msgstr ""
16353
16354 #. type: textblock
16355 #: ../src/guestfs-actions.pod:6080 ../fish/guestfish-actions.pod:4122
16356 msgid "If C<verbose> is true, this turns on verbose messages."
16357 msgstr ""
16358
16359 #. type: textblock
16360 #: ../src/guestfs-actions.pod:6082 ../fish/guestfish-actions.pod:4124
16361 msgid ""
16362 "Verbose messages are disabled unless the environment variable "
16363 "C<LIBGUESTFS_DEBUG> is defined and set to C<1>."
16364 msgstr ""
16365
16366 #. type: textblock
16367 #: ../src/guestfs-actions.pod:6085
16368 msgid ""
16369 "Verbose messages are normally sent to C<stderr>, unless you register a "
16370 "callback to send them somewhere else (see C<guestfs_set_event_callback>)."
16371 msgstr ""
16372
16373 #. type: =head2
16374 #: ../src/guestfs-actions.pod:6093
16375 msgid "guestfs_setcon"
16376 msgstr ""
16377
16378 #. type: verbatim
16379 #: ../src/guestfs-actions.pod:6095
16380 #, no-wrap
16381 msgid ""
16382 " int\n"
16383 " guestfs_setcon (guestfs_h *g,\n"
16384 "                 const char *context);\n"
16385 "\n"
16386 msgstr ""
16387
16388 #. type: textblock
16389 #: ../src/guestfs-actions.pod:6099 ../fish/guestfish-actions.pod:4135
16390 msgid ""
16391 "This sets the SELinux security context of the daemon to the string "
16392 "C<context>."
16393 msgstr ""
16394
16395 #. type: textblock
16396 #: ../src/guestfs-actions.pod:6102 ../fish/guestfish-actions.pod:4138
16397 msgid "See the documentation about SELINUX in L<guestfs(3)>."
16398 msgstr ""
16399
16400 #. type: =head2
16401 #: ../src/guestfs-actions.pod:6108
16402 msgid "guestfs_setxattr"
16403 msgstr ""
16404
16405 #. type: verbatim
16406 #: ../src/guestfs-actions.pod:6110
16407 #, no-wrap
16408 msgid ""
16409 " int\n"
16410 " guestfs_setxattr (guestfs_h *g,\n"
16411 "                   const char *xattr,\n"
16412 "                   const char *val,\n"
16413 "                   int vallen,\n"
16414 "                   const char *path);\n"
16415 "\n"
16416 msgstr ""
16417
16418 #. type: textblock
16419 #: ../src/guestfs-actions.pod:6117 ../fish/guestfish-actions.pod:4144
16420 msgid ""
16421 "This call sets the extended attribute named C<xattr> of the file C<path> to "
16422 "the value C<val> (of length C<vallen>).  The value is arbitrary 8 bit data."
16423 msgstr ""
16424
16425 #. type: textblock
16426 #: ../src/guestfs-actions.pod:6121
16427 msgid "See also: C<guestfs_lsetxattr>, L<attr(5)>."
16428 msgstr ""
16429
16430 #. type: =head2
16431 #: ../src/guestfs-actions.pod:6127
16432 msgid "guestfs_sfdisk"
16433 msgstr ""
16434
16435 #. type: verbatim
16436 #: ../src/guestfs-actions.pod:6129
16437 #, no-wrap
16438 msgid ""
16439 " int\n"
16440 " guestfs_sfdisk (guestfs_h *g,\n"
16441 "                 const char *device,\n"
16442 "                 int cyls,\n"
16443 "                 int heads,\n"
16444 "                 int sectors,\n"
16445 "                 char *const *lines);\n"
16446 "\n"
16447 msgstr ""
16448
16449 #. type: textblock
16450 #: ../src/guestfs-actions.pod:6137 ../fish/guestfish-actions.pod:4154
16451 msgid ""
16452 "This is a direct interface to the L<sfdisk(8)> program for creating "
16453 "partitions on block devices."
16454 msgstr ""
16455
16456 #. type: textblock
16457 #: ../src/guestfs-actions.pod:6140 ../fish/guestfish-actions.pod:4157
16458 msgid "C<device> should be a block device, for example C</dev/sda>."
16459 msgstr ""
16460
16461 #. type: textblock
16462 #: ../src/guestfs-actions.pod:6142 ../fish/guestfish-actions.pod:4159
16463 msgid ""
16464 "C<cyls>, C<heads> and C<sectors> are the number of cylinders, heads and "
16465 "sectors on the device, which are passed directly to sfdisk as the I<-C>, I<-"
16466 "H> and I<-S> parameters.  If you pass C<0> for any of these, then the "
16467 "corresponding parameter is omitted.  Usually for 'large' disks, you can just "
16468 "pass C<0> for these, but for small (floppy-sized) disks, sfdisk (or rather, "
16469 "the kernel) cannot work out the right geometry and you will need to tell it."
16470 msgstr ""
16471
16472 #. type: textblock
16473 #: ../src/guestfs-actions.pod:6150 ../fish/guestfish-actions.pod:4167
16474 msgid ""
16475 "C<lines> is a list of lines that we feed to C<sfdisk>.  For more information "
16476 "refer to the L<sfdisk(8)> manpage."
16477 msgstr ""
16478
16479 #. type: textblock
16480 #: ../src/guestfs-actions.pod:6153 ../fish/guestfish-actions.pod:4170
16481 msgid ""
16482 "To create a single partition occupying the whole disk, you would pass "
16483 "C<lines> as a single element list, when the single element being the string "
16484 "C<,> (comma)."
16485 msgstr ""
16486
16487 #. type: textblock
16488 #: ../src/guestfs-actions.pod:6157
16489 msgid ""
16490 "See also: C<guestfs_sfdisk_l>, C<guestfs_sfdisk_N>, C<guestfs_part_init>"
16491 msgstr ""
16492
16493 #. type: textblock
16494 #: ../src/guestfs-actions.pod:6165 ../src/guestfs-actions.pod:6195
16495 #: ../src/guestfs-actions.pod:6228 ../fish/guestfish-actions.pod:4180
16496 #: ../fish/guestfish-actions.pod:4203 ../fish/guestfish-actions.pod:4225
16497 msgid ""
16498 "This function is deprecated.  In new code, use the C<part_add> call instead."
16499 msgstr ""
16500
16501 #. type: =head2
16502 #: ../src/guestfs-actions.pod:6174
16503 msgid "guestfs_sfdiskM"
16504 msgstr ""
16505
16506 #. type: verbatim
16507 #: ../src/guestfs-actions.pod:6176
16508 #, no-wrap
16509 msgid ""
16510 " int\n"
16511 " guestfs_sfdiskM (guestfs_h *g,\n"
16512 "                  const char *device,\n"
16513 "                  char *const *lines);\n"
16514 "\n"
16515 msgstr ""
16516
16517 #. type: textblock
16518 #: ../src/guestfs-actions.pod:6181
16519 msgid ""
16520 "This is a simplified interface to the C<guestfs_sfdisk> command, where "
16521 "partition sizes are specified in megabytes only (rounded to the nearest "
16522 "cylinder) and you don't need to specify the cyls, heads and sectors "
16523 "parameters which were rarely if ever used anyway."
16524 msgstr ""
16525
16526 #. type: textblock
16527 #: ../src/guestfs-actions.pod:6187
16528 msgid ""
16529 "See also: C<guestfs_sfdisk>, the L<sfdisk(8)> manpage and "
16530 "C<guestfs_part_disk>"
16531 msgstr ""
16532
16533 #. type: =head2
16534 #: ../src/guestfs-actions.pod:6204
16535 msgid "guestfs_sfdisk_N"
16536 msgstr ""
16537
16538 #. type: verbatim
16539 #: ../src/guestfs-actions.pod:6206
16540 #, no-wrap
16541 msgid ""
16542 " int\n"
16543 " guestfs_sfdisk_N (guestfs_h *g,\n"
16544 "                   const char *device,\n"
16545 "                   int partnum,\n"
16546 "                   int cyls,\n"
16547 "                   int heads,\n"
16548 "                   int sectors,\n"
16549 "                   const char *line);\n"
16550 "\n"
16551 msgstr ""
16552
16553 #. type: textblock
16554 #: ../src/guestfs-actions.pod:6215 ../fish/guestfish-actions.pod:4214
16555 msgid ""
16556 "This runs L<sfdisk(8)> option to modify just the single partition C<n> "
16557 "(note: C<n> counts from 1)."
16558 msgstr ""
16559
16560 #. type: textblock
16561 #: ../src/guestfs-actions.pod:6218
16562 msgid ""
16563 "For other parameters, see C<guestfs_sfdisk>.  You should usually pass C<0> "
16564 "for the cyls/heads/sectors parameters."
16565 msgstr ""
16566
16567 #. type: textblock
16568 #: ../src/guestfs-actions.pod:6221
16569 msgid "See also: C<guestfs_part_add>"
16570 msgstr ""
16571
16572 #. type: =head2
16573 #: ../src/guestfs-actions.pod:6237
16574 msgid "guestfs_sfdisk_disk_geometry"
16575 msgstr ""
16576
16577 #. type: verbatim
16578 #: ../src/guestfs-actions.pod:6239
16579 #, no-wrap
16580 msgid ""
16581 " char *\n"
16582 " guestfs_sfdisk_disk_geometry (guestfs_h *g,\n"
16583 "                               const char *device);\n"
16584 "\n"
16585 msgstr ""
16586
16587 #. type: textblock
16588 #: ../src/guestfs-actions.pod:6243
16589 msgid ""
16590 "This displays the disk geometry of C<device> read from the partition table.  "
16591 "Especially in the case where the underlying block device has been resized, "
16592 "this can be different from the kernel's idea of the geometry (see "
16593 "C<guestfs_sfdisk_kernel_geometry>)."
16594 msgstr ""
16595
16596 #. type: textblock
16597 #: ../src/guestfs-actions.pod:6248 ../src/guestfs-actions.pod:6264
16598 #: ../fish/guestfish-actions.pod:4241 ../fish/guestfish-actions.pod:4250
16599 msgid "The result is in human-readable format, and not designed to be parsed."
16600 msgstr ""
16601
16602 #. type: =head2
16603 #: ../src/guestfs-actions.pod:6256
16604 msgid "guestfs_sfdisk_kernel_geometry"
16605 msgstr ""
16606
16607 #. type: verbatim
16608 #: ../src/guestfs-actions.pod:6258
16609 #, no-wrap
16610 msgid ""
16611 " char *\n"
16612 " guestfs_sfdisk_kernel_geometry (guestfs_h *g,\n"
16613 "                                 const char *device);\n"
16614 "\n"
16615 msgstr ""
16616
16617 #. type: textblock
16618 #: ../src/guestfs-actions.pod:6262 ../fish/guestfish-actions.pod:4248
16619 msgid "This displays the kernel's idea of the geometry of C<device>."
16620 msgstr ""
16621
16622 #. type: =head2
16623 #: ../src/guestfs-actions.pod:6272
16624 msgid "guestfs_sfdisk_l"
16625 msgstr ""
16626
16627 #. type: verbatim
16628 #: ../src/guestfs-actions.pod:6274
16629 #, no-wrap
16630 msgid ""
16631 " char *\n"
16632 " guestfs_sfdisk_l (guestfs_h *g,\n"
16633 "                   const char *device);\n"
16634 "\n"
16635 msgstr ""
16636
16637 #. type: textblock
16638 #: ../src/guestfs-actions.pod:6278 ../fish/guestfish-actions.pod:4257
16639 msgid ""
16640 "This displays the partition table on C<device>, in the human-readable output "
16641 "of the L<sfdisk(8)> command.  It is not intended to be parsed."
16642 msgstr ""
16643
16644 #. type: textblock
16645 #: ../src/guestfs-actions.pod:6282
16646 msgid "See also: C<guestfs_part_list>"
16647 msgstr ""
16648
16649 #. type: textblock
16650 #: ../src/guestfs-actions.pod:6287 ../fish/guestfish-actions.pod:4263
16651 msgid ""
16652 "This function is deprecated.  In new code, use the C<part_list> call instead."
16653 msgstr ""
16654
16655 #. type: =head2
16656 #: ../src/guestfs-actions.pod:6296
16657 msgid "guestfs_sh"
16658 msgstr ""
16659
16660 #. type: verbatim
16661 #: ../src/guestfs-actions.pod:6298
16662 #, no-wrap
16663 msgid ""
16664 " char *\n"
16665 " guestfs_sh (guestfs_h *g,\n"
16666 "             const char *command);\n"
16667 "\n"
16668 msgstr ""
16669
16670 #. type: textblock
16671 #: ../src/guestfs-actions.pod:6302 ../fish/guestfish-actions.pod:4274
16672 msgid ""
16673 "This call runs a command from the guest filesystem via the guest's C</bin/"
16674 "sh>."
16675 msgstr ""
16676
16677 #. type: textblock
16678 #: ../src/guestfs-actions.pod:6305
16679 msgid "This is like C<guestfs_command>, but passes the command to:"
16680 msgstr ""
16681
16682 #. type: verbatim
16683 #: ../src/guestfs-actions.pod:6307 ../fish/guestfish-actions.pod:4279
16684 #, no-wrap
16685 msgid ""
16686 " /bin/sh -c \"command\"\n"
16687 "\n"
16688 msgstr ""
16689
16690 #. type: textblock
16691 #: ../src/guestfs-actions.pod:6309 ../fish/guestfish-actions.pod:4281
16692 msgid ""
16693 "Depending on the guest's shell, this usually results in wildcards being "
16694 "expanded, shell expressions being interpolated and so on."
16695 msgstr ""
16696
16697 #. type: textblock
16698 #: ../src/guestfs-actions.pod:6313
16699 msgid "All the provisos about C<guestfs_command> apply to this call."
16700 msgstr ""
16701
16702 #. type: =head2
16703 #: ../src/guestfs-actions.pod:6320
16704 msgid "guestfs_sh_lines"
16705 msgstr ""
16706
16707 #. type: verbatim
16708 #: ../src/guestfs-actions.pod:6322
16709 #, no-wrap
16710 msgid ""
16711 " char **\n"
16712 " guestfs_sh_lines (guestfs_h *g,\n"
16713 "                   const char *command);\n"
16714 "\n"
16715 msgstr ""
16716
16717 #. type: textblock
16718 #: ../src/guestfs-actions.pod:6326
16719 msgid ""
16720 "This is the same as C<guestfs_sh>, but splits the result into a list of "
16721 "lines."
16722 msgstr ""
16723
16724 #. type: textblock
16725 #: ../src/guestfs-actions.pod:6329
16726 msgid "See also: C<guestfs_command_lines>"
16727 msgstr ""
16728
16729 #. type: =head2
16730 #: ../src/guestfs-actions.pod:6337
16731 msgid "guestfs_sleep"
16732 msgstr ""
16733
16734 #. type: verbatim
16735 #: ../src/guestfs-actions.pod:6339
16736 #, no-wrap
16737 msgid ""
16738 " int\n"
16739 " guestfs_sleep (guestfs_h *g,\n"
16740 "                int secs);\n"
16741 "\n"
16742 msgstr ""
16743
16744 #. type: textblock
16745 #: ../src/guestfs-actions.pod:6343 ../fish/guestfish-actions.pod:4300
16746 msgid "Sleep for C<secs> seconds."
16747 msgstr ""
16748
16749 #. type: textblock
16750 #: ../src/guestfs-actions.pod:6347
16751 msgid "(Added in 1.0.41)"
16752 msgstr ""
16753
16754 #. type: =head2
16755 #: ../src/guestfs-actions.pod:6349 ../src/guestfs-structs.pod:109
16756 msgid "guestfs_stat"
16757 msgstr ""
16758
16759 #. type: verbatim
16760 #: ../src/guestfs-actions.pod:6351
16761 #, no-wrap
16762 msgid ""
16763 " struct guestfs_stat *\n"
16764 " guestfs_stat (guestfs_h *g,\n"
16765 "               const char *path);\n"
16766 "\n"
16767 msgstr ""
16768
16769 #. type: textblock
16770 #: ../src/guestfs-actions.pod:6357 ../fish/guestfish-actions.pod:4308
16771 msgid "This is the same as the C<stat(2)> system call."
16772 msgstr ""
16773
16774 #. type: =head2
16775 #: ../src/guestfs-actions.pod:6365 ../src/guestfs-structs.pod:135
16776 msgid "guestfs_statvfs"
16777 msgstr ""
16778
16779 #. type: verbatim
16780 #: ../src/guestfs-actions.pod:6367
16781 #, no-wrap
16782 msgid ""
16783 " struct guestfs_statvfs *\n"
16784 " guestfs_statvfs (guestfs_h *g,\n"
16785 "                  const char *path);\n"
16786 "\n"
16787 msgstr ""
16788
16789 #. type: textblock
16790 #: ../src/guestfs-actions.pod:6371 ../fish/guestfish-actions.pod:4314
16791 msgid ""
16792 "Returns file system statistics for any mounted file system.  C<path> should "
16793 "be a file or directory in the mounted file system (typically it is the mount "
16794 "point itself, but it doesn't need to be)."
16795 msgstr ""
16796
16797 #. type: textblock
16798 #: ../src/guestfs-actions.pod:6375 ../fish/guestfish-actions.pod:4318
16799 msgid "This is the same as the C<statvfs(2)> system call."
16800 msgstr ""
16801
16802 #. type: textblock
16803 #: ../src/guestfs-actions.pod:6377
16804 msgid ""
16805 "This function returns a C<struct guestfs_statvfs *>, or NULL if there was an "
16806 "error.  I<The caller must call C<guestfs_free_statvfs> after use>."
16807 msgstr ""
16808
16809 #. type: =head2
16810 #: ../src/guestfs-actions.pod:6383
16811 msgid "guestfs_strings"
16812 msgstr ""
16813
16814 #. type: verbatim
16815 #: ../src/guestfs-actions.pod:6385
16816 #, no-wrap
16817 msgid ""
16818 " char **\n"
16819 " guestfs_strings (guestfs_h *g,\n"
16820 "                  const char *path);\n"
16821 "\n"
16822 msgstr ""
16823
16824 #. type: textblock
16825 #: ../src/guestfs-actions.pod:6389 ../fish/guestfish-actions.pod:4324
16826 msgid ""
16827 "This runs the L<strings(1)> command on a file and returns the list of "
16828 "printable strings found."
16829 msgstr ""
16830
16831 #. type: =head2
16832 #: ../src/guestfs-actions.pod:6401
16833 msgid "guestfs_strings_e"
16834 msgstr ""
16835
16836 #. type: verbatim
16837 #: ../src/guestfs-actions.pod:6403
16838 #, no-wrap
16839 msgid ""
16840 " char **\n"
16841 " guestfs_strings_e (guestfs_h *g,\n"
16842 "                    const char *encoding,\n"
16843 "                    const char *path);\n"
16844 "\n"
16845 msgstr ""
16846
16847 #. type: textblock
16848 #: ../src/guestfs-actions.pod:6408
16849 msgid ""
16850 "This is like the C<guestfs_strings> command, but allows you to specify the "
16851 "encoding of strings that are looked for in the source file C<path>."
16852 msgstr ""
16853
16854 #. type: textblock
16855 #: ../src/guestfs-actions.pod:6412 ../fish/guestfish-actions.pod:4338
16856 msgid "Allowed encodings are:"
16857 msgstr ""
16858
16859 #. type: =item
16860 #: ../src/guestfs-actions.pod:6416 ../fish/guestfish-actions.pod:4342
16861 msgid "s"
16862 msgstr ""
16863
16864 #. type: textblock
16865 #: ../src/guestfs-actions.pod:6418
16866 msgid ""
16867 "Single 7-bit-byte characters like ASCII and the ASCII-compatible parts of "
16868 "ISO-8859-X (this is what C<guestfs_strings> uses)."
16869 msgstr ""
16870
16871 #. type: =item
16872 #: ../src/guestfs-actions.pod:6421 ../fish/guestfish-actions.pod:4347
16873 msgid "S"
16874 msgstr ""
16875
16876 #. type: textblock
16877 #: ../src/guestfs-actions.pod:6423 ../fish/guestfish-actions.pod:4349
16878 msgid "Single 8-bit-byte characters."
16879 msgstr ""
16880
16881 #. type: =item
16882 #: ../src/guestfs-actions.pod:6425 ../fish/guestfish-actions.pod:4351
16883 msgid "b"
16884 msgstr ""
16885
16886 #. type: textblock
16887 #: ../src/guestfs-actions.pod:6427 ../fish/guestfish-actions.pod:4353
16888 msgid "16-bit big endian strings such as those encoded in UTF-16BE or UCS-2BE."
16889 msgstr ""
16890
16891 #. type: =item
16892 #: ../src/guestfs-actions.pod:6430 ../fish/guestfish-actions.pod:4356
16893 msgid "l (lower case letter L)"
16894 msgstr ""
16895
16896 #. type: textblock
16897 #: ../src/guestfs-actions.pod:6432 ../fish/guestfish-actions.pod:4358
16898 msgid ""
16899 "16-bit little endian such as UTF-16LE and UCS-2LE.  This is useful for "
16900 "examining binaries in Windows guests."
16901 msgstr ""
16902
16903 #. type: =item
16904 #: ../src/guestfs-actions.pod:6435 ../fish/guestfish-actions.pod:4361
16905 msgid "B"
16906 msgstr ""
16907
16908 #. type: textblock
16909 #: ../src/guestfs-actions.pod:6437 ../fish/guestfish-actions.pod:4363
16910 msgid "32-bit big endian such as UCS-4BE."
16911 msgstr ""
16912
16913 #. type: =item
16914 #: ../src/guestfs-actions.pod:6439 ../fish/guestfish-actions.pod:4365
16915 msgid "L"
16916 msgstr ""
16917
16918 #. type: textblock
16919 #: ../src/guestfs-actions.pod:6441 ../fish/guestfish-actions.pod:4367
16920 msgid "32-bit little endian such as UCS-4LE."
16921 msgstr ""
16922
16923 #. type: textblock
16924 #: ../src/guestfs-actions.pod:6445 ../fish/guestfish-actions.pod:4371
16925 msgid "The returned strings are transcoded to UTF-8."
16926 msgstr ""
16927
16928 #. type: =head2
16929 #: ../src/guestfs-actions.pod:6456
16930 msgid "guestfs_swapoff_device"
16931 msgstr ""
16932
16933 #. type: verbatim
16934 #: ../src/guestfs-actions.pod:6458
16935 #, no-wrap
16936 msgid ""
16937 " int\n"
16938 " guestfs_swapoff_device (guestfs_h *g,\n"
16939 "                         const char *device);\n"
16940 "\n"
16941 msgstr ""
16942
16943 #. type: textblock
16944 #: ../src/guestfs-actions.pod:6462
16945 msgid ""
16946 "This command disables the libguestfs appliance swap device or partition "
16947 "named C<device>.  See C<guestfs_swapon_device>."
16948 msgstr ""
16949
16950 #. type: =head2
16951 #: ../src/guestfs-actions.pod:6470
16952 msgid "guestfs_swapoff_file"
16953 msgstr ""
16954
16955 #. type: verbatim
16956 #: ../src/guestfs-actions.pod:6472
16957 #, no-wrap
16958 msgid ""
16959 " int\n"
16960 " guestfs_swapoff_file (guestfs_h *g,\n"
16961 "                       const char *file);\n"
16962 "\n"
16963 msgstr ""
16964
16965 #. type: textblock
16966 #: ../src/guestfs-actions.pod:6476 ../fish/guestfish-actions.pod:4388
16967 msgid "This command disables the libguestfs appliance swap on file."
16968 msgstr ""
16969
16970 #. type: =head2
16971 #: ../src/guestfs-actions.pod:6482
16972 msgid "guestfs_swapoff_label"
16973 msgstr ""
16974
16975 #. type: verbatim
16976 #: ../src/guestfs-actions.pod:6484
16977 #, no-wrap
16978 msgid ""
16979 " int\n"
16980 " guestfs_swapoff_label (guestfs_h *g,\n"
16981 "                        const char *label);\n"
16982 "\n"
16983 msgstr ""
16984
16985 #. type: textblock
16986 #: ../src/guestfs-actions.pod:6488 ../fish/guestfish-actions.pod:4394
16987 msgid ""
16988 "This command disables the libguestfs appliance swap on labeled swap "
16989 "partition."
16990 msgstr ""
16991
16992 #. type: =head2
16993 #: ../src/guestfs-actions.pod:6495
16994 msgid "guestfs_swapoff_uuid"
16995 msgstr ""
16996
16997 #. type: verbatim
16998 #: ../src/guestfs-actions.pod:6497
16999 #, no-wrap
17000 msgid ""
17001 " int\n"
17002 " guestfs_swapoff_uuid (guestfs_h *g,\n"
17003 "                       const char *uuid);\n"
17004 "\n"
17005 msgstr ""
17006
17007 #. type: textblock
17008 #: ../src/guestfs-actions.pod:6501 ../fish/guestfish-actions.pod:4401
17009 msgid ""
17010 "This command disables the libguestfs appliance swap partition with the given "
17011 "UUID."
17012 msgstr ""
17013
17014 #. type: =head2
17015 #: ../src/guestfs-actions.pod:6508
17016 msgid "guestfs_swapon_device"
17017 msgstr ""
17018
17019 #. type: verbatim
17020 #: ../src/guestfs-actions.pod:6510
17021 #, no-wrap
17022 msgid ""
17023 " int\n"
17024 " guestfs_swapon_device (guestfs_h *g,\n"
17025 "                        const char *device);\n"
17026 "\n"
17027 msgstr ""
17028
17029 #. type: textblock
17030 #: ../src/guestfs-actions.pod:6514
17031 msgid ""
17032 "This command enables the libguestfs appliance to use the swap device or "
17033 "partition named C<device>.  The increased memory is made available for all "
17034 "commands, for example those run using C<guestfs_command> or C<guestfs_sh>."
17035 msgstr ""
17036
17037 #. type: textblock
17038 #: ../src/guestfs-actions.pod:6519 ../fish/guestfish-actions.pod:4413
17039 msgid ""
17040 "Note that you should not swap to existing guest swap partitions unless you "
17041 "know what you are doing.  They may contain hibernation information, or other "
17042 "information that the guest doesn't want you to trash.  You also risk leaking "
17043 "information about the host to the guest this way.  Instead, attach a new "
17044 "host device to the guest and swap on that."
17045 msgstr ""
17046
17047 #. type: =head2
17048 #: ../src/guestfs-actions.pod:6530
17049 msgid "guestfs_swapon_file"
17050 msgstr ""
17051
17052 #. type: verbatim
17053 #: ../src/guestfs-actions.pod:6532
17054 #, no-wrap
17055 msgid ""
17056 " int\n"
17057 " guestfs_swapon_file (guestfs_h *g,\n"
17058 "                      const char *file);\n"
17059 "\n"
17060 msgstr ""
17061
17062 #. type: textblock
17063 #: ../src/guestfs-actions.pod:6536
17064 msgid ""
17065 "This command enables swap to a file.  See C<guestfs_swapon_device> for other "
17066 "notes."
17067 msgstr ""
17068
17069 #. type: =head2
17070 #: ../src/guestfs-actions.pod:6543
17071 msgid "guestfs_swapon_label"
17072 msgstr ""
17073
17074 #. type: verbatim
17075 #: ../src/guestfs-actions.pod:6545
17076 #, no-wrap
17077 msgid ""
17078 " int\n"
17079 " guestfs_swapon_label (guestfs_h *g,\n"
17080 "                       const char *label);\n"
17081 "\n"
17082 msgstr ""
17083
17084 #. type: textblock
17085 #: ../src/guestfs-actions.pod:6549
17086 msgid ""
17087 "This command enables swap to a labeled swap partition.  See "
17088 "C<guestfs_swapon_device> for other notes."
17089 msgstr ""
17090
17091 #. type: =head2
17092 #: ../src/guestfs-actions.pod:6556
17093 msgid "guestfs_swapon_uuid"
17094 msgstr ""
17095
17096 #. type: verbatim
17097 #: ../src/guestfs-actions.pod:6558
17098 #, no-wrap
17099 msgid ""
17100 " int\n"
17101 " guestfs_swapon_uuid (guestfs_h *g,\n"
17102 "                      const char *uuid);\n"
17103 "\n"
17104 msgstr ""
17105
17106 #. type: textblock
17107 #: ../src/guestfs-actions.pod:6562
17108 msgid ""
17109 "This command enables swap to a swap partition with the given UUID.  See "
17110 "C<guestfs_swapon_device> for other notes."
17111 msgstr ""
17112
17113 #. type: =head2
17114 #: ../src/guestfs-actions.pod:6569
17115 msgid "guestfs_sync"
17116 msgstr ""
17117
17118 #. type: verbatim
17119 #: ../src/guestfs-actions.pod:6571
17120 #, no-wrap
17121 msgid ""
17122 " int\n"
17123 " guestfs_sync (guestfs_h *g);\n"
17124 "\n"
17125 msgstr ""
17126
17127 #. type: textblock
17128 #: ../src/guestfs-actions.pod:6574 ../fish/guestfish-actions.pod:4445
17129 msgid ""
17130 "This syncs the disk, so that any writes are flushed through to the "
17131 "underlying disk image."
17132 msgstr ""
17133
17134 #. type: textblock
17135 #: ../src/guestfs-actions.pod:6577 ../fish/guestfish-actions.pod:4448
17136 msgid ""
17137 "You should always call this if you have modified a disk image, before "
17138 "closing the handle."
17139 msgstr ""
17140
17141 #. type: =head2
17142 #: ../src/guestfs-actions.pod:6584
17143 msgid "guestfs_tail"
17144 msgstr ""
17145
17146 #. type: verbatim
17147 #: ../src/guestfs-actions.pod:6586
17148 #, no-wrap
17149 msgid ""
17150 " char **\n"
17151 " guestfs_tail (guestfs_h *g,\n"
17152 "               const char *path);\n"
17153 "\n"
17154 msgstr ""
17155
17156 #. type: textblock
17157 #: ../src/guestfs-actions.pod:6590 ../fish/guestfish-actions.pod:4455
17158 msgid ""
17159 "This command returns up to the last 10 lines of a file as a list of strings."
17160 msgstr ""
17161
17162 #. type: =head2
17163 #: ../src/guestfs-actions.pod:6602
17164 msgid "guestfs_tail_n"
17165 msgstr ""
17166
17167 #. type: verbatim
17168 #: ../src/guestfs-actions.pod:6604
17169 #, no-wrap
17170 msgid ""
17171 " char **\n"
17172 " guestfs_tail_n (guestfs_h *g,\n"
17173 "                 int nrlines,\n"
17174 "                 const char *path);\n"
17175 "\n"
17176 msgstr ""
17177
17178 #. type: textblock
17179 #: ../src/guestfs-actions.pod:6609 ../fish/guestfish-actions.pod:4465
17180 msgid ""
17181 "If the parameter C<nrlines> is a positive number, this returns the last "
17182 "C<nrlines> lines of the file C<path>."
17183 msgstr ""
17184
17185 #. type: textblock
17186 #: ../src/guestfs-actions.pod:6612 ../fish/guestfish-actions.pod:4468
17187 msgid ""
17188 "If the parameter C<nrlines> is a negative number, this returns lines from "
17189 "the file C<path>, starting with the C<-nrlines>th line."
17190 msgstr ""
17191
17192 #. type: =head2
17193 #: ../src/guestfs-actions.pod:6626
17194 msgid "guestfs_tar_in"
17195 msgstr ""
17196
17197 #. type: verbatim
17198 #: ../src/guestfs-actions.pod:6628
17199 #, no-wrap
17200 msgid ""
17201 " int\n"
17202 " guestfs_tar_in (guestfs_h *g,\n"
17203 "                 const char *tarfile,\n"
17204 "                 const char *directory);\n"
17205 "\n"
17206 msgstr ""
17207
17208 #. type: textblock
17209 #: ../src/guestfs-actions.pod:6633 ../fish/guestfish-actions.pod:4480
17210 msgid ""
17211 "This command uploads and unpacks local file C<tarfile> (an I<uncompressed> "
17212 "tar file) into C<directory>."
17213 msgstr ""
17214
17215 #. type: textblock
17216 #: ../src/guestfs-actions.pod:6636
17217 msgid ""
17218 "To upload a compressed tarball, use C<guestfs_tgz_in> or C<guestfs_txz_in>."
17219 msgstr ""
17220
17221 #. type: textblock
17222 #: ../src/guestfs-actions.pod:6641 ../src/guestfs-actions.pod:6658
17223 #: ../src/guestfs-actions.pod:6674 ../src/guestfs-actions.pod:6690
17224 msgid "(Added in 1.0.3)"
17225 msgstr ""
17226
17227 #. type: =head2
17228 #: ../src/guestfs-actions.pod:6643
17229 msgid "guestfs_tar_out"
17230 msgstr ""
17231
17232 #. type: verbatim
17233 #: ../src/guestfs-actions.pod:6645
17234 #, no-wrap
17235 msgid ""
17236 " int\n"
17237 " guestfs_tar_out (guestfs_h *g,\n"
17238 "                  const char *directory,\n"
17239 "                  const char *tarfile);\n"
17240 "\n"
17241 msgstr ""
17242
17243 #. type: textblock
17244 #: ../src/guestfs-actions.pod:6650 ../fish/guestfish-actions.pod:4492
17245 msgid ""
17246 "This command packs the contents of C<directory> and downloads it to local "
17247 "file C<tarfile>."
17248 msgstr ""
17249
17250 #. type: textblock
17251 #: ../src/guestfs-actions.pod:6653
17252 msgid ""
17253 "To download a compressed tarball, use C<guestfs_tgz_out> or "
17254 "C<guestfs_txz_out>."
17255 msgstr ""
17256
17257 #. type: =head2
17258 #: ../src/guestfs-actions.pod:6660
17259 msgid "guestfs_tgz_in"
17260 msgstr ""
17261
17262 #. type: verbatim
17263 #: ../src/guestfs-actions.pod:6662
17264 #, no-wrap
17265 msgid ""
17266 " int\n"
17267 " guestfs_tgz_in (guestfs_h *g,\n"
17268 "                 const char *tarball,\n"
17269 "                 const char *directory);\n"
17270 "\n"
17271 msgstr ""
17272
17273 #. type: textblock
17274 #: ../src/guestfs-actions.pod:6667 ../fish/guestfish-actions.pod:4504
17275 msgid ""
17276 "This command uploads and unpacks local file C<tarball> (a I<gzip compressed> "
17277 "tar file) into C<directory>."
17278 msgstr ""
17279
17280 #. type: textblock
17281 #: ../src/guestfs-actions.pod:6670
17282 msgid "To upload an uncompressed tarball, use C<guestfs_tar_in>."
17283 msgstr ""
17284
17285 #. type: =head2
17286 #: ../src/guestfs-actions.pod:6676
17287 msgid "guestfs_tgz_out"
17288 msgstr ""
17289
17290 #. type: verbatim
17291 #: ../src/guestfs-actions.pod:6678
17292 #, no-wrap
17293 msgid ""
17294 " int\n"
17295 " guestfs_tgz_out (guestfs_h *g,\n"
17296 "                  const char *directory,\n"
17297 "                  const char *tarball);\n"
17298 "\n"
17299 msgstr ""
17300
17301 #. type: textblock
17302 #: ../src/guestfs-actions.pod:6683 ../fish/guestfish-actions.pod:4515
17303 msgid ""
17304 "This command packs the contents of C<directory> and downloads it to local "
17305 "file C<tarball>."
17306 msgstr ""
17307
17308 #. type: textblock
17309 #: ../src/guestfs-actions.pod:6686
17310 msgid "To download an uncompressed tarball, use C<guestfs_tar_out>."
17311 msgstr ""
17312
17313 #. type: =head2
17314 #: ../src/guestfs-actions.pod:6692
17315 msgid "guestfs_touch"
17316 msgstr ""
17317
17318 #. type: verbatim
17319 #: ../src/guestfs-actions.pod:6694
17320 #, no-wrap
17321 msgid ""
17322 " int\n"
17323 " guestfs_touch (guestfs_h *g,\n"
17324 "                const char *path);\n"
17325 "\n"
17326 msgstr ""
17327
17328 #. type: textblock
17329 #: ../src/guestfs-actions.pod:6698 ../fish/guestfish-actions.pod:4526
17330 msgid ""
17331 "Touch acts like the L<touch(1)> command.  It can be used to update the "
17332 "timestamps on a file, or, if the file does not exist, to create a new zero-"
17333 "length file."
17334 msgstr ""
17335
17336 #. type: textblock
17337 #: ../src/guestfs-actions.pod:6702 ../fish/guestfish-actions.pod:4530
17338 msgid ""
17339 "This command only works on regular files, and will fail on other file types "
17340 "such as directories, symbolic links, block special etc."
17341 msgstr ""
17342
17343 #. type: =head2
17344 #: ../src/guestfs-actions.pod:6709
17345 msgid "guestfs_truncate"
17346 msgstr ""
17347
17348 #. type: verbatim
17349 #: ../src/guestfs-actions.pod:6711
17350 #, no-wrap
17351 msgid ""
17352 " int\n"
17353 " guestfs_truncate (guestfs_h *g,\n"
17354 "                   const char *path);\n"
17355 "\n"
17356 msgstr ""
17357
17358 #. type: textblock
17359 #: ../src/guestfs-actions.pod:6715 ../fish/guestfish-actions.pod:4537
17360 msgid ""
17361 "This command truncates C<path> to a zero-length file.  The file must exist "
17362 "already."
17363 msgstr ""
17364
17365 #. type: =head2
17366 #: ../src/guestfs-actions.pod:6722
17367 msgid "guestfs_truncate_size"
17368 msgstr ""
17369
17370 #. type: verbatim
17371 #: ../src/guestfs-actions.pod:6724
17372 #, no-wrap
17373 msgid ""
17374 " int\n"
17375 " guestfs_truncate_size (guestfs_h *g,\n"
17376 "                        const char *path,\n"
17377 "                        int64_t size);\n"
17378 "\n"
17379 msgstr ""
17380
17381 #. type: textblock
17382 #: ../src/guestfs-actions.pod:6729 ../fish/guestfish-actions.pod:4544
17383 msgid ""
17384 "This command truncates C<path> to size C<size> bytes.  The file must exist "
17385 "already."
17386 msgstr ""
17387
17388 #. type: textblock
17389 #: ../src/guestfs-actions.pod:6732
17390 msgid ""
17391 "If the current file size is less than C<size> then the file is extended to "
17392 "the required size with zero bytes.  This creates a sparse file (ie. disk "
17393 "blocks are not allocated for the file until you write to it).  To create a "
17394 "non-sparse file of zeroes, use C<guestfs_fallocate64> instead."
17395 msgstr ""
17396
17397 #. type: =head2
17398 #: ../src/guestfs-actions.pod:6742
17399 msgid "guestfs_tune2fs_l"
17400 msgstr ""
17401
17402 #. type: verbatim
17403 #: ../src/guestfs-actions.pod:6744
17404 #, no-wrap
17405 msgid ""
17406 " char **\n"
17407 " guestfs_tune2fs_l (guestfs_h *g,\n"
17408 "                    const char *device);\n"
17409 "\n"
17410 msgstr ""
17411
17412 #. type: textblock
17413 #: ../src/guestfs-actions.pod:6748 ../fish/guestfish-actions.pod:4557
17414 msgid ""
17415 "This returns the contents of the ext2, ext3 or ext4 filesystem superblock on "
17416 "C<device>."
17417 msgstr ""
17418
17419 #. type: textblock
17420 #: ../src/guestfs-actions.pod:6751 ../fish/guestfish-actions.pod:4560
17421 msgid ""
17422 "It is the same as running C<tune2fs -l device>.  See L<tune2fs(8)> manpage "
17423 "for more details.  The list of fields returned isn't clearly defined, and "
17424 "depends on both the version of C<tune2fs> that libguestfs was built against, "
17425 "and the filesystem itself."
17426 msgstr ""
17427
17428 #. type: =head2
17429 #: ../src/guestfs-actions.pod:6764
17430 msgid "guestfs_txz_in"
17431 msgstr ""
17432
17433 #. type: verbatim
17434 #: ../src/guestfs-actions.pod:6766
17435 #, no-wrap
17436 msgid ""
17437 " int\n"
17438 " guestfs_txz_in (guestfs_h *g,\n"
17439 "                 const char *tarball,\n"
17440 "                 const char *directory);\n"
17441 "\n"
17442 msgstr ""
17443
17444 #. type: textblock
17445 #: ../src/guestfs-actions.pod:6771 ../fish/guestfish-actions.pod:4569
17446 msgid ""
17447 "This command uploads and unpacks local file C<tarball> (an I<xz compressed> "
17448 "tar file) into C<directory>."
17449 msgstr ""
17450
17451 #. type: =head2
17452 #: ../src/guestfs-actions.pod:6778
17453 msgid "guestfs_txz_out"
17454 msgstr ""
17455
17456 #. type: verbatim
17457 #: ../src/guestfs-actions.pod:6780
17458 #, no-wrap
17459 msgid ""
17460 " int\n"
17461 " guestfs_txz_out (guestfs_h *g,\n"
17462 "                  const char *directory,\n"
17463 "                  const char *tarball);\n"
17464 "\n"
17465 msgstr ""
17466
17467 #. type: textblock
17468 #: ../src/guestfs-actions.pod:6785 ../fish/guestfish-actions.pod:4578
17469 msgid ""
17470 "This command packs the contents of C<directory> and downloads it to local "
17471 "file C<tarball> (as an xz compressed tar archive)."
17472 msgstr ""
17473
17474 #. type: =head2
17475 #: ../src/guestfs-actions.pod:6792
17476 msgid "guestfs_umask"
17477 msgstr ""
17478
17479 #. type: verbatim
17480 #: ../src/guestfs-actions.pod:6794
17481 #, no-wrap
17482 msgid ""
17483 " int\n"
17484 " guestfs_umask (guestfs_h *g,\n"
17485 "                int mask);\n"
17486 "\n"
17487 msgstr ""
17488
17489 #. type: textblock
17490 #: ../src/guestfs-actions.pod:6798 ../fish/guestfish-actions.pod:4587
17491 msgid ""
17492 "This function sets the mask used for creating new files and device nodes to "
17493 "C<mask & 0777>."
17494 msgstr ""
17495
17496 #. type: textblock
17497 #: ../src/guestfs-actions.pod:6801 ../fish/guestfish-actions.pod:4590
17498 msgid ""
17499 "Typical umask values would be C<022> which creates new files with "
17500 "permissions like \"-rw-r--r--\" or \"-rwxr-xr-x\", and C<002> which creates "
17501 "new files with permissions like \"-rw-rw-r--\" or \"-rwxrwxr-x\"."
17502 msgstr ""
17503
17504 #. type: textblock
17505 #: ../src/guestfs-actions.pod:6806 ../fish/guestfish-actions.pod:4595
17506 msgid ""
17507 "The default umask is C<022>.  This is important because it means that "
17508 "directories and device nodes will be created with C<0644> or C<0755> mode "
17509 "even if you specify C<0777>."
17510 msgstr ""
17511
17512 #. type: textblock
17513 #: ../src/guestfs-actions.pod:6810
17514 msgid ""
17515 "See also C<guestfs_get_umask>, L<umask(2)>, C<guestfs_mknod>, "
17516 "C<guestfs_mkdir>."
17517 msgstr ""
17518
17519 #. type: textblock
17520 #: ../src/guestfs-actions.pod:6813 ../fish/guestfish-actions.pod:4602
17521 msgid "This call returns the previous umask."
17522 msgstr ""
17523
17524 #. type: =head2
17525 #: ../src/guestfs-actions.pod:6819
17526 msgid "guestfs_umount"
17527 msgstr ""
17528
17529 #. type: verbatim
17530 #: ../src/guestfs-actions.pod:6821
17531 #, no-wrap
17532 msgid ""
17533 " int\n"
17534 " guestfs_umount (guestfs_h *g,\n"
17535 "                 const char *pathordevice);\n"
17536 "\n"
17537 msgstr ""
17538
17539 #. type: textblock
17540 #: ../src/guestfs-actions.pod:6825 ../fish/guestfish-actions.pod:4610
17541 msgid ""
17542 "This unmounts the given filesystem.  The filesystem may be specified either "
17543 "by its mountpoint (path) or the device which contains the filesystem."
17544 msgstr ""
17545
17546 #. type: =head2
17547 #: ../src/guestfs-actions.pod:6833
17548 msgid "guestfs_umount_all"
17549 msgstr ""
17550
17551 #. type: verbatim
17552 #: ../src/guestfs-actions.pod:6835
17553 #, no-wrap
17554 msgid ""
17555 " int\n"
17556 " guestfs_umount_all (guestfs_h *g);\n"
17557 "\n"
17558 msgstr ""
17559
17560 #. type: textblock
17561 #: ../src/guestfs-actions.pod:6838 ../fish/guestfish-actions.pod:4620
17562 msgid "This unmounts all mounted filesystems."
17563 msgstr ""
17564
17565 #. type: textblock
17566 #: ../src/guestfs-actions.pod:6840 ../fish/guestfish-actions.pod:4622
17567 msgid "Some internal mounts are not unmounted by this call."
17568 msgstr ""
17569
17570 #. type: =head2
17571 #: ../src/guestfs-actions.pod:6846
17572 msgid "guestfs_upload"
17573 msgstr ""
17574
17575 #. type: verbatim
17576 #: ../src/guestfs-actions.pod:6848
17577 #, no-wrap
17578 msgid ""
17579 " int\n"
17580 " guestfs_upload (guestfs_h *g,\n"
17581 "                 const char *filename,\n"
17582 "                 const char *remotefilename);\n"
17583 "\n"
17584 msgstr ""
17585
17586 #. type: textblock
17587 #: ../src/guestfs-actions.pod:6853 ../src/guestfs-actions.pod:6877
17588 #: ../fish/guestfish-actions.pod:4628 ../fish/guestfish-actions.pod:4641
17589 msgid "Upload local file C<filename> to C<remotefilename> on the filesystem."
17590 msgstr ""
17591
17592 #. type: textblock
17593 #: ../src/guestfs-actions.pod:6858
17594 msgid "See also C<guestfs_download>."
17595 msgstr ""
17596
17597 #. type: =head2
17598 #: ../src/guestfs-actions.pod:6869
17599 msgid "guestfs_upload_offset"
17600 msgstr ""
17601
17602 #. type: verbatim
17603 #: ../src/guestfs-actions.pod:6871
17604 #, no-wrap
17605 msgid ""
17606 " int\n"
17607 " guestfs_upload_offset (guestfs_h *g,\n"
17608 "                        const char *filename,\n"
17609 "                        const char *remotefilename,\n"
17610 "                        int64_t offset);\n"
17611 "\n"
17612 msgstr ""
17613
17614 #. type: textblock
17615 #: ../src/guestfs-actions.pod:6880 ../fish/guestfish-actions.pod:4644
17616 msgid ""
17617 "C<remotefilename> is overwritten starting at the byte C<offset> specified.  "
17618 "The intention is to overwrite parts of existing files or devices, although "
17619 "if a non-existant file is specified then it is created with a \"hole\" "
17620 "before C<offset>.  The size of the data written is implicit in the size of "
17621 "the source C<filename>."
17622 msgstr ""
17623
17624 #. type: textblock
17625 #: ../src/guestfs-actions.pod:6887
17626 msgid ""
17627 "Note that there is no limit on the amount of data that can be uploaded with "
17628 "this call, unlike with C<guestfs_pwrite>, and this call always writes the "
17629 "full amount unless an error occurs."
17630 msgstr ""
17631
17632 #. type: textblock
17633 #: ../src/guestfs-actions.pod:6892
17634 msgid "See also C<guestfs_upload>, C<guestfs_pwrite>."
17635 msgstr ""
17636
17637 #. type: =head2
17638 #: ../src/guestfs-actions.pod:6903
17639 msgid "guestfs_utimens"
17640 msgstr ""
17641
17642 #. type: verbatim
17643 #: ../src/guestfs-actions.pod:6905
17644 #, no-wrap
17645 msgid ""
17646 " int\n"
17647 " guestfs_utimens (guestfs_h *g,\n"
17648 "                  const char *path,\n"
17649 "                  int64_t atsecs,\n"
17650 "                  int64_t atnsecs,\n"
17651 "                  int64_t mtsecs,\n"
17652 "                  int64_t mtnsecs);\n"
17653 "\n"
17654 msgstr ""
17655
17656 #. type: textblock
17657 #: ../src/guestfs-actions.pod:6913 ../fish/guestfish-actions.pod:4664
17658 msgid "This command sets the timestamps of a file with nanosecond precision."
17659 msgstr ""
17660
17661 #. type: textblock
17662 #: ../src/guestfs-actions.pod:6916 ../fish/guestfish-actions.pod:4667
17663 msgid ""
17664 "C<atsecs, atnsecs> are the last access time (atime) in secs and nanoseconds "
17665 "from the epoch."
17666 msgstr ""
17667
17668 #. type: textblock
17669 #: ../src/guestfs-actions.pod:6919 ../fish/guestfish-actions.pod:4670
17670 msgid ""
17671 "C<mtsecs, mtnsecs> are the last modification time (mtime) in secs and "
17672 "nanoseconds from the epoch."
17673 msgstr ""
17674
17675 #. type: textblock
17676 #: ../src/guestfs-actions.pod:6922 ../fish/guestfish-actions.pod:4673
17677 msgid ""
17678 "If the C<*nsecs> field contains the special value C<-1> then the "
17679 "corresponding timestamp is set to the current time.  (The C<*secs> field is "
17680 "ignored in this case)."
17681 msgstr ""
17682
17683 #. type: textblock
17684 #: ../src/guestfs-actions.pod:6926 ../fish/guestfish-actions.pod:4677
17685 msgid ""
17686 "If the C<*nsecs> field contains the special value C<-2> then the "
17687 "corresponding timestamp is left unchanged.  (The C<*secs> field is ignored "
17688 "in this case)."
17689 msgstr ""
17690
17691 #. type: =head2
17692 #: ../src/guestfs-actions.pod:6934 ../src/guestfs-structs.pod:175
17693 msgid "guestfs_version"
17694 msgstr ""
17695
17696 #. type: verbatim
17697 #: ../src/guestfs-actions.pod:6936
17698 #, no-wrap
17699 msgid ""
17700 " struct guestfs_version *\n"
17701 " guestfs_version (guestfs_h *g);\n"
17702 "\n"
17703 msgstr ""
17704
17705 #. type: textblock
17706 #: ../src/guestfs-actions.pod:6939 ../fish/guestfish-actions.pod:4685
17707 msgid ""
17708 "Return the libguestfs version number that the program is linked against."
17709 msgstr ""
17710
17711 #. type: textblock
17712 #: ../src/guestfs-actions.pod:6942 ../fish/guestfish-actions.pod:4688
17713 msgid ""
17714 "Note that because of dynamic linking this is not necessarily the version of "
17715 "libguestfs that you compiled against.  You can compile the program, and then "
17716 "at runtime dynamically link against a completely different C<libguestfs.so> "
17717 "library."
17718 msgstr ""
17719
17720 #. type: textblock
17721 #: ../src/guestfs-actions.pod:6947 ../fish/guestfish-actions.pod:4693
17722 msgid ""
17723 "This call was added in version C<1.0.58>.  In previous versions of "
17724 "libguestfs there was no way to get the version number.  From C code you can "
17725 "use dynamic linker functions to find out if this symbol exists (if it "
17726 "doesn't, then it's an earlier version)."
17727 msgstr ""
17728
17729 #. type: textblock
17730 #: ../src/guestfs-actions.pod:6953 ../fish/guestfish-actions.pod:4699
17731 msgid ""
17732 "The call returns a structure with four elements.  The first three (C<major>, "
17733 "C<minor> and C<release>) are numbers and correspond to the usual version "
17734 "triplet.  The fourth element (C<extra>) is a string and is normally empty, "
17735 "but may be used for distro-specific information."
17736 msgstr ""
17737
17738 #. type: textblock
17739 #: ../src/guestfs-actions.pod:6959 ../fish/guestfish-actions.pod:4705
17740 msgid ""
17741 "To construct the original version string: C<$major.$minor.$release$extra>"
17742 msgstr ""
17743
17744 #. type: textblock
17745 #: ../src/guestfs-actions.pod:6962 ../fish/guestfish-actions.pod:4708
17746 msgid "See also: L<guestfs(3)/LIBGUESTFS VERSION NUMBERS>."
17747 msgstr ""
17748
17749 #. type: textblock
17750 #: ../src/guestfs-actions.pod:6964
17751 msgid ""
17752 "I<Note:> Don't use this call to test for availability of features.  In "
17753 "enterprise distributions we backport features from later versions into "
17754 "earlier versions, making this an unreliable way to test for features.  Use "
17755 "C<guestfs_available> instead."
17756 msgstr ""
17757
17758 #. type: textblock
17759 #: ../src/guestfs-actions.pod:6970
17760 msgid ""
17761 "This function returns a C<struct guestfs_version *>, or NULL if there was an "
17762 "error.  I<The caller must call C<guestfs_free_version> after use>."
17763 msgstr ""
17764
17765 #. type: textblock
17766 #: ../src/guestfs-actions.pod:6974
17767 msgid "(Added in 1.0.58)"
17768 msgstr ""
17769
17770 #. type: =head2
17771 #: ../src/guestfs-actions.pod:6976
17772 msgid "guestfs_vfs_label"
17773 msgstr ""
17774
17775 #. type: verbatim
17776 #: ../src/guestfs-actions.pod:6978
17777 #, no-wrap
17778 msgid ""
17779 " char *\n"
17780 " guestfs_vfs_label (guestfs_h *g,\n"
17781 "                    const char *device);\n"
17782 "\n"
17783 msgstr ""
17784
17785 #. type: textblock
17786 #: ../src/guestfs-actions.pod:6982 ../fish/guestfish-actions.pod:4720
17787 msgid "This returns the filesystem label of the filesystem on C<device>."
17788 msgstr ""
17789
17790 #. type: textblock
17791 #: ../src/guestfs-actions.pod:6985 ../fish/guestfish-actions.pod:4723
17792 msgid "If the filesystem is unlabeled, this returns the empty string."
17793 msgstr ""
17794
17795 #. type: textblock
17796 #: ../src/guestfs-actions.pod:6987
17797 msgid "To find a filesystem from the label, use C<guestfs_findfs_label>."
17798 msgstr ""
17799
17800 #. type: textblock
17801 #: ../src/guestfs-actions.pod:6992 ../src/guestfs-actions.pod:7029
17802 msgid "(Added in 1.3.18)"
17803 msgstr ""
17804
17805 #. type: =head2
17806 #: ../src/guestfs-actions.pod:6994
17807 msgid "guestfs_vfs_type"
17808 msgstr ""
17809
17810 #. type: verbatim
17811 #: ../src/guestfs-actions.pod:6996
17812 #, no-wrap
17813 msgid ""
17814 " char *\n"
17815 " guestfs_vfs_type (guestfs_h *g,\n"
17816 "                   const char *device);\n"
17817 "\n"
17818 msgstr ""
17819
17820 #. type: textblock
17821 #: ../src/guestfs-actions.pod:7000 ../fish/guestfish-actions.pod:4731
17822 msgid ""
17823 "This command gets the filesystem type corresponding to the filesystem on "
17824 "C<device>."
17825 msgstr ""
17826
17827 #. type: textblock
17828 #: ../src/guestfs-actions.pod:7003 ../fish/guestfish-actions.pod:4734
17829 msgid ""
17830 "For most filesystems, the result is the name of the Linux VFS module which "
17831 "would be used to mount this filesystem if you mounted it without specifying "
17832 "the filesystem type.  For example a string such as C<ext3> or C<ntfs>."
17833 msgstr ""
17834
17835 #. type: =head2
17836 #: ../src/guestfs-actions.pod:7013
17837 msgid "guestfs_vfs_uuid"
17838 msgstr ""
17839
17840 #. type: verbatim
17841 #: ../src/guestfs-actions.pod:7015
17842 #, no-wrap
17843 msgid ""
17844 " char *\n"
17845 " guestfs_vfs_uuid (guestfs_h *g,\n"
17846 "                   const char *device);\n"
17847 "\n"
17848 msgstr ""
17849
17850 #. type: textblock
17851 #: ../src/guestfs-actions.pod:7019 ../fish/guestfish-actions.pod:4743
17852 msgid "This returns the filesystem UUID of the filesystem on C<device>."
17853 msgstr ""
17854
17855 #. type: textblock
17856 #: ../src/guestfs-actions.pod:7022 ../fish/guestfish-actions.pod:4746
17857 msgid "If the filesystem does not have a UUID, this returns the empty string."
17858 msgstr ""
17859
17860 #. type: textblock
17861 #: ../src/guestfs-actions.pod:7024
17862 msgid "To find a filesystem from the UUID, use C<guestfs_findfs_uuid>."
17863 msgstr ""
17864
17865 #. type: =head2
17866 #: ../src/guestfs-actions.pod:7031
17867 msgid "guestfs_vg_activate"
17868 msgstr ""
17869
17870 #. type: verbatim
17871 #: ../src/guestfs-actions.pod:7033
17872 #, no-wrap
17873 msgid ""
17874 " int\n"
17875 " guestfs_vg_activate (guestfs_h *g,\n"
17876 "                      int activate,\n"
17877 "                      char *const *volgroups);\n"
17878 "\n"
17879 msgstr ""
17880
17881 #. type: textblock
17882 #: ../src/guestfs-actions.pod:7038 ../fish/guestfish-actions.pod:4754
17883 msgid ""
17884 "This command activates or (if C<activate> is false) deactivates all logical "
17885 "volumes in the listed volume groups C<volgroups>.  If activated, then they "
17886 "are made known to the kernel, ie. they appear as C</dev/mapper> devices.  If "
17887 "deactivated, then those devices disappear."
17888 msgstr ""
17889
17890 #. type: textblock
17891 #: ../src/guestfs-actions.pod:7044 ../fish/guestfish-actions.pod:4760
17892 msgid "This command is the same as running C<vgchange -a y|n volgroups...>"
17893 msgstr ""
17894
17895 #. type: textblock
17896 #: ../src/guestfs-actions.pod:7046 ../fish/guestfish-actions.pod:4762
17897 msgid ""
17898 "Note that if C<volgroups> is an empty list then B<all> volume groups are "
17899 "activated or deactivated."
17900 msgstr ""
17901
17902 #. type: =head2
17903 #: ../src/guestfs-actions.pod:7053
17904 msgid "guestfs_vg_activate_all"
17905 msgstr ""
17906
17907 #. type: verbatim
17908 #: ../src/guestfs-actions.pod:7055
17909 #, no-wrap
17910 msgid ""
17911 " int\n"
17912 " guestfs_vg_activate_all (guestfs_h *g,\n"
17913 "                          int activate);\n"
17914 "\n"
17915 msgstr ""
17916
17917 #. type: textblock
17918 #: ../src/guestfs-actions.pod:7059 ../fish/guestfish-actions.pod:4769
17919 msgid ""
17920 "This command activates or (if C<activate> is false) deactivates all logical "
17921 "volumes in all volume groups.  If activated, then they are made known to the "
17922 "kernel, ie. they appear as C</dev/mapper> devices.  If deactivated, then "
17923 "those devices disappear."
17924 msgstr ""
17925
17926 #. type: textblock
17927 #: ../src/guestfs-actions.pod:7065 ../fish/guestfish-actions.pod:4775
17928 msgid "This command is the same as running C<vgchange -a y|n>"
17929 msgstr ""
17930
17931 #. type: =head2
17932 #: ../src/guestfs-actions.pod:7071
17933 msgid "guestfs_vgcreate"
17934 msgstr ""
17935
17936 #. type: verbatim
17937 #: ../src/guestfs-actions.pod:7073
17938 #, no-wrap
17939 msgid ""
17940 " int\n"
17941 " guestfs_vgcreate (guestfs_h *g,\n"
17942 "                   const char *volgroup,\n"
17943 "                   char *const *physvols);\n"
17944 "\n"
17945 msgstr ""
17946
17947 #. type: textblock
17948 #: ../src/guestfs-actions.pod:7078 ../fish/guestfish-actions.pod:4781
17949 msgid ""
17950 "This creates an LVM volume group called C<volgroup> from the non-empty list "
17951 "of physical volumes C<physvols>."
17952 msgstr ""
17953
17954 #. type: =head2
17955 #: ../src/guestfs-actions.pod:7085
17956 msgid "guestfs_vglvuuids"
17957 msgstr ""
17958
17959 #. type: verbatim
17960 #: ../src/guestfs-actions.pod:7087
17961 #, no-wrap
17962 msgid ""
17963 " char **\n"
17964 " guestfs_vglvuuids (guestfs_h *g,\n"
17965 "                    const char *vgname);\n"
17966 "\n"
17967 msgstr ""
17968
17969 #. type: textblock
17970 #: ../src/guestfs-actions.pod:7091 ../fish/guestfish-actions.pod:4788
17971 msgid ""
17972 "Given a VG called C<vgname>, this returns the UUIDs of all the logical "
17973 "volumes created in this volume group."
17974 msgstr ""
17975
17976 #. type: textblock
17977 #: ../src/guestfs-actions.pod:7094
17978 msgid ""
17979 "You can use this along with C<guestfs_lvs> and C<guestfs_lvuuid> calls to "
17980 "associate logical volumes and volume groups."
17981 msgstr ""
17982
17983 #. type: textblock
17984 #: ../src/guestfs-actions.pod:7097
17985 msgid "See also C<guestfs_vgpvuuids>."
17986 msgstr ""
17987
17988 #. type: =head2
17989 #: ../src/guestfs-actions.pod:7105
17990 msgid "guestfs_vgpvuuids"
17991 msgstr ""
17992
17993 #. type: verbatim
17994 #: ../src/guestfs-actions.pod:7107
17995 #, no-wrap
17996 msgid ""
17997 " char **\n"
17998 " guestfs_vgpvuuids (guestfs_h *g,\n"
17999 "                    const char *vgname);\n"
18000 "\n"
18001 msgstr ""
18002
18003 #. type: textblock
18004 #: ../src/guestfs-actions.pod:7111 ../fish/guestfish-actions.pod:4800
18005 msgid ""
18006 "Given a VG called C<vgname>, this returns the UUIDs of all the physical "
18007 "volumes that this volume group resides on."
18008 msgstr ""
18009
18010 #. type: textblock
18011 #: ../src/guestfs-actions.pod:7114
18012 msgid ""
18013 "You can use this along with C<guestfs_pvs> and C<guestfs_pvuuid> calls to "
18014 "associate physical volumes and volume groups."
18015 msgstr ""
18016
18017 #. type: textblock
18018 #: ../src/guestfs-actions.pod:7117
18019 msgid "See also C<guestfs_vglvuuids>."
18020 msgstr ""
18021
18022 #. type: =head2
18023 #: ../src/guestfs-actions.pod:7125
18024 msgid "guestfs_vgremove"
18025 msgstr ""
18026
18027 #. type: verbatim
18028 #: ../src/guestfs-actions.pod:7127
18029 #, no-wrap
18030 msgid ""
18031 " int\n"
18032 " guestfs_vgremove (guestfs_h *g,\n"
18033 "                   const char *vgname);\n"
18034 "\n"
18035 msgstr ""
18036
18037 #. type: textblock
18038 #: ../src/guestfs-actions.pod:7131 ../fish/guestfish-actions.pod:4812
18039 msgid "Remove an LVM volume group C<vgname>, (for example C<VG>)."
18040 msgstr ""
18041
18042 #. type: textblock
18043 #: ../src/guestfs-actions.pod:7133 ../fish/guestfish-actions.pod:4814
18044 msgid ""
18045 "This also forcibly removes all logical volumes in the volume group (if any)."
18046 msgstr ""
18047
18048 #. type: =head2
18049 #: ../src/guestfs-actions.pod:7140
18050 msgid "guestfs_vgrename"
18051 msgstr ""
18052
18053 #. type: verbatim
18054 #: ../src/guestfs-actions.pod:7142
18055 #, no-wrap
18056 msgid ""
18057 " int\n"
18058 " guestfs_vgrename (guestfs_h *g,\n"
18059 "                   const char *volgroup,\n"
18060 "                   const char *newvolgroup);\n"
18061 "\n"
18062 msgstr ""
18063
18064 #. type: textblock
18065 #: ../src/guestfs-actions.pod:7147 ../fish/guestfish-actions.pod:4821
18066 msgid "Rename a volume group C<volgroup> with the new name C<newvolgroup>."
18067 msgstr ""
18068
18069 #. type: =head2
18070 #: ../src/guestfs-actions.pod:7153
18071 msgid "guestfs_vgs"
18072 msgstr ""
18073
18074 #. type: verbatim
18075 #: ../src/guestfs-actions.pod:7155
18076 #, no-wrap
18077 msgid ""
18078 " char **\n"
18079 " guestfs_vgs (guestfs_h *g);\n"
18080 "\n"
18081 msgstr ""
18082
18083 #. type: textblock
18084 #: ../src/guestfs-actions.pod:7158 ../fish/guestfish-actions.pod:4827
18085 msgid ""
18086 "List all the volumes groups detected.  This is the equivalent of the L<vgs(8)"
18087 "> command."
18088 msgstr ""
18089
18090 #. type: textblock
18091 #: ../src/guestfs-actions.pod:7161 ../fish/guestfish-actions.pod:4830
18092 msgid ""
18093 "This returns a list of just the volume group names that were detected (eg. "
18094 "C<VolGroup00>)."
18095 msgstr ""
18096
18097 #. type: textblock
18098 #: ../src/guestfs-actions.pod:7164
18099 msgid "See also C<guestfs_vgs_full>."
18100 msgstr ""
18101
18102 #. type: =head2
18103 #: ../src/guestfs-actions.pod:7172
18104 msgid "guestfs_vgs_full"
18105 msgstr ""
18106
18107 #. type: verbatim
18108 #: ../src/guestfs-actions.pod:7174
18109 #, no-wrap
18110 msgid ""
18111 " struct guestfs_lvm_vg_list *\n"
18112 " guestfs_vgs_full (guestfs_h *g);\n"
18113 "\n"
18114 msgstr ""
18115
18116 #. type: textblock
18117 #: ../src/guestfs-actions.pod:7177 ../fish/guestfish-actions.pod:4839
18118 msgid ""
18119 "List all the volumes groups detected.  This is the equivalent of the L<vgs(8)"
18120 "> command.  The \"full\" version includes all fields."
18121 msgstr ""
18122
18123 #. type: textblock
18124 #: ../src/guestfs-actions.pod:7180
18125 msgid ""
18126 "This function returns a C<struct guestfs_lvm_vg_list *>, or NULL if there "
18127 "was an error.  I<The caller must call C<guestfs_free_lvm_vg_list> after use>."
18128 msgstr ""
18129
18130 #. type: =head2
18131 #: ../src/guestfs-actions.pod:7186
18132 msgid "guestfs_vgscan"
18133 msgstr ""
18134
18135 #. type: verbatim
18136 #: ../src/guestfs-actions.pod:7188
18137 #, no-wrap
18138 msgid ""
18139 " int\n"
18140 " guestfs_vgscan (guestfs_h *g);\n"
18141 "\n"
18142 msgstr ""
18143
18144 #. type: textblock
18145 #: ../src/guestfs-actions.pod:7191 ../fish/guestfish-actions.pod:4846
18146 msgid ""
18147 "This rescans all block devices and rebuilds the list of LVM physical "
18148 "volumes, volume groups and logical volumes."
18149 msgstr ""
18150
18151 #. type: =head2
18152 #: ../src/guestfs-actions.pod:7198
18153 msgid "guestfs_vguuid"
18154 msgstr ""
18155
18156 #. type: verbatim
18157 #: ../src/guestfs-actions.pod:7200
18158 #, no-wrap
18159 msgid ""
18160 " char *\n"
18161 " guestfs_vguuid (guestfs_h *g,\n"
18162 "                 const char *vgname);\n"
18163 "\n"
18164 msgstr ""
18165
18166 #. type: textblock
18167 #: ../src/guestfs-actions.pod:7204 ../fish/guestfish-actions.pod:4853
18168 msgid "This command returns the UUID of the LVM VG named C<vgname>."
18169 msgstr ""
18170
18171 #. type: =head2
18172 #: ../src/guestfs-actions.pod:7211
18173 msgid "guestfs_wait_ready"
18174 msgstr ""
18175
18176 #. type: verbatim
18177 #: ../src/guestfs-actions.pod:7213
18178 #, no-wrap
18179 msgid ""
18180 " int\n"
18181 " guestfs_wait_ready (guestfs_h *g);\n"
18182 "\n"
18183 msgstr ""
18184
18185 #. type: textblock
18186 #: ../src/guestfs-actions.pod:7216
18187 msgid "This function is a no op."
18188 msgstr ""
18189
18190 #. type: textblock
18191 #: ../src/guestfs-actions.pod:7218
18192 msgid ""
18193 "In versions of the API E<lt> 1.0.71 you had to call this function just after "
18194 "calling C<guestfs_launch> to wait for the launch to complete.  However this "
18195 "is no longer necessary because C<guestfs_launch> now does the waiting."
18196 msgstr ""
18197
18198 #. type: textblock
18199 #: ../src/guestfs-actions.pod:7223
18200 msgid ""
18201 "If you see any calls to this function in code then you can just remove them, "
18202 "unless you want to retain compatibility with older versions of the API."
18203 msgstr ""
18204
18205 #. type: textblock
18206 #: ../src/guestfs-actions.pod:7229
18207 msgid ""
18208 "This function is deprecated.  In new code, use the C<launch> call instead."
18209 msgstr ""
18210
18211 #. type: =head2
18212 #: ../src/guestfs-actions.pod:7238
18213 msgid "guestfs_wc_c"
18214 msgstr ""
18215
18216 #. type: verbatim
18217 #: ../src/guestfs-actions.pod:7240
18218 #, no-wrap
18219 msgid ""
18220 " int\n"
18221 " guestfs_wc_c (guestfs_h *g,\n"
18222 "               const char *path);\n"
18223 "\n"
18224 msgstr ""
18225
18226 #. type: textblock
18227 #: ../src/guestfs-actions.pod:7244 ../fish/guestfish-actions.pod:4859
18228 msgid ""
18229 "This command counts the characters in a file, using the C<wc -c> external "
18230 "command."
18231 msgstr ""
18232
18233 #. type: =head2
18234 #: ../src/guestfs-actions.pod:7251
18235 msgid "guestfs_wc_l"
18236 msgstr ""
18237
18238 #. type: verbatim
18239 #: ../src/guestfs-actions.pod:7253
18240 #, no-wrap
18241 msgid ""
18242 " int\n"
18243 " guestfs_wc_l (guestfs_h *g,\n"
18244 "               const char *path);\n"
18245 "\n"
18246 msgstr ""
18247
18248 #. type: textblock
18249 #: ../src/guestfs-actions.pod:7257 ../fish/guestfish-actions.pod:4866
18250 msgid ""
18251 "This command counts the lines in a file, using the C<wc -l> external command."
18252 msgstr ""
18253
18254 #. type: =head2
18255 #: ../src/guestfs-actions.pod:7264
18256 msgid "guestfs_wc_w"
18257 msgstr ""
18258
18259 #. type: verbatim
18260 #: ../src/guestfs-actions.pod:7266
18261 #, no-wrap
18262 msgid ""
18263 " int\n"
18264 " guestfs_wc_w (guestfs_h *g,\n"
18265 "               const char *path);\n"
18266 "\n"
18267 msgstr ""
18268
18269 #. type: textblock
18270 #: ../src/guestfs-actions.pod:7270 ../fish/guestfish-actions.pod:4873
18271 msgid ""
18272 "This command counts the words in a file, using the C<wc -w> external command."
18273 msgstr ""
18274
18275 #. type: =head2
18276 #: ../src/guestfs-actions.pod:7277
18277 msgid "guestfs_write"
18278 msgstr ""
18279
18280 #. type: verbatim
18281 #: ../src/guestfs-actions.pod:7279
18282 #, no-wrap
18283 msgid ""
18284 " int\n"
18285 " guestfs_write (guestfs_h *g,\n"
18286 "                const char *path,\n"
18287 "                const char *content,\n"
18288 "                size_t content_size);\n"
18289 "\n"
18290 msgstr ""
18291
18292 #. type: textblock
18293 #: ../src/guestfs-actions.pod:7285 ../fish/guestfish-actions.pod:4880
18294 msgid ""
18295 "This call creates a file called C<path>.  The content of the file is the "
18296 "string C<content> (which can contain any 8 bit data)."
18297 msgstr ""
18298
18299 #. type: =head2
18300 #: ../src/guestfs-actions.pod:7295
18301 msgid "guestfs_write_file"
18302 msgstr ""
18303
18304 #. type: verbatim
18305 #: ../src/guestfs-actions.pod:7297
18306 #, no-wrap
18307 msgid ""
18308 " int\n"
18309 " guestfs_write_file (guestfs_h *g,\n"
18310 "                     const char *path,\n"
18311 "                     const char *content,\n"
18312 "                     int size);\n"
18313 "\n"
18314 msgstr ""
18315
18316 #. type: textblock
18317 #: ../src/guestfs-actions.pod:7303 ../fish/guestfish-actions.pod:4890
18318 msgid ""
18319 "This call creates a file called C<path>.  The contents of the file is the "
18320 "string C<content> (which can contain any 8 bit data), with length C<size>."
18321 msgstr ""
18322
18323 #. type: textblock
18324 #: ../src/guestfs-actions.pod:7307 ../fish/guestfish-actions.pod:4894
18325 msgid ""
18326 "As a special case, if C<size> is C<0> then the length is calculated using "
18327 "C<strlen> (so in this case the content cannot contain embedded ASCII NULs)."
18328 msgstr ""
18329
18330 #. type: textblock
18331 #: ../src/guestfs-actions.pod:7311 ../fish/guestfish-actions.pod:4898
18332 msgid ""
18333 "I<NB.> Owing to a bug, writing content containing ASCII NUL characters does "
18334 "I<not> work, even if the length is specified."
18335 msgstr ""
18336
18337 #. type: textblock
18338 #: ../src/guestfs-actions.pod:7319 ../fish/guestfish-actions.pod:4904
18339 msgid ""
18340 "This function is deprecated.  In new code, use the C<write> call instead."
18341 msgstr ""
18342
18343 #. type: =head2
18344 #: ../src/guestfs-actions.pod:7328
18345 msgid "guestfs_zegrep"
18346 msgstr ""
18347
18348 #. type: verbatim
18349 #: ../src/guestfs-actions.pod:7330
18350 #, no-wrap
18351 msgid ""
18352 " char **\n"
18353 " guestfs_zegrep (guestfs_h *g,\n"
18354 "                 const char *regex,\n"
18355 "                 const char *path);\n"
18356 "\n"
18357 msgstr ""
18358
18359 #. type: textblock
18360 #: ../src/guestfs-actions.pod:7335 ../fish/guestfish-actions.pod:4915
18361 msgid ""
18362 "This calls the external C<zegrep> program and returns the matching lines."
18363 msgstr ""
18364
18365 #. type: =head2
18366 #: ../src/guestfs-actions.pod:7347
18367 msgid "guestfs_zegrepi"
18368 msgstr ""
18369
18370 #. type: verbatim
18371 #: ../src/guestfs-actions.pod:7349
18372 #, no-wrap
18373 msgid ""
18374 " char **\n"
18375 " guestfs_zegrepi (guestfs_h *g,\n"
18376 "                  const char *regex,\n"
18377 "                  const char *path);\n"
18378 "\n"
18379 msgstr ""
18380
18381 #. type: textblock
18382 #: ../src/guestfs-actions.pod:7354 ../fish/guestfish-actions.pod:4925
18383 msgid ""
18384 "This calls the external C<zegrep -i> program and returns the matching lines."
18385 msgstr ""
18386
18387 #. type: =head2
18388 #: ../src/guestfs-actions.pod:7366
18389 msgid "guestfs_zero"
18390 msgstr ""
18391
18392 #. type: verbatim
18393 #: ../src/guestfs-actions.pod:7368
18394 #, no-wrap
18395 msgid ""
18396 " int\n"
18397 " guestfs_zero (guestfs_h *g,\n"
18398 "               const char *device);\n"
18399 "\n"
18400 msgstr ""
18401
18402 #. type: textblock
18403 #: ../src/guestfs-actions.pod:7372 ../fish/guestfish-actions.pod:4935
18404 msgid "This command writes zeroes over the first few blocks of C<device>."
18405 msgstr ""
18406
18407 #. type: textblock
18408 #: ../src/guestfs-actions.pod:7374 ../fish/guestfish-actions.pod:4937
18409 msgid ""
18410 "How many blocks are zeroed isn't specified (but it's I<not> enough to "
18411 "securely wipe the device).  It should be sufficient to remove any partition "
18412 "tables, filesystem superblocks and so on."
18413 msgstr ""
18414
18415 #. type: textblock
18416 #: ../src/guestfs-actions.pod:7378
18417 msgid "See also: C<guestfs_zero_device>, C<guestfs_scrub_device>."
18418 msgstr ""
18419
18420 #. type: =head2
18421 #: ../src/guestfs-actions.pod:7389
18422 msgid "guestfs_zero_device"
18423 msgstr ""
18424
18425 #. type: verbatim
18426 #: ../src/guestfs-actions.pod:7391
18427 #, no-wrap
18428 msgid ""
18429 " int\n"
18430 " guestfs_zero_device (guestfs_h *g,\n"
18431 "                      const char *device);\n"
18432 "\n"
18433 msgstr ""
18434
18435 #. type: textblock
18436 #: ../src/guestfs-actions.pod:7395
18437 msgid ""
18438 "This command writes zeroes over the entire C<device>.  Compare with "
18439 "C<guestfs_zero> which just zeroes the first few blocks of a device."
18440 msgstr ""
18441
18442 #. type: textblock
18443 #: ../src/guestfs-actions.pod:7409
18444 msgid "(Added in 1.3.1)"
18445 msgstr ""
18446
18447 #. type: =head2
18448 #: ../src/guestfs-actions.pod:7411
18449 msgid "guestfs_zerofree"
18450 msgstr ""
18451
18452 #. type: verbatim
18453 #: ../src/guestfs-actions.pod:7413
18454 #, no-wrap
18455 msgid ""
18456 " int\n"
18457 " guestfs_zerofree (guestfs_h *g,\n"
18458 "                   const char *device);\n"
18459 "\n"
18460 msgstr ""
18461
18462 #. type: textblock
18463 #: ../src/guestfs-actions.pod:7417 ../fish/guestfish-actions.pod:4958
18464 msgid ""
18465 "This runs the I<zerofree> program on C<device>.  This program claims to zero "
18466 "unused inodes and disk blocks on an ext2/3 filesystem, thus making it "
18467 "possible to compress the filesystem more effectively."
18468 msgstr ""
18469
18470 #. type: textblock
18471 #: ../src/guestfs-actions.pod:7422 ../fish/guestfish-actions.pod:4963
18472 msgid "You should B<not> run this program if the filesystem is mounted."
18473 msgstr ""
18474
18475 #. type: textblock
18476 #: ../src/guestfs-actions.pod:7425 ../fish/guestfish-actions.pod:4966
18477 msgid ""
18478 "It is possible that using this program can damage the filesystem or data on "
18479 "the filesystem."
18480 msgstr ""
18481
18482 #. type: =head2
18483 #: ../src/guestfs-actions.pod:7432
18484 msgid "guestfs_zfgrep"
18485 msgstr ""
18486
18487 #. type: verbatim
18488 #: ../src/guestfs-actions.pod:7434
18489 #, no-wrap
18490 msgid ""
18491 " char **\n"
18492 " guestfs_zfgrep (guestfs_h *g,\n"
18493 "                 const char *pattern,\n"
18494 "                 const char *path);\n"
18495 "\n"
18496 msgstr ""
18497
18498 #. type: textblock
18499 #: ../src/guestfs-actions.pod:7439 ../fish/guestfish-actions.pod:4973
18500 msgid ""
18501 "This calls the external C<zfgrep> program and returns the matching lines."
18502 msgstr ""
18503
18504 #. type: =head2
18505 #: ../src/guestfs-actions.pod:7451
18506 msgid "guestfs_zfgrepi"
18507 msgstr ""
18508
18509 #. type: verbatim
18510 #: ../src/guestfs-actions.pod:7453
18511 #, no-wrap
18512 msgid ""
18513 " char **\n"
18514 " guestfs_zfgrepi (guestfs_h *g,\n"
18515 "                  const char *pattern,\n"
18516 "                  const char *path);\n"
18517 "\n"
18518 msgstr ""
18519
18520 #. type: textblock
18521 #: ../src/guestfs-actions.pod:7458 ../fish/guestfish-actions.pod:4983
18522 msgid ""
18523 "This calls the external C<zfgrep -i> program and returns the matching lines."
18524 msgstr ""
18525
18526 #. type: =head2
18527 #: ../src/guestfs-actions.pod:7470
18528 msgid "guestfs_zfile"
18529 msgstr ""
18530
18531 #. type: verbatim
18532 #: ../src/guestfs-actions.pod:7472
18533 #, no-wrap
18534 msgid ""
18535 " char *\n"
18536 " guestfs_zfile (guestfs_h *g,\n"
18537 "                const char *meth,\n"
18538 "                const char *path);\n"
18539 "\n"
18540 msgstr ""
18541
18542 #. type: textblock
18543 #: ../src/guestfs-actions.pod:7477 ../fish/guestfish-actions.pod:4993
18544 msgid ""
18545 "This command runs C<file> after first decompressing C<path> using C<method>."
18546 msgstr ""
18547
18548 #. type: textblock
18549 #: ../src/guestfs-actions.pod:7480 ../fish/guestfish-actions.pod:4996
18550 msgid "C<method> must be one of C<gzip>, C<compress> or C<bzip2>."
18551 msgstr ""
18552
18553 #. type: textblock
18554 #: ../src/guestfs-actions.pod:7482
18555 msgid ""
18556 "Since 1.0.63, use C<guestfs_file> instead which can now process compressed "
18557 "files."
18558 msgstr ""
18559
18560 #. type: textblock
18561 #: ../src/guestfs-actions.pod:7488 ../fish/guestfish-actions.pod:5001
18562 msgid ""
18563 "This function is deprecated.  In new code, use the C<file> call instead."
18564 msgstr ""
18565
18566 #. type: =head2
18567 #: ../src/guestfs-actions.pod:7497
18568 msgid "guestfs_zgrep"
18569 msgstr ""
18570
18571 #. type: verbatim
18572 #: ../src/guestfs-actions.pod:7499
18573 #, no-wrap
18574 msgid ""
18575 " char **\n"
18576 " guestfs_zgrep (guestfs_h *g,\n"
18577 "                const char *regex,\n"
18578 "                const char *path);\n"
18579 "\n"
18580 msgstr ""
18581
18582 #. type: textblock
18583 #: ../src/guestfs-actions.pod:7504 ../fish/guestfish-actions.pod:5012
18584 msgid ""
18585 "This calls the external C<zgrep> program and returns the matching lines."
18586 msgstr ""
18587
18588 #. type: =head2
18589 #: ../src/guestfs-actions.pod:7516
18590 msgid "guestfs_zgrepi"
18591 msgstr ""
18592
18593 #. type: verbatim
18594 #: ../src/guestfs-actions.pod:7518
18595 #, no-wrap
18596 msgid ""
18597 " char **\n"
18598 " guestfs_zgrepi (guestfs_h *g,\n"
18599 "                 const char *regex,\n"
18600 "                 const char *path);\n"
18601 "\n"
18602 msgstr ""
18603
18604 #. type: textblock
18605 #: ../src/guestfs-actions.pod:7523 ../fish/guestfish-actions.pod:5022
18606 msgid ""
18607 "This calls the external C<zgrep -i> program and returns the matching lines."
18608 msgstr ""
18609
18610 #. type: =item
18611 #: ../src/guestfs-availability.pod:3
18612 msgid "B<augeas>"
18613 msgstr ""
18614
18615 #. type: textblock
18616 #: ../src/guestfs-availability.pod:5
18617 msgid ""
18618 "The following functions: L</guestfs_aug_clear> L</guestfs_aug_close> L</"
18619 "guestfs_aug_defnode> L</guestfs_aug_defvar> L</guestfs_aug_get> L</"
18620 "guestfs_aug_init> L</guestfs_aug_insert> L</guestfs_aug_load> L</"
18621 "guestfs_aug_ls> L</guestfs_aug_match> L</guestfs_aug_mv> L</guestfs_aug_rm> "
18622 "L</guestfs_aug_save> L</guestfs_aug_set>"
18623 msgstr ""
18624
18625 #. type: =item
18626 #: ../src/guestfs-availability.pod:21
18627 msgid "B<inotify>"
18628 msgstr ""
18629
18630 #. type: textblock
18631 #: ../src/guestfs-availability.pod:23
18632 msgid ""
18633 "The following functions: L</guestfs_inotify_add_watch> L</"
18634 "guestfs_inotify_close> L</guestfs_inotify_files> L</guestfs_inotify_init> L</"
18635 "guestfs_inotify_read> L</guestfs_inotify_rm_watch>"
18636 msgstr ""
18637
18638 #. type: =item
18639 #: ../src/guestfs-availability.pod:31
18640 msgid "B<linuxfsuuid>"
18641 msgstr ""
18642
18643 #. type: textblock
18644 #: ../src/guestfs-availability.pod:33
18645 msgid ""
18646 "The following functions: L</guestfs_mke2fs_JU> L</guestfs_mke2journal_U> L</"
18647 "guestfs_mkswap_U> L</guestfs_swapoff_uuid> L</guestfs_swapon_uuid>"
18648 msgstr ""
18649
18650 #. type: =item
18651 #: ../src/guestfs-availability.pod:40
18652 msgid "B<linuxmodules>"
18653 msgstr ""
18654
18655 #. type: textblock
18656 #: ../src/guestfs-availability.pod:42
18657 msgid "The following functions: L</guestfs_modprobe>"
18658 msgstr ""
18659
18660 #. type: =item
18661 #: ../src/guestfs-availability.pod:45
18662 msgid "B<linuxxattrs>"
18663 msgstr ""
18664
18665 #. type: textblock
18666 #: ../src/guestfs-availability.pod:47
18667 msgid ""
18668 "The following functions: L</guestfs_getxattr> L</guestfs_getxattrs> L</"
18669 "guestfs_lgetxattr> L</guestfs_lgetxattrs> L</guestfs_lremovexattr> L</"
18670 "guestfs_lsetxattr> L</guestfs_lxattrlist> L</guestfs_removexattr> L</"
18671 "guestfs_setxattr>"
18672 msgstr ""
18673
18674 #. type: =item
18675 #: ../src/guestfs-availability.pod:58
18676 msgid "B<luks>"
18677 msgstr ""
18678
18679 #. type: textblock
18680 #: ../src/guestfs-availability.pod:60
18681 msgid ""
18682 "The following functions: L</guestfs_luks_add_key> L</guestfs_luks_close> L</"
18683 "guestfs_luks_format> L</guestfs_luks_format_cipher> L</"
18684 "guestfs_luks_kill_slot> L</guestfs_luks_open> L</guestfs_luks_open_ro>"
18685 msgstr ""
18686
18687 #. type: =item
18688 #: ../src/guestfs-availability.pod:69
18689 msgid "B<lvm2>"
18690 msgstr ""
18691
18692 #. type: textblock
18693 #: ../src/guestfs-availability.pod:71
18694 msgid ""
18695 "The following functions: L</guestfs_is_lv> L</guestfs_lvcreate> L</"
18696 "guestfs_lvm_remove_all> L</guestfs_lvm_set_filter> L</guestfs_lvremove> L</"
18697 "guestfs_lvresize> L</guestfs_lvresize_free> L</guestfs_lvs> L</"
18698 "guestfs_lvs_full> L</guestfs_pvcreate> L</guestfs_pvremove> L</"
18699 "guestfs_pvresize> L</guestfs_pvresize_size> L</guestfs_pvs> L</"
18700 "guestfs_pvs_full> L</guestfs_vg_activate> L</guestfs_vg_activate_all> L</"
18701 "guestfs_vgcreate> L</guestfs_vgremove> L</guestfs_vgs> L</guestfs_vgs_full>"
18702 msgstr ""
18703
18704 #. type: =item
18705 #: ../src/guestfs-availability.pod:94
18706 msgid "B<mknod>"
18707 msgstr ""
18708
18709 #. type: textblock
18710 #: ../src/guestfs-availability.pod:96
18711 msgid ""
18712 "The following functions: L</guestfs_mkfifo> L</guestfs_mknod> L</"
18713 "guestfs_mknod_b> L</guestfs_mknod_c>"
18714 msgstr ""
18715
18716 #. type: =item
18717 #: ../src/guestfs-availability.pod:102
18718 msgid "B<ntfs3g>"
18719 msgstr ""
18720
18721 #. type: textblock
18722 #: ../src/guestfs-availability.pod:104
18723 msgid "The following functions: L</guestfs_ntfs_3g_probe>"
18724 msgstr ""
18725
18726 #. type: =item
18727 #: ../src/guestfs-availability.pod:107
18728 msgid "B<ntfsprogs>"
18729 msgstr ""
18730
18731 #. type: textblock
18732 #: ../src/guestfs-availability.pod:109
18733 msgid ""
18734 "The following functions: L</guestfs_ntfsresize> L</guestfs_ntfsresize_size>"
18735 msgstr ""
18736
18737 #. type: =item
18738 #: ../src/guestfs-availability.pod:113
18739 msgid "B<realpath>"
18740 msgstr ""
18741
18742 #. type: textblock
18743 #: ../src/guestfs-availability.pod:115
18744 msgid "The following functions: L</guestfs_realpath>"
18745 msgstr ""
18746
18747 #. type: =item
18748 #: ../src/guestfs-availability.pod:118
18749 msgid "B<scrub>"
18750 msgstr ""
18751
18752 #. type: textblock
18753 #: ../src/guestfs-availability.pod:120
18754 msgid ""
18755 "The following functions: L</guestfs_scrub_device> L</guestfs_scrub_file> L</"
18756 "guestfs_scrub_freespace>"
18757 msgstr ""
18758
18759 #. type: =item
18760 #: ../src/guestfs-availability.pod:125
18761 msgid "B<selinux>"
18762 msgstr ""
18763
18764 #. type: textblock
18765 #: ../src/guestfs-availability.pod:127
18766 msgid "The following functions: L</guestfs_getcon> L</guestfs_setcon>"
18767 msgstr ""
18768
18769 #. type: =item
18770 #: ../src/guestfs-availability.pod:131
18771 msgid "B<xz>"
18772 msgstr ""
18773
18774 #. type: textblock
18775 #: ../src/guestfs-availability.pod:133
18776 msgid "The following functions: L</guestfs_txz_in> L</guestfs_txz_out>"
18777 msgstr ""
18778
18779 #. type: =item
18780 #: ../src/guestfs-availability.pod:137
18781 msgid "B<zerofree>"
18782 msgstr ""
18783
18784 #. type: textblock
18785 #: ../src/guestfs-availability.pod:139
18786 msgid "The following functions: L</guestfs_zerofree>"
18787 msgstr ""
18788
18789 #. type: =head2
18790 #: ../src/guestfs-structs.pod:1
18791 msgid "guestfs_int_bool"
18792 msgstr ""
18793
18794 #. type: verbatim
18795 #: ../src/guestfs-structs.pod:3
18796 #, no-wrap
18797 msgid ""
18798 " struct guestfs_int_bool {\n"
18799 "   int32_t i;\n"
18800 "   int32_t b;\n"
18801 " };\n"
18802 " \n"
18803 msgstr ""
18804
18805 #. type: verbatim
18806 #: ../src/guestfs-structs.pod:8
18807 #, no-wrap
18808 msgid ""
18809 " struct guestfs_int_bool_list {\n"
18810 "   uint32_t len; /* Number of elements in list. */\n"
18811 "   struct guestfs_int_bool *val; /* Elements. */\n"
18812 " };\n"
18813 " \n"
18814 msgstr ""
18815
18816 #. type: verbatim
18817 #: ../src/guestfs-structs.pod:13
18818 #, no-wrap
18819 msgid ""
18820 " void guestfs_free_int_bool (struct guestfs_free_int_bool *);\n"
18821 " void guestfs_free_int_bool_list (struct guestfs_free_int_bool_list *);\n"
18822 "\n"
18823 msgstr ""
18824
18825 #. type: =head2
18826 #: ../src/guestfs-structs.pod:16
18827 msgid "guestfs_lvm_pv"
18828 msgstr ""
18829
18830 #. type: verbatim
18831 #: ../src/guestfs-structs.pod:18
18832 #, no-wrap
18833 msgid ""
18834 " struct guestfs_lvm_pv {\n"
18835 "   char *pv_name;\n"
18836 "   /* The next field is NOT nul-terminated, be careful when printing it: */\n"
18837 "   char pv_uuid[32];\n"
18838 "   char *pv_fmt;\n"
18839 "   uint64_t pv_size;\n"
18840 "   uint64_t dev_size;\n"
18841 "   uint64_t pv_free;\n"
18842 "   uint64_t pv_used;\n"
18843 "   char *pv_attr;\n"
18844 "   int64_t pv_pe_count;\n"
18845 "   int64_t pv_pe_alloc_count;\n"
18846 "   char *pv_tags;\n"
18847 "   uint64_t pe_start;\n"
18848 "   int64_t pv_mda_count;\n"
18849 "   uint64_t pv_mda_free;\n"
18850 " };\n"
18851 " \n"
18852 msgstr ""
18853
18854 #. type: verbatim
18855 #: ../src/guestfs-structs.pod:36
18856 #, no-wrap
18857 msgid ""
18858 " struct guestfs_lvm_pv_list {\n"
18859 "   uint32_t len; /* Number of elements in list. */\n"
18860 "   struct guestfs_lvm_pv *val; /* Elements. */\n"
18861 " };\n"
18862 " \n"
18863 msgstr ""
18864
18865 #. type: verbatim
18866 #: ../src/guestfs-structs.pod:41
18867 #, no-wrap
18868 msgid ""
18869 " void guestfs_free_lvm_pv (struct guestfs_free_lvm_pv *);\n"
18870 " void guestfs_free_lvm_pv_list (struct guestfs_free_lvm_pv_list *);\n"
18871 "\n"
18872 msgstr ""
18873
18874 #. type: =head2
18875 #: ../src/guestfs-structs.pod:44
18876 msgid "guestfs_lvm_vg"
18877 msgstr ""
18878
18879 #. type: verbatim
18880 #: ../src/guestfs-structs.pod:46
18881 #, no-wrap
18882 msgid ""
18883 " struct guestfs_lvm_vg {\n"
18884 "   char *vg_name;\n"
18885 "   /* The next field is NOT nul-terminated, be careful when printing it: */\n"
18886 "   char vg_uuid[32];\n"
18887 "   char *vg_fmt;\n"
18888 "   char *vg_attr;\n"
18889 "   uint64_t vg_size;\n"
18890 "   uint64_t vg_free;\n"
18891 "   char *vg_sysid;\n"
18892 "   uint64_t vg_extent_size;\n"
18893 "   int64_t vg_extent_count;\n"
18894 "   int64_t vg_free_count;\n"
18895 "   int64_t max_lv;\n"
18896 "   int64_t max_pv;\n"
18897 "   int64_t pv_count;\n"
18898 "   int64_t lv_count;\n"
18899 "   int64_t snap_count;\n"
18900 "   int64_t vg_seqno;\n"
18901 "   char *vg_tags;\n"
18902 "   int64_t vg_mda_count;\n"
18903 "   uint64_t vg_mda_free;\n"
18904 " };\n"
18905 " \n"
18906 msgstr ""
18907
18908 #. type: verbatim
18909 #: ../src/guestfs-structs.pod:69
18910 #, no-wrap
18911 msgid ""
18912 " struct guestfs_lvm_vg_list {\n"
18913 "   uint32_t len; /* Number of elements in list. */\n"
18914 "   struct guestfs_lvm_vg *val; /* Elements. */\n"
18915 " };\n"
18916 " \n"
18917 msgstr ""
18918
18919 #. type: verbatim
18920 #: ../src/guestfs-structs.pod:74
18921 #, no-wrap
18922 msgid ""
18923 " void guestfs_free_lvm_vg (struct guestfs_free_lvm_vg *);\n"
18924 " void guestfs_free_lvm_vg_list (struct guestfs_free_lvm_vg_list *);\n"
18925 "\n"
18926 msgstr ""
18927
18928 #. type: =head2
18929 #: ../src/guestfs-structs.pod:77
18930 msgid "guestfs_lvm_lv"
18931 msgstr ""
18932
18933 #. type: verbatim
18934 #: ../src/guestfs-structs.pod:79
18935 #, no-wrap
18936 msgid ""
18937 " struct guestfs_lvm_lv {\n"
18938 "   char *lv_name;\n"
18939 "   /* The next field is NOT nul-terminated, be careful when printing it: */\n"
18940 "   char lv_uuid[32];\n"
18941 "   char *lv_attr;\n"
18942 "   int64_t lv_major;\n"
18943 "   int64_t lv_minor;\n"
18944 "   int64_t lv_kernel_major;\n"
18945 "   int64_t lv_kernel_minor;\n"
18946 "   uint64_t lv_size;\n"
18947 "   int64_t seg_count;\n"
18948 "   char *origin;\n"
18949 "   /* The next field is [0..100] or -1 meaning 'not present': */\n"
18950 "   float snap_percent;\n"
18951 "   /* The next field is [0..100] or -1 meaning 'not present': */\n"
18952 "   float copy_percent;\n"
18953 "   char *move_pv;\n"
18954 "   char *lv_tags;\n"
18955 "   char *mirror_log;\n"
18956 "   char *modules;\n"
18957 " };\n"
18958 " \n"
18959 msgstr ""
18960
18961 #. type: verbatim
18962 #: ../src/guestfs-structs.pod:101
18963 #, no-wrap
18964 msgid ""
18965 " struct guestfs_lvm_lv_list {\n"
18966 "   uint32_t len; /* Number of elements in list. */\n"
18967 "   struct guestfs_lvm_lv *val; /* Elements. */\n"
18968 " };\n"
18969 " \n"
18970 msgstr ""
18971
18972 #. type: verbatim
18973 #: ../src/guestfs-structs.pod:106
18974 #, no-wrap
18975 msgid ""
18976 " void guestfs_free_lvm_lv (struct guestfs_free_lvm_lv *);\n"
18977 " void guestfs_free_lvm_lv_list (struct guestfs_free_lvm_lv_list *);\n"
18978 "\n"
18979 msgstr ""
18980
18981 #. type: verbatim
18982 #: ../src/guestfs-structs.pod:111
18983 #, no-wrap
18984 msgid ""
18985 " struct guestfs_stat {\n"
18986 "   int64_t dev;\n"
18987 "   int64_t ino;\n"
18988 "   int64_t mode;\n"
18989 "   int64_t nlink;\n"
18990 "   int64_t uid;\n"
18991 "   int64_t gid;\n"
18992 "   int64_t rdev;\n"
18993 "   int64_t size;\n"
18994 "   int64_t blksize;\n"
18995 "   int64_t blocks;\n"
18996 "   int64_t atime;\n"
18997 "   int64_t mtime;\n"
18998 "   int64_t ctime;\n"
18999 " };\n"
19000 " \n"
19001 msgstr ""
19002
19003 #. type: verbatim
19004 #: ../src/guestfs-structs.pod:127
19005 #, no-wrap
19006 msgid ""
19007 " struct guestfs_stat_list {\n"
19008 "   uint32_t len; /* Number of elements in list. */\n"
19009 "   struct guestfs_stat *val; /* Elements. */\n"
19010 " };\n"
19011 " \n"
19012 msgstr ""
19013
19014 #. type: verbatim
19015 #: ../src/guestfs-structs.pod:132
19016 #, no-wrap
19017 msgid ""
19018 " void guestfs_free_stat (struct guestfs_free_stat *);\n"
19019 " void guestfs_free_stat_list (struct guestfs_free_stat_list *);\n"
19020 "\n"
19021 msgstr ""
19022
19023 #. type: verbatim
19024 #: ../src/guestfs-structs.pod:137
19025 #, no-wrap
19026 msgid ""
19027 " struct guestfs_statvfs {\n"
19028 "   int64_t bsize;\n"
19029 "   int64_t frsize;\n"
19030 "   int64_t blocks;\n"
19031 "   int64_t bfree;\n"
19032 "   int64_t bavail;\n"
19033 "   int64_t files;\n"
19034 "   int64_t ffree;\n"
19035 "   int64_t favail;\n"
19036 "   int64_t fsid;\n"
19037 "   int64_t flag;\n"
19038 "   int64_t namemax;\n"
19039 " };\n"
19040 " \n"
19041 msgstr ""
19042
19043 #. type: verbatim
19044 #: ../src/guestfs-structs.pod:151
19045 #, no-wrap
19046 msgid ""
19047 " struct guestfs_statvfs_list {\n"
19048 "   uint32_t len; /* Number of elements in list. */\n"
19049 "   struct guestfs_statvfs *val; /* Elements. */\n"
19050 " };\n"
19051 " \n"
19052 msgstr ""
19053
19054 #. type: verbatim
19055 #: ../src/guestfs-structs.pod:156
19056 #, no-wrap
19057 msgid ""
19058 " void guestfs_free_statvfs (struct guestfs_free_statvfs *);\n"
19059 " void guestfs_free_statvfs_list (struct guestfs_free_statvfs_list *);\n"
19060 "\n"
19061 msgstr ""
19062
19063 #. type: =head2
19064 #: ../src/guestfs-structs.pod:159
19065 msgid "guestfs_dirent"
19066 msgstr ""
19067
19068 #. type: verbatim
19069 #: ../src/guestfs-structs.pod:161
19070 #, no-wrap
19071 msgid ""
19072 " struct guestfs_dirent {\n"
19073 "   int64_t ino;\n"
19074 "   char ftyp;\n"
19075 "   char *name;\n"
19076 " };\n"
19077 " \n"
19078 msgstr ""
19079
19080 #. type: verbatim
19081 #: ../src/guestfs-structs.pod:167
19082 #, no-wrap
19083 msgid ""
19084 " struct guestfs_dirent_list {\n"
19085 "   uint32_t len; /* Number of elements in list. */\n"
19086 "   struct guestfs_dirent *val; /* Elements. */\n"
19087 " };\n"
19088 " \n"
19089 msgstr ""
19090
19091 #. type: verbatim
19092 #: ../src/guestfs-structs.pod:172
19093 #, no-wrap
19094 msgid ""
19095 " void guestfs_free_dirent (struct guestfs_free_dirent *);\n"
19096 " void guestfs_free_dirent_list (struct guestfs_free_dirent_list *);\n"
19097 "\n"
19098 msgstr ""
19099
19100 #. type: verbatim
19101 #: ../src/guestfs-structs.pod:177
19102 #, no-wrap
19103 msgid ""
19104 " struct guestfs_version {\n"
19105 "   int64_t major;\n"
19106 "   int64_t minor;\n"
19107 "   int64_t release;\n"
19108 "   char *extra;\n"
19109 " };\n"
19110 " \n"
19111 msgstr ""
19112
19113 #. type: verbatim
19114 #: ../src/guestfs-structs.pod:184
19115 #, no-wrap
19116 msgid ""
19117 " struct guestfs_version_list {\n"
19118 "   uint32_t len; /* Number of elements in list. */\n"
19119 "   struct guestfs_version *val; /* Elements. */\n"
19120 " };\n"
19121 " \n"
19122 msgstr ""
19123
19124 #. type: verbatim
19125 #: ../src/guestfs-structs.pod:189
19126 #, no-wrap
19127 msgid ""
19128 " void guestfs_free_version (struct guestfs_free_version *);\n"
19129 " void guestfs_free_version_list (struct guestfs_free_version_list *);\n"
19130 "\n"
19131 msgstr ""
19132
19133 #. type: =head2
19134 #: ../src/guestfs-structs.pod:192
19135 msgid "guestfs_xattr"
19136 msgstr ""
19137
19138 #. type: verbatim
19139 #: ../src/guestfs-structs.pod:194
19140 #, no-wrap
19141 msgid ""
19142 " struct guestfs_xattr {\n"
19143 "   char *attrname;\n"
19144 "   /* The next two fields describe a byte array. */\n"
19145 "   uint32_t attrval_len;\n"
19146 "   char *attrval;\n"
19147 " };\n"
19148 " \n"
19149 msgstr ""
19150
19151 #. type: verbatim
19152 #: ../src/guestfs-structs.pod:201
19153 #, no-wrap
19154 msgid ""
19155 " struct guestfs_xattr_list {\n"
19156 "   uint32_t len; /* Number of elements in list. */\n"
19157 "   struct guestfs_xattr *val; /* Elements. */\n"
19158 " };\n"
19159 " \n"
19160 msgstr ""
19161
19162 #. type: verbatim
19163 #: ../src/guestfs-structs.pod:206
19164 #, no-wrap
19165 msgid ""
19166 " void guestfs_free_xattr (struct guestfs_free_xattr *);\n"
19167 " void guestfs_free_xattr_list (struct guestfs_free_xattr_list *);\n"
19168 "\n"
19169 msgstr ""
19170
19171 #. type: =head2
19172 #: ../src/guestfs-structs.pod:209
19173 msgid "guestfs_inotify_event"
19174 msgstr ""
19175
19176 #. type: verbatim
19177 #: ../src/guestfs-structs.pod:211
19178 #, no-wrap
19179 msgid ""
19180 " struct guestfs_inotify_event {\n"
19181 "   int64_t in_wd;\n"
19182 "   uint32_t in_mask;\n"
19183 "   uint32_t in_cookie;\n"
19184 "   char *in_name;\n"
19185 " };\n"
19186 " \n"
19187 msgstr ""
19188
19189 #. type: verbatim
19190 #: ../src/guestfs-structs.pod:218
19191 #, no-wrap
19192 msgid ""
19193 " struct guestfs_inotify_event_list {\n"
19194 "   uint32_t len; /* Number of elements in list. */\n"
19195 "   struct guestfs_inotify_event *val; /* Elements. */\n"
19196 " };\n"
19197 " \n"
19198 msgstr ""
19199
19200 #. type: verbatim
19201 #: ../src/guestfs-structs.pod:223
19202 #, no-wrap
19203 msgid ""
19204 " void guestfs_free_inotify_event (struct guestfs_free_inotify_event *);\n"
19205 " void guestfs_free_inotify_event_list (struct guestfs_free_inotify_event_list *);\n"
19206 "\n"
19207 msgstr ""
19208
19209 #. type: =head2
19210 #: ../src/guestfs-structs.pod:226
19211 msgid "guestfs_partition"
19212 msgstr ""
19213
19214 #. type: verbatim
19215 #: ../src/guestfs-structs.pod:228
19216 #, no-wrap
19217 msgid ""
19218 " struct guestfs_partition {\n"
19219 "   int32_t part_num;\n"
19220 "   uint64_t part_start;\n"
19221 "   uint64_t part_end;\n"
19222 "   uint64_t part_size;\n"
19223 " };\n"
19224 " \n"
19225 msgstr ""
19226
19227 #. type: verbatim
19228 #: ../src/guestfs-structs.pod:235
19229 #, no-wrap
19230 msgid ""
19231 " struct guestfs_partition_list {\n"
19232 "   uint32_t len; /* Number of elements in list. */\n"
19233 "   struct guestfs_partition *val; /* Elements. */\n"
19234 " };\n"
19235 " \n"
19236 msgstr ""
19237
19238 #. type: verbatim
19239 #: ../src/guestfs-structs.pod:240
19240 #, no-wrap
19241 msgid ""
19242 " void guestfs_free_partition (struct guestfs_free_partition *);\n"
19243 " void guestfs_free_partition_list (struct guestfs_free_partition_list *);\n"
19244 "\n"
19245 msgstr ""
19246
19247 #. type: =head2
19248 #: ../src/guestfs-structs.pod:243
19249 msgid "guestfs_application"
19250 msgstr ""
19251
19252 #. type: verbatim
19253 #: ../src/guestfs-structs.pod:245
19254 #, no-wrap
19255 msgid ""
19256 " struct guestfs_application {\n"
19257 "   char *app_name;\n"
19258 "   char *app_display_name;\n"
19259 "   int32_t app_epoch;\n"
19260 "   char *app_version;\n"
19261 "   char *app_release;\n"
19262 "   char *app_install_path;\n"
19263 "   char *app_trans_path;\n"
19264 "   char *app_publisher;\n"
19265 "   char *app_url;\n"
19266 "   char *app_source_package;\n"
19267 "   char *app_summary;\n"
19268 "   char *app_description;\n"
19269 " };\n"
19270 " \n"
19271 msgstr ""
19272
19273 #. type: verbatim
19274 #: ../src/guestfs-structs.pod:260
19275 #, no-wrap
19276 msgid ""
19277 " struct guestfs_application_list {\n"
19278 "   uint32_t len; /* Number of elements in list. */\n"
19279 "   struct guestfs_application *val; /* Elements. */\n"
19280 " };\n"
19281 " \n"
19282 msgstr ""
19283
19284 #. type: verbatim
19285 #: ../src/guestfs-structs.pod:265
19286 #, no-wrap
19287 msgid ""
19288 " void guestfs_free_application (struct guestfs_free_application *);\n"
19289 " void guestfs_free_application_list (struct guestfs_free_application_list *);\n"
19290 "\n"
19291 msgstr ""
19292
19293 #. type: textblock
19294 #: ../fish/guestfish.pod:5
19295 msgid "guestfish - the libguestfs Filesystem Interactive SHell"
19296 msgstr ""
19297
19298 #. type: verbatim
19299 #: ../fish/guestfish.pod:9
19300 #, no-wrap
19301 msgid ""
19302 " guestfish [--options] [commands]\n"
19303 "\n"
19304 msgstr ""
19305
19306 #. type: verbatim
19307 #: ../fish/guestfish.pod:11
19308 #, no-wrap
19309 msgid ""
19310 " guestfish\n"
19311 "\n"
19312 msgstr ""
19313
19314 #. type: verbatim
19315 #: ../fish/guestfish.pod:13
19316 #, no-wrap
19317 msgid ""
19318 " guestfish [--ro|--rw] -a disk.img\n"
19319 "\n"
19320 msgstr ""
19321
19322 #. type: verbatim
19323 #: ../fish/guestfish.pod:15
19324 #, no-wrap
19325 msgid ""
19326 " guestfish [--ro|--rw] -a disk.img -m dev[:mountpoint]\n"
19327 "\n"
19328 msgstr ""
19329
19330 #. type: verbatim
19331 #: ../fish/guestfish.pod:17
19332 #, no-wrap
19333 msgid ""
19334 " guestfish -d libvirt-domain\n"
19335 "\n"
19336 msgstr ""
19337
19338 #. type: verbatim
19339 #: ../fish/guestfish.pod:19
19340 #, no-wrap
19341 msgid ""
19342 " guestfish [--ro|--rw] -a disk.img -i\n"
19343 "\n"
19344 msgstr ""
19345
19346 #. type: verbatim
19347 #: ../fish/guestfish.pod:21
19348 #, no-wrap
19349 msgid ""
19350 " guestfish -d libvirt-domain -i\n"
19351 "\n"
19352 msgstr ""
19353
19354 #. type: =head1
19355 #: ../fish/guestfish.pod:23 ../fuse/guestmount.pod:15 ../tools/virt-edit.pl:44
19356 #: ../tools/virt-win-reg.pl:51 ../tools/virt-tar.pl:64
19357 msgid "WARNING"
19358 msgstr ""
19359
19360 #. type: textblock
19361 #: ../fish/guestfish.pod:25
19362 msgid ""
19363 "Using guestfish in read/write mode on live virtual machines can be "
19364 "dangerous, potentially causing disk corruption.  Use the I<--ro> (read-only) "
19365 "option to use guestfish safely if the disk image or virtual machine might be "
19366 "live."
19367 msgstr ""
19368
19369 #. type: textblock
19370 #: ../fish/guestfish.pod:32
19371 msgid ""
19372 "Guestfish is a shell and command-line tool for examining and modifying "
19373 "virtual machine filesystems.  It uses libguestfs and exposes all of the "
19374 "functionality of the guestfs API, see L<guestfs(3)>."
19375 msgstr ""
19376
19377 #. type: textblock
19378 #: ../fish/guestfish.pod:36
19379 msgid ""
19380 "Guestfish gives you structured access to the libguestfs API, from shell "
19381 "scripts or the command line or interactively.  If you want to rescue a "
19382 "broken virtual machine image, you should look at the L<virt-rescue(1)> "
19383 "command."
19384 msgstr ""
19385
19386 #. type: =head1
19387 #: ../fish/guestfish.pod:41 ../fish/guestfish.pod:947
19388 #: ../fuse/guestmount.pod:39 ../tools/virt-edit.pl:63 ../tools/virt-tar.pl:50
19389 msgid "EXAMPLES"
19390 msgstr ""
19391
19392 #. type: =head2
19393 #: ../fish/guestfish.pod:43
19394 msgid "As an interactive shell"
19395 msgstr ""
19396
19397 #. type: verbatim
19398 #: ../fish/guestfish.pod:45
19399 #, no-wrap
19400 msgid ""
19401 " $ guestfish\n"
19402 " \n"
19403 msgstr ""
19404
19405 #. type: verbatim
19406 #: ../fish/guestfish.pod:47
19407 #, no-wrap
19408 msgid ""
19409 " Welcome to guestfish, the libguestfs filesystem interactive shell for\n"
19410 " editing virtual machine filesystems.\n"
19411 " \n"
19412 msgstr ""
19413
19414 #. type: verbatim
19415 #: ../fish/guestfish.pod:50
19416 #, no-wrap
19417 msgid ""
19418 " Type: 'help' for a list of commands\n"
19419 "       'man' to read the manual\n"
19420 "       'quit' to quit the shell\n"
19421 " \n"
19422 msgstr ""
19423
19424 #. type: verbatim
19425 #: ../fish/guestfish.pod:54
19426 #, no-wrap
19427 msgid ""
19428 " ><fs> add-ro disk.img\n"
19429 " ><fs> run\n"
19430 " ><fs> list-filesystems\n"
19431 " /dev/sda1: ext4\n"
19432 " /dev/vg_guest/lv_root: ext4\n"
19433 " /dev/vg_guest/lv_swap: swap\n"
19434 " ><fs> mount /dev/vg_guest/lv_root /\n"
19435 " ><fs> cat /etc/fstab\n"
19436 " # /etc/fstab\n"
19437 " # Created by anaconda\n"
19438 " [...]\n"
19439 " ><fs> exit\n"
19440 "\n"
19441 msgstr ""
19442
19443 #. type: =head2
19444 #: ../fish/guestfish.pod:67
19445 msgid "From shell scripts"
19446 msgstr ""
19447
19448 #. type: textblock
19449 #: ../fish/guestfish.pod:69
19450 msgid "Create a new C</etc/motd> file in a guest or disk image:"
19451 msgstr ""
19452
19453 #. type: verbatim
19454 #: ../fish/guestfish.pod:71
19455 #, no-wrap
19456 msgid ""
19457 " guestfish <<_EOF_\n"
19458 " add disk.img\n"
19459 " run\n"
19460 " mount /dev/vg_guest/lv_root /\n"
19461 " write /etc/motd \"Welcome, new users\"\n"
19462 " _EOF_\n"
19463 "\n"
19464 msgstr ""
19465
19466 #. type: textblock
19467 #: ../fish/guestfish.pod:78
19468 msgid "List the LVM logical volumes in a disk image:"
19469 msgstr ""
19470
19471 #. type: verbatim
19472 #: ../fish/guestfish.pod:80
19473 #, no-wrap
19474 msgid ""
19475 " guestfish -a disk.img --ro <<_EOF_\n"
19476 " run\n"
19477 " lvs\n"
19478 " _EOF_\n"
19479 "\n"
19480 msgstr ""
19481
19482 #. type: textblock
19483 #: ../fish/guestfish.pod:85
19484 msgid "List all the filesystems in a disk image:"
19485 msgstr ""
19486
19487 #. type: verbatim
19488 #: ../fish/guestfish.pod:87
19489 #, no-wrap
19490 msgid ""
19491 " guestfish -a disk.img --ro <<_EOF_\n"
19492 " run\n"
19493 " list-filesystems\n"
19494 " _EOF_\n"
19495 "\n"
19496 msgstr ""
19497
19498 #. type: =head2
19499 #: ../fish/guestfish.pod:92
19500 msgid "On one command line"
19501 msgstr ""
19502
19503 #. type: textblock
19504 #: ../fish/guestfish.pod:94
19505 msgid "Update C</etc/resolv.conf> in a guest:"
19506 msgstr ""
19507
19508 #. type: verbatim
19509 #: ../fish/guestfish.pod:96
19510 #, no-wrap
19511 msgid ""
19512 " guestfish \\\n"
19513 "   add disk.img : run : mount /dev/vg_guest/lv_root / : \\\n"
19514 "   write /etc/resolv.conf \"nameserver 1.2.3.4\"\n"
19515 "\n"
19516 msgstr ""
19517
19518 #. type: textblock
19519 #: ../fish/guestfish.pod:100
19520 msgid "Edit C</boot/grub/grub.conf> interactively:"
19521 msgstr ""
19522
19523 #. type: verbatim
19524 #: ../fish/guestfish.pod:102
19525 #, no-wrap
19526 msgid ""
19527 " guestfish --rw --add disk.img \\\n"
19528 "   --mount /dev/vg_guest/lv_root \\\n"
19529 "   --mount /dev/sda1:/boot \\\n"
19530 "   edit /boot/grub/grub.conf\n"
19531 "\n"
19532 msgstr ""
19533
19534 #. type: =head2
19535 #: ../fish/guestfish.pod:107
19536 msgid "Mount disks automatically"
19537 msgstr ""
19538
19539 #. type: textblock
19540 #: ../fish/guestfish.pod:109
19541 msgid ""
19542 "Use the I<-i> option to automatically mount the disks from a virtual machine:"
19543 msgstr ""
19544
19545 #. type: verbatim
19546 #: ../fish/guestfish.pod:112
19547 #, no-wrap
19548 msgid ""
19549 " guestfish --ro -a disk.img -i cat /etc/group\n"
19550 "\n"
19551 msgstr ""
19552
19553 #. type: verbatim
19554 #: ../fish/guestfish.pod:114
19555 #, no-wrap
19556 msgid ""
19557 " guestfish --ro -d libvirt-domain -i cat /etc/group\n"
19558 "\n"
19559 msgstr ""
19560
19561 #. type: textblock
19562 #: ../fish/guestfish.pod:116
19563 msgid "Another way to edit C</boot/grub/grub.conf> interactively is:"
19564 msgstr ""
19565
19566 #. type: verbatim
19567 #: ../fish/guestfish.pod:118
19568 #, no-wrap
19569 msgid ""
19570 " guestfish --rw -a disk.img -i edit /boot/grub/grub.conf\n"
19571 "\n"
19572 msgstr ""
19573
19574 #. type: =head2
19575 #: ../fish/guestfish.pod:120
19576 msgid "As a script interpreter"
19577 msgstr ""
19578
19579 #. type: textblock
19580 #: ../fish/guestfish.pod:122
19581 msgid "Create a 100MB disk containing an ext2-formatted partition:"
19582 msgstr ""
19583
19584 #. type: verbatim
19585 #: ../fish/guestfish.pod:124
19586 #, no-wrap
19587 msgid ""
19588 " #!/usr/bin/guestfish -f\n"
19589 " sparse test1.img 100M\n"
19590 " run\n"
19591 " part-disk /dev/sda mbr\n"
19592 " mkfs ext2 /dev/sda1\n"
19593 "\n"
19594 msgstr ""
19595
19596 #. type: =head2
19597 #: ../fish/guestfish.pod:130
19598 msgid "Start with a prepared disk"
19599 msgstr ""
19600
19601 #. type: textblock
19602 #: ../fish/guestfish.pod:132
19603 msgid ""
19604 "An alternate way to create a 100MB disk called C<test1.img> containing a "
19605 "single ext2-formatted partition:"
19606 msgstr ""
19607
19608 #. type: verbatim
19609 #: ../fish/guestfish.pod:135
19610 #, no-wrap
19611 msgid ""
19612 " guestfish -N fs\n"
19613 "\n"
19614 msgstr ""
19615
19616 #. type: textblock
19617 #: ../fish/guestfish.pod:137
19618 msgid "To list what is available do:"
19619 msgstr ""
19620
19621 #. type: verbatim
19622 #: ../fish/guestfish.pod:139 ../fish/guestfish.pod:938
19623 #, no-wrap
19624 msgid ""
19625 " guestfish -N help | less\n"
19626 "\n"
19627 msgstr ""
19628
19629 #. type: =head2
19630 #: ../fish/guestfish.pod:141
19631 msgid "Remote control"
19632 msgstr ""
19633
19634 #. type: verbatim
19635 #: ../fish/guestfish.pod:143
19636 #, no-wrap
19637 msgid ""
19638 " eval \"`guestfish --listen`\"\n"
19639 " guestfish --remote add-ro disk.img\n"
19640 " guestfish --remote run\n"
19641 " guestfish --remote lvs\n"
19642 "\n"
19643 msgstr ""
19644
19645 #. type: =head1
19646 #: ../fish/guestfish.pod:148 ../test-tool/libguestfs-test-tool.pod:37
19647 #: ../fuse/guestmount.pod:83 ../tools/virt-edit.pl:81
19648 #: ../tools/virt-win-reg.pl:96 ../tools/virt-list-filesystems.pl:53
19649 #: ../tools/virt-tar.pl:103 ../tools/virt-make-fs.pl:153
19650 #: ../tools/virt-list-partitions.pl:54
19651 msgid "OPTIONS"
19652 msgstr ""
19653
19654 #. type: =item
19655 #: ../fish/guestfish.pod:152 ../fuse/guestmount.pod:141
19656 #: ../tools/virt-edit.pl:89 ../tools/virt-win-reg.pl:104
19657 #: ../tools/virt-list-filesystems.pl:61 ../tools/virt-tar.pl:111
19658 #: ../tools/virt-make-fs.pl:161 ../tools/virt-list-partitions.pl:62
19659 msgid "B<--help>"
19660 msgstr ""
19661
19662 #. type: textblock
19663 #: ../fish/guestfish.pod:154
19664 msgid "Displays general help on options."
19665 msgstr ""
19666
19667 #. type: =item
19668 #: ../fish/guestfish.pod:156
19669 msgid "B<-h>"
19670 msgstr ""
19671
19672 #. type: =item
19673 #: ../fish/guestfish.pod:158
19674 msgid "B<--cmd-help>"
19675 msgstr ""
19676
19677 #. type: textblock
19678 #: ../fish/guestfish.pod:160
19679 msgid "Lists all available guestfish commands."
19680 msgstr ""
19681
19682 #. type: =item
19683 #: ../fish/guestfish.pod:162
19684 msgid "B<-h cmd>"
19685 msgstr ""
19686
19687 #. type: =item
19688 #: ../fish/guestfish.pod:164
19689 msgid "B<--cmd-help cmd>"
19690 msgstr ""
19691
19692 #. type: textblock
19693 #: ../fish/guestfish.pod:166
19694 msgid "Displays detailed help on a single command C<cmd>."
19695 msgstr ""
19696
19697 #. type: =item
19698 #: ../fish/guestfish.pod:168
19699 msgid "B<-a image>"
19700 msgstr ""
19701
19702 #. type: =item
19703 #: ../fish/guestfish.pod:170
19704 msgid "B<--add image>"
19705 msgstr ""
19706
19707 #. type: textblock
19708 #: ../fish/guestfish.pod:172
19709 msgid "Add a block device or virtual machine image to the shell."
19710 msgstr ""
19711
19712 #. type: textblock
19713 #: ../fish/guestfish.pod:174 ../fuse/guestmount.pod:91
19714 msgid ""
19715 "The format of the disk image is auto-detected.  To override this and force a "
19716 "particular format use the I<--format=..> option."
19717 msgstr ""
19718
19719 #. type: textblock
19720 #: ../fish/guestfish.pod:177
19721 msgid ""
19722 "Using this flag is mostly equivalent to using the C<add> command, with "
19723 "C<readonly:true> if the I<--ro> flag was given, and with C<format:...> if "
19724 "the I<--format=...> flag was given."
19725 msgstr ""
19726
19727 #. type: =item
19728 #: ../fish/guestfish.pod:181
19729 msgid "B<-c URI>"
19730 msgstr ""
19731
19732 #. type: =item
19733 #: ../fish/guestfish.pod:183
19734 msgid "B<--connect URI>"
19735 msgstr ""
19736
19737 #. type: textblock
19738 #: ../fish/guestfish.pod:185 ../fuse/guestmount.pod:96
19739 msgid ""
19740 "When used in conjunction with the I<-d> option, this specifies the libvirt "
19741 "URI to use.  The default is to use the default libvirt connection."
19742 msgstr ""
19743
19744 #. type: =item
19745 #: ../fish/guestfish.pod:189
19746 msgid "B<--csh>"
19747 msgstr ""
19748
19749 #. type: textblock
19750 #: ../fish/guestfish.pod:191
19751 msgid ""
19752 "If using the I<--listen> option and a csh-like shell, use this option.  See "
19753 "section L</REMOTE CONTROL AND CSH> below."
19754 msgstr ""
19755
19756 #. type: =item
19757 #: ../fish/guestfish.pod:194
19758 msgid "B<-d libvirt-domain>"
19759 msgstr ""
19760
19761 #. type: =item
19762 #: ../fish/guestfish.pod:196
19763 msgid "B<--domain libvirt-domain>"
19764 msgstr ""
19765
19766 #. type: textblock
19767 #: ../fish/guestfish.pod:198 ../fuse/guestmount.pod:102
19768 msgid ""
19769 "Add disks from the named libvirt domain.  If the I<--ro> option is also "
19770 "used, then any libvirt domain can be used.  However in write mode, only "
19771 "libvirt domains which are shut down can be named here."
19772 msgstr ""
19773
19774 #. type: textblock
19775 #: ../fish/guestfish.pod:202
19776 msgid ""
19777 "Using this flag is mostly equivalent to using the C<add-domain> command, "
19778 "with C<readonly:true> if the I<--ro> flag was given, and with C<format:...> "
19779 "if the I<--format:...> flag was given."
19780 msgstr ""
19781
19782 #. type: =item
19783 #: ../fish/guestfish.pod:206
19784 msgid "B<-D>"
19785 msgstr ""
19786
19787 #. type: =item
19788 #: ../fish/guestfish.pod:208
19789 msgid "B<--no-dest-paths>"
19790 msgstr ""
19791
19792 #. type: textblock
19793 #: ../fish/guestfish.pod:210
19794 msgid ""
19795 "Don't tab-complete paths on the guest filesystem.  It is useful to be able "
19796 "to hit the tab key to complete paths on the guest filesystem, but this "
19797 "causes extra \"hidden\" guestfs calls to be made, so this option is here to "
19798 "allow this feature to be disabled."
19799 msgstr ""
19800
19801 #. type: =item
19802 #: ../fish/guestfish.pod:215 ../fuse/guestmount.pod:118
19803 msgid "B<--echo-keys>"
19804 msgstr ""
19805
19806 #. type: textblock
19807 #: ../fish/guestfish.pod:217 ../fuse/guestmount.pod:120
19808 msgid ""
19809 "When prompting for keys and passphrases, guestfish normally turns echoing "
19810 "off so you cannot see what you are typing.  If you are not worried about "
19811 "Tempest attacks and there is no one else in the room you can specify this "
19812 "flag to see what you are typing."
19813 msgstr ""
19814
19815 #. type: =item
19816 #: ../fish/guestfish.pod:222
19817 msgid "B<-f file>"
19818 msgstr ""
19819
19820 #. type: =item
19821 #: ../fish/guestfish.pod:224
19822 msgid "B<--file file>"
19823 msgstr ""
19824
19825 #. type: textblock
19826 #: ../fish/guestfish.pod:226
19827 msgid "Read commands from C<file>.  To write pure guestfish scripts, use:"
19828 msgstr ""
19829
19830 #. type: verbatim
19831 #: ../fish/guestfish.pod:229
19832 #, no-wrap
19833 msgid ""
19834 " #!/usr/bin/guestfish -f\n"
19835 "\n"
19836 msgstr ""
19837
19838 #. type: =item
19839 #: ../fish/guestfish.pod:231
19840 msgid "B<--format=raw|qcow2|..>"
19841 msgstr ""
19842
19843 #. type: =item
19844 #: ../fish/guestfish.pod:233
19845 msgid "B<--format>"
19846 msgstr ""
19847
19848 #. type: textblock
19849 #: ../fish/guestfish.pod:235 ../fuse/guestmount.pod:127
19850 msgid ""
19851 "The default for the I<-a> option is to auto-detect the format of the disk "
19852 "image.  Using this forces the disk format for I<-a> options which follow on "
19853 "the command line.  Using I<--format> with no argument switches back to auto-"
19854 "detection for subsequent I<-a> options."
19855 msgstr ""
19856
19857 #. type: verbatim
19858 #: ../fish/guestfish.pod:242
19859 #, no-wrap
19860 msgid ""
19861 " guestfish --format=raw -a disk.img\n"
19862 "\n"
19863 msgstr ""
19864
19865 #. type: textblock
19866 #: ../fish/guestfish.pod:244
19867 msgid "forces raw format (no auto-detection) for C<disk.img>."
19868 msgstr ""
19869
19870 #. type: verbatim
19871 #: ../fish/guestfish.pod:246
19872 #, no-wrap
19873 msgid ""
19874 " guestfish --format=raw -a disk.img --format -a another.img\n"
19875 "\n"
19876 msgstr ""
19877
19878 #. type: textblock
19879 #: ../fish/guestfish.pod:248
19880 msgid ""
19881 "forces raw format (no auto-detection) for C<disk.img> and reverts to auto-"
19882 "detection for C<another.img>."
19883 msgstr ""
19884
19885 #. type: textblock
19886 #: ../fish/guestfish.pod:251
19887 msgid ""
19888 "If you have untrusted raw-format guest disk images, you should use this "
19889 "option to specify the disk format.  This avoids a possible security problem "
19890 "with malicious guests (CVE-2010-3851).  See also L</add-drive-opts>."
19891 msgstr ""
19892
19893 #. type: =item
19894 #: ../fish/guestfish.pod:256
19895 msgid "B<-i>"
19896 msgstr ""
19897
19898 #. type: =item
19899 #: ../fish/guestfish.pod:258
19900 msgid "B<--inspector>"
19901 msgstr ""
19902
19903 #. type: textblock
19904 #: ../fish/guestfish.pod:260 ../fuse/guestmount.pod:147
19905 msgid ""
19906 "Using L<virt-inspector(1)> code, inspect the disks looking for an operating "
19907 "system and mount filesystems as they would be mounted on the real virtual "
19908 "machine."
19909 msgstr ""
19910
19911 #. type: textblock
19912 #: ../fish/guestfish.pod:264
19913 msgid "Typical usage is either:"
19914 msgstr ""
19915
19916 #. type: verbatim
19917 #: ../fish/guestfish.pod:266
19918 #, no-wrap
19919 msgid ""
19920 " guestfish -d myguest -i\n"
19921 "\n"
19922 msgstr ""
19923
19924 #. type: textblock
19925 #: ../fish/guestfish.pod:268
19926 msgid "(for an inactive libvirt domain called I<myguest>), or:"
19927 msgstr ""
19928
19929 #. type: verbatim
19930 #: ../fish/guestfish.pod:270
19931 #, no-wrap
19932 msgid ""
19933 " guestfish --ro -d myguest -i\n"
19934 "\n"
19935 msgstr ""
19936
19937 #. type: textblock
19938 #: ../fish/guestfish.pod:272
19939 msgid "(for active domains, readonly), or specify the block device directly:"
19940 msgstr ""
19941
19942 #. type: verbatim
19943 #: ../fish/guestfish.pod:274
19944 #, no-wrap
19945 msgid ""
19946 " guestfish --rw -a /dev/Guests/MyGuest -i\n"
19947 "\n"
19948 msgstr ""
19949
19950 #. type: textblock
19951 #: ../fish/guestfish.pod:276
19952 msgid ""
19953 "Note that the command line syntax changed slightly over older versions of "
19954 "guestfish.  You can still use the old syntax:"
19955 msgstr ""
19956
19957 #. type: verbatim
19958 #: ../fish/guestfish.pod:279
19959 #, no-wrap
19960 msgid ""
19961 " guestfish [--ro] -i disk.img\n"
19962 "\n"
19963 msgstr ""
19964
19965 #. type: verbatim
19966 #: ../fish/guestfish.pod:281
19967 #, no-wrap
19968 msgid ""
19969 " guestfish [--ro] -i libvirt-domain\n"
19970 "\n"
19971 msgstr ""
19972
19973 #. type: textblock
19974 #: ../fish/guestfish.pod:283
19975 msgid ""
19976 "Using this flag is mostly equivalent to using the C<inspect-os> command and "
19977 "then using other commands to mount the filesystems that were found."
19978 msgstr ""
19979
19980 #. type: =item
19981 #: ../fish/guestfish.pod:287 ../fuse/guestmount.pod:151
19982 msgid "B<--keys-from-stdin>"
19983 msgstr ""
19984
19985 #. type: textblock
19986 #: ../fish/guestfish.pod:289 ../fuse/guestmount.pod:153
19987 msgid ""
19988 "Read key or passphrase parameters from stdin.  The default is to try to read "
19989 "passphrases from the user by opening C</dev/tty>."
19990 msgstr ""
19991
19992 #. type: =item
19993 #: ../fish/guestfish.pod:292
19994 msgid "B<--listen>"
19995 msgstr ""
19996
19997 #. type: textblock
19998 #: ../fish/guestfish.pod:294
19999 msgid ""
20000 "Fork into the background and listen for remote commands.  See section L</"
20001 "REMOTE CONTROL GUESTFISH OVER A SOCKET> below."
20002 msgstr ""
20003
20004 #. type: =item
20005 #: ../fish/guestfish.pod:297 ../fuse/guestmount.pod:156
20006 msgid "B<--live>"
20007 msgstr ""
20008
20009 #. type: textblock
20010 #: ../fish/guestfish.pod:299 ../fuse/guestmount.pod:158
20011 msgid ""
20012 "Connect to a live virtual machine.  (Experimental, see L<guestfs(3)/"
20013 "ATTACHING TO RUNNING DAEMONS>)."
20014 msgstr ""
20015
20016 #. type: =item
20017 #: ../fish/guestfish.pod:302 ../fuse/guestmount.pod:161
20018 msgid "B<-m dev[:mountpoint[:options]]>"
20019 msgstr ""
20020
20021 #. type: =item
20022 #: ../fish/guestfish.pod:304 ../fuse/guestmount.pod:163
20023 msgid "B<--mount dev[:mountpoint[:options]]>"
20024 msgstr ""
20025
20026 #. type: textblock
20027 #: ../fish/guestfish.pod:306
20028 msgid "Mount the named partition or logical volume on the given mountpoint."
20029 msgstr ""
20030
20031 #. type: textblock
20032 #: ../fish/guestfish.pod:308
20033 msgid "If the mountpoint is omitted, it defaults to C</>."
20034 msgstr ""
20035
20036 #. type: textblock
20037 #: ../fish/guestfish.pod:310
20038 msgid "You have to mount something on C</> before most commands will work."
20039 msgstr ""
20040
20041 #. type: textblock
20042 #: ../fish/guestfish.pod:312
20043 msgid ""
20044 "If any I<-m> or I<--mount> options are given, the guest is automatically "
20045 "launched."
20046 msgstr ""
20047
20048 #. type: textblock
20049 #: ../fish/guestfish.pod:315
20050 msgid ""
20051 "If you don't know what filesystems a disk image contains, you can either run "
20052 "guestfish without this option, then list the partitions, filesystems and LVs "
20053 "available (see L</list-partitions>, L</list-filesystems> and L</lvs> "
20054 "commands), or you can use the L<virt-filesystems(1)> program."
20055 msgstr ""
20056
20057 #. type: textblock
20058 #: ../fish/guestfish.pod:321 ../fuse/guestmount.pod:171
20059 msgid ""
20060 "The third (and rarely used) part of the mount parameter is the list of mount "
20061 "options used to mount the underlying filesystem.  If this is not given, then "
20062 "the mount options are either the empty string or C<ro> (the latter if the "
20063 "I<--ro> flag is used).  By specifying the mount options, you override this "
20064 "default choice.  Probably the only time you would use this is to enable ACLs "
20065 "and/or extended attributes if the filesystem can support them:"
20066 msgstr ""
20067
20068 #. type: verbatim
20069 #: ../fish/guestfish.pod:329 ../fuse/guestmount.pod:179
20070 #, no-wrap
20071 msgid ""
20072 " -m /dev/sda1:/:acl,user_xattr\n"
20073 "\n"
20074 msgstr ""
20075
20076 #. type: textblock
20077 #: ../fish/guestfish.pod:331
20078 msgid "Using this flag is equivalent to using the C<mount-options> command."
20079 msgstr ""
20080
20081 #. type: =item
20082 #: ../fish/guestfish.pod:333
20083 msgid "B<-n>"
20084 msgstr ""
20085
20086 #. type: =item
20087 #: ../fish/guestfish.pod:335
20088 msgid "B<--no-sync>"
20089 msgstr ""
20090
20091 #. type: textblock
20092 #: ../fish/guestfish.pod:337
20093 msgid ""
20094 "Disable autosync.  This is enabled by default.  See the discussion of "
20095 "autosync in the L<guestfs(3)> manpage."
20096 msgstr ""
20097
20098 #. type: =item
20099 #: ../fish/guestfish.pod:340
20100 msgid "B<-N type>"
20101 msgstr ""
20102
20103 #. type: =item
20104 #: ../fish/guestfish.pod:342
20105 msgid "B<--new type>"
20106 msgstr ""
20107
20108 #. type: =item
20109 #: ../fish/guestfish.pod:344
20110 msgid "B<-N help>"
20111 msgstr ""
20112
20113 #. type: textblock
20114 #: ../fish/guestfish.pod:346
20115 msgid ""
20116 "Prepare a fresh disk image formatted as \"type\".  This is an alternative to "
20117 "the I<-a> option: whereas I<-a> adds an existing disk, I<-N> creates a "
20118 "preformatted disk with a filesystem and adds it.  See L</PREPARED DISK "
20119 "IMAGES> below."
20120 msgstr ""
20121
20122 #. type: =item
20123 #: ../fish/guestfish.pod:351
20124 msgid "B<--progress-bars>"
20125 msgstr ""
20126
20127 #. type: textblock
20128 #: ../fish/guestfish.pod:353
20129 msgid "Enable progress bars, even when guestfish is used non-interactively."
20130 msgstr ""
20131
20132 #. type: textblock
20133 #: ../fish/guestfish.pod:355
20134 msgid ""
20135 "Progress bars are enabled by default when guestfish is used as an "
20136 "interactive shell."
20137 msgstr ""
20138
20139 #. type: =item
20140 #: ../fish/guestfish.pod:358
20141 msgid "B<--no-progress-bars>"
20142 msgstr ""
20143
20144 #. type: textblock
20145 #: ../fish/guestfish.pod:360
20146 msgid "Disable progress bars."
20147 msgstr ""
20148
20149 #. type: =item
20150 #: ../fish/guestfish.pod:362
20151 msgid "B<--remote[=pid]>"
20152 msgstr ""
20153
20154 #. type: textblock
20155 #: ../fish/guestfish.pod:364
20156 msgid ""
20157 "Send remote commands to C<$GUESTFISH_PID> or C<pid>.  See section L</REMOTE "
20158 "CONTROL GUESTFISH OVER A SOCKET> below."
20159 msgstr ""
20160
20161 #. type: =item
20162 #: ../fish/guestfish.pod:367
20163 msgid "B<-r>"
20164 msgstr ""
20165
20166 #. type: =item
20167 #: ../fish/guestfish.pod:369
20168 msgid "B<--ro>"
20169 msgstr ""
20170
20171 #. type: textblock
20172 #: ../fish/guestfish.pod:371
20173 msgid ""
20174 "This changes the I<-a>, I<-d> and I<-m> options so that disks are added and "
20175 "mounts are done read-only."
20176 msgstr ""
20177
20178 #. type: textblock
20179 #: ../fish/guestfish.pod:374
20180 msgid ""
20181 "The option must always be used if the disk image or virtual machine might be "
20182 "running, and is generally recommended in cases where you don't need write "
20183 "access to the disk."
20184 msgstr ""
20185
20186 #. type: textblock
20187 #: ../fish/guestfish.pod:378
20188 msgid ""
20189 "Note that prepared disk images created with I<-N> are not affected by this "
20190 "option.  Also commands like C<add> are not affected - you have to specify "
20191 "the C<readonly:true> option explicitly if you need it."
20192 msgstr ""
20193
20194 #. type: textblock
20195 #: ../fish/guestfish.pod:382
20196 msgid "See also L</OPENING DISKS FOR READ AND WRITE> below."
20197 msgstr ""
20198
20199 #. type: =item
20200 #: ../fish/guestfish.pod:384 ../fuse/guestmount.pod:235
20201 msgid "B<--selinux>"
20202 msgstr ""
20203
20204 #. type: textblock
20205 #: ../fish/guestfish.pod:386
20206 msgid "Enable SELinux support for the guest.  See L<guestfs(3)/SELINUX>."
20207 msgstr ""
20208
20209 #. type: =item
20210 #: ../fish/guestfish.pod:388
20211 msgid "B<-v>"
20212 msgstr ""
20213
20214 #. type: =item
20215 #: ../fish/guestfish.pod:390
20216 msgid "B<--verbose>"
20217 msgstr ""
20218
20219 #. type: textblock
20220 #: ../fish/guestfish.pod:392
20221 msgid ""
20222 "Enable very verbose messages.  This is particularly useful if you find a bug."
20223 msgstr ""
20224
20225 #. type: =item
20226 #: ../fish/guestfish.pod:395
20227 msgid "B<-V>"
20228 msgstr ""
20229
20230 #. type: =item
20231 #: ../fish/guestfish.pod:397 ../tools/virt-edit.pl:97
20232 #: ../tools/virt-win-reg.pl:112 ../tools/virt-list-filesystems.pl:69
20233 #: ../tools/virt-tar.pl:119 ../tools/virt-make-fs.pl:169
20234 #: ../tools/virt-list-partitions.pl:70
20235 msgid "B<--version>"
20236 msgstr ""
20237
20238 #. type: textblock
20239 #: ../fish/guestfish.pod:399
20240 msgid "Display the guestfish / libguestfs version number and exit."
20241 msgstr ""
20242
20243 #. type: =item
20244 #: ../fish/guestfish.pod:401
20245 msgid "B<-w>"
20246 msgstr ""
20247
20248 #. type: =item
20249 #: ../fish/guestfish.pod:403
20250 msgid "B<--rw>"
20251 msgstr ""
20252
20253 #. type: textblock
20254 #: ../fish/guestfish.pod:405 ../fuse/guestmount.pod:249
20255 msgid ""
20256 "This changes the I<-a>, I<-d> and I<-m> options so that disks are added and "
20257 "mounts are done read-write."
20258 msgstr ""
20259
20260 #. type: textblock
20261 #: ../fish/guestfish.pod:408
20262 msgid "See L</OPENING DISKS FOR READ AND WRITE> below."
20263 msgstr ""
20264
20265 #. type: =item
20266 #: ../fish/guestfish.pod:410
20267 msgid "B<-x>"
20268 msgstr ""
20269
20270 #. type: textblock
20271 #: ../fish/guestfish.pod:412
20272 msgid "Echo each command before executing it."
20273 msgstr ""
20274
20275 #. type: =head1
20276 #: ../fish/guestfish.pod:416
20277 msgid "COMMANDS ON COMMAND LINE"
20278 msgstr ""
20279
20280 #. type: textblock
20281 #: ../fish/guestfish.pod:418
20282 msgid ""
20283 "Any additional (non-option) arguments are treated as commands to execute."
20284 msgstr ""
20285
20286 #. type: textblock
20287 #: ../fish/guestfish.pod:421
20288 msgid ""
20289 "Commands to execute should be separated by a colon (C<:>), where the colon "
20290 "is a separate parameter.  Thus:"
20291 msgstr ""
20292
20293 #. type: verbatim
20294 #: ../fish/guestfish.pod:424
20295 #, no-wrap
20296 msgid ""
20297 " guestfish cmd [args...] : cmd [args...] : cmd [args...] ...\n"
20298 "\n"
20299 msgstr ""
20300
20301 #. type: textblock
20302 #: ../fish/guestfish.pod:426
20303 msgid ""
20304 "If there are no additional arguments, then we enter a shell, either an "
20305 "interactive shell with a prompt (if the input is a terminal) or a non-"
20306 "interactive shell."
20307 msgstr ""
20308
20309 #. type: textblock
20310 #: ../fish/guestfish.pod:430
20311 msgid ""
20312 "In either command line mode or non-interactive shell, the first command that "
20313 "gives an error causes the whole shell to exit.  In interactive mode (with a "
20314 "prompt) if a command fails, you can continue to enter commands."
20315 msgstr ""
20316
20317 #. type: =head1
20318 #: ../fish/guestfish.pod:435
20319 msgid "USING launch (OR run)"
20320 msgstr ""
20321
20322 #. type: textblock
20323 #: ../fish/guestfish.pod:437
20324 msgid ""
20325 "As with L<guestfs(3)>, you must first configure your guest by adding disks, "
20326 "then launch it, then mount any disks you need, and finally issue actions/"
20327 "commands.  So the general order of the day is:"
20328 msgstr ""
20329
20330 #. type: textblock
20331 #: ../fish/guestfish.pod:445
20332 msgid "add or -a/--add"
20333 msgstr ""
20334
20335 #. type: textblock
20336 #: ../fish/guestfish.pod:449
20337 msgid "launch (aka run)"
20338 msgstr ""
20339
20340 #. type: textblock
20341 #: ../fish/guestfish.pod:453
20342 msgid "mount or -m/--mount"
20343 msgstr ""
20344
20345 #. type: textblock
20346 #: ../fish/guestfish.pod:457
20347 msgid "any other commands"
20348 msgstr ""
20349
20350 #. type: textblock
20351 #: ../fish/guestfish.pod:461
20352 msgid ""
20353 "C<run> is a synonym for C<launch>.  You must C<launch> (or C<run>)  your "
20354 "guest before mounting or performing any other commands."
20355 msgstr ""
20356
20357 #. type: textblock
20358 #: ../fish/guestfish.pod:464
20359 msgid ""
20360 "The only exception is that if any of the I<-i>, I<-m>, I<--mount>, I<-N> or "
20361 "I<--new> options were given then C<run> is done automatically, simply "
20362 "because guestfish can't perform the action you asked for without doing this."
20363 msgstr ""
20364
20365 #. type: =head1
20366 #: ../fish/guestfish.pod:469
20367 msgid "OPENING DISKS FOR READ AND WRITE"
20368 msgstr ""
20369
20370 #. type: textblock
20371 #: ../fish/guestfish.pod:471
20372 msgid ""
20373 "The guestfish, L<guestmount(1)> and L<virt-rescue(1)> options I<--ro> and "
20374 "I<--rw> affect whether the other command line options I<-a>, I<-c>, I<-d>, "
20375 "I<-i> and I<-m> open disk images read-only or for writing."
20376 msgstr ""
20377
20378 #. type: textblock
20379 #: ../fish/guestfish.pod:476
20380 msgid ""
20381 "In libguestfs E<le> 1.10, guestfish, guestmount and virt-rescue defaulted to "
20382 "opening disk images supplied on the command line for write.  To open a disk "
20383 "image read-only you have to do I<-a image --ro>."
20384 msgstr ""
20385
20386 #. type: textblock
20387 #: ../fish/guestfish.pod:480
20388 msgid ""
20389 "This matters: If you accidentally open a live VM disk image writable then "
20390 "you will cause irreversible disk corruption."
20391 msgstr ""
20392
20393 #. type: textblock
20394 #: ../fish/guestfish.pod:483
20395 msgid ""
20396 "By libguestfs 1.12 we intend to change the default the other way.  Disk "
20397 "images will be opened read-only.  You will have to either specify "
20398 "I<guestfish --rw>, I<guestmount --rw>, I<virt-rescue --rw>, or change the "
20399 "configuration file C</etc/libguestfs-tools.conf> in order to get write "
20400 "access for disk images specified by those other command line options."
20401 msgstr ""
20402
20403 #. type: textblock
20404 #: ../fish/guestfish.pod:490
20405 msgid ""
20406 "This version of guestfish, guestmount and virt-rescue has a I<--rw> option "
20407 "which does nothing (it is already the default).  However it is highly "
20408 "recommended that you use this option to indicate that you need write access, "
20409 "and prepare your scripts for the day when this option will be required for "
20410 "write access."
20411 msgstr ""
20412
20413 #. type: textblock
20414 #: ../fish/guestfish.pod:496
20415 msgid ""
20416 "B<Note:> This does I<not> affect commands like L</add> and L</mount>, or any "
20417 "other libguestfs program apart from guestfish and guestmount."
20418 msgstr ""
20419
20420 #. type: =head1
20421 #: ../fish/guestfish.pod:499
20422 msgid "QUOTING"
20423 msgstr ""
20424
20425 #. type: textblock
20426 #: ../fish/guestfish.pod:501
20427 msgid ""
20428 "You can quote ordinary parameters using either single or double quotes.  For "
20429 "example:"
20430 msgstr ""
20431
20432 #. type: verbatim
20433 #: ../fish/guestfish.pod:504
20434 #, no-wrap
20435 msgid ""
20436 " add \"file with a space.img\"\n"
20437 "\n"
20438 msgstr ""
20439
20440 #. type: verbatim
20441 #: ../fish/guestfish.pod:506
20442 #, no-wrap
20443 msgid ""
20444 " rm '/file name'\n"
20445 "\n"
20446 msgstr ""
20447
20448 #. type: verbatim
20449 #: ../fish/guestfish.pod:508
20450 #, no-wrap
20451 msgid ""
20452 " rm '/\"'\n"
20453 "\n"
20454 msgstr ""
20455
20456 #. type: textblock
20457 #: ../fish/guestfish.pod:510
20458 msgid ""
20459 "A few commands require a list of strings to be passed.  For these, use a "
20460 "whitespace-separated list, enclosed in quotes.  Strings containing "
20461 "whitespace to be passed through must be enclosed in single quotes.  A "
20462 "literal single quote must be escaped with a backslash."
20463 msgstr ""
20464
20465 #. type: verbatim
20466 #: ../fish/guestfish.pod:515
20467 #, no-wrap
20468 msgid ""
20469 " vgcreate VG \"/dev/sda1 /dev/sdb1\"\n"
20470 " command \"/bin/echo 'foo      bar'\"\n"
20471 " command \"/bin/echo \\'foo\\'\"\n"
20472 "\n"
20473 msgstr ""
20474
20475 #. type: =head1
20476 #: ../fish/guestfish.pod:519
20477 msgid "OPTIONAL ARGUMENTS"
20478 msgstr ""
20479
20480 #. type: textblock
20481 #: ../fish/guestfish.pod:521
20482 msgid ""
20483 "Some commands take optional arguments.  These arguments appear in this "
20484 "documentation as C<[argname:..]>.  You can use them as in these examples:"
20485 msgstr ""
20486
20487 #. type: verbatim
20488 #: ../fish/guestfish.pod:525
20489 #, no-wrap
20490 msgid ""
20491 " add-drive-opts filename\n"
20492 "\n"
20493 msgstr ""
20494
20495 #. type: verbatim
20496 #: ../fish/guestfish.pod:527
20497 #, no-wrap
20498 msgid ""
20499 " add-drive-opts filename readonly:true\n"
20500 "\n"
20501 msgstr ""
20502
20503 #. type: verbatim
20504 #: ../fish/guestfish.pod:529
20505 #, no-wrap
20506 msgid ""
20507 " add-drive-opts filename format:qcow2 readonly:false\n"
20508 "\n"
20509 msgstr ""
20510
20511 #. type: textblock
20512 #: ../fish/guestfish.pod:531
20513 msgid ""
20514 "Each optional argument can appear at most once.  All optional arguments must "
20515 "appear after the required ones."
20516 msgstr ""
20517
20518 #. type: =head1
20519 #: ../fish/guestfish.pod:534
20520 msgid "NUMBERS"
20521 msgstr ""
20522
20523 #. type: textblock
20524 #: ../fish/guestfish.pod:536
20525 msgid ""
20526 "This section applies to all commands which can take integers as parameters."
20527 msgstr ""
20528
20529 #. type: =head2
20530 #: ../fish/guestfish.pod:539
20531 msgid "SIZE SUFFIX"
20532 msgstr ""
20533
20534 #. type: textblock
20535 #: ../fish/guestfish.pod:541
20536 msgid ""
20537 "When the command takes a parameter measured in bytes, you can use one of the "
20538 "following suffixes to specify kilobytes, megabytes and larger sizes:"
20539 msgstr ""
20540
20541 #. type: =item
20542 #: ../fish/guestfish.pod:547
20543 msgid "B<k> or B<K> or B<KiB>"
20544 msgstr ""
20545
20546 #. type: textblock
20547 #: ../fish/guestfish.pod:549
20548 msgid "The size in kilobytes (multiplied by 1024)."
20549 msgstr ""
20550
20551 #. type: =item
20552 #: ../fish/guestfish.pod:551
20553 msgid "B<KB>"
20554 msgstr ""
20555
20556 #. type: textblock
20557 #: ../fish/guestfish.pod:553
20558 msgid "The size in SI 1000 byte units."
20559 msgstr ""
20560
20561 #. type: =item
20562 #: ../fish/guestfish.pod:555
20563 msgid "B<M> or B<MiB>"
20564 msgstr ""
20565
20566 #. type: textblock
20567 #: ../fish/guestfish.pod:557
20568 msgid "The size in megabytes (multiplied by 1048576)."
20569 msgstr ""
20570
20571 #. type: =item
20572 #: ../fish/guestfish.pod:559
20573 msgid "B<MB>"
20574 msgstr ""
20575
20576 #. type: textblock
20577 #: ../fish/guestfish.pod:561
20578 msgid "The size in SI 1000000 byte units."
20579 msgstr ""
20580
20581 #. type: =item
20582 #: ../fish/guestfish.pod:563
20583 msgid "B<G> or B<GiB>"
20584 msgstr ""
20585
20586 #. type: textblock
20587 #: ../fish/guestfish.pod:565
20588 msgid "The size in gigabytes (multiplied by 2**30)."
20589 msgstr ""
20590
20591 #. type: =item
20592 #: ../fish/guestfish.pod:567
20593 msgid "B<GB>"
20594 msgstr ""
20595
20596 #. type: textblock
20597 #: ../fish/guestfish.pod:569
20598 msgid "The size in SI 10**9 byte units."
20599 msgstr ""
20600
20601 #. type: =item
20602 #: ../fish/guestfish.pod:571
20603 msgid "B<T> or B<TiB>"
20604 msgstr ""
20605
20606 #. type: textblock
20607 #: ../fish/guestfish.pod:573
20608 msgid "The size in terabytes (multiplied by 2**40)."
20609 msgstr ""
20610
20611 #. type: =item
20612 #: ../fish/guestfish.pod:575
20613 msgid "B<TB>"
20614 msgstr ""
20615
20616 #. type: textblock
20617 #: ../fish/guestfish.pod:577
20618 msgid "The size in SI 10**12 byte units."
20619 msgstr ""
20620
20621 #. type: =item
20622 #: ../fish/guestfish.pod:579
20623 msgid "B<P> or B<PiB>"
20624 msgstr ""
20625
20626 #. type: textblock
20627 #: ../fish/guestfish.pod:581
20628 msgid "The size in petabytes (multiplied by 2**50)."
20629 msgstr ""
20630
20631 #. type: =item
20632 #: ../fish/guestfish.pod:583
20633 msgid "B<PB>"
20634 msgstr ""
20635
20636 #. type: textblock
20637 #: ../fish/guestfish.pod:585
20638 msgid "The size in SI 10**15 byte units."
20639 msgstr ""
20640
20641 #. type: =item
20642 #: ../fish/guestfish.pod:587
20643 msgid "B<E> or B<EiB>"
20644 msgstr ""
20645
20646 #. type: textblock
20647 #: ../fish/guestfish.pod:589
20648 msgid "The size in exabytes (multiplied by 2**60)."
20649 msgstr ""
20650
20651 #. type: =item
20652 #: ../fish/guestfish.pod:591
20653 msgid "B<EB>"
20654 msgstr ""
20655
20656 #. type: textblock
20657 #: ../fish/guestfish.pod:593
20658 msgid "The size in SI 10**18 byte units."
20659 msgstr ""
20660
20661 #. type: =item
20662 #: ../fish/guestfish.pod:595
20663 msgid "B<Z> or B<ZiB>"
20664 msgstr ""
20665
20666 #. type: textblock
20667 #: ../fish/guestfish.pod:597
20668 msgid "The size in zettabytes (multiplied by 2**70)."
20669 msgstr ""
20670
20671 #. type: =item
20672 #: ../fish/guestfish.pod:599
20673 msgid "B<ZB>"
20674 msgstr ""
20675
20676 #. type: textblock
20677 #: ../fish/guestfish.pod:601
20678 msgid "The size in SI 10**21 byte units."
20679 msgstr ""
20680
20681 #. type: =item
20682 #: ../fish/guestfish.pod:603
20683 msgid "B<Y> or B<YiB>"
20684 msgstr ""
20685
20686 #. type: textblock
20687 #: ../fish/guestfish.pod:605
20688 msgid "The size in yottabytes (multiplied by 2**80)."
20689 msgstr ""
20690
20691 #. type: =item
20692 #: ../fish/guestfish.pod:607
20693 msgid "B<YB>"
20694 msgstr ""
20695
20696 #. type: textblock
20697 #: ../fish/guestfish.pod:609
20698 msgid "The size in SI 10**24 byte units."
20699 msgstr ""
20700
20701 #. type: verbatim
20702 #: ../fish/guestfish.pod:615
20703 #, no-wrap
20704 msgid ""
20705 " truncate-size /file 1G\n"
20706 "\n"
20707 msgstr ""
20708
20709 #. type: textblock
20710 #: ../fish/guestfish.pod:617
20711 msgid "would truncate the file to 1 gigabyte."
20712 msgstr ""
20713
20714 #. type: textblock
20715 #: ../fish/guestfish.pod:619
20716 msgid ""
20717 "Be careful because a few commands take sizes in kilobytes or megabytes (eg. "
20718 "the parameter to L</memsize> is specified in megabytes already).  Adding a "
20719 "suffix will probably not do what you expect."
20720 msgstr ""
20721
20722 #. type: =head2
20723 #: ../fish/guestfish.pod:623
20724 msgid "OCTAL AND HEXADECIMAL NUMBERS"
20725 msgstr ""
20726
20727 #. type: textblock
20728 #: ../fish/guestfish.pod:625
20729 msgid ""
20730 "For specifying the radix (base) use the C convention: C<0> to prefix an "
20731 "octal number or C<0x> to prefix a hexadecimal number.  For example:"
20732 msgstr ""
20733
20734 #. type: verbatim
20735 #: ../fish/guestfish.pod:628
20736 #, no-wrap
20737 msgid ""
20738 " 1234      decimal number 1234\n"
20739 " 02322     octal number, equivalent to decimal 1234\n"
20740 " 0x4d2     hexadecimal number, equivalent to decimal 1234\n"
20741 "\n"
20742 msgstr ""
20743
20744 #. type: textblock
20745 #: ../fish/guestfish.pod:632
20746 msgid ""
20747 "When using the C<chmod> command, you almost always want to specify an octal "
20748 "number for the mode, and you must prefix it with C<0> (unlike the Unix "
20749 "L<chmod(1)> program):"
20750 msgstr ""
20751
20752 #. type: verbatim
20753 #: ../fish/guestfish.pod:636
20754 #, no-wrap
20755 msgid ""
20756 " chmod 0777 /public  # OK\n"
20757 " chmod 777 /public   # WRONG! This is mode 777 decimal = 01411 octal.\n"
20758 "\n"
20759 msgstr ""
20760
20761 #. type: textblock
20762 #: ../fish/guestfish.pod:639
20763 msgid ""
20764 "Commands that return numbers usually print them in decimal, but some "
20765 "commands print numbers in other radices (eg. C<umask> prints the mode in "
20766 "octal, preceeded by C<0>)."
20767 msgstr ""
20768
20769 #. type: =head1
20770 #: ../fish/guestfish.pod:643
20771 msgid "WILDCARDS AND GLOBBING"
20772 msgstr ""
20773
20774 #. type: textblock
20775 #: ../fish/guestfish.pod:645
20776 msgid ""
20777 "Neither guestfish nor the underlying guestfs API performs wildcard expansion "
20778 "(globbing) by default.  So for example the following will not do what you "
20779 "expect:"
20780 msgstr ""
20781
20782 #. type: verbatim
20783 #: ../fish/guestfish.pod:649
20784 #, no-wrap
20785 msgid ""
20786 " rm-rf /home/*\n"
20787 "\n"
20788 msgstr ""
20789
20790 #. type: textblock
20791 #: ../fish/guestfish.pod:651
20792 msgid ""
20793 "Assuming you don't have a directory called literally C</home/*> then the "
20794 "above command will return an error."
20795 msgstr ""
20796
20797 #. type: textblock
20798 #: ../fish/guestfish.pod:654
20799 msgid "To perform wildcard expansion, use the C<glob> command."
20800 msgstr ""
20801
20802 #. type: verbatim
20803 #: ../fish/guestfish.pod:656
20804 #, no-wrap
20805 msgid ""
20806 " glob rm-rf /home/*\n"
20807 "\n"
20808 msgstr ""
20809
20810 #. type: textblock
20811 #: ../fish/guestfish.pod:658
20812 msgid ""
20813 "runs C<rm-rf> on each path that matches (ie. potentially running the command "
20814 "many times), equivalent to:"
20815 msgstr ""
20816
20817 #. type: verbatim
20818 #: ../fish/guestfish.pod:661
20819 #, no-wrap
20820 msgid ""
20821 " rm-rf /home/jim\n"
20822 " rm-rf /home/joe\n"
20823 " rm-rf /home/mary\n"
20824 "\n"
20825 msgstr ""
20826
20827 #. type: textblock
20828 #: ../fish/guestfish.pod:665
20829 msgid "C<glob> only works on simple guest paths and not on device names."
20830 msgstr ""
20831
20832 #. type: textblock
20833 #: ../fish/guestfish.pod:667
20834 msgid ""
20835 "If you have several parameters, each containing a wildcard, then glob will "
20836 "perform a Cartesian product."
20837 msgstr ""
20838
20839 #. type: =head1
20840 #: ../fish/guestfish.pod:670
20841 msgid "COMMENTS"
20842 msgstr ""
20843
20844 #. type: textblock
20845 #: ../fish/guestfish.pod:672
20846 msgid ""
20847 "Any line which starts with a I<#> character is treated as a comment and "
20848 "ignored.  The I<#> can optionally be preceeded by whitespace, but B<not> by "
20849 "a command.  For example:"
20850 msgstr ""
20851
20852 #. type: verbatim
20853 #: ../fish/guestfish.pod:676
20854 #, no-wrap
20855 msgid ""
20856 " # this is a comment\n"
20857 "         # this is a comment\n"
20858 " foo # NOT a comment\n"
20859 "\n"
20860 msgstr ""
20861
20862 #. type: textblock
20863 #: ../fish/guestfish.pod:680
20864 msgid "Blank lines are also ignored."
20865 msgstr ""
20866
20867 #. type: =head1
20868 #: ../fish/guestfish.pod:682
20869 msgid "RUNNING COMMANDS LOCALLY"
20870 msgstr ""
20871
20872 #. type: textblock
20873 #: ../fish/guestfish.pod:684
20874 msgid ""
20875 "Any line which starts with a I<!> character is treated as a command sent to "
20876 "the local shell (C</bin/sh> or whatever L<system(3)> uses).  For example:"
20877 msgstr ""
20878
20879 #. type: verbatim
20880 #: ../fish/guestfish.pod:688
20881 #, no-wrap
20882 msgid ""
20883 " !mkdir local\n"
20884 " tgz-out /remote local/remote-data.tar.gz\n"
20885 "\n"
20886 msgstr ""
20887
20888 #. type: textblock
20889 #: ../fish/guestfish.pod:691
20890 msgid ""
20891 "will create a directory C<local> on the host, and then export the contents "
20892 "of C</remote> on the mounted filesystem to C<local/remote-data.tar.gz>.  "
20893 "(See C<tgz-out>)."
20894 msgstr ""
20895
20896 #. type: textblock
20897 #: ../fish/guestfish.pod:695
20898 msgid ""
20899 "To change the local directory, use the C<lcd> command.  C<!cd> will have no "
20900 "effect, due to the way that subprocesses work in Unix."
20901 msgstr ""
20902
20903 #. type: =head2
20904 #: ../fish/guestfish.pod:698
20905 msgid "LOCAL COMMANDS WITH INLINE EXECUTION"
20906 msgstr ""
20907
20908 #. type: textblock
20909 #: ../fish/guestfish.pod:700
20910 msgid ""
20911 "If a line starts with I<E<lt>!> then the shell command is executed (as for "
20912 "I<!>), but subsequently any output (stdout) of the shell command is parsed "
20913 "and executed as guestfish commands."
20914 msgstr ""
20915
20916 #. type: textblock
20917 #: ../fish/guestfish.pod:704
20918 msgid ""
20919 "Thus you can use shell script to construct arbitrary guestfish commands "
20920 "which are then parsed by guestfish."
20921 msgstr ""
20922
20923 #. type: textblock
20924 #: ../fish/guestfish.pod:707
20925 msgid ""
20926 "For example it is tedious to create a sequence of files (eg. C</foo.1> "
20927 "through C</foo.100>) using guestfish commands alone.  However this is simple "
20928 "if we use a shell script to create the guestfish commands for us:"
20929 msgstr ""
20930
20931 #. type: verbatim
20932 #: ../fish/guestfish.pod:712
20933 #, no-wrap
20934 msgid ""
20935 " <! for n in `seq 1 100`; do echo write /foo.$n $n; done\n"
20936 "\n"
20937 msgstr ""
20938
20939 #. type: textblock
20940 #: ../fish/guestfish.pod:714
20941 msgid "or with names like C</foo.001>:"
20942 msgstr ""
20943
20944 #. type: verbatim
20945 #: ../fish/guestfish.pod:716
20946 #, no-wrap
20947 msgid ""
20948 " <! for n in `seq 1 100`; do printf \"write /foo.%03d %d\\n\" $n $n; done\n"
20949 "\n"
20950 msgstr ""
20951
20952 #. type: textblock
20953 #: ../fish/guestfish.pod:718
20954 msgid ""
20955 "When using guestfish interactively it can be helpful to just run the shell "
20956 "script first (ie. remove the initial C<E<lt>> character so it is just an "
20957 "ordinary I<!> local command), see what guestfish commands it would run, and "
20958 "when you are happy with those prepend the C<E<lt>> character to run the "
20959 "guestfish commands for real."
20960 msgstr ""
20961
20962 #. type: =head1
20963 #: ../fish/guestfish.pod:724
20964 msgid "PIPES"
20965 msgstr ""
20966
20967 #. type: textblock
20968 #: ../fish/guestfish.pod:726
20969 msgid ""
20970 "Use C<command E<lt>spaceE<gt> | command> to pipe the output of the first "
20971 "command (a guestfish command) to the second command (any host command).  For "
20972 "example:"
20973 msgstr ""
20974
20975 #. type: verbatim
20976 #: ../fish/guestfish.pod:730
20977 #, no-wrap
20978 msgid ""
20979 " cat /etc/passwd | awk -F: '$3 == 0 { print }'\n"
20980 "\n"
20981 msgstr ""
20982
20983 #. type: textblock
20984 #: ../fish/guestfish.pod:732
20985 msgid ""
20986 "(where C<cat> is the guestfish cat command, but C<awk> is the host awk "
20987 "program).  The above command would list all accounts in the guest filesystem "
20988 "which have UID 0, ie. root accounts including backdoors.  Other examples:"
20989 msgstr ""
20990
20991 #. type: verbatim
20992 #: ../fish/guestfish.pod:737
20993 #, no-wrap
20994 msgid ""
20995 " hexdump /bin/ls | head\n"
20996 " list-devices | tail -1\n"
20997 " tgz-out / - | tar ztf -\n"
20998 "\n"
20999 msgstr ""
21000
21001 #. type: textblock
21002 #: ../fish/guestfish.pod:741
21003 msgid ""
21004 "The space before the pipe symbol is required, any space after the pipe "
21005 "symbol is optional.  Everything after the pipe symbol is just passed "
21006 "straight to the host shell, so it can contain redirections, globs and "
21007 "anything else that makes sense on the host side."
21008 msgstr ""
21009
21010 #. type: textblock
21011 #: ../fish/guestfish.pod:746
21012 msgid ""
21013 "To use a literal argument which begins with a pipe symbol, you have to quote "
21014 "it, eg:"
21015 msgstr ""
21016
21017 #. type: verbatim
21018 #: ../fish/guestfish.pod:749
21019 #, no-wrap
21020 msgid ""
21021 " echo \"|\"\n"
21022 "\n"
21023 msgstr ""
21024
21025 #. type: =head1
21026 #: ../fish/guestfish.pod:751
21027 msgid "HOME DIRECTORIES"
21028 msgstr ""
21029
21030 #. type: textblock
21031 #: ../fish/guestfish.pod:753
21032 msgid ""
21033 "If a parameter starts with the character C<~> then the tilde may be expanded "
21034 "as a home directory path (either C<~> for the current user's home directory, "
21035 "or C<~user> for another user)."
21036 msgstr ""
21037
21038 #. type: textblock
21039 #: ../fish/guestfish.pod:757
21040 msgid ""
21041 "Note that home directory expansion happens for users known I<on the host>, "
21042 "not in the guest filesystem."
21043 msgstr ""
21044
21045 #. type: textblock
21046 #: ../fish/guestfish.pod:760
21047 msgid ""
21048 "To use a literal argument which begins with a tilde, you have to quote it, "
21049 "eg:"
21050 msgstr ""
21051
21052 #. type: verbatim
21053 #: ../fish/guestfish.pod:763
21054 #, no-wrap
21055 msgid ""
21056 " echo \"~\"\n"
21057 "\n"
21058 msgstr ""
21059
21060 #. type: textblock
21061 #: ../fish/guestfish.pod:767
21062 msgid ""
21063 "Libguestfs has some support for Linux guests encrypted according to the "
21064 "Linux Unified Key Setup (LUKS) standard, which includes nearly all whole "
21065 "disk encryption systems used by modern Linux guests.  Currently only LVM-on-"
21066 "LUKS is supported."
21067 msgstr ""
21068
21069 #. type: textblock
21070 #: ../fish/guestfish.pod:772
21071 msgid "Identify encrypted block devices and partitions using L</vfs-type>:"
21072 msgstr ""
21073
21074 #. type: verbatim
21075 #: ../fish/guestfish.pod:774
21076 #, no-wrap
21077 msgid ""
21078 " ><fs> vfs-type /dev/sda2\n"
21079 " crypto_LUKS\n"
21080 "\n"
21081 msgstr ""
21082
21083 #. type: textblock
21084 #: ../fish/guestfish.pod:777
21085 msgid ""
21086 "Then open those devices using L</luks-open>.  This creates a device-mapper "
21087 "device called C</dev/mapper/luksdev>."
21088 msgstr ""
21089
21090 #. type: verbatim
21091 #: ../fish/guestfish.pod:780
21092 #, no-wrap
21093 msgid ""
21094 " ><fs> luks-open /dev/sda2 luksdev\n"
21095 " Enter key or passphrase (\"key\"): <enter the passphrase>\n"
21096 "\n"
21097 msgstr ""
21098
21099 #. type: textblock
21100 #: ../fish/guestfish.pod:783
21101 msgid ""
21102 "Finally you have to tell LVM to scan for volume groups on the newly created "
21103 "mapper device:"
21104 msgstr ""
21105
21106 #. type: verbatim
21107 #: ../fish/guestfish.pod:786
21108 #, no-wrap
21109 msgid ""
21110 " vgscan\n"
21111 " vg-activate-all true\n"
21112 "\n"
21113 msgstr ""
21114
21115 #. type: textblock
21116 #: ../fish/guestfish.pod:789
21117 msgid "The logical volume(s) can now be mounted in the usual way."
21118 msgstr ""
21119
21120 #. type: textblock
21121 #: ../fish/guestfish.pod:791
21122 msgid ""
21123 "Before closing a LUKS device you must unmount any logical volumes on it and "
21124 "deactivate the volume groups by calling C<vg-activate false VG> on each "
21125 "one.  Then you can close the mapper device:"
21126 msgstr ""
21127
21128 #. type: verbatim
21129 #: ../fish/guestfish.pod:795
21130 #, no-wrap
21131 msgid ""
21132 " vg-activate false /dev/VG\n"
21133 " luks-close /dev/mapper/luksdev\n"
21134 "\n"
21135 msgstr ""
21136
21137 #. type: =head1
21138 #: ../fish/guestfish.pod:798 ../tools/virt-edit.pl:342
21139 msgid "WINDOWS PATHS"
21140 msgstr ""
21141
21142 #. type: textblock
21143 #: ../fish/guestfish.pod:800
21144 msgid ""
21145 "If a path is prefixed with C<win:> then you can use Windows-style drive "
21146 "letters and paths (with some limitations).  The following commands are "
21147 "equivalent:"
21148 msgstr ""
21149
21150 #. type: verbatim
21151 #: ../fish/guestfish.pod:804
21152 #, no-wrap
21153 msgid ""
21154 " file /WINDOWS/system32/config/system.LOG\n"
21155 "\n"
21156 msgstr ""
21157
21158 #. type: verbatim
21159 #: ../fish/guestfish.pod:806
21160 #, no-wrap
21161 msgid ""
21162 " file win:\\windows\\system32\\config\\system.log\n"
21163 "\n"
21164 msgstr ""
21165
21166 #. type: verbatim
21167 #: ../fish/guestfish.pod:808
21168 #, no-wrap
21169 msgid ""
21170 " file WIN:C:\\Windows\\SYSTEM32\\CONFIG\\SYSTEM.LOG\n"
21171 "\n"
21172 msgstr ""
21173
21174 #. type: textblock
21175 #: ../fish/guestfish.pod:810
21176 msgid ""
21177 "The parameter is rewritten \"behind the scenes\" by looking up the position "
21178 "where the drive is mounted, prepending that to the path, changing all "
21179 "backslash characters to forward slash, then resolving the result using L</"
21180 "case-sensitive-path>.  For example if the E: drive was mounted on C</e> then "
21181 "the parameter might be rewritten like this:"
21182 msgstr ""
21183
21184 #. type: verbatim
21185 #: ../fish/guestfish.pod:816
21186 #, no-wrap
21187 msgid ""
21188 " win:e:\\foo\\bar => /e/FOO/bar\n"
21189 "\n"
21190 msgstr ""
21191
21192 #. type: textblock
21193 #: ../fish/guestfish.pod:818
21194 msgid "This only works in argument positions that expect a path."
21195 msgstr ""
21196
21197 #. type: =head1
21198 #: ../fish/guestfish.pod:820
21199 msgid "UPLOADING AND DOWNLOADING FILES"
21200 msgstr ""
21201
21202 #. type: textblock
21203 #: ../fish/guestfish.pod:822
21204 msgid ""
21205 "For commands such as C<upload>, C<download>, C<tar-in>, C<tar-out> and "
21206 "others which upload from or download to a local file, you can use the "
21207 "special filename C<-> to mean \"from stdin\" or \"to stdout\".  For example:"
21208 msgstr ""
21209
21210 #. type: verbatim
21211 #: ../fish/guestfish.pod:826
21212 #, no-wrap
21213 msgid ""
21214 " upload - /foo\n"
21215 "\n"
21216 msgstr ""
21217
21218 #. type: textblock
21219 #: ../fish/guestfish.pod:828
21220 msgid ""
21221 "reads stdin and creates from that a file C</foo> in the disk image, and:"
21222 msgstr ""
21223
21224 #. type: verbatim
21225 #: ../fish/guestfish.pod:831
21226 #, no-wrap
21227 msgid ""
21228 " tar-out /etc - | tar tf -\n"
21229 "\n"
21230 msgstr ""
21231
21232 #. type: textblock
21233 #: ../fish/guestfish.pod:833
21234 msgid ""
21235 "writes the tarball to stdout and then pipes that into the external \"tar\" "
21236 "command (see L</PIPES>)."
21237 msgstr ""
21238
21239 #. type: textblock
21240 #: ../fish/guestfish.pod:836
21241 msgid ""
21242 "When using C<-> to read from stdin, the input is read up to the end of "
21243 "stdin.  You can also use a special \"heredoc\"-like syntax to read up to "
21244 "some arbitrary end marker:"
21245 msgstr ""
21246
21247 #. type: verbatim
21248 #: ../fish/guestfish.pod:840
21249 #, no-wrap
21250 msgid ""
21251 " upload -<<END /foo\n"
21252 " input line 1\n"
21253 " input line 2\n"
21254 " input line 3\n"
21255 " END\n"
21256 "\n"
21257 msgstr ""
21258
21259 #. type: textblock
21260 #: ../fish/guestfish.pod:846
21261 msgid ""
21262 "Any string of characters can be used instead of C<END>.  The end marker must "
21263 "appear on a line of its own, without any preceeding or following characters "
21264 "(not even spaces)."
21265 msgstr ""
21266
21267 #. type: textblock
21268 #: ../fish/guestfish.pod:850
21269 msgid ""
21270 "Note that the C<-E<lt>E<lt>> syntax only applies to parameters used to "
21271 "upload local files (so-called \"FileIn\" parameters in the generator)."
21272 msgstr ""
21273
21274 #. type: =head1
21275 #: ../fish/guestfish.pod:853
21276 msgid "EXIT ON ERROR BEHAVIOUR"
21277 msgstr ""
21278
21279 #. type: textblock
21280 #: ../fish/guestfish.pod:855
21281 msgid ""
21282 "By default, guestfish will ignore any errors when in interactive mode (ie. "
21283 "taking commands from a human over a tty), and will exit on the first error "
21284 "in non-interactive mode (scripts, commands given on the command line)."
21285 msgstr ""
21286
21287 #. type: textblock
21288 #: ../fish/guestfish.pod:860
21289 msgid ""
21290 "If you prefix a command with a I<-> character, then that command will not "
21291 "cause guestfish to exit, even if that (one) command returns an error."
21292 msgstr ""
21293
21294 #. type: =head1
21295 #: ../fish/guestfish.pod:864
21296 msgid "REMOTE CONTROL GUESTFISH OVER A SOCKET"
21297 msgstr ""
21298
21299 #. type: textblock
21300 #: ../fish/guestfish.pod:866
21301 msgid ""
21302 "Guestfish can be remote-controlled over a socket.  This is useful "
21303 "particularly in shell scripts where you want to make several different "
21304 "changes to a filesystem, but you don't want the overhead of starting up a "
21305 "guestfish process each time."
21306 msgstr ""
21307
21308 #. type: textblock
21309 #: ../fish/guestfish.pod:871
21310 msgid "Start a guestfish server process using:"
21311 msgstr ""
21312
21313 #. type: verbatim
21314 #: ../fish/guestfish.pod:873
21315 #, no-wrap
21316 msgid ""
21317 " eval \"`guestfish --listen`\"\n"
21318 "\n"
21319 msgstr ""
21320
21321 #. type: textblock
21322 #: ../fish/guestfish.pod:875
21323 msgid "and then send it commands by doing:"
21324 msgstr ""
21325
21326 #. type: verbatim
21327 #: ../fish/guestfish.pod:877
21328 #, no-wrap
21329 msgid ""
21330 " guestfish --remote cmd [...]\n"
21331 "\n"
21332 msgstr ""
21333
21334 #. type: textblock
21335 #: ../fish/guestfish.pod:879
21336 msgid "To cause the server to exit, send it the exit command:"
21337 msgstr ""
21338
21339 #. type: verbatim
21340 #: ../fish/guestfish.pod:881
21341 #, no-wrap
21342 msgid ""
21343 " guestfish --remote exit\n"
21344 "\n"
21345 msgstr ""
21346
21347 #. type: textblock
21348 #: ../fish/guestfish.pod:883
21349 msgid ""
21350 "Note that the server will normally exit if there is an error in a command.  "
21351 "You can change this in the usual way.  See section L</EXIT ON ERROR "
21352 "BEHAVIOUR>."
21353 msgstr ""
21354
21355 #. type: =head2
21356 #: ../fish/guestfish.pod:887
21357 msgid "CONTROLLING MULTIPLE GUESTFISH PROCESSES"
21358 msgstr ""
21359
21360 #. type: textblock
21361 #: ../fish/guestfish.pod:889
21362 msgid ""
21363 "The C<eval> statement sets the environment variable C<$GUESTFISH_PID>, which "
21364 "is how the I<--remote> option knows where to send the commands.  You can "
21365 "have several guestfish listener processes running using:"
21366 msgstr ""
21367
21368 #. type: verbatim
21369 #: ../fish/guestfish.pod:893
21370 #, no-wrap
21371 msgid ""
21372 " eval \"`guestfish --listen`\"\n"
21373 " pid1=$GUESTFISH_PID\n"
21374 " eval \"`guestfish --listen`\"\n"
21375 " pid2=$GUESTFISH_PID\n"
21376 " ...\n"
21377 " guestfish --remote=$pid1 cmd\n"
21378 " guestfish --remote=$pid2 cmd\n"
21379 "\n"
21380 msgstr ""
21381
21382 #. type: =head2
21383 #: ../fish/guestfish.pod:901
21384 msgid "REMOTE CONTROL AND CSH"
21385 msgstr ""
21386
21387 #. type: textblock
21388 #: ../fish/guestfish.pod:903
21389 msgid ""
21390 "When using csh-like shells (csh, tcsh etc) you have to add the I<--csh> "
21391 "option:"
21392 msgstr ""
21393
21394 #. type: verbatim
21395 #: ../fish/guestfish.pod:906
21396 #, no-wrap
21397 msgid ""
21398 " eval \"`guestfish --listen --csh`\"\n"
21399 "\n"
21400 msgstr ""
21401
21402 #. type: =head2
21403 #: ../fish/guestfish.pod:908
21404 msgid "REMOTE CONTROL DETAILS"
21405 msgstr ""
21406
21407 #. type: textblock
21408 #: ../fish/guestfish.pod:910
21409 msgid ""
21410 "Remote control happens over a Unix domain socket called C</tmp/.guestfish-"
21411 "$UID/socket-$PID>, where C<$UID> is the effective user ID of the process, "
21412 "and C<$PID> is the process ID of the server."
21413 msgstr ""
21414
21415 #. type: textblock
21416 #: ../fish/guestfish.pod:914
21417 msgid "Guestfish client and server versions must match exactly."
21418 msgstr ""
21419
21420 #. type: =head1
21421 #: ../fish/guestfish.pod:916
21422 msgid "PREPARED DISK IMAGES"
21423 msgstr ""
21424
21425 #. type: textblock
21426 #: ../fish/guestfish.pod:918
21427 msgid ""
21428 "Use the I<-N type> or I<--new type> parameter to select one of a set of "
21429 "preformatted disk images that guestfish can make for you to save typing.  "
21430 "This is particularly useful for testing purposes.  This option is used "
21431 "instead of the I<-a> option, and like I<-a> can appear multiple times (and "
21432 "can be mixed with I<-a>)."
21433 msgstr ""
21434
21435 #. type: textblock
21436 #: ../fish/guestfish.pod:924
21437 msgid ""
21438 "The new disk is called C<test1.img> for the first I<-N>, C<test2.img> for "
21439 "the second and so on.  Existing files in the current directory are "
21440 "I<overwritten>."
21441 msgstr ""
21442
21443 #. type: textblock
21444 #: ../fish/guestfish.pod:928
21445 msgid ""
21446 "The type briefly describes how the disk should be sized, partitioned, how "
21447 "filesystem(s) should be created, and how content should be added.  "
21448 "Optionally the type can be followed by extra parameters, separated by C<:> "
21449 "(colon) characters.  For example, I<-N fs> creates a default 100MB, sparsely-"
21450 "allocated disk, containing a single partition, with the partition formatted "
21451 "as ext2.  I<-N fs:ext4:1G> is the same, but for an ext4 filesystem on a 1GB "
21452 "disk instead."
21453 msgstr ""
21454
21455 #. type: textblock
21456 #: ../fish/guestfish.pod:936
21457 msgid "To list the available types and any extra parameters they take, run:"
21458 msgstr ""
21459
21460 #. type: textblock
21461 #: ../fish/guestfish.pod:940
21462 msgid ""
21463 "Note that the prepared filesystem is not mounted.  You would usually have to "
21464 "use the C<mount /dev/sda1 /> command or add the I<-m /dev/sda1> option."
21465 msgstr ""
21466
21467 #. type: textblock
21468 #: ../fish/guestfish.pod:944
21469 msgid ""
21470 "If any I<-N> or I<--new> options are given, the guest is automatically "
21471 "launched."
21472 msgstr ""
21473
21474 #. type: textblock
21475 #: ../fish/guestfish.pod:949
21476 msgid "Create a 100MB disk with an ext4-formatted partition:"
21477 msgstr ""
21478
21479 #. type: verbatim
21480 #: ../fish/guestfish.pod:951
21481 #, no-wrap
21482 msgid ""
21483 " guestfish -N fs:ext4\n"
21484 "\n"
21485 msgstr ""
21486
21487 #. type: textblock
21488 #: ../fish/guestfish.pod:953
21489 msgid "Create a 32MB disk with a VFAT-formatted partition, and mount it:"
21490 msgstr ""
21491
21492 #. type: verbatim
21493 #: ../fish/guestfish.pod:955
21494 #, no-wrap
21495 msgid ""
21496 " guestfish -N fs:vfat:32M -m /dev/sda1\n"
21497 "\n"
21498 msgstr ""
21499
21500 #. type: textblock
21501 #: ../fish/guestfish.pod:957
21502 msgid "Create a blank 200MB disk:"
21503 msgstr ""
21504
21505 #. type: verbatim
21506 #: ../fish/guestfish.pod:959
21507 #, no-wrap
21508 msgid ""
21509 " guestfish -N disk:200M\n"
21510 "\n"
21511 msgstr ""
21512
21513 #. type: =head1
21514 #: ../fish/guestfish.pod:961
21515 msgid "PROGRESS BARS"
21516 msgstr ""
21517
21518 #. type: textblock
21519 #: ../fish/guestfish.pod:963
21520 msgid ""
21521 "Some (not all) long-running commands send progress notification messages as "
21522 "they are running.  Guestfish turns these messages into progress bars."
21523 msgstr ""
21524
21525 #. type: textblock
21526 #: ../fish/guestfish.pod:967
21527 msgid ""
21528 "When a command that supports progress bars takes longer than two seconds to "
21529 "run, and if progress bars are enabled, then you will see one appearing below "
21530 "the command:"
21531 msgstr ""
21532
21533 #. type: verbatim
21534 #: ../fish/guestfish.pod:971
21535 #, no-wrap
21536 msgid ""
21537 " ><fs> copy-size /large-file /another-file 2048M\n"
21538 " / 10% [#####-----------------------------------------] 00:30\n"
21539 "\n"
21540 msgstr ""
21541
21542 #. type: textblock
21543 #: ../fish/guestfish.pod:974
21544 msgid ""
21545 "The spinner on the left hand side moves round once for every progress "
21546 "notification received from the backend.  This is a (reasonably) golden "
21547 "assurance that the command is \"doing something\" even if the progress bar "
21548 "is not moving, because the command is able to send the progress "
21549 "notifications.  When the bar reaches 100% and the command finishes, the "
21550 "spinner disappears."
21551 msgstr ""
21552
21553 #. type: textblock
21554 #: ../fish/guestfish.pod:981
21555 msgid ""
21556 "Progress bars are enabled by default when guestfish is used interactively.  "
21557 "You can enable them even for non-interactive modes using I<--progress-bars>, "
21558 "and you can disable them completely using I<--no-progress-bars>."
21559 msgstr ""
21560
21561 #. type: =head1
21562 #: ../fish/guestfish.pod:986
21563 msgid "GUESTFISH COMMANDS"
21564 msgstr ""
21565
21566 #. type: textblock
21567 #: ../fish/guestfish.pod:988
21568 msgid ""
21569 "The commands in this section are guestfish convenience commands, in other "
21570 "words, they are not part of the L<guestfs(3)> API."
21571 msgstr ""
21572
21573 #. type: =head2
21574 #: ../fish/guestfish.pod:991
21575 msgid "help"
21576 msgstr ""
21577
21578 #. type: verbatim
21579 #: ../fish/guestfish.pod:993
21580 #, no-wrap
21581 msgid ""
21582 " help\n"
21583 " help cmd\n"
21584 "\n"
21585 msgstr ""
21586
21587 #. type: textblock
21588 #: ../fish/guestfish.pod:996
21589 msgid "Without any parameter, this provides general help."
21590 msgstr ""
21591
21592 #. type: textblock
21593 #: ../fish/guestfish.pod:998
21594 msgid "With a C<cmd> parameter, this displays detailed help for that command."
21595 msgstr ""
21596
21597 #. type: =head2
21598 #: ../fish/guestfish.pod:1000
21599 msgid "quit | exit"
21600 msgstr ""
21601
21602 #. type: textblock
21603 #: ../fish/guestfish.pod:1002
21604 msgid "This exits guestfish.  You can also use C<^D> key."
21605 msgstr ""
21606
21607 #. type: textblock
21608 #: ../fish/guestfish.pod:1004
21609 msgid "@FISH_COMMANDS@"
21610 msgstr ""
21611
21612 #. type: =head1
21613 #: ../fish/guestfish.pod:1006
21614 msgid "COMMANDS"
21615 msgstr ""
21616
21617 #. type: =head1
21618 #: ../fish/guestfish.pod:1010 ../test-tool/libguestfs-test-tool.pod:77
21619 msgid "EXIT CODE"
21620 msgstr ""
21621
21622 #. type: textblock
21623 #: ../fish/guestfish.pod:1012
21624 msgid ""
21625 "guestfish returns 0 if the commands completed without error, or 1 if there "
21626 "was an error."
21627 msgstr ""
21628
21629 #. type: =item
21630 #: ../fish/guestfish.pod:1019
21631 msgid "EDITOR"
21632 msgstr ""
21633
21634 #. type: textblock
21635 #: ../fish/guestfish.pod:1021
21636 msgid ""
21637 "The C<edit> command uses C<$EDITOR> as the editor.  If not set, it uses "
21638 "C<vi>."
21639 msgstr ""
21640
21641 #. type: =item
21642 #: ../fish/guestfish.pod:1024
21643 msgid "GUESTFISH_PID"
21644 msgstr ""
21645
21646 #. type: textblock
21647 #: ../fish/guestfish.pod:1026
21648 msgid ""
21649 "Used with the I<--remote> option to specify the remote guestfish process to "
21650 "control.  See section L</REMOTE CONTROL GUESTFISH OVER A SOCKET>."
21651 msgstr ""
21652
21653 #. type: =item
21654 #: ../fish/guestfish.pod:1030
21655 msgid "HEXEDITOR"
21656 msgstr ""
21657
21658 #. type: textblock
21659 #: ../fish/guestfish.pod:1032
21660 msgid ""
21661 "The L</hexedit> command uses C<$HEXEDITOR> as the external hex editor.  If "
21662 "not specified, the external L<hexedit(1)> program is used."
21663 msgstr ""
21664
21665 #. type: =item
21666 #: ../fish/guestfish.pod:1036
21667 msgid "HOME"
21668 msgstr ""
21669
21670 #. type: textblock
21671 #: ../fish/guestfish.pod:1038
21672 msgid ""
21673 "If compiled with GNU readline support, various files in the home directory "
21674 "can be used.  See L</FILES>."
21675 msgstr ""
21676
21677 #. type: textblock
21678 #: ../fish/guestfish.pod:1047
21679 msgid ""
21680 "Set C<LIBGUESTFS_DEBUG=1> to enable verbose messages.  This has the same "
21681 "effect as using the B<-v> option."
21682 msgstr ""
21683
21684 #. type: textblock
21685 #: ../fish/guestfish.pod:1059
21686 msgid ""
21687 "Set the path that guestfish uses to search for kernel and initrd.img.  See "
21688 "the discussion of paths in L<guestfs(3)>."
21689 msgstr ""
21690
21691 #. type: textblock
21692 #: ../fish/guestfish.pod:1070
21693 msgid "Set C<LIBGUESTFS_TRACE=1> to enable command traces."
21694 msgstr ""
21695
21696 #. type: =item
21697 #: ../fish/guestfish.pod:1072
21698 msgid "PAGER"
21699 msgstr ""
21700
21701 #. type: textblock
21702 #: ../fish/guestfish.pod:1074
21703 msgid ""
21704 "The C<more> command uses C<$PAGER> as the pager.  If not set, it uses "
21705 "C<more>."
21706 msgstr ""
21707
21708 #. type: =head1
21709 #: ../fish/guestfish.pod:1090 ../fuse/guestmount.pod:262
21710 msgid "FILES"
21711 msgstr ""
21712
21713 #. type: =item
21714 #: ../fish/guestfish.pod:1094 ../fuse/guestmount.pod:266
21715 msgid "$HOME/.libguestfs-tools.rc"
21716 msgstr ""
21717
21718 #. type: =item
21719 #: ../fish/guestfish.pod:1096 ../fuse/guestmount.pod:268
21720 msgid "/etc/libguestfs-tools.conf"
21721 msgstr ""
21722
21723 #. type: textblock
21724 #: ../fish/guestfish.pod:1098 ../fuse/guestmount.pod:270
21725 msgid ""
21726 "This configuration file controls the default read-only or read-write mode "
21727 "(I<--ro> or I<--rw>)."
21728 msgstr ""
21729
21730 #. type: textblock
21731 #: ../fish/guestfish.pod:1101
21732 msgid "See L</OPENING DISKS FOR READ AND WRITE>."
21733 msgstr ""
21734
21735 #. type: =item
21736 #: ../fish/guestfish.pod:1103
21737 msgid "$HOME/.guestfish"
21738 msgstr ""
21739
21740 #. type: textblock
21741 #: ../fish/guestfish.pod:1105
21742 msgid ""
21743 "If compiled with GNU readline support, then the command history is saved in "
21744 "this file."
21745 msgstr ""
21746
21747 #. type: =item
21748 #: ../fish/guestfish.pod:1108
21749 msgid "$HOME/.inputrc"
21750 msgstr ""
21751
21752 #. type: =item
21753 #: ../fish/guestfish.pod:1110
21754 msgid "/etc/inputrc"
21755 msgstr ""
21756
21757 #. type: textblock
21758 #: ../fish/guestfish.pod:1112
21759 msgid ""
21760 "If compiled with GNU readline support, then these files can be used to "
21761 "configure readline.  For further information, please see L<readline(3)/"
21762 "INITIALIZATION FILE>."
21763 msgstr ""
21764
21765 #. type: textblock
21766 #: ../fish/guestfish.pod:1116
21767 msgid "To write rules which only apply to guestfish, use:"
21768 msgstr ""
21769
21770 #. type: verbatim
21771 #: ../fish/guestfish.pod:1118
21772 #, no-wrap
21773 msgid ""
21774 " $if guestfish\n"
21775 " ...\n"
21776 " $endif\n"
21777 "\n"
21778 msgstr ""
21779
21780 #. type: textblock
21781 #: ../fish/guestfish.pod:1122
21782 msgid ""
21783 "Variables that you can set in inputrc that change the behaviour of guestfish "
21784 "in useful ways include:"
21785 msgstr ""
21786
21787 #. type: =item
21788 #: ../fish/guestfish.pod:1127
21789 msgid "completion-ignore-case (default: on)"
21790 msgstr ""
21791
21792 #. type: textblock
21793 #: ../fish/guestfish.pod:1129
21794 msgid ""
21795 "By default, guestfish will ignore case when tab-completing paths on the "
21796 "disk.  Use:"
21797 msgstr ""
21798
21799 #. type: verbatim
21800 #: ../fish/guestfish.pod:1132
21801 #, no-wrap
21802 msgid ""
21803 " set completion-ignore-case off\n"
21804 "\n"
21805 msgstr ""
21806
21807 #. type: textblock
21808 #: ../fish/guestfish.pod:1134
21809 msgid "to make guestfish case sensitive."
21810 msgstr ""
21811
21812 #. type: =item
21813 #: ../fish/guestfish.pod:1138
21814 msgid "test1.img"
21815 msgstr ""
21816
21817 #. type: =item
21818 #: ../fish/guestfish.pod:1140
21819 msgid "test2.img (etc)"
21820 msgstr ""
21821
21822 #. type: textblock
21823 #: ../fish/guestfish.pod:1142
21824 msgid ""
21825 "When using the I<-N> or I<--new> option, the prepared disk or filesystem "
21826 "will be created in the file C<test1.img> in the current directory.  The "
21827 "second use of I<-N> will use C<test2.img> and so on.  Any existing file with "
21828 "the same name will be overwritten."
21829 msgstr ""
21830
21831 #. type: textblock
21832 #: ../fish/guestfish.pod:1151
21833 msgid ""
21834 "L<guestfs(3)>, L<http://libguestfs.org/>, L<virt-cat(1)>, L<virt-copy-in(1)"
21835 ">, L<virt-copy-out(1)>, L<virt-df(1)>, L<virt-edit(1)>, L<virt-filesystems(1)"
21836 ">, L<virt-inspector(1)>, L<virt-list-filesystems(1)>, L<virt-list-partitions"
21837 "(1)>, L<virt-ls(1)>, L<virt-make-fs(1)>, L<virt-rescue(1)>, L<virt-resize(1)"
21838 ">, L<virt-tar(1)>, L<virt-tar-in(1)>, L<virt-tar-out(1)>, L<virt-win-reg(1)"
21839 ">, L<hexedit(1)>."
21840 msgstr ""
21841
21842 #. type: textblock
21843 #: ../fish/guestfish.pod:1181 ../test-tool/libguestfs-test-tool.pod:102
21844 #: ../fuse/guestmount.pod:297 ../tools/virt-edit.pl:518
21845 #: ../tools/virt-win-reg.pl:606 ../tools/virt-list-filesystems.pl:210
21846 #: ../tools/virt-tar.pl:309 ../tools/virt-make-fs.pl:572
21847 #: ../tools/virt-list-partitions.pl:277
21848 msgid ""
21849 "This program is free software; you can redistribute it and/or modify it "
21850 "under the terms of the GNU General Public License as published by the Free "
21851 "Software Foundation; either version 2 of the License, or (at your option) "
21852 "any later version."
21853 msgstr ""
21854
21855 #. type: textblock
21856 #: ../fish/guestfish.pod:1186 ../test-tool/libguestfs-test-tool.pod:107
21857 #: ../fuse/guestmount.pod:302 ../tools/virt-edit.pl:523
21858 #: ../tools/virt-win-reg.pl:611 ../tools/virt-list-filesystems.pl:215
21859 #: ../tools/virt-tar.pl:314 ../tools/virt-make-fs.pl:577
21860 #: ../tools/virt-list-partitions.pl:282
21861 msgid ""
21862 "This program is distributed in the hope that it will be useful, but WITHOUT "
21863 "ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or "
21864 "FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for "
21865 "more details."
21866 msgstr ""
21867
21868 #. type: textblock
21869 #: ../fish/guestfish.pod:1191 ../test-tool/libguestfs-test-tool.pod:112
21870 #: ../fuse/guestmount.pod:307 ../tools/virt-edit.pl:528
21871 #: ../tools/virt-win-reg.pl:616 ../tools/virt-list-filesystems.pl:220
21872 #: ../tools/virt-tar.pl:319 ../tools/virt-make-fs.pl:582
21873 #: ../tools/virt-list-partitions.pl:287
21874 msgid ""
21875 "You should have received a copy of the GNU General Public License along with "
21876 "this program; if not, write to the Free Software Foundation, Inc., 675 Mass "
21877 "Ave, Cambridge, MA 02139, USA."
21878 msgstr ""
21879
21880 #. type: =head2
21881 #: ../fish/guestfish-actions.pod:1
21882 msgid "add-cdrom"
21883 msgstr ""
21884
21885 #. type: verbatim
21886 #: ../fish/guestfish-actions.pod:3
21887 #, no-wrap
21888 msgid ""
21889 " add-cdrom filename\n"
21890 "\n"
21891 msgstr ""
21892
21893 #. type: textblock
21894 #: ../fish/guestfish-actions.pod:15
21895 msgid ""
21896 "This call checks for the existence of C<filename>.  This stops you from "
21897 "specifying other types of drive which are supported by qemu such as C<nbd:> "
21898 "and C<http:> URLs.  To specify those, use the general L</config> call "
21899 "instead."
21900 msgstr ""
21901
21902 #. type: textblock
21903 #: ../fish/guestfish-actions.pod:22
21904 msgid ""
21905 "If you just want to add an ISO file (often you use this as an efficient way "
21906 "to transfer large files into the guest), then you should probably use L</add-"
21907 "drive-ro> instead."
21908 msgstr ""
21909
21910 #. type: =head2
21911 #: ../fish/guestfish-actions.pod:35
21912 msgid "add-domain"
21913 msgstr ""
21914
21915 #. type: =head2
21916 #: ../fish/guestfish-actions.pod:37
21917 msgid "domain"
21918 msgstr ""
21919
21920 #. type: verbatim
21921 #: ../fish/guestfish-actions.pod:39
21922 #, no-wrap
21923 msgid ""
21924 " add-domain dom [libvirturi:..] [readonly:..] [iface:..] [live:..]\n"
21925 "\n"
21926 msgstr ""
21927
21928 #. type: textblock
21929 #: ../fish/guestfish-actions.pod:41
21930 msgid ""
21931 "This function adds the disk(s) attached to the named libvirt domain C<dom>.  "
21932 "It works by connecting to libvirt, requesting the domain and domain XML from "
21933 "libvirt, parsing it for disks, and calling L</add-drive-opts> on each one."
21934 msgstr ""
21935
21936 #. type: textblock
21937 #: ../fish/guestfish-actions.pod:71
21938 msgid ""
21939 "The other optional parameters are passed directly through to L</add-drive-"
21940 "opts>."
21941 msgstr ""
21942
21943 #. type: textblock
21944 #: ../fish/guestfish-actions.pod:74 ../fish/guestfish-actions.pod:138
21945 #: ../fish/guestfish-actions.pod:3044
21946 msgid ""
21947 "This command has one or more optional arguments.  See L</OPTIONAL ARGUMENTS>."
21948 msgstr ""
21949
21950 #. type: =head2
21951 #: ../fish/guestfish-actions.pod:76
21952 msgid "add-drive"
21953 msgstr ""
21954
21955 #. type: verbatim
21956 #: ../fish/guestfish-actions.pod:78
21957 #, no-wrap
21958 msgid ""
21959 " add-drive filename\n"
21960 "\n"
21961 msgstr ""
21962
21963 #. type: textblock
21964 #: ../fish/guestfish-actions.pod:80
21965 msgid ""
21966 "This function is the equivalent of calling L</add-drive-opts> with no "
21967 "optional parameters, so the disk is added writable, with the format being "
21968 "detected automatically."
21969 msgstr ""
21970
21971 #. type: textblock
21972 #: ../fish/guestfish-actions.pod:84
21973 msgid ""
21974 "Automatic detection of the format opens you up to a potential security hole "
21975 "when dealing with untrusted raw-format images.  See CVE-2010-3851 and "
21976 "RHBZ#642934.  Specifying the format closes this security hole.  Therefore "
21977 "you should think about replacing calls to this function with calls to L</add-"
21978 "drive-opts>, and specifying the format."
21979 msgstr ""
21980
21981 #. type: =head2
21982 #: ../fish/guestfish-actions.pod:91
21983 msgid "add-drive-opts"
21984 msgstr ""
21985
21986 #. type: =head2
21987 #: ../fish/guestfish-actions.pod:93
21988 msgid "add"
21989 msgstr ""
21990
21991 #. type: verbatim
21992 #: ../fish/guestfish-actions.pod:95
21993 #, no-wrap
21994 msgid ""
21995 " add-drive-opts filename [readonly:..] [format:..] [iface:..]\n"
21996 "\n"
21997 msgstr ""
21998
21999 #. type: textblock
22000 #: ../fish/guestfish-actions.pod:122
22001 msgid ""
22002 "This forces the image format.  If you omit this (or use L</add-drive> or L</"
22003 "add-drive-ro>) then the format is automatically detected.  Possible formats "
22004 "include C<raw> and C<qcow2>."
22005 msgstr ""
22006
22007 #. type: textblock
22008 #: ../fish/guestfish-actions.pod:133
22009 msgid ""
22010 "This rarely-used option lets you emulate the behaviour of the deprecated L</"
22011 "add-drive-with-if> call (q.v.)"
22012 msgstr ""
22013
22014 #. type: =head2
22015 #: ../fish/guestfish-actions.pod:140
22016 msgid "add-drive-ro"
22017 msgstr ""
22018
22019 #. type: =head2
22020 #: ../fish/guestfish-actions.pod:142
22021 msgid "add-ro"
22022 msgstr ""
22023
22024 #. type: verbatim
22025 #: ../fish/guestfish-actions.pod:144
22026 #, no-wrap
22027 msgid ""
22028 " add-drive-ro filename\n"
22029 "\n"
22030 msgstr ""
22031
22032 #. type: textblock
22033 #: ../fish/guestfish-actions.pod:146
22034 msgid ""
22035 "This function is the equivalent of calling L</add-drive-opts> with the "
22036 "optional parameter C<GUESTFS_ADD_DRIVE_OPTS_READONLY> set to 1, so the disk "
22037 "is added read-only, with the format being detected automatically."
22038 msgstr ""
22039
22040 #. type: =head2
22041 #: ../fish/guestfish-actions.pod:151
22042 msgid "add-drive-ro-with-if"
22043 msgstr ""
22044
22045 #. type: verbatim
22046 #: ../fish/guestfish-actions.pod:153
22047 #, no-wrap
22048 msgid ""
22049 " add-drive-ro-with-if filename iface\n"
22050 "\n"
22051 msgstr ""
22052
22053 #. type: textblock
22054 #: ../fish/guestfish-actions.pod:155
22055 msgid ""
22056 "This is the same as L</add-drive-ro> but it allows you to specify the QEMU "
22057 "interface emulation to use at run time."
22058 msgstr ""
22059
22060 #. type: =head2
22061 #: ../fish/guestfish-actions.pod:165
22062 msgid "add-drive-with-if"
22063 msgstr ""
22064
22065 #. type: verbatim
22066 #: ../fish/guestfish-actions.pod:167
22067 #, no-wrap
22068 msgid ""
22069 " add-drive-with-if filename iface\n"
22070 "\n"
22071 msgstr ""
22072
22073 #. type: textblock
22074 #: ../fish/guestfish-actions.pod:169
22075 msgid ""
22076 "This is the same as L</add-drive> but it allows you to specify the QEMU "
22077 "interface emulation to use at run time."
22078 msgstr ""
22079
22080 #. type: =head2
22081 #: ../fish/guestfish-actions.pod:179
22082 msgid "aug-clear"
22083 msgstr ""
22084
22085 #. type: verbatim
22086 #: ../fish/guestfish-actions.pod:181
22087 #, no-wrap
22088 msgid ""
22089 " aug-clear augpath\n"
22090 "\n"
22091 msgstr ""
22092
22093 #. type: =head2
22094 #: ../fish/guestfish-actions.pod:186
22095 msgid "aug-close"
22096 msgstr ""
22097
22098 #. type: verbatim
22099 #: ../fish/guestfish-actions.pod:188
22100 #, no-wrap
22101 msgid ""
22102 " aug-close\n"
22103 "\n"
22104 msgstr ""
22105
22106 #. type: textblock
22107 #: ../fish/guestfish-actions.pod:190
22108 msgid ""
22109 "Close the current Augeas handle and free up any resources used by it.  After "
22110 "calling this, you have to call L</aug-init> again before you can use any "
22111 "other Augeas functions."
22112 msgstr ""
22113
22114 #. type: =head2
22115 #: ../fish/guestfish-actions.pod:195
22116 msgid "aug-defnode"
22117 msgstr ""
22118
22119 #. type: verbatim
22120 #: ../fish/guestfish-actions.pod:197
22121 #, no-wrap
22122 msgid ""
22123 " aug-defnode name expr val\n"
22124 "\n"
22125 msgstr ""
22126
22127 #. type: textblock
22128 #: ../fish/guestfish-actions.pod:202
22129 msgid ""
22130 "If C<expr> evaluates to an empty nodeset, a node is created, equivalent to "
22131 "calling L</aug-set> C<expr>, C<value>.  C<name> will be the nodeset "
22132 "containing that single node."
22133 msgstr ""
22134
22135 #. type: =head2
22136 #: ../fish/guestfish-actions.pod:210
22137 msgid "aug-defvar"
22138 msgstr ""
22139
22140 #. type: verbatim
22141 #: ../fish/guestfish-actions.pod:212
22142 #, no-wrap
22143 msgid ""
22144 " aug-defvar name expr\n"
22145 "\n"
22146 msgstr ""
22147
22148 #. type: =head2
22149 #: ../fish/guestfish-actions.pod:221
22150 msgid "aug-get"
22151 msgstr ""
22152
22153 #. type: verbatim
22154 #: ../fish/guestfish-actions.pod:223
22155 #, no-wrap
22156 msgid ""
22157 " aug-get augpath\n"
22158 "\n"
22159 msgstr ""
22160
22161 #. type: =head2
22162 #: ../fish/guestfish-actions.pod:228
22163 msgid "aug-init"
22164 msgstr ""
22165
22166 #. type: verbatim
22167 #: ../fish/guestfish-actions.pod:230
22168 #, no-wrap
22169 msgid ""
22170 " aug-init root flags\n"
22171 "\n"
22172 msgstr ""
22173
22174 #. type: textblock
22175 #: ../fish/guestfish-actions.pod:236
22176 msgid "You must call this before using any other L</aug-*> commands."
22177 msgstr ""
22178
22179 #. type: textblock
22180 #: ../fish/guestfish-actions.pod:271
22181 msgid "Do not load the tree in L</aug-init>."
22182 msgstr ""
22183
22184 #. type: textblock
22185 #: ../fish/guestfish-actions.pod:275
22186 msgid "To close the handle, you can call L</aug-close>."
22187 msgstr ""
22188
22189 #. type: =head2
22190 #: ../fish/guestfish-actions.pod:279
22191 msgid "aug-insert"
22192 msgstr ""
22193
22194 #. type: verbatim
22195 #: ../fish/guestfish-actions.pod:281
22196 #, no-wrap
22197 msgid ""
22198 " aug-insert augpath label true|false\n"
22199 "\n"
22200 msgstr ""
22201
22202 #. type: =head2
22203 #: ../fish/guestfish-actions.pod:291
22204 msgid "aug-load"
22205 msgstr ""
22206
22207 #. type: verbatim
22208 #: ../fish/guestfish-actions.pod:293
22209 #, no-wrap
22210 msgid ""
22211 " aug-load\n"
22212 "\n"
22213 msgstr ""
22214
22215 #. type: =head2
22216 #: ../fish/guestfish-actions.pod:300
22217 msgid "aug-ls"
22218 msgstr ""
22219
22220 #. type: verbatim
22221 #: ../fish/guestfish-actions.pod:302
22222 #, no-wrap
22223 msgid ""
22224 " aug-ls augpath\n"
22225 "\n"
22226 msgstr ""
22227
22228 #. type: textblock
22229 #: ../fish/guestfish-actions.pod:304
22230 msgid ""
22231 "This is just a shortcut for listing L</aug-match> C<path/*> and sorting the "
22232 "resulting nodes into alphabetical order."
22233 msgstr ""
22234
22235 #. type: =head2
22236 #: ../fish/guestfish-actions.pod:307
22237 msgid "aug-match"
22238 msgstr ""
22239
22240 #. type: verbatim
22241 #: ../fish/guestfish-actions.pod:309
22242 #, no-wrap
22243 msgid ""
22244 " aug-match augpath\n"
22245 "\n"
22246 msgstr ""
22247
22248 #. type: =head2
22249 #: ../fish/guestfish-actions.pod:315
22250 msgid "aug-mv"
22251 msgstr ""
22252
22253 #. type: verbatim
22254 #: ../fish/guestfish-actions.pod:317
22255 #, no-wrap
22256 msgid ""
22257 " aug-mv src dest\n"
22258 "\n"
22259 msgstr ""
22260
22261 #. type: =head2
22262 #: ../fish/guestfish-actions.pod:322
22263 msgid "aug-rm"
22264 msgstr ""
22265
22266 #. type: verbatim
22267 #: ../fish/guestfish-actions.pod:324
22268 #, no-wrap
22269 msgid ""
22270 " aug-rm augpath\n"
22271 "\n"
22272 msgstr ""
22273
22274 #. type: =head2
22275 #: ../fish/guestfish-actions.pod:330
22276 msgid "aug-save"
22277 msgstr ""
22278
22279 #. type: verbatim
22280 #: ../fish/guestfish-actions.pod:332
22281 #, no-wrap
22282 msgid ""
22283 " aug-save\n"
22284 "\n"
22285 msgstr ""
22286
22287 #. type: textblock
22288 #: ../fish/guestfish-actions.pod:336
22289 msgid ""
22290 "The flags which were passed to L</aug-init> affect exactly how files are "
22291 "saved."
22292 msgstr ""
22293
22294 #. type: =head2
22295 #: ../fish/guestfish-actions.pod:339
22296 msgid "aug-set"
22297 msgstr ""
22298
22299 #. type: verbatim
22300 #: ../fish/guestfish-actions.pod:341
22301 #, no-wrap
22302 msgid ""
22303 " aug-set augpath val\n"
22304 "\n"
22305 msgstr ""
22306
22307 #. type: textblock
22308 #: ../fish/guestfish-actions.pod:345
22309 msgid ""
22310 "In the Augeas API, it is possible to clear a node by setting the value to "
22311 "NULL.  Due to an oversight in the libguestfs API you cannot do that with "
22312 "this call.  Instead you must use the L</aug-clear> call."
22313 msgstr ""
22314
22315 #. type: =head2
22316 #: ../fish/guestfish-actions.pod:350
22317 msgid "available"
22318 msgstr ""
22319
22320 #. type: verbatim
22321 #: ../fish/guestfish-actions.pod:352
22322 #, no-wrap
22323 msgid ""
22324 " available 'groups ...'\n"
22325 "\n"
22326 msgstr ""
22327
22328 #. type: textblock
22329 #: ../fish/guestfish-actions.pod:358
22330 msgid ""
22331 "The libguestfs groups, and the functions that those groups correspond to, "
22332 "are listed in L<guestfs(3)/AVAILABILITY>.  You can also fetch this list at "
22333 "runtime by calling L</available-all-groups>."
22334 msgstr ""
22335
22336 #. type: textblock
22337 #: ../fish/guestfish-actions.pod:382
22338 msgid "You must call L</launch> before calling this function."
22339 msgstr ""
22340
22341 #. type: textblock
22342 #: ../fish/guestfish-actions.pod:404
22343 msgid ""
22344 "This call was added in version C<1.0.80>.  In previous versions of "
22345 "libguestfs all you could do would be to speculatively execute a command to "
22346 "find out if the daemon implemented it.  See also L</version>."
22347 msgstr ""
22348
22349 #. type: =head2
22350 #: ../fish/guestfish-actions.pod:411
22351 msgid "available-all-groups"
22352 msgstr ""
22353
22354 #. type: verbatim
22355 #: ../fish/guestfish-actions.pod:413
22356 #, no-wrap
22357 msgid ""
22358 " available-all-groups\n"
22359 "\n"
22360 msgstr ""
22361
22362 #. type: textblock
22363 #: ../fish/guestfish-actions.pod:415
22364 msgid ""
22365 "This command returns a list of all optional groups that this daemon knows "
22366 "about.  Note this returns both supported and unsupported groups.  To find "
22367 "out which ones the daemon can actually support you have to call L</"
22368 "available> on each member of the returned list."
22369 msgstr ""
22370
22371 #. type: textblock
22372 #: ../fish/guestfish-actions.pod:421
22373 msgid "See also L</available> and L<guestfs(3)/AVAILABILITY>."
22374 msgstr ""
22375
22376 #. type: =head2
22377 #: ../fish/guestfish-actions.pod:423
22378 msgid "base64-in"
22379 msgstr ""
22380
22381 #. type: verbatim
22382 #: ../fish/guestfish-actions.pod:425
22383 #, no-wrap
22384 msgid ""
22385 " base64-in (base64file|-) filename\n"
22386 "\n"
22387 msgstr ""
22388
22389 #. type: textblock
22390 #: ../fish/guestfish-actions.pod:430 ../fish/guestfish-actions.pod:439
22391 #: ../fish/guestfish-actions.pod:663 ../fish/guestfish-actions.pod:832
22392 #: ../fish/guestfish-actions.pod:851 ../fish/guestfish-actions.pod:1225
22393 #: ../fish/guestfish-actions.pod:4486 ../fish/guestfish-actions.pod:4498
22394 #: ../fish/guestfish-actions.pod:4509 ../fish/guestfish-actions.pod:4520
22395 #: ../fish/guestfish-actions.pod:4572 ../fish/guestfish-actions.pod:4581
22396 #: ../fish/guestfish-actions.pod:4635 ../fish/guestfish-actions.pod:4658
22397 msgid "Use C<-> instead of a filename to read/write from stdin/stdout."
22398 msgstr ""
22399
22400 #. type: =head2
22401 #: ../fish/guestfish-actions.pod:432
22402 msgid "base64-out"
22403 msgstr ""
22404
22405 #. type: verbatim
22406 #: ../fish/guestfish-actions.pod:434
22407 #, no-wrap
22408 msgid ""
22409 " base64-out filename (base64file|-)\n"
22410 "\n"
22411 msgstr ""
22412
22413 #. type: =head2
22414 #: ../fish/guestfish-actions.pod:441
22415 msgid "blockdev-flushbufs"
22416 msgstr ""
22417
22418 #. type: verbatim
22419 #: ../fish/guestfish-actions.pod:443
22420 #, no-wrap
22421 msgid ""
22422 " blockdev-flushbufs device\n"
22423 "\n"
22424 msgstr ""
22425
22426 #. type: =head2
22427 #: ../fish/guestfish-actions.pod:450
22428 msgid "blockdev-getbsz"
22429 msgstr ""
22430
22431 #. type: verbatim
22432 #: ../fish/guestfish-actions.pod:452
22433 #, no-wrap
22434 msgid ""
22435 " blockdev-getbsz device\n"
22436 "\n"
22437 msgstr ""
22438
22439 #. type: =head2
22440 #: ../fish/guestfish-actions.pod:461
22441 msgid "blockdev-getro"
22442 msgstr ""
22443
22444 #. type: verbatim
22445 #: ../fish/guestfish-actions.pod:463
22446 #, no-wrap
22447 msgid ""
22448 " blockdev-getro device\n"
22449 "\n"
22450 msgstr ""
22451
22452 #. type: =head2
22453 #: ../fish/guestfish-actions.pod:470
22454 msgid "blockdev-getsize64"
22455 msgstr ""
22456
22457 #. type: verbatim
22458 #: ../fish/guestfish-actions.pod:472
22459 #, no-wrap
22460 msgid ""
22461 " blockdev-getsize64 device\n"
22462 "\n"
22463 msgstr ""
22464
22465 #. type: textblock
22466 #: ../fish/guestfish-actions.pod:476
22467 msgid "See also L</blockdev-getsz>."
22468 msgstr ""
22469
22470 #. type: =head2
22471 #: ../fish/guestfish-actions.pod:480
22472 msgid "blockdev-getss"
22473 msgstr ""
22474
22475 #. type: verbatim
22476 #: ../fish/guestfish-actions.pod:482
22477 #, no-wrap
22478 msgid ""
22479 " blockdev-getss device\n"
22480 "\n"
22481 msgstr ""
22482
22483 #. type: textblock
22484 #: ../fish/guestfish-actions.pod:487
22485 msgid ""
22486 "(Note, this is not the size in sectors, use L</blockdev-getsz> for that)."
22487 msgstr ""
22488
22489 #. type: =head2
22490 #: ../fish/guestfish-actions.pod:492
22491 msgid "blockdev-getsz"
22492 msgstr ""
22493
22494 #. type: verbatim
22495 #: ../fish/guestfish-actions.pod:494
22496 #, no-wrap
22497 msgid ""
22498 " blockdev-getsz device\n"
22499 "\n"
22500 msgstr ""
22501
22502 #. type: textblock
22503 #: ../fish/guestfish-actions.pod:499
22504 msgid ""
22505 "See also L</blockdev-getss> for the real sector size of the device, and L</"
22506 "blockdev-getsize64> for the more useful I<size in bytes>."
22507 msgstr ""
22508
22509 #. type: =head2
22510 #: ../fish/guestfish-actions.pod:505
22511 msgid "blockdev-rereadpt"
22512 msgstr ""
22513
22514 #. type: verbatim
22515 #: ../fish/guestfish-actions.pod:507
22516 #, no-wrap
22517 msgid ""
22518 " blockdev-rereadpt device\n"
22519 "\n"
22520 msgstr ""
22521
22522 #. type: =head2
22523 #: ../fish/guestfish-actions.pod:513
22524 msgid "blockdev-setbsz"
22525 msgstr ""
22526
22527 #. type: verbatim
22528 #: ../fish/guestfish-actions.pod:515
22529 #, no-wrap
22530 msgid ""
22531 " blockdev-setbsz device blocksize\n"
22532 "\n"
22533 msgstr ""
22534
22535 #. type: =head2
22536 #: ../fish/guestfish-actions.pod:524
22537 msgid "blockdev-setro"
22538 msgstr ""
22539
22540 #. type: verbatim
22541 #: ../fish/guestfish-actions.pod:526
22542 #, no-wrap
22543 msgid ""
22544 " blockdev-setro device\n"
22545 "\n"
22546 msgstr ""
22547
22548 #. type: =head2
22549 #: ../fish/guestfish-actions.pod:532
22550 msgid "blockdev-setrw"
22551 msgstr ""
22552
22553 #. type: verbatim
22554 #: ../fish/guestfish-actions.pod:534
22555 #, no-wrap
22556 msgid ""
22557 " blockdev-setrw device\n"
22558 "\n"
22559 msgstr ""
22560
22561 #. type: =head2
22562 #: ../fish/guestfish-actions.pod:540
22563 msgid "case-sensitive-path"
22564 msgstr ""
22565
22566 #. type: verbatim
22567 #: ../fish/guestfish-actions.pod:542
22568 #, no-wrap
22569 msgid ""
22570 " case-sensitive-path path\n"
22571 "\n"
22572 msgstr ""
22573
22574 #. type: textblock
22575 #: ../fish/guestfish-actions.pod:566
22576 msgid ""
22577 "Thus L</case-sensitive-path> (\"/Windows/System32\")  might return C<\"/"
22578 "WINDOWS/system32\"> (the exact return value would depend on details of how "
22579 "the directories were originally created under Windows)."
22580 msgstr ""
22581
22582 #. type: textblock
22583 #: ../fish/guestfish-actions.pod:574
22584 msgid "See also L</realpath>."
22585 msgstr ""
22586
22587 #. type: =head2
22588 #: ../fish/guestfish-actions.pod:576
22589 msgid "cat"
22590 msgstr ""
22591
22592 #. type: verbatim
22593 #: ../fish/guestfish-actions.pod:578
22594 #, no-wrap
22595 msgid ""
22596 " cat path\n"
22597 "\n"
22598 msgstr ""
22599
22600 #. type: textblock
22601 #: ../fish/guestfish-actions.pod:582
22602 msgid ""
22603 "Note that this function cannot correctly handle binary files (specifically, "
22604 "files containing C<\\0> character which is treated as end of string).  For "
22605 "those you need to use the L</read-file> or L</download> functions which have "
22606 "a more complex interface."
22607 msgstr ""
22608
22609 #. type: =head2
22610 #: ../fish/guestfish-actions.pod:590
22611 msgid "checksum"
22612 msgstr ""
22613
22614 #. type: verbatim
22615 #: ../fish/guestfish-actions.pod:592
22616 #, no-wrap
22617 msgid ""
22618 " checksum csumtype path\n"
22619 "\n"
22620 msgstr ""
22621
22622 #. type: textblock
22623 #: ../fish/guestfish-actions.pod:635
22624 msgid "To get the checksum for a device, use L</checksum-device>."
22625 msgstr ""
22626
22627 #. type: textblock
22628 #: ../fish/guestfish-actions.pod:637
22629 msgid "To get the checksums for many files, use L</checksums-out>."
22630 msgstr ""
22631
22632 #. type: =head2
22633 #: ../fish/guestfish-actions.pod:639
22634 msgid "checksum-device"
22635 msgstr ""
22636
22637 #. type: verbatim
22638 #: ../fish/guestfish-actions.pod:641
22639 #, no-wrap
22640 msgid ""
22641 " checksum-device csumtype device\n"
22642 "\n"
22643 msgstr ""
22644
22645 #. type: textblock
22646 #: ../fish/guestfish-actions.pod:643
22647 msgid ""
22648 "This call computes the MD5, SHAx or CRC checksum of the contents of the "
22649 "device named C<device>.  For the types of checksums supported see the L</"
22650 "checksum> command."
22651 msgstr ""
22652
22653 #. type: =head2
22654 #: ../fish/guestfish-actions.pod:647
22655 msgid "checksums-out"
22656 msgstr ""
22657
22658 #. type: verbatim
22659 #: ../fish/guestfish-actions.pod:649
22660 #, no-wrap
22661 msgid ""
22662 " checksums-out csumtype directory (sumsfile|-)\n"
22663 "\n"
22664 msgstr ""
22665
22666 #. type: =head2
22667 #: ../fish/guestfish-actions.pod:665
22668 msgid "chmod"
22669 msgstr ""
22670
22671 #. type: verbatim
22672 #: ../fish/guestfish-actions.pod:667
22673 #, no-wrap
22674 msgid ""
22675 " chmod mode path\n"
22676 "\n"
22677 msgstr ""
22678
22679 #. type: =head2
22680 #: ../fish/guestfish-actions.pod:678
22681 msgid "chown"
22682 msgstr ""
22683
22684 #. type: verbatim
22685 #: ../fish/guestfish-actions.pod:680
22686 #, no-wrap
22687 msgid ""
22688 " chown owner group path\n"
22689 "\n"
22690 msgstr ""
22691
22692 #. type: =head2
22693 #: ../fish/guestfish-actions.pod:688
22694 msgid "command"
22695 msgstr ""
22696
22697 #. type: verbatim
22698 #: ../fish/guestfish-actions.pod:690
22699 #, no-wrap
22700 msgid ""
22701 " command 'arguments ...'\n"
22702 "\n"
22703 msgstr ""
22704
22705 #. type: textblock
22706 #: ../fish/guestfish-actions.pod:697
22707 msgid ""
22708 "The single parameter is an argv-style list of arguments.  The first element "
22709 "is the name of the program to run.  Subsequent elements are parameters.  The "
22710 "list must be non-empty (ie. must contain a program name).  Note that the "
22711 "command runs directly, and is I<not> invoked via the shell (see L</sh>)."
22712 msgstr ""
22713
22714 #. type: =head2
22715 #: ../fish/guestfish-actions.pod:725
22716 msgid "command-lines"
22717 msgstr ""
22718
22719 #. type: verbatim
22720 #: ../fish/guestfish-actions.pod:727
22721 #, no-wrap
22722 msgid ""
22723 " command-lines 'arguments ...'\n"
22724 "\n"
22725 msgstr ""
22726
22727 #. type: textblock
22728 #: ../fish/guestfish-actions.pod:729
22729 msgid ""
22730 "This is the same as L</command>, but splits the result into a list of lines."
22731 msgstr ""
22732
22733 #. type: textblock
22734 #: ../fish/guestfish-actions.pod:732
22735 msgid "See also: L</sh-lines>"
22736 msgstr ""
22737
22738 #. type: =head2
22739 #: ../fish/guestfish-actions.pod:737
22740 msgid "config"
22741 msgstr ""
22742
22743 #. type: verbatim
22744 #: ../fish/guestfish-actions.pod:739
22745 #, no-wrap
22746 msgid ""
22747 " config qemuparam qemuvalue\n"
22748 "\n"
22749 msgstr ""
22750
22751 #. type: =head2
22752 #: ../fish/guestfish-actions.pod:750
22753 msgid "copy-size"
22754 msgstr ""
22755
22756 #. type: verbatim
22757 #: ../fish/guestfish-actions.pod:752
22758 #, no-wrap
22759 msgid ""
22760 " copy-size src dest size\n"
22761 "\n"
22762 msgstr ""
22763
22764 #. type: =head2
22765 #: ../fish/guestfish-actions.pod:760
22766 msgid "cp"
22767 msgstr ""
22768
22769 #. type: verbatim
22770 #: ../fish/guestfish-actions.pod:762
22771 #, no-wrap
22772 msgid ""
22773 " cp src dest\n"
22774 "\n"
22775 msgstr ""
22776
22777 #. type: =head2
22778 #: ../fish/guestfish-actions.pod:767
22779 msgid "cp-a"
22780 msgstr ""
22781
22782 #. type: verbatim
22783 #: ../fish/guestfish-actions.pod:769
22784 #, no-wrap
22785 msgid ""
22786 " cp-a src dest\n"
22787 "\n"
22788 msgstr ""
22789
22790 #. type: =head2
22791 #: ../fish/guestfish-actions.pod:774
22792 msgid "dd"
22793 msgstr ""
22794
22795 #. type: verbatim
22796 #: ../fish/guestfish-actions.pod:776
22797 #, no-wrap
22798 msgid ""
22799 " dd src dest\n"
22800 "\n"
22801 msgstr ""
22802
22803 #. type: textblock
22804 #: ../fish/guestfish-actions.pod:783
22805 msgid ""
22806 "If the destination is a device, it must be as large or larger than the "
22807 "source file or device, otherwise the copy will fail.  This command cannot do "
22808 "partial copies (see L</copy-size>)."
22809 msgstr ""
22810
22811 #. type: =head2
22812 #: ../fish/guestfish-actions.pod:787
22813 msgid "df"
22814 msgstr ""
22815
22816 #. type: verbatim
22817 #: ../fish/guestfish-actions.pod:789
22818 #, no-wrap
22819 msgid ""
22820 " df\n"
22821 "\n"
22822 msgstr ""
22823
22824 #. type: textblock
22825 #: ../fish/guestfish-actions.pod:793 ../fish/guestfish-actions.pod:804
22826 msgid ""
22827 "This command is mostly useful for interactive sessions.  It is I<not> "
22828 "intended that you try to parse the output string.  Use L</statvfs> from "
22829 "programs."
22830 msgstr ""
22831
22832 #. type: =head2
22833 #: ../fish/guestfish-actions.pod:797
22834 msgid "df-h"
22835 msgstr ""
22836
22837 #. type: verbatim
22838 #: ../fish/guestfish-actions.pod:799
22839 #, no-wrap
22840 msgid ""
22841 " df-h\n"
22842 "\n"
22843 msgstr ""
22844
22845 #. type: =head2
22846 #: ../fish/guestfish-actions.pod:808
22847 msgid "dmesg"
22848 msgstr ""
22849
22850 #. type: verbatim
22851 #: ../fish/guestfish-actions.pod:810
22852 #, no-wrap
22853 msgid ""
22854 " dmesg\n"
22855 "\n"
22856 msgstr ""
22857
22858 #. type: textblock
22859 #: ../fish/guestfish-actions.pod:816
22860 msgid ""
22861 "Another way to get the same information is to enable verbose messages with "
22862 "L</set-verbose> or by setting the environment variable C<LIBGUESTFS_DEBUG=1> "
22863 "before running the program."
22864 msgstr ""
22865
22866 #. type: =head2
22867 #: ../fish/guestfish-actions.pod:821
22868 msgid "download"
22869 msgstr ""
22870
22871 #. type: verbatim
22872 #: ../fish/guestfish-actions.pod:823
22873 #, no-wrap
22874 msgid ""
22875 " download remotefilename (filename|-)\n"
22876 "\n"
22877 msgstr ""
22878
22879 #. type: textblock
22880 #: ../fish/guestfish-actions.pod:830
22881 msgid "See also L</upload>, L</cat>."
22882 msgstr ""
22883
22884 #. type: =head2
22885 #: ../fish/guestfish-actions.pod:834
22886 msgid "download-offset"
22887 msgstr ""
22888
22889 #. type: verbatim
22890 #: ../fish/guestfish-actions.pod:836
22891 #, no-wrap
22892 msgid ""
22893 " download-offset remotefilename (filename|-) offset size\n"
22894 "\n"
22895 msgstr ""
22896
22897 #. type: textblock
22898 #: ../fish/guestfish-actions.pod:844
22899 msgid ""
22900 "Note that there is no limit on the amount of data that can be downloaded "
22901 "with this call, unlike with L</pread>, and this call always reads the full "
22902 "amount unless an error occurs."
22903 msgstr ""
22904
22905 #. type: textblock
22906 #: ../fish/guestfish-actions.pod:849
22907 msgid "See also L</download>, L</pread>."
22908 msgstr ""
22909
22910 #. type: =head2
22911 #: ../fish/guestfish-actions.pod:853
22912 msgid "drop-caches"
22913 msgstr ""
22914
22915 #. type: verbatim
22916 #: ../fish/guestfish-actions.pod:855
22917 #, no-wrap
22918 msgid ""
22919 " drop-caches whattodrop\n"
22920 "\n"
22921 msgstr ""
22922
22923 #. type: =head2
22924 #: ../fish/guestfish-actions.pod:867
22925 msgid "du"
22926 msgstr ""
22927
22928 #. type: verbatim
22929 #: ../fish/guestfish-actions.pod:869
22930 #, no-wrap
22931 msgid ""
22932 " du path\n"
22933 "\n"
22934 msgstr ""
22935
22936 #. type: =head2
22937 #: ../fish/guestfish-actions.pod:881
22938 msgid "e2fsck-f"
22939 msgstr ""
22940
22941 #. type: verbatim
22942 #: ../fish/guestfish-actions.pod:883
22943 #, no-wrap
22944 msgid ""
22945 " e2fsck-f device\n"
22946 "\n"
22947 msgstr ""
22948
22949 #. type: textblock
22950 #: ../fish/guestfish-actions.pod:889
22951 msgid ""
22952 "This command is only needed because of L</resize2fs> (q.v.).  Normally you "
22953 "should use L</fsck>."
22954 msgstr ""
22955
22956 #. type: =head2
22957 #: ../fish/guestfish-actions.pod:892
22958 msgid "echo-daemon"
22959 msgstr ""
22960
22961 #. type: verbatim
22962 #: ../fish/guestfish-actions.pod:894
22963 #, no-wrap
22964 msgid ""
22965 " echo-daemon 'words ...'\n"
22966 "\n"
22967 msgstr ""
22968
22969 #. type: textblock
22970 #: ../fish/guestfish-actions.pod:901
22971 msgid "See also L</ping-daemon>."
22972 msgstr ""
22973
22974 #. type: =head2
22975 #: ../fish/guestfish-actions.pod:903
22976 msgid "egrep"
22977 msgstr ""
22978
22979 #. type: verbatim
22980 #: ../fish/guestfish-actions.pod:905
22981 #, no-wrap
22982 msgid ""
22983 " egrep regex path\n"
22984 "\n"
22985 msgstr ""
22986
22987 #. type: =head2
22988 #: ../fish/guestfish-actions.pod:913
22989 msgid "egrepi"
22990 msgstr ""
22991
22992 #. type: verbatim
22993 #: ../fish/guestfish-actions.pod:915
22994 #, no-wrap
22995 msgid ""
22996 " egrepi regex path\n"
22997 "\n"
22998 msgstr ""
22999
23000 #. type: =head2
23001 #: ../fish/guestfish-actions.pod:923
23002 msgid "equal"
23003 msgstr ""
23004
23005 #. type: verbatim
23006 #: ../fish/guestfish-actions.pod:925
23007 #, no-wrap
23008 msgid ""
23009 " equal file1 file2\n"
23010 "\n"
23011 msgstr ""
23012
23013 #. type: =head2
23014 #: ../fish/guestfish-actions.pod:932
23015 msgid "exists"
23016 msgstr ""
23017
23018 #. type: verbatim
23019 #: ../fish/guestfish-actions.pod:934
23020 #, no-wrap
23021 msgid ""
23022 " exists path\n"
23023 "\n"
23024 msgstr ""
23025
23026 #. type: textblock
23027 #: ../fish/guestfish-actions.pod:939
23028 msgid "See also L</is-file>, L</is-dir>, L</stat>."
23029 msgstr ""
23030
23031 #. type: =head2
23032 #: ../fish/guestfish-actions.pod:941
23033 msgid "fallocate"
23034 msgstr ""
23035
23036 #. type: verbatim
23037 #: ../fish/guestfish-actions.pod:943
23038 #, no-wrap
23039 msgid ""
23040 " fallocate path len\n"
23041 "\n"
23042 msgstr ""
23043
23044 #. type: =head2
23045 #: ../fish/guestfish-actions.pod:960
23046 msgid "fallocate64"
23047 msgstr ""
23048
23049 #. type: verbatim
23050 #: ../fish/guestfish-actions.pod:962
23051 #, no-wrap
23052 msgid ""
23053 " fallocate64 path len\n"
23054 "\n"
23055 msgstr ""
23056
23057 #. type: textblock
23058 #: ../fish/guestfish-actions.pod:968
23059 msgid ""
23060 "Note that this call allocates disk blocks for the file.  To create a sparse "
23061 "file use L</truncate-size> instead."
23062 msgstr ""
23063
23064 #. type: textblock
23065 #: ../fish/guestfish-actions.pod:971
23066 msgid ""
23067 "The deprecated call L</fallocate> does the same, but owing to an oversight "
23068 "it only allowed 30 bit lengths to be specified, effectively limiting the "
23069 "maximum size of files created through that call to 1GB."
23070 msgstr ""
23071
23072 #. type: =head2
23073 #: ../fish/guestfish-actions.pod:980
23074 msgid "fgrep"
23075 msgstr ""
23076
23077 #. type: verbatim
23078 #: ../fish/guestfish-actions.pod:982
23079 #, no-wrap
23080 msgid ""
23081 " fgrep pattern path\n"
23082 "\n"
23083 msgstr ""
23084
23085 #. type: =head2
23086 #: ../fish/guestfish-actions.pod:990
23087 msgid "fgrepi"
23088 msgstr ""
23089
23090 #. type: verbatim
23091 #: ../fish/guestfish-actions.pod:992
23092 #, no-wrap
23093 msgid ""
23094 " fgrepi pattern path\n"
23095 "\n"
23096 msgstr ""
23097
23098 #. type: =head2
23099 #: ../fish/guestfish-actions.pod:1000
23100 msgid "file"
23101 msgstr ""
23102
23103 #. type: verbatim
23104 #: ../fish/guestfish-actions.pod:1002
23105 #, no-wrap
23106 msgid ""
23107 " file path\n"
23108 "\n"
23109 msgstr ""
23110
23111 #. type: textblock
23112 #: ../fish/guestfish-actions.pod:1018
23113 msgid ""
23114 "See also: L<file(1)>, L</vfs-type>, L</lstat>, L</is-file>, L</is-blockdev> "
23115 "(etc)."
23116 msgstr ""
23117
23118 #. type: =head2
23119 #: ../fish/guestfish-actions.pod:1021
23120 msgid "file-architecture"
23121 msgstr ""
23122
23123 #. type: verbatim
23124 #: ../fish/guestfish-actions.pod:1023
23125 #, no-wrap
23126 msgid ""
23127 " file-architecture filename\n"
23128 "\n"
23129 msgstr ""
23130
23131 #. type: =head2
23132 #: ../fish/guestfish-actions.pod:1126
23133 msgid "filesize"
23134 msgstr ""
23135
23136 #. type: verbatim
23137 #: ../fish/guestfish-actions.pod:1128
23138 #, no-wrap
23139 msgid ""
23140 " filesize file\n"
23141 "\n"
23142 msgstr ""
23143
23144 #. type: textblock
23145 #: ../fish/guestfish-actions.pod:1132
23146 msgid ""
23147 "To get other stats about a file, use L</stat>, L</lstat>, L</is-dir>, L</is-"
23148 "file> etc.  To get the size of block devices, use L</blockdev-getsize64>."
23149 msgstr ""
23150
23151 #. type: =head2
23152 #: ../fish/guestfish-actions.pod:1136
23153 msgid "fill"
23154 msgstr ""
23155
23156 #. type: verbatim
23157 #: ../fish/guestfish-actions.pod:1138
23158 #, no-wrap
23159 msgid ""
23160 " fill c len path\n"
23161 "\n"
23162 msgstr ""
23163
23164 #. type: textblock
23165 #: ../fish/guestfish-actions.pod:1144
23166 msgid ""
23167 "To fill a file with zero bytes (sparsely), it is much more efficient to use "
23168 "L</truncate-size>.  To create a file with a pattern of repeating bytes use "
23169 "L</fill-pattern>."
23170 msgstr ""
23171
23172 #. type: =head2
23173 #: ../fish/guestfish-actions.pod:1149
23174 msgid "fill-pattern"
23175 msgstr ""
23176
23177 #. type: verbatim
23178 #: ../fish/guestfish-actions.pod:1151
23179 #, no-wrap
23180 msgid ""
23181 " fill-pattern pattern len path\n"
23182 "\n"
23183 msgstr ""
23184
23185 #. type: textblock
23186 #: ../fish/guestfish-actions.pod:1153
23187 msgid ""
23188 "This function is like L</fill> except that it creates a new file of length "
23189 "C<len> containing the repeating pattern of bytes in C<pattern>.  The pattern "
23190 "is truncated if necessary to ensure the length of the file is exactly C<len> "
23191 "bytes."
23192 msgstr ""
23193
23194 #. type: =head2
23195 #: ../fish/guestfish-actions.pod:1158
23196 msgid "find"
23197 msgstr ""
23198
23199 #. type: verbatim
23200 #: ../fish/guestfish-actions.pod:1160
23201 #, no-wrap
23202 msgid ""
23203 " find directory\n"
23204 "\n"
23205 msgstr ""
23206
23207 #. type: textblock
23208 #: ../fish/guestfish-actions.pod:1174
23209 msgid "then the returned list from L</find> C</tmp> would be 4 elements:"
23210 msgstr ""
23211
23212 #. type: textblock
23213 #: ../fish/guestfish-actions.pod:1187
23214 msgid "See also L</find0>."
23215 msgstr ""
23216
23217 #. type: =head2
23218 #: ../fish/guestfish-actions.pod:1192
23219 msgid "find0"
23220 msgstr ""
23221
23222 #. type: verbatim
23223 #: ../fish/guestfish-actions.pod:1194
23224 #, no-wrap
23225 msgid ""
23226 " find0 directory (files|-)\n"
23227 "\n"
23228 msgstr ""
23229
23230 #. type: textblock
23231 #: ../fish/guestfish-actions.pod:1200
23232 msgid ""
23233 "This command works the same way as L</find> with the following exceptions:"
23234 msgstr ""
23235
23236 #. type: =head2
23237 #: ../fish/guestfish-actions.pod:1227
23238 msgid "findfs-label"
23239 msgstr ""
23240
23241 #. type: verbatim
23242 #: ../fish/guestfish-actions.pod:1229
23243 #, no-wrap
23244 msgid ""
23245 " findfs-label label\n"
23246 "\n"
23247 msgstr ""
23248
23249 #. type: textblock
23250 #: ../fish/guestfish-actions.pod:1235
23251 msgid "To find the label of a filesystem, use L</vfs-label>."
23252 msgstr ""
23253
23254 #. type: =head2
23255 #: ../fish/guestfish-actions.pod:1237
23256 msgid "findfs-uuid"
23257 msgstr ""
23258
23259 #. type: verbatim
23260 #: ../fish/guestfish-actions.pod:1239
23261 #, no-wrap
23262 msgid ""
23263 " findfs-uuid uuid\n"
23264 "\n"
23265 msgstr ""
23266
23267 #. type: textblock
23268 #: ../fish/guestfish-actions.pod:1245
23269 msgid "To find the UUID of a filesystem, use L</vfs-uuid>."
23270 msgstr ""
23271
23272 #. type: =head2
23273 #: ../fish/guestfish-actions.pod:1247
23274 msgid "fsck"
23275 msgstr ""
23276
23277 #. type: verbatim
23278 #: ../fish/guestfish-actions.pod:1249
23279 #, no-wrap
23280 msgid ""
23281 " fsck fstype device\n"
23282 "\n"
23283 msgstr ""
23284
23285 #. type: =head2
23286 #: ../fish/guestfish-actions.pod:1279
23287 msgid "get-append"
23288 msgstr ""
23289
23290 #. type: verbatim
23291 #: ../fish/guestfish-actions.pod:1281
23292 #, no-wrap
23293 msgid ""
23294 " get-append\n"
23295 "\n"
23296 msgstr ""
23297
23298 #. type: =head2
23299 #: ../fish/guestfish-actions.pod:1288
23300 msgid "get-attach-method"
23301 msgstr ""
23302
23303 #. type: verbatim
23304 #: ../fish/guestfish-actions.pod:1290
23305 #, no-wrap
23306 msgid ""
23307 " get-attach-method\n"
23308 "\n"
23309 msgstr ""
23310
23311 #. type: textblock
23312 #: ../fish/guestfish-actions.pod:1292
23313 msgid "Return the current attach method.  See L</set-attach-method>."
23314 msgstr ""
23315
23316 #. type: =head2
23317 #: ../fish/guestfish-actions.pod:1294
23318 msgid "get-autosync"
23319 msgstr ""
23320
23321 #. type: verbatim
23322 #: ../fish/guestfish-actions.pod:1296
23323 #, no-wrap
23324 msgid ""
23325 " get-autosync\n"
23326 "\n"
23327 msgstr ""
23328
23329 #. type: =head2
23330 #: ../fish/guestfish-actions.pod:1300
23331 msgid "get-direct"
23332 msgstr ""
23333
23334 #. type: verbatim
23335 #: ../fish/guestfish-actions.pod:1302
23336 #, no-wrap
23337 msgid ""
23338 " get-direct\n"
23339 "\n"
23340 msgstr ""
23341
23342 #. type: =head2
23343 #: ../fish/guestfish-actions.pod:1306
23344 msgid "get-e2label"
23345 msgstr ""
23346
23347 #. type: verbatim
23348 #: ../fish/guestfish-actions.pod:1308
23349 #, no-wrap
23350 msgid ""
23351 " get-e2label device\n"
23352 "\n"
23353 msgstr ""
23354
23355 #. type: =head2
23356 #: ../fish/guestfish-actions.pod:1320
23357 msgid "get-e2uuid"
23358 msgstr ""
23359
23360 #. type: verbatim
23361 #: ../fish/guestfish-actions.pod:1322
23362 #, no-wrap
23363 msgid ""
23364 " get-e2uuid device\n"
23365 "\n"
23366 msgstr ""
23367
23368 #. type: =head2
23369 #: ../fish/guestfish-actions.pod:1334
23370 msgid "get-memsize"
23371 msgstr ""
23372
23373 #. type: verbatim
23374 #: ../fish/guestfish-actions.pod:1336
23375 #, no-wrap
23376 msgid ""
23377 " get-memsize\n"
23378 "\n"
23379 msgstr ""
23380
23381 #. type: textblock
23382 #: ../fish/guestfish-actions.pod:1341
23383 msgid ""
23384 "If L</set-memsize> was not called on this handle, and if "
23385 "C<LIBGUESTFS_MEMSIZE> was not set, then this returns the compiled-in default "
23386 "value for memsize."
23387 msgstr ""
23388
23389 #. type: =head2
23390 #: ../fish/guestfish-actions.pod:1348
23391 msgid "get-network"
23392 msgstr ""
23393
23394 #. type: verbatim
23395 #: ../fish/guestfish-actions.pod:1350
23396 #, no-wrap
23397 msgid ""
23398 " get-network\n"
23399 "\n"
23400 msgstr ""
23401
23402 #. type: =head2
23403 #: ../fish/guestfish-actions.pod:1354
23404 msgid "get-path"
23405 msgstr ""
23406
23407 #. type: verbatim
23408 #: ../fish/guestfish-actions.pod:1356
23409 #, no-wrap
23410 msgid ""
23411 " get-path\n"
23412 "\n"
23413 msgstr ""
23414
23415 #. type: =head2
23416 #: ../fish/guestfish-actions.pod:1363
23417 msgid "get-pid"
23418 msgstr ""
23419
23420 #. type: =head2
23421 #: ../fish/guestfish-actions.pod:1365
23422 msgid "pid"
23423 msgstr ""
23424
23425 #. type: verbatim
23426 #: ../fish/guestfish-actions.pod:1367
23427 #, no-wrap
23428 msgid ""
23429 " get-pid\n"
23430 "\n"
23431 msgstr ""
23432
23433 #. type: =head2
23434 #: ../fish/guestfish-actions.pod:1374
23435 msgid "get-qemu"
23436 msgstr ""
23437
23438 #. type: verbatim
23439 #: ../fish/guestfish-actions.pod:1376
23440 #, no-wrap
23441 msgid ""
23442 " get-qemu\n"
23443 "\n"
23444 msgstr ""
23445
23446 #. type: =head2
23447 #: ../fish/guestfish-actions.pod:1383
23448 msgid "get-recovery-proc"
23449 msgstr ""
23450
23451 #. type: verbatim
23452 #: ../fish/guestfish-actions.pod:1385
23453 #, no-wrap
23454 msgid ""
23455 " get-recovery-proc\n"
23456 "\n"
23457 msgstr ""
23458
23459 #. type: =head2
23460 #: ../fish/guestfish-actions.pod:1389
23461 msgid "get-selinux"
23462 msgstr ""
23463
23464 #. type: verbatim
23465 #: ../fish/guestfish-actions.pod:1391
23466 #, no-wrap
23467 msgid ""
23468 " get-selinux\n"
23469 "\n"
23470 msgstr ""
23471
23472 #. type: textblock
23473 #: ../fish/guestfish-actions.pod:1393
23474 msgid ""
23475 "This returns the current setting of the selinux flag which is passed to the "
23476 "appliance at boot time.  See L</set-selinux>."
23477 msgstr ""
23478
23479 #. type: =head2
23480 #: ../fish/guestfish-actions.pod:1399
23481 msgid "get-state"
23482 msgstr ""
23483
23484 #. type: verbatim
23485 #: ../fish/guestfish-actions.pod:1401
23486 #, no-wrap
23487 msgid ""
23488 " get-state\n"
23489 "\n"
23490 msgstr ""
23491
23492 #. type: =head2
23493 #: ../fish/guestfish-actions.pod:1408
23494 msgid "get-trace"
23495 msgstr ""
23496
23497 #. type: verbatim
23498 #: ../fish/guestfish-actions.pod:1410
23499 #, no-wrap
23500 msgid ""
23501 " get-trace\n"
23502 "\n"
23503 msgstr ""
23504
23505 #. type: =head2
23506 #: ../fish/guestfish-actions.pod:1414
23507 msgid "get-umask"
23508 msgstr ""
23509
23510 #. type: verbatim
23511 #: ../fish/guestfish-actions.pod:1416
23512 #, no-wrap
23513 msgid ""
23514 " get-umask\n"
23515 "\n"
23516 msgstr ""
23517
23518 #. type: textblock
23519 #: ../fish/guestfish-actions.pod:1418
23520 msgid ""
23521 "Return the current umask.  By default the umask is C<022> unless it has been "
23522 "set by calling L</umask>."
23523 msgstr ""
23524
23525 #. type: =head2
23526 #: ../fish/guestfish-actions.pod:1421
23527 msgid "get-verbose"
23528 msgstr ""
23529
23530 #. type: verbatim
23531 #: ../fish/guestfish-actions.pod:1423
23532 #, no-wrap
23533 msgid ""
23534 " get-verbose\n"
23535 "\n"
23536 msgstr ""
23537
23538 #. type: =head2
23539 #: ../fish/guestfish-actions.pod:1427
23540 msgid "getcon"
23541 msgstr ""
23542
23543 #. type: verbatim
23544 #: ../fish/guestfish-actions.pod:1429
23545 #, no-wrap
23546 msgid ""
23547 " getcon\n"
23548 "\n"
23549 msgstr ""
23550
23551 #. type: textblock
23552 #: ../fish/guestfish-actions.pod:1433
23553 msgid "See the documentation about SELINUX in L<guestfs(3)>, and L</setcon>"
23554 msgstr ""
23555
23556 #. type: =head2
23557 #: ../fish/guestfish-actions.pod:1436
23558 msgid "getxattr"
23559 msgstr ""
23560
23561 #. type: verbatim
23562 #: ../fish/guestfish-actions.pod:1438
23563 #, no-wrap
23564 msgid ""
23565 " getxattr path name\n"
23566 "\n"
23567 msgstr ""
23568
23569 #. type: textblock
23570 #: ../fish/guestfish-actions.pod:1440
23571 msgid ""
23572 "Get a single extended attribute from file C<path> named C<name>.  This call "
23573 "follows symlinks.  If you want to lookup an extended attribute for the "
23574 "symlink itself, use L</lgetxattr>."
23575 msgstr ""
23576
23577 #. type: textblock
23578 #: ../fish/guestfish-actions.pod:1444 ../fish/guestfish-actions.pod:2450
23579 msgid ""
23580 "Normally it is better to get all extended attributes from a file in one go "
23581 "by calling L</getxattrs>.  However some Linux filesystem implementations are "
23582 "buggy and do not provide a way to list out attributes.  For these "
23583 "filesystems (notably ntfs-3g)  you have to know the names of the extended "
23584 "attributes you want in advance and call this function."
23585 msgstr ""
23586
23587 #. type: textblock
23588 #: ../fish/guestfish-actions.pod:1454
23589 msgid "See also: L</getxattrs>, L</lgetxattr>, L<attr(5)>."
23590 msgstr ""
23591
23592 #. type: =head2
23593 #: ../fish/guestfish-actions.pod:1456
23594 msgid "getxattrs"
23595 msgstr ""
23596
23597 #. type: verbatim
23598 #: ../fish/guestfish-actions.pod:1458
23599 #, no-wrap
23600 msgid ""
23601 " getxattrs path\n"
23602 "\n"
23603 msgstr ""
23604
23605 #. type: textblock
23606 #: ../fish/guestfish-actions.pod:1466
23607 msgid "See also: L</lgetxattrs>, L<attr(5)>."
23608 msgstr ""
23609
23610 #. type: =head2
23611 #: ../fish/guestfish-actions.pod:1468
23612 msgid "glob-expand"
23613 msgstr ""
23614
23615 #. type: verbatim
23616 #: ../fish/guestfish-actions.pod:1470
23617 #, no-wrap
23618 msgid ""
23619 " glob-expand pattern\n"
23620 "\n"
23621 msgstr ""
23622
23623 #. type: =head2
23624 #: ../fish/guestfish-actions.pod:1483
23625 msgid "grep"
23626 msgstr ""
23627
23628 #. type: verbatim
23629 #: ../fish/guestfish-actions.pod:1485
23630 #, no-wrap
23631 msgid ""
23632 " grep regex path\n"
23633 "\n"
23634 msgstr ""
23635
23636 #. type: =head2
23637 #: ../fish/guestfish-actions.pod:1493
23638 msgid "grepi"
23639 msgstr ""
23640
23641 #. type: verbatim
23642 #: ../fish/guestfish-actions.pod:1495
23643 #, no-wrap
23644 msgid ""
23645 " grepi regex path\n"
23646 "\n"
23647 msgstr ""
23648
23649 #. type: =head2
23650 #: ../fish/guestfish-actions.pod:1503
23651 msgid "grub-install"
23652 msgstr ""
23653
23654 #. type: verbatim
23655 #: ../fish/guestfish-actions.pod:1505
23656 #, no-wrap
23657 msgid ""
23658 " grub-install root device\n"
23659 "\n"
23660 msgstr ""
23661
23662 #. type: =head2
23663 #: ../fish/guestfish-actions.pod:1521
23664 msgid "head"
23665 msgstr ""
23666
23667 #. type: verbatim
23668 #: ../fish/guestfish-actions.pod:1523
23669 #, no-wrap
23670 msgid ""
23671 " head path\n"
23672 "\n"
23673 msgstr ""
23674
23675 #. type: =head2
23676 #: ../fish/guestfish-actions.pod:1531
23677 msgid "head-n"
23678 msgstr ""
23679
23680 #. type: verbatim
23681 #: ../fish/guestfish-actions.pod:1533
23682 #, no-wrap
23683 msgid ""
23684 " head-n nrlines path\n"
23685 "\n"
23686 msgstr ""
23687
23688 #. type: =head2
23689 #: ../fish/guestfish-actions.pod:1546
23690 msgid "hexdump"
23691 msgstr ""
23692
23693 #. type: verbatim
23694 #: ../fish/guestfish-actions.pod:1548
23695 #, no-wrap
23696 msgid ""
23697 " hexdump path\n"
23698 "\n"
23699 msgstr ""
23700
23701 #. type: =head2
23702 #: ../fish/guestfish-actions.pod:1556
23703 msgid "initrd-cat"
23704 msgstr ""
23705
23706 #. type: verbatim
23707 #: ../fish/guestfish-actions.pod:1558
23708 #, no-wrap
23709 msgid ""
23710 " initrd-cat initrdpath filename\n"
23711 "\n"
23712 msgstr ""
23713
23714 #. type: textblock
23715 #: ../fish/guestfish-actions.pod:1570
23716 msgid "See also L</initrd-list>."
23717 msgstr ""
23718
23719 #. type: =head2
23720 #: ../fish/guestfish-actions.pod:1575
23721 msgid "initrd-list"
23722 msgstr ""
23723
23724 #. type: verbatim
23725 #: ../fish/guestfish-actions.pod:1577
23726 #, no-wrap
23727 msgid ""
23728 " initrd-list path\n"
23729 "\n"
23730 msgstr ""
23731
23732 #. type: =head2
23733 #: ../fish/guestfish-actions.pod:1589
23734 msgid "inotify-add-watch"
23735 msgstr ""
23736
23737 #. type: verbatim
23738 #: ../fish/guestfish-actions.pod:1591
23739 #, no-wrap
23740 msgid ""
23741 " inotify-add-watch path mask\n"
23742 "\n"
23743 msgstr ""
23744
23745 #. type: =head2
23746 #: ../fish/guestfish-actions.pod:1603
23747 msgid "inotify-close"
23748 msgstr ""
23749
23750 #. type: verbatim
23751 #: ../fish/guestfish-actions.pod:1605
23752 #, no-wrap
23753 msgid ""
23754 " inotify-close\n"
23755 "\n"
23756 msgstr ""
23757
23758 #. type: =head2
23759 #: ../fish/guestfish-actions.pod:1611
23760 msgid "inotify-files"
23761 msgstr ""
23762
23763 #. type: verbatim
23764 #: ../fish/guestfish-actions.pod:1613
23765 #, no-wrap
23766 msgid ""
23767 " inotify-files\n"
23768 "\n"
23769 msgstr ""
23770
23771 #. type: textblock
23772 #: ../fish/guestfish-actions.pod:1615
23773 msgid ""
23774 "This function is a helpful wrapper around L</inotify-read> which just "
23775 "returns a list of pathnames of objects that were touched.  The returned "
23776 "pathnames are sorted and deduplicated."
23777 msgstr ""
23778
23779 #. type: =head2
23780 #: ../fish/guestfish-actions.pod:1619
23781 msgid "inotify-init"
23782 msgstr ""
23783
23784 #. type: verbatim
23785 #: ../fish/guestfish-actions.pod:1621
23786 #, no-wrap
23787 msgid ""
23788 " inotify-init maxevents\n"
23789 "\n"
23790 msgstr ""
23791
23792 #. type: textblock
23793 #: ../fish/guestfish-actions.pod:1627
23794 msgid ""
23795 "C<maxevents> is the maximum number of events which will be queued up between "
23796 "calls to L</inotify-read> or L</inotify-files>.  If this is passed as C<0>, "
23797 "then the kernel (or previously set)  default is used.  For Linux 2.6.29 the "
23798 "default was 16384 events.  Beyond this limit, the kernel throws away events, "
23799 "but records the fact that it threw them away by setting a flag "
23800 "C<IN_Q_OVERFLOW> in the returned structure list (see L</inotify-read>)."
23801 msgstr ""
23802
23803 #. type: textblock
23804 #: ../fish/guestfish-actions.pod:1637
23805 msgid ""
23806 "Before any events are generated, you have to add some watches to the "
23807 "internal watch list.  See: L</inotify-add-watch>, L</inotify-rm-watch> and "
23808 "L</inotify-watch-all>."
23809 msgstr ""
23810
23811 #. type: textblock
23812 #: ../fish/guestfish-actions.pod:1643
23813 msgid ""
23814 "Queued up events should be read periodically by calling L</inotify-read> (or "
23815 "L</inotify-files> which is just a helpful wrapper around L</inotify-read>).  "
23816 "If you don't read the events out often enough then you risk the internal "
23817 "queue overflowing."
23818 msgstr ""
23819
23820 #. type: textblock
23821 #: ../fish/guestfish-actions.pod:1650
23822 msgid ""
23823 "The handle should be closed after use by calling L</inotify-close>.  This "
23824 "also removes any watches automatically."
23825 msgstr ""
23826
23827 #. type: =head2
23828 #: ../fish/guestfish-actions.pod:1659
23829 msgid "inotify-read"
23830 msgstr ""
23831
23832 #. type: verbatim
23833 #: ../fish/guestfish-actions.pod:1661
23834 #, no-wrap
23835 msgid ""
23836 " inotify-read\n"
23837 "\n"
23838 msgstr ""
23839
23840 #. type: =head2
23841 #: ../fish/guestfish-actions.pod:1674
23842 msgid "inotify-rm-watch"
23843 msgstr ""
23844
23845 #. type: verbatim
23846 #: ../fish/guestfish-actions.pod:1676
23847 #, no-wrap
23848 msgid ""
23849 " inotify-rm-watch wd\n"
23850 "\n"
23851 msgstr ""
23852
23853 #. type: textblock
23854 #: ../fish/guestfish-actions.pod:1678
23855 msgid "Remove a previously defined inotify watch.  See L</inotify-add-watch>."
23856 msgstr ""
23857
23858 #. type: =head2
23859 #: ../fish/guestfish-actions.pod:1681
23860 msgid "inspect-get-arch"
23861 msgstr ""
23862
23863 #. type: verbatim
23864 #: ../fish/guestfish-actions.pod:1683
23865 #, no-wrap
23866 msgid ""
23867 " inspect-get-arch root\n"
23868 "\n"
23869 msgstr ""
23870
23871 #. type: textblock
23872 #: ../fish/guestfish-actions.pod:1685 ../fish/guestfish-actions.pod:1701
23873 #: ../fish/guestfish-actions.pod:1787 ../fish/guestfish-actions.pod:1823
23874 #: ../fish/guestfish-actions.pod:1841 ../fish/guestfish-actions.pod:1875
23875 #: ../fish/guestfish-actions.pod:1890 ../fish/guestfish-actions.pod:1911
23876 #: ../fish/guestfish-actions.pod:1926 ../fish/guestfish-actions.pod:1959
23877 #: ../fish/guestfish-actions.pod:1981 ../fish/guestfish-actions.pod:2005
23878 #: ../fish/guestfish-actions.pod:2022 ../fish/guestfish-actions.pod:2065
23879 #: ../fish/guestfish-actions.pod:2100 ../fish/guestfish-actions.pod:2116
23880 #: ../fish/guestfish-actions.pod:2132 ../fish/guestfish-actions.pod:2145
23881 #: ../fish/guestfish-actions.pod:2158 ../fish/guestfish-actions.pod:2173
23882 msgid ""
23883 "This function should only be called with a root device string as returned by "
23884 "L</inspect-os>."
23885 msgstr ""
23886
23887 #. type: textblock
23888 #: ../fish/guestfish-actions.pod:1688
23889 msgid ""
23890 "This returns the architecture of the inspected operating system.  The "
23891 "possible return values are listed under L</file-architecture>."
23892 msgstr ""
23893
23894 #. type: =head2
23895 #: ../fish/guestfish-actions.pod:1697
23896 msgid "inspect-get-distro"
23897 msgstr ""
23898
23899 #. type: verbatim
23900 #: ../fish/guestfish-actions.pod:1699
23901 #, no-wrap
23902 msgid ""
23903 " inspect-get-distro root\n"
23904 "\n"
23905 msgstr ""
23906
23907 #. type: =head2
23908 #: ../fish/guestfish-actions.pod:1783
23909 msgid "inspect-get-drive-mappings"
23910 msgstr ""
23911
23912 #. type: verbatim
23913 #: ../fish/guestfish-actions.pod:1785
23914 #, no-wrap
23915 msgid ""
23916 " inspect-get-drive-mappings root\n"
23917 "\n"
23918 msgstr ""
23919
23920 #. type: textblock
23921 #: ../fish/guestfish-actions.pod:1815
23922 msgid ""
23923 "Please read L<guestfs(3)/INSPECTION> for more details.  See also L</inspect-"
23924 "get-mountpoints>, L</inspect-get-filesystems>."
23925 msgstr ""
23926
23927 #. type: =head2
23928 #: ../fish/guestfish-actions.pod:1819
23929 msgid "inspect-get-filesystems"
23930 msgstr ""
23931
23932 #. type: verbatim
23933 #: ../fish/guestfish-actions.pod:1821
23934 #, no-wrap
23935 msgid ""
23936 " inspect-get-filesystems root\n"
23937 "\n"
23938 msgstr ""
23939
23940 #. type: textblock
23941 #: ../fish/guestfish-actions.pod:1834
23942 msgid ""
23943 "Please read L<guestfs(3)/INSPECTION> for more details.  See also L</inspect-"
23944 "get-mountpoints>."
23945 msgstr ""
23946
23947 #. type: =head2
23948 #: ../fish/guestfish-actions.pod:1837
23949 msgid "inspect-get-format"
23950 msgstr ""
23951
23952 #. type: verbatim
23953 #: ../fish/guestfish-actions.pod:1839
23954 #, no-wrap
23955 msgid ""
23956 " inspect-get-format root\n"
23957 "\n"
23958 msgstr ""
23959
23960 #. type: =head2
23961 #: ../fish/guestfish-actions.pod:1871
23962 msgid "inspect-get-hostname"
23963 msgstr ""
23964
23965 #. type: verbatim
23966 #: ../fish/guestfish-actions.pod:1873
23967 #, no-wrap
23968 msgid ""
23969 " inspect-get-hostname root\n"
23970 "\n"
23971 msgstr ""
23972
23973 #. type: =head2
23974 #: ../fish/guestfish-actions.pod:1886
23975 msgid "inspect-get-major-version"
23976 msgstr ""
23977
23978 #. type: verbatim
23979 #: ../fish/guestfish-actions.pod:1888
23980 #, no-wrap
23981 msgid ""
23982 " inspect-get-major-version root\n"
23983 "\n"
23984 msgstr ""
23985
23986 #. type: =head2
23987 #: ../fish/guestfish-actions.pod:1907
23988 msgid "inspect-get-minor-version"
23989 msgstr ""
23990
23991 #. type: verbatim
23992 #: ../fish/guestfish-actions.pod:1909
23993 #, no-wrap
23994 msgid ""
23995 " inspect-get-minor-version root\n"
23996 "\n"
23997 msgstr ""
23998
23999 #. type: textblock
24000 #: ../fish/guestfish-actions.pod:1919
24001 msgid ""
24002 "Please read L<guestfs(3)/INSPECTION> for more details.  See also L</inspect-"
24003 "get-major-version>."
24004 msgstr ""
24005
24006 #. type: =head2
24007 #: ../fish/guestfish-actions.pod:1922
24008 msgid "inspect-get-mountpoints"
24009 msgstr ""
24010
24011 #. type: verbatim
24012 #: ../fish/guestfish-actions.pod:1924
24013 #, no-wrap
24014 msgid ""
24015 " inspect-get-mountpoints root\n"
24016 "\n"
24017 msgstr ""
24018
24019 #. type: textblock
24020 #: ../fish/guestfish-actions.pod:1946
24021 msgid ""
24022 "For operating systems like Windows which still use drive letters, this call "
24023 "will only return an entry for the first drive \"mounted on\" C</>.  For "
24024 "information about the mapping of drive letters to partitions, see L</inspect-"
24025 "get-drive-mappings>."
24026 msgstr ""
24027
24028 #. type: textblock
24029 #: ../fish/guestfish-actions.pod:1952
24030 msgid ""
24031 "Please read L<guestfs(3)/INSPECTION> for more details.  See also L</inspect-"
24032 "get-filesystems>."
24033 msgstr ""
24034
24035 #. type: =head2
24036 #: ../fish/guestfish-actions.pod:1955
24037 msgid "inspect-get-package-format"
24038 msgstr ""
24039
24040 #. type: verbatim
24041 #: ../fish/guestfish-actions.pod:1957
24042 #, no-wrap
24043 msgid ""
24044 " inspect-get-package-format root\n"
24045 "\n"
24046 msgstr ""
24047
24048 #. type: textblock
24049 #: ../fish/guestfish-actions.pod:1962
24050 msgid ""
24051 "This function and L</inspect-get-package-management> return the package "
24052 "format and package management tool used by the inspected operating system.  "
24053 "For example for Fedora these functions would return C<rpm> (package format) "
24054 "and C<yum> (package management)."
24055 msgstr ""
24056
24057 #. type: =head2
24058 #: ../fish/guestfish-actions.pod:1977
24059 msgid "inspect-get-package-management"
24060 msgstr ""
24061
24062 #. type: verbatim
24063 #: ../fish/guestfish-actions.pod:1979
24064 #, no-wrap
24065 msgid ""
24066 " inspect-get-package-management root\n"
24067 "\n"
24068 msgstr ""
24069
24070 #. type: textblock
24071 #: ../fish/guestfish-actions.pod:1984
24072 msgid ""
24073 "L</inspect-get-package-format> and this function return the package format "
24074 "and package management tool used by the inspected operating system.  For "
24075 "example for Fedora these functions would return C<rpm> (package format) and "
24076 "C<yum> (package management)."
24077 msgstr ""
24078
24079 #. type: =head2
24080 #: ../fish/guestfish-actions.pod:2001
24081 msgid "inspect-get-product-name"
24082 msgstr ""
24083
24084 #. type: verbatim
24085 #: ../fish/guestfish-actions.pod:2003
24086 #, no-wrap
24087 msgid ""
24088 " inspect-get-product-name root\n"
24089 "\n"
24090 msgstr ""
24091
24092 #. type: =head2
24093 #: ../fish/guestfish-actions.pod:2018
24094 msgid "inspect-get-product-variant"
24095 msgstr ""
24096
24097 #. type: verbatim
24098 #: ../fish/guestfish-actions.pod:2020
24099 #, no-wrap
24100 msgid ""
24101 " inspect-get-product-variant root\n"
24102 "\n"
24103 msgstr ""
24104
24105 #. type: textblock
24106 #: ../fish/guestfish-actions.pod:2044
24107 msgid ""
24108 "Please read L<guestfs(3)/INSPECTION> for more details.  See also L</inspect-"
24109 "get-product-name>, L</inspect-get-major-version>."
24110 msgstr ""
24111
24112 #. type: =head2
24113 #: ../fish/guestfish-actions.pod:2048
24114 msgid "inspect-get-roots"
24115 msgstr ""
24116
24117 #. type: verbatim
24118 #: ../fish/guestfish-actions.pod:2050
24119 #, no-wrap
24120 msgid ""
24121 " inspect-get-roots\n"
24122 "\n"
24123 msgstr ""
24124
24125 #. type: textblock
24126 #: ../fish/guestfish-actions.pod:2052
24127 msgid ""
24128 "This function is a convenient way to get the list of root devices, as "
24129 "returned from a previous call to L</inspect-os>, but without redoing the "
24130 "whole inspection process."
24131 msgstr ""
24132
24133 #. type: textblock
24134 #: ../fish/guestfish-actions.pod:2056
24135 msgid ""
24136 "This returns an empty list if either no root devices were found or the "
24137 "caller has not called L</inspect-os>."
24138 msgstr ""
24139
24140 #. type: =head2
24141 #: ../fish/guestfish-actions.pod:2061
24142 msgid "inspect-get-type"
24143 msgstr ""
24144
24145 #. type: verbatim
24146 #: ../fish/guestfish-actions.pod:2063
24147 #, no-wrap
24148 msgid ""
24149 " inspect-get-type root\n"
24150 "\n"
24151 msgstr ""
24152
24153 #. type: =head2
24154 #: ../fish/guestfish-actions.pod:2096
24155 msgid "inspect-get-windows-current-control-set"
24156 msgstr ""
24157
24158 #. type: verbatim
24159 #: ../fish/guestfish-actions.pod:2098
24160 #, no-wrap
24161 msgid ""
24162 " inspect-get-windows-current-control-set root\n"
24163 "\n"
24164 msgstr ""
24165
24166 #. type: =head2
24167 #: ../fish/guestfish-actions.pod:2112
24168 msgid "inspect-get-windows-systemroot"
24169 msgstr ""
24170
24171 #. type: verbatim
24172 #: ../fish/guestfish-actions.pod:2114
24173 #, no-wrap
24174 msgid ""
24175 " inspect-get-windows-systemroot root\n"
24176 "\n"
24177 msgstr ""
24178
24179 #. type: =head2
24180 #: ../fish/guestfish-actions.pod:2128
24181 msgid "inspect-is-live"
24182 msgstr ""
24183
24184 #. type: verbatim
24185 #: ../fish/guestfish-actions.pod:2130
24186 #, no-wrap
24187 msgid ""
24188 " inspect-is-live root\n"
24189 "\n"
24190 msgstr ""
24191
24192 #. type: textblock
24193 #: ../fish/guestfish-actions.pod:2135
24194 msgid ""
24195 "If L</inspect-get-format> returns C<installer> (this is an install disk), "
24196 "then this returns true if a live image was detected on the disk."
24197 msgstr ""
24198
24199 #. type: =head2
24200 #: ../fish/guestfish-actions.pod:2141
24201 msgid "inspect-is-multipart"
24202 msgstr ""
24203
24204 #. type: verbatim
24205 #: ../fish/guestfish-actions.pod:2143
24206 #, no-wrap
24207 msgid ""
24208 " inspect-is-multipart root\n"
24209 "\n"
24210 msgstr ""
24211
24212 #. type: textblock
24213 #: ../fish/guestfish-actions.pod:2148
24214 msgid ""
24215 "If L</inspect-get-format> returns C<installer> (this is an install disk), "
24216 "then this returns true if the disk is part of a set."
24217 msgstr ""
24218
24219 #. type: =head2
24220 #: ../fish/guestfish-actions.pod:2154
24221 msgid "inspect-is-netinst"
24222 msgstr ""
24223
24224 #. type: verbatim
24225 #: ../fish/guestfish-actions.pod:2156
24226 #, no-wrap
24227 msgid ""
24228 " inspect-is-netinst root\n"
24229 "\n"
24230 msgstr ""
24231
24232 #. type: textblock
24233 #: ../fish/guestfish-actions.pod:2161
24234 msgid ""
24235 "If L</inspect-get-format> returns C<installer> (this is an install disk), "
24236 "then this returns true if the disk is a network installer, ie. not a self-"
24237 "contained install CD but one which is likely to require network access to "
24238 "complete the install."
24239 msgstr ""
24240
24241 #. type: =head2
24242 #: ../fish/guestfish-actions.pod:2169
24243 msgid "inspect-list-applications"
24244 msgstr ""
24245
24246 #. type: verbatim
24247 #: ../fish/guestfish-actions.pod:2171
24248 #, no-wrap
24249 msgid ""
24250 " inspect-list-applications root\n"
24251 "\n"
24252 msgstr ""
24253
24254 #. type: textblock
24255 #: ../fish/guestfish-actions.pod:2178
24256 msgid ""
24257 "I<Note:> This call works differently from other parts of the inspection "
24258 "API.  You have to call L</inspect-os>, then L</inspect-get-mountpoints>, "
24259 "then mount up the disks, before calling this.  Listing applications is a "
24260 "significantly more difficult operation which requires access to the full "
24261 "filesystem.  Also note that unlike the other L</inspect-get-*> calls which "
24262 "are just returning data cached in the libguestfs handle, this call actually "
24263 "reads parts of the mounted filesystems during the call."
24264 msgstr ""
24265
24266 #. type: =head2
24267 #: ../fish/guestfish-actions.pod:2268
24268 msgid "inspect-os"
24269 msgstr ""
24270
24271 #. type: verbatim
24272 #: ../fish/guestfish-actions.pod:2270
24273 #, no-wrap
24274 msgid ""
24275 " inspect-os\n"
24276 "\n"
24277 msgstr ""
24278
24279 #. type: textblock
24280 #: ../fish/guestfish-actions.pod:2285
24281 msgid ""
24282 "You can pass the root string(s) returned to other L</inspect-get-*> "
24283 "functions in order to query further information about each operating system, "
24284 "such as the name and version."
24285 msgstr ""
24286
24287 #. type: textblock
24288 #: ../fish/guestfish-actions.pod:2290
24289 msgid ""
24290 "This function uses other libguestfs features such as L</mount-ro> and L</"
24291 "umount-all> in order to mount and unmount filesystems and look at the "
24292 "contents.  This should be called with no disks currently mounted.  The "
24293 "function may also use Augeas, so any existing Augeas handle will be closed."
24294 msgstr ""
24295
24296 #. type: textblock
24297 #: ../fish/guestfish-actions.pod:2302 ../fish/guestfish-actions.pod:2478
24298 #: ../fish/guestfish-actions.pod:2524
24299 msgid "See also L</list-filesystems>."
24300 msgstr ""
24301
24302 #. type: =head2
24303 #: ../fish/guestfish-actions.pod:2304
24304 msgid "is-blockdev"
24305 msgstr ""
24306
24307 #. type: verbatim
24308 #: ../fish/guestfish-actions.pod:2306
24309 #, no-wrap
24310 msgid ""
24311 " is-blockdev path\n"
24312 "\n"
24313 msgstr ""
24314
24315 #. type: textblock
24316 #: ../fish/guestfish-actions.pod:2311 ../fish/guestfish-actions.pod:2329
24317 #: ../fish/guestfish-actions.pod:2348 ../fish/guestfish-actions.pod:2357
24318 #: ../fish/guestfish-actions.pod:2367 ../fish/guestfish-actions.pod:2401
24319 #: ../fish/guestfish-actions.pod:2410
24320 msgid "See also L</stat>."
24321 msgstr ""
24322
24323 #. type: =head2
24324 #: ../fish/guestfish-actions.pod:2313
24325 msgid "is-busy"
24326 msgstr ""
24327
24328 #. type: verbatim
24329 #: ../fish/guestfish-actions.pod:2315
24330 #, no-wrap
24331 msgid ""
24332 " is-busy\n"
24333 "\n"
24334 msgstr ""
24335
24336 #. type: =head2
24337 #: ../fish/guestfish-actions.pod:2322
24338 msgid "is-chardev"
24339 msgstr ""
24340
24341 #. type: verbatim
24342 #: ../fish/guestfish-actions.pod:2324
24343 #, no-wrap
24344 msgid ""
24345 " is-chardev path\n"
24346 "\n"
24347 msgstr ""
24348
24349 #. type: =head2
24350 #: ../fish/guestfish-actions.pod:2331
24351 msgid "is-config"
24352 msgstr ""
24353
24354 #. type: verbatim
24355 #: ../fish/guestfish-actions.pod:2333
24356 #, no-wrap
24357 msgid ""
24358 " is-config\n"
24359 "\n"
24360 msgstr ""
24361
24362 #. type: =head2
24363 #: ../fish/guestfish-actions.pod:2340
24364 msgid "is-dir"
24365 msgstr ""
24366
24367 #. type: verbatim
24368 #: ../fish/guestfish-actions.pod:2342
24369 #, no-wrap
24370 msgid ""
24371 " is-dir path\n"
24372 "\n"
24373 msgstr ""
24374
24375 #. type: =head2
24376 #: ../fish/guestfish-actions.pod:2350
24377 msgid "is-fifo"
24378 msgstr ""
24379
24380 #. type: verbatim
24381 #: ../fish/guestfish-actions.pod:2352
24382 #, no-wrap
24383 msgid ""
24384 " is-fifo path\n"
24385 "\n"
24386 msgstr ""
24387
24388 #. type: =head2
24389 #: ../fish/guestfish-actions.pod:2359
24390 msgid "is-file"
24391 msgstr ""
24392
24393 #. type: verbatim
24394 #: ../fish/guestfish-actions.pod:2361
24395 #, no-wrap
24396 msgid ""
24397 " is-file path\n"
24398 "\n"
24399 msgstr ""
24400
24401 #. type: =head2
24402 #: ../fish/guestfish-actions.pod:2369
24403 msgid "is-launching"
24404 msgstr ""
24405
24406 #. type: verbatim
24407 #: ../fish/guestfish-actions.pod:2371
24408 #, no-wrap
24409 msgid ""
24410 " is-launching\n"
24411 "\n"
24412 msgstr ""
24413
24414 #. type: =head2
24415 #: ../fish/guestfish-actions.pod:2378
24416 msgid "is-lv"
24417 msgstr ""
24418
24419 #. type: verbatim
24420 #: ../fish/guestfish-actions.pod:2380
24421 #, no-wrap
24422 msgid ""
24423 " is-lv device\n"
24424 "\n"
24425 msgstr ""
24426
24427 #. type: =head2
24428 #: ../fish/guestfish-actions.pod:2385
24429 msgid "is-ready"
24430 msgstr ""
24431
24432 #. type: verbatim
24433 #: ../fish/guestfish-actions.pod:2387
24434 #, no-wrap
24435 msgid ""
24436 " is-ready\n"
24437 "\n"
24438 msgstr ""
24439
24440 #. type: =head2
24441 #: ../fish/guestfish-actions.pod:2394
24442 msgid "is-socket"
24443 msgstr ""
24444
24445 #. type: verbatim
24446 #: ../fish/guestfish-actions.pod:2396
24447 #, no-wrap
24448 msgid ""
24449 " is-socket path\n"
24450 "\n"
24451 msgstr ""
24452
24453 #. type: =head2
24454 #: ../fish/guestfish-actions.pod:2403
24455 msgid "is-symlink"
24456 msgstr ""
24457
24458 #. type: verbatim
24459 #: ../fish/guestfish-actions.pod:2405
24460 #, no-wrap
24461 msgid ""
24462 " is-symlink path\n"
24463 "\n"
24464 msgstr ""
24465
24466 #. type: =head2
24467 #: ../fish/guestfish-actions.pod:2412
24468 msgid "kill-subprocess"
24469 msgstr ""
24470
24471 #. type: verbatim
24472 #: ../fish/guestfish-actions.pod:2414
24473 #, no-wrap
24474 msgid ""
24475 " kill-subprocess\n"
24476 "\n"
24477 msgstr ""
24478
24479 #. type: =head2
24480 #: ../fish/guestfish-actions.pod:2418
24481 msgid "launch"
24482 msgstr ""
24483
24484 #. type: =head2
24485 #: ../fish/guestfish-actions.pod:2420
24486 msgid "run"
24487 msgstr ""
24488
24489 #. type: verbatim
24490 #: ../fish/guestfish-actions.pod:2422
24491 #, no-wrap
24492 msgid ""
24493 " launch\n"
24494 "\n"
24495 msgstr ""
24496
24497 #. type: =head2
24498 #: ../fish/guestfish-actions.pod:2430
24499 msgid "lchown"
24500 msgstr ""
24501
24502 #. type: verbatim
24503 #: ../fish/guestfish-actions.pod:2432
24504 #, no-wrap
24505 msgid ""
24506 " lchown owner group path\n"
24507 "\n"
24508 msgstr ""
24509
24510 #. type: textblock
24511 #: ../fish/guestfish-actions.pod:2434
24512 msgid ""
24513 "Change the file owner to C<owner> and group to C<group>.  This is like L</"
24514 "chown> but if C<path> is a symlink then the link itself is changed, not the "
24515 "target."
24516 msgstr ""
24517
24518 #. type: =head2
24519 #: ../fish/guestfish-actions.pod:2442
24520 msgid "lgetxattr"
24521 msgstr ""
24522
24523 #. type: verbatim
24524 #: ../fish/guestfish-actions.pod:2444
24525 #, no-wrap
24526 msgid ""
24527 " lgetxattr path name\n"
24528 "\n"
24529 msgstr ""
24530
24531 #. type: textblock
24532 #: ../fish/guestfish-actions.pod:2460
24533 msgid "See also: L</lgetxattrs>, L</getxattr>, L<attr(5)>."
24534 msgstr ""
24535
24536 #. type: =head2
24537 #: ../fish/guestfish-actions.pod:2462
24538 msgid "lgetxattrs"
24539 msgstr ""
24540
24541 #. type: verbatim
24542 #: ../fish/guestfish-actions.pod:2464
24543 #, no-wrap
24544 msgid ""
24545 " lgetxattrs path\n"
24546 "\n"
24547 msgstr ""
24548
24549 #. type: textblock
24550 #: ../fish/guestfish-actions.pod:2466
24551 msgid ""
24552 "This is the same as L</getxattrs>, but if C<path> is a symbolic link, then "
24553 "it returns the extended attributes of the link itself."
24554 msgstr ""
24555
24556 #. type: =head2
24557 #: ../fish/guestfish-actions.pod:2470
24558 msgid "list-devices"
24559 msgstr ""
24560
24561 #. type: verbatim
24562 #: ../fish/guestfish-actions.pod:2472
24563 #, no-wrap
24564 msgid ""
24565 " list-devices\n"
24566 "\n"
24567 msgstr ""
24568
24569 #. type: =head2
24570 #: ../fish/guestfish-actions.pod:2480
24571 msgid "list-filesystems"
24572 msgstr ""
24573
24574 #. type: verbatim
24575 #: ../fish/guestfish-actions.pod:2482
24576 #, no-wrap
24577 msgid ""
24578 " list-filesystems\n"
24579 "\n"
24580 msgstr ""
24581
24582 #. type: textblock
24583 #: ../fish/guestfish-actions.pod:2501
24584 msgid ""
24585 "This command runs other libguestfs commands, which might include L</mount> "
24586 "and L</umount>, and therefore you should use this soon after launch and only "
24587 "when nothing is mounted."
24588 msgstr ""
24589
24590 #. type: textblock
24591 #: ../fish/guestfish-actions.pod:2505
24592 msgid ""
24593 "Not all of the filesystems returned will be mountable.  In particular, swap "
24594 "partitions are returned in the list.  Also this command does not check that "
24595 "each filesystem found is valid and mountable, and some filesystems might be "
24596 "mountable but require special options.  Filesystems may not all belong to a "
24597 "single logical operating system (use L</inspect-os> to look for OSes)."
24598 msgstr ""
24599
24600 #. type: =head2
24601 #: ../fish/guestfish-actions.pod:2513
24602 msgid "list-partitions"
24603 msgstr ""
24604
24605 #. type: verbatim
24606 #: ../fish/guestfish-actions.pod:2515
24607 #, no-wrap
24608 msgid ""
24609 " list-partitions\n"
24610 "\n"
24611 msgstr ""
24612
24613 #. type: textblock
24614 #: ../fish/guestfish-actions.pod:2521
24615 msgid ""
24616 "This does not return logical volumes.  For that you will need to call L</"
24617 "lvs>."
24618 msgstr ""
24619
24620 #. type: =head2
24621 #: ../fish/guestfish-actions.pod:2526
24622 msgid "ll"
24623 msgstr ""
24624
24625 #. type: verbatim
24626 #: ../fish/guestfish-actions.pod:2528
24627 #, no-wrap
24628 msgid ""
24629 " ll directory\n"
24630 "\n"
24631 msgstr ""
24632
24633 #. type: =head2
24634 #: ../fish/guestfish-actions.pod:2536
24635 msgid "ln"
24636 msgstr ""
24637
24638 #. type: verbatim
24639 #: ../fish/guestfish-actions.pod:2538
24640 #, no-wrap
24641 msgid ""
24642 " ln target linkname\n"
24643 "\n"
24644 msgstr ""
24645
24646 #. type: =head2
24647 #: ../fish/guestfish-actions.pod:2542
24648 msgid "ln-f"
24649 msgstr ""
24650
24651 #. type: verbatim
24652 #: ../fish/guestfish-actions.pod:2544
24653 #, no-wrap
24654 msgid ""
24655 " ln-f target linkname\n"
24656 "\n"
24657 msgstr ""
24658
24659 #. type: =head2
24660 #: ../fish/guestfish-actions.pod:2549
24661 msgid "ln-s"
24662 msgstr ""
24663
24664 #. type: verbatim
24665 #: ../fish/guestfish-actions.pod:2551
24666 #, no-wrap
24667 msgid ""
24668 " ln-s target linkname\n"
24669 "\n"
24670 msgstr ""
24671
24672 #. type: =head2
24673 #: ../fish/guestfish-actions.pod:2555
24674 msgid "ln-sf"
24675 msgstr ""
24676
24677 #. type: verbatim
24678 #: ../fish/guestfish-actions.pod:2557
24679 #, no-wrap
24680 msgid ""
24681 " ln-sf target linkname\n"
24682 "\n"
24683 msgstr ""
24684
24685 #. type: =head2
24686 #: ../fish/guestfish-actions.pod:2562
24687 msgid "lremovexattr"
24688 msgstr ""
24689
24690 #. type: verbatim
24691 #: ../fish/guestfish-actions.pod:2564
24692 #, no-wrap
24693 msgid ""
24694 " lremovexattr xattr path\n"
24695 "\n"
24696 msgstr ""
24697
24698 #. type: textblock
24699 #: ../fish/guestfish-actions.pod:2566
24700 msgid ""
24701 "This is the same as L</removexattr>, but if C<path> is a symbolic link, then "
24702 "it removes an extended attribute of the link itself."
24703 msgstr ""
24704
24705 #. type: =head2
24706 #: ../fish/guestfish-actions.pod:2570
24707 msgid "ls"
24708 msgstr ""
24709
24710 #. type: verbatim
24711 #: ../fish/guestfish-actions.pod:2572
24712 #, no-wrap
24713 msgid ""
24714 " ls directory\n"
24715 "\n"
24716 msgstr ""
24717
24718 #. type: textblock
24719 #: ../fish/guestfish-actions.pod:2578
24720 msgid ""
24721 "This command is mostly useful for interactive sessions.  Programs should "
24722 "probably use L</readdir> instead."
24723 msgstr ""
24724
24725 #. type: =head2
24726 #: ../fish/guestfish-actions.pod:2581
24727 msgid "lsetxattr"
24728 msgstr ""
24729
24730 #. type: verbatim
24731 #: ../fish/guestfish-actions.pod:2583
24732 #, no-wrap
24733 msgid ""
24734 " lsetxattr xattr val vallen path\n"
24735 "\n"
24736 msgstr ""
24737
24738 #. type: textblock
24739 #: ../fish/guestfish-actions.pod:2585
24740 msgid ""
24741 "This is the same as L</setxattr>, but if C<path> is a symbolic link, then it "
24742 "sets an extended attribute of the link itself."
24743 msgstr ""
24744
24745 #. type: =head2
24746 #: ../fish/guestfish-actions.pod:2589
24747 msgid "lstat"
24748 msgstr ""
24749
24750 #. type: verbatim
24751 #: ../fish/guestfish-actions.pod:2591
24752 #, no-wrap
24753 msgid ""
24754 " lstat path\n"
24755 "\n"
24756 msgstr ""
24757
24758 #. type: textblock
24759 #: ../fish/guestfish-actions.pod:2595
24760 msgid ""
24761 "This is the same as L</stat> except that if C<path> is a symbolic link, then "
24762 "the link is stat-ed, not the file it refers to."
24763 msgstr ""
24764
24765 #. type: =head2
24766 #: ../fish/guestfish-actions.pod:2601
24767 msgid "lstatlist"
24768 msgstr ""
24769
24770 #. type: verbatim
24771 #: ../fish/guestfish-actions.pod:2603
24772 #, no-wrap
24773 msgid ""
24774 " lstatlist path 'names ...'\n"
24775 "\n"
24776 msgstr ""
24777
24778 #. type: textblock
24779 #: ../fish/guestfish-actions.pod:2605
24780 msgid ""
24781 "This call allows you to perform the L</lstat> operation on multiple files, "
24782 "where all files are in the directory C<path>.  C<names> is the list of files "
24783 "from this directory."
24784 msgstr ""
24785
24786 #. type: textblock
24787 #: ../fish/guestfish-actions.pod:2614
24788 msgid ""
24789 "This call is intended for programs that want to efficiently list a directory "
24790 "contents without making many round-trips.  See also L</lxattrlist> for a "
24791 "similarly efficient call for getting extended attributes.  Very long "
24792 "directory listings might cause the protocol message size to be exceeded, "
24793 "causing this call to fail.  The caller must split up such requests into "
24794 "smaller groups of names."
24795 msgstr ""
24796
24797 #. type: =head2
24798 #: ../fish/guestfish-actions.pod:2622
24799 msgid "luks-add-key"
24800 msgstr ""
24801
24802 #. type: verbatim
24803 #: ../fish/guestfish-actions.pod:2624
24804 #, no-wrap
24805 msgid ""
24806 " luks-add-key device keyslot\n"
24807 "\n"
24808 msgstr ""
24809
24810 #. type: textblock
24811 #: ../fish/guestfish-actions.pod:2631
24812 msgid ""
24813 "Note that if C<keyslot> already contains a key, then this command will "
24814 "fail.  You have to use L</luks-kill-slot> first to remove that key."
24815 msgstr ""
24816
24817 #. type: textblock
24818 #: ../fish/guestfish-actions.pod:2635 ../fish/guestfish-actions.pod:2657
24819 #: ../fish/guestfish-actions.pod:2670 ../fish/guestfish-actions.pod:2684
24820 #: ../fish/guestfish-actions.pod:2707 ../fish/guestfish-actions.pod:2717
24821 msgid ""
24822 "This command has one or more key or passphrase parameters.  Guestfish will "
24823 "prompt for these separately."
24824 msgstr ""
24825
24826 #. type: =head2
24827 #: ../fish/guestfish-actions.pod:2638
24828 msgid "luks-close"
24829 msgstr ""
24830
24831 #. type: verbatim
24832 #: ../fish/guestfish-actions.pod:2640
24833 #, no-wrap
24834 msgid ""
24835 " luks-close device\n"
24836 "\n"
24837 msgstr ""
24838
24839 #. type: textblock
24840 #: ../fish/guestfish-actions.pod:2642
24841 msgid ""
24842 "This closes a LUKS device that was created earlier by L</luks-open> or L</"
24843 "luks-open-ro>.  The C<device> parameter must be the name of the LUKS mapping "
24844 "device (ie. C</dev/mapper/mapname>) and I<not> the name of the underlying "
24845 "block device."
24846 msgstr ""
24847
24848 #. type: =head2
24849 #: ../fish/guestfish-actions.pod:2648
24850 msgid "luks-format"
24851 msgstr ""
24852
24853 #. type: verbatim
24854 #: ../fish/guestfish-actions.pod:2650
24855 #, no-wrap
24856 msgid ""
24857 " luks-format device keyslot\n"
24858 "\n"
24859 msgstr ""
24860
24861 #. type: =head2
24862 #: ../fish/guestfish-actions.pod:2663
24863 msgid "luks-format-cipher"
24864 msgstr ""
24865
24866 #. type: verbatim
24867 #: ../fish/guestfish-actions.pod:2665
24868 #, no-wrap
24869 msgid ""
24870 " luks-format-cipher device keyslot cipher\n"
24871 "\n"
24872 msgstr ""
24873
24874 #. type: textblock
24875 #: ../fish/guestfish-actions.pod:2667
24876 msgid ""
24877 "This command is the same as L</luks-format> but it also allows you to set "
24878 "the C<cipher> used."
24879 msgstr ""
24880
24881 #. type: =head2
24882 #: ../fish/guestfish-actions.pod:2676
24883 msgid "luks-kill-slot"
24884 msgstr ""
24885
24886 #. type: verbatim
24887 #: ../fish/guestfish-actions.pod:2678
24888 #, no-wrap
24889 msgid ""
24890 " luks-kill-slot device keyslot\n"
24891 "\n"
24892 msgstr ""
24893
24894 #. type: =head2
24895 #: ../fish/guestfish-actions.pod:2687
24896 msgid "luks-open"
24897 msgstr ""
24898
24899 #. type: verbatim
24900 #: ../fish/guestfish-actions.pod:2689
24901 #, no-wrap
24902 msgid ""
24903 " luks-open device mapname\n"
24904 "\n"
24905 msgstr ""
24906
24907 #. type: textblock
24908 #: ../fish/guestfish-actions.pod:2703
24909 msgid ""
24910 "If this block device contains LVM volume groups, then calling L</vgscan> "
24911 "followed by L</vg-activate-all> will make them visible."
24912 msgstr ""
24913
24914 #. type: =head2
24915 #: ../fish/guestfish-actions.pod:2710
24916 msgid "luks-open-ro"
24917 msgstr ""
24918
24919 #. type: verbatim
24920 #: ../fish/guestfish-actions.pod:2712
24921 #, no-wrap
24922 msgid ""
24923 " luks-open-ro device mapname\n"
24924 "\n"
24925 msgstr ""
24926
24927 #. type: textblock
24928 #: ../fish/guestfish-actions.pod:2714
24929 msgid ""
24930 "This is the same as L</luks-open> except that a read-only mapping is created."
24931 msgstr ""
24932
24933 #. type: =head2
24934 #: ../fish/guestfish-actions.pod:2720
24935 msgid "lvcreate"
24936 msgstr ""
24937
24938 #. type: verbatim
24939 #: ../fish/guestfish-actions.pod:2722
24940 #, no-wrap
24941 msgid ""
24942 " lvcreate logvol volgroup mbytes\n"
24943 "\n"
24944 msgstr ""
24945
24946 #. type: =head2
24947 #: ../fish/guestfish-actions.pod:2727
24948 msgid "lvm-canonical-lv-name"
24949 msgstr ""
24950
24951 #. type: verbatim
24952 #: ../fish/guestfish-actions.pod:2729
24953 #, no-wrap
24954 msgid ""
24955 " lvm-canonical-lv-name lvname\n"
24956 "\n"
24957 msgstr ""
24958
24959 #. type: textblock
24960 #: ../fish/guestfish-actions.pod:2738
24961 msgid "See also L</is-lv>."
24962 msgstr ""
24963
24964 #. type: =head2
24965 #: ../fish/guestfish-actions.pod:2740
24966 msgid "lvm-clear-filter"
24967 msgstr ""
24968
24969 #. type: verbatim
24970 #: ../fish/guestfish-actions.pod:2742
24971 #, no-wrap
24972 msgid ""
24973 " lvm-clear-filter\n"
24974 "\n"
24975 msgstr ""
24976
24977 #. type: textblock
24978 #: ../fish/guestfish-actions.pod:2744
24979 msgid ""
24980 "This undoes the effect of L</lvm-set-filter>.  LVM will be able to see every "
24981 "block device."
24982 msgstr ""
24983
24984 #. type: =head2
24985 #: ../fish/guestfish-actions.pod:2750
24986 msgid "lvm-remove-all"
24987 msgstr ""
24988
24989 #. type: verbatim
24990 #: ../fish/guestfish-actions.pod:2752
24991 #, no-wrap
24992 msgid ""
24993 " lvm-remove-all\n"
24994 "\n"
24995 msgstr ""
24996
24997 #. type: =head2
24998 #: ../fish/guestfish-actions.pod:2760
24999 msgid "lvm-set-filter"
25000 msgstr ""
25001
25002 #. type: verbatim
25003 #: ../fish/guestfish-actions.pod:2762
25004 #, no-wrap
25005 msgid ""
25006 " lvm-set-filter 'devices ...'\n"
25007 "\n"
25008 msgstr ""
25009
25010 #. type: =head2
25011 #: ../fish/guestfish-actions.pod:2787
25012 msgid "lvremove"
25013 msgstr ""
25014
25015 #. type: verbatim
25016 #: ../fish/guestfish-actions.pod:2789
25017 #, no-wrap
25018 msgid ""
25019 " lvremove device\n"
25020 "\n"
25021 msgstr ""
25022
25023 #. type: =head2
25024 #: ../fish/guestfish-actions.pod:2797
25025 msgid "lvrename"
25026 msgstr ""
25027
25028 #. type: verbatim
25029 #: ../fish/guestfish-actions.pod:2799
25030 #, no-wrap
25031 msgid ""
25032 " lvrename logvol newlogvol\n"
25033 "\n"
25034 msgstr ""
25035
25036 #. type: =head2
25037 #: ../fish/guestfish-actions.pod:2803
25038 msgid "lvresize"
25039 msgstr ""
25040
25041 #. type: verbatim
25042 #: ../fish/guestfish-actions.pod:2805
25043 #, no-wrap
25044 msgid ""
25045 " lvresize device mbytes\n"
25046 "\n"
25047 msgstr ""
25048
25049 #. type: =head2
25050 #: ../fish/guestfish-actions.pod:2811
25051 msgid "lvresize-free"
25052 msgstr ""
25053
25054 #. type: verbatim
25055 #: ../fish/guestfish-actions.pod:2813
25056 #, no-wrap
25057 msgid ""
25058 " lvresize-free lv percent\n"
25059 "\n"
25060 msgstr ""
25061
25062 #. type: =head2
25063 #: ../fish/guestfish-actions.pod:2821
25064 msgid "lvs"
25065 msgstr ""
25066
25067 #. type: verbatim
25068 #: ../fish/guestfish-actions.pod:2823
25069 #, no-wrap
25070 msgid ""
25071 " lvs\n"
25072 "\n"
25073 msgstr ""
25074
25075 #. type: textblock
25076 #: ../fish/guestfish-actions.pod:2831
25077 msgid "See also L</lvs-full>, L</list-filesystems>."
25078 msgstr ""
25079
25080 #. type: =head2
25081 #: ../fish/guestfish-actions.pod:2833
25082 msgid "lvs-full"
25083 msgstr ""
25084
25085 #. type: verbatim
25086 #: ../fish/guestfish-actions.pod:2835
25087 #, no-wrap
25088 msgid ""
25089 " lvs-full\n"
25090 "\n"
25091 msgstr ""
25092
25093 #. type: =head2
25094 #: ../fish/guestfish-actions.pod:2840
25095 msgid "lvuuid"
25096 msgstr ""
25097
25098 #. type: verbatim
25099 #: ../fish/guestfish-actions.pod:2842
25100 #, no-wrap
25101 msgid ""
25102 " lvuuid device\n"
25103 "\n"
25104 msgstr ""
25105
25106 #. type: =head2
25107 #: ../fish/guestfish-actions.pod:2846
25108 msgid "lxattrlist"
25109 msgstr ""
25110
25111 #. type: verbatim
25112 #: ../fish/guestfish-actions.pod:2848
25113 #, no-wrap
25114 msgid ""
25115 " lxattrlist path 'names ...'\n"
25116 "\n"
25117 msgstr ""
25118
25119 #. type: textblock
25120 #: ../fish/guestfish-actions.pod:2864
25121 msgid ""
25122 "This call is intended for programs that want to efficiently list a directory "
25123 "contents without making many round-trips.  See also L</lstatlist> for a "
25124 "similarly efficient call for getting standard stats.  Very long directory "
25125 "listings might cause the protocol message size to be exceeded, causing this "
25126 "call to fail.  The caller must split up such requests into smaller groups of "
25127 "names."
25128 msgstr ""
25129
25130 #. type: =head2
25131 #: ../fish/guestfish-actions.pod:2872
25132 msgid "mkdir"
25133 msgstr ""
25134
25135 #. type: verbatim
25136 #: ../fish/guestfish-actions.pod:2874
25137 #, no-wrap
25138 msgid ""
25139 " mkdir path\n"
25140 "\n"
25141 msgstr ""
25142
25143 #. type: =head2
25144 #: ../fish/guestfish-actions.pod:2878
25145 msgid "mkdir-mode"
25146 msgstr ""
25147
25148 #. type: verbatim
25149 #: ../fish/guestfish-actions.pod:2880
25150 #, no-wrap
25151 msgid ""
25152 " mkdir-mode path mode\n"
25153 "\n"
25154 msgstr ""
25155
25156 #. type: textblock
25157 #: ../fish/guestfish-actions.pod:2889
25158 msgid "See also L</mkdir>, L</umask>"
25159 msgstr ""
25160
25161 #. type: =head2
25162 #: ../fish/guestfish-actions.pod:2891
25163 msgid "mkdir-p"
25164 msgstr ""
25165
25166 #. type: verbatim
25167 #: ../fish/guestfish-actions.pod:2893
25168 #, no-wrap
25169 msgid ""
25170 " mkdir-p path\n"
25171 "\n"
25172 msgstr ""
25173
25174 #. type: =head2
25175 #: ../fish/guestfish-actions.pod:2898
25176 msgid "mkdtemp"
25177 msgstr ""
25178
25179 #. type: verbatim
25180 #: ../fish/guestfish-actions.pod:2900
25181 #, no-wrap
25182 msgid ""
25183 " mkdtemp template\n"
25184 "\n"
25185 msgstr ""
25186
25187 #. type: =head2
25188 #: ../fish/guestfish-actions.pod:2921
25189 msgid "mke2fs-J"
25190 msgstr ""
25191
25192 #. type: verbatim
25193 #: ../fish/guestfish-actions.pod:2923
25194 #, no-wrap
25195 msgid ""
25196 " mke2fs-J fstype blocksize device journal\n"
25197 "\n"
25198 msgstr ""
25199
25200 #. type: textblock
25201 #: ../fish/guestfish-actions.pod:2931
25202 msgid "See also L</mke2journal>."
25203 msgstr ""
25204
25205 #. type: =head2
25206 #: ../fish/guestfish-actions.pod:2933
25207 msgid "mke2fs-JL"
25208 msgstr ""
25209
25210 #. type: verbatim
25211 #: ../fish/guestfish-actions.pod:2935
25212 #, no-wrap
25213 msgid ""
25214 " mke2fs-JL fstype blocksize device label\n"
25215 "\n"
25216 msgstr ""
25217
25218 #. type: textblock
25219 #: ../fish/guestfish-actions.pod:2940
25220 msgid "See also L</mke2journal-L>."
25221 msgstr ""
25222
25223 #. type: =head2
25224 #: ../fish/guestfish-actions.pod:2942
25225 msgid "mke2fs-JU"
25226 msgstr ""
25227
25228 #. type: verbatim
25229 #: ../fish/guestfish-actions.pod:2944
25230 #, no-wrap
25231 msgid ""
25232 " mke2fs-JU fstype blocksize device uuid\n"
25233 "\n"
25234 msgstr ""
25235
25236 #. type: textblock
25237 #: ../fish/guestfish-actions.pod:2949
25238 msgid "See also L</mke2journal-U>."
25239 msgstr ""
25240
25241 #. type: =head2
25242 #: ../fish/guestfish-actions.pod:2951
25243 msgid "mke2journal"
25244 msgstr ""
25245
25246 #. type: verbatim
25247 #: ../fish/guestfish-actions.pod:2953
25248 #, no-wrap
25249 msgid ""
25250 " mke2journal blocksize device\n"
25251 "\n"
25252 msgstr ""
25253
25254 #. type: =head2
25255 #: ../fish/guestfish-actions.pod:2960
25256 msgid "mke2journal-L"
25257 msgstr ""
25258
25259 #. type: verbatim
25260 #: ../fish/guestfish-actions.pod:2962
25261 #, no-wrap
25262 msgid ""
25263 " mke2journal-L blocksize label device\n"
25264 "\n"
25265 msgstr ""
25266
25267 #. type: =head2
25268 #: ../fish/guestfish-actions.pod:2966
25269 msgid "mke2journal-U"
25270 msgstr ""
25271
25272 #. type: verbatim
25273 #: ../fish/guestfish-actions.pod:2968
25274 #, no-wrap
25275 msgid ""
25276 " mke2journal-U blocksize uuid device\n"
25277 "\n"
25278 msgstr ""
25279
25280 #. type: =head2
25281 #: ../fish/guestfish-actions.pod:2972
25282 msgid "mkfifo"
25283 msgstr ""
25284
25285 #. type: verbatim
25286 #: ../fish/guestfish-actions.pod:2974
25287 #, no-wrap
25288 msgid ""
25289 " mkfifo mode path\n"
25290 "\n"
25291 msgstr ""
25292
25293 #. type: textblock
25294 #: ../fish/guestfish-actions.pod:2976
25295 msgid ""
25296 "This call creates a FIFO (named pipe) called C<path> with mode C<mode>.  It "
25297 "is just a convenient wrapper around L</mknod>."
25298 msgstr ""
25299
25300 #. type: =head2
25301 #: ../fish/guestfish-actions.pod:2982
25302 msgid "mkfs"
25303 msgstr ""
25304
25305 #. type: verbatim
25306 #: ../fish/guestfish-actions.pod:2984
25307 #, no-wrap
25308 msgid ""
25309 " mkfs fstype device\n"
25310 "\n"
25311 msgstr ""
25312
25313 #. type: =head2
25314 #: ../fish/guestfish-actions.pod:2990
25315 msgid "mkfs-b"
25316 msgstr ""
25317
25318 #. type: verbatim
25319 #: ../fish/guestfish-actions.pod:2992
25320 #, no-wrap
25321 msgid ""
25322 " mkfs-b fstype blocksize device\n"
25323 "\n"
25324 msgstr ""
25325
25326 #. type: textblock
25327 #: ../fish/guestfish-actions.pod:2994
25328 msgid ""
25329 "This call is similar to L</mkfs>, but it allows you to control the block "
25330 "size of the resulting filesystem.  Supported block sizes depend on the "
25331 "filesystem type, but typically they are C<1024>, C<2048> or C<4096> only."
25332 msgstr ""
25333
25334 #. type: =head2
25335 #: ../fish/guestfish-actions.pod:3009
25336 msgid "mkfs-opts"
25337 msgstr ""
25338
25339 #. type: verbatim
25340 #: ../fish/guestfish-actions.pod:3011
25341 #, no-wrap
25342 msgid ""
25343 " mkfs-opts fstype device [blocksize:..] [features:..]\n"
25344 "\n"
25345 msgstr ""
25346
25347 #. type: =head2
25348 #: ../fish/guestfish-actions.pod:3046
25349 msgid "mkmountpoint"
25350 msgstr ""
25351
25352 #. type: verbatim
25353 #: ../fish/guestfish-actions.pod:3048
25354 #, no-wrap
25355 msgid ""
25356 " mkmountpoint exemptpath\n"
25357 "\n"
25358 msgstr ""
25359
25360 #. type: textblock
25361 #: ../fish/guestfish-actions.pod:3050
25362 msgid ""
25363 "L</mkmountpoint> and L</rmmountpoint> are specialized calls that can be used "
25364 "to create extra mountpoints before mounting the first filesystem."
25365 msgstr ""
25366
25367 #. type: textblock
25368 #: ../fish/guestfish-actions.pod:3074
25369 msgid ""
25370 "L</mkmountpoint> is not compatible with L</umount-all>.  You may get "
25371 "unexpected errors if you try to mix these calls.  It is safest to manually "
25372 "unmount filesystems and remove mountpoints after use."
25373 msgstr ""
25374
25375 #. type: textblock
25376 #: ../fish/guestfish-actions.pod:3078
25377 msgid ""
25378 "L</umount-all> unmounts filesystems by sorting the paths longest first, so "
25379 "for this to work for manual mountpoints, you must ensure that the innermost "
25380 "mountpoints have the longest pathnames, as in the example code above."
25381 msgstr ""
25382
25383 #. type: textblock
25384 #: ../fish/guestfish-actions.pod:3085
25385 msgid ""
25386 "Autosync [see L</set-autosync>, this is set by default on handles] can cause "
25387 "L</umount-all> to be called when the handle is closed which can also trigger "
25388 "these issues."
25389 msgstr ""
25390
25391 #. type: =head2
25392 #: ../fish/guestfish-actions.pod:3089
25393 msgid "mknod"
25394 msgstr ""
25395
25396 #. type: verbatim
25397 #: ../fish/guestfish-actions.pod:3091
25398 #, no-wrap
25399 msgid ""
25400 " mknod mode devmajor devminor path\n"
25401 "\n"
25402 msgstr ""
25403
25404 #. type: textblock
25405 #: ../fish/guestfish-actions.pod:3101
25406 msgid ""
25407 "Note that, just like L<mknod(2)>, the mode must be bitwise OR'd with "
25408 "S_IFBLK, S_IFCHR, S_IFIFO or S_IFSOCK (otherwise this call just creates a "
25409 "regular file).  These constants are available in the standard Linux header "
25410 "files, or you can use L</mknod-b>, L</mknod-c> or L</mkfifo> which are "
25411 "wrappers around this command which bitwise OR in the appropriate constant "
25412 "for you."
25413 msgstr ""
25414
25415 #. type: =head2
25416 #: ../fish/guestfish-actions.pod:3111
25417 msgid "mknod-b"
25418 msgstr ""
25419
25420 #. type: verbatim
25421 #: ../fish/guestfish-actions.pod:3113
25422 #, no-wrap
25423 msgid ""
25424 " mknod-b mode devmajor devminor path\n"
25425 "\n"
25426 msgstr ""
25427
25428 #. type: textblock
25429 #: ../fish/guestfish-actions.pod:3115
25430 msgid ""
25431 "This call creates a block device node called C<path> with mode C<mode> and "
25432 "device major/minor C<devmajor> and C<devminor>.  It is just a convenient "
25433 "wrapper around L</mknod>."
25434 msgstr ""
25435
25436 #. type: =head2
25437 #: ../fish/guestfish-actions.pod:3121
25438 msgid "mknod-c"
25439 msgstr ""
25440
25441 #. type: verbatim
25442 #: ../fish/guestfish-actions.pod:3123
25443 #, no-wrap
25444 msgid ""
25445 " mknod-c mode devmajor devminor path\n"
25446 "\n"
25447 msgstr ""
25448
25449 #. type: textblock
25450 #: ../fish/guestfish-actions.pod:3125
25451 msgid ""
25452 "This call creates a char device node called C<path> with mode C<mode> and "
25453 "device major/minor C<devmajor> and C<devminor>.  It is just a convenient "
25454 "wrapper around L</mknod>."
25455 msgstr ""
25456
25457 #. type: =head2
25458 #: ../fish/guestfish-actions.pod:3131
25459 msgid "mkswap"
25460 msgstr ""
25461
25462 #. type: verbatim
25463 #: ../fish/guestfish-actions.pod:3133
25464 #, no-wrap
25465 msgid ""
25466 " mkswap device\n"
25467 "\n"
25468 msgstr ""
25469
25470 #. type: =head2
25471 #: ../fish/guestfish-actions.pod:3137
25472 msgid "mkswap-L"
25473 msgstr ""
25474
25475 #. type: verbatim
25476 #: ../fish/guestfish-actions.pod:3139
25477 #, no-wrap
25478 msgid ""
25479 " mkswap-L label device\n"
25480 "\n"
25481 msgstr ""
25482
25483 #. type: =head2
25484 #: ../fish/guestfish-actions.pod:3147
25485 msgid "mkswap-U"
25486 msgstr ""
25487
25488 #. type: verbatim
25489 #: ../fish/guestfish-actions.pod:3149
25490 #, no-wrap
25491 msgid ""
25492 " mkswap-U uuid device\n"
25493 "\n"
25494 msgstr ""
25495
25496 #. type: =head2
25497 #: ../fish/guestfish-actions.pod:3153
25498 msgid "mkswap-file"
25499 msgstr ""
25500
25501 #. type: verbatim
25502 #: ../fish/guestfish-actions.pod:3155
25503 #, no-wrap
25504 msgid ""
25505 " mkswap-file path\n"
25506 "\n"
25507 msgstr ""
25508
25509 #. type: textblock
25510 #: ../fish/guestfish-actions.pod:3159
25511 msgid ""
25512 "This command just writes a swap file signature to an existing file.  To "
25513 "create the file itself, use something like L</fallocate>."
25514 msgstr ""
25515
25516 #. type: =head2
25517 #: ../fish/guestfish-actions.pod:3162
25518 msgid "modprobe"
25519 msgstr ""
25520
25521 #. type: verbatim
25522 #: ../fish/guestfish-actions.pod:3164
25523 #, no-wrap
25524 msgid ""
25525 " modprobe modulename\n"
25526 "\n"
25527 msgstr ""
25528
25529 #. type: =head2
25530 #: ../fish/guestfish-actions.pod:3171
25531 msgid "mount"
25532 msgstr ""
25533
25534 #. type: verbatim
25535 #: ../fish/guestfish-actions.pod:3173
25536 #, no-wrap
25537 msgid ""
25538 " mount device mountpoint\n"
25539 "\n"
25540 msgstr ""
25541
25542 #. type: textblock
25543 #: ../fish/guestfish-actions.pod:3189
25544 msgid ""
25545 "B<Important note:> When you use this call, the filesystem options C<sync> "
25546 "and C<noatime> are set implicitly.  This was originally done because we "
25547 "thought it would improve reliability, but it turns out that I<-o sync> has a "
25548 "very large negative performance impact and negligible effect on "
25549 "reliability.  Therefore we recommend that you avoid using L</mount> in any "
25550 "code that needs performance, and instead use L</mount-options> (use an empty "
25551 "string for the first parameter if you don't want any options)."
25552 msgstr ""
25553
25554 #. type: =head2
25555 #: ../fish/guestfish-actions.pod:3206
25556 msgid "mount-loop"
25557 msgstr ""
25558
25559 #. type: verbatim
25560 #: ../fish/guestfish-actions.pod:3208
25561 #, no-wrap
25562 msgid ""
25563 " mount-loop file mountpoint\n"
25564 "\n"
25565 msgstr ""
25566
25567 #. type: =head2
25568 #: ../fish/guestfish-actions.pod:3214
25569 msgid "mount-options"
25570 msgstr ""
25571
25572 #. type: verbatim
25573 #: ../fish/guestfish-actions.pod:3216
25574 #, no-wrap
25575 msgid ""
25576 " mount-options options device mountpoint\n"
25577 "\n"
25578 msgstr ""
25579
25580 #. type: textblock
25581 #: ../fish/guestfish-actions.pod:3218
25582 msgid ""
25583 "This is the same as the L</mount> command, but it allows you to set the "
25584 "mount options as for the L<mount(8)> I<-o> flag."
25585 msgstr ""
25586
25587 #. type: =head2
25588 #: ../fish/guestfish-actions.pod:3226
25589 msgid "mount-ro"
25590 msgstr ""
25591
25592 #. type: verbatim
25593 #: ../fish/guestfish-actions.pod:3228
25594 #, no-wrap
25595 msgid ""
25596 " mount-ro device mountpoint\n"
25597 "\n"
25598 msgstr ""
25599
25600 #. type: textblock
25601 #: ../fish/guestfish-actions.pod:3230
25602 msgid ""
25603 "This is the same as the L</mount> command, but it mounts the filesystem with "
25604 "the read-only (I<-o ro>) flag."
25605 msgstr ""
25606
25607 #. type: =head2
25608 #: ../fish/guestfish-actions.pod:3233
25609 msgid "mount-vfs"
25610 msgstr ""
25611
25612 #. type: verbatim
25613 #: ../fish/guestfish-actions.pod:3235
25614 #, no-wrap
25615 msgid ""
25616 " mount-vfs options vfstype device mountpoint\n"
25617 "\n"
25618 msgstr ""
25619
25620 #. type: textblock
25621 #: ../fish/guestfish-actions.pod:3237
25622 msgid ""
25623 "This is the same as the L</mount> command, but it allows you to set both the "
25624 "mount options and the vfstype as for the L<mount(8)> I<-o> and I<-t> flags."
25625 msgstr ""
25626
25627 #. type: =head2
25628 #: ../fish/guestfish-actions.pod:3241
25629 msgid "mountpoints"
25630 msgstr ""
25631
25632 #. type: verbatim
25633 #: ../fish/guestfish-actions.pod:3243
25634 #, no-wrap
25635 msgid ""
25636 " mountpoints\n"
25637 "\n"
25638 msgstr ""
25639
25640 #. type: textblock
25641 #: ../fish/guestfish-actions.pod:3245
25642 msgid ""
25643 "This call is similar to L</mounts>.  That call returns a list of devices.  "
25644 "This one returns a hash table (map) of device name to directory where the "
25645 "device is mounted."
25646 msgstr ""
25647
25648 #. type: =head2
25649 #: ../fish/guestfish-actions.pod:3249
25650 msgid "mounts"
25651 msgstr ""
25652
25653 #. type: verbatim
25654 #: ../fish/guestfish-actions.pod:3251
25655 #, no-wrap
25656 msgid ""
25657 " mounts\n"
25658 "\n"
25659 msgstr ""
25660
25661 #. type: textblock
25662 #: ../fish/guestfish-actions.pod:3258
25663 msgid "See also: L</mountpoints>"
25664 msgstr ""
25665
25666 #. type: =head2
25667 #: ../fish/guestfish-actions.pod:3260
25668 msgid "mv"
25669 msgstr ""
25670
25671 #. type: verbatim
25672 #: ../fish/guestfish-actions.pod:3262
25673 #, no-wrap
25674 msgid ""
25675 " mv src dest\n"
25676 "\n"
25677 msgstr ""
25678
25679 #. type: =head2
25680 #: ../fish/guestfish-actions.pod:3267
25681 msgid "ntfs-3g-probe"
25682 msgstr ""
25683
25684 #. type: verbatim
25685 #: ../fish/guestfish-actions.pod:3269
25686 #, no-wrap
25687 msgid ""
25688 " ntfs-3g-probe true|false device\n"
25689 "\n"
25690 msgstr ""
25691
25692 #. type: =head2
25693 #: ../fish/guestfish-actions.pod:3283
25694 msgid "ntfsresize"
25695 msgstr ""
25696
25697 #. type: verbatim
25698 #: ../fish/guestfish-actions.pod:3285
25699 #, no-wrap
25700 msgid ""
25701 " ntfsresize device\n"
25702 "\n"
25703 msgstr ""
25704
25705 #. type: =head2
25706 #: ../fish/guestfish-actions.pod:3300
25707 msgid "ntfsresize-size"
25708 msgstr ""
25709
25710 #. type: verbatim
25711 #: ../fish/guestfish-actions.pod:3302
25712 #, no-wrap
25713 msgid ""
25714 " ntfsresize-size device size\n"
25715 "\n"
25716 msgstr ""
25717
25718 #. type: textblock
25719 #: ../fish/guestfish-actions.pod:3304
25720 msgid ""
25721 "This command is the same as L</ntfsresize> except that it allows you to "
25722 "specify the new size (in bytes) explicitly."
25723 msgstr ""
25724
25725 #. type: =head2
25726 #: ../fish/guestfish-actions.pod:3307
25727 msgid "part-add"
25728 msgstr ""
25729
25730 #. type: verbatim
25731 #: ../fish/guestfish-actions.pod:3309
25732 #, no-wrap
25733 msgid ""
25734 " part-add device prlogex startsect endsect\n"
25735 "\n"
25736 msgstr ""
25737
25738 #. type: textblock
25739 #: ../fish/guestfish-actions.pod:3311
25740 msgid ""
25741 "This command adds a partition to C<device>.  If there is no partition table "
25742 "on the device, call L</part-init> first."
25743 msgstr ""
25744
25745 #. type: textblock
25746 #: ../fish/guestfish-actions.pod:3323
25747 msgid ""
25748 "Creating a partition which covers the whole disk is not so easy.  Use L</"
25749 "part-disk> to do that."
25750 msgstr ""
25751
25752 #. type: =head2
25753 #: ../fish/guestfish-actions.pod:3326
25754 msgid "part-del"
25755 msgstr ""
25756
25757 #. type: verbatim
25758 #: ../fish/guestfish-actions.pod:3328
25759 #, no-wrap
25760 msgid ""
25761 " part-del device partnum\n"
25762 "\n"
25763 msgstr ""
25764
25765 #. type: =head2
25766 #: ../fish/guestfish-actions.pod:3336
25767 msgid "part-disk"
25768 msgstr ""
25769
25770 #. type: verbatim
25771 #: ../fish/guestfish-actions.pod:3338
25772 #, no-wrap
25773 msgid ""
25774 " part-disk device parttype\n"
25775 "\n"
25776 msgstr ""
25777
25778 #. type: textblock
25779 #: ../fish/guestfish-actions.pod:3340
25780 msgid ""
25781 "This command is simply a combination of L</part-init> followed by L</part-"
25782 "add> to create a single primary partition covering the whole disk."
25783 msgstr ""
25784
25785 #. type: textblock
25786 #: ../fish/guestfish-actions.pod:3344
25787 msgid ""
25788 "C<parttype> is the partition table type, usually C<mbr> or C<gpt>, but other "
25789 "possible values are described in L</part-init>."
25790 msgstr ""
25791
25792 #. type: =head2
25793 #: ../fish/guestfish-actions.pod:3350
25794 msgid "part-get-bootable"
25795 msgstr ""
25796
25797 #. type: verbatim
25798 #: ../fish/guestfish-actions.pod:3352
25799 #, no-wrap
25800 msgid ""
25801 " part-get-bootable device partnum\n"
25802 "\n"
25803 msgstr ""
25804
25805 #. type: textblock
25806 #: ../fish/guestfish-actions.pod:3357
25807 msgid "See also L</part-set-bootable>."
25808 msgstr ""
25809
25810 #. type: =head2
25811 #: ../fish/guestfish-actions.pod:3359
25812 msgid "part-get-mbr-id"
25813 msgstr ""
25814
25815 #. type: verbatim
25816 #: ../fish/guestfish-actions.pod:3361
25817 #, no-wrap
25818 msgid ""
25819 " part-get-mbr-id device partnum\n"
25820 "\n"
25821 msgstr ""
25822
25823 #. type: textblock
25824 #: ../fish/guestfish-actions.pod:3366 ../fish/guestfish-actions.pod:3504
25825 msgid ""
25826 "Note that only MBR (old DOS-style) partitions have type bytes.  You will get "
25827 "undefined results for other partition table types (see L</part-get-"
25828 "parttype>)."
25829 msgstr ""
25830
25831 #. type: =head2
25832 #: ../fish/guestfish-actions.pod:3370
25833 msgid "part-get-parttype"
25834 msgstr ""
25835
25836 #. type: verbatim
25837 #: ../fish/guestfish-actions.pod:3372
25838 #, no-wrap
25839 msgid ""
25840 " part-get-parttype device\n"
25841 "\n"
25842 msgstr ""
25843
25844 #. type: textblock
25845 #: ../fish/guestfish-actions.pod:3377
25846 msgid ""
25847 "Common return values include: C<msdos> (a DOS/Windows style MBR partition "
25848 "table), C<gpt> (a GPT/EFI-style partition table).  Other values are "
25849 "possible, although unusual.  See L</part-init> for a full list."
25850 msgstr ""
25851
25852 #. type: =head2
25853 #: ../fish/guestfish-actions.pod:3382
25854 msgid "part-init"
25855 msgstr ""
25856
25857 #. type: verbatim
25858 #: ../fish/guestfish-actions.pod:3384
25859 #, no-wrap
25860 msgid ""
25861 " part-init device parttype\n"
25862 "\n"
25863 msgstr ""
25864
25865 #. type: textblock
25866 #: ../fish/guestfish-actions.pod:3390
25867 msgid ""
25868 "Initially there are no partitions.  Following this, you should call L</part-"
25869 "add> for each partition required."
25870 msgstr ""
25871
25872 #. type: =head2
25873 #: ../fish/guestfish-actions.pod:3453
25874 msgid "part-list"
25875 msgstr ""
25876
25877 #. type: verbatim
25878 #: ../fish/guestfish-actions.pod:3455
25879 #, no-wrap
25880 msgid ""
25881 " part-list device\n"
25882 "\n"
25883 msgstr ""
25884
25885 #. type: textblock
25886 #: ../fish/guestfish-actions.pod:3470
25887 msgid ""
25888 "Start of the partition I<in bytes>.  To get sectors you have to divide by "
25889 "the device's sector size, see L</blockdev-getss>."
25890 msgstr ""
25891
25892 #. type: =head2
25893 #: ../fish/guestfish-actions.pod:3483
25894 msgid "part-set-bootable"
25895 msgstr ""
25896
25897 #. type: verbatim
25898 #: ../fish/guestfish-actions.pod:3485
25899 #, no-wrap
25900 msgid ""
25901 " part-set-bootable device partnum true|false\n"
25902 "\n"
25903 msgstr ""
25904
25905 #. type: =head2
25906 #: ../fish/guestfish-actions.pod:3494
25907 msgid "part-set-mbr-id"
25908 msgstr ""
25909
25910 #. type: verbatim
25911 #: ../fish/guestfish-actions.pod:3496
25912 #, no-wrap
25913 msgid ""
25914 " part-set-mbr-id device partnum idbyte\n"
25915 "\n"
25916 msgstr ""
25917
25918 #. type: =head2
25919 #: ../fish/guestfish-actions.pod:3508
25920 msgid "part-set-name"
25921 msgstr ""
25922
25923 #. type: verbatim
25924 #: ../fish/guestfish-actions.pod:3510
25925 #, no-wrap
25926 msgid ""
25927 " part-set-name device partnum name\n"
25928 "\n"
25929 msgstr ""
25930
25931 #. type: =head2
25932 #: ../fish/guestfish-actions.pod:3518
25933 msgid "part-to-dev"
25934 msgstr ""
25935
25936 #. type: verbatim
25937 #: ../fish/guestfish-actions.pod:3520
25938 #, no-wrap
25939 msgid ""
25940 " part-to-dev partition\n"
25941 "\n"
25942 msgstr ""
25943
25944 #. type: textblock
25945 #: ../fish/guestfish-actions.pod:3526
25946 msgid ""
25947 "The named partition must exist, for example as a string returned from L</"
25948 "list-partitions>."
25949 msgstr ""
25950
25951 #. type: =head2
25952 #: ../fish/guestfish-actions.pod:3529
25953 msgid "ping-daemon"
25954 msgstr ""
25955
25956 #. type: verbatim
25957 #: ../fish/guestfish-actions.pod:3531
25958 #, no-wrap
25959 msgid ""
25960 " ping-daemon\n"
25961 "\n"
25962 msgstr ""
25963
25964 #. type: =head2
25965 #: ../fish/guestfish-actions.pod:3538
25966 msgid "pread"
25967 msgstr ""
25968
25969 #. type: verbatim
25970 #: ../fish/guestfish-actions.pod:3540
25971 #, no-wrap
25972 msgid ""
25973 " pread path count offset\n"
25974 "\n"
25975 msgstr ""
25976
25977 #. type: textblock
25978 #: ../fish/guestfish-actions.pod:3548
25979 msgid "See also L</pwrite>, L</pread-device>."
25980 msgstr ""
25981
25982 #. type: =head2
25983 #: ../fish/guestfish-actions.pod:3553
25984 msgid "pread-device"
25985 msgstr ""
25986
25987 #. type: verbatim
25988 #: ../fish/guestfish-actions.pod:3555
25989 #, no-wrap
25990 msgid ""
25991 " pread-device device count offset\n"
25992 "\n"
25993 msgstr ""
25994
25995 #. type: textblock
25996 #: ../fish/guestfish-actions.pod:3563
25997 msgid "See also L</pread>."
25998 msgstr ""
25999
26000 #. type: =head2
26001 #: ../fish/guestfish-actions.pod:3568
26002 msgid "pvcreate"
26003 msgstr ""
26004
26005 #. type: verbatim
26006 #: ../fish/guestfish-actions.pod:3570
26007 #, no-wrap
26008 msgid ""
26009 " pvcreate device\n"
26010 "\n"
26011 msgstr ""
26012
26013 #. type: =head2
26014 #: ../fish/guestfish-actions.pod:3576
26015 msgid "pvremove"
26016 msgstr ""
26017
26018 #. type: verbatim
26019 #: ../fish/guestfish-actions.pod:3578
26020 #, no-wrap
26021 msgid ""
26022 " pvremove device\n"
26023 "\n"
26024 msgstr ""
26025
26026 #. type: =head2
26027 #: ../fish/guestfish-actions.pod:3587
26028 msgid "pvresize"
26029 msgstr ""
26030
26031 #. type: verbatim
26032 #: ../fish/guestfish-actions.pod:3589
26033 #, no-wrap
26034 msgid ""
26035 " pvresize device\n"
26036 "\n"
26037 msgstr ""
26038
26039 #. type: =head2
26040 #: ../fish/guestfish-actions.pod:3594
26041 msgid "pvresize-size"
26042 msgstr ""
26043
26044 #. type: verbatim
26045 #: ../fish/guestfish-actions.pod:3596
26046 #, no-wrap
26047 msgid ""
26048 " pvresize-size device size\n"
26049 "\n"
26050 msgstr ""
26051
26052 #. type: textblock
26053 #: ../fish/guestfish-actions.pod:3598
26054 msgid ""
26055 "This command is the same as L</pvresize> except that it allows you to "
26056 "specify the new size (in bytes) explicitly."
26057 msgstr ""
26058
26059 #. type: =head2
26060 #: ../fish/guestfish-actions.pod:3601
26061 msgid "pvs"
26062 msgstr ""
26063
26064 #. type: verbatim
26065 #: ../fish/guestfish-actions.pod:3603
26066 #, no-wrap
26067 msgid ""
26068 " pvs\n"
26069 "\n"
26070 msgstr ""
26071
26072 #. type: textblock
26073 #: ../fish/guestfish-actions.pod:3611
26074 msgid "See also L</pvs-full>."
26075 msgstr ""
26076
26077 #. type: =head2
26078 #: ../fish/guestfish-actions.pod:3613
26079 msgid "pvs-full"
26080 msgstr ""
26081
26082 #. type: verbatim
26083 #: ../fish/guestfish-actions.pod:3615
26084 #, no-wrap
26085 msgid ""
26086 " pvs-full\n"
26087 "\n"
26088 msgstr ""
26089
26090 #. type: =head2
26091 #: ../fish/guestfish-actions.pod:3620
26092 msgid "pvuuid"
26093 msgstr ""
26094
26095 #. type: verbatim
26096 #: ../fish/guestfish-actions.pod:3622
26097 #, no-wrap
26098 msgid ""
26099 " pvuuid device\n"
26100 "\n"
26101 msgstr ""
26102
26103 #. type: =head2
26104 #: ../fish/guestfish-actions.pod:3626
26105 msgid "pwrite"
26106 msgstr ""
26107
26108 #. type: verbatim
26109 #: ../fish/guestfish-actions.pod:3628
26110 #, no-wrap
26111 msgid ""
26112 " pwrite path content offset\n"
26113 "\n"
26114 msgstr ""
26115
26116 #. type: textblock
26117 #: ../fish/guestfish-actions.pod:3639
26118 msgid "See also L</pread>, L</pwrite-device>."
26119 msgstr ""
26120
26121 #. type: =head2
26122 #: ../fish/guestfish-actions.pod:3644
26123 msgid "pwrite-device"
26124 msgstr ""
26125
26126 #. type: verbatim
26127 #: ../fish/guestfish-actions.pod:3646
26128 #, no-wrap
26129 msgid ""
26130 " pwrite-device device content offset\n"
26131 "\n"
26132 msgstr ""
26133
26134 #. type: textblock
26135 #: ../fish/guestfish-actions.pod:3656
26136 msgid "See also L</pwrite>."
26137 msgstr ""
26138
26139 #. type: =head2
26140 #: ../fish/guestfish-actions.pod:3661
26141 msgid "read-file"
26142 msgstr ""
26143
26144 #. type: verbatim
26145 #: ../fish/guestfish-actions.pod:3663
26146 #, no-wrap
26147 msgid ""
26148 " read-file path\n"
26149 "\n"
26150 msgstr ""
26151
26152 #. type: textblock
26153 #: ../fish/guestfish-actions.pod:3668
26154 msgid ""
26155 "Unlike L</cat>, this function can correctly handle files that contain "
26156 "embedded ASCII NUL characters.  However unlike L</download>, this function "
26157 "is limited in the total size of file that can be handled."
26158 msgstr ""
26159
26160 #. type: =head2
26161 #: ../fish/guestfish-actions.pod:3676
26162 msgid "read-lines"
26163 msgstr ""
26164
26165 #. type: verbatim
26166 #: ../fish/guestfish-actions.pod:3678
26167 #, no-wrap
26168 msgid ""
26169 " read-lines path\n"
26170 "\n"
26171 msgstr ""
26172
26173 #. type: textblock
26174 #: ../fish/guestfish-actions.pod:3685
26175 msgid ""
26176 "Note that this function cannot correctly handle binary files (specifically, "
26177 "files containing C<\\0> character which is treated as end of line).  For "
26178 "those you need to use the L</read-file> function which has a more complex "
26179 "interface."
26180 msgstr ""
26181
26182 #. type: =head2
26183 #: ../fish/guestfish-actions.pod:3690
26184 msgid "readdir"
26185 msgstr ""
26186
26187 #. type: verbatim
26188 #: ../fish/guestfish-actions.pod:3692
26189 #, no-wrap
26190 msgid ""
26191 " readdir dir\n"
26192 "\n"
26193 msgstr ""
26194
26195 #. type: textblock
26196 #: ../fish/guestfish-actions.pod:3744
26197 msgid ""
26198 "This function is primarily intended for use by programs.  To get a simple "
26199 "list of names, use L</ls>.  To get a printable directory for human "
26200 "consumption, use L</ll>."
26201 msgstr ""
26202
26203 #. type: =head2
26204 #: ../fish/guestfish-actions.pod:3748
26205 msgid "readlink"
26206 msgstr ""
26207
26208 #. type: verbatim
26209 #: ../fish/guestfish-actions.pod:3750
26210 #, no-wrap
26211 msgid ""
26212 " readlink path\n"
26213 "\n"
26214 msgstr ""
26215
26216 #. type: =head2
26217 #: ../fish/guestfish-actions.pod:3754
26218 msgid "readlinklist"
26219 msgstr ""
26220
26221 #. type: verbatim
26222 #: ../fish/guestfish-actions.pod:3756
26223 #, no-wrap
26224 msgid ""
26225 " readlinklist path 'names ...'\n"
26226 "\n"
26227 msgstr ""
26228
26229 #. type: =head2
26230 #: ../fish/guestfish-actions.pod:3780
26231 msgid "realpath"
26232 msgstr ""
26233
26234 #. type: verbatim
26235 #: ../fish/guestfish-actions.pod:3782
26236 #, no-wrap
26237 msgid ""
26238 " realpath path\n"
26239 "\n"
26240 msgstr ""
26241
26242 #. type: =head2
26243 #: ../fish/guestfish-actions.pod:3787
26244 msgid "removexattr"
26245 msgstr ""
26246
26247 #. type: verbatim
26248 #: ../fish/guestfish-actions.pod:3789
26249 #, no-wrap
26250 msgid ""
26251 " removexattr xattr path\n"
26252 "\n"
26253 msgstr ""
26254
26255 #. type: textblock
26256 #: ../fish/guestfish-actions.pod:3794
26257 msgid "See also: L</lremovexattr>, L<attr(5)>."
26258 msgstr ""
26259
26260 #. type: =head2
26261 #: ../fish/guestfish-actions.pod:3796
26262 msgid "resize2fs"
26263 msgstr ""
26264
26265 #. type: verbatim
26266 #: ../fish/guestfish-actions.pod:3798
26267 #, no-wrap
26268 msgid ""
26269 " resize2fs device\n"
26270 "\n"
26271 msgstr ""
26272
26273 #. type: textblock
26274 #: ../fish/guestfish-actions.pod:3803
26275 msgid ""
26276 "I<Note:> It is sometimes required that you run L</e2fsck-f> on the C<device> "
26277 "before calling this command.  For unknown reasons C<resize2fs> sometimes "
26278 "gives an error about this and sometimes not.  In any case, it is always safe "
26279 "to call L</e2fsck-f> before calling this function."
26280 msgstr ""
26281
26282 #. type: =head2
26283 #: ../fish/guestfish-actions.pod:3809
26284 msgid "resize2fs-M"
26285 msgstr ""
26286
26287 #. type: verbatim
26288 #: ../fish/guestfish-actions.pod:3811
26289 #, no-wrap
26290 msgid ""
26291 " resize2fs-M device\n"
26292 "\n"
26293 msgstr ""
26294
26295 #. type: textblock
26296 #: ../fish/guestfish-actions.pod:3813
26297 msgid ""
26298 "This command is the same as L</resize2fs>, but the filesystem is resized to "
26299 "its minimum size.  This works like the I<-M> option to the C<resize2fs> "
26300 "command."
26301 msgstr ""
26302
26303 #. type: textblock
26304 #: ../fish/guestfish-actions.pod:3817
26305 msgid ""
26306 "To get the resulting size of the filesystem you should call L</tune2fs-l> "
26307 "and read the C<Block size> and C<Block count> values.  These two numbers, "
26308 "multiplied together, give the resulting size of the minimal filesystem in "
26309 "bytes."
26310 msgstr ""
26311
26312 #. type: =head2
26313 #: ../fish/guestfish-actions.pod:3822
26314 msgid "resize2fs-size"
26315 msgstr ""
26316
26317 #. type: verbatim
26318 #: ../fish/guestfish-actions.pod:3824
26319 #, no-wrap
26320 msgid ""
26321 " resize2fs-size device size\n"
26322 "\n"
26323 msgstr ""
26324
26325 #. type: textblock
26326 #: ../fish/guestfish-actions.pod:3826
26327 msgid ""
26328 "This command is the same as L</resize2fs> except that it allows you to "
26329 "specify the new size (in bytes) explicitly."
26330 msgstr ""
26331
26332 #. type: =head2
26333 #: ../fish/guestfish-actions.pod:3829
26334 msgid "rm"
26335 msgstr ""
26336
26337 #. type: verbatim
26338 #: ../fish/guestfish-actions.pod:3831
26339 #, no-wrap
26340 msgid ""
26341 " rm path\n"
26342 "\n"
26343 msgstr ""
26344
26345 #. type: =head2
26346 #: ../fish/guestfish-actions.pod:3835
26347 msgid "rm-rf"
26348 msgstr ""
26349
26350 #. type: verbatim
26351 #: ../fish/guestfish-actions.pod:3837
26352 #, no-wrap
26353 msgid ""
26354 " rm-rf path\n"
26355 "\n"
26356 msgstr ""
26357
26358 #. type: =head2
26359 #: ../fish/guestfish-actions.pod:3843
26360 msgid "rmdir"
26361 msgstr ""
26362
26363 #. type: verbatim
26364 #: ../fish/guestfish-actions.pod:3845
26365 #, no-wrap
26366 msgid ""
26367 " rmdir path\n"
26368 "\n"
26369 msgstr ""
26370
26371 #. type: =head2
26372 #: ../fish/guestfish-actions.pod:3849
26373 msgid "rmmountpoint"
26374 msgstr ""
26375
26376 #. type: verbatim
26377 #: ../fish/guestfish-actions.pod:3851
26378 #, no-wrap
26379 msgid ""
26380 " rmmountpoint exemptpath\n"
26381 "\n"
26382 msgstr ""
26383
26384 #. type: textblock
26385 #: ../fish/guestfish-actions.pod:3853
26386 msgid ""
26387 "This calls removes a mountpoint that was previously created with L</"
26388 "mkmountpoint>.  See L</mkmountpoint> for full details."
26389 msgstr ""
26390
26391 #. type: =head2
26392 #: ../fish/guestfish-actions.pod:3857
26393 msgid "scrub-device"
26394 msgstr ""
26395
26396 #. type: verbatim
26397 #: ../fish/guestfish-actions.pod:3859
26398 #, no-wrap
26399 msgid ""
26400 " scrub-device device\n"
26401 "\n"
26402 msgstr ""
26403
26404 #. type: =head2
26405 #: ../fish/guestfish-actions.pod:3870
26406 msgid "scrub-file"
26407 msgstr ""
26408
26409 #. type: verbatim
26410 #: ../fish/guestfish-actions.pod:3872
26411 #, no-wrap
26412 msgid ""
26413 " scrub-file file\n"
26414 "\n"
26415 msgstr ""
26416
26417 #. type: =head2
26418 #: ../fish/guestfish-actions.pod:3882
26419 msgid "scrub-freespace"
26420 msgstr ""
26421
26422 #. type: verbatim
26423 #: ../fish/guestfish-actions.pod:3884
26424 #, no-wrap
26425 msgid ""
26426 " scrub-freespace dir\n"
26427 "\n"
26428 msgstr ""
26429
26430 #. type: textblock
26431 #: ../fish/guestfish-actions.pod:3886
26432 msgid ""
26433 "This command creates the directory C<dir> and then fills it with files until "
26434 "the filesystem is full, and scrubs the files as for L</scrub-file>, and "
26435 "deletes them.  The intention is to scrub any free space on the partition "
26436 "containing C<dir>."
26437 msgstr ""
26438
26439 #. type: =head2
26440 #: ../fish/guestfish-actions.pod:3895
26441 msgid "set-append"
26442 msgstr ""
26443
26444 #. type: =head2
26445 #: ../fish/guestfish-actions.pod:3897
26446 msgid "append"
26447 msgstr ""
26448
26449 #. type: verbatim
26450 #: ../fish/guestfish-actions.pod:3899
26451 #, no-wrap
26452 msgid ""
26453 " set-append append\n"
26454 "\n"
26455 msgstr ""
26456
26457 #. type: =head2
26458 #: ../fish/guestfish-actions.pod:3910
26459 msgid "set-attach-method"
26460 msgstr ""
26461
26462 #. type: =head2
26463 #: ../fish/guestfish-actions.pod:3912
26464 msgid "attach-method"
26465 msgstr ""
26466
26467 #. type: verbatim
26468 #: ../fish/guestfish-actions.pod:3914
26469 #, no-wrap
26470 msgid ""
26471 " set-attach-method attachmethod\n"
26472 "\n"
26473 msgstr ""
26474
26475 #. type: =head2
26476 #: ../fish/guestfish-actions.pod:3936
26477 msgid "set-autosync"
26478 msgstr ""
26479
26480 #. type: =head2
26481 #: ../fish/guestfish-actions.pod:3938
26482 msgid "autosync"
26483 msgstr ""
26484
26485 #. type: verbatim
26486 #: ../fish/guestfish-actions.pod:3940
26487 #, no-wrap
26488 msgid ""
26489 " set-autosync true|false\n"
26490 "\n"
26491 msgstr ""
26492
26493 #. type: =head2
26494 #: ../fish/guestfish-actions.pod:3950
26495 msgid "set-direct"
26496 msgstr ""
26497
26498 #. type: =head2
26499 #: ../fish/guestfish-actions.pod:3952
26500 msgid "direct"
26501 msgstr ""
26502
26503 #. type: verbatim
26504 #: ../fish/guestfish-actions.pod:3954
26505 #, no-wrap
26506 msgid ""
26507 " set-direct true|false\n"
26508 "\n"
26509 msgstr ""
26510
26511 #. type: textblock
26512 #: ../fish/guestfish-actions.pod:3960
26513 msgid ""
26514 "One consequence of this is that log messages aren't caught by the library "
26515 "and handled by L</set-log-message-callback>, but go straight to stdout."
26516 msgstr ""
26517
26518 #. type: =head2
26519 #: ../fish/guestfish-actions.pod:3969
26520 msgid "set-e2label"
26521 msgstr ""
26522
26523 #. type: verbatim
26524 #: ../fish/guestfish-actions.pod:3971
26525 #, no-wrap
26526 msgid ""
26527 " set-e2label device label\n"
26528 "\n"
26529 msgstr ""
26530
26531 #. type: textblock
26532 #: ../fish/guestfish-actions.pod:3977
26533 msgid ""
26534 "You can use either L</tune2fs-l> or L</get-e2label> to return the existing "
26535 "label on a filesystem."
26536 msgstr ""
26537
26538 #. type: =head2
26539 #: ../fish/guestfish-actions.pod:3980
26540 msgid "set-e2uuid"
26541 msgstr ""
26542
26543 #. type: verbatim
26544 #: ../fish/guestfish-actions.pod:3982
26545 #, no-wrap
26546 msgid ""
26547 " set-e2uuid device uuid\n"
26548 "\n"
26549 msgstr ""
26550
26551 #. type: textblock
26552 #: ../fish/guestfish-actions.pod:3989
26553 msgid ""
26554 "You can use either L</tune2fs-l> or L</get-e2uuid> to return the existing "
26555 "UUID of a filesystem."
26556 msgstr ""
26557
26558 #. type: =head2
26559 #: ../fish/guestfish-actions.pod:3992
26560 msgid "set-memsize"
26561 msgstr ""
26562
26563 #. type: =head2
26564 #: ../fish/guestfish-actions.pod:3994
26565 msgid "memsize"
26566 msgstr ""
26567
26568 #. type: verbatim
26569 #: ../fish/guestfish-actions.pod:3996
26570 #, no-wrap
26571 msgid ""
26572 " set-memsize memsize\n"
26573 "\n"
26574 msgstr ""
26575
26576 #. type: textblock
26577 #: ../fish/guestfish-actions.pod:3998
26578 msgid ""
26579 "This sets the memory size in megabytes allocated to the qemu subprocess.  "
26580 "This only has any effect if called before L</launch>."
26581 msgstr ""
26582
26583 #. type: =head2
26584 #: ../fish/guestfish-actions.pod:4009
26585 msgid "set-network"
26586 msgstr ""
26587
26588 #. type: =head2
26589 #: ../fish/guestfish-actions.pod:4011
26590 msgid "network"
26591 msgstr ""
26592
26593 #. type: verbatim
26594 #: ../fish/guestfish-actions.pod:4013
26595 #, no-wrap
26596 msgid ""
26597 " set-network true|false\n"
26598 "\n"
26599 msgstr ""
26600
26601 #. type: textblock
26602 #: ../fish/guestfish-actions.pod:4021
26603 msgid ""
26604 "You must call this before calling L</launch>, otherwise it has no effect."
26605 msgstr ""
26606
26607 #. type: =head2
26608 #: ../fish/guestfish-actions.pod:4024
26609 msgid "set-path"
26610 msgstr ""
26611
26612 #. type: =head2
26613 #: ../fish/guestfish-actions.pod:4026
26614 msgid "path"
26615 msgstr ""
26616
26617 #. type: verbatim
26618 #: ../fish/guestfish-actions.pod:4028
26619 #, no-wrap
26620 msgid ""
26621 " set-path searchpath\n"
26622 "\n"
26623 msgstr ""
26624
26625 #. type: =head2
26626 #: ../fish/guestfish-actions.pod:4037
26627 msgid "set-qemu"
26628 msgstr ""
26629
26630 #. type: =head2
26631 #: ../fish/guestfish-actions.pod:4039
26632 msgid "qemu"
26633 msgstr ""
26634
26635 #. type: verbatim
26636 #: ../fish/guestfish-actions.pod:4041
26637 #, no-wrap
26638 msgid ""
26639 " set-qemu qemu\n"
26640 "\n"
26641 msgstr ""
26642
26643 #. type: =head2
26644 #: ../fish/guestfish-actions.pod:4061
26645 msgid "set-recovery-proc"
26646 msgstr ""
26647
26648 #. type: =head2
26649 #: ../fish/guestfish-actions.pod:4063
26650 msgid "recovery-proc"
26651 msgstr ""
26652
26653 #. type: verbatim
26654 #: ../fish/guestfish-actions.pod:4065
26655 #, no-wrap
26656 msgid ""
26657 " set-recovery-proc true|false\n"
26658 "\n"
26659 msgstr ""
26660
26661 #. type: textblock
26662 #: ../fish/guestfish-actions.pod:4067
26663 msgid ""
26664 "If this is called with the parameter C<false> then L</launch> does not "
26665 "create a recovery process.  The purpose of the recovery process is to stop "
26666 "runaway qemu processes in the case where the main program aborts abruptly."
26667 msgstr ""
26668
26669 #. type: textblock
26670 #: ../fish/guestfish-actions.pod:4072
26671 msgid ""
26672 "This only has any effect if called before L</launch>, and the default is "
26673 "true."
26674 msgstr ""
26675
26676 #. type: =head2
26677 #: ../fish/guestfish-actions.pod:4081
26678 msgid "set-selinux"
26679 msgstr ""
26680
26681 #. type: =head2
26682 #: ../fish/guestfish-actions.pod:4083
26683 msgid "selinux"
26684 msgstr ""
26685
26686 #. type: verbatim
26687 #: ../fish/guestfish-actions.pod:4085
26688 #, no-wrap
26689 msgid ""
26690 " set-selinux true|false\n"
26691 "\n"
26692 msgstr ""
26693
26694 #. type: =head2
26695 #: ../fish/guestfish-actions.pod:4096
26696 msgid "set-trace"
26697 msgstr ""
26698
26699 #. type: =head2
26700 #: ../fish/guestfish-actions.pod:4098
26701 msgid "trace"
26702 msgstr ""
26703
26704 #. type: verbatim
26705 #: ../fish/guestfish-actions.pod:4100
26706 #, no-wrap
26707 msgid ""
26708 " set-trace true|false\n"
26709 "\n"
26710 msgstr ""
26711
26712 #. type: textblock
26713 #: ../fish/guestfish-actions.pod:4112
26714 msgid ""
26715 "Trace messages are normally sent to C<stderr>, unless you register a "
26716 "callback to send them somewhere else (see L</set-event-callback>)."
26717 msgstr ""
26718
26719 #. type: =head2
26720 #: ../fish/guestfish-actions.pod:4116
26721 msgid "set-verbose"
26722 msgstr ""
26723
26724 #. type: =head2
26725 #: ../fish/guestfish-actions.pod:4118
26726 msgid "verbose"
26727 msgstr ""
26728
26729 #. type: verbatim
26730 #: ../fish/guestfish-actions.pod:4120
26731 #, no-wrap
26732 msgid ""
26733 " set-verbose true|false\n"
26734 "\n"
26735 msgstr ""
26736
26737 #. type: textblock
26738 #: ../fish/guestfish-actions.pod:4127
26739 msgid ""
26740 "Verbose messages are normally sent to C<stderr>, unless you register a "
26741 "callback to send them somewhere else (see L</set-event-callback>)."
26742 msgstr ""
26743
26744 #. type: =head2
26745 #: ../fish/guestfish-actions.pod:4131
26746 msgid "setcon"
26747 msgstr ""
26748
26749 #. type: verbatim
26750 #: ../fish/guestfish-actions.pod:4133
26751 #, no-wrap
26752 msgid ""
26753 " setcon context\n"
26754 "\n"
26755 msgstr ""
26756
26757 #. type: =head2
26758 #: ../fish/guestfish-actions.pod:4140
26759 msgid "setxattr"
26760 msgstr ""
26761
26762 #. type: verbatim
26763 #: ../fish/guestfish-actions.pod:4142
26764 #, no-wrap
26765 msgid ""
26766 " setxattr xattr val vallen path\n"
26767 "\n"
26768 msgstr ""
26769
26770 #. type: textblock
26771 #: ../fish/guestfish-actions.pod:4148
26772 msgid "See also: L</lsetxattr>, L<attr(5)>."
26773 msgstr ""
26774
26775 #. type: =head2
26776 #: ../fish/guestfish-actions.pod:4150
26777 msgid "sfdisk"
26778 msgstr ""
26779
26780 #. type: verbatim
26781 #: ../fish/guestfish-actions.pod:4152
26782 #, no-wrap
26783 msgid ""
26784 " sfdisk device cyls heads sectors 'lines ...'\n"
26785 "\n"
26786 msgstr ""
26787
26788 #. type: textblock
26789 #: ../fish/guestfish-actions.pod:4174
26790 msgid "See also: L</sfdisk-l>, L</sfdisk-N>, L</part-init>"
26791 msgstr ""
26792
26793 #. type: =head2
26794 #: ../fish/guestfish-actions.pod:4187
26795 msgid "sfdiskM"
26796 msgstr ""
26797
26798 #. type: verbatim
26799 #: ../fish/guestfish-actions.pod:4189
26800 #, no-wrap
26801 msgid ""
26802 " sfdiskM device 'lines ...'\n"
26803 "\n"
26804 msgstr ""
26805
26806 #. type: textblock
26807 #: ../fish/guestfish-actions.pod:4191
26808 msgid ""
26809 "This is a simplified interface to the L</sfdisk> command, where partition "
26810 "sizes are specified in megabytes only (rounded to the nearest cylinder) and "
26811 "you don't need to specify the cyls, heads and sectors parameters which were "
26812 "rarely if ever used anyway."
26813 msgstr ""
26814
26815 #. type: textblock
26816 #: ../fish/guestfish-actions.pod:4197
26817 msgid "See also: L</sfdisk>, the L<sfdisk(8)> manpage and L</part-disk>"
26818 msgstr ""
26819
26820 #. type: =head2
26821 #: ../fish/guestfish-actions.pod:4210
26822 msgid "sfdisk-N"
26823 msgstr ""
26824
26825 #. type: verbatim
26826 #: ../fish/guestfish-actions.pod:4212
26827 #, no-wrap
26828 msgid ""
26829 " sfdisk-N device partnum cyls heads sectors line\n"
26830 "\n"
26831 msgstr ""
26832
26833 #. type: textblock
26834 #: ../fish/guestfish-actions.pod:4217
26835 msgid ""
26836 "For other parameters, see L</sfdisk>.  You should usually pass C<0> for the "
26837 "cyls/heads/sectors parameters."
26838 msgstr ""
26839
26840 #. type: textblock
26841 #: ../fish/guestfish-actions.pod:4220
26842 msgid "See also: L</part-add>"
26843 msgstr ""
26844
26845 #. type: =head2
26846 #: ../fish/guestfish-actions.pod:4232
26847 msgid "sfdisk-disk-geometry"
26848 msgstr ""
26849
26850 #. type: verbatim
26851 #: ../fish/guestfish-actions.pod:4234
26852 #, no-wrap
26853 msgid ""
26854 " sfdisk-disk-geometry device\n"
26855 "\n"
26856 msgstr ""
26857
26858 #. type: textblock
26859 #: ../fish/guestfish-actions.pod:4236
26860 msgid ""
26861 "This displays the disk geometry of C<device> read from the partition table.  "
26862 "Especially in the case where the underlying block device has been resized, "
26863 "this can be different from the kernel's idea of the geometry (see L</sfdisk-"
26864 "kernel-geometry>)."
26865 msgstr ""
26866
26867 #. type: =head2
26868 #: ../fish/guestfish-actions.pod:4244
26869 msgid "sfdisk-kernel-geometry"
26870 msgstr ""
26871
26872 #. type: verbatim
26873 #: ../fish/guestfish-actions.pod:4246
26874 #, no-wrap
26875 msgid ""
26876 " sfdisk-kernel-geometry device\n"
26877 "\n"
26878 msgstr ""
26879
26880 #. type: =head2
26881 #: ../fish/guestfish-actions.pod:4253
26882 msgid "sfdisk-l"
26883 msgstr ""
26884
26885 #. type: verbatim
26886 #: ../fish/guestfish-actions.pod:4255
26887 #, no-wrap
26888 msgid ""
26889 " sfdisk-l device\n"
26890 "\n"
26891 msgstr ""
26892
26893 #. type: textblock
26894 #: ../fish/guestfish-actions.pod:4261
26895 msgid "See also: L</part-list>"
26896 msgstr ""
26897
26898 #. type: =head2
26899 #: ../fish/guestfish-actions.pod:4270
26900 msgid "sh"
26901 msgstr ""
26902
26903 #. type: verbatim
26904 #: ../fish/guestfish-actions.pod:4272
26905 #, no-wrap
26906 msgid ""
26907 " sh command\n"
26908 "\n"
26909 msgstr ""
26910
26911 #. type: textblock
26912 #: ../fish/guestfish-actions.pod:4277
26913 msgid "This is like L</command>, but passes the command to:"
26914 msgstr ""
26915
26916 #. type: textblock
26917 #: ../fish/guestfish-actions.pod:4285
26918 msgid "All the provisos about L</command> apply to this call."
26919 msgstr ""
26920
26921 #. type: =head2
26922 #: ../fish/guestfish-actions.pod:4287
26923 msgid "sh-lines"
26924 msgstr ""
26925
26926 #. type: verbatim
26927 #: ../fish/guestfish-actions.pod:4289
26928 #, no-wrap
26929 msgid ""
26930 " sh-lines command\n"
26931 "\n"
26932 msgstr ""
26933
26934 #. type: textblock
26935 #: ../fish/guestfish-actions.pod:4291
26936 msgid "This is the same as L</sh>, but splits the result into a list of lines."
26937 msgstr ""
26938
26939 #. type: textblock
26940 #: ../fish/guestfish-actions.pod:4294
26941 msgid "See also: L</command-lines>"
26942 msgstr ""
26943
26944 #. type: =head2
26945 #: ../fish/guestfish-actions.pod:4296
26946 msgid "sleep"
26947 msgstr ""
26948
26949 #. type: verbatim
26950 #: ../fish/guestfish-actions.pod:4298
26951 #, no-wrap
26952 msgid ""
26953 " sleep secs\n"
26954 "\n"
26955 msgstr ""
26956
26957 #. type: =head2
26958 #: ../fish/guestfish-actions.pod:4302
26959 msgid "stat"
26960 msgstr ""
26961
26962 #. type: verbatim
26963 #: ../fish/guestfish-actions.pod:4304
26964 #, no-wrap
26965 msgid ""
26966 " stat path\n"
26967 "\n"
26968 msgstr ""
26969
26970 #. type: =head2
26971 #: ../fish/guestfish-actions.pod:4310
26972 msgid "statvfs"
26973 msgstr ""
26974
26975 #. type: verbatim
26976 #: ../fish/guestfish-actions.pod:4312
26977 #, no-wrap
26978 msgid ""
26979 " statvfs path\n"
26980 "\n"
26981 msgstr ""
26982
26983 #. type: =head2
26984 #: ../fish/guestfish-actions.pod:4320
26985 msgid "strings"
26986 msgstr ""
26987
26988 #. type: verbatim
26989 #: ../fish/guestfish-actions.pod:4322
26990 #, no-wrap
26991 msgid ""
26992 " strings path\n"
26993 "\n"
26994 msgstr ""
26995
26996 #. type: =head2
26997 #: ../fish/guestfish-actions.pod:4330
26998 msgid "strings-e"
26999 msgstr ""
27000
27001 #. type: verbatim
27002 #: ../fish/guestfish-actions.pod:4332
27003 #, no-wrap
27004 msgid ""
27005 " strings-e encoding path\n"
27006 "\n"
27007 msgstr ""
27008
27009 #. type: textblock
27010 #: ../fish/guestfish-actions.pod:4334
27011 msgid ""
27012 "This is like the L</strings> command, but allows you to specify the encoding "
27013 "of strings that are looked for in the source file C<path>."
27014 msgstr ""
27015
27016 #. type: textblock
27017 #: ../fish/guestfish-actions.pod:4344
27018 msgid ""
27019 "Single 7-bit-byte characters like ASCII and the ASCII-compatible parts of "
27020 "ISO-8859-X (this is what L</strings> uses)."
27021 msgstr ""
27022
27023 #. type: =head2
27024 #: ../fish/guestfish-actions.pod:4376
27025 msgid "swapoff-device"
27026 msgstr ""
27027
27028 #. type: verbatim
27029 #: ../fish/guestfish-actions.pod:4378
27030 #, no-wrap
27031 msgid ""
27032 " swapoff-device device\n"
27033 "\n"
27034 msgstr ""
27035
27036 #. type: textblock
27037 #: ../fish/guestfish-actions.pod:4380
27038 msgid ""
27039 "This command disables the libguestfs appliance swap device or partition "
27040 "named C<device>.  See L</swapon-device>."
27041 msgstr ""
27042
27043 #. type: =head2
27044 #: ../fish/guestfish-actions.pod:4384
27045 msgid "swapoff-file"
27046 msgstr ""
27047
27048 #. type: verbatim
27049 #: ../fish/guestfish-actions.pod:4386
27050 #, no-wrap
27051 msgid ""
27052 " swapoff-file file\n"
27053 "\n"
27054 msgstr ""
27055
27056 #. type: =head2
27057 #: ../fish/guestfish-actions.pod:4390
27058 msgid "swapoff-label"
27059 msgstr ""
27060
27061 #. type: verbatim
27062 #: ../fish/guestfish-actions.pod:4392
27063 #, no-wrap
27064 msgid ""
27065 " swapoff-label label\n"
27066 "\n"
27067 msgstr ""
27068
27069 #. type: =head2
27070 #: ../fish/guestfish-actions.pod:4397
27071 msgid "swapoff-uuid"
27072 msgstr ""
27073
27074 #. type: verbatim
27075 #: ../fish/guestfish-actions.pod:4399
27076 #, no-wrap
27077 msgid ""
27078 " swapoff-uuid uuid\n"
27079 "\n"
27080 msgstr ""
27081
27082 #. type: =head2
27083 #: ../fish/guestfish-actions.pod:4404
27084 msgid "swapon-device"
27085 msgstr ""
27086
27087 #. type: verbatim
27088 #: ../fish/guestfish-actions.pod:4406
27089 #, no-wrap
27090 msgid ""
27091 " swapon-device device\n"
27092 "\n"
27093 msgstr ""
27094
27095 #. type: textblock
27096 #: ../fish/guestfish-actions.pod:4408
27097 msgid ""
27098 "This command enables the libguestfs appliance to use the swap device or "
27099 "partition named C<device>.  The increased memory is made available for all "
27100 "commands, for example those run using L</command> or L</sh>."
27101 msgstr ""
27102
27103 #. type: =head2
27104 #: ../fish/guestfish-actions.pod:4420
27105 msgid "swapon-file"
27106 msgstr ""
27107
27108 #. type: verbatim
27109 #: ../fish/guestfish-actions.pod:4422
27110 #, no-wrap
27111 msgid ""
27112 " swapon-file file\n"
27113 "\n"
27114 msgstr ""
27115
27116 #. type: textblock
27117 #: ../fish/guestfish-actions.pod:4424
27118 msgid ""
27119 "This command enables swap to a file.  See L</swapon-device> for other notes."
27120 msgstr ""
27121
27122 #. type: =head2
27123 #: ../fish/guestfish-actions.pod:4427
27124 msgid "swapon-label"
27125 msgstr ""
27126
27127 #. type: verbatim
27128 #: ../fish/guestfish-actions.pod:4429
27129 #, no-wrap
27130 msgid ""
27131 " swapon-label label\n"
27132 "\n"
27133 msgstr ""
27134
27135 #. type: textblock
27136 #: ../fish/guestfish-actions.pod:4431
27137 msgid ""
27138 "This command enables swap to a labeled swap partition.  See L</swapon-"
27139 "device> for other notes."
27140 msgstr ""
27141
27142 #. type: =head2
27143 #: ../fish/guestfish-actions.pod:4434
27144 msgid "swapon-uuid"
27145 msgstr ""
27146
27147 #. type: verbatim
27148 #: ../fish/guestfish-actions.pod:4436
27149 #, no-wrap
27150 msgid ""
27151 " swapon-uuid uuid\n"
27152 "\n"
27153 msgstr ""
27154
27155 #. type: textblock
27156 #: ../fish/guestfish-actions.pod:4438
27157 msgid ""
27158 "This command enables swap to a swap partition with the given UUID.  See L</"
27159 "swapon-device> for other notes."
27160 msgstr ""
27161
27162 #. type: =head2
27163 #: ../fish/guestfish-actions.pod:4441
27164 msgid "sync"
27165 msgstr ""
27166
27167 #. type: verbatim
27168 #: ../fish/guestfish-actions.pod:4443
27169 #, no-wrap
27170 msgid ""
27171 " sync\n"
27172 "\n"
27173 msgstr ""
27174
27175 #. type: =head2
27176 #: ../fish/guestfish-actions.pod:4451
27177 msgid "tail"
27178 msgstr ""
27179
27180 #. type: verbatim
27181 #: ../fish/guestfish-actions.pod:4453
27182 #, no-wrap
27183 msgid ""
27184 " tail path\n"
27185 "\n"
27186 msgstr ""
27187
27188 #. type: =head2
27189 #: ../fish/guestfish-actions.pod:4461
27190 msgid "tail-n"
27191 msgstr ""
27192
27193 #. type: verbatim
27194 #: ../fish/guestfish-actions.pod:4463
27195 #, no-wrap
27196 msgid ""
27197 " tail-n nrlines path\n"
27198 "\n"
27199 msgstr ""
27200
27201 #. type: =head2
27202 #: ../fish/guestfish-actions.pod:4476
27203 msgid "tar-in"
27204 msgstr ""
27205
27206 #. type: verbatim
27207 #: ../fish/guestfish-actions.pod:4478
27208 #, no-wrap
27209 msgid ""
27210 " tar-in (tarfile|-) directory\n"
27211 "\n"
27212 msgstr ""
27213
27214 #. type: textblock
27215 #: ../fish/guestfish-actions.pod:4483
27216 msgid "To upload a compressed tarball, use L</tgz-in> or L</txz-in>."
27217 msgstr ""
27218
27219 #. type: =head2
27220 #: ../fish/guestfish-actions.pod:4488
27221 msgid "tar-out"
27222 msgstr ""
27223
27224 #. type: verbatim
27225 #: ../fish/guestfish-actions.pod:4490
27226 #, no-wrap
27227 msgid ""
27228 " tar-out directory (tarfile|-)\n"
27229 "\n"
27230 msgstr ""
27231
27232 #. type: textblock
27233 #: ../fish/guestfish-actions.pod:4495
27234 msgid "To download a compressed tarball, use L</tgz-out> or L</txz-out>."
27235 msgstr ""
27236
27237 #. type: =head2
27238 #: ../fish/guestfish-actions.pod:4500
27239 msgid "tgz-in"
27240 msgstr ""
27241
27242 #. type: verbatim
27243 #: ../fish/guestfish-actions.pod:4502
27244 #, no-wrap
27245 msgid ""
27246 " tgz-in (tarball|-) directory\n"
27247 "\n"
27248 msgstr ""
27249
27250 #. type: textblock
27251 #: ../fish/guestfish-actions.pod:4507
27252 msgid "To upload an uncompressed tarball, use L</tar-in>."
27253 msgstr ""
27254
27255 #. type: =head2
27256 #: ../fish/guestfish-actions.pod:4511
27257 msgid "tgz-out"
27258 msgstr ""
27259
27260 #. type: verbatim
27261 #: ../fish/guestfish-actions.pod:4513
27262 #, no-wrap
27263 msgid ""
27264 " tgz-out directory (tarball|-)\n"
27265 "\n"
27266 msgstr ""
27267
27268 #. type: textblock
27269 #: ../fish/guestfish-actions.pod:4518
27270 msgid "To download an uncompressed tarball, use L</tar-out>."
27271 msgstr ""
27272
27273 #. type: =head2
27274 #: ../fish/guestfish-actions.pod:4522
27275 msgid "touch"
27276 msgstr ""
27277
27278 #. type: verbatim
27279 #: ../fish/guestfish-actions.pod:4524
27280 #, no-wrap
27281 msgid ""
27282 " touch path\n"
27283 "\n"
27284 msgstr ""
27285
27286 #. type: =head2
27287 #: ../fish/guestfish-actions.pod:4533
27288 msgid "truncate"
27289 msgstr ""
27290
27291 #. type: verbatim
27292 #: ../fish/guestfish-actions.pod:4535
27293 #, no-wrap
27294 msgid ""
27295 " truncate path\n"
27296 "\n"
27297 msgstr ""
27298
27299 #. type: =head2
27300 #: ../fish/guestfish-actions.pod:4540
27301 msgid "truncate-size"
27302 msgstr ""
27303
27304 #. type: verbatim
27305 #: ../fish/guestfish-actions.pod:4542
27306 #, no-wrap
27307 msgid ""
27308 " truncate-size path size\n"
27309 "\n"
27310 msgstr ""
27311
27312 #. type: textblock
27313 #: ../fish/guestfish-actions.pod:4547
27314 msgid ""
27315 "If the current file size is less than C<size> then the file is extended to "
27316 "the required size with zero bytes.  This creates a sparse file (ie. disk "
27317 "blocks are not allocated for the file until you write to it).  To create a "
27318 "non-sparse file of zeroes, use L</fallocate64> instead."
27319 msgstr ""
27320
27321 #. type: =head2
27322 #: ../fish/guestfish-actions.pod:4553
27323 msgid "tune2fs-l"
27324 msgstr ""
27325
27326 #. type: verbatim
27327 #: ../fish/guestfish-actions.pod:4555
27328 #, no-wrap
27329 msgid ""
27330 " tune2fs-l device\n"
27331 "\n"
27332 msgstr ""
27333
27334 #. type: =head2
27335 #: ../fish/guestfish-actions.pod:4565
27336 msgid "txz-in"
27337 msgstr ""
27338
27339 #. type: verbatim
27340 #: ../fish/guestfish-actions.pod:4567
27341 #, no-wrap
27342 msgid ""
27343 " txz-in (tarball|-) directory\n"
27344 "\n"
27345 msgstr ""
27346
27347 #. type: =head2
27348 #: ../fish/guestfish-actions.pod:4574
27349 msgid "txz-out"
27350 msgstr ""
27351
27352 #. type: verbatim
27353 #: ../fish/guestfish-actions.pod:4576
27354 #, no-wrap
27355 msgid ""
27356 " txz-out directory (tarball|-)\n"
27357 "\n"
27358 msgstr ""
27359
27360 #. type: =head2
27361 #: ../fish/guestfish-actions.pod:4583
27362 msgid "umask"
27363 msgstr ""
27364
27365 #. type: verbatim
27366 #: ../fish/guestfish-actions.pod:4585
27367 #, no-wrap
27368 msgid ""
27369 " umask mask\n"
27370 "\n"
27371 msgstr ""
27372
27373 #. type: textblock
27374 #: ../fish/guestfish-actions.pod:4599
27375 msgid "See also L</get-umask>, L<umask(2)>, L</mknod>, L</mkdir>."
27376 msgstr ""
27377
27378 #. type: =head2
27379 #: ../fish/guestfish-actions.pod:4604
27380 msgid "umount"
27381 msgstr ""
27382
27383 #. type: =head2
27384 #: ../fish/guestfish-actions.pod:4606
27385 msgid "unmount"
27386 msgstr ""
27387
27388 #. type: verbatim
27389 #: ../fish/guestfish-actions.pod:4608
27390 #, no-wrap
27391 msgid ""
27392 " umount pathordevice\n"
27393 "\n"
27394 msgstr ""
27395
27396 #. type: =head2
27397 #: ../fish/guestfish-actions.pod:4614
27398 msgid "umount-all"
27399 msgstr ""
27400
27401 #. type: =head2
27402 #: ../fish/guestfish-actions.pod:4616
27403 msgid "unmount-all"
27404 msgstr ""
27405
27406 #. type: verbatim
27407 #: ../fish/guestfish-actions.pod:4618
27408 #, no-wrap
27409 msgid ""
27410 " umount-all\n"
27411 "\n"
27412 msgstr ""
27413
27414 #. type: =head2
27415 #: ../fish/guestfish-actions.pod:4624
27416 msgid "upload"
27417 msgstr ""
27418
27419 #. type: verbatim
27420 #: ../fish/guestfish-actions.pod:4626
27421 #, no-wrap
27422 msgid ""
27423 " upload (filename|-) remotefilename\n"
27424 "\n"
27425 msgstr ""
27426
27427 #. type: textblock
27428 #: ../fish/guestfish-actions.pod:4633
27429 msgid "See also L</download>."
27430 msgstr ""
27431
27432 #. type: =head2
27433 #: ../fish/guestfish-actions.pod:4637
27434 msgid "upload-offset"
27435 msgstr ""
27436
27437 #. type: verbatim
27438 #: ../fish/guestfish-actions.pod:4639
27439 #, no-wrap
27440 msgid ""
27441 " upload-offset (filename|-) remotefilename offset\n"
27442 "\n"
27443 msgstr ""
27444
27445 #. type: textblock
27446 #: ../fish/guestfish-actions.pod:4651
27447 msgid ""
27448 "Note that there is no limit on the amount of data that can be uploaded with "
27449 "this call, unlike with L</pwrite>, and this call always writes the full "
27450 "amount unless an error occurs."
27451 msgstr ""
27452
27453 #. type: textblock
27454 #: ../fish/guestfish-actions.pod:4656
27455 msgid "See also L</upload>, L</pwrite>."
27456 msgstr ""
27457
27458 #. type: =head2
27459 #: ../fish/guestfish-actions.pod:4660
27460 msgid "utimens"
27461 msgstr ""
27462
27463 #. type: verbatim
27464 #: ../fish/guestfish-actions.pod:4662
27465 #, no-wrap
27466 msgid ""
27467 " utimens path atsecs atnsecs mtsecs mtnsecs\n"
27468 "\n"
27469 msgstr ""
27470
27471 #. type: =head2
27472 #: ../fish/guestfish-actions.pod:4681
27473 msgid "version"
27474 msgstr ""
27475
27476 #. type: verbatim
27477 #: ../fish/guestfish-actions.pod:4683
27478 #, no-wrap
27479 msgid ""
27480 " version\n"
27481 "\n"
27482 msgstr ""
27483
27484 #. type: textblock
27485 #: ../fish/guestfish-actions.pod:4710
27486 msgid ""
27487 "I<Note:> Don't use this call to test for availability of features.  In "
27488 "enterprise distributions we backport features from later versions into "
27489 "earlier versions, making this an unreliable way to test for features.  Use "
27490 "L</available> instead."
27491 msgstr ""
27492
27493 #. type: =head2
27494 #: ../fish/guestfish-actions.pod:4716
27495 msgid "vfs-label"
27496 msgstr ""
27497
27498 #. type: verbatim
27499 #: ../fish/guestfish-actions.pod:4718
27500 #, no-wrap
27501 msgid ""
27502 " vfs-label device\n"
27503 "\n"
27504 msgstr ""
27505
27506 #. type: textblock
27507 #: ../fish/guestfish-actions.pod:4725
27508 msgid "To find a filesystem from the label, use L</findfs-label>."
27509 msgstr ""
27510
27511 #. type: =head2
27512 #: ../fish/guestfish-actions.pod:4727
27513 msgid "vfs-type"
27514 msgstr ""
27515
27516 #. type: verbatim
27517 #: ../fish/guestfish-actions.pod:4729
27518 #, no-wrap
27519 msgid ""
27520 " vfs-type device\n"
27521 "\n"
27522 msgstr ""
27523
27524 #. type: =head2
27525 #: ../fish/guestfish-actions.pod:4739
27526 msgid "vfs-uuid"
27527 msgstr ""
27528
27529 #. type: verbatim
27530 #: ../fish/guestfish-actions.pod:4741
27531 #, no-wrap
27532 msgid ""
27533 " vfs-uuid device\n"
27534 "\n"
27535 msgstr ""
27536
27537 #. type: textblock
27538 #: ../fish/guestfish-actions.pod:4748
27539 msgid "To find a filesystem from the UUID, use L</findfs-uuid>."
27540 msgstr ""
27541
27542 #. type: =head2
27543 #: ../fish/guestfish-actions.pod:4750
27544 msgid "vg-activate"
27545 msgstr ""
27546
27547 #. type: verbatim
27548 #: ../fish/guestfish-actions.pod:4752
27549 #, no-wrap
27550 msgid ""
27551 " vg-activate true|false 'volgroups ...'\n"
27552 "\n"
27553 msgstr ""
27554
27555 #. type: =head2
27556 #: ../fish/guestfish-actions.pod:4765
27557 msgid "vg-activate-all"
27558 msgstr ""
27559
27560 #. type: verbatim
27561 #: ../fish/guestfish-actions.pod:4767
27562 #, no-wrap
27563 msgid ""
27564 " vg-activate-all true|false\n"
27565 "\n"
27566 msgstr ""
27567
27568 #. type: =head2
27569 #: ../fish/guestfish-actions.pod:4777
27570 msgid "vgcreate"
27571 msgstr ""
27572
27573 #. type: verbatim
27574 #: ../fish/guestfish-actions.pod:4779
27575 #, no-wrap
27576 msgid ""
27577 " vgcreate volgroup 'physvols ...'\n"
27578 "\n"
27579 msgstr ""
27580
27581 #. type: =head2
27582 #: ../fish/guestfish-actions.pod:4784
27583 msgid "vglvuuids"
27584 msgstr ""
27585
27586 #. type: verbatim
27587 #: ../fish/guestfish-actions.pod:4786
27588 #, no-wrap
27589 msgid ""
27590 " vglvuuids vgname\n"
27591 "\n"
27592 msgstr ""
27593
27594 #. type: textblock
27595 #: ../fish/guestfish-actions.pod:4791
27596 msgid ""
27597 "You can use this along with L</lvs> and L</lvuuid> calls to associate "
27598 "logical volumes and volume groups."
27599 msgstr ""
27600
27601 #. type: textblock
27602 #: ../fish/guestfish-actions.pod:4794
27603 msgid "See also L</vgpvuuids>."
27604 msgstr ""
27605
27606 #. type: =head2
27607 #: ../fish/guestfish-actions.pod:4796
27608 msgid "vgpvuuids"
27609 msgstr ""
27610
27611 #. type: verbatim
27612 #: ../fish/guestfish-actions.pod:4798
27613 #, no-wrap
27614 msgid ""
27615 " vgpvuuids vgname\n"
27616 "\n"
27617 msgstr ""
27618
27619 #. type: textblock
27620 #: ../fish/guestfish-actions.pod:4803
27621 msgid ""
27622 "You can use this along with L</pvs> and L</pvuuid> calls to associate "
27623 "physical volumes and volume groups."
27624 msgstr ""
27625
27626 #. type: textblock
27627 #: ../fish/guestfish-actions.pod:4806
27628 msgid "See also L</vglvuuids>."
27629 msgstr ""
27630
27631 #. type: =head2
27632 #: ../fish/guestfish-actions.pod:4808
27633 msgid "vgremove"
27634 msgstr ""
27635
27636 #. type: verbatim
27637 #: ../fish/guestfish-actions.pod:4810
27638 #, no-wrap
27639 msgid ""
27640 " vgremove vgname\n"
27641 "\n"
27642 msgstr ""
27643
27644 #. type: =head2
27645 #: ../fish/guestfish-actions.pod:4817
27646 msgid "vgrename"
27647 msgstr ""
27648
27649 #. type: verbatim
27650 #: ../fish/guestfish-actions.pod:4819
27651 #, no-wrap
27652 msgid ""
27653 " vgrename volgroup newvolgroup\n"
27654 "\n"
27655 msgstr ""
27656
27657 #. type: =head2
27658 #: ../fish/guestfish-actions.pod:4823
27659 msgid "vgs"
27660 msgstr ""
27661
27662 #. type: verbatim
27663 #: ../fish/guestfish-actions.pod:4825
27664 #, no-wrap
27665 msgid ""
27666 " vgs\n"
27667 "\n"
27668 msgstr ""
27669
27670 #. type: textblock
27671 #: ../fish/guestfish-actions.pod:4833
27672 msgid "See also L</vgs-full>."
27673 msgstr ""
27674
27675 #. type: =head2
27676 #: ../fish/guestfish-actions.pod:4835
27677 msgid "vgs-full"
27678 msgstr ""
27679
27680 #. type: verbatim
27681 #: ../fish/guestfish-actions.pod:4837
27682 #, no-wrap
27683 msgid ""
27684 " vgs-full\n"
27685 "\n"
27686 msgstr ""
27687
27688 #. type: =head2
27689 #: ../fish/guestfish-actions.pod:4842
27690 msgid "vgscan"
27691 msgstr ""
27692
27693 #. type: verbatim
27694 #: ../fish/guestfish-actions.pod:4844
27695 #, no-wrap
27696 msgid ""
27697 " vgscan\n"
27698 "\n"
27699 msgstr ""
27700
27701 #. type: =head2
27702 #: ../fish/guestfish-actions.pod:4849
27703 msgid "vguuid"
27704 msgstr ""
27705
27706 #. type: verbatim
27707 #: ../fish/guestfish-actions.pod:4851
27708 #, no-wrap
27709 msgid ""
27710 " vguuid vgname\n"
27711 "\n"
27712 msgstr ""
27713
27714 #. type: =head2
27715 #: ../fish/guestfish-actions.pod:4855
27716 msgid "wc-c"
27717 msgstr ""
27718
27719 #. type: verbatim
27720 #: ../fish/guestfish-actions.pod:4857
27721 #, no-wrap
27722 msgid ""
27723 " wc-c path\n"
27724 "\n"
27725 msgstr ""
27726
27727 #. type: =head2
27728 #: ../fish/guestfish-actions.pod:4862
27729 msgid "wc-l"
27730 msgstr ""
27731
27732 #. type: verbatim
27733 #: ../fish/guestfish-actions.pod:4864
27734 #, no-wrap
27735 msgid ""
27736 " wc-l path\n"
27737 "\n"
27738 msgstr ""
27739
27740 #. type: =head2
27741 #: ../fish/guestfish-actions.pod:4869
27742 msgid "wc-w"
27743 msgstr ""
27744
27745 #. type: verbatim
27746 #: ../fish/guestfish-actions.pod:4871
27747 #, no-wrap
27748 msgid ""
27749 " wc-w path\n"
27750 "\n"
27751 msgstr ""
27752
27753 #. type: =head2
27754 #: ../fish/guestfish-actions.pod:4876
27755 msgid "write"
27756 msgstr ""
27757
27758 #. type: verbatim
27759 #: ../fish/guestfish-actions.pod:4878
27760 #, no-wrap
27761 msgid ""
27762 " write path content\n"
27763 "\n"
27764 msgstr ""
27765
27766 #. type: =head2
27767 #: ../fish/guestfish-actions.pod:4886
27768 msgid "write-file"
27769 msgstr ""
27770
27771 #. type: verbatim
27772 #: ../fish/guestfish-actions.pod:4888
27773 #, no-wrap
27774 msgid ""
27775 " write-file path content size\n"
27776 "\n"
27777 msgstr ""
27778
27779 #. type: =head2
27780 #: ../fish/guestfish-actions.pod:4911
27781 msgid "zegrep"
27782 msgstr ""
27783
27784 #. type: verbatim
27785 #: ../fish/guestfish-actions.pod:4913
27786 #, no-wrap
27787 msgid ""
27788 " zegrep regex path\n"
27789 "\n"
27790 msgstr ""
27791
27792 #. type: =head2
27793 #: ../fish/guestfish-actions.pod:4921
27794 msgid "zegrepi"
27795 msgstr ""
27796
27797 #. type: verbatim
27798 #: ../fish/guestfish-actions.pod:4923
27799 #, no-wrap
27800 msgid ""
27801 " zegrepi regex path\n"
27802 "\n"
27803 msgstr ""
27804
27805 #. type: =head2
27806 #: ../fish/guestfish-actions.pod:4931
27807 msgid "zero"
27808 msgstr ""
27809
27810 #. type: verbatim
27811 #: ../fish/guestfish-actions.pod:4933
27812 #, no-wrap
27813 msgid ""
27814 " zero device\n"
27815 "\n"
27816 msgstr ""
27817
27818 #. type: textblock
27819 #: ../fish/guestfish-actions.pod:4941
27820 msgid "See also: L</zero-device>, L</scrub-device>."
27821 msgstr ""
27822
27823 #. type: =head2
27824 #: ../fish/guestfish-actions.pod:4943
27825 msgid "zero-device"
27826 msgstr ""
27827
27828 #. type: verbatim
27829 #: ../fish/guestfish-actions.pod:4945
27830 #, no-wrap
27831 msgid ""
27832 " zero-device device\n"
27833 "\n"
27834 msgstr ""
27835
27836 #. type: textblock
27837 #: ../fish/guestfish-actions.pod:4947
27838 msgid ""
27839 "This command writes zeroes over the entire C<device>.  Compare with L</zero> "
27840 "which just zeroes the first few blocks of a device."
27841 msgstr ""
27842
27843 #. type: =head2
27844 #: ../fish/guestfish-actions.pod:4954
27845 msgid "zerofree"
27846 msgstr ""
27847
27848 #. type: verbatim
27849 #: ../fish/guestfish-actions.pod:4956
27850 #, no-wrap
27851 msgid ""
27852 " zerofree device\n"
27853 "\n"
27854 msgstr ""
27855
27856 #. type: =head2
27857 #: ../fish/guestfish-actions.pod:4969
27858 msgid "zfgrep"
27859 msgstr ""
27860
27861 #. type: verbatim
27862 #: ../fish/guestfish-actions.pod:4971
27863 #, no-wrap
27864 msgid ""
27865 " zfgrep pattern path\n"
27866 "\n"
27867 msgstr ""
27868
27869 #. type: =head2
27870 #: ../fish/guestfish-actions.pod:4979
27871 msgid "zfgrepi"
27872 msgstr ""
27873
27874 #. type: verbatim
27875 #: ../fish/guestfish-actions.pod:4981
27876 #, no-wrap
27877 msgid ""
27878 " zfgrepi pattern path\n"
27879 "\n"
27880 msgstr ""
27881
27882 #. type: =head2
27883 #: ../fish/guestfish-actions.pod:4989
27884 msgid "zfile"
27885 msgstr ""
27886
27887 #. type: verbatim
27888 #: ../fish/guestfish-actions.pod:4991
27889 #, no-wrap
27890 msgid ""
27891 " zfile meth path\n"
27892 "\n"
27893 msgstr ""
27894
27895 #. type: textblock
27896 #: ../fish/guestfish-actions.pod:4998
27897 msgid ""
27898 "Since 1.0.63, use L</file> instead which can now process compressed files."
27899 msgstr ""
27900
27901 #. type: =head2
27902 #: ../fish/guestfish-actions.pod:5008
27903 msgid "zgrep"
27904 msgstr ""
27905
27906 #. type: verbatim
27907 #: ../fish/guestfish-actions.pod:5010
27908 #, no-wrap
27909 msgid ""
27910 " zgrep regex path\n"
27911 "\n"
27912 msgstr ""
27913
27914 #. type: =head2
27915 #: ../fish/guestfish-actions.pod:5018
27916 msgid "zgrepi"
27917 msgstr ""
27918
27919 #. type: verbatim
27920 #: ../fish/guestfish-actions.pod:5020
27921 #, no-wrap
27922 msgid ""
27923 " zgrepi regex path\n"
27924 "\n"
27925 msgstr ""
27926
27927 #. type: =head2
27928 #: ../fish/guestfish-commands.pod:1
27929 msgid "alloc"
27930 msgstr ""
27931
27932 #. type: =head2
27933 #: ../fish/guestfish-commands.pod:3
27934 msgid "allocate"
27935 msgstr ""
27936
27937 #. type: verbatim
27938 #: ../fish/guestfish-commands.pod:5
27939 #, no-wrap
27940 msgid ""
27941 " alloc filename size\n"
27942 "\n"
27943 msgstr ""
27944
27945 #. type: textblock
27946 #: ../fish/guestfish-commands.pod:7
27947 msgid ""
27948 "This creates an empty (zeroed) file of the given size, and then adds so it "
27949 "can be further examined."
27950 msgstr ""
27951
27952 #. type: textblock
27953 #: ../fish/guestfish-commands.pod:10 ../fish/guestfish-commands.pod:168
27954 msgid "For more advanced image creation, see L<qemu-img(1)> utility."
27955 msgstr ""
27956
27957 #. type: textblock
27958 #: ../fish/guestfish-commands.pod:12 ../fish/guestfish-commands.pod:170
27959 msgid "Size can be specified using standard suffixes, eg. C<1M>."
27960 msgstr ""
27961
27962 #. type: textblock
27963 #: ../fish/guestfish-commands.pod:14
27964 msgid ""
27965 "To create a sparse file, use L</sparse> instead.  To create a prepared disk "
27966 "image, see L</PREPARED DISK IMAGES>."
27967 msgstr ""
27968
27969 #. type: =head2
27970 #: ../fish/guestfish-commands.pod:17
27971 msgid "copy-in"
27972 msgstr ""
27973
27974 #. type: verbatim
27975 #: ../fish/guestfish-commands.pod:19
27976 #, no-wrap
27977 msgid ""
27978 " copy-in local [local ...] /remotedir\n"
27979 "\n"
27980 msgstr ""
27981
27982 #. type: textblock
27983 #: ../fish/guestfish-commands.pod:21
27984 msgid ""
27985 "C<copy-in> copies local files or directories recursively into the disk "
27986 "image, placing them in the directory called C</remotedir> (which must "
27987 "exist).  This guestfish meta-command turns into a sequence of L</tar-in> and "
27988 "other commands as necessary."
27989 msgstr ""
27990
27991 #. type: textblock
27992 #: ../fish/guestfish-commands.pod:26
27993 msgid ""
27994 "Multiple local files and directories can be specified, but the last "
27995 "parameter must always be a remote directory.  Wildcards cannot be used."
27996 msgstr ""
27997
27998 #. type: =head2
27999 #: ../fish/guestfish-commands.pod:30
28000 msgid "copy-out"
28001 msgstr ""
28002
28003 #. type: verbatim
28004 #: ../fish/guestfish-commands.pod:32
28005 #, no-wrap
28006 msgid ""
28007 " copy-out remote [remote ...] localdir\n"
28008 "\n"
28009 msgstr ""
28010
28011 #. type: textblock
28012 #: ../fish/guestfish-commands.pod:34
28013 msgid ""
28014 "C<copy-out> copies remote files or directories recursively out of the disk "
28015 "image, placing them on the host disk in a local directory called C<localdir> "
28016 "(which must exist).  This guestfish meta-command turns into a sequence of L</"
28017 "download>, L</tar-out> and other commands as necessary."
28018 msgstr ""
28019
28020 #. type: textblock
28021 #: ../fish/guestfish-commands.pod:40
28022 msgid ""
28023 "Multiple remote files and directories can be specified, but the last "
28024 "parameter must always be a local directory.  To download to the current "
28025 "directory, use C<.> as in:"
28026 msgstr ""
28027
28028 #. type: verbatim
28029 #: ../fish/guestfish-commands.pod:44
28030 #, no-wrap
28031 msgid ""
28032 " copy-out /home .\n"
28033 "\n"
28034 msgstr ""
28035
28036 #. type: textblock
28037 #: ../fish/guestfish-commands.pod:46
28038 msgid ""
28039 "Wildcards cannot be used in the ordinary command, but you can use them with "
28040 "the help of L</glob> like this:"
28041 msgstr ""
28042
28043 #. type: verbatim
28044 #: ../fish/guestfish-commands.pod:49
28045 #, no-wrap
28046 msgid ""
28047 " glob copy-out /home/* .\n"
28048 "\n"
28049 msgstr ""
28050
28051 #. type: =head2
28052 #: ../fish/guestfish-commands.pod:51
28053 msgid "echo"
28054 msgstr ""
28055
28056 #. type: verbatim
28057 #: ../fish/guestfish-commands.pod:53
28058 #, no-wrap
28059 msgid ""
28060 " echo [params ...]\n"
28061 "\n"
28062 msgstr ""
28063
28064 #. type: textblock
28065 #: ../fish/guestfish-commands.pod:55
28066 msgid "This echos the parameters to the terminal."
28067 msgstr ""
28068
28069 #. type: =head2
28070 #: ../fish/guestfish-commands.pod:57
28071 msgid "edit"
28072 msgstr ""
28073
28074 #. type: =head2
28075 #: ../fish/guestfish-commands.pod:59
28076 msgid "vi"
28077 msgstr ""
28078
28079 #. type: =head2
28080 #: ../fish/guestfish-commands.pod:61
28081 msgid "emacs"
28082 msgstr ""
28083
28084 #. type: verbatim
28085 #: ../fish/guestfish-commands.pod:63
28086 #, no-wrap
28087 msgid ""
28088 " edit filename\n"
28089 "\n"
28090 msgstr ""
28091
28092 #. type: textblock
28093 #: ../fish/guestfish-commands.pod:65
28094 msgid ""
28095 "This is used to edit a file.  It downloads the file, edits it locally using "
28096 "your editor, then uploads the result."
28097 msgstr ""
28098
28099 #. type: textblock
28100 #: ../fish/guestfish-commands.pod:68
28101 msgid ""
28102 "The editor is C<$EDITOR>.  However if you use the alternate commands C<vi> "
28103 "or C<emacs> you will get those corresponding editors."
28104 msgstr ""
28105
28106 #. type: =head2
28107 #: ../fish/guestfish-commands.pod:72
28108 msgid "glob"
28109 msgstr ""
28110
28111 #. type: verbatim
28112 #: ../fish/guestfish-commands.pod:74
28113 #, no-wrap
28114 msgid ""
28115 " glob command args...\n"
28116 "\n"
28117 msgstr ""
28118
28119 #. type: textblock
28120 #: ../fish/guestfish-commands.pod:76
28121 msgid ""
28122 "Expand wildcards in any paths in the args list, and run C<command> "
28123 "repeatedly on each matching path."
28124 msgstr ""
28125
28126 #. type: textblock
28127 #: ../fish/guestfish-commands.pod:79
28128 msgid "See L</WILDCARDS AND GLOBBING>."
28129 msgstr ""
28130
28131 #. type: =head2
28132 #: ../fish/guestfish-commands.pod:81
28133 msgid "hexedit"
28134 msgstr ""
28135
28136 #. type: verbatim
28137 #: ../fish/guestfish-commands.pod:83
28138 #, no-wrap
28139 msgid ""
28140 " hexedit <filename|device>\n"
28141 " hexedit <filename|device> <max>\n"
28142 " hexedit <filename|device> <start> <max>\n"
28143 "\n"
28144 msgstr ""
28145
28146 #. type: textblock
28147 #: ../fish/guestfish-commands.pod:87
28148 msgid ""
28149 "Use hexedit (a hex editor) to edit all or part of a binary file or block "
28150 "device."
28151 msgstr ""
28152
28153 #. type: textblock
28154 #: ../fish/guestfish-commands.pod:90
28155 msgid ""
28156 "This command works by downloading potentially the whole file or device, "
28157 "editing it locally, then uploading it.  If the file or device is large, you "
28158 "have to specify which part you wish to edit by using C<max> and/or C<start> "
28159 "C<max> parameters.  C<start> and C<max> are specified in bytes, with the "
28160 "usual modifiers allowed such as C<1M> (1 megabyte)."
28161 msgstr ""
28162
28163 #. type: textblock
28164 #: ../fish/guestfish-commands.pod:97
28165 msgid "For example to edit the first few sectors of a disk you might do:"
28166 msgstr ""
28167
28168 #. type: verbatim
28169 #: ../fish/guestfish-commands.pod:100
28170 #, no-wrap
28171 msgid ""
28172 " hexedit /dev/sda 1M\n"
28173 "\n"
28174 msgstr ""
28175
28176 #. type: textblock
28177 #: ../fish/guestfish-commands.pod:102
28178 msgid ""
28179 "which would allow you to edit anywhere within the first megabyte of the disk."
28180 msgstr ""
28181
28182 #. type: textblock
28183 #: ../fish/guestfish-commands.pod:105
28184 msgid "To edit the superblock of an ext2 filesystem on C</dev/sda1>, do:"
28185 msgstr ""
28186
28187 #. type: verbatim
28188 #: ../fish/guestfish-commands.pod:107
28189 #, no-wrap
28190 msgid ""
28191 " hexedit /dev/sda1 0x400 0x400\n"
28192 "\n"
28193 msgstr ""
28194
28195 #. type: textblock
28196 #: ../fish/guestfish-commands.pod:109
28197 msgid "(assuming the superblock is in the standard location)."
28198 msgstr ""
28199
28200 #. type: textblock
28201 #: ../fish/guestfish-commands.pod:111
28202 msgid ""
28203 "This command requires the external L<hexedit(1)> program.  You can specify "
28204 "another program to use by setting the C<HEXEDITOR> environment variable."
28205 msgstr ""
28206
28207 #. type: textblock
28208 #: ../fish/guestfish-commands.pod:115
28209 msgid "See also L</hexdump>."
28210 msgstr ""
28211
28212 #. type: =head2
28213 #: ../fish/guestfish-commands.pod:117
28214 msgid "lcd"
28215 msgstr ""
28216
28217 #. type: verbatim
28218 #: ../fish/guestfish-commands.pod:119
28219 #, no-wrap
28220 msgid ""
28221 " lcd directory\n"
28222 "\n"
28223 msgstr ""
28224
28225 #. type: textblock
28226 #: ../fish/guestfish-commands.pod:121
28227 msgid ""
28228 "Change the local directory, ie. the current directory of guestfish itself."
28229 msgstr ""
28230
28231 #. type: textblock
28232 #: ../fish/guestfish-commands.pod:124
28233 msgid "Note that C<!cd> won't do what you might expect."
28234 msgstr ""
28235
28236 #. type: =head2
28237 #: ../fish/guestfish-commands.pod:126
28238 msgid "man"
28239 msgstr ""
28240
28241 #. type: =head2
28242 #: ../fish/guestfish-commands.pod:128
28243 msgid "manual"
28244 msgstr ""
28245
28246 #. type: verbatim
28247 #: ../fish/guestfish-commands.pod:130
28248 #, no-wrap
28249 msgid ""
28250 "  man\n"
28251 "\n"
28252 msgstr ""
28253
28254 #. type: textblock
28255 #: ../fish/guestfish-commands.pod:132
28256 msgid "Opens the manual page for guestfish."
28257 msgstr ""
28258
28259 #. type: =head2
28260 #: ../fish/guestfish-commands.pod:134
28261 msgid "more"
28262 msgstr ""
28263
28264 #. type: =head2
28265 #: ../fish/guestfish-commands.pod:136
28266 msgid "less"
28267 msgstr ""
28268
28269 #. type: verbatim
28270 #: ../fish/guestfish-commands.pod:138
28271 #, no-wrap
28272 msgid ""
28273 " more filename\n"
28274 "\n"
28275 msgstr ""
28276
28277 #. type: verbatim
28278 #: ../fish/guestfish-commands.pod:140
28279 #, no-wrap
28280 msgid ""
28281 " less filename\n"
28282 "\n"
28283 msgstr ""
28284
28285 #. type: textblock
28286 #: ../fish/guestfish-commands.pod:142
28287 msgid "This is used to view a file."
28288 msgstr ""
28289
28290 #. type: textblock
28291 #: ../fish/guestfish-commands.pod:144
28292 msgid ""
28293 "The default viewer is C<$PAGER>.  However if you use the alternate command "
28294 "C<less> you will get the C<less> command specifically."
28295 msgstr ""
28296
28297 #. type: =head2
28298 #: ../fish/guestfish-commands.pod:147
28299 msgid "reopen"
28300 msgstr ""
28301
28302 #. type: verbatim
28303 #: ../fish/guestfish-commands.pod:149
28304 #, no-wrap
28305 msgid ""
28306 "  reopen\n"
28307 "\n"
28308 msgstr ""
28309
28310 #. type: textblock
28311 #: ../fish/guestfish-commands.pod:151
28312 msgid ""
28313 "Close and reopen the libguestfs handle.  It is not necessary to use this "
28314 "normally, because the handle is closed properly when guestfish exits.  "
28315 "However this is occasionally useful for testing."
28316 msgstr ""
28317
28318 #. type: =head2
28319 #: ../fish/guestfish-commands.pod:155
28320 msgid "sparse"
28321 msgstr ""
28322
28323 #. type: verbatim
28324 #: ../fish/guestfish-commands.pod:157
28325 #, no-wrap
28326 msgid ""
28327 " sparse filename size\n"
28328 "\n"
28329 msgstr ""
28330
28331 #. type: textblock
28332 #: ../fish/guestfish-commands.pod:159
28333 msgid ""
28334 "This creates an empty sparse file of the given size, and then adds so it can "
28335 "be further examined."
28336 msgstr ""
28337
28338 #. type: textblock
28339 #: ../fish/guestfish-commands.pod:162
28340 msgid ""
28341 "In all respects it works the same as the L</alloc> command, except that the "
28342 "image file is allocated sparsely, which means that disk blocks are not "
28343 "assigned to the file until they are needed.  Sparse disk files only use "
28344 "space when written to, but they are slower and there is a danger you could "
28345 "run out of real disk space during a write operation."
28346 msgstr ""
28347
28348 #. type: =head2
28349 #: ../fish/guestfish-commands.pod:172
28350 msgid "supported"
28351 msgstr ""
28352
28353 #. type: verbatim
28354 #: ../fish/guestfish-commands.pod:174
28355 #, no-wrap
28356 msgid ""
28357 " supported\n"
28358 "\n"
28359 msgstr ""
28360
28361 #. type: textblock
28362 #: ../fish/guestfish-commands.pod:176
28363 msgid ""
28364 "This command returns a list of the optional groups known to the daemon, and "
28365 "indicates which ones are supported by this build of the libguestfs appliance."
28366 msgstr ""
28367
28368 #. type: textblock
28369 #: ../fish/guestfish-commands.pod:180
28370 msgid "See also L<guestfs(3)/AVAILABILITY>."
28371 msgstr ""
28372
28373 #. type: =head2
28374 #: ../fish/guestfish-commands.pod:182
28375 msgid "time"
28376 msgstr ""
28377
28378 #. type: verbatim
28379 #: ../fish/guestfish-commands.pod:184
28380 #, no-wrap
28381 msgid ""
28382 " time command args...\n"
28383 "\n"
28384 msgstr ""
28385
28386 #. type: textblock
28387 #: ../fish/guestfish-commands.pod:186
28388 msgid ""
28389 "Run the command as usual, but print the elapsed time afterwards.  This can "
28390 "be useful for benchmarking operations."
28391 msgstr ""
28392
28393 #. type: textblock
28394 #: ../test-tool/libguestfs-test-tool.pod:5
28395 msgid "libguestfs-test-tool - End user tests for libguestfs"
28396 msgstr ""
28397
28398 #. type: verbatim
28399 #: ../test-tool/libguestfs-test-tool.pod:9
28400 #, no-wrap
28401 msgid ""
28402 " libguestfs-test-tool [--options]\n"
28403 "\n"
28404 msgstr ""
28405
28406 #. type: textblock
28407 #: ../test-tool/libguestfs-test-tool.pod:13
28408 msgid ""
28409 "libguestfs-test-tool is a test program shipped with libguestfs to end users "
28410 "and developers, to allow them to check basic libguestfs functionality is "
28411 "working.  This is needed because libguestfs occasionally breaks for reasons "
28412 "beyond our control: usually because of changes in the underlying qemu or "
28413 "kernel packages, or the host environment."
28414 msgstr ""
28415
28416 #. type: textblock
28417 #: ../test-tool/libguestfs-test-tool.pod:20
28418 msgid "If you suspect a problem in libguestfs, then just run:"
28419 msgstr ""
28420
28421 #. type: verbatim
28422 #: ../test-tool/libguestfs-test-tool.pod:22
28423 #, no-wrap
28424 msgid ""
28425 " libguestfs-test-tool\n"
28426 "\n"
28427 msgstr ""
28428
28429 #. type: textblock
28430 #: ../test-tool/libguestfs-test-tool.pod:24
28431 msgid "It will print lots of diagnostic messages."
28432 msgstr ""
28433
28434 #. type: textblock
28435 #: ../test-tool/libguestfs-test-tool.pod:26
28436 msgid "If it runs to completion successfully, you will see this near the end:"
28437 msgstr ""
28438
28439 #. type: verbatim
28440 #: ../test-tool/libguestfs-test-tool.pod:28
28441 #, no-wrap
28442 msgid ""
28443 " ===== TEST FINISHED OK =====\n"
28444 "\n"
28445 msgstr ""
28446
28447 #. type: textblock
28448 #: ../test-tool/libguestfs-test-tool.pod:30
28449 msgid "and the test tool will exit with code 0."
28450 msgstr ""
28451
28452 #. type: textblock
28453 #: ../test-tool/libguestfs-test-tool.pod:32
28454 msgid ""
28455 "If it fails (and/or exits with non-zero error code), please paste the "
28456 "B<complete, unedited> output of the test tool into a bug report.  More "
28457 "information about reporting bugs can be found on the L<http://libguestfs.org/"
28458 "> website."
28459 msgstr ""
28460
28461 #. type: =item
28462 #: ../test-tool/libguestfs-test-tool.pod:41
28463 msgid "I<--help>"
28464 msgstr ""
28465
28466 #. type: textblock
28467 #: ../test-tool/libguestfs-test-tool.pod:43
28468 msgid "Display short usage information and exit."
28469 msgstr ""
28470
28471 #. type: =item
28472 #: ../test-tool/libguestfs-test-tool.pod:45
28473 msgid "I<--qemu qemu_binary>"
28474 msgstr ""
28475
28476 #. type: textblock
28477 #: ../test-tool/libguestfs-test-tool.pod:47
28478 msgid ""
28479 "If you have downloaded another qemu binary, point this option at the full "
28480 "path of the binary to try it."
28481 msgstr ""
28482
28483 #. type: =item
28484 #: ../test-tool/libguestfs-test-tool.pod:50
28485 msgid "I<--qemudir qemu_source_dir>"
28486 msgstr ""
28487
28488 #. type: textblock
28489 #: ../test-tool/libguestfs-test-tool.pod:52
28490 msgid ""
28491 "If you have compiled qemu from source, point this option at the source "
28492 "directory to try it."
28493 msgstr ""
28494
28495 #. type: =item
28496 #: ../test-tool/libguestfs-test-tool.pod:55
28497 msgid "I<--timeout N>"
28498 msgstr ""
28499
28500 #. type: textblock
28501 #: ../test-tool/libguestfs-test-tool.pod:57
28502 msgid ""
28503 "Set the launch timeout to C<N> seconds.  The default is 120 seconds which "
28504 "does not usually need to be adjusted unless your machine is very slow."
28505 msgstr ""
28506
28507 #. type: =head1
28508 #: ../test-tool/libguestfs-test-tool.pod:63
28509 msgid "TRYING OUT A DIFFERENT VERSION OF QEMU"
28510 msgstr ""
28511
28512 #. type: textblock
28513 #: ../test-tool/libguestfs-test-tool.pod:65
28514 msgid ""
28515 "If you have compiled another version of qemu from source and would like to "
28516 "try that, then you can use the I<--qemudir> option to point to the qemu "
28517 "source directory."
28518 msgstr ""
28519
28520 #. type: textblock
28521 #: ../test-tool/libguestfs-test-tool.pod:69
28522 msgid ""
28523 "If you have downloaded a qemu binary from somewhere, use the I<--qemu> "
28524 "option to point to the binary."
28525 msgstr ""
28526
28527 #. type: textblock
28528 #: ../test-tool/libguestfs-test-tool.pod:72
28529 msgid ""
28530 "When using an alternate qemu with libguestfs, usually you would need to "
28531 "write a qemu wrapper script (see section I<QEMU WRAPPERS> in L<guestfs(3)"
28532 ">).  libguestfs-test-tool writes a temporary qemu wrapper script when you "
28533 "use either of the I<--qemudir> or I<--qemu> options."
28534 msgstr ""
28535
28536 #. type: textblock
28537 #: ../test-tool/libguestfs-test-tool.pod:79
28538 msgid ""
28539 "libguestfs-test-tool returns I<0> if the tests completed without error, or "
28540 "I<1> if there was an error."
28541 msgstr ""
28542
28543 #. type: textblock
28544 #: ../test-tool/libguestfs-test-tool.pod:84
28545 msgid ""
28546 "For the full list of environment variables which may affect libguestfs, "
28547 "please see the L<guestfs(3)> manual page."
28548 msgstr ""
28549
28550 #. type: textblock
28551 #: ../test-tool/libguestfs-test-tool.pod:89
28552 msgid "L<guestfs(3)>, L<http://libguestfs.org/>, L<http://qemu.org/>."
28553 msgstr ""
28554
28555 #. type: textblock
28556 #: ../fuse/guestmount.pod:5
28557 msgid ""
28558 "guestmount - Mount a guest filesystem on the host using FUSE and libguestfs"
28559 msgstr ""
28560
28561 #. type: verbatim
28562 #: ../fuse/guestmount.pod:9
28563 #, no-wrap
28564 msgid ""
28565 " guestmount [--options] -a disk.img -m device [--ro] mountpoint\n"
28566 "\n"
28567 msgstr ""
28568
28569 #. type: verbatim
28570 #: ../fuse/guestmount.pod:11
28571 #, no-wrap
28572 msgid ""
28573 " guestmount [--options] -a disk.img -i [--ro] mountpoint\n"
28574 "\n"
28575 msgstr ""
28576
28577 #. type: verbatim
28578 #: ../fuse/guestmount.pod:13
28579 #, no-wrap
28580 msgid ""
28581 " guestmount [--options] -d Guest -i [--ro] mountpoint\n"
28582 "\n"
28583 msgstr ""
28584
28585 #. type: textblock
28586 #: ../fuse/guestmount.pod:17
28587 msgid ""
28588 "You must I<not> use C<guestmount> in read-write mode on live virtual "
28589 "machines.  If you do this, you risk disk corruption in the VM."
28590 msgstr ""
28591
28592 #. type: textblock
28593 #: ../fuse/guestmount.pod:22
28594 msgid ""
28595 "The guestmount program can be used to mount virtual machine filesystems and "
28596 "other disk images on the host.  It uses libguestfs for access to the guest "
28597 "filesystem, and FUSE (the \"filesystem in userspace\") to make it appear as "
28598 "a mountable device."
28599 msgstr ""
28600
28601 #. type: textblock
28602 #: ../fuse/guestmount.pod:27
28603 msgid ""
28604 "Along with other options, you have to give at least one device (I<-a> "
28605 "option) or libvirt domain (I<-d> option), and at least one mountpoint (I<-m> "
28606 "option) or use the I<-i> inspection option.  How this works is better "
28607 "explained in the L<guestfish(1)> manual page, or by looking at the examples "
28608 "below."
28609 msgstr ""
28610
28611 #. type: textblock
28612 #: ../fuse/guestmount.pod:33
28613 msgid ""
28614 "FUSE lets you mount filesystems as non-root.  The mountpoint must be owned "
28615 "by you, and the filesystem will not be visible to any other users unless you "
28616 "make certain global configuration changes to C</etc/fuse.conf>.  To unmount "
28617 "the filesystem, use the C<fusermount -u> command."
28618 msgstr ""
28619
28620 #. type: textblock
28621 #: ../fuse/guestmount.pod:41
28622 msgid ""
28623 "For a typical Windows guest which has its main filesystem on the first "
28624 "partition:"
28625 msgstr ""
28626
28627 #. type: verbatim
28628 #: ../fuse/guestmount.pod:44
28629 #, no-wrap
28630 msgid ""
28631 " guestmount -a windows.img -m /dev/sda1 --ro /mnt\n"
28632 "\n"
28633 msgstr ""
28634
28635 #. type: textblock
28636 #: ../fuse/guestmount.pod:46
28637 msgid ""
28638 "For a typical Linux guest which has a /boot filesystem on the first "
28639 "partition, and the root filesystem on a logical volume:"
28640 msgstr ""
28641
28642 #. type: verbatim
28643 #: ../fuse/guestmount.pod:49
28644 #, no-wrap
28645 msgid ""
28646 " guestmount -a linux.img -m /dev/VG/LV -m /dev/sda1:/boot --ro /mnt\n"
28647 "\n"
28648 msgstr ""
28649
28650 #. type: textblock
28651 #: ../fuse/guestmount.pod:51
28652 msgid "To get libguestfs to detect guest mountpoints for you:"
28653 msgstr ""
28654
28655 #. type: verbatim
28656 #: ../fuse/guestmount.pod:53
28657 #, no-wrap
28658 msgid ""
28659 " guestmount -a guest.img -i --ro /mnt\n"
28660 "\n"
28661 msgstr ""
28662
28663 #. type: textblock
28664 #: ../fuse/guestmount.pod:55
28665 msgid "For a libvirt guest called \"Guest\" you could do:"
28666 msgstr ""
28667
28668 #. type: verbatim
28669 #: ../fuse/guestmount.pod:57
28670 #, no-wrap
28671 msgid ""
28672 " guestmount -d Guest -i --ro /mnt\n"
28673 "\n"
28674 msgstr ""
28675
28676 #. type: textblock
28677 #: ../fuse/guestmount.pod:59
28678 msgid ""
28679 "If you don't know what filesystems are contained in a guest or disk image, "
28680 "use L<virt-filesystems(1)> first:"
28681 msgstr ""
28682
28683 #. type: verbatim
28684 #: ../fuse/guestmount.pod:62
28685 #, no-wrap
28686 msgid ""
28687 " virt-filesystems MyGuest\n"
28688 "\n"
28689 msgstr ""
28690
28691 #. type: textblock
28692 #: ../fuse/guestmount.pod:64
28693 msgid ""
28694 "If you want to trace the libguestfs calls but without excessive debugging "
28695 "information, we recommend:"
28696 msgstr ""
28697
28698 #. type: verbatim
28699 #: ../fuse/guestmount.pod:67
28700 #, no-wrap
28701 msgid ""
28702 " guestmount [...] --trace /mnt\n"
28703 "\n"
28704 msgstr ""
28705
28706 #. type: textblock
28707 #: ../fuse/guestmount.pod:69
28708 msgid "If you want to debug the program, we recommend:"
28709 msgstr ""
28710
28711 #. type: verbatim
28712 #: ../fuse/guestmount.pod:71
28713 #, no-wrap
28714 msgid ""
28715 " guestmount [...] --trace --verbose /mnt\n"
28716 "\n"
28717 msgstr ""
28718
28719 #. type: =head1
28720 #: ../fuse/guestmount.pod:73
28721 msgid "NOTES"
28722 msgstr ""
28723
28724 #. type: =head2
28725 #: ../fuse/guestmount.pod:75
28726 msgid "Other users cannot see the filesystem by default"
28727 msgstr ""
28728
28729 #. type: textblock
28730 #: ../fuse/guestmount.pod:77
28731 msgid ""
28732 "If you mount a filesystem as one user (eg. root), then other users will not "
28733 "be able to see it by default.  The fix is to add the FUSE C<allow_other> "
28734 "option when mounting:"
28735 msgstr ""
28736
28737 #. type: verbatim
28738 #: ../fuse/guestmount.pod:81
28739 #, no-wrap
28740 msgid ""
28741 " sudo guestmount [...] -o allow_other /mnt\n"
28742 "\n"
28743 msgstr ""
28744
28745 #. type: =item
28746 #: ../fuse/guestmount.pod:87
28747 msgid "B<-a image> | B<--add image>"
28748 msgstr ""
28749
28750 #. type: textblock
28751 #: ../fuse/guestmount.pod:89
28752 msgid "Add a block device or virtual machine image."
28753 msgstr ""
28754
28755 #. type: =item
28756 #: ../fuse/guestmount.pod:94
28757 msgid "B<-c URI> | B<--connect URI>"
28758 msgstr ""
28759
28760 #. type: =item
28761 #: ../fuse/guestmount.pod:100
28762 msgid "B<-d libvirt-domain> | B<--domain libvirt-domain>"
28763 msgstr ""
28764
28765 #. type: =item
28766 #: ../fuse/guestmount.pod:106
28767 msgid "B<--dir-cache-timeout N>"
28768 msgstr ""
28769
28770 #. type: textblock
28771 #: ../fuse/guestmount.pod:108
28772 msgid ""
28773 "Set the readdir cache timeout to I<N> seconds, the default being 60 "
28774 "seconds.  The readdir cache [actually, there are several semi-independent "
28775 "caches] is populated after a readdir(2) call with the stat and extended "
28776 "attributes of the files in the directory, in anticipation that they will be "
28777 "requested soon after."
28778 msgstr ""
28779
28780 #. type: textblock
28781 #: ../fuse/guestmount.pod:114
28782 msgid ""
28783 "There is also a different attribute cache implemented by FUSE (see the FUSE "
28784 "option I<-o attr_timeout>), but the FUSE cache does not anticipate future "
28785 "requests, only cache existing ones."
28786 msgstr ""
28787
28788 #. type: =item
28789 #: ../fuse/guestmount.pod:125
28790 msgid "B<--format=raw|qcow2|..> | B<--format>"
28791 msgstr ""
28792
28793 #. type: textblock
28794 #: ../fuse/guestmount.pod:132
28795 msgid ""
28796 "If you have untrusted raw-format guest disk images, you should use this "
28797 "option to specify the disk format.  This avoids a possible security problem "
28798 "with malicious guests (CVE-2010-3851).  See also L<guestfs(3)/"
28799 "guestfs_add_drive_opts>."
28800 msgstr ""
28801
28802 #. type: =item
28803 #: ../fuse/guestmount.pod:137
28804 msgid "B<--fuse-help>"
28805 msgstr ""
28806
28807 #. type: textblock
28808 #: ../fuse/guestmount.pod:139
28809 msgid "Display help on special FUSE options (see I<-o> below)."
28810 msgstr ""
28811
28812 #. type: textblock
28813 #: ../fuse/guestmount.pod:143
28814 msgid "Display brief help and exit."
28815 msgstr ""
28816
28817 #. type: =item
28818 #: ../fuse/guestmount.pod:145
28819 msgid "B<-i> | B<--inspector>"
28820 msgstr ""
28821
28822 #. type: textblock
28823 #: ../fuse/guestmount.pod:165
28824 msgid ""
28825 "Mount the named partition or logical volume on the given mountpoint B<in the "
28826 "guest> (this has nothing to do with mountpoints in the host)."
28827 msgstr ""
28828
28829 #. type: textblock
28830 #: ../fuse/guestmount.pod:168
28831 msgid ""
28832 "If the mountpoint is omitted, it defaults to C</>.  You have to mount "
28833 "something on C</>."
28834 msgstr ""
28835
28836 #. type: =item
28837 #: ../fuse/guestmount.pod:181
28838 msgid "B<-n> | B<--no-sync>"
28839 msgstr ""
28840
28841 #. type: textblock
28842 #: ../fuse/guestmount.pod:183
28843 msgid ""
28844 "By default, we attempt to sync the guest disk when the FUSE mountpoint is "
28845 "unmounted.  If you specify this option, then we don't attempt to sync the "
28846 "disk.  See the discussion of autosync in the L<guestfs(3)> manpage."
28847 msgstr ""
28848
28849 #. type: =item
28850 #: ../fuse/guestmount.pod:188
28851 msgid "B<-o option> | B<--option option>"
28852 msgstr ""
28853
28854 #. type: textblock
28855 #: ../fuse/guestmount.pod:190
28856 msgid "Pass extra options to FUSE."
28857 msgstr ""
28858
28859 #. type: textblock
28860 #: ../fuse/guestmount.pod:192
28861 msgid ""
28862 "To get a list of all the extra options supported by FUSE, use the command "
28863 "below.  Note that only the FUSE I<-o> options can be passed, and only some "
28864 "of them are a good idea."
28865 msgstr ""
28866
28867 #. type: verbatim
28868 #: ../fuse/guestmount.pod:196
28869 #, no-wrap
28870 msgid ""
28871 " guestmount --fuse-help\n"
28872 "\n"
28873 msgstr ""
28874
28875 #. type: textblock
28876 #: ../fuse/guestmount.pod:198
28877 msgid "Some potentially useful FUSE options:"
28878 msgstr ""
28879
28880 #. type: =item
28881 #: ../fuse/guestmount.pod:202
28882 msgid "B<-o allow_other>"
28883 msgstr ""
28884
28885 #. type: textblock
28886 #: ../fuse/guestmount.pod:204
28887 msgid "Allow other users to see the filesystem."
28888 msgstr ""
28889
28890 #. type: =item
28891 #: ../fuse/guestmount.pod:206
28892 msgid "B<-o attr_timeout=N>"
28893 msgstr ""
28894
28895 #. type: textblock
28896 #: ../fuse/guestmount.pod:208
28897 msgid "Enable attribute caching by FUSE, and set the timeout to I<N> seconds."
28898 msgstr ""
28899
28900 #. type: =item
28901 #: ../fuse/guestmount.pod:210
28902 msgid "B<-o kernel_cache>"
28903 msgstr ""
28904
28905 #. type: textblock
28906 #: ../fuse/guestmount.pod:212
28907 msgid ""
28908 "Allow the kernel to cache files (reduces the number of reads that have to go "
28909 "through the L<guestfs(3)> API).  This is generally a good idea if you can "
28910 "afford the extra memory usage."
28911 msgstr ""
28912
28913 #. type: =item
28914 #: ../fuse/guestmount.pod:216
28915 msgid "B<-o uid=N> B<-o gid=N>"
28916 msgstr ""
28917
28918 #. type: textblock
28919 #: ../fuse/guestmount.pod:218
28920 msgid ""
28921 "Use these options to map all UIDs and GIDs inside the guest filesystem to "
28922 "the chosen values."
28923 msgstr ""
28924
28925 #. type: =item
28926 #: ../fuse/guestmount.pod:223
28927 msgid "B<-r> | B<--ro>"
28928 msgstr ""
28929
28930 #. type: textblock
28931 #: ../fuse/guestmount.pod:225
28932 msgid ""
28933 "Add devices and mount everything read-only.  Also disallow writes and make "
28934 "the disk appear read-only to FUSE."
28935 msgstr ""
28936
28937 #. type: textblock
28938 #: ../fuse/guestmount.pod:228
28939 msgid ""
28940 "This is highly recommended if you are not going to edit the guest disk.  If "
28941 "the guest is running and this option is I<not> supplied, then there is a "
28942 "strong risk of disk corruption in the guest.  We try to prevent this from "
28943 "happening, but it is not always possible."
28944 msgstr ""
28945
28946 #. type: textblock
28947 #: ../fuse/guestmount.pod:233
28948 msgid "See also L<guestfish(1)/OPENING DISKS FOR READ AND WRITE>."
28949 msgstr ""
28950
28951 #. type: textblock
28952 #: ../fuse/guestmount.pod:237
28953 msgid "Enable SELinux support for the guest."
28954 msgstr ""
28955
28956 #. type: =item
28957 #: ../fuse/guestmount.pod:239
28958 msgid "B<-v> | B<--verbose>"
28959 msgstr ""
28960
28961 #. type: textblock
28962 #: ../fuse/guestmount.pod:241
28963 msgid "Enable verbose messages from underlying libguestfs."
28964 msgstr ""
28965
28966 #. type: =item
28967 #: ../fuse/guestmount.pod:243
28968 msgid "B<-V> | B<--version>"
28969 msgstr ""
28970
28971 #. type: textblock
28972 #: ../fuse/guestmount.pod:245
28973 msgid "Display the program version and exit."
28974 msgstr ""
28975
28976 #. type: =item
28977 #: ../fuse/guestmount.pod:247
28978 msgid "B<-w> | B<--rw>"
28979 msgstr ""
28980
28981 #. type: textblock
28982 #: ../fuse/guestmount.pod:252 ../fuse/guestmount.pod:273
28983 msgid "See L<guestfish(1)/OPENING DISKS FOR READ AND WRITE>."
28984 msgstr ""
28985
28986 #. type: =item
28987 #: ../fuse/guestmount.pod:254
28988 msgid "B<-x> | B<--trace>"
28989 msgstr ""
28990
28991 #. type: textblock
28992 #: ../fuse/guestmount.pod:256
28993 msgid "Trace libguestfs calls and entry into each FUSE function."
28994 msgstr ""
28995
28996 #. type: textblock
28997 #: ../fuse/guestmount.pod:258
28998 msgid "This also stops the daemon from forking into the background."
28999 msgstr ""
29000
29001 #. type: textblock
29002 #: ../fuse/guestmount.pod:279
29003 msgid ""
29004 "L<guestfish(1)>, L<virt-inspector(1)>, L<virt-cat(1)>, L<virt-edit(1)>, "
29005 "L<virt-tar(1)>, L<guestfs(3)>, L<http://libguestfs.org/>, L<http://fuse.sf."
29006 "net/>."
29007 msgstr ""
29008
29009 #. type: textblock
29010 #: ../fuse/guestmount.pod:294
29011 msgid "Copyright (C) 2009-2010 Red Hat Inc.  L<http://libguestfs.org/>"
29012 msgstr ""
29013
29014 #. type: textblock
29015 #: ../tools/virt-edit.pl:34
29016 msgid "virt-edit - Edit a file in a virtual machine"
29017 msgstr ""
29018
29019 #. type: verbatim
29020 #: ../tools/virt-edit.pl:38
29021 #, no-wrap
29022 msgid ""
29023 " virt-edit [--options] domname file\n"
29024 "\n"
29025 msgstr ""
29026
29027 #. type: verbatim
29028 #: ../tools/virt-edit.pl:40
29029 #, no-wrap
29030 msgid ""
29031 " virt-edit [--options] disk.img [disk.img ...] file\n"
29032 "\n"
29033 msgstr ""
29034
29035 #. type: verbatim
29036 #: ../tools/virt-edit.pl:42
29037 #, no-wrap
29038 msgid ""
29039 " virt-edit [domname|disk.img] file -e 'expr'\n"
29040 "\n"
29041 msgstr ""
29042
29043 #. type: textblock
29044 #: ../tools/virt-edit.pl:46
29045 msgid ""
29046 "You must I<not> use C<virt-edit> on live virtual machines.  If you do this, "
29047 "you risk disk corruption in the VM.  C<virt-edit> tries to stop you from "
29048 "doing this, but doesn't catch all cases."
29049 msgstr ""
29050
29051 #. type: textblock
29052 #: ../tools/virt-edit.pl:52
29053 msgid ""
29054 "C<virt-edit> is a command line tool to edit C<file> where C<file> exists in "
29055 "the named virtual machine (or disk image)."
29056 msgstr ""
29057
29058 #. type: textblock
29059 #: ../tools/virt-edit.pl:55
29060 msgid "If you want to just view a file, use L<virt-cat(1)>."
29061 msgstr ""
29062
29063 #. type: textblock
29064 #: ../tools/virt-edit.pl:57
29065 msgid ""
29066 "For more complex cases you should look at the L<guestfish(1)> tool (see L</"
29067 "USING GUESTFISH> below)."
29068 msgstr ""
29069
29070 #. type: textblock
29071 #: ../tools/virt-edit.pl:60
29072 msgid ""
29073 "C<virt-edit> cannot be used to create a new file, nor to edit multiple "
29074 "files.  L<guestfish(1)> can do that and much more."
29075 msgstr ""
29076
29077 #. type: textblock
29078 #: ../tools/virt-edit.pl:65
29079 msgid "Edit the named files interactively:"
29080 msgstr ""
29081
29082 #. type: verbatim
29083 #: ../tools/virt-edit.pl:67
29084 #, no-wrap
29085 msgid ""
29086 " virt-edit mydomain /boot/grub/grub.conf\n"
29087 "\n"
29088 msgstr ""
29089
29090 #. type: verbatim
29091 #: ../tools/virt-edit.pl:69
29092 #, no-wrap
29093 msgid ""
29094 " virt-edit mydomain /etc/passwd\n"
29095 "\n"
29096 msgstr ""
29097
29098 #. type: textblock
29099 #: ../tools/virt-edit.pl:71
29100 msgid "For Windows guests, some Windows paths are understood:"
29101 msgstr ""
29102
29103 #. type: verbatim
29104 #: ../tools/virt-edit.pl:73
29105 #, no-wrap
29106 msgid ""
29107 " virt-edit mywindomain 'c:\\autoexec.bat'\n"
29108 "\n"
29109 msgstr ""
29110
29111 #. type: textblock
29112 #: ../tools/virt-edit.pl:75
29113 msgid ""
29114 "You can also edit files non-interactively (see L</NON-INTERACTIVE EDITING> "
29115 "below).  To change the init default level to 5:"
29116 msgstr ""
29117
29118 #. type: verbatim
29119 #: ../tools/virt-edit.pl:79
29120 #, no-wrap
29121 msgid ""
29122 " virt-edit mydomain /etc/inittab -e 's/^id:.*/id:5:initdefault:/'\n"
29123 "\n"
29124 msgstr ""
29125
29126 #. type: textblock
29127 #: ../tools/virt-edit.pl:91 ../tools/virt-win-reg.pl:106
29128 #: ../tools/virt-list-filesystems.pl:63 ../tools/virt-tar.pl:113
29129 #: ../tools/virt-make-fs.pl:163 ../tools/virt-list-partitions.pl:64
29130 msgid "Display brief help."
29131 msgstr ""
29132
29133 #. type: textblock
29134 #: ../tools/virt-edit.pl:99 ../tools/virt-win-reg.pl:114
29135 #: ../tools/virt-list-filesystems.pl:71 ../tools/virt-tar.pl:121
29136 #: ../tools/virt-make-fs.pl:171 ../tools/virt-list-partitions.pl:72
29137 msgid "Display version number and exit."
29138 msgstr ""
29139
29140 #. type: =item
29141 #: ../tools/virt-edit.pl:105
29142 msgid "B<--backup extension> | B<-b extension>"
29143 msgstr ""
29144
29145 #. type: textblock
29146 #: ../tools/virt-edit.pl:107
29147 msgid ""
29148 "Create a backup of the original file I<in the guest disk image>.  The backup "
29149 "has the original filename with C<extension> added."
29150 msgstr ""
29151
29152 #. type: textblock
29153 #: ../tools/virt-edit.pl:110
29154 msgid ""
29155 "Usually the first character of C<extension> would be a dot C<.> so you would "
29156 "write:"
29157 msgstr ""
29158
29159 #. type: verbatim
29160 #: ../tools/virt-edit.pl:113
29161 #, no-wrap
29162 msgid ""
29163 " virt-edit -b .orig [etc]\n"
29164 "\n"
29165 msgstr ""
29166
29167 #. type: textblock
29168 #: ../tools/virt-edit.pl:115
29169 msgid "By default, no backup file is made."
29170 msgstr ""
29171
29172 #. type: =item
29173 #: ../tools/virt-edit.pl:121 ../tools/virt-win-reg.pl:128
29174 #: ../tools/virt-list-filesystems.pl:77 ../tools/virt-tar.pl:127
29175 #: ../tools/virt-list-partitions.pl:78
29176 msgid "B<--connect URI> | B<-c URI>"
29177 msgstr ""
29178
29179 #. type: textblock
29180 #: ../tools/virt-edit.pl:123 ../tools/virt-win-reg.pl:130
29181 #: ../tools/virt-list-filesystems.pl:79 ../tools/virt-tar.pl:129
29182 #: ../tools/virt-list-partitions.pl:80
29183 msgid ""
29184 "If using libvirt, connect to the given I<URI>.  If omitted, then we connect "
29185 "to the default libvirt hypervisor."
29186 msgstr ""
29187
29188 #. type: textblock
29189 #: ../tools/virt-edit.pl:126 ../tools/virt-win-reg.pl:133
29190 #: ../tools/virt-list-filesystems.pl:82 ../tools/virt-tar.pl:132
29191 #: ../tools/virt-list-partitions.pl:83
29192 msgid ""
29193 "If you specify guest block devices directly, then libvirt is not used at all."
29194 msgstr ""
29195
29196 #. type: =item
29197 #: ../tools/virt-edit.pl:133 ../tools/virt-win-reg.pl:140
29198 #: ../tools/virt-list-filesystems.pl:89 ../tools/virt-tar.pl:139
29199 #: ../tools/virt-list-partitions.pl:90
29200 msgid "B<--format> raw"
29201 msgstr ""
29202
29203 #. type: textblock
29204 #: ../tools/virt-edit.pl:135 ../tools/virt-win-reg.pl:142
29205 #: ../tools/virt-list-filesystems.pl:91 ../tools/virt-tar.pl:141
29206 #: ../tools/virt-list-partitions.pl:92
29207 msgid ""
29208 "Specify the format of disk images given on the command line.  If this is "
29209 "omitted then the format is autodetected from the content of the disk image."
29210 msgstr ""
29211
29212 #. type: textblock
29213 #: ../tools/virt-edit.pl:139 ../tools/virt-win-reg.pl:146
29214 #: ../tools/virt-list-filesystems.pl:95 ../tools/virt-tar.pl:145
29215 #: ../tools/virt-list-partitions.pl:96
29216 msgid ""
29217 "If disk images are requested from libvirt, then this program asks libvirt "
29218 "for this information.  In this case, the value of the format parameter is "
29219 "ignored."
29220 msgstr ""
29221
29222 #. type: textblock
29223 #: ../tools/virt-edit.pl:143 ../tools/virt-win-reg.pl:150
29224 #: ../tools/virt-list-filesystems.pl:99 ../tools/virt-tar.pl:149
29225 #: ../tools/virt-list-partitions.pl:100
29226 msgid ""
29227 "If working with untrusted raw-format guest disk images, you should ensure "
29228 "the format is always specified."
29229 msgstr ""
29230
29231 #. type: =item
29232 #: ../tools/virt-edit.pl:150
29233 msgid "B<--expr EXPR> | B<-e EXPR>"
29234 msgstr ""
29235
29236 #. type: textblock
29237 #: ../tools/virt-edit.pl:152
29238 msgid ""
29239 "Instead of launching the external editor, non-interactively apply the Perl "
29240 "expression C<EXPR> to each line in the file.  See L</NON-INTERACTIVE "
29241 "EDITING> below."
29242 msgstr ""
29243
29244 #. type: textblock
29245 #: ../tools/virt-edit.pl:156
29246 msgid ""
29247 "Be careful to properly quote the expression to prevent it from being altered "
29248 "by the shell."
29249 msgstr ""
29250
29251 #. type: =head1
29252 #: ../tools/virt-edit.pl:280
29253 msgid "NON-INTERACTIVE EDITING"
29254 msgstr ""
29255
29256 #. type: textblock
29257 #: ../tools/virt-edit.pl:282
29258 msgid ""
29259 "C<virt-edit> normally calls out to C<$EDITOR> (or vi) so the system "
29260 "administrator can interactively edit the file."
29261 msgstr ""
29262
29263 #. type: textblock
29264 #: ../tools/virt-edit.pl:285
29265 msgid ""
29266 "There are two ways also to use C<virt-edit> from scripts in order to make "
29267 "automated edits to files.  (Note that although you I<can> use C<virt-edit> "
29268 "like this, it's less error-prone to write scripts directly using the "
29269 "libguestfs API and Augeas for configuration file editing.)"
29270 msgstr ""
29271
29272 #. type: textblock
29273 #: ../tools/virt-edit.pl:291
29274 msgid ""
29275 "The first method is to temporarily set C<$EDITOR> to any script or program "
29276 "you want to run.  The script is invoked as C<$EDITOR tmpfile> and it should "
29277 "update C<tmpfile> in place however it likes."
29278 msgstr ""
29279
29280 #. type: textblock
29281 #: ../tools/virt-edit.pl:295
29282 msgid ""
29283 "The second method is to use the I<-e> parameter of C<virt-edit> to run a "
29284 "short Perl snippet in the style of L<sed(1)>.  For example to replace all "
29285 "instances of C<foo> with C<bar> in a file:"
29286 msgstr ""
29287
29288 #. type: verbatim
29289 #: ../tools/virt-edit.pl:299
29290 #, no-wrap
29291 msgid ""
29292 " virt-edit domname filename -e 's/foo/bar/'\n"
29293 "\n"
29294 msgstr ""
29295
29296 #. type: textblock
29297 #: ../tools/virt-edit.pl:301
29298 msgid ""
29299 "The full power of Perl regular expressions can be used (see L<perlre(1)>).  "
29300 "For example to delete root's password you could do:"
29301 msgstr ""
29302
29303 #. type: verbatim
29304 #: ../tools/virt-edit.pl:304
29305 #, no-wrap
29306 msgid ""
29307 " virt-edit domname /etc/passwd -e 's/^root:.*?:/root::/'\n"
29308 "\n"
29309 msgstr ""
29310
29311 #. type: textblock
29312 #: ../tools/virt-edit.pl:306
29313 msgid ""
29314 "What really happens is that the snippet is evaluated as a Perl expression "
29315 "for each line of the file.  The line, including the final C<\\n>, is passed "
29316 "in C<$_> and the expression should update C<$_> or leave it unchanged."
29317 msgstr ""
29318
29319 #. type: textblock
29320 #: ../tools/virt-edit.pl:311
29321 msgid ""
29322 "To delete a line, set C<$_> to the empty string.  For example, to delete the "
29323 "C<apache> user account from the password file you can do:"
29324 msgstr ""
29325
29326 #. type: verbatim
29327 #: ../tools/virt-edit.pl:314
29328 #, no-wrap
29329 msgid ""
29330 " virt-edit mydomain /etc/passwd -e '$_ = \"\" if /^apache:/'\n"
29331 "\n"
29332 msgstr ""
29333
29334 #. type: textblock
29335 #: ../tools/virt-edit.pl:316
29336 msgid ""
29337 "To insert a line, prepend or append it to C<$_>.  However appending lines to "
29338 "the end of the file is rather difficult this way since there is no concept "
29339 "of \"last line of the file\" - your expression just doesn't get called "
29340 "again.  You might want to use the first method (setting C<$EDITOR>) if you "
29341 "want to do this."
29342 msgstr ""
29343
29344 #. type: textblock
29345 #: ../tools/virt-edit.pl:322
29346 msgid ""
29347 "The variable C<$lineno> contains the current line number.  As is "
29348 "traditional, the first line in the file is number C<1>."
29349 msgstr ""
29350
29351 #. type: textblock
29352 #: ../tools/virt-edit.pl:325
29353 msgid ""
29354 "The return value from the expression is ignored, but the expression may call "
29355 "C<die> in order to abort the whole program, leaving the original file "
29356 "untouched."
29357 msgstr ""
29358
29359 #. type: textblock
29360 #: ../tools/virt-edit.pl:329
29361 msgid ""
29362 "Remember when matching the end of a line that C<$_> may contain the final C<"
29363 "\\n>, or (for DOS files) C<\\r\\n>, or if the file does not end with a "
29364 "newline then neither of these.  Thus to match or substitute some text at the "
29365 "end of a line, use this regular expression:"
29366 msgstr ""
29367
29368 #. type: verbatim
29369 #: ../tools/virt-edit.pl:334
29370 #, no-wrap
29371 msgid ""
29372 " /some text(\\r?\\n)?$/\n"
29373 "\n"
29374 msgstr ""
29375
29376 #. type: textblock
29377 #: ../tools/virt-edit.pl:336
29378 msgid ""
29379 "Alternately, use the perl C<chomp> function, being careful not to chomp C<"
29380 "$_> itself (since that would remove all newlines from the file):"
29381 msgstr ""
29382
29383 #. type: verbatim
29384 #: ../tools/virt-edit.pl:340
29385 #, no-wrap
29386 msgid ""
29387 " my $m = $_; chomp $m; $m =~ /some text$/\n"
29388 "\n"
29389 msgstr ""
29390
29391 #. type: textblock
29392 #: ../tools/virt-edit.pl:344
29393 msgid ""
29394 "C<virt-edit> has a limited ability to understand Windows drive letters and "
29395 "paths (eg. C<E:\\foo\\bar.txt>)."
29396 msgstr ""
29397
29398 #. type: textblock
29399 #: ../tools/virt-edit.pl:347
29400 msgid "If and only if the guest is running Windows then:"
29401 msgstr ""
29402
29403 #. type: textblock
29404 #: ../tools/virt-edit.pl:353
29405 msgid ""
29406 "Drive letter prefixes like C<C:> are resolved against the Windows Registry "
29407 "to the correct filesystem."
29408 msgstr ""
29409
29410 #. type: textblock
29411 #: ../tools/virt-edit.pl:358
29412 msgid ""
29413 "Any backslash (C<\\>) characters in the path are replaced with forward "
29414 "slashes so that libguestfs can process it."
29415 msgstr ""
29416
29417 #. type: textblock
29418 #: ../tools/virt-edit.pl:363
29419 msgid ""
29420 "The path is resolved case insensitively to locate the file that should be "
29421 "edited."
29422 msgstr ""
29423
29424 #. type: textblock
29425 #: ../tools/virt-edit.pl:368
29426 msgid "There are some known shortcomings:"
29427 msgstr ""
29428
29429 #. type: textblock
29430 #: ../tools/virt-edit.pl:374
29431 msgid "Some NTFS symbolic links may not be followed correctly."
29432 msgstr ""
29433
29434 #. type: textblock
29435 #: ../tools/virt-edit.pl:378
29436 msgid "NTFS junction points that cross filesystems are not followed."
29437 msgstr ""
29438
29439 #. type: =head1
29440 #: ../tools/virt-edit.pl:435
29441 msgid "USING GUESTFISH"
29442 msgstr ""
29443
29444 #. type: textblock
29445 #: ../tools/virt-edit.pl:437
29446 msgid ""
29447 "L<guestfish(1)> is a more powerful, lower level tool which you can use when "
29448 "C<virt-edit> doesn't work."
29449 msgstr ""
29450
29451 #. type: textblock
29452 #: ../tools/virt-edit.pl:440
29453 msgid "Using C<virt-edit> is approximately equivalent to doing:"
29454 msgstr ""
29455
29456 #. type: verbatim
29457 #: ../tools/virt-edit.pl:442
29458 #, no-wrap
29459 msgid ""
29460 " guestfish --rw -i -d domname edit /file\n"
29461 "\n"
29462 msgstr ""
29463
29464 #. type: textblock
29465 #: ../tools/virt-edit.pl:444
29466 msgid ""
29467 "where C<domname> is the name of the libvirt guest, and C</file> is the full "
29468 "path to the file."
29469 msgstr ""
29470
29471 #. type: textblock
29472 #: ../tools/virt-edit.pl:447
29473 msgid ""
29474 "The command above uses libguestfs's guest inspection feature and so does not "
29475 "work on guests that libguestfs cannot inspect, or on things like arbitrary "
29476 "disk images that don't contain guests.  To edit a file on a disk image "
29477 "directly, use:"
29478 msgstr ""
29479
29480 #. type: verbatim
29481 #: ../tools/virt-edit.pl:452
29482 #, no-wrap
29483 msgid ""
29484 " guestfish --rw -a disk.img -m /dev/sda1 edit /file\n"
29485 "\n"
29486 msgstr ""
29487
29488 #. type: textblock
29489 #: ../tools/virt-edit.pl:454
29490 msgid ""
29491 "where C<disk.img> is the disk image, C</dev/sda1> is the filesystem within "
29492 "the disk image to edit, and C</file> is the full path to the file."
29493 msgstr ""
29494
29495 #. type: textblock
29496 #: ../tools/virt-edit.pl:458
29497 msgid ""
29498 "C<virt-edit> cannot create new files.  Use the guestfish commands C<touch>, "
29499 "C<write> or C<upload> instead:"
29500 msgstr ""
29501
29502 #. type: verbatim
29503 #: ../tools/virt-edit.pl:461
29504 #, no-wrap
29505 msgid ""
29506 " guestfish --rw -i -d domname touch /newfile\n"
29507 "\n"
29508 msgstr ""
29509
29510 #. type: verbatim
29511 #: ../tools/virt-edit.pl:463
29512 #, no-wrap
29513 msgid ""
29514 " guestfish --rw -i -d domname write /newfile \"new content\"\n"
29515 "\n"
29516 msgstr ""
29517
29518 #. type: verbatim
29519 #: ../tools/virt-edit.pl:465
29520 #, no-wrap
29521 msgid ""
29522 " guestfish --rw -i -d domname upload localfile /newfile\n"
29523 "\n"
29524 msgstr ""
29525
29526 #. type: textblock
29527 #: ../tools/virt-edit.pl:467
29528 msgid ""
29529 "C<virt-edit> cannot edit multiple files, but guestfish can do it like this:"
29530 msgstr ""
29531
29532 #. type: verbatim
29533 #: ../tools/virt-edit.pl:470
29534 #, no-wrap
29535 msgid ""
29536 " guestfish --rw -i -d domname edit /file1 : edit /file2\n"
29537 "\n"
29538 msgstr ""
29539
29540 #. type: =item
29541 #: ../tools/virt-edit.pl:480
29542 msgid "C<EDITOR>"
29543 msgstr ""
29544
29545 #. type: textblock
29546 #: ../tools/virt-edit.pl:482
29547 msgid ""
29548 "If set, this string is used as the editor.  It may contain arguments, eg. C<"
29549 "\"emacs -nw\">"
29550 msgstr ""
29551
29552 #. type: textblock
29553 #: ../tools/virt-edit.pl:485
29554 msgid "If not set, C<vi> is used."
29555 msgstr ""
29556
29557 #. type: =head1
29558 #: ../tools/virt-edit.pl:489 ../tools/virt-win-reg.pl:559
29559 #: ../tools/virt-list-filesystems.pl:182 ../tools/virt-tar.pl:279
29560 #: ../tools/virt-make-fs.pl:532 ../tools/virt-list-partitions.pl:250
29561 msgid "SHELL QUOTING"
29562 msgstr ""
29563
29564 #. type: textblock
29565 #: ../tools/virt-edit.pl:491 ../tools/virt-win-reg.pl:567
29566 #: ../tools/virt-list-filesystems.pl:184 ../tools/virt-tar.pl:281
29567 #: ../tools/virt-make-fs.pl:534 ../tools/virt-list-partitions.pl:252
29568 msgid ""
29569 "Libvirt guest names can contain arbitrary characters, some of which have "
29570 "meaning to the shell such as C<#> and space.  You may need to quote or "
29571 "escape these characters on the command line.  See the shell manual page L<sh"
29572 "(1)> for details."
29573 msgstr ""
29574
29575 #. type: textblock
29576 #: ../tools/virt-edit.pl:498
29577 msgid ""
29578 "L<guestfs(3)>, L<guestfish(1)>, L<virt-cat(1)>, L<virt-copy-in(1)>, L<virt-"
29579 "tar-in(1)>, L<Sys::Guestfs(3)>, L<Sys::Guestfs::Lib(3)>, L<Sys::Virt(3)>, "
29580 "L<http://libguestfs.org/>, L<perl(1)>, L<perlre(1)>."
29581 msgstr ""
29582
29583 #. type: =head1
29584 #: ../tools/virt-edit.pl:510 ../tools/virt-win-reg.pl:598
29585 #: ../tools/virt-list-filesystems.pl:202 ../tools/virt-tar.pl:301
29586 #: ../tools/virt-make-fs.pl:564 ../tools/virt-list-partitions.pl:269
29587 msgid "AUTHOR"
29588 msgstr ""
29589
29590 #. type: textblock
29591 #: ../tools/virt-edit.pl:512 ../tools/virt-win-reg.pl:600
29592 #: ../tools/virt-list-filesystems.pl:204 ../tools/virt-tar.pl:303
29593 #: ../tools/virt-make-fs.pl:566 ../tools/virt-list-partitions.pl:271
29594 msgid "Richard W.M. Jones L<http://people.redhat.com/~rjones/>"
29595 msgstr ""
29596
29597 #. type: textblock
29598 #: ../tools/virt-edit.pl:516
29599 msgid "Copyright (C) 2009-2011 Red Hat Inc."
29600 msgstr ""
29601
29602 #. type: textblock
29603 #: ../tools/virt-win-reg.pl:37
29604 msgid ""
29605 "virt-win-reg - Export and merge Windows Registry entries from a Windows guest"
29606 msgstr ""
29607
29608 #. type: verbatim
29609 #: ../tools/virt-win-reg.pl:41
29610 #, no-wrap
29611 msgid ""
29612 " virt-win-reg domname 'HKLM\\Path\\To\\Subkey'\n"
29613 "\n"
29614 msgstr ""
29615
29616 #. type: verbatim
29617 #: ../tools/virt-win-reg.pl:43
29618 #, no-wrap
29619 msgid ""
29620 " virt-win-reg domname 'HKLM\\Path\\To\\Subkey' name\n"
29621 "\n"
29622 msgstr ""
29623
29624 #. type: verbatim
29625 #: ../tools/virt-win-reg.pl:45
29626 #, no-wrap
29627 msgid ""
29628 " virt-win-reg domname 'HKLM\\Path\\To\\Subkey' @\n"
29629 "\n"
29630 msgstr ""
29631
29632 #. type: verbatim
29633 #: ../tools/virt-win-reg.pl:47
29634 #, no-wrap
29635 msgid ""
29636 " virt-win-reg --merge domname [input.reg ...]\n"
29637 "\n"
29638 msgstr ""
29639
29640 #. type: verbatim
29641 #: ../tools/virt-win-reg.pl:49
29642 #, no-wrap
29643 msgid ""
29644 " virt-win-reg [--options] disk.img ... # instead of domname\n"
29645 "\n"
29646 msgstr ""
29647
29648 #. type: textblock
29649 #: ../tools/virt-win-reg.pl:53
29650 msgid ""
29651 "You must I<not> use C<virt-win-reg> with the I<--merge> option on live "
29652 "virtual machines.  If you do this, you I<will> get irreversible disk "
29653 "corruption in the VM.  C<virt-win-reg> tries to stop you from doing this, "
29654 "but doesn't catch all cases."
29655 msgstr ""
29656
29657 #. type: textblock
29658 #: ../tools/virt-win-reg.pl:58
29659 msgid ""
29660 "Modifying the Windows Registry is an inherently risky operation.  The format "
29661 "is deliberately obscure and undocumented, and Registry changes can leave the "
29662 "system unbootable.  Therefore when using the I<--merge> option, make sure "
29663 "you have a reliable backup first."
29664 msgstr ""
29665
29666 #. type: textblock
29667 #: ../tools/virt-win-reg.pl:65
29668 msgid ""
29669 "This program can export and merge Windows Registry entries from a Windows "
29670 "guest."
29671 msgstr ""
29672
29673 #. type: textblock
29674 #: ../tools/virt-win-reg.pl:68
29675 msgid ""
29676 "The first parameter is the libvirt guest name or the raw disk image of a "
29677 "Windows guest."
29678 msgstr ""
29679
29680 #. type: textblock
29681 #: ../tools/virt-win-reg.pl:71
29682 msgid ""
29683 "If I<--merge> is I<not> specified, then the chosen registry key is displayed/"
29684 "exported (recursively).  For example:"
29685 msgstr ""
29686
29687 #. type: verbatim
29688 #: ../tools/virt-win-reg.pl:74
29689 #, no-wrap
29690 msgid ""
29691 " $ virt-win-reg Windows7 'HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft'\n"
29692 "\n"
29693 msgstr ""
29694
29695 #. type: textblock
29696 #: ../tools/virt-win-reg.pl:76
29697 msgid ""
29698 "You can also display single values from within registry keys, for example:"
29699 msgstr ""
29700
29701 #. type: verbatim
29702 #: ../tools/virt-win-reg.pl:79
29703 #, no-wrap
29704 msgid ""
29705 " $ cvkey='HKLM\\SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion'\n"
29706 " $ virt-win-reg Windows7 $cvkey ProductName\n"
29707 " Windows 7 Enterprise\n"
29708 "\n"
29709 msgstr ""
29710
29711 #. type: textblock
29712 #: ../tools/virt-win-reg.pl:83
29713 msgid ""
29714 "With I<--merge>, you can merge a textual regedit file into the Windows "
29715 "Registry:"
29716 msgstr ""
29717
29718 #. type: verbatim
29719 #: ../tools/virt-win-reg.pl:86
29720 #, no-wrap
29721 msgid ""
29722 " $ virt-win-reg --merge Windows7 changes.reg\n"
29723 "\n"
29724 msgstr ""
29725
29726 #. type: =head1
29727 #: ../tools/virt-win-reg.pl:88 ../tools/virt-tar.pl:45
29728 msgid "NOTE"
29729 msgstr ""
29730
29731 #. type: textblock
29732 #: ../tools/virt-win-reg.pl:90
29733 msgid ""
29734 "This program is only meant for simple access to the registry.  If you want "
29735 "to do complicated things with the registry, we suggest you download the "
29736 "Registry hive files from the guest using L<libguestfs(3)> or L<guestfish(1)> "
29737 "and access them locally, eg. using L<hivex(3)>, L<hivexsh(1)> or "
29738 "L<hivexregedit(1)>."
29739 msgstr ""
29740
29741 #. type: =item
29742 #: ../tools/virt-win-reg.pl:120 ../tools/virt-make-fs.pl:177
29743 msgid "B<--debug>"
29744 msgstr ""
29745
29746 #. type: textblock
29747 #: ../tools/virt-win-reg.pl:122
29748 msgid "Enable debugging messages."
29749 msgstr ""
29750
29751 #. type: =item
29752 #: ../tools/virt-win-reg.pl:157
29753 msgid "B<--merge>"
29754 msgstr ""
29755
29756 #. type: textblock
29757 #: ../tools/virt-win-reg.pl:159
29758 msgid ""
29759 "In merge mode, this merges a textual regedit file into the Windows Registry "
29760 "of the virtual machine.  If this flag is I<not> given then virt-win-reg "
29761 "displays or exports Registry entries instead."
29762 msgstr ""
29763
29764 #. type: textblock
29765 #: ../tools/virt-win-reg.pl:163
29766 msgid ""
29767 "Note that I<--merge> is I<unsafe> to use on live virtual machines, and will "
29768 "result in disk corruption.  However exporting (without this flag)  is always "
29769 "safe."
29770 msgstr ""
29771
29772 #. type: =item
29773 #: ../tools/virt-win-reg.pl:171
29774 msgid "B<--encoding> UTF-16LE|ASCII"
29775 msgstr ""
29776
29777 #. type: textblock
29778 #: ../tools/virt-win-reg.pl:173
29779 msgid ""
29780 "When merging (only), you may need to specify the encoding for strings to be "
29781 "used in the hive file.  This is explained in detail in L<Win::Hivex::Regedit"
29782 "(3)/ENCODING STRINGS>."
29783 msgstr ""
29784
29785 #. type: textblock
29786 #: ../tools/virt-win-reg.pl:177
29787 msgid ""
29788 "The default is to use UTF-16LE, which should work with recent versions of "
29789 "Windows."
29790 msgstr ""
29791
29792 #. type: =head1
29793 #: ../tools/virt-win-reg.pl:402
29794 msgid "SUPPORTED SYSTEMS"
29795 msgstr ""
29796
29797 #. type: textblock
29798 #: ../tools/virt-win-reg.pl:404
29799 msgid ""
29800 "The program currently supports Windows NT-derived guests starting with "
29801 "Windows XP through to at least Windows 7."
29802 msgstr ""
29803
29804 #. type: textblock
29805 #: ../tools/virt-win-reg.pl:407
29806 msgid ""
29807 "Registry support is done for C<HKEY_LOCAL_MACHINE\\SAM>, C<HKEY_LOCAL_MACHINE"
29808 "\\SECURITY>, C<HKEY_LOCAL_MACHINE\\SOFTWARE>, C<HKEY_LOCAL_MACHINE\\SYSTEM> "
29809 "and C<HKEY_USERS\\.DEFAULT>."
29810 msgstr ""
29811
29812 #. type: textblock
29813 #: ../tools/virt-win-reg.pl:411
29814 msgid ""
29815 "You can use C<HKLM> as a shorthand for C<HKEY_LOCAL_MACHINE>, and C<HKU> for "
29816 "C<HKEY_USERS>."
29817 msgstr ""
29818
29819 #. type: textblock
29820 #: ../tools/virt-win-reg.pl:414
29821 msgid ""
29822 "C<HKEY_USERS\\$SID> and C<HKEY_CURRENT_USER> are B<not> supported at this "
29823 "time."
29824 msgstr ""
29825
29826 #. type: =head1
29827 #: ../tools/virt-win-reg.pl:417
29828 msgid "ENCODING"
29829 msgstr ""
29830
29831 #. type: textblock
29832 #: ../tools/virt-win-reg.pl:419
29833 msgid ""
29834 "C<virt-win-reg> expects that regedit files have already been reencoded in "
29835 "the local encoding.  Usually on Linux hosts, this means UTF-8 with Unix-"
29836 "style line endings.  Since Windows regedit files are often in UTF-16LE with "
29837 "Windows-style line endings, you may need to reencode the whole file before "
29838 "or after processing."
29839 msgstr ""
29840
29841 #. type: textblock
29842 #: ../tools/virt-win-reg.pl:425
29843 msgid ""
29844 "To reencode a file from Windows format to Linux (before processing it with "
29845 "the I<--merge> option), you would do something like this:"
29846 msgstr ""
29847
29848 #. type: verbatim
29849 #: ../tools/virt-win-reg.pl:428
29850 #, no-wrap
29851 msgid ""
29852 " iconv -f utf-16le -t utf-8 < win.reg | dos2unix > linux.reg\n"
29853 "\n"
29854 msgstr ""
29855
29856 #. type: textblock
29857 #: ../tools/virt-win-reg.pl:430
29858 msgid ""
29859 "To go in the opposite direction, after exporting and before sending the file "
29860 "to a Windows user, do something like this:"
29861 msgstr ""
29862
29863 #. type: verbatim
29864 #: ../tools/virt-win-reg.pl:433
29865 #, no-wrap
29866 msgid ""
29867 " unix2dos linux.reg | iconv -f utf-8 -t utf-16le > win.reg\n"
29868 "\n"
29869 msgstr ""
29870
29871 #. type: textblock
29872 #: ../tools/virt-win-reg.pl:435
29873 msgid "For more information about encoding, see L<Win::Hivex::Regedit(3)>."
29874 msgstr ""
29875
29876 #. type: textblock
29877 #: ../tools/virt-win-reg.pl:437
29878 msgid ""
29879 "If you are unsure about the current encoding, use the L<file(1)> command.  "
29880 "Recent versions of Windows regedit.exe produce a UTF-16LE file with Windows-"
29881 "style (CRLF) line endings, like this:"
29882 msgstr ""
29883
29884 #. type: verbatim
29885 #: ../tools/virt-win-reg.pl:441
29886 #, no-wrap
29887 msgid ""
29888 " $ file software.reg\n"
29889 " software.reg: Little-endian UTF-16 Unicode text, with very long lines,\n"
29890 " with CRLF line terminators\n"
29891 "\n"
29892 msgstr ""
29893
29894 #. type: textblock
29895 #: ../tools/virt-win-reg.pl:445
29896 msgid "This file would need conversion before you could I<--merge> it."
29897 msgstr ""
29898
29899 #. type: =head1
29900 #: ../tools/virt-win-reg.pl:447
29901 msgid "CurrentControlSet etc."
29902 msgstr ""
29903
29904 #. type: textblock
29905 #: ../tools/virt-win-reg.pl:449
29906 msgid ""
29907 "Registry keys like C<CurrentControlSet> don't really exist in the Windows "
29908 "Registry at the level of the hive file, and therefore you cannot modify "
29909 "these."
29910 msgstr ""
29911
29912 #. type: textblock
29913 #: ../tools/virt-win-reg.pl:453
29914 msgid ""
29915 "C<CurrentControlSet> is usually an alias for C<ControlSet001>.  In some "
29916 "circumstances it might refer to another control set.  The way to find out is "
29917 "to look at the C<HKLM\\SYSTEM\\Select> key:"
29918 msgstr ""
29919
29920 #. type: verbatim
29921 #: ../tools/virt-win-reg.pl:457
29922 #, no-wrap
29923 msgid ""
29924 " # virt-win-reg WindowsGuest 'HKLM\\SYSTEM\\Select'\n"
29925 " [HKEY_LOCAL_MACHINE\\SYSTEM\\Select]\n"
29926 " \"Current\"=dword:00000001\n"
29927 " \"Default\"=dword:00000001\n"
29928 " \"Failed\"=dword:00000000\n"
29929 " \"LastKnownGood\"=dword:00000002\n"
29930 "\n"
29931 msgstr ""
29932
29933 #. type: textblock
29934 #: ../tools/virt-win-reg.pl:464
29935 msgid "\"Current\" is the one which Windows will choose when it boots."
29936 msgstr ""
29937
29938 #. type: textblock
29939 #: ../tools/virt-win-reg.pl:466
29940 msgid ""
29941 "Similarly, other C<Current...> keys in the path may need to be replaced."
29942 msgstr ""
29943
29944 #. type: =head1
29945 #: ../tools/virt-win-reg.pl:469
29946 msgid "WINDOWS TIPS"
29947 msgstr ""
29948
29949 #. type: textblock
29950 #: ../tools/virt-win-reg.pl:471
29951 msgid ""
29952 "Note that some of these tips modify the guest disk image.  The guest I<must> "
29953 "be shut off, else you will get disk corruption."
29954 msgstr ""
29955
29956 #. type: =head2
29957 #: ../tools/virt-win-reg.pl:474
29958 msgid "RUNNING A BATCH SCRIPT WHEN A USER LOGS IN"
29959 msgstr ""
29960
29961 #. type: textblock
29962 #: ../tools/virt-win-reg.pl:476
29963 msgid ""
29964 "Prepare a DOS batch script, VBScript or executable.  Upload this using "
29965 "L<guestfish(1)>.  For this example the script is called C<test.bat> and it "
29966 "is uploaded into C<C:\\>:"
29967 msgstr ""
29968
29969 #. type: verbatim
29970 #: ../tools/virt-win-reg.pl:480
29971 #, no-wrap
29972 msgid ""
29973 " guestfish -i -d WindowsGuest upload test.bat /test.bat\n"
29974 "\n"
29975 msgstr ""
29976
29977 #. type: textblock
29978 #: ../tools/virt-win-reg.pl:482
29979 msgid "Prepare a regedit file containing the registry change:"
29980 msgstr ""
29981
29982 #. type: verbatim
29983 #: ../tools/virt-win-reg.pl:484
29984 #, no-wrap
29985 msgid ""
29986 " cat > test.reg <<'EOF'\n"
29987 " [HKLM\\Software\\Microsoft\\Windows\\CurrentVersion\\RunOnce]\n"
29988 " \"Test\"=\"c:\\\\test.bat\"\n"
29989 " EOF\n"
29990 "\n"
29991 msgstr ""
29992
29993 #. type: textblock
29994 #: ../tools/virt-win-reg.pl:489
29995 msgid ""
29996 "In this example we use the key C<RunOnce> which means that the script will "
29997 "run precisely once when the first user logs in.  If you want it to run every "
29998 "time a user logs in, replace C<RunOnce> with C<Run>."
29999 msgstr ""
30000
30001 #. type: textblock
30002 #: ../tools/virt-win-reg.pl:493
30003 msgid "Now update the registry:"
30004 msgstr ""
30005
30006 #. type: verbatim
30007 #: ../tools/virt-win-reg.pl:495
30008 #, no-wrap
30009 msgid ""
30010 " virt-win-reg --merge WindowsGuest test.reg\n"
30011 "\n"
30012 msgstr ""
30013
30014 #. type: =head2
30015 #: ../tools/virt-win-reg.pl:497
30016 msgid "INSTALLING A SERVICE"
30017 msgstr ""
30018
30019 #. type: textblock
30020 #: ../tools/virt-win-reg.pl:499
30021 msgid ""
30022 "This section assumes you are familiar with Windows services, and you either "
30023 "have a program which handles the Windows Service Control Protocol directly "
30024 "or you want to run any program using a service wrapper like SrvAny or the "
30025 "free RHSrvAny."
30026 msgstr ""
30027
30028 #. type: textblock
30029 #: ../tools/virt-win-reg.pl:504
30030 msgid ""
30031 "First upload the program and optionally the service wrapper.  In this case "
30032 "the test program is called C<test.exe> and we are using the RHSrvAny wrapper:"
30033 msgstr ""
30034
30035 #. type: verbatim
30036 #: ../tools/virt-win-reg.pl:508
30037 #, no-wrap
30038 msgid ""
30039 " guestfish -i -d WindowsGuest <<EOF\n"
30040 "   upload rhsrvany.exe /rhsrvany.exe\n"
30041 "   upload test.exe /test.exe\n"
30042 " EOF\n"
30043 "\n"
30044 msgstr ""
30045
30046 #. type: textblock
30047 #: ../tools/virt-win-reg.pl:513
30048 msgid ""
30049 "Prepare a regedit file containing the registry changes.  In this example, "
30050 "the first registry change is needed for the service itself or the service "
30051 "wrapper (if used).  The second registry change is only needed because I am "
30052 "using the RHSrvAny service wrapper."
30053 msgstr ""
30054
30055 #. type: verbatim
30056 #: ../tools/virt-win-reg.pl:518
30057 #, no-wrap
30058 msgid ""
30059 " cat > service.reg <<'EOF'\n"
30060 " [HKLM\\SYSTEM\\ControlSet001\\services\\RHSrvAny]\n"
30061 " \"Type\"=dword:00000010\n"
30062 " \"Start\"=dword:00000002\n"
30063 " \"ErrorControl\"=dword:00000001\n"
30064 " \"ImagePath\"=\"c:\\\\rhsrvany.exe\"\n"
30065 " \"DisplayName\"=\"RHSrvAny\"\n"
30066 " \"ObjectName\"=\"NetworkService\"\n"
30067 " \n"
30068 msgstr ""
30069
30070 #. type: verbatim
30071 #: ../tools/virt-win-reg.pl:527
30072 #, no-wrap
30073 msgid ""
30074 " [HKLM\\SYSTEM\\ControlSet001\\services\\RHSrvAny\\Parameters]\n"
30075 " \"CommandLine\"=\"c:\\\\test.exe\"\n"
30076 " \"PWD\"=\"c:\\\\Temp\"\n"
30077 " EOF\n"
30078 "\n"
30079 msgstr ""
30080
30081 #. type: textblock
30082 #: ../tools/virt-win-reg.pl:538
30083 msgid ""
30084 "For use of C<ControlSet001> see the section above in this manual page.  You "
30085 "may need to adjust this according to the control set that is in use by the "
30086 "guest."
30087 msgstr ""
30088
30089 #. type: textblock
30090 #: ../tools/virt-win-reg.pl:544
30091 msgid ""
30092 "C<\"ObjectName\"> controls the privileges that the service will have.  An "
30093 "alternative is C<\"ObjectName\"=\"LocalSystem\"> which would be the most "
30094 "privileged account."
30095 msgstr ""
30096
30097 #. type: textblock
30098 #: ../tools/virt-win-reg.pl:550
30099 msgid ""
30100 "For the meaning of the magic numbers, see this Microsoft KB article: "
30101 "L<http://support.microsoft.com/kb/103000>."
30102 msgstr ""
30103
30104 #. type: textblock
30105 #: ../tools/virt-win-reg.pl:555
30106 msgid "Update the registry:"
30107 msgstr ""
30108
30109 #. type: verbatim
30110 #: ../tools/virt-win-reg.pl:557
30111 #, no-wrap
30112 msgid ""
30113 " virt-win-reg --merge WindowsGuest service.reg\n"
30114 "\n"
30115 msgstr ""
30116
30117 #. type: textblock
30118 #: ../tools/virt-win-reg.pl:561
30119 msgid ""
30120 "Be careful when passing parameters containing C<\\> (backslash) in the "
30121 "shell.  Usually you will have to use 'single quotes' or double backslashes "
30122 "(but not both) to protect them from the shell."
30123 msgstr ""
30124
30125 #. type: textblock
30126 #: ../tools/virt-win-reg.pl:565
30127 msgid "Paths and value names are case-insensitive."
30128 msgstr ""
30129
30130 #. type: textblock
30131 #: ../tools/virt-win-reg.pl:574
30132 msgid ""
30133 "L<hivex(3)>, L<hivexsh(1)>, L<hivexregedit(1)>, L<guestfs(3)>, L<guestfish(1)"
30134 ">, L<virt-cat(1)>, L<Sys::Guestfs(3)>, L<Sys::Guestfs::Lib(3)>, L<Win::Hivex"
30135 "(3)>, L<Win::Hivex::Regedit(3)>, L<Sys::Virt(3)>, L<http://libguestfs.org/>."
30136 msgstr ""
30137
30138 #. type: textblock
30139 #: ../tools/virt-win-reg.pl:589 ../tools/virt-make-fs.pl:555
30140 msgid ""
30141 "When reporting bugs, please enable debugging and capture the I<complete> "
30142 "output:"
30143 msgstr ""
30144
30145 #. type: verbatim
30146 #: ../tools/virt-win-reg.pl:592
30147 #, no-wrap
30148 msgid ""
30149 " export LIBGUESTFS_DEBUG=1\n"
30150 " virt-win-reg --debug [... rest ...] > /tmp/virt-win-reg.log 2>&1\n"
30151 "\n"
30152 msgstr ""
30153
30154 #. type: textblock
30155 #: ../tools/virt-win-reg.pl:595
30156 msgid ""
30157 "Attach /tmp/virt-win-reg.log to a new bug report at L<https://bugzilla."
30158 "redhat.com/>"
30159 msgstr ""
30160
30161 #. type: textblock
30162 #: ../tools/virt-win-reg.pl:604 ../tools/virt-make-fs.pl:570
30163 msgid "Copyright (C) 2010 Red Hat Inc."
30164 msgstr ""
30165
30166 #. type: textblock
30167 #: ../tools/virt-list-filesystems.pl:32
30168 msgid ""
30169 "virt-list-filesystems - List filesystems in a virtual machine or disk image"
30170 msgstr ""
30171
30172 #. type: verbatim
30173 #: ../tools/virt-list-filesystems.pl:36
30174 #, no-wrap
30175 msgid ""
30176 " virt-list-filesystems [--options] domname\n"
30177 "\n"
30178 msgstr ""
30179
30180 #. type: verbatim
30181 #: ../tools/virt-list-filesystems.pl:38
30182 #, no-wrap
30183 msgid ""
30184 " virt-list-filesystems [--options] disk.img [disk.img ...]\n"
30185 "\n"
30186 msgstr ""
30187
30188 #. type: textblock
30189 #: ../tools/virt-list-filesystems.pl:42 ../tools/virt-list-partitions.pl:42
30190 msgid ""
30191 "This tool is obsolete.  Use L<virt-filesystems(1)> as a more flexible "
30192 "replacement."
30193 msgstr ""
30194
30195 #. type: textblock
30196 #: ../tools/virt-list-filesystems.pl:45
30197 msgid ""
30198 "C<virt-list-filesystems> is a command line tool to list the filesystems that "
30199 "are contained in a virtual machine or disk image."
30200 msgstr ""
30201
30202 #. type: textblock
30203 #: ../tools/virt-list-filesystems.pl:49
30204 msgid ""
30205 "C<virt-list-filesystems> is just a simple wrapper around L<libguestfs(3)> "
30206 "functionality.  For more complex cases you should look at the L<guestfish(1)"
30207 "> tool."
30208 msgstr ""
30209
30210 #. type: =item
30211 #: ../tools/virt-list-filesystems.pl:106 ../tools/virt-list-partitions.pl:115
30212 msgid "B<-l> | B<--long>"
30213 msgstr ""
30214
30215 #. type: textblock
30216 #: ../tools/virt-list-filesystems.pl:108
30217 msgid ""
30218 "With this option, C<virt-list-filesystems> displays the type of each "
30219 "filesystem too (where \"type\" means C<ext3>, C<xfs> etc.)"
30220 msgstr ""
30221
30222 #. type: =item
30223 #: ../tools/virt-list-filesystems.pl:115
30224 msgid "B<-a> | B<--all>"
30225 msgstr ""
30226
30227 #. type: textblock
30228 #: ../tools/virt-list-filesystems.pl:117
30229 msgid ""
30230 "Normally we only show mountable filesystems.  If this option is given then "
30231 "swap devices are shown too."
30232 msgstr ""
30233
30234 #. type: textblock
30235 #: ../tools/virt-list-filesystems.pl:191
30236 msgid ""
30237 "L<guestfs(3)>, L<guestfish(1)>, L<virt-cat(1)>, L<virt-tar(1)>, L<virt-"
30238 "filesystems(1)>, L<virt-list-partitions(1)>, L<Sys::Guestfs(3)>, L<Sys::"
30239 "Guestfs::Lib(3)>, L<Sys::Virt(3)>, L<http://libguestfs.org/>."
30240 msgstr ""
30241
30242 #. type: textblock
30243 #: ../tools/virt-list-filesystems.pl:208 ../tools/virt-tar.pl:307
30244 msgid "Copyright (C) 2009 Red Hat Inc."
30245 msgstr ""
30246
30247 #. type: textblock
30248 #: ../tools/virt-tar.pl:33
30249 msgid "virt-tar - Extract or upload files to a virtual machine"
30250 msgstr ""
30251
30252 #. type: verbatim
30253 #: ../tools/virt-tar.pl:37
30254 #, no-wrap
30255 msgid ""
30256 " virt-tar [--options] -x domname directory tarball\n"
30257 "\n"
30258 msgstr ""
30259
30260 #. type: verbatim
30261 #: ../tools/virt-tar.pl:39
30262 #, no-wrap
30263 msgid ""
30264 " virt-tar [--options] -u domname tarball directory\n"
30265 "\n"
30266 msgstr ""
30267
30268 #. type: verbatim
30269 #: ../tools/virt-tar.pl:41
30270 #, no-wrap
30271 msgid ""
30272 " virt-tar [--options] disk.img [disk.img ...] -x directory tarball\n"
30273 "\n"
30274 msgstr ""
30275
30276 #. type: verbatim
30277 #: ../tools/virt-tar.pl:43
30278 #, no-wrap
30279 msgid ""
30280 " virt-tar [--options] disk.img [disk.img ...] -u tarball directory\n"
30281 "\n"
30282 msgstr ""
30283
30284 #. type: textblock
30285 #: ../tools/virt-tar.pl:47
30286 msgid ""
30287 "This tool is obsolete.  Use L<virt-copy-in(1)>, L<virt-copy-out(1)>, L<virt-"
30288 "tar-in(1)>, L<virt-tar-out(1)> as replacements."
30289 msgstr ""
30290
30291 #. type: textblock
30292 #: ../tools/virt-tar.pl:52
30293 msgid "Download C</home> from the VM into a local tarball:"
30294 msgstr ""
30295
30296 #. type: verbatim
30297 #: ../tools/virt-tar.pl:54
30298 #, no-wrap
30299 msgid ""
30300 " virt-tar -x domname /home home.tar\n"
30301 "\n"
30302 msgstr ""
30303
30304 #. type: verbatim
30305 #: ../tools/virt-tar.pl:56
30306 #, no-wrap
30307 msgid ""
30308 " virt-tar -zx domname /home home.tar.gz\n"
30309 "\n"
30310 msgstr ""
30311
30312 #. type: textblock
30313 #: ../tools/virt-tar.pl:58
30314 msgid "Upload a local tarball and unpack it inside C</tmp> in the VM:"
30315 msgstr ""
30316
30317 #. type: verbatim
30318 #: ../tools/virt-tar.pl:60
30319 #, no-wrap
30320 msgid ""
30321 " virt-tar -u domname uploadstuff.tar /tmp\n"
30322 "\n"
30323 msgstr ""
30324
30325 #. type: verbatim
30326 #: ../tools/virt-tar.pl:62
30327 #, no-wrap
30328 msgid ""
30329 " virt-tar -zu domname uploadstuff.tar.gz /tmp\n"
30330 "\n"
30331 msgstr ""
30332
30333 #. type: textblock
30334 #: ../tools/virt-tar.pl:66
30335 msgid ""
30336 "You must I<not> use C<virt-tar> with the I<-u> option (upload) on live "
30337 "virtual machines.  If you do this, you risk disk corruption in the VM.  "
30338 "C<virt-tar> tries to stop you from doing this, but doesn't catch all cases."
30339 msgstr ""
30340
30341 #. type: textblock
30342 #: ../tools/virt-tar.pl:71
30343 msgid ""
30344 "You can use I<-x> (extract) on live virtual machines, but you might get "
30345 "inconsistent results or errors if there is filesystem activity inside the "
30346 "VM.  If the live VM is synched and quiescent, then C<virt-tar> will usually "
30347 "work, but the only way to guarantee consistent results is if the virtual "
30348 "machine is shut down."
30349 msgstr ""
30350
30351 #. type: textblock
30352 #: ../tools/virt-tar.pl:79
30353 msgid ""
30354 "C<virt-tar> is a general purpose archive tool for downloading and uploading "
30355 "parts of a guest filesystem.  There are many possibilities: making backups, "
30356 "uploading data files, snooping on guest activity, fixing or customizing "
30357 "guests, etc."
30358 msgstr ""
30359
30360 #. type: textblock
30361 #: ../tools/virt-tar.pl:84
30362 msgid ""
30363 "If you want to just view a single file, use L<virt-cat(1)>.  If you just "
30364 "want to edit a single file, use L<virt-edit(1)>.  For more complex cases you "
30365 "should look at the L<guestfish(1)> tool."
30366 msgstr ""
30367
30368 #. type: textblock
30369 #: ../tools/virt-tar.pl:88
30370 msgid ""
30371 "There are two modes of operation: I<-x> (eXtract) downloads a directory and "
30372 "its contents (recursively) from the virtual machine into a local tarball.  "
30373 "I<-u> uploads from a local tarball, unpacking it into a directory inside the "
30374 "virtual machine.  You cannot use these two options together."
30375 msgstr ""
30376
30377 #. type: textblock
30378 #: ../tools/virt-tar.pl:94
30379 msgid ""
30380 "In addition, you may need to use the I<-z> (gZip) option to enable "
30381 "compression.  When uploading, you have to specify I<-z> if the upload file "
30382 "is compressed because virt-tar won't detect this on its own."
30383 msgstr ""
30384
30385 #. type: textblock
30386 #: ../tools/virt-tar.pl:98
30387 msgid ""
30388 "C<virt-tar> can only handle tar (optionally gzipped) format tarballs.  For "
30389 "example it cannot do PKZip files or bzip2 compression.  If you want that "
30390 "then you'll have to rebuild the tarballs yourself.  (This is a limitation of "
30391 "the L<libguestfs(3)> API)."
30392 msgstr ""
30393
30394 #. type: =item
30395 #: ../tools/virt-tar.pl:156
30396 msgid "B<-x> | B<--extract> | B<--download>"
30397 msgstr ""
30398
30399 #. type: =item
30400 #: ../tools/virt-tar.pl:158
30401 msgid "B<-u> | B<--upload>"
30402 msgstr ""
30403
30404 #. type: textblock
30405 #: ../tools/virt-tar.pl:160
30406 msgid ""
30407 "Use I<-x> to extract (download) a directory from a virtual machine to a "
30408 "local tarball."
30409 msgstr ""
30410
30411 #. type: textblock
30412 #: ../tools/virt-tar.pl:163
30413 msgid ""
30414 "Use I<-u> to upload and unpack from a local tarball into a virtual machine.  "
30415 "Please read the L</WARNING> section above before using this option."
30416 msgstr ""
30417
30418 #. type: textblock
30419 #: ../tools/virt-tar.pl:167
30420 msgid "You must specify exactly one of these options."
30421 msgstr ""
30422
30423 #. type: =item
30424 #: ../tools/virt-tar.pl:173
30425 msgid "B<-z> | B<--gzip>"
30426 msgstr ""
30427
30428 #. type: textblock
30429 #: ../tools/virt-tar.pl:175
30430 msgid "Specify that the input or output tarball is gzip-compressed."
30431 msgstr ""
30432
30433 #. type: textblock
30434 #: ../tools/virt-tar.pl:288
30435 msgid ""
30436 "L<guestfs(3)>, L<guestfish(1)>, L<virt-cat(1)>, L<virt-edit(1)>, L<virt-copy-"
30437 "in(1)>, L<virt-copy-out(1)>, L<virt-tar-in(1)>, L<virt-tar-out(1)>, L<Sys::"
30438 "Guestfs(3)>, L<Sys::Guestfs::Lib(3)>, L<Sys::Virt(3)>, L<http://libguestfs."
30439 "org/>."
30440 msgstr ""
30441
30442 #. type: textblock
30443 #: ../tools/virt-make-fs.pl:37
30444 msgid "virt-make-fs - Make a filesystem from a tar archive or files"
30445 msgstr ""
30446
30447 #. type: verbatim
30448 #: ../tools/virt-make-fs.pl:41
30449 #, no-wrap
30450 msgid ""
30451 " virt-make-fs [--options] input.tar output.img\n"
30452 "\n"
30453 msgstr ""
30454
30455 #. type: verbatim
30456 #: ../tools/virt-make-fs.pl:43
30457 #, no-wrap
30458 msgid ""
30459 " virt-make-fs [--options] input.tar.gz output.img\n"
30460 "\n"
30461 msgstr ""
30462
30463 #. type: verbatim
30464 #: ../tools/virt-make-fs.pl:45
30465 #, no-wrap
30466 msgid ""
30467 " virt-make-fs [--options] directory output.img\n"
30468 "\n"
30469 msgstr ""
30470
30471 #. type: textblock
30472 #: ../tools/virt-make-fs.pl:49
30473 msgid ""
30474 "Virt-make-fs is a command line tool for creating a filesystem from a tar "
30475 "archive or some files in a directory.  It is similar to tools like L<mkisofs"
30476 "(1)>, L<genisoimage(1)> and L<mksquashfs(1)>.  Unlike those tools, it can "
30477 "create common filesystem types like ext2/3 or NTFS, which can be useful if "
30478 "you want to attach these filesystems to existing virtual machines (eg. to "
30479 "import large amounts of read-only data to a VM)."
30480 msgstr ""
30481
30482 #. type: textblock
30483 #: ../tools/virt-make-fs.pl:57
30484 msgid "Basic usage is:"
30485 msgstr ""
30486
30487 #. type: verbatim
30488 #: ../tools/virt-make-fs.pl:59
30489 #, no-wrap
30490 msgid ""
30491 " virt-make-fs input output\n"
30492 "\n"
30493 msgstr ""
30494
30495 #. type: textblock
30496 #: ../tools/virt-make-fs.pl:61
30497 msgid ""
30498 "where C<input> is either a directory containing files that you want to add, "
30499 "or a tar archive (either uncompressed tar or gzip-compressed tar); and "
30500 "C<output> is a disk image.  The input type is detected automatically.  The "
30501 "output disk image defaults to a raw ext2 image unless you specify extra "
30502 "flags (see L</OPTIONS> below)."
30503 msgstr ""
30504
30505 #. type: =head2
30506 #: ../tools/virt-make-fs.pl:67
30507 msgid "EXTRA SPACE"
30508 msgstr ""
30509
30510 #. type: textblock
30511 #: ../tools/virt-make-fs.pl:69
30512 msgid ""
30513 "Unlike formats such as tar and squashfs, a filesystem does not \"just fit\" "
30514 "the files that it contains, but might have extra space.  Depending on how "
30515 "you are going to use the output, you might think this extra space is wasted "
30516 "and want to minimize it, or you might want to leave space so that more files "
30517 "can be added later.  Virt-make-fs defaults to minimizing the extra space, "
30518 "but you can use the I<--size> flag to leave space in the filesystem if you "
30519 "want it."
30520 msgstr ""
30521
30522 #. type: textblock
30523 #: ../tools/virt-make-fs.pl:77
30524 msgid ""
30525 "An alternative way to leave extra space but not make the output image any "
30526 "bigger is to use an alternative disk image format (instead of the default "
30527 "\"raw\" format).  Using I<--format=qcow2> will use the native QEmu/KVM qcow2 "
30528 "image format (check your hypervisor supports this before using it).  This "
30529 "allows you to choose a large I<--size> but the extra space won't actually be "
30530 "allocated in the image until you try to store something in it."
30531 msgstr ""
30532
30533 #. type: textblock
30534 #: ../tools/virt-make-fs.pl:85
30535 msgid ""
30536 "Don't forget that you can also use local commands including L<resize2fs(8)> "
30537 "and L<virt-resize(1)> to resize existing filesystems, or rerun virt-make-fs "
30538 "to build another image from scratch."
30539 msgstr ""
30540
30541 #. type: =head3
30542 #: ../tools/virt-make-fs.pl:89 ../tools/virt-make-fs.pl:123
30543 #: ../tools/virt-make-fs.pl:142
30544 msgid "EXAMPLE"
30545 msgstr ""
30546
30547 #. type: verbatim
30548 #: ../tools/virt-make-fs.pl:91
30549 #, no-wrap
30550 msgid ""
30551 " virt-make-fs --format=qcow2 --size=+200M input output.img\n"
30552 "\n"
30553 msgstr ""
30554
30555 #. type: =head2
30556 #: ../tools/virt-make-fs.pl:93
30557 msgid "FILESYSTEM TYPE"
30558 msgstr ""
30559
30560 #. type: textblock
30561 #: ../tools/virt-make-fs.pl:95
30562 msgid ""
30563 "The default filesystem type is C<ext2>.  Just about any filesystem type that "
30564 "libguestfs supports can be used (but I<not> read-only formats like "
30565 "ISO9660).  Here are some of the more common choices:"
30566 msgstr ""
30567
30568 #. type: =item
30569 #: ../tools/virt-make-fs.pl:101
30570 msgid "I<ext3>"
30571 msgstr ""
30572
30573 #. type: textblock
30574 #: ../tools/virt-make-fs.pl:103
30575 msgid ""
30576 "Note that ext3 filesystems contain a journal, typically 1-32 MB in size.  If "
30577 "you are not going to use the filesystem in a way that requires the journal, "
30578 "then this is just wasted overhead."
30579 msgstr ""
30580
30581 #. type: =item
30582 #: ../tools/virt-make-fs.pl:107
30583 msgid "I<ntfs> or I<vfat>"
30584 msgstr ""
30585
30586 #. type: textblock
30587 #: ../tools/virt-make-fs.pl:109
30588 msgid "Useful if exporting data to a Windows guest."
30589 msgstr ""
30590
30591 #. type: textblock
30592 #: ../tools/virt-make-fs.pl:111
30593 msgid ""
30594 "I<Note for vfat>: The tar archive or local directory must only contain files "
30595 "which are owned by root (ie. UID:GID = 0:0).  The reason is that the tar "
30596 "program running within libguestfs is unable to change the ownership of non-"
30597 "root files, since vfat itself does not support this."
30598 msgstr ""
30599
30600 #. type: =item
30601 #: ../tools/virt-make-fs.pl:116
30602 msgid "I<minix>"
30603 msgstr ""
30604
30605 #. type: textblock
30606 #: ../tools/virt-make-fs.pl:118
30607 msgid ""
30608 "Lower overhead than C<ext2>, but certain limitations on filename length and "
30609 "total filesystem size."
30610 msgstr ""
30611
30612 #. type: verbatim
30613 #: ../tools/virt-make-fs.pl:125
30614 #, no-wrap
30615 msgid ""
30616 " virt-make-fs --type=minix input minixfs.img\n"
30617 "\n"
30618 msgstr ""
30619
30620 #. type: =head2
30621 #: ../tools/virt-make-fs.pl:127
30622 msgid "TO PARTITION OR NOT TO PARTITION"
30623 msgstr ""
30624
30625 #. type: textblock
30626 #: ../tools/virt-make-fs.pl:129
30627 msgid "Optionally virt-make-fs can add a partition table to the output disk."
30628 msgstr ""
30629
30630 #. type: textblock
30631 #: ../tools/virt-make-fs.pl:131
30632 msgid ""
30633 "Adding a partition can make the disk image more compatible with certain "
30634 "virtualized operating systems which don't expect to see a filesystem "
30635 "directly located on a block device (Linux doesn't care and will happily "
30636 "handle both types)."
30637 msgstr ""
30638
30639 #. type: textblock
30640 #: ../tools/virt-make-fs.pl:136
30641 msgid ""
30642 "On the other hand, if you have a partition table then the output image is no "
30643 "longer a straight filesystem.  For example you cannot run L<fsck(8)> "
30644 "directly on a partitioned disk image.  (However libguestfs tools such as "
30645 "L<guestfish(1)> and L<virt-resize(1)> can still be used)."
30646 msgstr ""
30647
30648 #. type: textblock
30649 #: ../tools/virt-make-fs.pl:144
30650 msgid "Add an MBR partition:"
30651 msgstr ""
30652
30653 #. type: verbatim
30654 #: ../tools/virt-make-fs.pl:146
30655 #, no-wrap
30656 msgid ""
30657 " virt-make-fs --partition -- input disk.img\n"
30658 "\n"
30659 msgstr ""
30660
30661 #. type: textblock
30662 #: ../tools/virt-make-fs.pl:148
30663 msgid ""
30664 "If the output disk image could be terabyte-sized or larger, it's better to "
30665 "use an EFI/GPT-compatible partition table:"
30666 msgstr ""
30667
30668 #. type: verbatim
30669 #: ../tools/virt-make-fs.pl:151
30670 #, no-wrap
30671 msgid ""
30672 " virt-make-fs --partition=gpt --size=+4T --format=qcow2 input disk.img\n"
30673 "\n"
30674 msgstr ""
30675
30676 #. type: textblock
30677 #: ../tools/virt-make-fs.pl:179
30678 msgid "Enable debugging information."
30679 msgstr ""
30680
30681 #. type: =item
30682 #: ../tools/virt-make-fs.pl:185
30683 msgid "B<--size=E<lt>NE<gt>>"
30684 msgstr ""
30685
30686 #. type: =item
30687 #: ../tools/virt-make-fs.pl:187
30688 msgid "B<--size=+E<lt>NE<gt>>"
30689 msgstr ""
30690
30691 #. type: =item
30692 #: ../tools/virt-make-fs.pl:189
30693 msgid "B<-s E<lt>NE<gt>>"
30694 msgstr ""
30695
30696 #. type: =item
30697 #: ../tools/virt-make-fs.pl:191
30698 msgid "B<-s +E<lt>NE<gt>>"
30699 msgstr ""
30700
30701 #. type: textblock
30702 #: ../tools/virt-make-fs.pl:193
30703 msgid ""
30704 "Use the I<--size> (or I<-s>) option to choose the size of the output image."
30705 msgstr ""
30706
30707 #. type: textblock
30708 #: ../tools/virt-make-fs.pl:196
30709 msgid ""
30710 "If this option is I<not> given, then the output image will be just large "
30711 "enough to contain all the files, with not much wasted space."
30712 msgstr ""
30713
30714 #. type: textblock
30715 #: ../tools/virt-make-fs.pl:199
30716 msgid ""
30717 "To choose a fixed size output disk, specify an absolute number followed by b/"
30718 "K/M/G/T/P/E to mean bytes, Kilobytes, Megabytes, Gigabytes, Terabytes, "
30719 "Petabytes or Exabytes.  This must be large enough to contain all the input "
30720 "files, else you will get an error."
30721 msgstr ""
30722
30723 #. type: textblock
30724 #: ../tools/virt-make-fs.pl:204
30725 msgid ""
30726 "To leave extra space, specify C<+> (plus sign) and a number followed by b/K/"
30727 "M/G/T/P/E to mean bytes, Kilobytes, Megabytes, Gigabytes, Terabytes, "
30728 "Petabytes or Exabytes.  For example: I<--size=+200M> means enough space for "
30729 "the input files, and (approximately) an extra 200 MB free space."
30730 msgstr ""
30731
30732 #. type: textblock
30733 #: ../tools/virt-make-fs.pl:210
30734 msgid ""
30735 "Note that virt-make-fs estimates free space, and therefore will not produce "
30736 "filesystems containing precisely the free space requested.  (It is much more "
30737 "expensive and time-consuming to produce a filesystem which has precisely the "
30738 "desired free space)."
30739 msgstr ""
30740
30741 #. type: =item
30742 #: ../tools/virt-make-fs.pl:219
30743 msgid "B<--format=E<lt>fmtE<gt>>"
30744 msgstr ""
30745
30746 #. type: =item
30747 #: ../tools/virt-make-fs.pl:221
30748 msgid "B<-F E<lt>fmtE<gt>>"
30749 msgstr ""
30750
30751 #. type: textblock
30752 #: ../tools/virt-make-fs.pl:223
30753 msgid "Choose the output disk image format."
30754 msgstr ""
30755
30756 #. type: textblock
30757 #: ../tools/virt-make-fs.pl:225
30758 msgid "The default is C<raw> (raw disk image)."
30759 msgstr ""
30760
30761 #. type: textblock
30762 #: ../tools/virt-make-fs.pl:227
30763 msgid ""
30764 "For other choices, see the L<qemu-img(1)> manpage.  The only other choice "
30765 "that would really make sense here is C<qcow2>."
30766 msgstr ""
30767
30768 #. type: =item
30769 #: ../tools/virt-make-fs.pl:234
30770 msgid "B<--type=E<lt>fsE<gt>>"
30771 msgstr ""
30772
30773 #. type: =item
30774 #: ../tools/virt-make-fs.pl:236
30775 msgid "B<-t E<lt>fsE<gt>>"
30776 msgstr ""
30777
30778 #. type: textblock
30779 #: ../tools/virt-make-fs.pl:238
30780 msgid "Choose the output filesystem type."
30781 msgstr ""
30782
30783 #. type: textblock
30784 #: ../tools/virt-make-fs.pl:240
30785 msgid "The default is C<ext2>."
30786 msgstr ""
30787
30788 #. type: textblock
30789 #: ../tools/virt-make-fs.pl:242
30790 msgid ""
30791 "Any filesystem which is supported read-write by libguestfs can be used here."
30792 msgstr ""
30793
30794 #. type: =item
30795 #: ../tools/virt-make-fs.pl:249
30796 msgid "B<--partition>"
30797 msgstr ""
30798
30799 #. type: =item
30800 #: ../tools/virt-make-fs.pl:251
30801 msgid "B<--partition=E<lt>parttypeE<gt>>"
30802 msgstr ""
30803
30804 #. type: textblock
30805 #: ../tools/virt-make-fs.pl:253
30806 msgid ""
30807 "If specified, this flag adds an MBR partition table to the output disk image."
30808 msgstr ""
30809
30810 #. type: textblock
30811 #: ../tools/virt-make-fs.pl:256
30812 msgid ""
30813 "You can change the partition table type, eg. I<--partition=gpt> for large "
30814 "disks."
30815 msgstr ""
30816
30817 #. type: textblock
30818 #: ../tools/virt-make-fs.pl:259
30819 msgid ""
30820 "Note that if you just use a lonesome I<--partition>, the Perl option parser "
30821 "might consider the next parameter to be the partition type.  For example:"
30822 msgstr ""
30823
30824 #. type: verbatim
30825 #: ../tools/virt-make-fs.pl:263
30826 #, no-wrap
30827 msgid ""
30828 " virt-make-fs --partition input.tar ...\n"
30829 "\n"
30830 msgstr ""
30831
30832 #. type: textblock
30833 #: ../tools/virt-make-fs.pl:265
30834 msgid ""
30835 "would cause virt-make-fs to think you wanted to use a partition type of "
30836 "C<input.tar> which is completely wrong.  To avoid this, use I<--> (a double "
30837 "dash) between options and the input file argument:"
30838 msgstr ""
30839
30840 #. type: verbatim
30841 #: ../tools/virt-make-fs.pl:269
30842 #, no-wrap
30843 msgid ""
30844 " virt-make-fs --partition -- input.tar ...\n"
30845 "\n"
30846 msgstr ""
30847
30848 #. type: textblock
30849 #: ../tools/virt-make-fs.pl:541
30850 msgid ""
30851 "L<guestfish(1)>, L<virt-resize(1)>, L<virt-tar-in(1)>, L<mkisofs(1)>, "
30852 "L<genisoimage(1)>, L<mksquashfs(1)>, L<mke2fs(8)>, L<resize2fs(8)>, L<guestfs"
30853 "(3)>, L<Sys::Guestfs(3)>, L<http://libguestfs.org/>."
30854 msgstr ""
30855
30856 #. type: verbatim
30857 #: ../tools/virt-make-fs.pl:558
30858 #, no-wrap
30859 msgid ""
30860 " export LIBGUESTFS_DEBUG=1\n"
30861 " virt-make-fs --debug [...] > /tmp/virt-make-fs.log 2>&1\n"
30862 "\n"
30863 msgstr ""
30864
30865 #. type: textblock
30866 #: ../tools/virt-make-fs.pl:561
30867 msgid ""
30868 "Attach /tmp/virt-make-fs.log to a new bug report at L<https://bugzilla."
30869 "redhat.com/>"
30870 msgstr ""
30871
30872 #. type: textblock
30873 #: ../tools/virt-list-partitions.pl:32
30874 msgid ""
30875 "virt-list-partitions - List partitions in a virtual machine or disk image"
30876 msgstr ""
30877
30878 #. type: verbatim
30879 #: ../tools/virt-list-partitions.pl:36
30880 #, no-wrap
30881 msgid ""
30882 " virt-list-partitions [--options] domname\n"
30883 "\n"
30884 msgstr ""
30885
30886 #. type: verbatim
30887 #: ../tools/virt-list-partitions.pl:38
30888 #, no-wrap
30889 msgid ""
30890 " virt-list-partitions [--options] disk.img [disk.img ...]\n"
30891 "\n"
30892 msgstr ""
30893
30894 #. type: textblock
30895 #: ../tools/virt-list-partitions.pl:45
30896 msgid ""
30897 "C<virt-list-partitions> is a command line tool to list the partitions that "
30898 "are contained in a virtual machine or disk image.  It is mainly useful as a "
30899 "first step to using L<virt-resize(1)>."
30900 msgstr ""
30901
30902 #. type: textblock
30903 #: ../tools/virt-list-partitions.pl:50
30904 msgid ""
30905 "C<virt-list-partitions> is just a simple wrapper around L<libguestfs(3)> "
30906 "functionality.  For more complex cases you should look at the L<guestfish(1)"
30907 "> tool."
30908 msgstr ""
30909
30910 #. type: =item
30911 #: ../tools/virt-list-partitions.pl:107
30912 msgid "B<-h> | B<--human-readable>"
30913 msgstr ""
30914
30915 #. type: textblock
30916 #: ../tools/virt-list-partitions.pl:109
30917 msgid "Show sizes in human-readable form (eg. \"1G\")."
30918 msgstr ""
30919
30920 #. type: textblock
30921 #: ../tools/virt-list-partitions.pl:117
30922 msgid ""
30923 "With this option, C<virt-list-partitions> displays the type and size of each "
30924 "partition too (where \"type\" means C<ext3>, C<pv> etc.)"
30925 msgstr ""
30926
30927 #. type: =item
30928 #: ../tools/virt-list-partitions.pl:124
30929 msgid "B<-t> | B<--total>"
30930 msgstr ""
30931
30932 #. type: textblock
30933 #: ../tools/virt-list-partitions.pl:126
30934 msgid ""
30935 "Display the total size of each block device (as a separate row or rows)."
30936 msgstr ""
30937
30938 #. type: textblock
30939 #: ../tools/virt-list-partitions.pl:259
30940 msgid ""
30941 "L<guestfs(3)>, L<guestfish(1)>, L<virt-filesystems(1)>, L<virt-list-"
30942 "filesystems(1)>, L<virt-resize(1)>, L<Sys::Guestfs(3)>, L<Sys::Guestfs::Lib"
30943 "(3)>, L<Sys::Virt(3)>, L<http://libguestfs.org/>."
30944 msgstr ""
30945
30946 #. type: textblock
30947 #: ../tools/virt-list-partitions.pl:275
30948 msgid "Copyright (C) 2009-2010 Red Hat Inc."
30949 msgstr ""