Version 1.10.11.
[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-09-16 16: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:582
870 #: ../src/guestfs-actions.pod:590 ../src/guestfs-actions.pod:597
871 #: ../src/guestfs-actions.pod:604 ../src/guestfs-actions.pod:1602
872 #: ../src/guestfs-actions.pod:1606 ../src/guestfs-actions.pod:1610
873 #: ../src/guestfs-actions.pod:1614 ../src/guestfs-actions.pod:1622
874 #: ../src/guestfs-actions.pod:1626 ../src/guestfs-actions.pod:1630
875 #: ../src/guestfs-actions.pod:1640 ../src/guestfs-actions.pod:1644
876 #: ../src/guestfs-actions.pod:1648 ../src/guestfs-actions.pod:1786
877 #: ../src/guestfs-actions.pod:1790 ../src/guestfs-actions.pod:1795
878 #: ../src/guestfs-actions.pod:1800 ../src/guestfs-actions.pod:1861
879 #: ../src/guestfs-actions.pod:1865 ../src/guestfs-actions.pod:1870
880 #: ../src/guestfs-actions.pod:2261 ../src/guestfs-actions.pod:2268
881 #: ../src/guestfs-actions.pod:2275 ../fish/guestfish.pod:443
882 #: ../fish/guestfish.pod:447 ../fish/guestfish.pod:451
883 #: ../fish/guestfish.pod:455 ../fish/guestfish-actions.pod:13
884 #: ../fish/guestfish-actions.pod:20 ../fish/guestfish-actions.pod:385
885 #: ../fish/guestfish-actions.pod:393 ../fish/guestfish-actions.pod:400
886 #: ../fish/guestfish-actions.pod:407 ../fish/guestfish-actions.pod:1074
887 #: ../fish/guestfish-actions.pod:1078 ../fish/guestfish-actions.pod:1082
888 #: ../fish/guestfish-actions.pod:1086 ../fish/guestfish-actions.pod:1094
889 #: ../fish/guestfish-actions.pod:1098 ../fish/guestfish-actions.pod:1102
890 #: ../fish/guestfish-actions.pod:1112 ../fish/guestfish-actions.pod:1116
891 #: ../fish/guestfish-actions.pod:1120 ../fish/guestfish-actions.pod:1210
892 #: ../fish/guestfish-actions.pod:1214 ../fish/guestfish-actions.pod:1219
893 #: ../fish/guestfish-actions.pod:1224 ../fish/guestfish-actions.pod:1266
894 #: ../fish/guestfish-actions.pod:1270 ../fish/guestfish-actions.pod:1275
895 #: ../fish/guestfish-actions.pod:1519 ../fish/guestfish-actions.pod:1526
896 #: ../fish/guestfish-actions.pod:1533 ../tools/virt-edit.pl:351
897 #: ../tools/virt-edit.pl:356 ../tools/virt-edit.pl:361
898 #: ../tools/virt-edit.pl:372 ../tools/virt-edit.pl:376
899 #: ../tools/virt-win-reg.pl:536 ../tools/virt-win-reg.pl:542
900 #: ../tools/virt-win-reg.pl:548
901 msgid "*"
902 msgstr ""
903
904 #. type: textblock
905 #: ../src/guestfs.pod:390
906 msgid ""
907 "The kernel version that the command runs under will be different from what "
908 "it expects."
909 msgstr ""
910
911 #. type: textblock
912 #: ../src/guestfs.pod:395
913 msgid ""
914 "If the command needs to communicate with daemons, then most likely they "
915 "won't be running."
916 msgstr ""
917
918 #. type: textblock
919 #: ../src/guestfs.pod:400
920 msgid "The command will be running in limited memory."
921 msgstr ""
922
923 #. type: textblock
924 #: ../src/guestfs.pod:404
925 msgid ""
926 "The network may not be available unless you enable it (see L</"
927 "guestfs_set_network>)."
928 msgstr ""
929
930 #. type: textblock
931 #: ../src/guestfs.pod:409
932 msgid "Only supports Linux guests (not Windows, BSD, etc)."
933 msgstr ""
934
935 #. type: textblock
936 #: ../src/guestfs.pod:413
937 msgid ""
938 "Architecture limitations (eg. won't work for a PPC guest on an X86 host)."
939 msgstr ""
940
941 #. type: textblock
942 #: ../src/guestfs.pod:418
943 msgid ""
944 "For SELinux guests, you may need to enable SELinux and load policy first.  "
945 "See L</SELINUX> in this manpage."
946 msgstr ""
947
948 #. type: textblock
949 #: ../src/guestfs.pod:423
950 msgid ""
951 "I<Security:> It is not safe to run commands from untrusted, possibly "
952 "malicious guests.  These commands may attempt to exploit your program by "
953 "sending unexpected output.  They could also try to exploit the Linux kernel "
954 "or qemu provided by the libguestfs appliance.  They could use the network "
955 "provided by the libguestfs appliance to bypass ordinary network partitions "
956 "and firewalls.  They could use the elevated privileges or different SELinux "
957 "context of your program to their advantage."
958 msgstr ""
959
960 #. type: textblock
961 #: ../src/guestfs.pod:432
962 msgid ""
963 "A secure alternative is to use libguestfs to install a \"firstboot\" script "
964 "(a script which runs when the guest next boots normally), and to have this "
965 "script run the commands you want in the normal context of the running guest, "
966 "network security and so on.  For information about other security issues, "
967 "see L</SECURITY>."
968 msgstr ""
969
970 #. type: textblock
971 #: ../src/guestfs.pod:440
972 msgid ""
973 "The two main API calls to run commands are L</guestfs_command> and L</"
974 "guestfs_sh> (there are also variations)."
975 msgstr ""
976
977 #. type: textblock
978 #: ../src/guestfs.pod:443
979 msgid ""
980 "The difference is that L</guestfs_sh> runs commands using the shell, so any "
981 "shell globs, redirections, etc will work."
982 msgstr ""
983
984 #. type: =head2
985 #: ../src/guestfs.pod:446
986 msgid "CONFIGURATION FILES"
987 msgstr "ФАЙЛИ НАЛАШТУВАННЯ"
988
989 #. type: textblock
990 #: ../src/guestfs.pod:448
991 msgid ""
992 "To read and write configuration files in Linux guest filesystems, we "
993 "strongly recommend using Augeas.  For example, Augeas understands how to "
994 "read and write, say, a Linux shadow password file or X.org configuration "
995 "file, and so avoids you having to write that code."
996 msgstr ""
997
998 #. type: textblock
999 #: ../src/guestfs.pod:453
1000 msgid ""
1001 "The main Augeas calls are bound through the C<guestfs_aug_*> APIs.  We don't "
1002 "document Augeas itself here because there is excellent documentation on the "
1003 "L<http://augeas.net/> website."
1004 msgstr ""
1005
1006 #. type: textblock
1007 #: ../src/guestfs.pod:457
1008 msgid ""
1009 "If you don't want to use Augeas (you fool!) then try calling L</"
1010 "guestfs_read_lines> to get the file as a list of lines which you can iterate "
1011 "over."
1012 msgstr ""
1013
1014 #. type: =head2
1015 #: ../src/guestfs.pod:461
1016 msgid "SELINUX"
1017 msgstr "SELINUX"
1018
1019 #. type: textblock
1020 #: ../src/guestfs.pod:463
1021 msgid ""
1022 "We support SELinux guests.  To ensure that labeling happens correctly in "
1023 "SELinux guests, you need to enable SELinux and load the guest's policy:"
1024 msgstr ""
1025
1026 #. type: =item
1027 #: ../src/guestfs.pod:469 ../src/guestfs.pod:1257 ../src/guestfs.pod:1395
1028 #: ../src/guestfs.pod:2425
1029 msgid "1."
1030 msgstr ""
1031
1032 #. type: textblock
1033 #: ../src/guestfs.pod:471
1034 msgid "Before launching, do:"
1035 msgstr ""
1036
1037 #. type: verbatim
1038 #: ../src/guestfs.pod:473
1039 #, no-wrap
1040 msgid ""
1041 " guestfs_set_selinux (g, 1);\n"
1042 "\n"
1043 msgstr ""
1044
1045 #. type: =item
1046 #: ../src/guestfs.pod:475 ../src/guestfs.pod:1261 ../src/guestfs.pod:1399
1047 #: ../src/guestfs.pod:2450
1048 msgid "2."
1049 msgstr ""
1050
1051 #. type: textblock
1052 #: ../src/guestfs.pod:477
1053 msgid ""
1054 "After mounting the guest's filesystem(s), load the policy.  This is best "
1055 "done by running the L<load_policy(8)> command in the guest itself:"
1056 msgstr ""
1057
1058 #. type: verbatim
1059 #: ../src/guestfs.pod:481
1060 #, no-wrap
1061 msgid ""
1062 " guestfs_sh (g, \"/usr/sbin/load_policy\");\n"
1063 "\n"
1064 msgstr ""
1065
1066 #. type: textblock
1067 #: ../src/guestfs.pod:483
1068 msgid ""
1069 "(Older versions of C<load_policy> require you to specify the name of the "
1070 "policy file)."
1071 msgstr ""
1072
1073 #. type: =item
1074 #: ../src/guestfs.pod:486 ../src/guestfs.pod:1405
1075 msgid "3."
1076 msgstr ""
1077
1078 #. type: textblock
1079 #: ../src/guestfs.pod:488
1080 msgid ""
1081 "Optionally, set the security context for the API.  The correct security "
1082 "context to use can only be known by inspecting the guest.  As an example:"
1083 msgstr ""
1084
1085 #. type: verbatim
1086 #: ../src/guestfs.pod:492
1087 #, no-wrap
1088 msgid ""
1089 " guestfs_setcon (g, \"unconfined_u:unconfined_r:unconfined_t:s0\");\n"
1090 "\n"
1091 msgstr ""
1092
1093 #. type: textblock
1094 #: ../src/guestfs.pod:496
1095 msgid "This will work for running commands and editing existing files."
1096 msgstr ""
1097
1098 #. type: textblock
1099 #: ../src/guestfs.pod:498
1100 msgid ""
1101 "When new files are created, you may need to label them explicitly, for "
1102 "example by running the external command C<restorecon pathname>."
1103 msgstr ""
1104
1105 #. type: =head2
1106 #: ../src/guestfs.pod:502
1107 msgid "UMASK"
1108 msgstr ""
1109
1110 #. type: textblock
1111 #: ../src/guestfs.pod:504
1112 msgid ""
1113 "Certain calls are affected by the current file mode creation mask (the "
1114 "\"umask\").  In particular ones which create files or directories, such as "
1115 "L</guestfs_touch>, L</guestfs_mknod> or L</guestfs_mkdir>.  This affects "
1116 "either the default mode that the file is created with or modifies the mode "
1117 "that you supply."
1118 msgstr ""
1119
1120 #. type: textblock
1121 #: ../src/guestfs.pod:510
1122 msgid ""
1123 "The default umask is C<022>, so files are created with modes such as C<0644> "
1124 "and directories with C<0755>."
1125 msgstr ""
1126
1127 #. type: textblock
1128 #: ../src/guestfs.pod:513
1129 msgid ""
1130 "There are two ways to avoid being affected by umask.  Either set umask to 0 "
1131 "(call C<guestfs_umask (g, 0)> early after launching).  Or call L</"
1132 "guestfs_chmod> after creating each file or directory."
1133 msgstr ""
1134
1135 #. type: textblock
1136 #: ../src/guestfs.pod:517
1137 msgid "For more information about umask, see L<umask(2)>."
1138 msgstr ""
1139
1140 #. type: =head1
1141 #: ../src/guestfs.pod:519 ../fish/guestfish.pod:765
1142 msgid "ENCRYPTED DISKS"
1143 msgstr ""
1144
1145 #. type: textblock
1146 #: ../src/guestfs.pod:521
1147 msgid ""
1148 "Libguestfs allows you to access Linux guests which have been encrypted using "
1149 "whole disk encryption that conforms to the Linux Unified Key Setup (LUKS) "
1150 "standard.  This includes nearly all whole disk encryption systems used by "
1151 "modern Linux guests."
1152 msgstr ""
1153
1154 #. type: textblock
1155 #: ../src/guestfs.pod:527
1156 msgid ""
1157 "Use L</guestfs_vfs_type> to identify LUKS-encrypted block devices (it "
1158 "returns the string C<crypto_LUKS>)."
1159 msgstr ""
1160
1161 #. type: textblock
1162 #: ../src/guestfs.pod:530
1163 msgid ""
1164 "Then open these devices by calling L</guestfs_luks_open>.  Obviously you "
1165 "will require the passphrase!"
1166 msgstr ""
1167
1168 #. type: textblock
1169 #: ../src/guestfs.pod:533
1170 msgid ""
1171 "Opening a LUKS device creates a new device mapper device called C</dev/"
1172 "mapper/mapname> (where C<mapname> is the string you supply to L</"
1173 "guestfs_luks_open>).  Reads and writes to this mapper device are decrypted "
1174 "from and encrypted to the underlying block device respectively."
1175 msgstr ""
1176
1177 #. type: textblock
1178 #: ../src/guestfs.pod:539
1179 msgid ""
1180 "LVM volume groups on the device can be made visible by calling L</"
1181 "guestfs_vgscan> followed by L</guestfs_vg_activate_all>.  The logical volume"
1182 "(s) can now be mounted in the usual way."
1183 msgstr ""
1184
1185 #. type: textblock
1186 #: ../src/guestfs.pod:543
1187 msgid ""
1188 "Use the reverse process to close a LUKS device.  Unmount any logical volumes "
1189 "on it, deactivate the volume groups by caling C<guestfs_vg_activate (g, 0, "
1190 "[\"/dev/VG\"])>.  Then close the mapper device by calling L</"
1191 "guestfs_luks_close> on the C</dev/mapper/mapname> device (I<not> the "
1192 "underlying encrypted block device)."
1193 msgstr ""
1194
1195 #. type: =head2
1196 #: ../src/guestfs.pod:550
1197 msgid "INSPECTION"
1198 msgstr "ПЕРЕВІРКА"
1199
1200 #. type: textblock
1201 #: ../src/guestfs.pod:552
1202 msgid ""
1203 "Libguestfs has APIs for inspecting an unknown disk image to find out if it "
1204 "contains operating systems, an install CD or a live CD.  (These APIs used to "
1205 "be in a separate Perl-only library called L<Sys::Guestfs::Lib(3)> but since "
1206 "version 1.5.3 the most frequently used part of this library has been "
1207 "rewritten in C and moved into the core code)."
1208 msgstr ""
1209
1210 #. type: textblock
1211 #: ../src/guestfs.pod:559
1212 msgid ""
1213 "Add all disks belonging to the unknown virtual machine and call L</"
1214 "guestfs_launch> in the usual way."
1215 msgstr ""
1216
1217 #. type: textblock
1218 #: ../src/guestfs.pod:562
1219 msgid ""
1220 "Then call L</guestfs_inspect_os>.  This function uses other libguestfs calls "
1221 "and certain heuristics, and returns a list of operating systems that were "
1222 "found.  An empty list means none were found.  A single element is the root "
1223 "filesystem of the operating system.  For dual- or multi-boot guests, "
1224 "multiple roots can be returned, each one corresponding to a separate "
1225 "operating system.  (Multi-boot virtual machines are extremely rare in the "
1226 "world of virtualization, but since this scenario can happen, we have built "
1227 "libguestfs to deal with it.)"
1228 msgstr ""
1229
1230 #. type: textblock
1231 #: ../src/guestfs.pod:571
1232 msgid ""
1233 "For each root, you can then call various C<guestfs_inspect_get_*> functions "
1234 "to get additional details about that operating system.  For example, call L</"
1235 "guestfs_inspect_get_type> to return the string C<windows> or C<linux> for "
1236 "Windows and Linux-based operating systems respectively."
1237 msgstr ""
1238
1239 #. type: textblock
1240 #: ../src/guestfs.pod:577
1241 msgid ""
1242 "Un*x-like and Linux-based operating systems usually consist of several "
1243 "filesystems which are mounted at boot time (for example, a separate boot "
1244 "partition mounted on C</boot>).  The inspection rules are able to detect how "
1245 "filesystems correspond to mount points.  Call "
1246 "C<guestfs_inspect_get_mountpoints> to get this mapping.  It might return a "
1247 "hash table like this example:"
1248 msgstr ""
1249
1250 #. type: verbatim
1251 #: ../src/guestfs.pod:584
1252 #, no-wrap
1253 msgid ""
1254 " /boot => /dev/sda1\n"
1255 " /     => /dev/vg_guest/lv_root\n"
1256 " /usr  => /dev/vg_guest/lv_usr\n"
1257 "\n"
1258 msgstr ""
1259
1260 #. type: textblock
1261 #: ../src/guestfs.pod:588
1262 msgid ""
1263 "The caller can then make calls to L</guestfs_mount_options> to mount the "
1264 "filesystems as suggested."
1265 msgstr ""
1266
1267 #. type: textblock
1268 #: ../src/guestfs.pod:591
1269 msgid ""
1270 "Be careful to mount filesystems in the right order (eg. C</> before C</"
1271 "usr>).  Sorting the keys of the hash by length, shortest first, should work."
1272 msgstr ""
1273
1274 #. type: textblock
1275 #: ../src/guestfs.pod:595
1276 msgid ""
1277 "Inspection currently only works for some common operating systems.  "
1278 "Contributors are welcome to send patches for other operating systems that we "
1279 "currently cannot detect."
1280 msgstr ""
1281
1282 #. type: textblock
1283 #: ../src/guestfs.pod:599
1284 msgid ""
1285 "Encrypted disks must be opened before inspection.  See L</ENCRYPTED DISKS> "
1286 "for more details.  The L</guestfs_inspect_os> function just ignores any "
1287 "encrypted devices."
1288 msgstr ""
1289
1290 #. type: textblock
1291 #: ../src/guestfs.pod:603
1292 msgid ""
1293 "A note on the implementation: The call L</guestfs_inspect_os> performs "
1294 "inspection and caches the results in the guest handle.  Subsequent calls to "
1295 "C<guestfs_inspect_get_*> return this cached information, but I<do not> re-"
1296 "read the disks.  If you change the content of the guest disks, you can redo "
1297 "inspection by calling L</guestfs_inspect_os> again.  (L</"
1298 "guestfs_inspect_list_applications> works a little differently from the other "
1299 "calls and does read the disks.  See documentation for that function for "
1300 "details)."
1301 msgstr ""
1302
1303 #. type: =head3
1304 #: ../src/guestfs.pod:612
1305 msgid "INSPECTING INSTALL DISKS"
1306 msgstr ""
1307
1308 #. type: textblock
1309 #: ../src/guestfs.pod:614
1310 msgid ""
1311 "Libguestfs (since 1.9.4) can detect some install disks, install CDs, live "
1312 "CDs and more."
1313 msgstr ""
1314
1315 #. type: textblock
1316 #: ../src/guestfs.pod:617
1317 msgid ""
1318 "Call L</guestfs_inspect_get_format> to return the format of the operating "
1319 "system, which currently can be C<installed> (a regular operating system) or "
1320 "C<installer> (some sort of install disk)."
1321 msgstr ""
1322
1323 #. type: textblock
1324 #: ../src/guestfs.pod:621
1325 msgid ""
1326 "Further information is available about the operating system that can be "
1327 "installed using the regular inspection APIs like L</"
1328 "guestfs_inspect_get_product_name>, L</guestfs_inspect_get_major_version> etc."
1329 msgstr ""
1330
1331 #. type: textblock
1332 #: ../src/guestfs.pod:626
1333 msgid ""
1334 "Some additional information specific to installer disks is also available "
1335 "from the L</guestfs_inspect_is_live>, L</guestfs_inspect_is_netinst> and L</"
1336 "guestfs_inspect_is_multipart> calls."
1337 msgstr ""
1338
1339 #. type: =head2
1340 #: ../src/guestfs.pod:631
1341 msgid "SPECIAL CONSIDERATIONS FOR WINDOWS GUESTS"
1342 msgstr ""
1343
1344 #. type: textblock
1345 #: ../src/guestfs.pod:633
1346 msgid ""
1347 "Libguestfs can mount NTFS partitions.  It does this using the L<http://www."
1348 "ntfs-3g.org/> driver."
1349 msgstr ""
1350
1351 #. type: =head3
1352 #: ../src/guestfs.pod:636
1353 msgid "DRIVE LETTERS AND PATHS"
1354 msgstr ""
1355
1356 #. type: textblock
1357 #: ../src/guestfs.pod:638
1358 msgid ""
1359 "DOS and Windows still use drive letters, and the filesystems are always "
1360 "treated as case insensitive by Windows itself, and therefore you might find "
1361 "a Windows configuration file referring to a path like C<c:\\windows"
1362 "\\system32>.  When the filesystem is mounted in libguestfs, that directory "
1363 "might be referred to as C</WINDOWS/System32>."
1364 msgstr ""
1365
1366 #. type: textblock
1367 #: ../src/guestfs.pod:644
1368 msgid ""
1369 "Drive letter mappings can be found using inspection (see L</INSPECTION> and "
1370 "L</guestfs_inspect_get_drive_mappings>)"
1371 msgstr ""
1372
1373 #. type: textblock
1374 #: ../src/guestfs.pod:647
1375 msgid ""
1376 "Dealing with separator characters (backslash vs forward slash) is outside "
1377 "the scope of libguestfs, but usually a simple character replacement will "
1378 "work."
1379 msgstr ""
1380
1381 #. type: textblock
1382 #: ../src/guestfs.pod:651
1383 msgid ""
1384 "To resolve the case insensitivity of paths, call L</"
1385 "guestfs_case_sensitive_path>."
1386 msgstr ""
1387
1388 #. type: =head3
1389 #: ../src/guestfs.pod:654
1390 msgid "ACCESSING THE WINDOWS REGISTRY"
1391 msgstr ""
1392
1393 #. type: textblock
1394 #: ../src/guestfs.pod:656
1395 msgid ""
1396 "Libguestfs also provides some help for decoding Windows Registry \"hive\" "
1397 "files, through the library C<hivex> which is part of the libguestfs project "
1398 "although ships as a separate tarball.  You have to locate and download the "
1399 "hive file(s) yourself, and then pass them to C<hivex> functions.  See also "
1400 "the programs L<hivexml(1)>, L<hivexsh(1)>, L<hivexregedit(1)> and L<virt-win-"
1401 "reg(1)> for more help on this issue."
1402 msgstr ""
1403
1404 #. type: =head3
1405 #: ../src/guestfs.pod:664
1406 msgid "SYMLINKS ON NTFS-3G FILESYSTEMS"
1407 msgstr ""
1408
1409 #. type: textblock
1410 #: ../src/guestfs.pod:666
1411 msgid ""
1412 "Ntfs-3g tries to rewrite \"Junction Points\" and NTFS \"symbolic links\" to "
1413 "provide something which looks like a Linux symlink.  The way it tries to do "
1414 "the rewriting is described here:"
1415 msgstr ""
1416
1417 #. type: textblock
1418 #: ../src/guestfs.pod:670
1419 msgid ""
1420 "L<http://www.tuxera.com/community/ntfs-3g-advanced/junction-points-and-"
1421 "symbolic-links/>"
1422 msgstr ""
1423 "L<http://www.tuxera.com/community/ntfs-3g-advanced/junction-points-and-"
1424 "symbolic-links/>"
1425
1426 #. type: textblock
1427 #: ../src/guestfs.pod:672
1428 msgid ""
1429 "The essential problem is that ntfs-3g simply does not have enough "
1430 "information to do a correct job.  NTFS links can contain drive letters and "
1431 "references to external device GUIDs that ntfs-3g has no way of resolving.  "
1432 "It is almost certainly the case that libguestfs callers should ignore what "
1433 "ntfs-3g does (ie. don't use L</guestfs_readlink> on NTFS volumes)."
1434 msgstr ""
1435
1436 #. type: textblock
1437 #: ../src/guestfs.pod:679
1438 msgid ""
1439 "Instead if you encounter a symbolic link on an ntfs-3g filesystem, use L</"
1440 "guestfs_lgetxattr> to read the C<system.ntfs_reparse_data> extended "
1441 "attribute, and read the raw reparse data from that (you can find the format "
1442 "documented in various places around the web)."
1443 msgstr ""
1444
1445 #. type: =head3
1446 #: ../src/guestfs.pod:684
1447 msgid "EXTENDED ATTRIBUTES ON NTFS-3G FILESYSTEMS"
1448 msgstr ""
1449
1450 #. type: textblock
1451 #: ../src/guestfs.pod:686
1452 msgid ""
1453 "There are other useful extended attributes that can be read from ntfs-3g "
1454 "filesystems (using L</guestfs_getxattr>).  See:"
1455 msgstr ""
1456
1457 #. type: textblock
1458 #: ../src/guestfs.pod:689
1459 msgid ""
1460 "L<http://www.tuxera.com/community/ntfs-3g-advanced/extended-attributes/>"
1461 msgstr ""
1462 "L<http://www.tuxera.com/community/ntfs-3g-advanced/extended-attributes/>"
1463
1464 #. type: =head2
1465 #: ../src/guestfs.pod:691
1466 msgid "USING LIBGUESTFS WITH OTHER PROGRAMMING LANGUAGES"
1467 msgstr ""
1468
1469 #. type: textblock
1470 #: ../src/guestfs.pod:693
1471 msgid ""
1472 "Although we don't want to discourage you from using the C API, we will "
1473 "mention here that the same API is also available in other languages."
1474 msgstr ""
1475
1476 #. type: textblock
1477 #: ../src/guestfs.pod:696
1478 msgid ""
1479 "The API is broadly identical in all supported languages.  This means that "
1480 "the C call C<guestfs_add_drive_ro(g,file)> is C<$g-E<gt>add_drive_ro($file)> "
1481 "in Perl, C<g.add_drive_ro(file)> in Python, and C<g#add_drive_ro file> in "
1482 "OCaml.  In other words, a straightforward, predictable isomorphism between "
1483 "each language."
1484 msgstr ""
1485
1486 #. type: textblock
1487 #: ../src/guestfs.pod:702
1488 msgid ""
1489 "Error messages are automatically transformed into exceptions if the language "
1490 "supports it."
1491 msgstr ""
1492
1493 #. type: textblock
1494 #: ../src/guestfs.pod:705
1495 msgid ""
1496 "We don't try to \"object orientify\" parts of the API in OO languages, "
1497 "although contributors are welcome to write higher level APIs above what we "
1498 "provide in their favourite languages if they wish."
1499 msgstr ""
1500
1501 #. type: =item
1502 #: ../src/guestfs.pod:711
1503 msgid "B<C++>"
1504 msgstr "B<C++>"
1505
1506 #. type: textblock
1507 #: ../src/guestfs.pod:713
1508 msgid ""
1509 "You can use the I<guestfs.h> header file from C++ programs.  The C++ API is "
1510 "identical to the C API.  C++ classes and exceptions are not used."
1511 msgstr ""
1512
1513 #. type: =item
1514 #: ../src/guestfs.pod:717
1515 msgid "B<C#>"
1516 msgstr "B<C#>"
1517
1518 #. type: textblock
1519 #: ../src/guestfs.pod:719
1520 msgid ""
1521 "The C# bindings are highly experimental.  Please read the warnings at the "
1522 "top of C<csharp/Libguestfs.cs>."
1523 msgstr ""
1524
1525 #. type: =item
1526 #: ../src/guestfs.pod:722
1527 msgid "B<Haskell>"
1528 msgstr "B<Haskell>"
1529
1530 #. type: textblock
1531 #: ../src/guestfs.pod:724
1532 msgid ""
1533 "This is the only language binding that is working but incomplete.  Only "
1534 "calls which return simple integers have been bound in Haskell, and we are "
1535 "looking for help to complete this binding."
1536 msgstr ""
1537
1538 #. type: =item
1539 #: ../src/guestfs.pod:728
1540 msgid "B<Java>"
1541 msgstr "B<Java>"
1542
1543 #. type: textblock
1544 #: ../src/guestfs.pod:730
1545 msgid ""
1546 "Full documentation is contained in the Javadoc which is distributed with "
1547 "libguestfs."
1548 msgstr ""
1549
1550 #. type: =item
1551 #: ../src/guestfs.pod:733
1552 msgid "B<OCaml>"
1553 msgstr "B<OCaml>"
1554
1555 #. type: textblock
1556 #: ../src/guestfs.pod:735
1557 msgid "See L<guestfs-ocaml(3)>."
1558 msgstr "Див. L<guestfs-ocaml(3)>."
1559
1560 #. type: =item
1561 #: ../src/guestfs.pod:737
1562 msgid "B<Perl>"
1563 msgstr "B<Perl>"
1564
1565 #. type: textblock
1566 #: ../src/guestfs.pod:739
1567 msgid "See L<guestfs-perl(3)> and L<Sys::Guestfs(3)>."
1568 msgstr "Див. L<guestfs-perl(3)> та L<Sys::Guestfs(3)>."
1569
1570 #. type: =item
1571 #: ../src/guestfs.pod:741
1572 msgid "B<PHP>"
1573 msgstr "B<PHP>"
1574
1575 #. type: textblock
1576 #: ../src/guestfs.pod:743
1577 msgid ""
1578 "For documentation see C<README-PHP> supplied with libguestfs sources or in "
1579 "the php-libguestfs package for your distribution."
1580 msgstr ""
1581
1582 #. type: textblock
1583 #: ../src/guestfs.pod:746
1584 msgid "The PHP binding only works correctly on 64 bit machines."
1585 msgstr ""
1586
1587 #. type: =item
1588 #: ../src/guestfs.pod:748
1589 msgid "B<Python>"
1590 msgstr "B<Python>"
1591
1592 #. type: textblock
1593 #: ../src/guestfs.pod:750
1594 msgid "See L<guestfs-python(3)>."
1595 msgstr "Див. L<guestfs-python(3)>."
1596
1597 #. type: =item
1598 #: ../src/guestfs.pod:752
1599 msgid "B<Ruby>"
1600 msgstr "B<Ruby>"
1601
1602 #. type: textblock
1603 #: ../src/guestfs.pod:754
1604 msgid "See L<guestfs-ruby(3)>."
1605 msgstr "Див. L<guestfs-ruby(3)>."
1606
1607 #. type: =item
1608 #: ../src/guestfs.pod:756
1609 msgid "B<shell scripts>"
1610 msgstr "B<скрипти оболонки>"
1611
1612 #. type: textblock
1613 #: ../src/guestfs.pod:758
1614 msgid "See L<guestfish(1)>."
1615 msgstr "Див. L<guestfish(1)>."
1616
1617 #. type: =head2
1618 #: ../src/guestfs.pod:762
1619 msgid "LIBGUESTFS GOTCHAS"
1620 msgstr ""
1621
1622 #. type: textblock
1623 #: ../src/guestfs.pod:764
1624 msgid ""
1625 "L<http://en.wikipedia.org/wiki/Gotcha_(programming)>: \"A feature of a "
1626 "system [...] that works in the way it is documented but is counterintuitive "
1627 "and almost invites mistakes.\""
1628 msgstr ""
1629
1630 #. type: textblock
1631 #: ../src/guestfs.pod:768
1632 msgid ""
1633 "Since we developed libguestfs and the associated tools, there are several "
1634 "things we would have designed differently, but are now stuck with for "
1635 "backwards compatibility or other reasons.  If there is ever a libguestfs 2.0 "
1636 "release, you can expect these to change.  Beware of them."
1637 msgstr ""
1638
1639 #. type: =item
1640 #: ../src/guestfs.pod:776
1641 msgid "Autosync / forgetting to sync."
1642 msgstr ""
1643
1644 #. type: textblock
1645 #: ../src/guestfs.pod:778
1646 msgid ""
1647 "I<Update:> Autosync is enabled by default for all API users starting from "
1648 "libguestfs 1.5.24.  This section only applies to older versions."
1649 msgstr ""
1650
1651 #. type: textblock
1652 #: ../src/guestfs.pod:781
1653 msgid ""
1654 "When modifying a filesystem from C or another language, you B<must> unmount "
1655 "all filesystems and call L</guestfs_sync> explicitly before you close the "
1656 "libguestfs handle.  You can also call:"
1657 msgstr ""
1658
1659 #. type: verbatim
1660 #: ../src/guestfs.pod:785
1661 #, no-wrap
1662 msgid ""
1663 " guestfs_set_autosync (g, 1);\n"
1664 "\n"
1665 msgstr ""
1666
1667 #. type: textblock
1668 #: ../src/guestfs.pod:787
1669 msgid ""
1670 "to have the unmount/sync done automatically for you when the handle 'g' is "
1671 "closed.  (This feature is called \"autosync\", L</guestfs_set_autosync> q.v.)"
1672 msgstr ""
1673
1674 #. type: textblock
1675 #: ../src/guestfs.pod:791
1676 msgid ""
1677 "If you forget to do this, then it is entirely possible that your changes "
1678 "won't be written out, or will be partially written, or (very rarely) that "
1679 "you'll get disk corruption."
1680 msgstr ""
1681
1682 #. type: textblock
1683 #: ../src/guestfs.pod:795
1684 msgid ""
1685 "Note that in L<guestfish(3)> autosync is the default.  So quick and dirty "
1686 "guestfish scripts that forget to sync will work just fine, which can make "
1687 "this very puzzling if you are trying to debug a problem."
1688 msgstr ""
1689
1690 #. type: =item
1691 #: ../src/guestfs.pod:799
1692 msgid "Mount option C<-o sync> should not be the default."
1693 msgstr ""
1694
1695 #. type: textblock
1696 #: ../src/guestfs.pod:801
1697 msgid ""
1698 "If you use L</guestfs_mount>, then C<-o sync,noatime> are added implicitly.  "
1699 "However C<-o sync> does not add any reliability benefit, but does have a "
1700 "very large performance impact."
1701 msgstr ""
1702
1703 #. type: textblock
1704 #: ../src/guestfs.pod:805
1705 msgid ""
1706 "The work around is to use L</guestfs_mount_options> and set the mount "
1707 "options that you actually want to use."
1708 msgstr ""
1709
1710 #. type: =item
1711 #: ../src/guestfs.pod:808
1712 msgid "Read-only should be the default."
1713 msgstr ""
1714
1715 #. type: textblock
1716 #: ../src/guestfs.pod:810
1717 msgid ""
1718 "In L<guestfish(3)>, I<--ro> should be the default, and you should have to "
1719 "specify I<--rw> if you want to make changes to the image."
1720 msgstr ""
1721
1722 #. type: textblock
1723 #: ../src/guestfs.pod:813
1724 msgid "This would reduce the potential to corrupt live VM images."
1725 msgstr ""
1726
1727 #. type: textblock
1728 #: ../src/guestfs.pod:815
1729 msgid ""
1730 "Note that many filesystems change the disk when you just mount and unmount, "
1731 "even if you didn't perform any writes.  You need to use L</"
1732 "guestfs_add_drive_ro> to guarantee that the disk is not changed."
1733 msgstr ""
1734
1735 #. type: =item
1736 #: ../src/guestfs.pod:819
1737 msgid "guestfish command line is hard to use."
1738 msgstr ""
1739
1740 #. type: textblock
1741 #: ../src/guestfs.pod:821
1742 msgid ""
1743 "C<guestfish disk.img> doesn't do what people expect (open C<disk.img> for "
1744 "examination).  It tries to run a guestfish command C<disk.img> which doesn't "
1745 "exist, so it fails.  In earlier versions of guestfish the error message was "
1746 "also unintuitive, but we have corrected this since.  Like the Bourne shell, "
1747 "we should have used C<guestfish -c command> to run commands."
1748 msgstr ""
1749
1750 #. type: =item
1751 #: ../src/guestfs.pod:828
1752 msgid "guestfish megabyte modifiers don't work right on all commands"
1753 msgstr ""
1754
1755 #. type: textblock
1756 #: ../src/guestfs.pod:830
1757 msgid ""
1758 "In recent guestfish you can use C<1M> to mean 1 megabyte (and similarly for "
1759 "other modifiers).  What guestfish actually does is to multiply the number "
1760 "part by the modifier part and pass the result to the C API.  However this "
1761 "doesn't work for a few APIs which aren't expecting bytes, but are already "
1762 "expecting some other unit (eg. megabytes)."
1763 msgstr ""
1764
1765 #. type: textblock
1766 #: ../src/guestfs.pod:837
1767 msgid "The most common is L</guestfs_lvcreate>.  The guestfish command:"
1768 msgstr ""
1769
1770 #. type: verbatim
1771 #: ../src/guestfs.pod:839
1772 #, no-wrap
1773 msgid ""
1774 " lvcreate LV VG 100M\n"
1775 "\n"
1776 msgstr ""
1777
1778 #. type: textblock
1779 #: ../src/guestfs.pod:841
1780 msgid ""
1781 "does not do what you might expect.  Instead because L</guestfs_lvcreate> is "
1782 "already expecting megabytes, this tries to create a 100 I<terabyte> (100 "
1783 "megabytes * megabytes) logical volume.  The error message you get from this "
1784 "is also a little obscure."
1785 msgstr ""
1786
1787 #. type: textblock
1788 #: ../src/guestfs.pod:846
1789 msgid ""
1790 "This could be fixed in the generator by specially marking parameters and "
1791 "return values which take bytes or other units."
1792 msgstr ""
1793
1794 #. type: =item
1795 #: ../src/guestfs.pod:849
1796 msgid "Ambiguity between devices and paths"
1797 msgstr ""
1798
1799 #. type: textblock
1800 #: ../src/guestfs.pod:851
1801 msgid ""
1802 "There is a subtle ambiguity in the API between a device name (eg. C</dev/"
1803 "sdb2>) and a similar pathname.  A file might just happen to be called "
1804 "C<sdb2> in the directory C</dev> (consider some non-Unix VM image)."
1805 msgstr ""
1806
1807 #. type: textblock
1808 #: ../src/guestfs.pod:856
1809 msgid ""
1810 "In the current API we usually resolve this ambiguity by having two separate "
1811 "calls, for example L</guestfs_checksum> and L</guestfs_checksum_device>.  "
1812 "Some API calls are ambiguous and (incorrectly) resolve the problem by "
1813 "detecting if the path supplied begins with C</dev/>."
1814 msgstr ""
1815
1816 #. type: textblock
1817 #: ../src/guestfs.pod:862
1818 msgid ""
1819 "To avoid both the ambiguity and the need to duplicate some calls, we could "
1820 "make paths/devices into structured names.  One way to do this would be to "
1821 "use a notation like grub (C<hd(0,0)>), although nobody really likes this "
1822 "aspect of grub.  Another way would be to use a structured type, equivalent "
1823 "to this OCaml type:"
1824 msgstr ""
1825
1826 #. type: verbatim
1827 #: ../src/guestfs.pod:868
1828 #, no-wrap
1829 msgid ""
1830 " type path = Path of string | Device of int | Partition of int * int\n"
1831 "\n"
1832 msgstr ""
1833
1834 #. type: textblock
1835 #: ../src/guestfs.pod:870
1836 msgid "which would allow you to pass arguments like:"
1837 msgstr ""
1838
1839 #. type: verbatim
1840 #: ../src/guestfs.pod:872
1841 #, no-wrap
1842 msgid ""
1843 " Path \"/foo/bar\"\n"
1844 " Device 1            (* /dev/sdb, or perhaps /dev/sda *)\n"
1845 " Partition (1, 2)    (* /dev/sdb2 (or is it /dev/sda2 or /dev/sdb3?) *)\n"
1846 " Path \"/dev/sdb2\"    (* not a device *)\n"
1847 "\n"
1848 msgstr ""
1849
1850 #. type: textblock
1851 #: ../src/guestfs.pod:877
1852 msgid ""
1853 "As you can see there are still problems to resolve even with this "
1854 "representation.  Also consider how it might work in guestfish."
1855 msgstr ""
1856
1857 #. type: =head2
1858 #: ../src/guestfs.pod:882
1859 msgid "KEYS AND PASSPHRASES"
1860 msgstr ""
1861
1862 #. type: textblock
1863 #: ../src/guestfs.pod:884
1864 msgid ""
1865 "Certain libguestfs calls take a parameter that contains sensitive key "
1866 "material, passed in as a C string."
1867 msgstr ""
1868
1869 #. type: textblock
1870 #: ../src/guestfs.pod:887
1871 msgid ""
1872 "In the future we would hope to change the libguestfs implementation so that "
1873 "keys are L<mlock(2)>-ed into physical RAM, and thus can never end up in "
1874 "swap.  However this is I<not> done at the moment, because of the complexity "
1875 "of such an implementation."
1876 msgstr ""
1877
1878 #. type: textblock
1879 #: ../src/guestfs.pod:892
1880 msgid ""
1881 "Therefore you should be aware that any key parameter you pass to libguestfs "
1882 "might end up being written out to the swap partition.  If this is a concern, "
1883 "scrub the swap partition or don't use libguestfs on encrypted devices."
1884 msgstr ""
1885
1886 #. type: =head2
1887 #: ../src/guestfs.pod:897
1888 msgid "MULTIPLE HANDLES AND MULTIPLE THREADS"
1889 msgstr ""
1890
1891 #. type: textblock
1892 #: ../src/guestfs.pod:899
1893 msgid ""
1894 "All high-level libguestfs actions are synchronous.  If you want to use "
1895 "libguestfs asynchronously then you must create a thread."
1896 msgstr ""
1897
1898 #. type: textblock
1899 #: ../src/guestfs.pod:902
1900 msgid ""
1901 "Only use the handle from a single thread.  Either use the handle exclusively "
1902 "from one thread, or provide your own mutex so that two threads cannot issue "
1903 "calls on the same handle at the same time."
1904 msgstr ""
1905
1906 #. type: textblock
1907 #: ../src/guestfs.pod:906
1908 msgid ""
1909 "See the graphical program guestfs-browser for one possible architecture for "
1910 "multithreaded programs using libvirt and libguestfs."
1911 msgstr ""
1912
1913 #. type: =head2
1914 #: ../src/guestfs.pod:909
1915 msgid "PATH"
1916 msgstr "ШЛЯХ"
1917
1918 #. type: textblock
1919 #: ../src/guestfs.pod:911
1920 msgid ""
1921 "Libguestfs needs a supermin appliance, which it finds by looking along an "
1922 "internal path."
1923 msgstr ""
1924
1925 #. type: textblock
1926 #: ../src/guestfs.pod:914
1927 msgid ""
1928 "By default it looks for these in the directory C<$libdir/guestfs> (eg. C</"
1929 "usr/local/lib/guestfs> or C</usr/lib64/guestfs>)."
1930 msgstr ""
1931
1932 #. type: textblock
1933 #: ../src/guestfs.pod:917
1934 msgid ""
1935 "Use L</guestfs_set_path> or set the environment variable L</LIBGUESTFS_PATH> "
1936 "to change the directories that libguestfs will search in.  The value is a "
1937 "colon-separated list of paths.  The current directory is I<not> searched "
1938 "unless the path contains an empty element or C<.>.  For example "
1939 "C<LIBGUESTFS_PATH=:/usr/lib/guestfs> would search the current directory and "
1940 "then C</usr/lib/guestfs>."
1941 msgstr ""
1942
1943 #. type: =head2
1944 #: ../src/guestfs.pod:924
1945 msgid "QEMU WRAPPERS"
1946 msgstr ""
1947
1948 #. type: textblock
1949 #: ../src/guestfs.pod:926
1950 msgid ""
1951 "If you want to compile your own qemu, run qemu from a non-standard location, "
1952 "or pass extra arguments to qemu, then you can write a shell-script wrapper "
1953 "around qemu."
1954 msgstr ""
1955
1956 #. type: textblock
1957 #: ../src/guestfs.pod:930
1958 msgid ""
1959 "There is one important rule to remember: you I<must C<exec qemu>> as the "
1960 "last command in the shell script (so that qemu replaces the shell and "
1961 "becomes the direct child of the libguestfs-using program).  If you don't do "
1962 "this, then the qemu process won't be cleaned up correctly."
1963 msgstr ""
1964
1965 #. type: textblock
1966 #: ../src/guestfs.pod:935
1967 msgid ""
1968 "Here is an example of a wrapper, where I have built my own copy of qemu from "
1969 "source:"
1970 msgstr ""
1971
1972 #. type: verbatim
1973 #: ../src/guestfs.pod:938
1974 #, no-wrap
1975 msgid ""
1976 " #!/bin/sh -\n"
1977 " qemudir=/home/rjones/d/qemu\n"
1978 " exec $qemudir/x86_64-softmmu/qemu-system-x86_64 -L $qemudir/pc-bios \"$@\"\n"
1979 "\n"
1980 msgstr ""
1981
1982 #. type: textblock
1983 #: ../src/guestfs.pod:942
1984 msgid ""
1985 "Save this script as C</tmp/qemu.wrapper> (or wherever), C<chmod +x>, and "
1986 "then use it by setting the LIBGUESTFS_QEMU environment variable.  For "
1987 "example:"
1988 msgstr ""
1989
1990 #. type: verbatim
1991 #: ../src/guestfs.pod:946
1992 #, no-wrap
1993 msgid ""
1994 " LIBGUESTFS_QEMU=/tmp/qemu.wrapper guestfish\n"
1995 "\n"
1996 msgstr ""
1997
1998 #. type: textblock
1999 #: ../src/guestfs.pod:948
2000 msgid ""
2001 "Note that libguestfs also calls qemu with the -help and -version options in "
2002 "order to determine features."
2003 msgstr ""
2004
2005 #. type: =head2
2006 #: ../src/guestfs.pod:951
2007 msgid "ATTACHING TO RUNNING DAEMONS"
2008 msgstr ""
2009
2010 #. type: textblock
2011 #: ../src/guestfs.pod:953
2012 msgid ""
2013 "I<Note (1):> This is B<highly experimental> and has a tendency to eat "
2014 "babies.  Use with caution."
2015 msgstr ""
2016
2017 #. type: textblock
2018 #: ../src/guestfs.pod:956
2019 msgid ""
2020 "I<Note (2):> This section explains how to attach to a running daemon from a "
2021 "low level perspective.  For most users, simply using virt tools such as "
2022 "L<guestfish(1)> with the I<--live> option will \"just work\"."
2023 msgstr ""
2024
2025 #. type: =head3
2026 #: ../src/guestfs.pod:960
2027 msgid "Using guestfs_set_attach_method"
2028 msgstr ""
2029
2030 #. type: textblock
2031 #: ../src/guestfs.pod:962
2032 msgid ""
2033 "By calling L</guestfs_set_attach_method> you can change how the library "
2034 "connects to the C<guestfsd> daemon in L</guestfs_launch> (read L</"
2035 "ARCHITECTURE> for some background)."
2036 msgstr ""
2037
2038 #. type: textblock
2039 #: ../src/guestfs.pod:966
2040 msgid ""
2041 "The normal attach method is C<appliance>, where a small appliance is created "
2042 "containing the daemon, and then the library connects to this."
2043 msgstr ""
2044
2045 #. type: textblock
2046 #: ../src/guestfs.pod:969
2047 msgid ""
2048 "Setting attach method to C<unix:I<path>> (where I<path> is the path of a "
2049 "Unix domain socket) causes L</guestfs_launch> to connect to an existing "
2050 "daemon over the Unix domain socket."
2051 msgstr ""
2052
2053 #. type: textblock
2054 #: ../src/guestfs.pod:973
2055 msgid ""
2056 "The normal use for this is to connect to a running virtual machine that "
2057 "contains a C<guestfsd> daemon, and send commands so you can read and write "
2058 "files inside the live virtual machine."
2059 msgstr ""
2060
2061 #. type: =head3
2062 #: ../src/guestfs.pod:977
2063 msgid "Using guestfs_add_domain with live flag"
2064 msgstr ""
2065
2066 #. type: textblock
2067 #: ../src/guestfs.pod:979
2068 msgid ""
2069 "L</guestfs_add_domain> provides some help for getting the correct attach "
2070 "method.  If you pass the C<live> option to this function, then (if the "
2071 "virtual machine is running) it will examine the libvirt XML looking for a "
2072 "virtio-serial channel to connect to:"
2073 msgstr ""
2074
2075 #. type: verbatim
2076 #: ../src/guestfs.pod:985
2077 #, no-wrap
2078 msgid ""
2079 " <domain>\n"
2080 "   ...\n"
2081 "   <devices>\n"
2082 "     ...\n"
2083 "     <channel type='unix'>\n"
2084 "       <source mode='bind' path='/path/to/socket'/>\n"
2085 "       <target type='virtio' name='org.libguestfs.channel.0'/>\n"
2086 "     </channel>\n"
2087 "     ...\n"
2088 "   </devices>\n"
2089 " </domain>\n"
2090 "\n"
2091 msgstr ""
2092
2093 #. type: textblock
2094 #: ../src/guestfs.pod:997
2095 msgid ""
2096 "L</guestfs_add_domain> extracts C</path/to/socket> and sets the attach "
2097 "method to C<unix:/path/to/socket>."
2098 msgstr ""
2099
2100 #. type: textblock
2101 #: ../src/guestfs.pod:1000
2102 msgid ""
2103 "Some of the libguestfs tools (including guestfish) support a I<--live> "
2104 "option which is passed through to L</guestfs_add_domain> thus allowing you "
2105 "to attach to and modify live virtual machines."
2106 msgstr ""
2107
2108 #. type: textblock
2109 #: ../src/guestfs.pod:1004
2110 msgid ""
2111 "The virtual machine needs to have been set up beforehand so that it has the "
2112 "virtio-serial channel and so that guestfsd is running inside it."
2113 msgstr ""
2114
2115 #. type: =head2
2116 #: ../src/guestfs.pod:1008
2117 msgid "ABI GUARANTEE"
2118 msgstr ""
2119
2120 #. type: textblock
2121 #: ../src/guestfs.pod:1010
2122 msgid ""
2123 "We guarantee the libguestfs ABI (binary interface), for public, high-level "
2124 "actions as outlined in this section.  Although we will deprecate some "
2125 "actions, for example if they get replaced by newer calls, we will keep the "
2126 "old actions forever.  This allows you the developer to program in confidence "
2127 "against the libguestfs API."
2128 msgstr ""
2129
2130 #. type: =head2
2131 #: ../src/guestfs.pod:1016
2132 msgid "BLOCK DEVICE NAMING"
2133 msgstr ""
2134
2135 #. type: textblock
2136 #: ../src/guestfs.pod:1018
2137 msgid ""
2138 "In the kernel there is now quite a profusion of schemata for naming block "
2139 "devices (in this context, by I<block device> I mean a physical or virtual "
2140 "hard drive).  The original Linux IDE driver used names starting with C</dev/"
2141 "hd*>.  SCSI devices have historically used a different naming scheme, C</dev/"
2142 "sd*>.  When the Linux kernel I<libata> driver became a popular replacement "
2143 "for the old IDE driver (particularly for SATA devices) those devices also "
2144 "used the C</dev/sd*> scheme.  Additionally we now have virtual machines with "
2145 "paravirtualized drivers.  This has created several different naming systems, "
2146 "such as C</dev/vd*> for virtio disks and C</dev/xvd*> for Xen PV disks."
2147 msgstr ""
2148
2149 #. type: textblock
2150 #: ../src/guestfs.pod:1030
2151 msgid ""
2152 "As discussed above, libguestfs uses a qemu appliance running an embedded "
2153 "Linux kernel to access block devices.  We can run a variety of appliances "
2154 "based on a variety of Linux kernels."
2155 msgstr ""
2156
2157 #. type: textblock
2158 #: ../src/guestfs.pod:1034
2159 msgid ""
2160 "This causes a problem for libguestfs because many API calls use device or "
2161 "partition names.  Working scripts and the recipe (example) scripts that we "
2162 "make available over the internet could fail if the naming scheme changes."
2163 msgstr ""
2164
2165 #. type: textblock
2166 #: ../src/guestfs.pod:1039
2167 msgid ""
2168 "Therefore libguestfs defines C</dev/sd*> as the I<standard naming scheme>.  "
2169 "Internally C</dev/sd*> names are translated, if necessary, to other names as "
2170 "required.  For example, under RHEL 5 which uses the C</dev/hd*> scheme, any "
2171 "device parameter C</dev/sda2> is translated to C</dev/hda2> transparently."
2172 msgstr ""
2173
2174 #. type: textblock
2175 #: ../src/guestfs.pod:1045
2176 msgid ""
2177 "Note that this I<only> applies to parameters.  The L</guestfs_list_devices>, "
2178 "L</guestfs_list_partitions> and similar calls return the true names of the "
2179 "devices and partitions as known to the appliance."
2180 msgstr ""
2181
2182 #. type: =head3
2183 #: ../src/guestfs.pod:1050
2184 msgid "ALGORITHM FOR BLOCK DEVICE NAME TRANSLATION"
2185 msgstr ""
2186
2187 #. type: textblock
2188 #: ../src/guestfs.pod:1052
2189 msgid ""
2190 "Usually this translation is transparent.  However in some (very rare)  cases "
2191 "you may need to know the exact algorithm.  Such cases include where you use "
2192 "L</guestfs_config> to add a mixture of virtio and IDE devices to the qemu-"
2193 "based appliance, so have a mixture of C</dev/sd*> and C</dev/vd*> devices."
2194 msgstr ""
2195
2196 #. type: textblock
2197 #: ../src/guestfs.pod:1058
2198 msgid ""
2199 "The algorithm is applied only to I<parameters> which are known to be either "
2200 "device or partition names.  Return values from functions such as L</"
2201 "guestfs_list_devices> are never changed."
2202 msgstr ""
2203
2204 #. type: textblock
2205 #: ../src/guestfs.pod:1066
2206 msgid "Is the string a parameter which is a device or partition name?"
2207 msgstr ""
2208
2209 #. type: textblock
2210 #: ../src/guestfs.pod:1070
2211 msgid "Does the string begin with C</dev/sd>?"
2212 msgstr ""
2213
2214 #. type: textblock
2215 #: ../src/guestfs.pod:1074
2216 msgid ""
2217 "Does the named device exist? If so, we use that device.  However if I<not> "
2218 "then we continue with this algorithm."
2219 msgstr ""
2220
2221 #. type: textblock
2222 #: ../src/guestfs.pod:1079
2223 msgid "Replace initial C</dev/sd> string with C</dev/hd>."
2224 msgstr ""
2225
2226 #. type: textblock
2227 #: ../src/guestfs.pod:1081
2228 msgid "For example, change C</dev/sda2> to C</dev/hda2>."
2229 msgstr ""
2230
2231 #. type: textblock
2232 #: ../src/guestfs.pod:1083
2233 msgid "If that named device exists, use it.  If not, continue."
2234 msgstr ""
2235
2236 #. type: textblock
2237 #: ../src/guestfs.pod:1087
2238 msgid "Replace initial C</dev/sd> string with C</dev/vd>."
2239 msgstr ""
2240
2241 #. type: textblock
2242 #: ../src/guestfs.pod:1089
2243 msgid "If that named device exists, use it.  If not, return an error."
2244 msgstr ""
2245
2246 #. type: =head3
2247 #: ../src/guestfs.pod:1093
2248 msgid "PORTABILITY CONCERNS WITH BLOCK DEVICE NAMING"
2249 msgstr ""
2250
2251 #. type: textblock
2252 #: ../src/guestfs.pod:1095
2253 msgid ""
2254 "Although the standard naming scheme and automatic translation is useful for "
2255 "simple programs and guestfish scripts, for larger programs it is best not to "
2256 "rely on this mechanism."
2257 msgstr ""
2258
2259 #. type: textblock
2260 #: ../src/guestfs.pod:1099
2261 msgid ""
2262 "Where possible for maximum future portability programs using libguestfs "
2263 "should use these future-proof techniques:"
2264 msgstr ""
2265
2266 #. type: textblock
2267 #: ../src/guestfs.pod:1106
2268 msgid ""
2269 "Use L</guestfs_list_devices> or L</guestfs_list_partitions> to list actual "
2270 "device names, and then use those names directly."
2271 msgstr ""
2272
2273 #. type: textblock
2274 #: ../src/guestfs.pod:1109
2275 msgid ""
2276 "Since those device names exist by definition, they will never be translated."
2277 msgstr ""
2278
2279 #. type: textblock
2280 #: ../src/guestfs.pod:1114
2281 msgid ""
2282 "Use higher level ways to identify filesystems, such as LVM names, UUIDs and "
2283 "filesystem labels."
2284 msgstr ""
2285
2286 #. type: =head1
2287 #: ../src/guestfs.pod:1119
2288 msgid "SECURITY"
2289 msgstr "БЕЗПЕКА"
2290
2291 #. type: textblock
2292 #: ../src/guestfs.pod:1121
2293 msgid ""
2294 "This section discusses security implications of using libguestfs, "
2295 "particularly with untrusted or malicious guests or disk images."
2296 msgstr ""
2297
2298 #. type: =head2
2299 #: ../src/guestfs.pod:1124
2300 msgid "GENERAL SECURITY CONSIDERATIONS"
2301 msgstr ""
2302
2303 #. type: textblock
2304 #: ../src/guestfs.pod:1126
2305 msgid ""
2306 "Be careful with any files or data that you download from a guest (by "
2307 "\"download\" we mean not just the L</guestfs_download> command but any "
2308 "command that reads files, filenames, directories or anything else from a "
2309 "disk image).  An attacker could manipulate the data to fool your program "
2310 "into doing the wrong thing.  Consider cases such as:"
2311 msgstr ""
2312
2313 #. type: textblock
2314 #: ../src/guestfs.pod:1136
2315 msgid "the data (file etc) not being present"
2316 msgstr ""
2317
2318 #. type: textblock
2319 #: ../src/guestfs.pod:1140
2320 msgid "being present but empty"
2321 msgstr ""
2322
2323 #. type: textblock
2324 #: ../src/guestfs.pod:1144
2325 msgid "being much larger than normal"
2326 msgstr ""
2327
2328 #. type: textblock
2329 #: ../src/guestfs.pod:1148
2330 msgid "containing arbitrary 8 bit data"
2331 msgstr ""
2332
2333 #. type: textblock
2334 #: ../src/guestfs.pod:1152
2335 msgid "being in an unexpected character encoding"
2336 msgstr ""
2337
2338 #. type: textblock
2339 #: ../src/guestfs.pod:1156
2340 msgid "containing homoglyphs."
2341 msgstr ""
2342
2343 #. type: =head2
2344 #: ../src/guestfs.pod:1160
2345 msgid "SECURITY OF MOUNTING FILESYSTEMS"
2346 msgstr ""
2347
2348 #. type: textblock
2349 #: ../src/guestfs.pod:1162
2350 msgid ""
2351 "When you mount a filesystem under Linux, mistakes in the kernel filesystem "
2352 "(VFS) module can sometimes be escalated into exploits by deliberately "
2353 "creating a malicious, malformed filesystem.  These exploits are very severe "
2354 "for two reasons.  Firstly there are very many filesystem drivers in the "
2355 "kernel, and many of them are infrequently used and not much developer "
2356 "attention has been paid to the code.  Linux userspace helps potential "
2357 "crackers by detecting the filesystem type and automatically choosing the "
2358 "right VFS driver, even if that filesystem type is obscure or unexpected for "
2359 "the administrator.  Secondly, a kernel-level exploit is like a local root "
2360 "exploit (worse in some ways), giving immediate and total access to the "
2361 "system right down to the hardware level."
2362 msgstr ""
2363
2364 #. type: textblock
2365 #: ../src/guestfs.pod:1175
2366 msgid ""
2367 "That explains why you should never mount a filesystem from an untrusted "
2368 "guest on your host kernel.  How about libguestfs? We run a Linux kernel "
2369 "inside a qemu virtual machine, usually running as a non-root user.  The "
2370 "attacker would need to write a filesystem which first exploited the kernel, "
2371 "and then exploited either qemu virtualization (eg. a faulty qemu driver) or "
2372 "the libguestfs protocol, and finally to be as serious as the host kernel "
2373 "exploit it would need to escalate its privileges to root.  This multi-step "
2374 "escalation, performed by a static piece of data, is thought to be extremely "
2375 "hard to do, although we never say 'never' about security issues."
2376 msgstr ""
2377
2378 #. type: textblock
2379 #: ../src/guestfs.pod:1186
2380 msgid ""
2381 "In any case callers can reduce the attack surface by forcing the filesystem "
2382 "type when mounting (use L</guestfs_mount_vfs>)."
2383 msgstr ""
2384
2385 #. type: =head2
2386 #: ../src/guestfs.pod:1189
2387 msgid "PROTOCOL SECURITY"
2388 msgstr ""
2389
2390 #. type: textblock
2391 #: ../src/guestfs.pod:1191
2392 msgid ""
2393 "The protocol is designed to be secure, being based on RFC 4506 (XDR)  with a "
2394 "defined upper message size.  However a program that uses libguestfs must "
2395 "also take care - for example you can write a program that downloads a binary "
2396 "from a disk image and executes it locally, and no amount of protocol "
2397 "security will save you from the consequences."
2398 msgstr ""
2399
2400 #. type: =head2
2401 #: ../src/guestfs.pod:1197
2402 msgid "INSPECTION SECURITY"
2403 msgstr ""
2404
2405 #. type: textblock
2406 #: ../src/guestfs.pod:1199
2407 msgid ""
2408 "Parts of the inspection API (see L</INSPECTION>) return untrusted strings "
2409 "directly from the guest, and these could contain any 8 bit data.  Callers "
2410 "should be careful to escape these before printing them to a structured file "
2411 "(for example, use HTML escaping if creating a web page)."
2412 msgstr ""
2413
2414 #. type: textblock
2415 #: ../src/guestfs.pod:1205
2416 msgid ""
2417 "Guest configuration may be altered in unusual ways by the administrator of "
2418 "the virtual machine, and may not reflect reality (particularly for untrusted "
2419 "or actively malicious guests).  For example we parse the hostname from "
2420 "configuration files like C</etc/sysconfig/network> that we find in the "
2421 "guest, but the guest administrator can easily manipulate these files to "
2422 "provide the wrong hostname."
2423 msgstr ""
2424
2425 #. type: textblock
2426 #: ../src/guestfs.pod:1213
2427 msgid ""
2428 "The inspection API parses guest configuration using two external libraries: "
2429 "Augeas (Linux configuration) and hivex (Windows Registry).  Both are "
2430 "designed to be robust in the face of malicious data, although denial of "
2431 "service attacks are still possible, for example with oversized configuration "
2432 "files."
2433 msgstr ""
2434
2435 #. type: =head2
2436 #: ../src/guestfs.pod:1219
2437 msgid "RUNNING UNTRUSTED GUEST COMMANDS"
2438 msgstr ""
2439
2440 #. type: textblock
2441 #: ../src/guestfs.pod:1221
2442 msgid ""
2443 "Be very cautious about running commands from the guest.  By running a "
2444 "command in the guest, you are giving CPU time to a binary that you do not "
2445 "control, under the same user account as the library, albeit wrapped in qemu "
2446 "virtualization.  More information and alternatives can be found in the "
2447 "section L</RUNNING COMMANDS>."
2448 msgstr ""
2449
2450 #. type: =head2
2451 #: ../src/guestfs.pod:1227
2452 msgid "CVE-2010-3851"
2453 msgstr "CVE-2010-3851"
2454
2455 #. type: textblock
2456 #: ../src/guestfs.pod:1229
2457 msgid "https://bugzilla.redhat.com/642934"
2458 msgstr "https://bugzilla.redhat.com/642934"
2459
2460 #. type: textblock
2461 #: ../src/guestfs.pod:1231
2462 msgid ""
2463 "This security bug concerns the automatic disk format detection that qemu "
2464 "does on disk images."
2465 msgstr ""
2466
2467 #. type: textblock
2468 #: ../src/guestfs.pod:1234
2469 msgid ""
2470 "A raw disk image is just the raw bytes, there is no header.  Other disk "
2471 "images like qcow2 contain a special header.  Qemu deals with this by looking "
2472 "for one of the known headers, and if none is found then assuming the disk "
2473 "image must be raw."
2474 msgstr ""
2475
2476 #. type: textblock
2477 #: ../src/guestfs.pod:1239
2478 msgid ""
2479 "This allows a guest which has been given a raw disk image to write some "
2480 "other header.  At next boot (or when the disk image is accessed by "
2481 "libguestfs) qemu would do autodetection and think the disk image format was, "
2482 "say, qcow2 based on the header written by the guest."
2483 msgstr ""
2484
2485 #. type: textblock
2486 #: ../src/guestfs.pod:1244
2487 msgid ""
2488 "This in itself would not be a problem, but qcow2 offers many features, one "
2489 "of which is to allow a disk image to refer to another image (called the "
2490 "\"backing disk\").  It does this by placing the path to the backing disk "
2491 "into the qcow2 header.  This path is not validated and could point to any "
2492 "host file (eg. \"/etc/passwd\").  The backing disk is then exposed through "
2493 "\"holes\" in the qcow2 disk image, which of course is completely under the "
2494 "control of the attacker."
2495 msgstr ""
2496
2497 #. type: textblock
2498 #: ../src/guestfs.pod:1252
2499 msgid ""
2500 "In libguestfs this is rather hard to exploit except under two circumstances:"
2501 msgstr ""
2502
2503 #. type: textblock
2504 #: ../src/guestfs.pod:1259
2505 msgid "You have enabled the network or have opened the disk in write mode."
2506 msgstr ""
2507
2508 #. type: textblock
2509 #: ../src/guestfs.pod:1263
2510 msgid ""
2511 "You are also running untrusted code from the guest (see L</RUNNING "
2512 "COMMANDS>)."
2513 msgstr ""
2514
2515 #. type: textblock
2516 #: ../src/guestfs.pod:1268
2517 msgid ""
2518 "The way to avoid this is to specify the expected disk format when adding "
2519 "disks (the optional C<format> option to L</guestfs_add_drive_opts>).  You "
2520 "should always do this if the disk is raw format, and it's a good idea for "
2521 "other cases too."
2522 msgstr ""
2523
2524 #. type: textblock
2525 #: ../src/guestfs.pod:1273
2526 msgid ""
2527 "For disks added from libvirt using calls like L</guestfs_add_domain>, the "
2528 "format is fetched from libvirt and passed through."
2529 msgstr ""
2530
2531 #. type: textblock
2532 #: ../src/guestfs.pod:1276
2533 msgid ""
2534 "For libguestfs tools, use the I<--format> command line parameter as "
2535 "appropriate."
2536 msgstr ""
2537
2538 #. type: =head1
2539 #: ../src/guestfs.pod:1279
2540 msgid "CONNECTION MANAGEMENT"
2541 msgstr ""
2542
2543 #. type: =head2
2544 #: ../src/guestfs.pod:1281
2545 msgid "guestfs_h *"
2546 msgstr ""
2547
2548 #. type: textblock
2549 #: ../src/guestfs.pod:1283
2550 msgid ""
2551 "C<guestfs_h> is the opaque type representing a connection handle.  Create a "
2552 "handle by calling L</guestfs_create>.  Call L</guestfs_close> to free the "
2553 "handle and release all resources used."
2554 msgstr ""
2555
2556 #. type: textblock
2557 #: ../src/guestfs.pod:1287
2558 msgid ""
2559 "For information on using multiple handles and threads, see the section L</"
2560 "MULTIPLE HANDLES AND MULTIPLE THREADS> above."
2561 msgstr ""
2562
2563 #. type: =head2
2564 #: ../src/guestfs.pod:1290
2565 msgid "guestfs_create"
2566 msgstr ""
2567
2568 #. type: verbatim
2569 #: ../src/guestfs.pod:1292
2570 #, no-wrap
2571 msgid ""
2572 " guestfs_h *guestfs_create (void);\n"
2573 "\n"
2574 msgstr ""
2575
2576 #. type: textblock
2577 #: ../src/guestfs.pod:1294
2578 msgid "Create a connection handle."
2579 msgstr ""
2580
2581 #. type: textblock
2582 #: ../src/guestfs.pod:1296
2583 msgid ""
2584 "On success this returns a non-NULL pointer to a handle.  On error it returns "
2585 "NULL."
2586 msgstr ""
2587
2588 #. type: textblock
2589 #: ../src/guestfs.pod:1299
2590 msgid ""
2591 "You have to \"configure\" the handle after creating it.  This includes "
2592 "calling L</guestfs_add_drive_opts> (or one of the equivalent calls) on the "
2593 "handle at least once."
2594 msgstr ""
2595
2596 #. type: textblock
2597 #: ../src/guestfs.pod:1303
2598 msgid "After configuring the handle, you have to call L</guestfs_launch>."
2599 msgstr ""
2600
2601 #. type: textblock
2602 #: ../src/guestfs.pod:1305
2603 msgid ""
2604 "You may also want to configure error handling for the handle.  See the L</"
2605 "ERROR HANDLING> section below."
2606 msgstr ""
2607
2608 #. type: =head2
2609 #: ../src/guestfs.pod:1308
2610 msgid "guestfs_close"
2611 msgstr ""
2612
2613 #. type: verbatim
2614 #: ../src/guestfs.pod:1310
2615 #, no-wrap
2616 msgid ""
2617 " void guestfs_close (guestfs_h *g);\n"
2618 "\n"
2619 msgstr ""
2620
2621 #. type: textblock
2622 #: ../src/guestfs.pod:1312
2623 msgid "This closes the connection handle and frees up all resources used."
2624 msgstr ""
2625
2626 #. type: textblock
2627 #: ../src/guestfs.pod:1314
2628 msgid ""
2629 "If autosync was set on the handle and the handle was launched, then this "
2630 "implicitly calls various functions to unmount filesystems and sync the "
2631 "disk.  See L</guestfs_set_autosync> for more details."
2632 msgstr ""
2633
2634 #. type: textblock
2635 #: ../src/guestfs.pod:1318
2636 msgid "If a close callback was set on the handle, then it is called."
2637 msgstr ""
2638
2639 #. type: =head1
2640 #: ../src/guestfs.pod:1320
2641 msgid "ERROR HANDLING"
2642 msgstr "ОБРОБКА ПОМИЛОК"
2643
2644 #. type: textblock
2645 #: ../src/guestfs.pod:1322
2646 msgid ""
2647 "API functions can return errors.  For example, almost all functions that "
2648 "return C<int> will return C<-1> to indicate an error."
2649 msgstr ""
2650
2651 #. type: textblock
2652 #: ../src/guestfs.pod:1325
2653 msgid ""
2654 "Additional information is available for errors: an error message string and "
2655 "optionally an error number (errno) if the thing that failed was a system "
2656 "call."
2657 msgstr ""
2658
2659 #. type: textblock
2660 #: ../src/guestfs.pod:1329
2661 msgid ""
2662 "You can get at the additional information about the last error on the handle "
2663 "by calling L</guestfs_last_error>, L</guestfs_last_errno>, and/or by setting "
2664 "up an error handler with L</guestfs_set_error_handler>."
2665 msgstr ""
2666
2667 #. type: textblock
2668 #: ../src/guestfs.pod:1334
2669 msgid ""
2670 "When the handle is created, a default error handler is installed which "
2671 "prints the error message string to C<stderr>.  For small short-running "
2672 "command line programs it is sufficient to do:"
2673 msgstr ""
2674
2675 #. type: verbatim
2676 #: ../src/guestfs.pod:1338
2677 #, no-wrap
2678 msgid ""
2679 " if (guestfs_launch (g) == -1)\n"
2680 "   exit (EXIT_FAILURE);\n"
2681 "\n"
2682 msgstr ""
2683
2684 #. type: textblock
2685 #: ../src/guestfs.pod:1341
2686 msgid ""
2687 "since the default error handler will ensure that an error message has been "
2688 "printed to C<stderr> before the program exits."
2689 msgstr ""
2690
2691 #. type: textblock
2692 #: ../src/guestfs.pod:1344
2693 msgid ""
2694 "For other programs the caller will almost certainly want to install an "
2695 "alternate error handler or do error handling in-line like this:"
2696 msgstr ""
2697
2698 #. type: verbatim
2699 #: ../src/guestfs.pod:1347
2700 #, no-wrap
2701 msgid ""
2702 " g = guestfs_create ();\n"
2703 " \n"
2704 msgstr ""
2705
2706 #. type: verbatim
2707 #: ../src/guestfs.pod:1349
2708 #, no-wrap
2709 msgid ""
2710 " /* This disables the default behaviour of printing errors\n"
2711 "    on stderr. */\n"
2712 " guestfs_set_error_handler (g, NULL, NULL);\n"
2713 " \n"
2714 msgstr ""
2715
2716 #. type: verbatim
2717 #: ../src/guestfs.pod:1353
2718 #, no-wrap
2719 msgid ""
2720 " if (guestfs_launch (g) == -1) {\n"
2721 "   /* Examine the error message and print it etc. */\n"
2722 "   char *msg = guestfs_last_error (g);\n"
2723 "   int errnum = guestfs_last_errno (g);\n"
2724 "   fprintf (stderr, \"%s\\n\", msg);\n"
2725 "   /* ... */\n"
2726 "  }\n"
2727 "\n"
2728 msgstr ""
2729
2730 #. type: textblock
2731 #: ../src/guestfs.pod:1361
2732 msgid ""
2733 "Out of memory errors are handled differently.  The default action is to call "
2734 "L<abort(3)>.  If this is undesirable, then you can set a handler using L</"
2735 "guestfs_set_out_of_memory_handler>."
2736 msgstr ""
2737
2738 #. type: textblock
2739 #: ../src/guestfs.pod:1365
2740 msgid ""
2741 "L</guestfs_create> returns C<NULL> if the handle cannot be created, and "
2742 "because there is no handle if this happens there is no way to get additional "
2743 "error information.  However L</guestfs_create> is supposed to be a "
2744 "lightweight operation which can only fail because of insufficient memory (it "
2745 "returns NULL in this case)."
2746 msgstr ""
2747
2748 #. type: =head2
2749 #: ../src/guestfs.pod:1371
2750 msgid "guestfs_last_error"
2751 msgstr ""
2752
2753 #. type: verbatim
2754 #: ../src/guestfs.pod:1373
2755 #, no-wrap
2756 msgid ""
2757 " const char *guestfs_last_error (guestfs_h *g);\n"
2758 "\n"
2759 msgstr ""
2760
2761 #. type: textblock
2762 #: ../src/guestfs.pod:1375
2763 msgid ""
2764 "This returns the last error message that happened on C<g>.  If there has not "
2765 "been an error since the handle was created, then this returns C<NULL>."
2766 msgstr ""
2767
2768 #. type: textblock
2769 #: ../src/guestfs.pod:1379
2770 msgid ""
2771 "The lifetime of the returned string is until the next error occurs, or L</"
2772 "guestfs_close> is called."
2773 msgstr ""
2774
2775 #. type: =head2
2776 #: ../src/guestfs.pod:1382
2777 msgid "guestfs_last_errno"
2778 msgstr ""
2779
2780 #. type: verbatim
2781 #: ../src/guestfs.pod:1384
2782 #, no-wrap
2783 msgid ""
2784 " int guestfs_last_errno (guestfs_h *g);\n"
2785 "\n"
2786 msgstr ""
2787
2788 #. type: textblock
2789 #: ../src/guestfs.pod:1386
2790 msgid "This returns the last error number (errno) that happened on C<g>."
2791 msgstr ""
2792
2793 #. type: textblock
2794 #: ../src/guestfs.pod:1388
2795 msgid "If successful, an errno integer not equal to zero is returned."
2796 msgstr ""
2797
2798 #. type: textblock
2799 #: ../src/guestfs.pod:1390
2800 msgid ""
2801 "If no error, this returns 0.  This call can return 0 in three situations:"
2802 msgstr ""
2803
2804 #. type: textblock
2805 #: ../src/guestfs.pod:1397
2806 msgid "There has not been any error on the handle."
2807 msgstr ""
2808
2809 #. type: textblock
2810 #: ../src/guestfs.pod:1401
2811 msgid ""
2812 "There has been an error but the errno was meaningless.  This corresponds to "
2813 "the case where the error did not come from a failed system call, but for "
2814 "some other reason."
2815 msgstr ""
2816
2817 #. type: textblock
2818 #: ../src/guestfs.pod:1407
2819 msgid ""
2820 "There was an error from a failed system call, but for some reason the errno "
2821 "was not captured and returned.  This usually indicates a bug in libguestfs."
2822 msgstr ""
2823
2824 #. type: textblock
2825 #: ../src/guestfs.pod:1413
2826 msgid ""
2827 "Libguestfs tries to convert the errno from inside the applicance into a "
2828 "corresponding errno for the caller (not entirely trivial: the appliance "
2829 "might be running a completely different operating system from the library "
2830 "and error numbers are not standardized across Un*xen).  If this could not be "
2831 "done, then the error is translated to C<EINVAL>.  In practice this should "
2832 "only happen in very rare circumstances."
2833 msgstr ""
2834
2835 #. type: =head2
2836 #: ../src/guestfs.pod:1421
2837 msgid "guestfs_set_error_handler"
2838 msgstr ""
2839
2840 #. type: verbatim
2841 #: ../src/guestfs.pod:1423
2842 #, no-wrap
2843 msgid ""
2844 " typedef void (*guestfs_error_handler_cb) (guestfs_h *g,\n"
2845 "                                           void *opaque,\n"
2846 "                                           const char *msg);\n"
2847 " void guestfs_set_error_handler (guestfs_h *g,\n"
2848 "                                 guestfs_error_handler_cb cb,\n"
2849 "                                 void *opaque);\n"
2850 "\n"
2851 msgstr ""
2852
2853 #. type: textblock
2854 #: ../src/guestfs.pod:1430
2855 msgid ""
2856 "The callback C<cb> will be called if there is an error.  The parameters "
2857 "passed to the callback are an opaque data pointer and the error message "
2858 "string."
2859 msgstr ""
2860
2861 #. type: textblock
2862 #: ../src/guestfs.pod:1434
2863 msgid ""
2864 "C<errno> is not passed to the callback.  To get that the callback must call "
2865 "L</guestfs_last_errno>."
2866 msgstr ""
2867
2868 #. type: textblock
2869 #: ../src/guestfs.pod:1437
2870 msgid ""
2871 "Note that the message string C<msg> is freed as soon as the callback "
2872 "function returns, so if you want to stash it somewhere you must make your "
2873 "own copy."
2874 msgstr ""
2875
2876 #. type: textblock
2877 #: ../src/guestfs.pod:1441
2878 msgid "The default handler prints messages on C<stderr>."
2879 msgstr ""
2880
2881 #. type: textblock
2882 #: ../src/guestfs.pod:1443
2883 msgid "If you set C<cb> to C<NULL> then I<no> handler is called."
2884 msgstr ""
2885
2886 #. type: =head2
2887 #: ../src/guestfs.pod:1445
2888 msgid "guestfs_get_error_handler"
2889 msgstr ""
2890
2891 #. type: verbatim
2892 #: ../src/guestfs.pod:1447
2893 #, no-wrap
2894 msgid ""
2895 " guestfs_error_handler_cb guestfs_get_error_handler (guestfs_h *g,\n"
2896 "                                                     void **opaque_rtn);\n"
2897 "\n"
2898 msgstr ""
2899
2900 #. type: textblock
2901 #: ../src/guestfs.pod:1450
2902 msgid "Returns the current error handler callback."
2903 msgstr ""
2904
2905 #. type: =head2
2906 #: ../src/guestfs.pod:1452
2907 msgid "guestfs_set_out_of_memory_handler"
2908 msgstr ""
2909
2910 #. type: verbatim
2911 #: ../src/guestfs.pod:1454
2912 #, no-wrap
2913 msgid ""
2914 " typedef void (*guestfs_abort_cb) (void);\n"
2915 " void guestfs_set_out_of_memory_handler (guestfs_h *g,\n"
2916 "                                         guestfs_abort_cb);\n"
2917 "\n"
2918 msgstr ""
2919
2920 #. type: textblock
2921 #: ../src/guestfs.pod:1458
2922 msgid ""
2923 "The callback C<cb> will be called if there is an out of memory situation.  "
2924 "I<Note this callback must not return>."
2925 msgstr ""
2926
2927 #. type: textblock
2928 #: ../src/guestfs.pod:1461
2929 msgid "The default is to call L<abort(3)>."
2930 msgstr ""
2931
2932 #. type: textblock
2933 #: ../src/guestfs.pod:1463
2934 msgid ""
2935 "You cannot set C<cb> to C<NULL>.  You can't ignore out of memory situations."
2936 msgstr ""
2937
2938 #. type: =head2
2939 #: ../src/guestfs.pod:1466
2940 msgid "guestfs_get_out_of_memory_handler"
2941 msgstr ""
2942
2943 #. type: verbatim
2944 #: ../src/guestfs.pod:1468
2945 #, no-wrap
2946 msgid ""
2947 " guestfs_abort_fn guestfs_get_out_of_memory_handler (guestfs_h *g);\n"
2948 "\n"
2949 msgstr ""
2950
2951 #. type: textblock
2952 #: ../src/guestfs.pod:1470
2953 msgid "This returns the current out of memory handler."
2954 msgstr ""
2955
2956 #. type: =head1
2957 #: ../src/guestfs.pod:1472
2958 msgid "API CALLS"
2959 msgstr ""
2960
2961 #. type: textblock
2962 #: ../src/guestfs.pod:1474 ../fish/guestfish.pod:1019
2963 msgid "@ACTIONS@"
2964 msgstr "@ACTIONS@"
2965
2966 #. type: =head1
2967 #: ../src/guestfs.pod:1476
2968 msgid "STRUCTURES"
2969 msgstr "СТРУКТУРИ"
2970
2971 #. type: textblock
2972 #: ../src/guestfs.pod:1478
2973 msgid "@STRUCTS@"
2974 msgstr "@STRUCTS@"
2975
2976 #. type: =head1
2977 #: ../src/guestfs.pod:1480
2978 msgid "AVAILABILITY"
2979 msgstr ""
2980
2981 #. type: =head2
2982 #: ../src/guestfs.pod:1482
2983 msgid "GROUPS OF FUNCTIONALITY IN THE APPLIANCE"
2984 msgstr ""
2985
2986 #. type: textblock
2987 #: ../src/guestfs.pod:1484
2988 msgid ""
2989 "Using L</guestfs_available> you can test availability of the following "
2990 "groups of functions.  This test queries the appliance to see if the "
2991 "appliance you are currently using supports the functionality."
2992 msgstr ""
2993
2994 #. type: textblock
2995 #: ../src/guestfs.pod:1489
2996 msgid "@AVAILABILITY@"
2997 msgstr ""
2998
2999 #. type: =head2
3000 #: ../src/guestfs.pod:1491
3001 msgid "GUESTFISH supported COMMAND"
3002 msgstr ""
3003
3004 #. type: textblock
3005 #: ../src/guestfs.pod:1493
3006 msgid ""
3007 "In L<guestfish(3)> there is a handy interactive command C<supported> which "
3008 "prints out the available groups and whether they are supported by this build "
3009 "of libguestfs.  Note however that you have to do C<run> first."
3010 msgstr ""
3011
3012 #. type: =head2
3013 #: ../src/guestfs.pod:1498
3014 msgid "SINGLE CALLS AT COMPILE TIME"
3015 msgstr ""
3016
3017 #. type: textblock
3018 #: ../src/guestfs.pod:1500
3019 msgid ""
3020 "Since version 1.5.8, C<E<lt>guestfs.hE<gt>> defines symbols for each C API "
3021 "function, such as:"
3022 msgstr ""
3023
3024 #. type: verbatim
3025 #: ../src/guestfs.pod:1503
3026 #, no-wrap
3027 msgid ""
3028 " #define LIBGUESTFS_HAVE_DD 1\n"
3029 "\n"
3030 msgstr ""
3031
3032 #. type: textblock
3033 #: ../src/guestfs.pod:1505
3034 msgid "if L</guestfs_dd> is available."
3035 msgstr ""
3036
3037 #. type: textblock
3038 #: ../src/guestfs.pod:1507
3039 msgid ""
3040 "Before version 1.5.8, if you needed to test whether a single libguestfs "
3041 "function is available at compile time, we recommended using build tools such "
3042 "as autoconf or cmake.  For example in autotools you could use:"
3043 msgstr ""
3044
3045 #. type: verbatim
3046 #: ../src/guestfs.pod:1512
3047 #, no-wrap
3048 msgid ""
3049 " AC_CHECK_LIB([guestfs],[guestfs_create])\n"
3050 " AC_CHECK_FUNCS([guestfs_dd])\n"
3051 "\n"
3052 msgstr ""
3053
3054 #. type: textblock
3055 #: ../src/guestfs.pod:1515
3056 msgid ""
3057 "which would result in C<HAVE_GUESTFS_DD> being either defined or not defined "
3058 "in your program."
3059 msgstr ""
3060
3061 #. type: =head2
3062 #: ../src/guestfs.pod:1518
3063 msgid "SINGLE CALLS AT RUN TIME"
3064 msgstr ""
3065
3066 #. type: textblock
3067 #: ../src/guestfs.pod:1520
3068 msgid ""
3069 "Testing at compile time doesn't guarantee that a function really exists in "
3070 "the library.  The reason is that you might be dynamically linked against a "
3071 "previous I<libguestfs.so> (dynamic library)  which doesn't have the call.  "
3072 "This situation unfortunately results in a segmentation fault, which is a "
3073 "shortcoming of the C dynamic linking system itself."
3074 msgstr ""
3075
3076 #. type: textblock
3077 #: ../src/guestfs.pod:1527
3078 msgid ""
3079 "You can use L<dlopen(3)> to test if a function is available at run time, as "
3080 "in this example program (note that you still need the compile time check as "
3081 "well):"
3082 msgstr ""
3083
3084 #. type: verbatim
3085 #: ../src/guestfs.pod:1531
3086 #, no-wrap
3087 msgid ""
3088 " #include <stdio.h>\n"
3089 " #include <stdlib.h>\n"
3090 " #include <unistd.h>\n"
3091 " #include <dlfcn.h>\n"
3092 " #include <guestfs.h>\n"
3093 " \n"
3094 msgstr ""
3095
3096 #. type: verbatim
3097 #: ../src/guestfs.pod:1537
3098 #, no-wrap
3099 msgid ""
3100 " main ()\n"
3101 " {\n"
3102 " #ifdef LIBGUESTFS_HAVE_DD\n"
3103 "   void *dl;\n"
3104 "   int has_function;\n"
3105 " \n"
3106 msgstr ""
3107
3108 #. type: verbatim
3109 #: ../src/guestfs.pod:1543
3110 #, no-wrap
3111 msgid ""
3112 "   /* Test if the function guestfs_dd is really available. */\n"
3113 "   dl = dlopen (NULL, RTLD_LAZY);\n"
3114 "   if (!dl) {\n"
3115 "     fprintf (stderr, \"dlopen: %s\\n\", dlerror ());\n"
3116 "     exit (EXIT_FAILURE);\n"
3117 "   }\n"
3118 "   has_function = dlsym (dl, \"guestfs_dd\") != NULL;\n"
3119 "   dlclose (dl);\n"
3120 " \n"
3121 msgstr ""
3122
3123 #. type: verbatim
3124 #: ../src/guestfs.pod:1552
3125 #, no-wrap
3126 msgid ""
3127 "   if (!has_function)\n"
3128 "     printf (\"this libguestfs.so does NOT have guestfs_dd function\\n\");\n"
3129 "   else {\n"
3130 "     printf (\"this libguestfs.so has guestfs_dd function\\n\");\n"
3131 "     /* Now it's safe to call\n"
3132 "     guestfs_dd (g, \"foo\", \"bar\");\n"
3133 "     */\n"
3134 "   }\n"
3135 " #else\n"
3136 "   printf (\"guestfs_dd function was not found at compile time\\n\");\n"
3137 " #endif\n"
3138 "  }\n"
3139 "\n"
3140 msgstr ""
3141
3142 #. type: textblock
3143 #: ../src/guestfs.pod:1565
3144 msgid ""
3145 "You may think the above is an awful lot of hassle, and it is.  There are "
3146 "other ways outside of the C linking system to ensure that this kind of "
3147 "incompatibility never arises, such as using package versioning:"
3148 msgstr ""
3149
3150 #. type: verbatim
3151 #: ../src/guestfs.pod:1570
3152 #, no-wrap
3153 msgid ""
3154 " Requires: libguestfs >= 1.0.80\n"
3155 "\n"
3156 msgstr ""
3157
3158 #. type: =head1
3159 #: ../src/guestfs.pod:1572
3160 msgid "CALLS WITH OPTIONAL ARGUMENTS"
3161 msgstr ""
3162
3163 #. type: textblock
3164 #: ../src/guestfs.pod:1574
3165 msgid ""
3166 "A recent feature of the API is the introduction of calls which take optional "
3167 "arguments.  In C these are declared 3 ways.  The main way is as a call which "
3168 "takes variable arguments (ie. C<...>), as in this example:"
3169 msgstr ""
3170
3171 #. type: verbatim
3172 #: ../src/guestfs.pod:1579
3173 #, no-wrap
3174 msgid ""
3175 " int guestfs_add_drive_opts (guestfs_h *g, const char *filename, ...);\n"
3176 "\n"
3177 msgstr ""
3178
3179 #. type: textblock
3180 #: ../src/guestfs.pod:1581
3181 msgid ""
3182 "Call this with a list of optional arguments, terminated by C<-1>.  So to "
3183 "call with no optional arguments specified:"
3184 msgstr ""
3185
3186 #. type: verbatim
3187 #: ../src/guestfs.pod:1584
3188 #, no-wrap
3189 msgid ""
3190 " guestfs_add_drive_opts (g, filename, -1);\n"
3191 "\n"
3192 msgstr ""
3193
3194 #. type: textblock
3195 #: ../src/guestfs.pod:1586
3196 msgid "With a single optional argument:"
3197 msgstr ""
3198
3199 #. type: verbatim
3200 #: ../src/guestfs.pod:1588
3201 #, no-wrap
3202 msgid ""
3203 " guestfs_add_drive_opts (g, filename,\n"
3204 "                         GUESTFS_ADD_DRIVE_OPTS_FORMAT, \"qcow2\",\n"
3205 "                         -1);\n"
3206 "\n"
3207 msgstr ""
3208
3209 #. type: textblock
3210 #: ../src/guestfs.pod:1592
3211 msgid "With two:"
3212 msgstr ""
3213
3214 #. type: verbatim
3215 #: ../src/guestfs.pod:1594
3216 #, no-wrap
3217 msgid ""
3218 " guestfs_add_drive_opts (g, filename,\n"
3219 "                         GUESTFS_ADD_DRIVE_OPTS_FORMAT, \"qcow2\",\n"
3220 "                         GUESTFS_ADD_DRIVE_OPTS_READONLY, 1,\n"
3221 "                         -1);\n"
3222 "\n"
3223 msgstr ""
3224
3225 #. type: textblock
3226 #: ../src/guestfs.pod:1599
3227 msgid ""
3228 "and so forth.  Don't forget the terminating C<-1> otherwise Bad Things will "
3229 "happen!"
3230 msgstr ""
3231
3232 #. type: =head2
3233 #: ../src/guestfs.pod:1602
3234 msgid "USING va_list FOR OPTIONAL ARGUMENTS"
3235 msgstr ""
3236
3237 #. type: textblock
3238 #: ../src/guestfs.pod:1604
3239 msgid ""
3240 "The second variant has the same name with the suffix C<_va>, which works the "
3241 "same way but takes a C<va_list>.  See the C manual for details.  For the "
3242 "example function, this is declared:"
3243 msgstr ""
3244
3245 #. type: verbatim
3246 #: ../src/guestfs.pod:1608
3247 #, no-wrap
3248 msgid ""
3249 " int guestfs_add_drive_opts_va (guestfs_h *g, const char *filename,\n"
3250 "                                va_list args);\n"
3251 "\n"
3252 msgstr ""
3253
3254 #. type: =head2
3255 #: ../src/guestfs.pod:1611
3256 msgid "CONSTRUCTING OPTIONAL ARGUMENTS"
3257 msgstr ""
3258
3259 #. type: textblock
3260 #: ../src/guestfs.pod:1613
3261 msgid ""
3262 "The third variant is useful where you need to construct these calls.  You "
3263 "pass in a structure where you fill in the optional fields.  The structure "
3264 "has a bitmask as the first element which you must set to indicate which "
3265 "fields you have filled in.  For our example function the structure and call "
3266 "are declared:"
3267 msgstr ""
3268
3269 #. type: verbatim
3270 #: ../src/guestfs.pod:1619
3271 #, no-wrap
3272 msgid ""
3273 " struct guestfs_add_drive_opts_argv {\n"
3274 "   uint64_t bitmask;\n"
3275 "   int readonly;\n"
3276 "   const char *format;\n"
3277 "   /* ... */\n"
3278 " };\n"
3279 " int guestfs_add_drive_opts_argv (guestfs_h *g, const char *filename,\n"
3280 "              const struct guestfs_add_drive_opts_argv *optargs);\n"
3281 "\n"
3282 msgstr ""
3283
3284 #. type: textblock
3285 #: ../src/guestfs.pod:1628
3286 msgid "You could call it like this:"
3287 msgstr ""
3288
3289 #. type: verbatim
3290 #: ../src/guestfs.pod:1630
3291 #, no-wrap
3292 msgid ""
3293 " struct guestfs_add_drive_opts_argv optargs = {\n"
3294 "   .bitmask = GUESTFS_ADD_DRIVE_OPTS_READONLY_BITMASK |\n"
3295 "              GUESTFS_ADD_DRIVE_OPTS_FORMAT_BITMASK,\n"
3296 "   .readonly = 1,\n"
3297 "   .format = \"qcow2\"\n"
3298 " };\n"
3299 " \n"
3300 msgstr ""
3301
3302 #. type: verbatim
3303 #: ../src/guestfs.pod:1637
3304 #, no-wrap
3305 msgid ""
3306 " guestfs_add_drive_opts_argv (g, filename, &optargs);\n"
3307 "\n"
3308 msgstr ""
3309
3310 #. type: textblock
3311 #: ../src/guestfs.pod:1639 ../src/guestfs-actions.pod:11
3312 #: ../src/guestfs-actions.pod:1857 ../src/guestfs-actions.pod:2257
3313 #: ../fish/guestfish-actions.pod:9 ../fish/guestfish-actions.pod:1262
3314 #: ../fish/guestfish-actions.pod:1515 ../tools/virt-win-reg.pl:532
3315 msgid "Notes:"
3316 msgstr "Нотатки:"
3317
3318 #. type: textblock
3319 #: ../src/guestfs.pod:1645
3320 msgid "The C<_BITMASK> suffix on each option name when specifying the bitmask."
3321 msgstr ""
3322
3323 #. type: textblock
3324 #: ../src/guestfs.pod:1650
3325 msgid "You do not need to fill in all fields of the structure."
3326 msgstr ""
3327
3328 #. type: textblock
3329 #: ../src/guestfs.pod:1654
3330 msgid ""
3331 "There must be a one-to-one correspondence between fields of the structure "
3332 "that are filled in, and bits set in the bitmask."
3333 msgstr ""
3334
3335 #. type: =head2
3336 #: ../src/guestfs.pod:1659
3337 msgid "OPTIONAL ARGUMENTS IN OTHER LANGUAGES"
3338 msgstr ""
3339
3340 #. type: textblock
3341 #: ../src/guestfs.pod:1661
3342 msgid ""
3343 "In other languages, optional arguments are expressed in the way that is "
3344 "natural for that language.  We refer you to the language-specific "
3345 "documentation for more details on that."
3346 msgstr ""
3347
3348 #. type: textblock
3349 #: ../src/guestfs.pod:1665
3350 msgid "For guestfish, see L<guestfish(1)/OPTIONAL ARGUMENTS>."
3351 msgstr ""
3352
3353 #. type: =head2
3354 #: ../src/guestfs.pod:1667
3355 msgid "SETTING CALLBACKS TO HANDLE EVENTS"
3356 msgstr ""
3357
3358 #. type: textblock
3359 #: ../src/guestfs.pod:1669
3360 msgid ""
3361 "B<Note:> This section documents the generic event mechanism introduced in "
3362 "libguestfs 1.10, which you should use in new code if possible.  The old "
3363 "functions C<guestfs_set_log_message_callback>, "
3364 "C<guestfs_set_subprocess_quit_callback>, "
3365 "C<guestfs_set_launch_done_callback>, C<guestfs_set_close_callback> and "
3366 "C<guestfs_set_progress_callback> are no longer documented in this manual "
3367 "page."
3368 msgstr ""
3369
3370 #. type: textblock
3371 #: ../src/guestfs.pod:1677
3372 msgid ""
3373 "Handles generate events when certain things happen, such as log messages "
3374 "being generated, progress messages during long-running operations, or the "
3375 "handle being closed.  The API calls described below let you register a "
3376 "callback to be called when events happen.  You can register multiple "
3377 "callbacks (for the same, different or overlapping sets of events), and "
3378 "individually remove callbacks.  If callbacks are not removed, then they "
3379 "remain in force until the handle is closed."
3380 msgstr ""
3381
3382 #. type: textblock
3383 #: ../src/guestfs.pod:1685
3384 msgid ""
3385 "In the current implementation, events are only generated synchronously: that "
3386 "means that events (and hence callbacks) can only happen while you are in the "
3387 "middle of making another libguestfs call.  The callback is called in the "
3388 "same thread."
3389 msgstr ""
3390
3391 #. type: textblock
3392 #: ../src/guestfs.pod:1690
3393 msgid ""
3394 "Events may contain a payload, usually nothing (void), an array of 64 bit "
3395 "unsigned integers, or a message buffer.  Payloads are discussed later on."
3396 msgstr ""
3397
3398 #. type: =head3
3399 #: ../src/guestfs.pod:1694
3400 msgid "CLASSES OF EVENTS"
3401 msgstr ""
3402
3403 #. type: =item
3404 #: ../src/guestfs.pod:1698
3405 msgid "GUESTFS_EVENT_CLOSE (payload type: void)"
3406 msgstr ""
3407
3408 #. type: textblock
3409 #: ../src/guestfs.pod:1701
3410 msgid ""
3411 "The callback function will be called while the handle is being closed "
3412 "(synchronously from L</guestfs_close>)."
3413 msgstr ""
3414
3415 #. type: textblock
3416 #: ../src/guestfs.pod:1704
3417 msgid ""
3418 "Note that libguestfs installs an L<atexit(3)> handler to try to clean up "
3419 "handles that are open when the program exits.  This means that this callback "
3420 "might be called indirectly from L<exit(3)>, which can cause unexpected "
3421 "problems in higher-level languages (eg. if your HLL interpreter has already "
3422 "been cleaned up by the time this is called, and if your callback then jumps "
3423 "into some HLL function)."
3424 msgstr ""
3425
3426 #. type: textblock
3427 #: ../src/guestfs.pod:1711
3428 msgid ""
3429 "If no callback is registered: the handle is closed without any callback "
3430 "being invoked."
3431 msgstr ""
3432
3433 #. type: =item
3434 #: ../src/guestfs.pod:1714
3435 msgid "GUESTFS_EVENT_SUBPROCESS_QUIT (payload type: void)"
3436 msgstr ""
3437
3438 #. type: textblock
3439 #: ../src/guestfs.pod:1717
3440 msgid ""
3441 "The callback function will be called when the child process quits, either "
3442 "asynchronously or if killed by L</guestfs_kill_subprocess>.  (This "
3443 "corresponds to a transition from any state to the CONFIG state)."
3444 msgstr ""
3445
3446 #. type: textblock
3447 #: ../src/guestfs.pod:1721 ../src/guestfs.pod:1730
3448 msgid "If no callback is registered: the event is ignored."
3449 msgstr ""
3450
3451 #. type: =item
3452 #: ../src/guestfs.pod:1723
3453 msgid "GUESTFS_EVENT_LAUNCH_DONE (payload type: void)"
3454 msgstr ""
3455
3456 #. type: textblock
3457 #: ../src/guestfs.pod:1726
3458 msgid ""
3459 "The callback function will be called when the child process becomes ready "
3460 "first time after it has been launched.  (This corresponds to a transition "
3461 "from LAUNCHING to the READY state)."
3462 msgstr ""
3463
3464 #. type: =item
3465 #: ../src/guestfs.pod:1732
3466 msgid "GUESTFS_EVENT_PROGRESS (payload type: array of 4 x uint64_t)"
3467 msgstr ""
3468
3469 #. type: textblock
3470 #: ../src/guestfs.pod:1735
3471 msgid ""
3472 "Some long-running operations can generate progress messages.  If this "
3473 "callback is registered, then it will be called each time a progress message "
3474 "is generated (usually two seconds after the operation started, and three "
3475 "times per second thereafter until it completes, although the frequency may "
3476 "change in future versions)."
3477 msgstr ""
3478
3479 #. type: textblock
3480 #: ../src/guestfs.pod:1741
3481 msgid ""
3482 "The callback receives in the payload four unsigned 64 bit numbers which are "
3483 "(in order): C<proc_nr>, C<serial>, C<position>, C<total>."
3484 msgstr ""
3485
3486 #. type: textblock
3487 #: ../src/guestfs.pod:1744
3488 msgid ""
3489 "The units of C<total> are not defined, although for some operations C<total> "
3490 "may relate in some way to the amount of data to be transferred (eg. in bytes "
3491 "or megabytes), and C<position> may be the portion which has been transferred."
3492 msgstr ""
3493
3494 #. type: textblock
3495 #: ../src/guestfs.pod:1749
3496 msgid "The only defined and stable parts of the API are:"
3497 msgstr ""
3498
3499 #. type: textblock
3500 #: ../src/guestfs.pod:1755
3501 msgid ""
3502 "The callback can display to the user some type of progress bar or indicator "
3503 "which shows the ratio of C<position>:C<total>."
3504 msgstr ""
3505
3506 #. type: textblock
3507 #: ../src/guestfs.pod:1760
3508 msgid "0 E<lt>= C<position> E<lt>= C<total>"
3509 msgstr ""
3510
3511 #. type: textblock
3512 #: ../src/guestfs.pod:1764
3513 msgid ""
3514 "If any progress notification is sent during a call, then a final progress "
3515 "notification is always sent when C<position> = C<total> (I<unless> the call "
3516 "fails with an error)."
3517 msgstr ""
3518
3519 #. type: textblock
3520 #: ../src/guestfs.pod:1768
3521 msgid ""
3522 "This is to simplify caller code, so callers can easily set the progress "
3523 "indicator to \"100%\" at the end of the operation, without requiring special "
3524 "code to detect this case."
3525 msgstr ""
3526
3527 #. type: textblock
3528 #: ../src/guestfs.pod:1774
3529 msgid ""
3530 "For some calls we are unable to estimate the progress of the call, but we "
3531 "can still generate progress messages to indicate activity.  This is known as "
3532 "\"pulse mode\", and is directly supported by certain progress bar "
3533 "implementations (eg. GtkProgressBar)."
3534 msgstr ""
3535
3536 #. type: textblock
3537 #: ../src/guestfs.pod:1779
3538 msgid ""
3539 "For these calls, zero or more progress messages are generated with "
3540 "C<position = 0> and C<total = 1>, followed by a final message with "
3541 "C<position = total = 1>."
3542 msgstr ""
3543
3544 #. type: textblock
3545 #: ../src/guestfs.pod:1783
3546 msgid ""
3547 "As noted above, if the call fails with an error then the final message may "
3548 "not be generated."
3549 msgstr ""
3550
3551 #. type: textblock
3552 #: ../src/guestfs.pod:1788
3553 msgid ""
3554 "The callback also receives the procedure number (C<proc_nr>) and serial "
3555 "number (C<serial>) of the call.  These are only useful for debugging "
3556 "protocol issues, and the callback can normally ignore them.  The callback "
3557 "may want to print these numbers in error messages or debugging messages."
3558 msgstr ""
3559
3560 #. type: textblock
3561 #: ../src/guestfs.pod:1794
3562 msgid "If no callback is registered: progress messages are discarded."
3563 msgstr ""
3564
3565 #. type: =item
3566 #: ../src/guestfs.pod:1796
3567 msgid "GUESTFS_EVENT_APPLIANCE (payload type: message buffer)"
3568 msgstr ""
3569
3570 #. type: textblock
3571 #: ../src/guestfs.pod:1799
3572 msgid ""
3573 "The callback function is called whenever a log message is generated by qemu, "
3574 "the appliance kernel, guestfsd (daemon), or utility programs."
3575 msgstr ""
3576
3577 #. type: textblock
3578 #: ../src/guestfs.pod:1802
3579 msgid ""
3580 "If the verbose flag (L</guestfs_set_verbose>) is set before launch (L</"
3581 "guestfs_launch>) then additional debug messages are generated."
3582 msgstr ""
3583
3584 #. type: textblock
3585 #: ../src/guestfs.pod:1805 ../src/guestfs.pod:1819
3586 msgid ""
3587 "If no callback is registered: the messages are discarded unless the verbose "
3588 "flag is set in which case they are sent to stderr.  You can override the "
3589 "printing of verbose messages to stderr by setting up a callback."
3590 msgstr ""
3591
3592 #. type: =item
3593 #: ../src/guestfs.pod:1810
3594 msgid "GUESTFS_EVENT_LIBRARY (payload type: message buffer)"
3595 msgstr ""
3596
3597 #. type: textblock
3598 #: ../src/guestfs.pod:1813
3599 msgid ""
3600 "The callback function is called whenever a log message is generated by the "
3601 "library part of libguestfs."
3602 msgstr ""
3603
3604 #. type: textblock
3605 #: ../src/guestfs.pod:1816
3606 msgid ""
3607 "If the verbose flag (L</guestfs_set_verbose>) is set then additional debug "
3608 "messages are generated."
3609 msgstr ""
3610
3611 #. type: =item
3612 #: ../src/guestfs.pod:1824
3613 msgid "GUESTFS_EVENT_TRACE (payload type: message buffer)"
3614 msgstr ""
3615
3616 #. type: textblock
3617 #: ../src/guestfs.pod:1827
3618 msgid ""
3619 "The callback function is called whenever a trace message is generated.  This "
3620 "only applies if the trace flag (L</guestfs_set_trace>) is set."
3621 msgstr ""
3622
3623 #. type: textblock
3624 #: ../src/guestfs.pod:1830
3625 msgid ""
3626 "If no callback is registered: the messages are sent to stderr.  You can "
3627 "override the printing of trace messages to stderr by setting up a callback."
3628 msgstr ""
3629
3630 #. type: =head3
3631 #: ../src/guestfs.pod:1836
3632 msgid "guestfs_set_event_callback"
3633 msgstr ""
3634
3635 #. type: verbatim
3636 #: ../src/guestfs.pod:1838
3637 #, no-wrap
3638 msgid ""
3639 " int guestfs_set_event_callback (guestfs_h *g,\n"
3640 "                                 guestfs_event_callback cb,\n"
3641 "                                 uint64_t event_bitmask,\n"
3642 "                                 int flags,\n"
3643 "                                 void *opaque);\n"
3644 "\n"
3645 msgstr ""
3646
3647 #. type: textblock
3648 #: ../src/guestfs.pod:1844
3649 msgid ""
3650 "This function registers a callback (C<cb>) for all event classes in the "
3651 "C<event_bitmask>."
3652 msgstr ""
3653
3654 #. type: textblock
3655 #: ../src/guestfs.pod:1847
3656 msgid ""
3657 "For example, to register for all log message events, you could call this "
3658 "function with the bitmask C<GUESTFS_EVENT_APPLIANCE|GUESTFS_EVENT_LIBRARY>.  "
3659 "To register a single callback for all possible classes of events, use "
3660 "C<GUESTFS_EVENT_ALL>."
3661 msgstr ""
3662
3663 #. type: textblock
3664 #: ../src/guestfs.pod:1853
3665 msgid "C<flags> should always be passed as 0."
3666 msgstr ""
3667
3668 #. type: textblock
3669 #: ../src/guestfs.pod:1855
3670 msgid ""
3671 "C<opaque> is an opaque pointer which is passed to the callback.  You can use "
3672 "it for any purpose."
3673 msgstr ""
3674
3675 #. type: textblock
3676 #: ../src/guestfs.pod:1858
3677 msgid ""
3678 "The return value is the event handle (an integer) which you can use to "
3679 "delete the callback (see below)."
3680 msgstr ""
3681
3682 #. type: textblock
3683 #: ../src/guestfs.pod:1861
3684 msgid ""
3685 "If there is an error, this function returns C<-1>, and sets the error in the "
3686 "handle in the usual way (see L</guestfs_last_error> etc.)"
3687 msgstr ""
3688
3689 #. type: textblock
3690 #: ../src/guestfs.pod:1864
3691 msgid ""
3692 "Callbacks remain in effect until they are deleted, or until the handle is "
3693 "closed."
3694 msgstr ""
3695
3696 #. type: textblock
3697 #: ../src/guestfs.pod:1867
3698 msgid ""
3699 "In the case where multiple callbacks are registered for a particular event "
3700 "class, all of the callbacks are called.  The order in which multiple "
3701 "callbacks are called is not defined."
3702 msgstr ""
3703
3704 #. type: =head3
3705 #: ../src/guestfs.pod:1871
3706 msgid "guestfs_delete_event_callback"
3707 msgstr ""
3708
3709 #. type: verbatim
3710 #: ../src/guestfs.pod:1873
3711 #, no-wrap
3712 msgid ""
3713 " void guestfs_delete_event_callback (guestfs_h *g, int event_handle);\n"
3714 "\n"
3715 msgstr ""
3716
3717 #. type: textblock
3718 #: ../src/guestfs.pod:1875
3719 msgid ""
3720 "Delete a callback that was previously registered.  C<event_handle> should be "
3721 "the integer that was returned by a previous call to "
3722 "C<guestfs_set_event_callback> on the same handle."
3723 msgstr ""
3724
3725 #. type: =head3
3726 #: ../src/guestfs.pod:1879
3727 msgid "guestfs_event_callback"
3728 msgstr ""
3729
3730 #. type: verbatim
3731 #: ../src/guestfs.pod:1881
3732 #, no-wrap
3733 msgid ""
3734 " typedef void (*guestfs_event_callback) (\n"
3735 "                  guestfs_h *g,\n"
3736 "                  void *opaque,\n"
3737 "                  uint64_t event,\n"
3738 "                  int event_handle,\n"
3739 "                  int flags,\n"
3740 "                  const char *buf, size_t buf_len,\n"
3741 "                  const uint64_t *array, size_t array_len);\n"
3742 "\n"
3743 msgstr ""
3744
3745 #. type: textblock
3746 #: ../src/guestfs.pod:1890
3747 msgid ""
3748 "This is the type of the event callback function that you have to provide."
3749 msgstr ""
3750
3751 #. type: textblock
3752 #: ../src/guestfs.pod:1893
3753 msgid ""
3754 "The basic parameters are: the handle (C<g>), the opaque user pointer "
3755 "(C<opaque>), the event class (eg. C<GUESTFS_EVENT_PROGRESS>), the event "
3756 "handle, and C<flags> which in the current API you should ignore."
3757 msgstr ""
3758
3759 #. type: textblock
3760 #: ../src/guestfs.pod:1897
3761 msgid ""
3762 "The remaining parameters contain the event payload (if any).  Each event may "
3763 "contain a payload, which usually relates to the event class, but for future "
3764 "proofing your code should be written to handle any payload for any event "
3765 "class."
3766 msgstr ""
3767
3768 #. type: textblock
3769 #: ../src/guestfs.pod:1902
3770 msgid ""
3771 "C<buf> and C<buf_len> contain a message buffer (if C<buf_len == 0>, then "
3772 "there is no message buffer).  Note that this message buffer can contain "
3773 "arbitrary 8 bit data, including NUL bytes."
3774 msgstr ""
3775
3776 #. type: textblock
3777 #: ../src/guestfs.pod:1906
3778 msgid ""
3779 "C<array> and C<array_len> is an array of 64 bit unsigned integers.  At the "
3780 "moment this is only used for progress messages."
3781 msgstr ""
3782
3783 #. type: =head3
3784 #: ../src/guestfs.pod:1909
3785 msgid "EXAMPLE: CAPTURING LOG MESSAGES"
3786 msgstr ""
3787
3788 #. type: textblock
3789 #: ../src/guestfs.pod:1911
3790 msgid ""
3791 "One motivation for the generic event API was to allow GUI programs to "
3792 "capture debug and other messages.  In libguestfs E<le> 1.8 these were sent "
3793 "unconditionally to C<stderr>."
3794 msgstr ""
3795
3796 #. type: textblock
3797 #: ../src/guestfs.pod:1915
3798 msgid ""
3799 "Events associated with log messages are: C<GUESTFS_EVENT_LIBRARY>, "
3800 "C<GUESTFS_EVENT_APPLIANCE> and C<GUESTFS_EVENT_TRACE>.  (Note that error "
3801 "messages are not events; you must capture error messages separately)."
3802 msgstr ""
3803
3804 #. type: textblock
3805 #: ../src/guestfs.pod:1920
3806 msgid ""
3807 "Programs have to set up a callback to capture the classes of events of "
3808 "interest:"
3809 msgstr ""
3810
3811 #. type: verbatim
3812 #: ../src/guestfs.pod:1923
3813 #, no-wrap
3814 msgid ""
3815 " int eh =\n"
3816 "   guestfs_set_event_callback\n"
3817 "     (g, message_callback,\n"
3818 "      GUESTFS_EVENT_LIBRARY|GUESTFS_EVENT_APPLIANCE|\n"
3819 "      GUESTFS_EVENT_TRACE,\n"
3820 "      0, NULL) == -1)\n"
3821 " if (eh == -1) {\n"
3822 "   // handle error in the usual way\n"
3823 " }\n"
3824 "\n"
3825 msgstr ""
3826
3827 #. type: textblock
3828 #: ../src/guestfs.pod:1933
3829 msgid ""
3830 "The callback can then direct messages to the appropriate place.  In this "
3831 "example, messages are directed to syslog:"
3832 msgstr ""
3833
3834 #. type: verbatim
3835 #: ../src/guestfs.pod:1936
3836 #, no-wrap
3837 msgid ""
3838 " static void\n"
3839 " message_callback (\n"
3840 "         guestfs_h *g,\n"
3841 "         void *opaque,\n"
3842 "         uint64_t event,\n"
3843 "         int event_handle,\n"
3844 "         int flags,\n"
3845 "         const char *buf, size_t buf_len,\n"
3846 "         const uint64_t *array, size_t array_len)\n"
3847 " {\n"
3848 "   const int priority = LOG_USER|LOG_INFO;\n"
3849 "   if (buf_len > 0)\n"
3850 "     syslog (priority, \"event 0x%lx: %s\", event, buf);\n"
3851 " }\n"
3852 "\n"
3853 msgstr ""
3854
3855 #. type: =head1
3856 #: ../src/guestfs.pod:1951
3857 msgid "PRIVATE DATA AREA"
3858 msgstr ""
3859
3860 #. type: textblock
3861 #: ../src/guestfs.pod:1953
3862 msgid ""
3863 "You can attach named pieces of private data to the libguestfs handle, fetch "
3864 "them by name, and walk over them, for the lifetime of the handle.  This is "
3865 "called the private data area and is only available from the C API."
3866 msgstr ""
3867
3868 #. type: textblock
3869 #: ../src/guestfs.pod:1958
3870 msgid "To attach a named piece of data, use the following call:"
3871 msgstr ""
3872
3873 #. type: verbatim
3874 #: ../src/guestfs.pod:1960
3875 #, no-wrap
3876 msgid ""
3877 " void guestfs_set_private (guestfs_h *g, const char *key, void *data);\n"
3878 "\n"
3879 msgstr ""
3880
3881 #. type: textblock
3882 #: ../src/guestfs.pod:1962
3883 msgid ""
3884 "C<key> is the name to associate with this data, and C<data> is an arbitrary "
3885 "pointer (which can be C<NULL>).  Any previous item with the same key is "
3886 "overwritten."
3887 msgstr ""
3888
3889 #. type: textblock
3890 #: ../src/guestfs.pod:1966
3891 msgid ""
3892 "You can use any C<key> you want, but your key should I<not> start with an "
3893 "underscore character.  Keys beginning with an underscore character are "
3894 "reserved for internal libguestfs purposes (eg. for implementing language "
3895 "bindings).  It is recommended that you prefix the key with some unique "
3896 "string to avoid collisions with other users."
3897 msgstr ""
3898
3899 #. type: textblock
3900 #: ../src/guestfs.pod:1972
3901 msgid "To retrieve the pointer, use:"
3902 msgstr ""
3903
3904 #. type: verbatim
3905 #: ../src/guestfs.pod:1974
3906 #, no-wrap
3907 msgid ""
3908 " void *guestfs_get_private (guestfs_h *g, const char *key);\n"
3909 "\n"
3910 msgstr ""
3911
3912 #. type: textblock
3913 #: ../src/guestfs.pod:1976
3914 msgid ""
3915 "This function returns C<NULL> if either no data is found associated with "
3916 "C<key>, or if the user previously set the C<key>'s C<data> pointer to "
3917 "C<NULL>."
3918 msgstr ""
3919
3920 #. type: textblock
3921 #: ../src/guestfs.pod:1980
3922 msgid ""
3923 "Libguestfs does not try to look at or interpret the C<data> pointer in any "
3924 "way.  As far as libguestfs is concerned, it need not be a valid pointer at "
3925 "all.  In particular, libguestfs does I<not> try to free the data when the "
3926 "handle is closed.  If the data must be freed, then the caller must either "
3927 "free it before calling L</guestfs_close> or must set up a close callback to "
3928 "do it (see L</GUESTFS_EVENT_CLOSE>)."
3929 msgstr ""
3930
3931 #. type: textblock
3932 #: ../src/guestfs.pod:1987
3933 msgid "To walk over all entries, use these two functions:"
3934 msgstr ""
3935
3936 #. type: verbatim
3937 #: ../src/guestfs.pod:1989
3938 #, no-wrap
3939 msgid ""
3940 " void *guestfs_first_private (guestfs_h *g, const char **key_rtn);\n"
3941 "\n"
3942 msgstr ""
3943
3944 #. type: verbatim
3945 #: ../src/guestfs.pod:1991
3946 #, no-wrap
3947 msgid ""
3948 " void *guestfs_next_private (guestfs_h *g, const char **key_rtn);\n"
3949 "\n"
3950 msgstr ""
3951
3952 #. type: textblock
3953 #: ../src/guestfs.pod:1993
3954 msgid ""
3955 "C<guestfs_first_private> returns the first key, pointer pair (\"first\" does "
3956 "not have any particular meaning -- keys are not returned in any defined "
3957 "order).  A pointer to the key is returned in C<*key_rtn> and the "
3958 "corresponding data pointer is returned from the function.  C<NULL> is "
3959 "returned if there are no keys stored in the handle."
3960 msgstr ""
3961
3962 #. type: textblock
3963 #: ../src/guestfs.pod:1999
3964 msgid ""
3965 "C<guestfs_next_private> returns the next key, pointer pair.  The return "
3966 "value of this function is also C<NULL> is there are no further entries to "
3967 "return."
3968 msgstr ""
3969
3970 #. type: textblock
3971 #: ../src/guestfs.pod:2003
3972 msgid "Notes about walking over entries:"
3973 msgstr ""
3974
3975 #. type: textblock
3976 #: ../src/guestfs.pod:2009
3977 msgid ""
3978 "You must not call C<guestfs_set_private> while walking over the entries."
3979 msgstr ""
3980
3981 #. type: textblock
3982 #: ../src/guestfs.pod:2014
3983 msgid ""
3984 "The handle maintains an internal iterator which is reset when you call "
3985 "C<guestfs_first_private>.  This internal iterator is invalidated when you "
3986 "call C<guestfs_set_private>."
3987 msgstr ""
3988
3989 #. type: textblock
3990 #: ../src/guestfs.pod:2020
3991 msgid "If you have set the data pointer associated with a key to C<NULL>, ie:"
3992 msgstr ""
3993
3994 #. type: verbatim
3995 #: ../src/guestfs.pod:2022
3996 #, no-wrap
3997 msgid ""
3998 " guestfs_set_private (g, key, NULL);\n"
3999 "\n"
4000 msgstr ""
4001
4002 #. type: textblock
4003 #: ../src/guestfs.pod:2024
4004 msgid "then that C<key> is not returned when walking."
4005 msgstr ""
4006
4007 #. type: textblock
4008 #: ../src/guestfs.pod:2028
4009 msgid ""
4010 "C<*key_rtn> is only valid until the next call to C<guestfs_first_private>, "
4011 "C<guestfs_next_private> or C<guestfs_set_private>."
4012 msgstr ""
4013
4014 #. type: textblock
4015 #: ../src/guestfs.pod:2034
4016 msgid ""
4017 "The following example code shows how to print all keys and data pointers "
4018 "that are associated with the handle C<g>:"
4019 msgstr ""
4020
4021 #. type: verbatim
4022 #: ../src/guestfs.pod:2037
4023 #, no-wrap
4024 msgid ""
4025 " const char *key;\n"
4026 " void *data = guestfs_first_private (g, &key);\n"
4027 " while (data != NULL)\n"
4028 "   {\n"
4029 "     printf (\"key = %s, data = %p\\n\", key, data);\n"
4030 "     data = guestfs_next_private (g, &key);\n"
4031 "   }\n"
4032 "\n"
4033 msgstr ""
4034
4035 #. type: textblock
4036 #: ../src/guestfs.pod:2045
4037 msgid ""
4038 "More commonly you are only interested in keys that begin with an application-"
4039 "specific prefix C<foo_>.  Modify the loop like so:"
4040 msgstr ""
4041
4042 #. type: verbatim
4043 #: ../src/guestfs.pod:2048
4044 #, no-wrap
4045 msgid ""
4046 " const char *key;\n"
4047 " void *data = guestfs_first_private (g, &key);\n"
4048 " while (data != NULL)\n"
4049 "   {\n"
4050 "     if (strncmp (key, \"foo_\", strlen (\"foo_\")) == 0)\n"
4051 "       printf (\"key = %s, data = %p\\n\", key, data);\n"
4052 "     data = guestfs_next_private (g, &key);\n"
4053 "   }\n"
4054 "\n"
4055 msgstr ""
4056
4057 #. type: textblock
4058 #: ../src/guestfs.pod:2057
4059 msgid ""
4060 "If you need to modify keys while walking, then you have to jump back to the "
4061 "beginning of the loop.  For example, to delete all keys prefixed with "
4062 "C<foo_>:"
4063 msgstr ""
4064
4065 #. type: verbatim
4066 #: ../src/guestfs.pod:2061
4067 #, no-wrap
4068 msgid ""
4069 "  const char *key;\n"
4070 "  void *data;\n"
4071 " again:\n"
4072 "  data = guestfs_first_private (g, &key);\n"
4073 "  while (data != NULL)\n"
4074 "    {\n"
4075 "      if (strncmp (key, \"foo_\", strlen (\"foo_\")) == 0)\n"
4076 "        {\n"
4077 "          guestfs_set_private (g, key, NULL);\n"
4078 "          /* note that 'key' pointer is now invalid, and so is\n"
4079 "             the internal iterator */\n"
4080 "          goto again;\n"
4081 "        }\n"
4082 "      data = guestfs_next_private (g, &key);\n"
4083 "    }\n"
4084 "\n"
4085 msgstr ""
4086
4087 #. type: textblock
4088 #: ../src/guestfs.pod:2077
4089 msgid ""
4090 "Note that the above loop is guaranteed to terminate because the keys are "
4091 "being deleted, but other manipulations of keys within the loop might not "
4092 "terminate unless you also maintain an indication of which keys have been "
4093 "visited."
4094 msgstr ""
4095
4096 #. type: =end
4097 #: ../src/guestfs.pod:2082 ../src/guestfs.pod:2087
4098 msgid "html"
4099 msgstr "html"
4100
4101 #. type: textblock
4102 #: ../src/guestfs.pod:2084
4103 msgid ""
4104 "<!-- old anchor for the next section --> <a name="
4105 "\"state_machine_and_low_level_event_api\"/>"
4106 msgstr ""
4107 "<!-- old anchor for the next section --> <a name="
4108 "\"state_machine_and_low_level_event_api\"/>"
4109
4110 #. type: =head1
4111 #: ../src/guestfs.pod:2089
4112 msgid "ARCHITECTURE"
4113 msgstr "АРХІТЕКТУРА"
4114
4115 #. type: textblock
4116 #: ../src/guestfs.pod:2091
4117 msgid ""
4118 "Internally, libguestfs is implemented by running an appliance (a special "
4119 "type of small virtual machine) using L<qemu(1)>.  Qemu runs as a child "
4120 "process of the main program."
4121 msgstr ""
4122
4123 #. type: verbatim
4124 #: ../src/guestfs.pod:2095
4125 #, no-wrap
4126 msgid ""
4127 "  ___________________\n"
4128 " /                   \\\n"
4129 " | main program      |\n"
4130 " |                   |\n"
4131 " |                   |           child process / appliance\n"
4132 " |                   |           __________________________\n"
4133 " |                   |          / qemu                     \\\n"
4134 " +-------------------+   RPC    |      +-----------------+ |\n"
4135 " | libguestfs     <--------------------> guestfsd        | |\n"
4136 " |                   |          |      +-----------------+ |\n"
4137 " \\___________________/          |      | Linux kernel    | |\n"
4138 "                                |      +--^--------------+ |\n"
4139 "                                \\_________|________________/\n"
4140 "                                          |\n"
4141 "                                   _______v______\n"
4142 "                                  /              \\\n"
4143 "                                  | Device or    |\n"
4144 "                                  | disk image   |\n"
4145 "                                  \\______________/\n"
4146 "\n"
4147 msgstr ""
4148
4149 #. type: textblock
4150 #: ../src/guestfs.pod:2115
4151 msgid ""
4152 "The library, linked to the main program, creates the child process and hence "
4153 "the appliance in the L</guestfs_launch> function."
4154 msgstr ""
4155
4156 #. type: textblock
4157 #: ../src/guestfs.pod:2118
4158 msgid ""
4159 "Inside the appliance is a Linux kernel and a complete stack of userspace "
4160 "tools (such as LVM and ext2 programs) and a small controlling daemon called "
4161 "L</guestfsd>.  The library talks to L</guestfsd> using remote procedure "
4162 "calls (RPC).  There is a mostly one-to-one correspondence between libguestfs "
4163 "API calls and RPC calls to the daemon.  Lastly the disk image(s) are "
4164 "attached to the qemu process which translates device access by the "
4165 "appliance's Linux kernel into accesses to the image."
4166 msgstr ""
4167
4168 #. type: textblock
4169 #: ../src/guestfs.pod:2127
4170 msgid ""
4171 "A common misunderstanding is that the appliance \"is\" the virtual machine.  "
4172 "Although the disk image you are attached to might also be used by some "
4173 "virtual machine, libguestfs doesn't know or care about this.  (But you will "
4174 "care if both libguestfs's qemu process and your virtual machine are trying "
4175 "to update the disk image at the same time, since these usually results in "
4176 "massive disk corruption)."
4177 msgstr ""
4178
4179 #. type: =head1
4180 #: ../src/guestfs.pod:2134
4181 msgid "STATE MACHINE"
4182 msgstr "СКІНЧЕННИЙ АВТОМАТ"
4183
4184 #. type: textblock
4185 #: ../src/guestfs.pod:2136
4186 msgid "libguestfs uses a state machine to model the child process:"
4187 msgstr ""
4188
4189 #. type: verbatim
4190 #: ../src/guestfs.pod:2138
4191 #, no-wrap
4192 msgid ""
4193 "                         |\n"
4194 "                    guestfs_create\n"
4195 "                         |\n"
4196 "                         |\n"
4197 "                     ____V_____\n"
4198 "                    /          \\\n"
4199 "                    |  CONFIG  |\n"
4200 "                    \\__________/\n"
4201 "                     ^ ^   ^  \\\n"
4202 "                    /  |    \\  \\ guestfs_launch\n"
4203 "                   /   |    _\\__V______\n"
4204 "                  /    |   /           \\\n"
4205 "                 /     |   | LAUNCHING |\n"
4206 "                /      |   \\___________/\n"
4207 "               /       |       /\n"
4208 "              /        |  guestfs_launch\n"
4209 "             /         |     /\n"
4210 "    ______  /        __|____V\n"
4211 "   /      \\ ------> /        \\\n"
4212 "   | BUSY |         | READY  |\n"
4213 "   \\______/ <------ \\________/\n"
4214 "\n"
4215 msgstr ""
4216
4217 #. type: textblock
4218 #: ../src/guestfs.pod:2160
4219 msgid ""
4220 "The normal transitions are (1) CONFIG (when the handle is created, but there "
4221 "is no child process), (2) LAUNCHING (when the child process is booting up), "
4222 "(3) alternating between READY and BUSY as commands are issued to, and "
4223 "carried out by, the child process."
4224 msgstr ""
4225
4226 #. type: textblock
4227 #: ../src/guestfs.pod:2165
4228 msgid ""
4229 "The guest may be killed by L</guestfs_kill_subprocess>, or may die "
4230 "asynchronously at any time (eg. due to some internal error), and that causes "
4231 "the state to transition back to CONFIG."
4232 msgstr ""
4233
4234 #. type: textblock
4235 #: ../src/guestfs.pod:2169
4236 msgid ""
4237 "Configuration commands for qemu such as L</guestfs_add_drive> can only be "
4238 "issued when in the CONFIG state."
4239 msgstr ""
4240
4241 #. type: textblock
4242 #: ../src/guestfs.pod:2172
4243 msgid ""
4244 "The API offers one call that goes from CONFIG through LAUNCHING to READY.  "
4245 "L</guestfs_launch> blocks until the child process is READY to accept "
4246 "commands (or until some failure or timeout).  L</guestfs_launch> internally "
4247 "moves the state from CONFIG to LAUNCHING while it is running."
4248 msgstr ""
4249
4250 #. type: textblock
4251 #: ../src/guestfs.pod:2178
4252 msgid ""
4253 "API actions such as L</guestfs_mount> can only be issued when in the READY "
4254 "state.  These API calls block waiting for the command to be carried out (ie. "
4255 "the state to transition to BUSY and then back to READY).  There are no non-"
4256 "blocking versions, and no way to issue more than one command per handle at "
4257 "the same time."
4258 msgstr ""
4259
4260 #. type: textblock
4261 #: ../src/guestfs.pod:2184
4262 msgid ""
4263 "Finally, the child process sends asynchronous messages back to the main "
4264 "program, such as kernel log messages.  You can register a callback to "
4265 "receive these messages."
4266 msgstr ""
4267
4268 #. type: =head1
4269 #: ../src/guestfs.pod:2188
4270 msgid "INTERNALS"
4271 msgstr ""
4272
4273 #. type: =head2
4274 #: ../src/guestfs.pod:2190
4275 msgid "COMMUNICATION PROTOCOL"
4276 msgstr ""
4277
4278 #. type: textblock
4279 #: ../src/guestfs.pod:2192
4280 msgid ""
4281 "Don't rely on using this protocol directly.  This section documents how it "
4282 "currently works, but it may change at any time."
4283 msgstr ""
4284
4285 #. type: textblock
4286 #: ../src/guestfs.pod:2195
4287 msgid ""
4288 "The protocol used to talk between the library and the daemon running inside "
4289 "the qemu virtual machine is a simple RPC mechanism built on top of XDR (RFC "
4290 "1014, RFC 1832, RFC 4506)."
4291 msgstr ""
4292
4293 #. type: textblock
4294 #: ../src/guestfs.pod:2199
4295 msgid ""
4296 "The detailed format of structures is in C<src/guestfs_protocol.x> (note: "
4297 "this file is automatically generated)."
4298 msgstr ""
4299
4300 #. type: textblock
4301 #: ../src/guestfs.pod:2202
4302 msgid ""
4303 "There are two broad cases, ordinary functions that don't have any C<FileIn> "
4304 "and C<FileOut> parameters, which are handled with very simple request/reply "
4305 "messages.  Then there are functions that have any C<FileIn> or C<FileOut> "
4306 "parameters, which use the same request and reply messages, but they may also "
4307 "be followed by files sent using a chunked encoding."
4308 msgstr ""
4309
4310 #. type: =head3
4311 #: ../src/guestfs.pod:2209
4312 msgid "ORDINARY FUNCTIONS (NO FILEIN/FILEOUT PARAMS)"
4313 msgstr ""
4314
4315 #. type: textblock
4316 #: ../src/guestfs.pod:2211
4317 msgid "For ordinary functions, the request message is:"
4318 msgstr ""
4319
4320 #. type: verbatim
4321 #: ../src/guestfs.pod:2213
4322 #, no-wrap
4323 msgid ""
4324 " total length (header + arguments,\n"
4325 "      but not including the length word itself)\n"
4326 " struct guestfs_message_header (encoded as XDR)\n"
4327 " struct guestfs_<foo>_args (encoded as XDR)\n"
4328 "\n"
4329 msgstr ""
4330
4331 #. type: textblock
4332 #: ../src/guestfs.pod:2218
4333 msgid ""
4334 "The total length field allows the daemon to allocate a fixed size buffer "
4335 "into which it slurps the rest of the message.  As a result, the total length "
4336 "is limited to C<GUESTFS_MESSAGE_MAX> bytes (currently 4MB), which means the "
4337 "effective size of any request is limited to somewhere under this size."
4338 msgstr ""
4339
4340 #. type: textblock
4341 #: ../src/guestfs.pod:2224
4342 msgid ""
4343 "Note also that many functions don't take any arguments, in which case the "
4344 "C<guestfs_I<foo>_args> is completely omitted."
4345 msgstr ""
4346
4347 #. type: textblock
4348 #: ../src/guestfs.pod:2227
4349 msgid ""
4350 "The header contains the procedure number (C<guestfs_proc>) which is how the "
4351 "receiver knows what type of args structure to expect, or none at all."
4352 msgstr ""
4353
4354 #. type: textblock
4355 #: ../src/guestfs.pod:2231
4356 msgid ""
4357 "For functions that take optional arguments, the optional arguments are "
4358 "encoded in the C<guestfs_I<foo>_args> structure in the same way as ordinary "
4359 "arguments.  A bitmask in the header indicates which optional arguments are "
4360 "meaningful.  The bitmask is also checked to see if it contains bits set "
4361 "which the daemon does not know about (eg. if more optional arguments were "
4362 "added in a later version of the library), and this causes the call to be "
4363 "rejected."
4364 msgstr ""
4365
4366 #. type: textblock
4367 #: ../src/guestfs.pod:2239
4368 msgid "The reply message for ordinary functions is:"
4369 msgstr ""
4370
4371 #. type: verbatim
4372 #: ../src/guestfs.pod:2241
4373 #, no-wrap
4374 msgid ""
4375 " total length (header + ret,\n"
4376 "      but not including the length word itself)\n"
4377 " struct guestfs_message_header (encoded as XDR)\n"
4378 " struct guestfs_<foo>_ret (encoded as XDR)\n"
4379 "\n"
4380 msgstr ""
4381
4382 #. type: textblock
4383 #: ../src/guestfs.pod:2246
4384 msgid ""
4385 "As above the C<guestfs_I<foo>_ret> structure may be completely omitted for "
4386 "functions that return no formal return values."
4387 msgstr ""
4388
4389 #. type: textblock
4390 #: ../src/guestfs.pod:2249
4391 msgid ""
4392 "As above the total length of the reply is limited to C<GUESTFS_MESSAGE_MAX>."
4393 msgstr ""
4394
4395 #. type: textblock
4396 #: ../src/guestfs.pod:2252
4397 msgid ""
4398 "In the case of an error, a flag is set in the header, and the reply message "
4399 "is slightly changed:"
4400 msgstr ""
4401
4402 #. type: verbatim
4403 #: ../src/guestfs.pod:2255
4404 #, no-wrap
4405 msgid ""
4406 " total length (header + error,\n"
4407 "      but not including the length word itself)\n"
4408 " struct guestfs_message_header (encoded as XDR)\n"
4409 " struct guestfs_message_error (encoded as XDR)\n"
4410 "\n"
4411 msgstr ""
4412
4413 #. type: textblock
4414 #: ../src/guestfs.pod:2260
4415 msgid ""
4416 "The C<guestfs_message_error> structure contains the error message as a "
4417 "string."
4418 msgstr ""
4419
4420 #. type: =head3
4421 #: ../src/guestfs.pod:2263
4422 msgid "FUNCTIONS THAT HAVE FILEIN PARAMETERS"
4423 msgstr ""
4424
4425 #. type: textblock
4426 #: ../src/guestfs.pod:2265
4427 msgid ""
4428 "A C<FileIn> parameter indicates that we transfer a file I<into> the guest.  "
4429 "The normal request message is sent (see above).  However this is followed by "
4430 "a sequence of file chunks."
4431 msgstr ""
4432
4433 #. type: verbatim
4434 #: ../src/guestfs.pod:2269
4435 #, no-wrap
4436 msgid ""
4437 " total length (header + arguments,\n"
4438 "      but not including the length word itself,\n"
4439 "      and not including the chunks)\n"
4440 " struct guestfs_message_header (encoded as XDR)\n"
4441 " struct guestfs_<foo>_args (encoded as XDR)\n"
4442 " sequence of chunks for FileIn param #0\n"
4443 " sequence of chunks for FileIn param #1 etc.\n"
4444 "\n"
4445 msgstr ""
4446
4447 #. type: textblock
4448 #: ../src/guestfs.pod:2277
4449 msgid "The \"sequence of chunks\" is:"
4450 msgstr ""
4451
4452 #. type: verbatim
4453 #: ../src/guestfs.pod:2279
4454 #, no-wrap
4455 msgid ""
4456 " length of chunk (not including length word itself)\n"
4457 " struct guestfs_chunk (encoded as XDR)\n"
4458 " length of chunk\n"
4459 " struct guestfs_chunk (encoded as XDR)\n"
4460 "   ...\n"
4461 " length of chunk\n"
4462 " struct guestfs_chunk (with data.data_len == 0)\n"
4463 "\n"
4464 msgstr ""
4465
4466 #. type: textblock
4467 #: ../src/guestfs.pod:2287
4468 msgid ""
4469 "The final chunk has the C<data_len> field set to zero.  Additionally a flag "
4470 "is set in the final chunk to indicate either successful completion or early "
4471 "cancellation."
4472 msgstr ""
4473
4474 #. type: textblock
4475 #: ../src/guestfs.pod:2291
4476 msgid ""
4477 "At time of writing there are no functions that have more than one FileIn "
4478 "parameter.  However this is (theoretically) supported, by sending the "
4479 "sequence of chunks for each FileIn parameter one after another (from left to "
4480 "right)."
4481 msgstr ""
4482
4483 #. type: textblock
4484 #: ../src/guestfs.pod:2296
4485 msgid ""
4486 "Both the library (sender) I<and> the daemon (receiver) may cancel the "
4487 "transfer.  The library does this by sending a chunk with a special flag set "
4488 "to indicate cancellation.  When the daemon sees this, it cancels the whole "
4489 "RPC, does I<not> send any reply, and goes back to reading the next request."
4490 msgstr ""
4491
4492 #. type: textblock
4493 #: ../src/guestfs.pod:2302
4494 msgid ""
4495 "The daemon may also cancel.  It does this by writing a special word "
4496 "C<GUESTFS_CANCEL_FLAG> to the socket.  The library listens for this during "
4497 "the transfer, and if it gets it, it will cancel the transfer (it sends a "
4498 "cancel chunk).  The special word is chosen so that even if cancellation "
4499 "happens right at the end of the transfer (after the library has finished "
4500 "writing and has started listening for the reply), the \"spurious\" cancel "
4501 "flag will not be confused with the reply message."
4502 msgstr ""
4503
4504 #. type: textblock
4505 #: ../src/guestfs.pod:2311
4506 msgid ""
4507 "This protocol allows the transfer of arbitrary sized files (no 32 bit "
4508 "limit), and also files where the size is not known in advance (eg. from "
4509 "pipes or sockets).  However the chunks are rather small "
4510 "(C<GUESTFS_MAX_CHUNK_SIZE>), so that neither the library nor the daemon need "
4511 "to keep much in memory."
4512 msgstr ""
4513
4514 #. type: =head3
4515 #: ../src/guestfs.pod:2317
4516 msgid "FUNCTIONS THAT HAVE FILEOUT PARAMETERS"
4517 msgstr ""
4518
4519 #. type: textblock
4520 #: ../src/guestfs.pod:2319
4521 msgid ""
4522 "The protocol for FileOut parameters is exactly the same as for FileIn "
4523 "parameters, but with the roles of daemon and library reversed."
4524 msgstr ""
4525
4526 #. type: verbatim
4527 #: ../src/guestfs.pod:2322
4528 #, no-wrap
4529 msgid ""
4530 " total length (header + ret,\n"
4531 "      but not including the length word itself,\n"
4532 "      and not including the chunks)\n"
4533 " struct guestfs_message_header (encoded as XDR)\n"
4534 " struct guestfs_<foo>_ret (encoded as XDR)\n"
4535 " sequence of chunks for FileOut param #0\n"
4536 " sequence of chunks for FileOut param #1 etc.\n"
4537 "\n"
4538 msgstr ""
4539
4540 #. type: =head3
4541 #: ../src/guestfs.pod:2330
4542 msgid "INITIAL MESSAGE"
4543 msgstr ""
4544
4545 #. type: textblock
4546 #: ../src/guestfs.pod:2332
4547 msgid ""
4548 "When the daemon launches it sends an initial word (C<GUESTFS_LAUNCH_FLAG>) "
4549 "which indicates that the guest and daemon is alive.  This is what L</"
4550 "guestfs_launch> waits for."
4551 msgstr ""
4552
4553 #. type: =head3
4554 #: ../src/guestfs.pod:2336
4555 msgid "PROGRESS NOTIFICATION MESSAGES"
4556 msgstr ""
4557
4558 #. type: textblock
4559 #: ../src/guestfs.pod:2338
4560 msgid ""
4561 "The daemon may send progress notification messages at any time.  These are "
4562 "distinguished by the normal length word being replaced by "
4563 "C<GUESTFS_PROGRESS_FLAG>, followed by a fixed size progress message."
4564 msgstr ""
4565
4566 #. type: textblock
4567 #: ../src/guestfs.pod:2342
4568 msgid ""
4569 "The library turns them into progress callbacks (see L</"
4570 "GUESTFS_EVENT_PROGRESS>) if there is a callback registered, or discards them "
4571 "if not."
4572 msgstr ""
4573
4574 #. type: textblock
4575 #: ../src/guestfs.pod:2346
4576 msgid ""
4577 "The daemon self-limits the frequency of progress messages it sends (see "
4578 "C<daemon/proto.c:notify_progress>).  Not all calls generate progress "
4579 "messages."
4580 msgstr ""
4581
4582 #. type: =head1
4583 #: ../src/guestfs.pod:2350
4584 msgid "LIBGUESTFS VERSION NUMBERS"
4585 msgstr ""
4586
4587 #. type: textblock
4588 #: ../src/guestfs.pod:2352
4589 msgid ""
4590 "Since April 2010, libguestfs has started to make separate development and "
4591 "stable releases, along with corresponding branches in our git repository.  "
4592 "These separate releases can be identified by version number:"
4593 msgstr ""
4594
4595 #. type: verbatim
4596 #: ../src/guestfs.pod:2357
4597 #, no-wrap
4598 msgid ""
4599 "                 even numbers for stable: 1.2.x, 1.4.x, ...\n"
4600 "       .-------- odd numbers for development: 1.3.x, 1.5.x, ...\n"
4601 "       |\n"
4602 "       v\n"
4603 " 1  .  3  .  5\n"
4604 " ^           ^\n"
4605 " |           |\n"
4606 " |           `-------- sub-version\n"
4607 " |\n"
4608 " `------ always '1' because we don't change the ABI\n"
4609 "\n"
4610 msgstr ""
4611
4612 #. type: textblock
4613 #: ../src/guestfs.pod:2368
4614 msgid "Thus \"1.3.5\" is the 5th update to the development branch \"1.3\"."
4615 msgstr ""
4616
4617 #. type: textblock
4618 #: ../src/guestfs.pod:2370
4619 msgid ""
4620 "As time passes we cherry pick fixes from the development branch and backport "
4621 "those into the stable branch, the effect being that the stable branch should "
4622 "get more stable and less buggy over time.  So the stable releases are ideal "
4623 "for people who don't need new features but would just like the software to "
4624 "work."
4625 msgstr ""
4626
4627 #. type: textblock
4628 #: ../src/guestfs.pod:2376
4629 msgid "Our criteria for backporting changes are:"
4630 msgstr ""
4631
4632 #. type: textblock
4633 #: ../src/guestfs.pod:2382
4634 msgid ""
4635 "Documentation changes which don't affect any code are backported unless the "
4636 "documentation refers to a future feature which is not in stable."
4637 msgstr ""
4638
4639 #. type: textblock
4640 #: ../src/guestfs.pod:2388
4641 msgid ""
4642 "Bug fixes which are not controversial, fix obvious problems, and have been "
4643 "well tested are backported."
4644 msgstr ""
4645
4646 #. type: textblock
4647 #: ../src/guestfs.pod:2393
4648 msgid ""
4649 "Simple rearrangements of code which shouldn't affect how it works get "
4650 "backported.  This is so that the code in the two branches doesn't get too "
4651 "far out of step, allowing us to backport future fixes more easily."
4652 msgstr ""
4653
4654 #. type: textblock
4655 #: ../src/guestfs.pod:2399
4656 msgid ""
4657 "We I<don't> backport new features, new APIs, new tools etc, except in one "
4658 "exceptional case: the new feature is required in order to implement an "
4659 "important bug fix."
4660 msgstr ""
4661
4662 #. type: textblock
4663 #: ../src/guestfs.pod:2405
4664 msgid ""
4665 "A new stable branch starts when we think the new features in development are "
4666 "substantial and compelling enough over the current stable branch to warrant "
4667 "it.  When that happens we create new stable and development versions 1.N.0 "
4668 "and 1.(N+1).0 [N is even].  The new dot-oh release won't necessarily be so "
4669 "stable at this point, but by backporting fixes from development, that branch "
4670 "will stabilize over time."
4671 msgstr ""
4672
4673 #. type: =head1
4674 #: ../src/guestfs.pod:2413
4675 msgid "EXTENDING LIBGUESTFS"
4676 msgstr ""
4677
4678 #. type: =head2
4679 #: ../src/guestfs.pod:2415
4680 msgid "ADDING A NEW API ACTION"
4681 msgstr ""
4682
4683 #. type: textblock
4684 #: ../src/guestfs.pod:2417
4685 msgid ""
4686 "Large amounts of boilerplate code in libguestfs (RPC, bindings, "
4687 "documentation) are generated, and this makes it easy to extend the "
4688 "libguestfs API."
4689 msgstr ""
4690
4691 #. type: textblock
4692 #: ../src/guestfs.pod:2421
4693 msgid "To add a new API action there are two changes:"
4694 msgstr ""
4695
4696 #. type: textblock
4697 #: ../src/guestfs.pod:2427
4698 msgid ""
4699 "You need to add a description of the call (name, parameters, return type, "
4700 "tests, documentation) to C<generator/generator_actions.ml>."
4701 msgstr ""
4702
4703 #. type: textblock
4704 #: ../src/guestfs.pod:2430
4705 msgid ""
4706 "There are two sorts of API action, depending on whether the call goes "
4707 "through to the daemon in the appliance, or is serviced entirely by the "
4708 "library (see L</ARCHITECTURE> above).  L</guestfs_sync> is an example of the "
4709 "former, since the sync is done in the appliance.  L</guestfs_set_trace> is "
4710 "an example of the latter, since a trace flag is maintained in the handle and "
4711 "all tracing is done on the library side."
4712 msgstr ""
4713
4714 #. type: textblock
4715 #: ../src/guestfs.pod:2438
4716 msgid ""
4717 "Most new actions are of the first type, and get added to the "
4718 "C<daemon_functions> list.  Each function has a unique procedure number used "
4719 "in the RPC protocol which is assigned to that action when we publish "
4720 "libguestfs and cannot be reused.  Take the latest procedure number and "
4721 "increment it."
4722 msgstr ""
4723
4724 #. type: textblock
4725 #: ../src/guestfs.pod:2444
4726 msgid ""
4727 "For library-only actions of the second type, add to the "
4728 "C<non_daemon_functions> list.  Since these functions are serviced by the "
4729 "library and do not travel over the RPC mechanism to the daemon, these "
4730 "functions do not need a procedure number, and so the procedure number is set "
4731 "to C<-1>."
4732 msgstr ""
4733
4734 #. type: textblock
4735 #: ../src/guestfs.pod:2452
4736 msgid "Implement the action (in C):"
4737 msgstr ""
4738
4739 #. type: textblock
4740 #: ../src/guestfs.pod:2454
4741 msgid ""
4742 "For daemon actions, implement the function C<do_E<lt>nameE<gt>> in the "
4743 "C<daemon/> directory."
4744 msgstr ""
4745
4746 #. type: textblock
4747 #: ../src/guestfs.pod:2457
4748 msgid ""
4749 "For library actions, implement the function C<guestfs__E<lt>nameE<gt>> "
4750 "(note: double underscore) in the C<src/> directory."
4751 msgstr ""
4752
4753 #. type: textblock
4754 #: ../src/guestfs.pod:2460
4755 msgid "In either case, use another function as an example of what to do."
4756 msgstr ""
4757
4758 #. type: textblock
4759 #: ../src/guestfs.pod:2464
4760 msgid "After making these changes, use C<make> to compile."
4761 msgstr ""
4762
4763 #. type: textblock
4764 #: ../src/guestfs.pod:2466
4765 msgid ""
4766 "Note that you don't need to implement the RPC, language bindings, manual "
4767 "pages or anything else.  It's all automatically generated from the OCaml "
4768 "description."
4769 msgstr ""
4770
4771 #. type: =head2
4772 #: ../src/guestfs.pod:2470
4773 msgid "ADDING TESTS FOR AN API ACTION"
4774 msgstr ""
4775
4776 #. type: textblock
4777 #: ../src/guestfs.pod:2472
4778 msgid ""
4779 "You can supply zero or as many tests as you want per API call.  The tests "
4780 "can either be added as part of the API description (C<generator/"
4781 "generator_actions.ml>), or in some rarer cases you may want to drop a script "
4782 "into C<regressions/>.  Note that adding a script to C<regressions/> is "
4783 "slower, so if possible use the first method."
4784 msgstr ""
4785
4786 #. type: textblock
4787 #: ../src/guestfs.pod:2478
4788 msgid ""
4789 "The following describes the test environment used when you add an API test "
4790 "in C<generator_actions.ml>."
4791 msgstr ""
4792
4793 #. type: textblock
4794 #: ../src/guestfs.pod:2481
4795 msgid "The test environment has 4 block devices:"
4796 msgstr ""
4797
4798 #. type: =item
4799 #: ../src/guestfs.pod:2485
4800 msgid "C</dev/sda> 500MB"
4801 msgstr ""
4802
4803 #. type: textblock
4804 #: ../src/guestfs.pod:2487
4805 msgid "General block device for testing."
4806 msgstr ""
4807
4808 #. type: =item
4809 #: ../src/guestfs.pod:2489
4810 msgid "C</dev/sdb> 50MB"
4811 msgstr ""
4812
4813 #. type: textblock
4814 #: ../src/guestfs.pod:2491
4815 msgid ""
4816 "C</dev/sdb1> is an ext2 filesystem used for testing filesystem write "
4817 "operations."
4818 msgstr ""
4819
4820 #. type: =item
4821 #: ../src/guestfs.pod:2494
4822 msgid "C</dev/sdc> 10MB"
4823 msgstr ""
4824
4825 #. type: textblock
4826 #: ../src/guestfs.pod:2496
4827 msgid "Used in a few tests where two block devices are needed."
4828 msgstr ""
4829
4830 #. type: =item
4831 #: ../src/guestfs.pod:2498
4832 msgid "C</dev/sdd>"
4833 msgstr "C</dev/sdd>"
4834
4835 #. type: textblock
4836 #: ../src/guestfs.pod:2500
4837 msgid "ISO with fixed content (see C<images/test.iso>)."
4838 msgstr ""
4839
4840 #. type: textblock
4841 #: ../src/guestfs.pod:2504
4842 msgid ""
4843 "To be able to run the tests in a reasonable amount of time, the libguestfs "
4844 "appliance and block devices are reused between tests.  So don't try testing "
4845 "L</guestfs_kill_subprocess> :-x"
4846 msgstr ""
4847
4848 #. type: textblock
4849 #: ../src/guestfs.pod:2508
4850 msgid ""
4851 "Each test starts with an initial scenario, selected using one of the "
4852 "C<Init*> expressions, described in C<generator/generator_types.ml>.  These "
4853 "initialize the disks mentioned above in a particular way as documented in "
4854 "C<generator_types.ml>.  You should not assume anything about the previous "
4855 "contents of other disks that are not initialized."
4856 msgstr ""
4857
4858 #. type: textblock
4859 #: ../src/guestfs.pod:2514
4860 msgid ""
4861 "You can add a prerequisite clause to any individual test.  This is a run-"
4862 "time check, which, if it fails, causes the test to be skipped.  Useful if "
4863 "testing a command which might not work on all variations of libguestfs "
4864 "builds.  A test that has prerequisite of C<Always> means to run "
4865 "unconditionally."
4866 msgstr ""
4867
4868 #. type: textblock
4869 #: ../src/guestfs.pod:2520
4870 msgid ""
4871 "In addition, packagers can skip individual tests by setting environment "
4872 "variables before running C<make check>."
4873 msgstr ""
4874
4875 #. type: verbatim
4876 #: ../src/guestfs.pod:2523
4877 #, no-wrap
4878 msgid ""
4879 " SKIP_TEST_<CMD>_<NUM>=1\n"
4880 "\n"
4881 msgstr ""
4882
4883 #. type: textblock
4884 #: ../src/guestfs.pod:2525
4885 msgid "eg: C<SKIP_TEST_COMMAND_3=1> skips test #3 of L</guestfs_command>."
4886 msgstr ""
4887
4888 #. type: textblock
4889 #: ../src/guestfs.pod:2527
4890 msgid "or:"
4891 msgstr "або:"
4892
4893 #. type: verbatim
4894 #: ../src/guestfs.pod:2529
4895 #, no-wrap
4896 msgid ""
4897 " SKIP_TEST_<CMD>=1\n"
4898 "\n"
4899 msgstr ""
4900
4901 #. type: textblock
4902 #: ../src/guestfs.pod:2531
4903 msgid "eg: C<SKIP_TEST_ZEROFREE=1> skips all L</guestfs_zerofree> tests."
4904 msgstr ""
4905
4906 #. type: textblock
4907 #: ../src/guestfs.pod:2533
4908 msgid "Packagers can run only certain tests by setting for example:"
4909 msgstr ""
4910
4911 #. type: verbatim
4912 #: ../src/guestfs.pod:2535
4913 #, no-wrap
4914 msgid ""
4915 " TEST_ONLY=\"vfs_type zerofree\"\n"
4916 "\n"
4917 msgstr ""
4918
4919 #. type: textblock
4920 #: ../src/guestfs.pod:2537
4921 msgid ""
4922 "See C<capitests/tests.c> for more details of how these environment variables "
4923 "work."
4924 msgstr ""
4925
4926 #. type: =head2
4927 #: ../src/guestfs.pod:2540
4928 msgid "DEBUGGING NEW API ACTIONS"
4929 msgstr ""
4930
4931 #. type: textblock
4932 #: ../src/guestfs.pod:2542
4933 msgid "Test new actions work before submitting them."
4934 msgstr ""
4935
4936 #. type: textblock
4937 #: ../src/guestfs.pod:2544
4938 msgid "You can use guestfish to try out new commands."
4939 msgstr ""
4940
4941 #. type: textblock
4942 #: ../src/guestfs.pod:2546
4943 msgid ""
4944 "Debugging the daemon is a problem because it runs inside a minimal "
4945 "environment.  However you can fprintf messages in the daemon to stderr, and "
4946 "they will show up if you use C<guestfish -v>."
4947 msgstr ""
4948
4949 #. type: =head2
4950 #: ../src/guestfs.pod:2550
4951 msgid "FORMATTING CODE AND OTHER CONVENTIONS"
4952 msgstr ""
4953
4954 #. type: textblock
4955 #: ../src/guestfs.pod:2552
4956 msgid ""
4957 "Our C source code generally adheres to some basic code-formatting "
4958 "conventions.  The existing code base is not totally consistent on this "
4959 "front, but we do prefer that contributed code be formatted similarly.  In "
4960 "short, use spaces-not-TABs for indentation, use 2 spaces for each "
4961 "indentation level, and other than that, follow the K&R style."
4962 msgstr ""
4963
4964 #. type: textblock
4965 #: ../src/guestfs.pod:2558
4966 msgid ""
4967 "If you use Emacs, add the following to one of one of your start-up files (e."
4968 "g., ~/.emacs), to help ensure that you get indentation right:"
4969 msgstr ""
4970
4971 #. type: verbatim
4972 #: ../src/guestfs.pod:2561
4973 #, no-wrap
4974 msgid ""
4975 " ;;; In libguestfs, indent with spaces everywhere (not TABs).\n"
4976 " ;;; Exceptions: Makefile and ChangeLog modes.\n"
4977 " (add-hook 'find-file-hook\n"
4978 "     '(lambda () (if (and buffer-file-name\n"
4979 "                          (string-match \"/libguestfs\\\\>\"\n"
4980 "                              (buffer-file-name))\n"
4981 "                          (not (string-equal mode-name \"Change Log\"))\n"
4982 "                          (not (string-equal mode-name \"Makefile\")))\n"
4983 "                     (setq indent-tabs-mode nil))))\n"
4984 " \n"
4985 msgstr ""
4986
4987 #. type: verbatim
4988 #: ../src/guestfs.pod:2571
4989 #, no-wrap
4990 msgid ""
4991 " ;;; When editing C sources in libguestfs, use this style.\n"
4992 " (defun libguestfs-c-mode ()\n"
4993 "   \"C mode with adjusted defaults for use with libguestfs.\"\n"
4994 "   (interactive)\n"
4995 "   (c-set-style \"K&R\")\n"
4996 "   (setq c-indent-level 2)\n"
4997 "   (setq c-basic-offset 2))\n"
4998 " (add-hook 'c-mode-hook\n"
4999 "           '(lambda () (if (string-match \"/libguestfs\\\\>\"\n"
5000 "                               (buffer-file-name))\n"
5001 "                           (libguestfs-c-mode))))\n"
5002 "\n"
5003 msgstr ""
5004
5005 #. type: textblock
5006 #: ../src/guestfs.pod:2583
5007 msgid "Enable warnings when compiling (and fix any problems this finds):"
5008 msgstr ""
5009
5010 #. type: verbatim
5011 #: ../src/guestfs.pod:2586
5012 #, no-wrap
5013 msgid ""
5014 " ./configure --enable-gcc-warnings\n"
5015 "\n"
5016 msgstr ""
5017
5018 #. type: textblock
5019 #: ../src/guestfs.pod:2588
5020 msgid "Useful targets are:"
5021 msgstr ""
5022
5023 #. type: verbatim
5024 #: ../src/guestfs.pod:2590
5025 #, no-wrap
5026 msgid ""
5027 " make syntax-check  # checks the syntax of the C code\n"
5028 " make check         # runs the test suite\n"
5029 "\n"
5030 msgstr ""
5031
5032 #. type: =head2
5033 #: ../src/guestfs.pod:2593
5034 msgid "DAEMON CUSTOM PRINTF FORMATTERS"
5035 msgstr ""
5036
5037 #. type: textblock
5038 #: ../src/guestfs.pod:2595
5039 msgid ""
5040 "In the daemon code we have created custom printf formatters C<%Q> and C<%R>, "
5041 "which are used to do shell quoting."
5042 msgstr ""
5043
5044 #. type: =item
5045 #: ../src/guestfs.pod:2600
5046 msgid "%Q"
5047 msgstr "%Q"
5048
5049 #. type: textblock
5050 #: ../src/guestfs.pod:2602
5051 msgid ""
5052 "Simple shell quoted string.  Any spaces or other shell characters are "
5053 "escaped for you."
5054 msgstr ""
5055
5056 #. type: =item
5057 #: ../src/guestfs.pod:2605
5058 msgid "%R"
5059 msgstr "%R"
5060
5061 #. type: textblock
5062 #: ../src/guestfs.pod:2607
5063 msgid ""
5064 "Same as C<%Q> except the string is treated as a path which is prefixed by "
5065 "the sysroot."
5066 msgstr ""
5067
5068 #. type: textblock
5069 #: ../src/guestfs.pod:2612 ../fish/guestfish.pod:240 ../fish/guestfish.pod:613
5070 msgid "For example:"
5071 msgstr "Приклад:"
5072
5073 #. type: verbatim
5074 #: ../src/guestfs.pod:2614
5075 #, no-wrap
5076 msgid ""
5077 " asprintf (&cmd, \"cat %R\", path);\n"
5078 "\n"
5079 msgstr ""
5080
5081 #. type: textblock
5082 #: ../src/guestfs.pod:2616
5083 msgid "would produce C<cat /sysroot/some\\ path\\ with\\ spaces>"
5084 msgstr ""
5085
5086 #. type: textblock
5087 #: ../src/guestfs.pod:2618
5088 msgid ""
5089 "I<Note:> Do I<not> use these when you are passing parameters to the C<command"
5090 "{,r,v,rv}()> functions.  These parameters do NOT need to be quoted because "
5091 "they are not passed via the shell (instead, straight to exec).  You probably "
5092 "want to use the C<sysroot_path()> function however."
5093 msgstr ""
5094
5095 #. type: =head2
5096 #: ../src/guestfs.pod:2624
5097 msgid "SUBMITTING YOUR NEW API ACTIONS"
5098 msgstr ""
5099
5100 #. type: textblock
5101 #: ../src/guestfs.pod:2626
5102 msgid ""
5103 "Submit patches to the mailing list: L<http://www.redhat.com/mailman/listinfo/"
5104 "libguestfs> and CC to L<rjones@redhat.com>."
5105 msgstr ""
5106
5107 #. type: =head2
5108 #: ../src/guestfs.pod:2630
5109 msgid "INTERNATIONALIZATION (I18N) SUPPORT"
5110 msgstr ""
5111
5112 #. type: textblock
5113 #: ../src/guestfs.pod:2632
5114 msgid "We support i18n (gettext anyhow) in the library."
5115 msgstr ""
5116
5117 #. type: textblock
5118 #: ../src/guestfs.pod:2634
5119 msgid ""
5120 "However many messages come from the daemon, and we don't translate those at "
5121 "the moment.  One reason is that the appliance generally has all locale files "
5122 "removed from it, because they take up a lot of space.  So we'd have to readd "
5123 "some of those, as well as copying our PO files into the appliance."
5124 msgstr ""
5125
5126 #. type: textblock
5127 #: ../src/guestfs.pod:2640
5128 msgid ""
5129 "Debugging messages are never translated, since they are intended for the "
5130 "programmers."
5131 msgstr ""
5132
5133 #. type: =head2
5134 #: ../src/guestfs.pod:2643
5135 msgid "SOURCE CODE SUBDIRECTORIES"
5136 msgstr ""
5137
5138 #. type: =item
5139 #: ../src/guestfs.pod:2647 ../src/guestfs-actions.pod:5854
5140 #: ../fish/guestfish-actions.pod:3948
5141 msgid "C<appliance>"
5142 msgstr "C<appliance>"
5143
5144 #. type: textblock
5145 #: ../src/guestfs.pod:2649
5146 msgid "The libguestfs appliance, build scripts and so on."
5147 msgstr ""
5148
5149 #. type: =item
5150 #: ../src/guestfs.pod:2651
5151 msgid "C<capitests>"
5152 msgstr "C<capitests>"
5153
5154 #. type: textblock
5155 #: ../src/guestfs.pod:2653
5156 msgid "Automated tests of the C API."
5157 msgstr ""
5158
5159 #. type: =item
5160 #: ../src/guestfs.pod:2655
5161 msgid "C<cat>"
5162 msgstr "C<cat>"
5163
5164 #. type: textblock
5165 #: ../src/guestfs.pod:2657
5166 msgid ""
5167 "The L<virt-cat(1)>, L<virt-filesystems(1)> and L<virt-ls(1)> commands and "
5168 "documentation."
5169 msgstr ""
5170
5171 #. type: =item
5172 #: ../src/guestfs.pod:2660
5173 #, fuzzy
5174 #| msgid "C<cat>"
5175 msgid "C<caution>"
5176 msgstr "C<cat>"
5177
5178 #. type: textblock
5179 #: ../src/guestfs.pod:2662
5180 msgid ""
5181 "Safety and liveness tests of components that libguestfs depends upon (not of "
5182 "libguestfs itself).  Mainly this is for qemu and the kernel."
5183 msgstr ""
5184
5185 #. type: =item
5186 #: ../src/guestfs.pod:2665
5187 msgid "C<contrib>"
5188 msgstr "C<contrib>"
5189
5190 #. type: textblock
5191 #: ../src/guestfs.pod:2667
5192 msgid "Outside contributions, experimental parts."
5193 msgstr ""
5194
5195 #. type: =item
5196 #: ../src/guestfs.pod:2669
5197 msgid "C<daemon>"
5198 msgstr "C<daemon>"
5199
5200 #. type: textblock
5201 #: ../src/guestfs.pod:2671
5202 msgid ""
5203 "The daemon that runs inside the libguestfs appliance and carries out actions."
5204 msgstr ""
5205
5206 #. type: =item
5207 #: ../src/guestfs.pod:2674
5208 msgid "C<df>"
5209 msgstr "C<df>"
5210
5211 #. type: textblock
5212 #: ../src/guestfs.pod:2676
5213 msgid "L<virt-df(1)> command and documentation."
5214 msgstr ""
5215
5216 #. type: =item
5217 #: ../src/guestfs.pod:2678
5218 msgid "C<examples>"
5219 msgstr "C<examples>"
5220
5221 #. type: textblock
5222 #: ../src/guestfs.pod:2680
5223 msgid "C API example code."
5224 msgstr "Код прикладів використання програмного інтерфейсу мовою C."
5225
5226 #. type: =item
5227 #: ../src/guestfs.pod:2682
5228 msgid "C<fish>"
5229 msgstr "C<fish>"
5230
5231 #. type: textblock
5232 #: ../src/guestfs.pod:2684
5233 msgid ""
5234 "L<guestfish(1)>, the command-line shell, and various shell scripts built on "
5235 "top such as L<virt-copy-in(1)>, L<virt-copy-out(1)>, L<virt-tar-in(1)>, "
5236 "L<virt-tar-out(1)>."
5237 msgstr ""
5238
5239 #. type: =item
5240 #: ../src/guestfs.pod:2688
5241 msgid "C<fuse>"
5242 msgstr "C<fuse>"
5243
5244 #. type: textblock
5245 #: ../src/guestfs.pod:2690
5246 msgid ""
5247 "L<guestmount(1)>, FUSE (userspace filesystem) built on top of libguestfs."
5248 msgstr ""
5249
5250 #. type: =item
5251 #: ../src/guestfs.pod:2692
5252 msgid "C<generator>"
5253 msgstr "C<generator>"
5254
5255 #. type: textblock
5256 #: ../src/guestfs.pod:2694
5257 msgid ""
5258 "The crucially important generator, used to automatically generate large "
5259 "amounts of boilerplate C code for things like RPC and bindings."
5260 msgstr ""
5261
5262 #. type: =item
5263 #: ../src/guestfs.pod:2697
5264 msgid "C<images>"
5265 msgstr "C<images>"
5266
5267 #. type: textblock
5268 #: ../src/guestfs.pod:2699
5269 msgid "Files used by the test suite."
5270 msgstr ""
5271
5272 #. type: textblock
5273 #: ../src/guestfs.pod:2701
5274 msgid "Some \"phony\" guest images which we test against."
5275 msgstr ""
5276
5277 #. type: =item
5278 #: ../src/guestfs.pod:2703
5279 msgid "C<inspector>"
5280 msgstr "C<inspector>"
5281
5282 #. type: textblock
5283 #: ../src/guestfs.pod:2705
5284 msgid "L<virt-inspector(1)>, the virtual machine image inspector."
5285 msgstr ""
5286
5287 #. type: =item
5288 #: ../src/guestfs.pod:2707
5289 msgid "C<logo>"
5290 msgstr "C<logo>"
5291
5292 #. type: textblock
5293 #: ../src/guestfs.pod:2709
5294 msgid "Logo used on the website.  The fish is called Arthur by the way."
5295 msgstr ""
5296
5297 #. type: =item
5298 #: ../src/guestfs.pod:2711
5299 msgid "C<m4>"
5300 msgstr "C<m4>"
5301
5302 #. type: textblock
5303 #: ../src/guestfs.pod:2713
5304 msgid "M4 macros used by autoconf."
5305 msgstr ""
5306
5307 #. type: =item
5308 #: ../src/guestfs.pod:2715
5309 msgid "C<po>"
5310 msgstr "C<po>"
5311
5312 #. type: textblock
5313 #: ../src/guestfs.pod:2717
5314 msgid "Translations of simple gettext strings."
5315 msgstr "Переклади простих рядків gettext."
5316
5317 #. type: =item
5318 #: ../src/guestfs.pod:2719
5319 msgid "C<po-docs>"
5320 msgstr "C<po-docs>"
5321
5322 #. type: textblock
5323 #: ../src/guestfs.pod:2721
5324 msgid ""
5325 "The build infrastructure and PO files for translations of manpages and POD "
5326 "files.  Eventually this will be combined with the C<po> directory, but that "
5327 "is rather complicated."
5328 msgstr ""
5329
5330 #. type: =item
5331 #: ../src/guestfs.pod:2725
5332 msgid "C<regressions>"
5333 msgstr "C<regressions>"
5334
5335 #. type: textblock
5336 #: ../src/guestfs.pod:2727
5337 msgid "Regression tests."
5338 msgstr "Тести на регресії."
5339
5340 #. type: =item
5341 #: ../src/guestfs.pod:2729
5342 msgid "C<rescue>"
5343 msgstr "C<rescue>"
5344
5345 #. type: textblock
5346 #: ../src/guestfs.pod:2731
5347 msgid "L<virt-rescue(1)> command and documentation."
5348 msgstr ""
5349
5350 #. type: =item
5351 #: ../src/guestfs.pod:2733
5352 msgid "C<src>"
5353 msgstr "C<src>"
5354
5355 #. type: textblock
5356 #: ../src/guestfs.pod:2735
5357 msgid "Source code to the C library."
5358 msgstr ""
5359
5360 #. type: =item
5361 #: ../src/guestfs.pod:2737
5362 msgid "C<tools>"
5363 msgstr "C<tools>"
5364
5365 #. type: textblock
5366 #: ../src/guestfs.pod:2739
5367 msgid "Command line tools written in Perl (L<virt-resize(1)> and many others)."
5368 msgstr ""
5369
5370 #. type: =item
5371 #: ../src/guestfs.pod:2741
5372 msgid "C<test-tool>"
5373 msgstr "C<test-tool>"
5374
5375 #. type: textblock
5376 #: ../src/guestfs.pod:2743
5377 msgid ""
5378 "Test tool for end users to test if their qemu/kernel combination will work "
5379 "with libguestfs."
5380 msgstr ""
5381
5382 #. type: =item
5383 #: ../src/guestfs.pod:2746
5384 msgid "C<csharp>"
5385 msgstr "C<csharp>"
5386
5387 #. type: =item
5388 #: ../src/guestfs.pod:2748
5389 msgid "C<haskell>"
5390 msgstr "C<haskell>"
5391
5392 #. type: =item
5393 #: ../src/guestfs.pod:2750
5394 msgid "C<java>"
5395 msgstr "C<java>"
5396
5397 #. type: =item
5398 #: ../src/guestfs.pod:2752
5399 msgid "C<ocaml>"
5400 msgstr "C<ocaml>"
5401
5402 #. type: =item
5403 #: ../src/guestfs.pod:2754
5404 msgid "C<php>"
5405 msgstr "C<php>"
5406
5407 #. type: =item
5408 #: ../src/guestfs.pod:2756
5409 msgid "C<perl>"
5410 msgstr "C<perl>"
5411
5412 #. type: =item
5413 #: ../src/guestfs.pod:2758
5414 msgid "C<python>"
5415 msgstr "C<python>"
5416
5417 #. type: =item
5418 #: ../src/guestfs.pod:2760
5419 msgid "C<ruby>"
5420 msgstr "C<ruby>"
5421
5422 #. type: textblock
5423 #: ../src/guestfs.pod:2762
5424 msgid "Language bindings."
5425 msgstr "Прив’язки до мов програмування."
5426
5427 #. type: =head1
5428 #: ../src/guestfs.pod:2766
5429 msgid "LIMITS"
5430 msgstr ""
5431
5432 #. type: =head2
5433 #: ../src/guestfs.pod:2768
5434 msgid "PROTOCOL LIMITS"
5435 msgstr ""
5436
5437 #. type: textblock
5438 #: ../src/guestfs.pod:2770
5439 msgid ""
5440 "Internally libguestfs uses a message-based protocol to pass API calls and "
5441 "their responses to and from a small \"appliance\" (see L</INTERNALS> for "
5442 "plenty more detail about this).  The maximum message size used by the "
5443 "protocol is slightly less than 4 MB.  For some API calls you may need to be "
5444 "aware of this limit.  The API calls which may be affected are individually "
5445 "documented, with a link back to this section of the documentation."
5446 msgstr ""
5447
5448 #. type: textblock
5449 #: ../src/guestfs.pod:2778
5450 msgid ""
5451 "A simple call such as L</guestfs_cat> returns its result (the file data) in "
5452 "a simple string.  Because this string is at some point internally encoded as "
5453 "a message, the maximum size that it can return is slightly under 4 MB.  If "
5454 "the requested file is larger than this then you will get an error."
5455 msgstr ""
5456
5457 #. type: textblock
5458 #: ../src/guestfs.pod:2784
5459 msgid ""
5460 "In order to transfer large files into and out of the guest filesystem, you "
5461 "need to use particular calls that support this.  The sections L</UPLOADING> "
5462 "and L</DOWNLOADING> document how to do this."
5463 msgstr ""
5464
5465 #. type: textblock
5466 #: ../src/guestfs.pod:2788
5467 msgid ""
5468 "You might also consider mounting the disk image using our FUSE filesystem "
5469 "support (L<guestmount(1)>)."
5470 msgstr ""
5471
5472 #. type: =head2
5473 #: ../src/guestfs.pod:2791
5474 msgid "MAXIMUM NUMBER OF DISKS"
5475 msgstr ""
5476
5477 #. type: textblock
5478 #: ../src/guestfs.pod:2793
5479 msgid "When using virtio disks (the default) the current limit is B<25> disks."
5480 msgstr ""
5481
5482 #. type: textblock
5483 #: ../src/guestfs.pod:2796
5484 msgid ""
5485 "Virtio itself consumes 1 virtual PCI slot per disk, and PCI is limited to 31 "
5486 "slots.  However febootstrap only understands disks with names C</dev/vda> "
5487 "through C</dev/vdz> (26 letters) and it reserves one disk for its own "
5488 "purposes."
5489 msgstr ""
5490
5491 #. type: textblock
5492 #: ../src/guestfs.pod:2801
5493 msgid ""
5494 "We are working to substantially raise this limit in future versions but it "
5495 "requires complex changes to qemu."
5496 msgstr ""
5497
5498 #. type: textblock
5499 #: ../src/guestfs.pod:2804
5500 msgid ""
5501 "In future versions of libguestfs it should also be possible to \"hot plug\" "
5502 "disks (add and remove disks after calling L</guestfs_launch>).  This also "
5503 "requires changes to qemu."
5504 msgstr ""
5505
5506 #. type: =head2
5507 #: ../src/guestfs.pod:2808
5508 msgid "MAXIMUM NUMBER OF PARTITIONS PER DISK"
5509 msgstr ""
5510
5511 #. type: textblock
5512 #: ../src/guestfs.pod:2810
5513 msgid "Virtio limits the maximum number of partitions per disk to B<15>."
5514 msgstr ""
5515
5516 #. type: textblock
5517 #: ../src/guestfs.pod:2812
5518 msgid ""
5519 "This is because it reserves 4 bits for the minor device number (thus C</dev/"
5520 "vda>, and C</dev/vda1> through C</dev/vda15>)."
5521 msgstr ""
5522
5523 #. type: textblock
5524 #: ../src/guestfs.pod:2815
5525 msgid ""
5526 "If you attach a disk with more than 15 partitions, the extra partitions are "
5527 "ignored by libguestfs."
5528 msgstr ""
5529
5530 #. type: =head2
5531 #: ../src/guestfs.pod:2818
5532 msgid "MAXIMUM SIZE OF A DISK"
5533 msgstr ""
5534
5535 #. type: textblock
5536 #: ../src/guestfs.pod:2820
5537 msgid "Probably the limit is between 2**63-1 and 2**64-1 bytes."
5538 msgstr ""
5539
5540 #. type: textblock
5541 #: ../src/guestfs.pod:2822
5542 msgid ""
5543 "We have tested block devices up to 1 exabyte (2**60 or "
5544 "1,152,921,504,606,846,976 bytes) using sparse files backed by an XFS host "
5545 "filesystem."
5546 msgstr ""
5547
5548 #. type: textblock
5549 #: ../src/guestfs.pod:2826
5550 msgid ""
5551 "Although libguestfs probably does not impose any limit, the underlying host "
5552 "storage will.  If you store disk images on a host ext4 filesystem, then the "
5553 "maximum size will be limited by the maximum ext4 file size (currently 16 "
5554 "TB).  If you store disk images as host logical volumes then you are limited "
5555 "by the maximum size of an LV."
5556 msgstr ""
5557
5558 #. type: textblock
5559 #: ../src/guestfs.pod:2832
5560 msgid ""
5561 "For the hugest disk image files, we recommend using XFS on the host for "
5562 "storage."
5563 msgstr ""
5564
5565 #. type: =head2
5566 #: ../src/guestfs.pod:2835
5567 msgid "MAXIMUM SIZE OF A PARTITION"
5568 msgstr ""
5569
5570 #. type: textblock
5571 #: ../src/guestfs.pod:2837
5572 msgid ""
5573 "The MBR (ie. classic MS-DOS) partitioning scheme uses 32 bit sector "
5574 "numbers.  Assuming a 512 byte sector size, this means that MBR cannot "
5575 "address a partition located beyond 2 TB on the disk."
5576 msgstr ""
5577
5578 #. type: textblock
5579 #: ../src/guestfs.pod:2841
5580 msgid ""
5581 "It is recommended that you use GPT partitions on disks which are larger than "
5582 "this size.  GPT uses 64 bit sector numbers and so can address partitions "
5583 "which are theoretically larger than the largest disk we could support."
5584 msgstr ""
5585
5586 #. type: =head2
5587 #: ../src/guestfs.pod:2846
5588 msgid "MAXIMUM SIZE OF A FILESYSTEM, FILES, DIRECTORIES"
5589 msgstr ""
5590
5591 #. type: textblock
5592 #: ../src/guestfs.pod:2848
5593 msgid ""
5594 "This depends on the filesystem type.  libguestfs itself does not impose any "
5595 "known limit.  Consult Wikipedia or the filesystem documentation to find out "
5596 "what these limits are."
5597 msgstr ""
5598
5599 #. type: =head2
5600 #: ../src/guestfs.pod:2852
5601 msgid "MAXIMUM UPLOAD AND DOWNLOAD"
5602 msgstr ""
5603
5604 #. type: textblock
5605 #: ../src/guestfs.pod:2854
5606 msgid ""
5607 "The API functions L</guestfs_upload>, L</guestfs_download>, L</"
5608 "guestfs_tar_in>, L</guestfs_tar_out> and the like allow unlimited sized "
5609 "uploads and downloads."
5610 msgstr ""
5611
5612 #. type: =head2
5613 #: ../src/guestfs.pod:2858
5614 #, fuzzy
5615 #| msgid "INSPECTION"
5616 msgid "INSPECTION LIMITS"
5617 msgstr "ПЕРЕВІРКА"
5618
5619 #. type: textblock
5620 #: ../src/guestfs.pod:2860
5621 msgid ""
5622 "The inspection code has several arbitrary limits on things like the size of "
5623 "Windows Registry hive it will read, and the length of product name.  These "
5624 "are intended to stop a malicious guest from consuming arbitrary amounts of "
5625 "memory and disk space on the host, and should not be reached in practice.  "
5626 "See the source code for more information."
5627 msgstr ""
5628
5629 #. type: =head1
5630 #: ../src/guestfs.pod:2866 ../fish/guestfish.pod:1026
5631 #: ../test-tool/libguestfs-test-tool.pod:82 ../tools/virt-edit.pl:476
5632 msgid "ENVIRONMENT VARIABLES"
5633 msgstr "ЗМІННІ СЕРЕДОВИЩА"
5634
5635 #. type: =item
5636 #: ../src/guestfs.pod:2870 ../fish/guestfish.pod:1052
5637 msgid "LIBGUESTFS_APPEND"
5638 msgstr ""
5639
5640 #. type: textblock
5641 #: ../src/guestfs.pod:2872 ../fish/guestfish.pod:1054
5642 msgid "Pass additional options to the guest kernel."
5643 msgstr ""
5644
5645 #. type: =item
5646 #: ../src/guestfs.pod:2874 ../fish/guestfish.pod:1056
5647 msgid "LIBGUESTFS_DEBUG"
5648 msgstr ""
5649
5650 #. type: textblock
5651 #: ../src/guestfs.pod:2876
5652 msgid ""
5653 "Set C<LIBGUESTFS_DEBUG=1> to enable verbose messages.  This has the same "
5654 "effect as calling C<guestfs_set_verbose (g, 1)>."
5655 msgstr ""
5656
5657 #. type: =item
5658 #: ../src/guestfs.pod:2879 ../fish/guestfish.pod:1061
5659 msgid "LIBGUESTFS_MEMSIZE"
5660 msgstr ""
5661
5662 #. type: textblock
5663 #: ../src/guestfs.pod:2881 ../fish/guestfish.pod:1063
5664 msgid ""
5665 "Set the memory allocated to the qemu process, in megabytes.  For example:"
5666 msgstr ""
5667
5668 #. type: verbatim
5669 #: ../src/guestfs.pod:2884 ../fish/guestfish.pod:1066
5670 #, no-wrap
5671 msgid ""
5672 " LIBGUESTFS_MEMSIZE=700\n"
5673 "\n"
5674 msgstr ""
5675
5676 #. type: =item
5677 #: ../src/guestfs.pod:2886 ../fish/guestfish.pod:1068
5678 msgid "LIBGUESTFS_PATH"
5679 msgstr ""
5680
5681 #. type: textblock
5682 #: ../src/guestfs.pod:2888
5683 msgid ""
5684 "Set the path that libguestfs uses to search for a supermin appliance.  See "
5685 "the discussion of paths in section L</PATH> above."
5686 msgstr ""
5687
5688 #. type: =item
5689 #: ../src/guestfs.pod:2891 ../fish/guestfish.pod:1073
5690 msgid "LIBGUESTFS_QEMU"
5691 msgstr ""
5692
5693 #. type: textblock
5694 #: ../src/guestfs.pod:2893 ../fish/guestfish.pod:1075
5695 msgid ""
5696 "Set the default qemu binary that libguestfs uses.  If not set, then the qemu "
5697 "which was found at compile time by the configure script is used."
5698 msgstr ""
5699
5700 #. type: textblock
5701 #: ../src/guestfs.pod:2897
5702 msgid "See also L</QEMU WRAPPERS> above."
5703 msgstr ""
5704
5705 #. type: =item
5706 #: ../src/guestfs.pod:2899 ../fish/guestfish.pod:1079
5707 msgid "LIBGUESTFS_TRACE"
5708 msgstr ""
5709
5710 #. type: textblock
5711 #: ../src/guestfs.pod:2901
5712 msgid ""
5713 "Set C<LIBGUESTFS_TRACE=1> to enable command traces.  This has the same "
5714 "effect as calling C<guestfs_set_trace (g, 1)>."
5715 msgstr ""
5716
5717 #. type: =item
5718 #: ../src/guestfs.pod:2904 ../fish/guestfish.pod:1088
5719 msgid "TMPDIR"
5720 msgstr ""
5721
5722 #. type: textblock
5723 #: ../src/guestfs.pod:2906 ../fish/guestfish.pod:1090
5724 msgid ""
5725 "Location of temporary directory, defaults to C</tmp> except for the cached "
5726 "supermin appliance which defaults to C</var/tmp>."
5727 msgstr ""
5728
5729 #. type: textblock
5730 #: ../src/guestfs.pod:2909 ../fish/guestfish.pod:1093
5731 msgid ""
5732 "If libguestfs was compiled to use the supermin appliance then the real "
5733 "appliance is cached in this directory, shared between all handles belonging "
5734 "to the same EUID.  You can use C<$TMPDIR> to configure another directory to "
5735 "use in case C</var/tmp> is not large enough."
5736 msgstr ""
5737
5738 #. type: =head1
5739 #: ../src/guestfs.pod:2917 ../fish/guestfish.pod:1160
5740 #: ../test-tool/libguestfs-test-tool.pod:87 ../fuse/guestmount.pod:277
5741 #: ../tools/virt-edit.pl:496 ../tools/virt-win-reg.pl:572
5742 #: ../tools/virt-list-filesystems.pl:189 ../tools/virt-tar.pl:286
5743 #: ../tools/virt-make-fs.pl:539 ../tools/virt-list-partitions.pl:257
5744 msgid "SEE ALSO"
5745 msgstr "ТАКОЖ ПЕРЕГЛЯНЬТЕ"
5746
5747 #. type: textblock
5748 #: ../src/guestfs.pod:2919
5749 msgid ""
5750 "L<guestfs-examples(3)>, L<guestfs-ocaml(3)>, L<guestfs-perl(3)>, L<guestfs-"
5751 "python(3)>, L<guestfs-ruby(3)>, L<guestfish(1)>, L<guestmount(1)>, L<virt-cat"
5752 "(1)>, L<virt-copy-in(1)>, L<virt-copy-out(1)>, L<virt-df(1)>, L<virt-edit(1)"
5753 ">, L<virt-filesystems(1)>, L<virt-inspector(1)>, L<virt-list-filesystems(1)"
5754 ">, L<virt-list-partitions(1)>, L<virt-ls(1)>, L<virt-make-fs(1)>, L<virt-"
5755 "rescue(1)>, L<virt-tar(1)>, L<virt-tar-in(1)>, L<virt-tar-out(1)>, L<virt-"
5756 "win-reg(1)>, L<qemu(1)>, L<febootstrap(1)>, L<hivex(3)>, L<http://libguestfs."
5757 "org/>."
5758 msgstr ""
5759
5760 #. type: textblock
5761 #: ../src/guestfs.pod:2947
5762 msgid ""
5763 "Tools with a similar purpose: L<fdisk(8)>, L<parted(8)>, L<kpartx(8)>, L<lvm"
5764 "(8)>, L<disktype(1)>."
5765 msgstr ""
5766
5767 #. type: =head1
5768 #: ../src/guestfs.pod:2954 ../tools/virt-win-reg.pl:587
5769 #: ../tools/virt-make-fs.pl:553
5770 msgid "BUGS"
5771 msgstr "ВАДИ"
5772
5773 #. type: textblock
5774 #: ../src/guestfs.pod:2956
5775 msgid "To get a list of bugs against libguestfs use this link:"
5776 msgstr ""
5777 "Щоб переглянути список відомих вад у libguestfs, скористайтеся таким "
5778 "посиланням:"
5779
5780 #. type: textblock
5781 #: ../src/guestfs.pod:2958
5782 msgid ""
5783 "L<https://bugzilla.redhat.com/buglist.cgi?"
5784 "component=libguestfs&product=Virtualization+Tools>"
5785 msgstr ""
5786 "L<https://bugzilla.redhat.com/buglist.cgi?"
5787 "component=libguestfs&product=Virtualization+Tools>"
5788
5789 #. type: textblock
5790 #: ../src/guestfs.pod:2960
5791 msgid "To report a new bug against libguestfs use this link:"
5792 msgstr "Для звітування щодо вад у libguestfs скористайтеся цим посиланням:"
5793
5794 #. type: textblock
5795 #: ../src/guestfs.pod:2962
5796 msgid ""
5797 "L<https://bugzilla.redhat.com/enter_bug.cgi?"
5798 "component=libguestfs&product=Virtualization+Tools>"
5799 msgstr ""
5800 "L<https://bugzilla.redhat.com/enter_bug.cgi?"
5801 "component=libguestfs&product=Virtualization+Tools>"
5802
5803 #. type: textblock
5804 #: ../src/guestfs.pod:2964
5805 msgid "When reporting a bug, please check:"
5806 msgstr ""
5807
5808 #. type: textblock
5809 #: ../src/guestfs.pod:2970
5810 msgid "That the bug hasn't been reported already."
5811 msgstr ""
5812
5813 #. type: textblock
5814 #: ../src/guestfs.pod:2974
5815 msgid "That you are testing a recent version."
5816 msgstr ""
5817
5818 #. type: textblock
5819 #: ../src/guestfs.pod:2978
5820 msgid "Describe the bug accurately, and give a way to reproduce it."
5821 msgstr ""
5822
5823 #. type: textblock
5824 #: ../src/guestfs.pod:2982
5825 msgid ""
5826 "Run libguestfs-test-tool and paste the B<complete, unedited> output into the "
5827 "bug report."
5828 msgstr ""
5829
5830 #. type: =head1
5831 #: ../src/guestfs.pod:2987 ../fish/guestfish.pod:1183
5832 #: ../test-tool/libguestfs-test-tool.pod:93 ../fuse/guestmount.pod:288
5833 msgid "AUTHORS"
5834 msgstr "АВТОРИ"
5835
5836 #. type: textblock
5837 #: ../src/guestfs.pod:2989 ../fish/guestfish.pod:1185
5838 #: ../test-tool/libguestfs-test-tool.pod:95 ../fuse/guestmount.pod:290
5839 msgid "Richard W.M. Jones (C<rjones at redhat dot com>)"
5840 msgstr ""
5841
5842 #. type: =head1
5843 #: ../src/guestfs.pod:2991 ../fish/guestfish.pod:1187
5844 #: ../test-tool/libguestfs-test-tool.pod:97 ../fuse/guestmount.pod:292
5845 #: ../tools/virt-edit.pl:514 ../tools/virt-win-reg.pl:602
5846 #: ../tools/virt-list-filesystems.pl:206 ../tools/virt-tar.pl:305
5847 #: ../tools/virt-make-fs.pl:568 ../tools/virt-list-partitions.pl:273
5848 msgid "COPYRIGHT"
5849 msgstr "АВТОРСЬКІ ПРАВА"
5850
5851 #. type: textblock
5852 #: ../src/guestfs.pod:2993 ../fish/guestfish.pod:1189
5853 #: ../test-tool/libguestfs-test-tool.pod:99
5854 msgid "Copyright (C) 2009-2011 Red Hat Inc.  L<http://libguestfs.org/>"
5855 msgstr ""
5856
5857 #. type: textblock
5858 #: ../src/guestfs.pod:2996
5859 msgid ""
5860 "This library is free software; you can redistribute it and/or modify it "
5861 "under the terms of the GNU Lesser General Public License as published by the "
5862 "Free Software Foundation; either version 2 of the License, or (at your "
5863 "option) any later version."
5864 msgstr ""
5865
5866 #. type: textblock
5867 #: ../src/guestfs.pod:3001
5868 msgid ""
5869 "This library is distributed in the hope that it will be useful, but WITHOUT "
5870 "ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or "
5871 "FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public License "
5872 "for more details."
5873 msgstr ""
5874
5875 #. type: textblock
5876 #: ../src/guestfs.pod:3006
5877 msgid ""
5878 "You should have received a copy of the GNU Lesser General Public License "
5879 "along with this library; if not, write to the Free Software Foundation, "
5880 "Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA"
5881 msgstr ""
5882
5883 #. type: =head2
5884 #: ../src/guestfs-actions.pod:1
5885 msgid "guestfs_add_cdrom"
5886 msgstr ""
5887
5888 #. type: verbatim
5889 #: ../src/guestfs-actions.pod:3
5890 #, no-wrap
5891 msgid ""
5892 " int\n"
5893 " guestfs_add_cdrom (guestfs_h *g,\n"
5894 "                    const char *filename);\n"
5895 "\n"
5896 msgstr ""
5897
5898 #. type: textblock
5899 #: ../src/guestfs-actions.pod:7 ../fish/guestfish-actions.pod:5
5900 msgid "This function adds a virtual CD-ROM disk image to the guest."
5901 msgstr ""
5902
5903 #. type: textblock
5904 #: ../src/guestfs-actions.pod:9 ../fish/guestfish-actions.pod:7
5905 msgid "This is equivalent to the qemu parameter I<-cdrom filename>."
5906 msgstr ""
5907
5908 #. type: textblock
5909 #: ../src/guestfs-actions.pod:17
5910 msgid ""
5911 "This call checks for the existence of C<filename>.  This stops you from "
5912 "specifying other types of drive which are supported by qemu such as C<nbd:> "
5913 "and C<http:> URLs.  To specify those, use the general C<guestfs_config> call "
5914 "instead."
5915 msgstr ""
5916
5917 #. type: textblock
5918 #: ../src/guestfs-actions.pod:24
5919 msgid ""
5920 "If you just want to add an ISO file (often you use this as an efficient way "
5921 "to transfer large files into the guest), then you should probably use "
5922 "C<guestfs_add_drive_ro> instead."
5923 msgstr ""
5924
5925 #. type: textblock
5926 #: ../src/guestfs-actions.pod:30 ../src/guestfs-actions.pod:134
5927 #: ../src/guestfs-actions.pod:195 ../src/guestfs-actions.pod:232
5928 #: ../src/guestfs-actions.pod:246 ../src/guestfs-actions.pod:267
5929 #: ../src/guestfs-actions.pod:287 ../src/guestfs-actions.pod:301
5930 #: ../src/guestfs-actions.pod:421 ../src/guestfs-actions.pod:441
5931 #: ../src/guestfs-actions.pod:455 ../src/guestfs-actions.pod:500
5932 #: ../src/guestfs-actions.pod:528 ../src/guestfs-actions.pod:546
5933 #: ../src/guestfs-actions.pod:613 ../src/guestfs-actions.pod:646
5934 #: ../src/guestfs-actions.pod:660 ../src/guestfs-actions.pod:675
5935 #: ../src/guestfs-actions.pod:774 ../src/guestfs-actions.pod:792
5936 #: ../src/guestfs-actions.pod:806 ../src/guestfs-actions.pod:820
5937 #: ../src/guestfs-actions.pod:981 ../src/guestfs-actions.pod:1001
5938 #: ../src/guestfs-actions.pod:1019 ../src/guestfs-actions.pod:1103
5939 #: ../src/guestfs-actions.pod:1121 ../src/guestfs-actions.pod:1140
5940 #: ../src/guestfs-actions.pod:1154 ../src/guestfs-actions.pod:1174
5941 #: ../src/guestfs-actions.pod:1244 ../src/guestfs-actions.pod:1275
5942 #: ../src/guestfs-actions.pod:1300 ../src/guestfs-actions.pod:1342
5943 #: ../src/guestfs-actions.pod:1448 ../src/guestfs-actions.pod:1482
5944 #: ../src/guestfs-actions.pod:1697 ../src/guestfs-actions.pod:1719
5945 #: ../src/guestfs-actions.pod:1806 ../src/guestfs-actions.pod:2290
5946 #: ../src/guestfs-actions.pod:2434 ../src/guestfs-actions.pod:2495
5947 #: ../src/guestfs-actions.pod:2530 ../src/guestfs-actions.pod:3483
5948 #: ../src/guestfs-actions.pod:3498 ../src/guestfs-actions.pod:3523
5949 #: ../src/guestfs-actions.pod:3678 ../src/guestfs-actions.pod:3692
5950 #: ../src/guestfs-actions.pod:3705 ../src/guestfs-actions.pod:3719
5951 #: ../src/guestfs-actions.pod:3734 ../src/guestfs-actions.pod:3770
5952 #: ../src/guestfs-actions.pod:3842 ../src/guestfs-actions.pod:3862
5953 #: ../src/guestfs-actions.pod:3879 ../src/guestfs-actions.pod:3902
5954 #: ../src/guestfs-actions.pod:3925 ../src/guestfs-actions.pod:3957
5955 #: ../src/guestfs-actions.pod:3976 ../src/guestfs-actions.pod:3995
5956 #: ../src/guestfs-actions.pod:4030 ../src/guestfs-actions.pod:4042
5957 #: ../src/guestfs-actions.pod:4078 ../src/guestfs-actions.pod:4094
5958 #: ../src/guestfs-actions.pod:4107 ../src/guestfs-actions.pod:4122
5959 #: ../src/guestfs-actions.pod:4139 ../src/guestfs-actions.pod:4232
5960 #: ../src/guestfs-actions.pod:4252 ../src/guestfs-actions.pod:4265
5961 #: ../src/guestfs-actions.pod:4316 ../src/guestfs-actions.pod:4334
5962 #: ../src/guestfs-actions.pod:4352 ../src/guestfs-actions.pod:4368
5963 #: ../src/guestfs-actions.pod:4382 ../src/guestfs-actions.pod:4396
5964 #: ../src/guestfs-actions.pod:4413 ../src/guestfs-actions.pod:4428
5965 #: ../src/guestfs-actions.pod:4448 ../src/guestfs-actions.pod:4506
5966 #: ../src/guestfs-actions.pod:4579 ../src/guestfs-actions.pod:4610
5967 #: ../src/guestfs-actions.pod:4629 ../src/guestfs-actions.pod:4648
5968 #: ../src/guestfs-actions.pod:4660 ../src/guestfs-actions.pod:4677
5969 #: ../src/guestfs-actions.pod:4690 ../src/guestfs-actions.pod:4705
5970 #: ../src/guestfs-actions.pod:4720 ../src/guestfs-actions.pod:4755
5971 #: ../src/guestfs-actions.pod:4777 ../src/guestfs-actions.pod:4797
5972 #: ../src/guestfs-actions.pod:4811 ../src/guestfs-actions.pod:4828
5973 #: ../src/guestfs-actions.pod:4877 ../src/guestfs-actions.pod:4923
5974 #: ../src/guestfs-actions.pod:4937 ../src/guestfs-actions.pod:4965
5975 #: ../src/guestfs-actions.pod:4982 ../src/guestfs-actions.pod:5000
5976 #: ../src/guestfs-actions.pod:5134 ../src/guestfs-actions.pod:5191
5977 #: ../src/guestfs-actions.pod:5213 ../src/guestfs-actions.pod:5231
5978 #: ../src/guestfs-actions.pod:5263 ../src/guestfs-actions.pod:5329
5979 #: ../src/guestfs-actions.pod:5346 ../src/guestfs-actions.pod:5359
5980 #: ../src/guestfs-actions.pod:5373 ../src/guestfs-actions.pod:5662
5981 #: ../src/guestfs-actions.pod:5681 ../src/guestfs-actions.pod:5700
5982 #: ../src/guestfs-actions.pod:5712 ../src/guestfs-actions.pod:5724
5983 #: ../src/guestfs-actions.pod:5738 ../src/guestfs-actions.pod:5750
5984 #: ../src/guestfs-actions.pod:5764 ../src/guestfs-actions.pod:5780
5985 #: ../src/guestfs-actions.pod:5801 ../src/guestfs-actions.pod:5820
5986 #: ../src/guestfs-actions.pod:5839 ../src/guestfs-actions.pod:5869
5987 #: ../src/guestfs-actions.pod:5885 ../src/guestfs-actions.pod:5908
5988 #: ../src/guestfs-actions.pod:5926 ../src/guestfs-actions.pod:5945
5989 #: ../src/guestfs-actions.pod:5966 ../src/guestfs-actions.pod:5985
5990 #: ../src/guestfs-actions.pod:6002 ../src/guestfs-actions.pod:6030
5991 #: ../src/guestfs-actions.pod:6054 ../src/guestfs-actions.pod:6073
5992 #: ../src/guestfs-actions.pod:6097 ../src/guestfs-actions.pod:6116
5993 #: ../src/guestfs-actions.pod:6131 ../src/guestfs-actions.pod:6150
5994 #: ../src/guestfs-actions.pod:6187 ../src/guestfs-actions.pod:6217
5995 #: ../src/guestfs-actions.pod:6250 ../src/guestfs-actions.pod:6372
5996 #: ../src/guestfs-actions.pod:6493 ../src/guestfs-actions.pod:6505
5997 #: ../src/guestfs-actions.pod:6518 ../src/guestfs-actions.pod:6531
5998 #: ../src/guestfs-actions.pod:6553 ../src/guestfs-actions.pod:6566
5999 #: ../src/guestfs-actions.pod:6579 ../src/guestfs-actions.pod:6592
6000 #: ../src/guestfs-actions.pod:6607 ../src/guestfs-actions.pod:6666
6001 #: ../src/guestfs-actions.pod:6683 ../src/guestfs-actions.pod:6699
6002 #: ../src/guestfs-actions.pod:6715 ../src/guestfs-actions.pod:6732
6003 #: ../src/guestfs-actions.pod:6745 ../src/guestfs-actions.pod:6765
6004 #: ../src/guestfs-actions.pod:6801 ../src/guestfs-actions.pod:6815
6005 #: ../src/guestfs-actions.pod:6856 ../src/guestfs-actions.pod:6869
6006 #: ../src/guestfs-actions.pod:6887 ../src/guestfs-actions.pod:6921
6007 #: ../src/guestfs-actions.pod:6957 ../src/guestfs-actions.pod:7076
6008 #: ../src/guestfs-actions.pod:7094 ../src/guestfs-actions.pod:7108
6009 #: ../src/guestfs-actions.pod:7163 ../src/guestfs-actions.pod:7176
6010 #: ../src/guestfs-actions.pod:7221 ../src/guestfs-actions.pod:7254
6011 #: ../src/guestfs-actions.pod:7315 ../src/guestfs-actions.pod:7341
6012 #: ../src/guestfs-actions.pod:7407 ../src/guestfs-actions.pod:7426
6013 #: ../src/guestfs-actions.pod:7455
6014 msgid "This function returns 0 on success or -1 on error."
6015 msgstr ""
6016
6017 #. type: textblock
6018 #: ../src/guestfs-actions.pod:32 ../src/guestfs-actions.pod:248
6019 #: ../src/guestfs-actions.pod:269
6020 msgid ""
6021 "This function is deprecated.  In new code, use the L</"
6022 "guestfs_add_drive_opts> call instead."
6023 msgstr ""
6024
6025 #. type: textblock
6026 #: ../src/guestfs-actions.pod:35 ../src/guestfs-actions.pod:251
6027 #: ../src/guestfs-actions.pod:272 ../src/guestfs-actions.pod:1453
6028 #: ../src/guestfs-actions.pod:1946 ../src/guestfs-actions.pod:1967
6029 #: ../src/guestfs-actions.pod:4453 ../src/guestfs-actions.pod:4760
6030 #: ../src/guestfs-actions.pod:6195 ../src/guestfs-actions.pod:6225
6031 #: ../src/guestfs-actions.pod:6258 ../src/guestfs-actions.pod:6317
6032 #: ../src/guestfs-actions.pod:7259 ../src/guestfs-actions.pod:7349
6033 #: ../src/guestfs-actions.pod:7518 ../fish/guestfish-actions.pod:31
6034 #: ../fish/guestfish-actions.pod:161 ../fish/guestfish-actions.pod:175
6035 #: ../fish/guestfish-actions.pod:961 ../fish/guestfish-actions.pod:1321
6036 #: ../fish/guestfish-actions.pod:1335 ../fish/guestfish-actions.pod:3032
6037 #: ../fish/guestfish-actions.pod:3229 ../fish/guestfish-actions.pod:4210
6038 #: ../fish/guestfish-actions.pod:4233 ../fish/guestfish-actions.pod:4255
6039 #: ../fish/guestfish-actions.pod:4293 ../fish/guestfish-actions.pod:4934
6040 #: ../fish/guestfish-actions.pod:5031
6041 msgid ""
6042 "Deprecated functions will not be removed from the API, but the fact that "
6043 "they are deprecated indicates that there are problems with correct use of "
6044 "these functions."
6045 msgstr ""
6046
6047 #. type: textblock
6048 #: ../src/guestfs-actions.pod:39 ../src/guestfs-actions.pod:136
6049 #: ../src/guestfs-actions.pod:1105 ../src/guestfs-actions.pod:1918
6050 #: ../src/guestfs-actions.pod:2016 ../src/guestfs-actions.pod:2119
6051 #: ../src/guestfs-actions.pod:3485 ../src/guestfs-actions.pod:3505
6052 #: ../src/guestfs-actions.pod:4764 ../src/guestfs-actions.pod:5887
6053 #: ../src/guestfs-actions.pod:6004 ../src/guestfs-actions.pod:6118
6054 #: ../src/guestfs-actions.pod:6609 ../src/guestfs-actions.pod:6734
6055 #: ../src/guestfs-actions.pod:7263
6056 msgid "(Added in 0.3)"
6057 msgstr ""
6058
6059 #. type: =head2
6060 #: ../src/guestfs-actions.pod:41
6061 msgid "guestfs_add_domain"
6062 msgstr ""
6063
6064 #. type: verbatim
6065 #: ../src/guestfs-actions.pod:43
6066 #, no-wrap
6067 msgid ""
6068 " int\n"
6069 " guestfs_add_domain (guestfs_h *g,\n"
6070 "                     const char *dom,\n"
6071 "                     ...);\n"
6072 "\n"
6073 msgstr ""
6074
6075 #. type: textblock
6076 #: ../src/guestfs-actions.pod:48 ../src/guestfs-actions.pod:145
6077 #: ../src/guestfs-actions.pod:4467
6078 msgid ""
6079 "You may supply a list of optional arguments to this call.  Use zero or more "
6080 "of the following pairs of parameters, and terminate the list with C<-1> on "
6081 "its own.  See L</CALLS WITH OPTIONAL ARGUMENTS>."
6082 msgstr ""
6083
6084 #. type: verbatim
6085 #: ../src/guestfs-actions.pod:53
6086 #, no-wrap
6087 msgid ""
6088 " GUESTFS_ADD_DOMAIN_LIBVIRTURI, const char *libvirturi,\n"
6089 " GUESTFS_ADD_DOMAIN_READONLY, int readonly,\n"
6090 " GUESTFS_ADD_DOMAIN_IFACE, const char *iface,\n"
6091 " GUESTFS_ADD_DOMAIN_LIVE, int live,\n"
6092 "\n"
6093 msgstr ""
6094
6095 #. type: textblock
6096 #: ../src/guestfs-actions.pod:58
6097 msgid ""
6098 "This function adds the disk(s) attached to the named libvirt domain C<dom>.  "
6099 "It works by connecting to libvirt, requesting the domain and domain XML from "
6100 "libvirt, parsing it for disks, and calling C<guestfs_add_drive_opts> on each "
6101 "one."
6102 msgstr ""
6103
6104 #. type: textblock
6105 #: ../src/guestfs-actions.pod:63 ../fish/guestfish-actions.pod:46
6106 msgid ""
6107 "The number of disks added is returned.  This operation is atomic: if an "
6108 "error is returned, then no disks are added."
6109 msgstr ""
6110
6111 #. type: textblock
6112 #: ../src/guestfs-actions.pod:66 ../fish/guestfish-actions.pod:49
6113 msgid ""
6114 "This function does some minimal checks to make sure the libvirt domain is "
6115 "not running (unless C<readonly> is true).  In a future version we will try "
6116 "to acquire the libvirt lock on each disk."
6117 msgstr ""
6118
6119 #. type: textblock
6120 #: ../src/guestfs-actions.pod:70 ../fish/guestfish-actions.pod:53
6121 msgid ""
6122 "Disks must be accessible locally.  This often means that adding disks from a "
6123 "remote libvirt connection (see L<http://libvirt.org/remote.html>)  will fail "
6124 "unless those disks are accessible via the same device path locally too."
6125 msgstr ""
6126
6127 #. type: textblock
6128 #: ../src/guestfs-actions.pod:75 ../fish/guestfish-actions.pod:58
6129 msgid ""
6130 "The optional C<libvirturi> parameter sets the libvirt URI (see L<http://"
6131 "libvirt.org/uri.html>).  If this is not set then we connect to the default "
6132 "libvirt URI (or one set through an environment variable, see the libvirt "
6133 "documentation for full details)."
6134 msgstr ""
6135
6136 #. type: textblock
6137 #: ../src/guestfs-actions.pod:81 ../fish/guestfish-actions.pod:64
6138 msgid ""
6139 "The optional C<live> flag controls whether this call will try to connect to "
6140 "a running virtual machine C<guestfsd> process if it sees a suitable "
6141 "E<lt>channelE<gt> element in the libvirt XML definition.  The default (if "
6142 "the flag is omitted) is never to try.  See L<guestfs(3)/ATTACHING TO RUNNING "
6143 "DAEMONS> for more information."
6144 msgstr ""
6145
6146 #. type: textblock
6147 #: ../src/guestfs-actions.pod:88
6148 msgid ""
6149 "The other optional parameters are passed directly through to "
6150 "C<guestfs_add_drive_opts>."
6151 msgstr ""
6152
6153 #. type: textblock
6154 #: ../src/guestfs-actions.pod:91 ../src/guestfs-actions.pod:344
6155 #: ../src/guestfs-actions.pod:514 ../src/guestfs-actions.pod:692
6156 #: ../src/guestfs-actions.pod:723 ../src/guestfs-actions.pod:741
6157 #: ../src/guestfs-actions.pod:760 ../src/guestfs-actions.pod:1320
6158 #: ../src/guestfs-actions.pod:1676 ../src/guestfs-actions.pod:1879
6159 #: ../src/guestfs-actions.pod:1988 ../src/guestfs-actions.pod:2028
6160 #: ../src/guestfs-actions.pod:2083 ../src/guestfs-actions.pod:2106
6161 #: ../src/guestfs-actions.pod:2421 ../src/guestfs-actions.pod:2804
6162 #: ../src/guestfs-actions.pod:2825 ../src/guestfs-actions.pod:4900
6163 #: ../src/guestfs-actions.pod:5037 ../src/guestfs-actions.pod:5443
6164 #: ../src/guestfs-actions.pod:5469 ../src/guestfs-actions.pod:6842
6165 #: ../src/guestfs-actions.pod:7274 ../src/guestfs-actions.pod:7287
6166 #: ../src/guestfs-actions.pod:7300
6167 msgid "On error this function returns -1."
6168 msgstr ""
6169
6170 #. type: textblock
6171 #: ../src/guestfs-actions.pod:93
6172 msgid "(Added in 1.7.4)"
6173 msgstr ""
6174
6175 #. type: =head2
6176 #: ../src/guestfs-actions.pod:95
6177 msgid "guestfs_add_domain_va"
6178 msgstr ""
6179
6180 #. type: verbatim
6181 #: ../src/guestfs-actions.pod:97
6182 #, no-wrap
6183 msgid ""
6184 " int\n"
6185 " guestfs_add_domain_va (guestfs_h *g,\n"
6186 "                        const char *dom,\n"
6187 "                        va_list args);\n"
6188 "\n"
6189 msgstr ""
6190
6191 #. type: textblock
6192 #: ../src/guestfs-actions.pod:102
6193 msgid "This is the \"va_list variant\" of L</guestfs_add_domain>."
6194 msgstr ""
6195
6196 #. type: textblock
6197 #: ../src/guestfs-actions.pod:104 ../src/guestfs-actions.pod:115
6198 #: ../src/guestfs-actions.pod:208 ../src/guestfs-actions.pod:219
6199 #: ../src/guestfs-actions.pod:4520 ../src/guestfs-actions.pod:4532
6200 msgid "See L</CALLS WITH OPTIONAL ARGUMENTS>."
6201 msgstr ""
6202
6203 #. type: =head2
6204 #: ../src/guestfs-actions.pod:106
6205 msgid "guestfs_add_domain_argv"
6206 msgstr ""
6207
6208 #. type: verbatim
6209 #: ../src/guestfs-actions.pod:108
6210 #, no-wrap
6211 msgid ""
6212 " int\n"
6213 " guestfs_add_domain_argv (guestfs_h *g,\n"
6214 "                          const char *dom,\n"
6215 "                          const struct guestfs_add_domain_argv *optargs);\n"
6216 "\n"
6217 msgstr ""
6218
6219 #. type: textblock
6220 #: ../src/guestfs-actions.pod:113
6221 msgid "This is the \"argv variant\" of L</guestfs_add_domain>."
6222 msgstr ""
6223
6224 #. type: =head2
6225 #: ../src/guestfs-actions.pod:117
6226 msgid "guestfs_add_drive"
6227 msgstr ""
6228
6229 #. type: verbatim
6230 #: ../src/guestfs-actions.pod:119
6231 #, no-wrap
6232 msgid ""
6233 " int\n"
6234 " guestfs_add_drive (guestfs_h *g,\n"
6235 "                    const char *filename);\n"
6236 "\n"
6237 msgstr ""
6238
6239 #. type: textblock
6240 #: ../src/guestfs-actions.pod:123
6241 msgid ""
6242 "This function is the equivalent of calling C<guestfs_add_drive_opts> with no "
6243 "optional parameters, so the disk is added writable, with the format being "
6244 "detected automatically."
6245 msgstr ""
6246
6247 #. type: textblock
6248 #: ../src/guestfs-actions.pod:127
6249 msgid ""
6250 "Automatic detection of the format opens you up to a potential security hole "
6251 "when dealing with untrusted raw-format images.  See CVE-2010-3851 and "
6252 "RHBZ#642934.  Specifying the format closes this security hole.  Therefore "
6253 "you should think about replacing calls to this function with calls to "
6254 "C<guestfs_add_drive_opts>, and specifying the format."
6255 msgstr ""
6256
6257 #. type: =head2
6258 #: ../src/guestfs-actions.pod:138
6259 msgid "guestfs_add_drive_opts"
6260 msgstr ""
6261
6262 #. type: verbatim
6263 #: ../src/guestfs-actions.pod:140
6264 #, no-wrap
6265 msgid ""
6266 " int\n"
6267 " guestfs_add_drive_opts (guestfs_h *g,\n"
6268 "                         const char *filename,\n"
6269 "                         ...);\n"
6270 "\n"
6271 msgstr ""
6272
6273 #. type: verbatim
6274 #: ../src/guestfs-actions.pod:150
6275 #, no-wrap
6276 msgid ""
6277 " GUESTFS_ADD_DRIVE_OPTS_READONLY, int readonly,\n"
6278 " GUESTFS_ADD_DRIVE_OPTS_FORMAT, const char *format,\n"
6279 " GUESTFS_ADD_DRIVE_OPTS_IFACE, const char *iface,\n"
6280 "\n"
6281 msgstr ""
6282
6283 #. type: textblock
6284 #: ../src/guestfs-actions.pod:154 ../fish/guestfish-actions.pod:97
6285 msgid ""
6286 "This function adds a virtual machine disk image C<filename> to libguestfs.  "
6287 "The first time you call this function, the disk appears as C</dev/sda>, the "
6288 "second time as C</dev/sdb>, and so on."
6289 msgstr ""
6290
6291 #. type: textblock
6292 #: ../src/guestfs-actions.pod:159 ../fish/guestfish-actions.pod:102
6293 msgid ""
6294 "You don't necessarily need to be root when using libguestfs.  However you "
6295 "obviously do need sufficient permissions to access the filename for whatever "
6296 "operations you want to perform (ie. read access if you just want to read the "
6297 "image or write access if you want to modify the image)."
6298 msgstr ""
6299
6300 #. type: textblock
6301 #: ../src/guestfs-actions.pod:165 ../fish/guestfish-actions.pod:108
6302 msgid "This call checks that C<filename> exists."
6303 msgstr ""
6304
6305 #. type: textblock
6306 #: ../src/guestfs-actions.pod:167 ../src/guestfs-actions.pod:4478
6307 #: ../fish/guestfish-actions.pod:110 ../fish/guestfish-actions.pod:3043
6308 msgid "The optional arguments are:"
6309 msgstr ""
6310
6311 #. type: =item
6312 #: ../src/guestfs-actions.pod:171 ../fish/guestfish-actions.pod:114
6313 msgid "C<readonly>"
6314 msgstr "C<readonly>"
6315
6316 #. type: textblock
6317 #: ../src/guestfs-actions.pod:173 ../fish/guestfish-actions.pod:116
6318 msgid ""
6319 "If true then the image is treated as read-only.  Writes are still allowed, "
6320 "but they are stored in a temporary snapshot overlay which is discarded at "
6321 "the end.  The disk that you add is not modified."
6322 msgstr ""
6323
6324 #. type: =item
6325 #: ../src/guestfs-actions.pod:177 ../fish/guestfish-actions.pod:120
6326 msgid "C<format>"
6327 msgstr "C<format>"
6328
6329 #. type: textblock
6330 #: ../src/guestfs-actions.pod:179
6331 msgid ""
6332 "This forces the image format.  If you omit this (or use C<guestfs_add_drive> "
6333 "or C<guestfs_add_drive_ro>) then the format is automatically detected.  "
6334 "Possible formats include C<raw> and C<qcow2>."
6335 msgstr ""
6336
6337 #. type: textblock
6338 #: ../src/guestfs-actions.pod:183 ../fish/guestfish-actions.pod:126
6339 msgid ""
6340 "Automatic detection of the format opens you up to a potential security hole "
6341 "when dealing with untrusted raw-format images.  See CVE-2010-3851 and "
6342 "RHBZ#642934.  Specifying the format closes this security hole."
6343 msgstr ""
6344
6345 #. type: =item
6346 #: ../src/guestfs-actions.pod:188 ../fish/guestfish-actions.pod:131
6347 msgid "C<iface>"
6348 msgstr "C<iface>"
6349
6350 #. type: textblock
6351 #: ../src/guestfs-actions.pod:190
6352 msgid ""
6353 "This rarely-used option lets you emulate the behaviour of the deprecated "
6354 "C<guestfs_add_drive_with_if> call (q.v.)"
6355 msgstr ""
6356
6357 #. type: textblock
6358 #: ../src/guestfs-actions.pod:197
6359 msgid "(Added in 1.5.23)"
6360 msgstr ""
6361
6362 #. type: =head2
6363 #: ../src/guestfs-actions.pod:199
6364 msgid "guestfs_add_drive_opts_va"
6365 msgstr ""
6366
6367 #. type: verbatim
6368 #: ../src/guestfs-actions.pod:201
6369 #, no-wrap
6370 msgid ""
6371 " int\n"
6372 " guestfs_add_drive_opts_va (guestfs_h *g,\n"
6373 "                            const char *filename,\n"
6374 "                            va_list args);\n"
6375 "\n"
6376 msgstr ""
6377
6378 #. type: textblock
6379 #: ../src/guestfs-actions.pod:206
6380 msgid "This is the \"va_list variant\" of L</guestfs_add_drive_opts>."
6381 msgstr ""
6382
6383 #. type: =head2
6384 #: ../src/guestfs-actions.pod:210
6385 msgid "guestfs_add_drive_opts_argv"
6386 msgstr ""
6387
6388 #. type: verbatim
6389 #: ../src/guestfs-actions.pod:212
6390 #, no-wrap
6391 msgid ""
6392 " int\n"
6393 " guestfs_add_drive_opts_argv (guestfs_h *g,\n"
6394 "                              const char *filename,\n"
6395 "                              const struct guestfs_add_drive_opts_argv *optargs);\n"
6396 "\n"
6397 msgstr ""
6398
6399 #. type: textblock
6400 #: ../src/guestfs-actions.pod:217
6401 msgid "This is the \"argv variant\" of L</guestfs_add_drive_opts>."
6402 msgstr ""
6403
6404 #. type: =head2
6405 #: ../src/guestfs-actions.pod:221
6406 msgid "guestfs_add_drive_ro"
6407 msgstr ""
6408
6409 #. type: verbatim
6410 #: ../src/guestfs-actions.pod:223
6411 #, no-wrap
6412 msgid ""
6413 " int\n"
6414 " guestfs_add_drive_ro (guestfs_h *g,\n"
6415 "                       const char *filename);\n"
6416 "\n"
6417 msgstr ""
6418
6419 #. type: textblock
6420 #: ../src/guestfs-actions.pod:227
6421 msgid ""
6422 "This function is the equivalent of calling C<guestfs_add_drive_opts> with "
6423 "the optional parameter C<GUESTFS_ADD_DRIVE_OPTS_READONLY> set to 1, so the "
6424 "disk is added read-only, with the format being detected automatically."
6425 msgstr ""
6426
6427 #. type: textblock
6428 #: ../src/guestfs-actions.pod:234
6429 msgid "(Added in 1.0.38)"
6430 msgstr ""
6431
6432 #. type: =head2
6433 #: ../src/guestfs-actions.pod:236
6434 msgid "guestfs_add_drive_ro_with_if"
6435 msgstr ""
6436
6437 #. type: verbatim
6438 #: ../src/guestfs-actions.pod:238
6439 #, no-wrap
6440 msgid ""
6441 " int\n"
6442 " guestfs_add_drive_ro_with_if (guestfs_h *g,\n"
6443 "                               const char *filename,\n"
6444 "                               const char *iface);\n"
6445 "\n"
6446 msgstr ""
6447
6448 #. type: textblock
6449 #: ../src/guestfs-actions.pod:243
6450 msgid ""
6451 "This is the same as C<guestfs_add_drive_ro> but it allows you to specify the "
6452 "QEMU interface emulation to use at run time."
6453 msgstr ""
6454
6455 #. type: textblock
6456 #: ../src/guestfs-actions.pod:255 ../src/guestfs-actions.pod:276
6457 #: ../src/guestfs-actions.pod:2380
6458 msgid "(Added in 1.0.84)"
6459 msgstr ""
6460
6461 #. type: =head2
6462 #: ../src/guestfs-actions.pod:257
6463 msgid "guestfs_add_drive_with_if"
6464 msgstr ""
6465
6466 #. type: verbatim
6467 #: ../src/guestfs-actions.pod:259
6468 #, no-wrap
6469 msgid ""
6470 " int\n"
6471 " guestfs_add_drive_with_if (guestfs_h *g,\n"
6472 "                            const char *filename,\n"
6473 "                            const char *iface);\n"
6474 "\n"
6475 msgstr ""
6476
6477 #. type: textblock
6478 #: ../src/guestfs-actions.pod:264
6479 msgid ""
6480 "This is the same as C<guestfs_add_drive> but it allows you to specify the "
6481 "QEMU interface emulation to use at run time."
6482 msgstr ""
6483
6484 #. type: =head2
6485 #: ../src/guestfs-actions.pod:278
6486 msgid "guestfs_aug_clear"
6487 msgstr ""
6488
6489 #. type: verbatim
6490 #: ../src/guestfs-actions.pod:280
6491 #, no-wrap
6492 msgid ""
6493 " int\n"
6494 " guestfs_aug_clear (guestfs_h *g,\n"
6495 "                    const char *augpath);\n"
6496 "\n"
6497 msgstr ""
6498
6499 #. type: textblock
6500 #: ../src/guestfs-actions.pod:284 ../fish/guestfish-actions.pod:183
6501 msgid ""
6502 "Set the value associated with C<path> to C<NULL>.  This is the same as the "
6503 "L<augtool(1)> C<clear> command."
6504 msgstr ""
6505
6506 #. type: textblock
6507 #: ../src/guestfs-actions.pod:289 ../src/guestfs-actions.pod:2108
6508 msgid "(Added in 1.3.4)"
6509 msgstr ""
6510
6511 #. type: =head2
6512 #: ../src/guestfs-actions.pod:291
6513 msgid "guestfs_aug_close"
6514 msgstr ""
6515
6516 #. type: verbatim
6517 #: ../src/guestfs-actions.pod:293
6518 #, no-wrap
6519 msgid ""
6520 " int\n"
6521 " guestfs_aug_close (guestfs_h *g);\n"
6522 "\n"
6523 msgstr ""
6524
6525 #. type: textblock
6526 #: ../src/guestfs-actions.pod:296
6527 msgid ""
6528 "Close the current Augeas handle and free up any resources used by it.  After "
6529 "calling this, you have to call C<guestfs_aug_init> again before you can use "
6530 "any other Augeas functions."
6531 msgstr ""
6532
6533 #. type: textblock
6534 #: ../src/guestfs-actions.pod:303 ../src/guestfs-actions.pod:328
6535 #: ../src/guestfs-actions.pod:346 ../src/guestfs-actions.pod:360
6536 #: ../src/guestfs-actions.pod:423 ../src/guestfs-actions.pod:443
6537 #: ../src/guestfs-actions.pod:457 ../src/guestfs-actions.pod:488
6538 #: ../src/guestfs-actions.pod:502 ../src/guestfs-actions.pod:516
6539 #: ../src/guestfs-actions.pod:530 ../src/guestfs-actions.pod:548
6540 #: ../src/guestfs-actions.pod:5520
6541 msgid "(Added in 0.7)"
6542 msgstr ""
6543
6544 #. type: =head2
6545 #: ../src/guestfs-actions.pod:305
6546 msgid "guestfs_aug_defnode"
6547 msgstr ""
6548
6549 #. type: verbatim
6550 #: ../src/guestfs-actions.pod:307
6551 #, no-wrap
6552 msgid ""
6553 " struct guestfs_int_bool *\n"
6554 " guestfs_aug_defnode (guestfs_h *g,\n"
6555 "                      const char *name,\n"
6556 "                      const char *expr,\n"
6557 "                      const char *val);\n"
6558 "\n"
6559 msgstr ""
6560
6561 #. type: textblock
6562 #: ../src/guestfs-actions.pod:313 ../fish/guestfish-actions.pod:199
6563 msgid ""
6564 "Defines a variable C<name> whose value is the result of evaluating C<expr>."
6565 msgstr ""
6566
6567 #. type: textblock
6568 #: ../src/guestfs-actions.pod:316
6569 msgid ""
6570 "If C<expr> evaluates to an empty nodeset, a node is created, equivalent to "
6571 "calling C<guestfs_aug_set> C<expr>, C<value>.  C<name> will be the nodeset "
6572 "containing that single node."
6573 msgstr ""
6574
6575 #. type: textblock
6576 #: ../src/guestfs-actions.pod:320 ../fish/guestfish-actions.pod:206
6577 msgid ""
6578 "On success this returns a pair containing the number of nodes in the "
6579 "nodeset, and a boolean flag if a node was created."
6580 msgstr ""
6581
6582 #. type: textblock
6583 #: ../src/guestfs-actions.pod:324
6584 msgid ""
6585 "This function returns a C<struct guestfs_int_bool *>, or NULL if there was "
6586 "an error.  I<The caller must call C<guestfs_free_int_bool> after use>."
6587 msgstr ""
6588
6589 #. type: =head2
6590 #: ../src/guestfs-actions.pod:330
6591 msgid "guestfs_aug_defvar"
6592 msgstr ""
6593
6594 #. type: verbatim
6595 #: ../src/guestfs-actions.pod:332
6596 #, no-wrap
6597 msgid ""
6598 " int\n"
6599 " guestfs_aug_defvar (guestfs_h *g,\n"
6600 "                     const char *name,\n"
6601 "                     const char *expr);\n"
6602 "\n"
6603 msgstr ""
6604
6605 #. type: textblock
6606 #: ../src/guestfs-actions.pod:337 ../fish/guestfish-actions.pod:214
6607 msgid ""
6608 "Defines an Augeas variable C<name> whose value is the result of evaluating "
6609 "C<expr>.  If C<expr> is NULL, then C<name> is undefined."
6610 msgstr ""
6611
6612 #. type: textblock
6613 #: ../src/guestfs-actions.pod:341 ../fish/guestfish-actions.pod:218
6614 msgid ""
6615 "On success this returns the number of nodes in C<expr>, or C<0> if C<expr> "
6616 "evaluates to something which is not a nodeset."
6617 msgstr ""
6618
6619 #. type: =head2
6620 #: ../src/guestfs-actions.pod:348
6621 msgid "guestfs_aug_get"
6622 msgstr ""
6623
6624 #. type: verbatim
6625 #: ../src/guestfs-actions.pod:350
6626 #, no-wrap
6627 msgid ""
6628 " char *\n"
6629 " guestfs_aug_get (guestfs_h *g,\n"
6630 "                  const char *augpath);\n"
6631 "\n"
6632 msgstr ""
6633
6634 #. type: textblock
6635 #: ../src/guestfs-actions.pod:354 ../fish/guestfish-actions.pod:225
6636 msgid ""
6637 "Look up the value associated with C<path>.  If C<path> matches exactly one "
6638 "node, the C<value> is returned."
6639 msgstr ""
6640
6641 #. type: textblock
6642 #: ../src/guestfs-actions.pod:357 ../src/guestfs-actions.pod:862
6643 #: ../src/guestfs-actions.pod:880 ../src/guestfs-actions.pod:940
6644 #: ../src/guestfs-actions.pod:956 ../src/guestfs-actions.pod:1059
6645 #: ../src/guestfs-actions.pod:1189 ../src/guestfs-actions.pod:1206
6646 #: ../src/guestfs-actions.pod:1225 ../src/guestfs-actions.pod:1359
6647 #: ../src/guestfs-actions.pod:1547 ../src/guestfs-actions.pod:1659
6648 #: ../src/guestfs-actions.pod:1822 ../src/guestfs-actions.pod:1839
6649 #: ../src/guestfs-actions.pod:1906 ../src/guestfs-actions.pod:1940
6650 #: ../src/guestfs-actions.pod:1961 ../src/guestfs-actions.pod:2131
6651 #: ../src/guestfs-actions.pod:2345 ../src/guestfs-actions.pod:2552
6652 #: ../src/guestfs-actions.pod:2645 ../src/guestfs-actions.pod:2756
6653 #: ../src/guestfs-actions.pod:2776 ../src/guestfs-actions.pod:2896
6654 #: ../src/guestfs-actions.pod:2927 ../src/guestfs-actions.pod:2951
6655 #: ../src/guestfs-actions.pod:2988 ../src/guestfs-actions.pod:3048
6656 #: ../src/guestfs-actions.pod:3071 ../src/guestfs-actions.pod:3092
6657 #: ../src/guestfs-actions.pod:3664 ../src/guestfs-actions.pod:4014
6658 #: ../src/guestfs-actions.pod:4184 ../src/guestfs-actions.pod:4294
6659 #: ../src/guestfs-actions.pod:5055 ../src/guestfs-actions.pod:5248
6660 #: ../src/guestfs-actions.pod:5418 ../src/guestfs-actions.pod:5596
6661 #: ../src/guestfs-actions.pod:5645 ../src/guestfs-actions.pod:6278
6662 #: ../src/guestfs-actions.pod:6294 ../src/guestfs-actions.pod:6311
6663 #: ../src/guestfs-actions.pod:6342 ../src/guestfs-actions.pod:7016
6664 #: ../src/guestfs-actions.pod:7035 ../src/guestfs-actions.pod:7053
6665 #: ../src/guestfs-actions.pod:7233 ../src/guestfs-actions.pod:7512
6666 msgid ""
6667 "This function returns a string, or NULL on error.  I<The caller must free "
6668 "the returned string after use>."
6669 msgstr ""
6670
6671 #. type: =head2
6672 #: ../src/guestfs-actions.pod:362
6673 msgid "guestfs_aug_init"
6674 msgstr ""
6675
6676 #. type: verbatim
6677 #: ../src/guestfs-actions.pod:364
6678 #, no-wrap
6679 msgid ""
6680 " int\n"
6681 " guestfs_aug_init (guestfs_h *g,\n"
6682 "                   const char *root,\n"
6683 "                   int flags);\n"
6684 "\n"
6685 msgstr ""
6686
6687 #. type: textblock
6688 #: ../src/guestfs-actions.pod:369 ../fish/guestfish-actions.pod:232
6689 msgid ""
6690 "Create a new Augeas handle for editing configuration files.  If there was "
6691 "any previous Augeas handle associated with this guestfs session, then it is "
6692 "closed."
6693 msgstr ""
6694
6695 #. type: textblock
6696 #: ../src/guestfs-actions.pod:373
6697 msgid "You must call this before using any other C<guestfs_aug_*> commands."
6698 msgstr ""
6699
6700 #. type: textblock
6701 #: ../src/guestfs-actions.pod:376 ../fish/guestfish-actions.pod:239
6702 msgid ""
6703 "C<root> is the filesystem root.  C<root> must not be NULL, use C</> instead."
6704 msgstr ""
6705
6706 #. type: textblock
6707 #: ../src/guestfs-actions.pod:379 ../fish/guestfish-actions.pod:242
6708 msgid ""
6709 "The flags are the same as the flags defined in E<lt>augeas.hE<gt>, the "
6710 "logical I<or> of the following integers:"
6711 msgstr ""
6712
6713 #. type: =item
6714 #: ../src/guestfs-actions.pod:385 ../fish/guestfish-actions.pod:248
6715 msgid "C<AUG_SAVE_BACKUP> = 1"
6716 msgstr "C<AUG_SAVE_BACKUP> = 1"
6717
6718 #. type: textblock
6719 #: ../src/guestfs-actions.pod:387 ../fish/guestfish-actions.pod:250
6720 msgid "Keep the original file with a C<.augsave> extension."
6721 msgstr ""
6722
6723 #. type: =item
6724 #: ../src/guestfs-actions.pod:389 ../fish/guestfish-actions.pod:252
6725 msgid "C<AUG_SAVE_NEWFILE> = 2"
6726 msgstr "C<AUG_SAVE_NEWFILE> = 2"
6727
6728 #. type: textblock
6729 #: ../src/guestfs-actions.pod:391 ../fish/guestfish-actions.pod:254
6730 msgid ""
6731 "Save changes into a file with extension C<.augnew>, and do not overwrite "
6732 "original.  Overrides C<AUG_SAVE_BACKUP>."
6733 msgstr ""
6734
6735 #. type: =item
6736 #: ../src/guestfs-actions.pod:394 ../fish/guestfish-actions.pod:257
6737 msgid "C<AUG_TYPE_CHECK> = 4"
6738 msgstr "C<AUG_TYPE_CHECK> = 4"
6739
6740 #. type: textblock
6741 #: ../src/guestfs-actions.pod:396 ../fish/guestfish-actions.pod:259
6742 msgid "Typecheck lenses."
6743 msgstr ""
6744
6745 #. type: textblock
6746 #: ../src/guestfs-actions.pod:398
6747 msgid ""
6748 "This option is only useful when debugging Augeas lenses.  Use of this option "
6749 "may require additional memory for the libguestfs appliance.  You may need to "
6750 "set the C<LIBGUESTFS_MEMSIZE> environment variable or call "
6751 "C<guestfs_set_memsize>."
6752 msgstr ""
6753
6754 #. type: =item
6755 #: ../src/guestfs-actions.pod:403 ../fish/guestfish-actions.pod:266
6756 msgid "C<AUG_NO_STDINC> = 8"
6757 msgstr "C<AUG_NO_STDINC> = 8"
6758
6759 #. type: textblock
6760 #: ../src/guestfs-actions.pod:405 ../fish/guestfish-actions.pod:268
6761 msgid "Do not use standard load path for modules."
6762 msgstr ""
6763
6764 #. type: =item
6765 #: ../src/guestfs-actions.pod:407 ../fish/guestfish-actions.pod:270
6766 msgid "C<AUG_SAVE_NOOP> = 16"
6767 msgstr "C<AUG_SAVE_NOOP> = 16"
6768
6769 #. type: textblock
6770 #: ../src/guestfs-actions.pod:409 ../fish/guestfish-actions.pod:272
6771 msgid "Make save a no-op, just record what would have been changed."
6772 msgstr ""
6773
6774 #. type: =item
6775 #: ../src/guestfs-actions.pod:411 ../fish/guestfish-actions.pod:274
6776 msgid "C<AUG_NO_LOAD> = 32"
6777 msgstr "C<AUG_NO_LOAD> = 32"
6778
6779 #. type: textblock
6780 #: ../src/guestfs-actions.pod:413
6781 msgid "Do not load the tree in C<guestfs_aug_init>."
6782 msgstr ""
6783
6784 #. type: textblock
6785 #: ../src/guestfs-actions.pod:417
6786 msgid "To close the handle, you can call C<guestfs_aug_close>."
6787 msgstr ""
6788
6789 #. type: textblock
6790 #: ../src/guestfs-actions.pod:419 ../fish/guestfish-actions.pod:282
6791 msgid "To find out more about Augeas, see L<http://augeas.net/>."
6792 msgstr ""
6793
6794 #. type: =head2
6795 #: ../src/guestfs-actions.pod:425
6796 msgid "guestfs_aug_insert"
6797 msgstr ""
6798
6799 #. type: verbatim
6800 #: ../src/guestfs-actions.pod:427
6801 #, no-wrap
6802 msgid ""
6803 " int\n"
6804 " guestfs_aug_insert (guestfs_h *g,\n"
6805 "                     const char *augpath,\n"
6806 "                     const char *label,\n"
6807 "                     int before);\n"
6808 "\n"
6809 msgstr ""
6810
6811 #. type: textblock
6812 #: ../src/guestfs-actions.pod:433 ../fish/guestfish-actions.pod:288
6813 msgid ""
6814 "Create a new sibling C<label> for C<path>, inserting it into the tree before "
6815 "or after C<path> (depending on the boolean flag C<before>)."
6816 msgstr ""
6817
6818 #. type: textblock
6819 #: ../src/guestfs-actions.pod:437 ../fish/guestfish-actions.pod:292
6820 msgid ""
6821 "C<path> must match exactly one existing node in the tree, and C<label> must "
6822 "be a label, ie. not contain C</>, C<*> or end with a bracketed index C<[N]>."
6823 msgstr ""
6824
6825 #. type: =head2
6826 #: ../src/guestfs-actions.pod:445
6827 msgid "guestfs_aug_load"
6828 msgstr ""
6829
6830 #. type: verbatim
6831 #: ../src/guestfs-actions.pod:447
6832 #, no-wrap
6833 msgid ""
6834 " int\n"
6835 " guestfs_aug_load (guestfs_h *g);\n"
6836 "\n"
6837 msgstr ""
6838
6839 #. type: textblock
6840 #: ../src/guestfs-actions.pod:450 ../fish/guestfish-actions.pod:300
6841 msgid "Load files into the tree."
6842 msgstr "Завантажити файли до ієрархії."
6843
6844 #. type: textblock
6845 #: ../src/guestfs-actions.pod:452 ../fish/guestfish-actions.pod:302
6846 msgid "See C<aug_load> in the Augeas documentation for the full gory details."
6847 msgstr ""
6848
6849 #. type: =head2
6850 #: ../src/guestfs-actions.pod:459
6851 msgid "guestfs_aug_ls"
6852 msgstr ""
6853
6854 #. type: verbatim
6855 #: ../src/guestfs-actions.pod:461
6856 #, no-wrap
6857 msgid ""
6858 " char **\n"
6859 " guestfs_aug_ls (guestfs_h *g,\n"
6860 "                 const char *augpath);\n"
6861 "\n"
6862 msgstr ""
6863
6864 #. type: textblock
6865 #: ../src/guestfs-actions.pod:465
6866 msgid ""
6867 "This is just a shortcut for listing C<guestfs_aug_match> C<path/*> and "
6868 "sorting the resulting nodes into alphabetical order."
6869 msgstr ""
6870
6871 #. type: textblock
6872 #: ../src/guestfs-actions.pod:468 ../src/guestfs-actions.pod:484
6873 #: ../src/guestfs-actions.pod:630 ../src/guestfs-actions.pod:1078
6874 #: ../src/guestfs-actions.pod:1374 ../src/guestfs-actions.pod:1393
6875 #: ../src/guestfs-actions.pod:1496 ../src/guestfs-actions.pod:1515
6876 #: ../src/guestfs-actions.pod:1761 ../src/guestfs-actions.pod:2203
6877 #: ../src/guestfs-actions.pod:2219 ../src/guestfs-actions.pod:2238
6878 #: ../src/guestfs-actions.pod:2303 ../src/guestfs-actions.pod:2327
6879 #: ../src/guestfs-actions.pod:2398 ../src/guestfs-actions.pod:2447
6880 #: ../src/guestfs-actions.pod:2714 ../src/guestfs-actions.pod:3005
6881 #: ../src/guestfs-actions.pod:3294 ../src/guestfs-actions.pod:3584
6882 #: ../src/guestfs-actions.pod:3646 ../src/guestfs-actions.pod:3751
6883 #: ../src/guestfs-actions.pod:4156 ../src/guestfs-actions.pod:4861
6884 #: ../src/guestfs-actions.pod:5390 ../src/guestfs-actions.pod:5516
6885 #: ../src/guestfs-actions.pod:5630 ../src/guestfs-actions.pod:6358
6886 #: ../src/guestfs-actions.pod:6419 ../src/guestfs-actions.pod:6474
6887 #: ../src/guestfs-actions.pod:6620 ../src/guestfs-actions.pod:6644
6888 #: ../src/guestfs-actions.pod:7126 ../src/guestfs-actions.pod:7146
6889 #: ../src/guestfs-actions.pod:7193 ../src/guestfs-actions.pod:7365
6890 #: ../src/guestfs-actions.pod:7384 ../src/guestfs-actions.pod:7469
6891 #: ../src/guestfs-actions.pod:7488 ../src/guestfs-actions.pod:7534
6892 #: ../src/guestfs-actions.pod:7553
6893 msgid ""
6894 "This function returns a NULL-terminated array of strings (like L<environ(3)"
6895 ">), or NULL if there was an error.  I<The caller must free the strings and "
6896 "the array after use>."
6897 msgstr ""
6898
6899 #. type: textblock
6900 #: ../src/guestfs-actions.pod:472 ../src/guestfs-actions.pod:1003
6901 #: ../src/guestfs-actions.pod:1021 ../src/guestfs-actions.pod:1431
6902 #: ../src/guestfs-actions.pod:3372 ../src/guestfs-actions.pod:3403
6903 #: ../src/guestfs-actions.pod:3997 ../src/guestfs-actions.pod:4047
6904 #: ../src/guestfs-actions.pod:4234 ../src/guestfs-actions.pod:4267
6905 #: ../src/guestfs-actions.pod:4430 ../src/guestfs-actions.pod:4865
6906 #: ../src/guestfs-actions.pod:5331 ../src/guestfs-actions.pod:5726
6907 #: ../src/guestfs-actions.pod:5740 ../src/guestfs-actions.pod:5752
6908 #: ../src/guestfs-actions.pod:6199 ../src/guestfs-actions.pod:6858
6909 #: ../src/guestfs-actions.pod:6871 ../src/guestfs-actions.pod:7110
6910 #: ../src/guestfs-actions.pod:7353
6911 msgid "(Added in 0.8)"
6912 msgstr ""
6913
6914 #. type: =head2
6915 #: ../src/guestfs-actions.pod:474
6916 msgid "guestfs_aug_match"
6917 msgstr ""
6918
6919 #. type: verbatim
6920 #: ../src/guestfs-actions.pod:476
6921 #, no-wrap
6922 msgid ""
6923 " char **\n"
6924 " guestfs_aug_match (guestfs_h *g,\n"
6925 "                    const char *augpath);\n"
6926 "\n"
6927 msgstr ""
6928
6929 #. type: textblock
6930 #: ../src/guestfs-actions.pod:480 ../fish/guestfish-actions.pod:316
6931 msgid ""
6932 "Returns a list of paths which match the path expression C<path>.  The "
6933 "returned paths are sufficiently qualified so that they match exactly one "
6934 "node in the current tree."
6935 msgstr ""
6936
6937 #. type: =head2
6938 #: ../src/guestfs-actions.pod:490
6939 msgid "guestfs_aug_mv"
6940 msgstr ""
6941
6942 #. type: verbatim
6943 #: ../src/guestfs-actions.pod:492
6944 #, no-wrap
6945 msgid ""
6946 " int\n"
6947 " guestfs_aug_mv (guestfs_h *g,\n"
6948 "                 const char *src,\n"
6949 "                 const char *dest);\n"
6950 "\n"
6951 msgstr ""
6952
6953 #. type: textblock
6954 #: ../src/guestfs-actions.pod:497 ../fish/guestfish-actions.pod:324
6955 msgid ""
6956 "Move the node C<src> to C<dest>.  C<src> must match exactly one node.  "
6957 "C<dest> is overwritten if it exists."
6958 msgstr ""
6959
6960 #. type: =head2
6961 #: ../src/guestfs-actions.pod:504
6962 msgid "guestfs_aug_rm"
6963 msgstr ""
6964
6965 #. type: verbatim
6966 #: ../src/guestfs-actions.pod:506
6967 #, no-wrap
6968 msgid ""
6969 " int\n"
6970 " guestfs_aug_rm (guestfs_h *g,\n"
6971 "                 const char *augpath);\n"
6972 "\n"
6973 msgstr ""
6974
6975 #. type: textblock
6976 #: ../src/guestfs-actions.pod:510 ../fish/guestfish-actions.pod:331
6977 msgid "Remove C<path> and all of its children."
6978 msgstr ""
6979
6980 #. type: textblock
6981 #: ../src/guestfs-actions.pod:512 ../fish/guestfish-actions.pod:333
6982 msgid "On success this returns the number of entries which were removed."
6983 msgstr ""
6984
6985 #. type: =head2
6986 #: ../src/guestfs-actions.pod:518
6987 msgid "guestfs_aug_save"
6988 msgstr ""
6989
6990 #. type: verbatim
6991 #: ../src/guestfs-actions.pod:520
6992 #, no-wrap
6993 msgid ""
6994 " int\n"
6995 " guestfs_aug_save (guestfs_h *g);\n"
6996 "\n"
6997 msgstr ""
6998
6999 #. type: textblock
7000 #: ../src/guestfs-actions.pod:523 ../fish/guestfish-actions.pod:339
7001 msgid "This writes all pending changes to disk."
7002 msgstr ""
7003
7004 #. type: textblock
7005 #: ../src/guestfs-actions.pod:525
7006 msgid ""
7007 "The flags which were passed to C<guestfs_aug_init> affect exactly how files "
7008 "are saved."
7009 msgstr ""
7010
7011 #. type: =head2
7012 #: ../src/guestfs-actions.pod:532
7013 msgid "guestfs_aug_set"
7014 msgstr ""
7015
7016 #. type: verbatim
7017 #: ../src/guestfs-actions.pod:534
7018 #, no-wrap
7019 msgid ""
7020 " int\n"
7021 " guestfs_aug_set (guestfs_h *g,\n"
7022 "                  const char *augpath,\n"
7023 "                  const char *val);\n"
7024 "\n"
7025 msgstr ""
7026
7027 #. type: textblock
7028 #: ../src/guestfs-actions.pod:539 ../fish/guestfish-actions.pod:348
7029 msgid "Set the value associated with C<path> to C<val>."
7030 msgstr ""
7031
7032 #. type: textblock
7033 #: ../src/guestfs-actions.pod:541
7034 msgid ""
7035 "In the Augeas API, it is possible to clear a node by setting the value to "
7036 "NULL.  Due to an oversight in the libguestfs API you cannot do that with "
7037 "this call.  Instead you must use the C<guestfs_aug_clear> call."
7038 msgstr ""
7039
7040 #. type: =head2
7041 #: ../src/guestfs-actions.pod:550
7042 msgid "guestfs_available"
7043 msgstr ""
7044
7045 #. type: verbatim
7046 #: ../src/guestfs-actions.pod:552
7047 #, no-wrap
7048 msgid ""
7049 " int\n"
7050 " guestfs_available (guestfs_h *g,\n"
7051 "                    char *const *groups);\n"
7052 "\n"
7053 msgstr ""
7054
7055 #. type: textblock
7056 #: ../src/guestfs-actions.pod:556 ../fish/guestfish-actions.pod:359
7057 msgid ""
7058 "This command is used to check the availability of some groups of "
7059 "functionality in the appliance, which not all builds of the libguestfs "
7060 "appliance will be able to provide."
7061 msgstr ""
7062
7063 #. type: textblock
7064 #: ../src/guestfs-actions.pod:560
7065 msgid ""
7066 "The libguestfs groups, and the functions that those groups correspond to, "
7067 "are listed in L<guestfs(3)/AVAILABILITY>.  You can also fetch this list at "
7068 "runtime by calling C<guestfs_available_all_groups>."
7069 msgstr ""
7070
7071 #. type: textblock
7072 #: ../src/guestfs-actions.pod:565 ../fish/guestfish-actions.pod:368
7073 msgid ""
7074 "The argument C<groups> is a list of group names, eg: C<[\"inotify\", \"augeas"
7075 "\"]> would check for the availability of the Linux inotify functions and "
7076 "Augeas (configuration file editing) functions."
7077 msgstr ""
7078
7079 #. type: textblock
7080 #: ../src/guestfs-actions.pod:570 ../fish/guestfish-actions.pod:373
7081 msgid "The command returns no error if I<all> requested groups are available."
7082 msgstr ""
7083
7084 #. type: textblock
7085 #: ../src/guestfs-actions.pod:572 ../fish/guestfish-actions.pod:375
7086 msgid ""
7087 "It fails with an error if one or more of the requested groups is unavailable "
7088 "in the appliance."
7089 msgstr ""
7090
7091 #. type: textblock
7092 #: ../src/guestfs-actions.pod:575 ../fish/guestfish-actions.pod:378
7093 msgid ""
7094 "If an unknown group name is included in the list of groups then an error is "
7095 "always returned."
7096 msgstr ""
7097
7098 #. type: textblock
7099 #: ../src/guestfs-actions.pod:578 ../fish/guestfish-actions.pod:381
7100 msgid "I<Notes:>"
7101 msgstr "I<Нотатки:>"
7102
7103 #. type: textblock
7104 #: ../src/guestfs-actions.pod:584
7105 msgid "You must call C<guestfs_launch> before calling this function."
7106 msgstr ""
7107
7108 #. type: textblock
7109 #: ../src/guestfs-actions.pod:586 ../fish/guestfish-actions.pod:389
7110 msgid ""
7111 "The reason is because we don't know what groups are supported by the "
7112 "appliance/daemon until it is running and can be queried."
7113 msgstr ""
7114
7115 #. type: textblock
7116 #: ../src/guestfs-actions.pod:592 ../fish/guestfish-actions.pod:395
7117 msgid ""
7118 "If a group of functions is available, this does not necessarily mean that "
7119 "they will work.  You still have to check for errors when calling individual "
7120 "API functions even if they are available."
7121 msgstr ""
7122
7123 #. type: textblock
7124 #: ../src/guestfs-actions.pod:599 ../fish/guestfish-actions.pod:402
7125 msgid ""
7126 "It is usually the job of distro packagers to build complete functionality "
7127 "into the libguestfs appliance.  Upstream libguestfs, if built from source "
7128 "with all requirements satisfied, will support everything."
7129 msgstr ""
7130
7131 #. type: textblock
7132 #: ../src/guestfs-actions.pod:606
7133 msgid ""
7134 "This call was added in version C<1.0.80>.  In previous versions of "
7135 "libguestfs all you could do would be to speculatively execute a command to "
7136 "find out if the daemon implemented it.  See also C<guestfs_version>."
7137 msgstr ""
7138
7139 #. type: textblock
7140 #: ../src/guestfs-actions.pod:615 ../src/guestfs-actions.pod:1176
7141 msgid "(Added in 1.0.80)"
7142 msgstr ""
7143
7144 #. type: =head2
7145 #: ../src/guestfs-actions.pod:617
7146 msgid "guestfs_available_all_groups"
7147 msgstr ""
7148
7149 #. type: verbatim
7150 #: ../src/guestfs-actions.pod:619
7151 #, no-wrap
7152 msgid ""
7153 " char **\n"
7154 " guestfs_available_all_groups (guestfs_h *g);\n"
7155 "\n"
7156 msgstr ""
7157
7158 #. type: textblock
7159 #: ../src/guestfs-actions.pod:622
7160 msgid ""
7161 "This command returns a list of all optional groups that this daemon knows "
7162 "about.  Note this returns both supported and unsupported groups.  To find "
7163 "out which ones the daemon can actually support you have to call "
7164 "C<guestfs_available> on each member of the returned list."
7165 msgstr ""
7166
7167 #. type: textblock
7168 #: ../src/guestfs-actions.pod:628
7169 msgid "See also C<guestfs_available> and L<guestfs(3)/AVAILABILITY>."
7170 msgstr ""
7171
7172 #. type: textblock
7173 #: ../src/guestfs-actions.pod:634
7174 msgid "(Added in 1.3.15)"
7175 msgstr ""
7176
7177 #. type: =head2
7178 #: ../src/guestfs-actions.pod:636
7179 msgid "guestfs_base64_in"
7180 msgstr ""
7181
7182 #. type: verbatim
7183 #: ../src/guestfs-actions.pod:638
7184 #, no-wrap
7185 msgid ""
7186 " int\n"
7187 " guestfs_base64_in (guestfs_h *g,\n"
7188 "                    const char *base64file,\n"
7189 "                    const char *filename);\n"
7190 "\n"
7191 msgstr ""
7192
7193 #. type: textblock
7194 #: ../src/guestfs-actions.pod:643 ../fish/guestfish-actions.pod:432
7195 msgid ""
7196 "This command uploads base64-encoded data from C<base64file> to C<filename>."
7197 msgstr ""
7198
7199 #. type: textblock
7200 #: ../src/guestfs-actions.pod:648 ../src/guestfs-actions.pod:662
7201 msgid "(Added in 1.3.5)"
7202 msgstr ""
7203
7204 #. type: =head2
7205 #: ../src/guestfs-actions.pod:650
7206 msgid "guestfs_base64_out"
7207 msgstr ""
7208
7209 #. type: verbatim
7210 #: ../src/guestfs-actions.pod:652
7211 #, no-wrap
7212 msgid ""
7213 " int\n"
7214 " guestfs_base64_out (guestfs_h *g,\n"
7215 "                     const char *filename,\n"
7216 "                     const char *base64file);\n"
7217 "\n"
7218 msgstr ""
7219
7220 #. type: textblock
7221 #: ../src/guestfs-actions.pod:657 ../fish/guestfish-actions.pod:441
7222 msgid ""
7223 "This command downloads the contents of C<filename>, writing it out to local "
7224 "file C<base64file> encoded as base64."
7225 msgstr ""
7226
7227 #. type: =head2
7228 #: ../src/guestfs-actions.pod:664
7229 msgid "guestfs_blockdev_flushbufs"
7230 msgstr ""
7231
7232 #. type: verbatim
7233 #: ../src/guestfs-actions.pod:666
7234 #, no-wrap
7235 msgid ""
7236 " int\n"
7237 " guestfs_blockdev_flushbufs (guestfs_h *g,\n"
7238 "                             const char *device);\n"
7239 "\n"
7240 msgstr ""
7241
7242 #. type: textblock
7243 #: ../src/guestfs-actions.pod:670 ../fish/guestfish-actions.pod:450
7244 msgid ""
7245 "This tells the kernel to flush internal buffers associated with C<device>."
7246 msgstr ""
7247
7248 #. type: textblock
7249 #: ../src/guestfs-actions.pod:673 ../src/guestfs-actions.pod:690
7250 #: ../src/guestfs-actions.pod:705 ../src/guestfs-actions.pod:721
7251 #: ../src/guestfs-actions.pod:739 ../src/guestfs-actions.pod:758
7252 #: ../src/guestfs-actions.pod:772 ../src/guestfs-actions.pod:790
7253 #: ../src/guestfs-actions.pod:804 ../src/guestfs-actions.pod:818
7254 #: ../fish/guestfish-actions.pod:453 ../fish/guestfish-actions.pod:464
7255 #: ../fish/guestfish-actions.pod:473 ../fish/guestfish-actions.pod:483
7256 #: ../fish/guestfish-actions.pod:495 ../fish/guestfish-actions.pod:508
7257 #: ../fish/guestfish-actions.pod:516 ../fish/guestfish-actions.pod:527
7258 #: ../fish/guestfish-actions.pod:535 ../fish/guestfish-actions.pod:543
7259 msgid "This uses the L<blockdev(8)> command."
7260 msgstr ""
7261
7262 #. type: textblock
7263 #: ../src/guestfs-actions.pod:677 ../src/guestfs-actions.pod:694
7264 #: ../src/guestfs-actions.pod:709 ../src/guestfs-actions.pod:725
7265 #: ../src/guestfs-actions.pod:743 ../src/guestfs-actions.pod:762
7266 #: ../src/guestfs-actions.pod:776 ../src/guestfs-actions.pod:794
7267 #: ../src/guestfs-actions.pod:808 ../src/guestfs-actions.pod:822
7268 msgid "(Added in 0.9.3)"
7269 msgstr ""
7270
7271 #. type: =head2
7272 #: ../src/guestfs-actions.pod:679
7273 msgid "guestfs_blockdev_getbsz"
7274 msgstr ""
7275
7276 #. type: verbatim
7277 #: ../src/guestfs-actions.pod:681
7278 #, no-wrap
7279 msgid ""
7280 " int\n"
7281 " guestfs_blockdev_getbsz (guestfs_h *g,\n"
7282 "                          const char *device);\n"
7283 "\n"
7284 msgstr ""
7285
7286 #. type: textblock
7287 #: ../src/guestfs-actions.pod:685 ../fish/guestfish-actions.pod:459
7288 msgid "This returns the block size of a device."
7289 msgstr ""
7290
7291 #. type: textblock
7292 #: ../src/guestfs-actions.pod:687 ../src/guestfs-actions.pod:787
7293 #: ../fish/guestfish-actions.pod:461 ../fish/guestfish-actions.pod:524
7294 msgid ""
7295 "(Note this is different from both I<size in blocks> and I<filesystem block "
7296 "size>)."
7297 msgstr ""
7298
7299 #. type: =head2
7300 #: ../src/guestfs-actions.pod:696
7301 msgid "guestfs_blockdev_getro"
7302 msgstr ""
7303
7304 #. type: verbatim
7305 #: ../src/guestfs-actions.pod:698
7306 #, no-wrap
7307 msgid ""
7308 " int\n"
7309 " guestfs_blockdev_getro (guestfs_h *g,\n"
7310 "                         const char *device);\n"
7311 "\n"
7312 msgstr ""
7313
7314 #. type: textblock
7315 #: ../src/guestfs-actions.pod:702 ../fish/guestfish-actions.pod:470
7316 msgid ""
7317 "Returns a boolean indicating if the block device is read-only (true if read-"
7318 "only, false if not)."
7319 msgstr ""
7320
7321 #. type: textblock
7322 #: ../src/guestfs-actions.pod:707 ../src/guestfs-actions.pod:1414
7323 #: ../src/guestfs-actions.pod:1429 ../src/guestfs-actions.pod:1916
7324 #: ../src/guestfs-actions.pod:1927 ../src/guestfs-actions.pod:1999
7325 #: ../src/guestfs-actions.pod:2054 ../src/guestfs-actions.pod:2069
7326 #: ../src/guestfs-actions.pod:2094 ../src/guestfs-actions.pod:2117
7327 #: ../src/guestfs-actions.pod:3112 ../src/guestfs-actions.pod:3129
7328 #: ../src/guestfs-actions.pod:3148 ../src/guestfs-actions.pod:3311
7329 #: ../src/guestfs-actions.pod:3325 ../src/guestfs-actions.pod:3340
7330 #: ../src/guestfs-actions.pod:3354 ../src/guestfs-actions.pod:3370
7331 #: ../src/guestfs-actions.pod:3385 ../src/guestfs-actions.pod:3401
7332 #: ../src/guestfs-actions.pod:3415 ../src/guestfs-actions.pod:3428
7333 #: ../src/guestfs-actions.pod:3442 ../src/guestfs-actions.pod:3457
7334 #: ../src/guestfs-actions.pod:3472 ../src/guestfs-actions.pod:5019
7335 msgid "This function returns a C truth value on success or -1 on error."
7336 msgstr ""
7337
7338 #. type: =head2
7339 #: ../src/guestfs-actions.pod:711
7340 msgid "guestfs_blockdev_getsize64"
7341 msgstr ""
7342
7343 #. type: verbatim
7344 #: ../src/guestfs-actions.pod:713
7345 #, no-wrap
7346 msgid ""
7347 " int64_t\n"
7348 " guestfs_blockdev_getsize64 (guestfs_h *g,\n"
7349 "                             const char *device);\n"
7350 "\n"
7351 msgstr ""
7352
7353 #. type: textblock
7354 #: ../src/guestfs-actions.pod:717 ../fish/guestfish-actions.pod:479
7355 msgid "This returns the size of the device in bytes."
7356 msgstr ""
7357
7358 #. type: textblock
7359 #: ../src/guestfs-actions.pod:719
7360 msgid "See also C<guestfs_blockdev_getsz>."
7361 msgstr ""
7362
7363 #. type: =head2
7364 #: ../src/guestfs-actions.pod:727
7365 msgid "guestfs_blockdev_getss"
7366 msgstr ""
7367
7368 #. type: verbatim
7369 #: ../src/guestfs-actions.pod:729
7370 #, no-wrap
7371 msgid ""
7372 " int\n"
7373 " guestfs_blockdev_getss (guestfs_h *g,\n"
7374 "                         const char *device);\n"
7375 "\n"
7376 msgstr ""
7377
7378 #. type: textblock
7379 #: ../src/guestfs-actions.pod:733 ../fish/guestfish-actions.pod:489
7380 msgid ""
7381 "This returns the size of sectors on a block device.  Usually 512, but can be "
7382 "larger for modern devices."
7383 msgstr ""
7384
7385 #. type: textblock
7386 #: ../src/guestfs-actions.pod:736
7387 msgid ""
7388 "(Note, this is not the size in sectors, use C<guestfs_blockdev_getsz> for "
7389 "that)."
7390 msgstr ""
7391
7392 #. type: =head2
7393 #: ../src/guestfs-actions.pod:745
7394 msgid "guestfs_blockdev_getsz"
7395 msgstr ""
7396
7397 #. type: verbatim
7398 #: ../src/guestfs-actions.pod:747
7399 #, no-wrap
7400 msgid ""
7401 " int64_t\n"
7402 " guestfs_blockdev_getsz (guestfs_h *g,\n"
7403 "                         const char *device);\n"
7404 "\n"
7405 msgstr ""
7406
7407 #. type: textblock
7408 #: ../src/guestfs-actions.pod:751 ../fish/guestfish-actions.pod:501
7409 msgid ""
7410 "This returns the size of the device in units of 512-byte sectors (even if "
7411 "the sectorsize isn't 512 bytes ... weird)."
7412 msgstr ""
7413
7414 #. type: textblock
7415 #: ../src/guestfs-actions.pod:754
7416 msgid ""
7417 "See also C<guestfs_blockdev_getss> for the real sector size of the device, "
7418 "and C<guestfs_blockdev_getsize64> for the more useful I<size in bytes>."
7419 msgstr ""
7420
7421 #. type: =head2
7422 #: ../src/guestfs-actions.pod:764
7423 msgid "guestfs_blockdev_rereadpt"
7424 msgstr ""
7425
7426 #. type: verbatim
7427 #: ../src/guestfs-actions.pod:766
7428 #, no-wrap
7429 msgid ""
7430 " int\n"
7431 " guestfs_blockdev_rereadpt (guestfs_h *g,\n"
7432 "                            const char *device);\n"
7433 "\n"
7434 msgstr ""
7435
7436 #. type: textblock
7437 #: ../src/guestfs-actions.pod:770 ../fish/guestfish-actions.pod:514
7438 msgid "Reread the partition table on C<device>."
7439 msgstr ""
7440
7441 #. type: =head2
7442 #: ../src/guestfs-actions.pod:778
7443 msgid "guestfs_blockdev_setbsz"
7444 msgstr ""
7445
7446 #. type: verbatim
7447 #: ../src/guestfs-actions.pod:780
7448 #, no-wrap
7449 msgid ""
7450 " int\n"
7451 " guestfs_blockdev_setbsz (guestfs_h *g,\n"
7452 "                          const char *device,\n"
7453 "                          int blocksize);\n"
7454 "\n"
7455 msgstr ""
7456
7457 #. type: textblock
7458 #: ../src/guestfs-actions.pod:785 ../fish/guestfish-actions.pod:522
7459 msgid "This sets the block size of a device."
7460 msgstr ""
7461
7462 #. type: =head2
7463 #: ../src/guestfs-actions.pod:796
7464 msgid "guestfs_blockdev_setro"
7465 msgstr ""
7466
7467 #. type: verbatim
7468 #: ../src/guestfs-actions.pod:798
7469 #, no-wrap
7470 msgid ""
7471 " int\n"
7472 " guestfs_blockdev_setro (guestfs_h *g,\n"
7473 "                         const char *device);\n"
7474 "\n"
7475 msgstr ""
7476
7477 #. type: textblock
7478 #: ../src/guestfs-actions.pod:802 ../fish/guestfish-actions.pod:533
7479 msgid "Sets the block device named C<device> to read-only."
7480 msgstr ""
7481
7482 #. type: =head2
7483 #: ../src/guestfs-actions.pod:810
7484 msgid "guestfs_blockdev_setrw"
7485 msgstr ""
7486
7487 #. type: verbatim
7488 #: ../src/guestfs-actions.pod:812
7489 #, no-wrap
7490 msgid ""
7491 " int\n"
7492 " guestfs_blockdev_setrw (guestfs_h *g,\n"
7493 "                         const char *device);\n"
7494 "\n"
7495 msgstr ""
7496
7497 #. type: textblock
7498 #: ../src/guestfs-actions.pod:816 ../fish/guestfish-actions.pod:541
7499 msgid "Sets the block device named C<device> to read-write."
7500 msgstr ""
7501
7502 #. type: =head2
7503 #: ../src/guestfs-actions.pod:824
7504 msgid "guestfs_case_sensitive_path"
7505 msgstr ""
7506
7507 #. type: verbatim
7508 #: ../src/guestfs-actions.pod:826
7509 #, no-wrap
7510 msgid ""
7511 " char *\n"
7512 " guestfs_case_sensitive_path (guestfs_h *g,\n"
7513 "                              const char *path);\n"
7514 "\n"
7515 msgstr ""
7516
7517 #. type: textblock
7518 #: ../src/guestfs-actions.pod:830 ../fish/guestfish-actions.pod:549
7519 msgid ""
7520 "This can be used to resolve case insensitive paths on a filesystem which is "
7521 "case sensitive.  The use case is to resolve paths which you have read from "
7522 "Windows configuration files or the Windows Registry, to the true path."
7523 msgstr ""
7524
7525 #. type: textblock
7526 #: ../src/guestfs-actions.pod:835 ../fish/guestfish-actions.pod:554
7527 msgid ""
7528 "The command handles a peculiarity of the Linux ntfs-3g filesystem driver "
7529 "(and probably others), which is that although the underlying filesystem is "
7530 "case-insensitive, the driver exports the filesystem to Linux as case-"
7531 "sensitive."
7532 msgstr ""
7533
7534 #. type: textblock
7535 #: ../src/guestfs-actions.pod:840 ../fish/guestfish-actions.pod:559
7536 msgid ""
7537 "One consequence of this is that special directories such as C<c:\\windows> "
7538 "may appear as C</WINDOWS> or C</windows> (or other things) depending on the "
7539 "precise details of how they were created.  In Windows itself this would not "
7540 "be a problem."
7541 msgstr ""
7542
7543 #. type: textblock
7544 #: ../src/guestfs-actions.pod:846 ../fish/guestfish-actions.pod:565
7545 msgid ""
7546 "Bug or feature? You decide: L<http://www.tuxera.com/community/ntfs-3g-faq/"
7547 "#posixfilenames1>"
7548 msgstr ""
7549
7550 #. type: textblock
7551 #: ../src/guestfs-actions.pod:849 ../fish/guestfish-actions.pod:568
7552 msgid ""
7553 "This function resolves the true case of each element in the path and returns "
7554 "the case-sensitive path."
7555 msgstr ""
7556
7557 #. type: textblock
7558 #: ../src/guestfs-actions.pod:852
7559 msgid ""
7560 "Thus C<guestfs_case_sensitive_path> (\"/Windows/System32\")  might return C<"
7561 "\"/WINDOWS/system32\"> (the exact return value would depend on details of "
7562 "how the directories were originally created under Windows)."
7563 msgstr ""
7564
7565 #. type: textblock
7566 #: ../src/guestfs-actions.pod:857 ../fish/guestfish-actions.pod:576
7567 msgid "I<Note>: This function does not handle drive names, backslashes etc."
7568 msgstr ""
7569
7570 #. type: textblock
7571 #: ../src/guestfs-actions.pod:860
7572 msgid "See also C<guestfs_realpath>."
7573 msgstr ""
7574
7575 #. type: textblock
7576 #: ../src/guestfs-actions.pod:865 ../src/guestfs-actions.pod:7038
7577 msgid "(Added in 1.0.75)"
7578 msgstr ""
7579
7580 #. type: =head2
7581 #: ../src/guestfs-actions.pod:867
7582 msgid "guestfs_cat"
7583 msgstr ""
7584
7585 #. type: verbatim
7586 #: ../src/guestfs-actions.pod:869
7587 #, no-wrap
7588 msgid ""
7589 " char *\n"
7590 " guestfs_cat (guestfs_h *g,\n"
7591 "              const char *path);\n"
7592 "\n"
7593 msgstr ""
7594
7595 #. type: textblock
7596 #: ../src/guestfs-actions.pod:873 ../src/guestfs-actions.pod:5506
7597 #: ../fish/guestfish-actions.pod:585 ../fish/guestfish-actions.pod:3707
7598 msgid "Return the contents of the file named C<path>."
7599 msgstr ""
7600
7601 #. type: textblock
7602 #: ../src/guestfs-actions.pod:875
7603 msgid ""
7604 "Note that this function cannot correctly handle binary files (specifically, "
7605 "files containing C<\\0> character which is treated as end of string).  For "
7606 "those you need to use the C<guestfs_read_file> or C<guestfs_download> "
7607 "functions which have a more complex interface."
7608 msgstr ""
7609
7610 #. type: textblock
7611 #: ../src/guestfs-actions.pod:883 ../src/guestfs-actions.pod:1062
7612 #: ../src/guestfs-actions.pod:1082 ../src/guestfs-actions.pod:1378
7613 #: ../src/guestfs-actions.pod:1397 ../src/guestfs-actions.pod:1500
7614 #: ../src/guestfs-actions.pod:1519 ../src/guestfs-actions.pod:1765
7615 #: ../src/guestfs-actions.pod:2223 ../src/guestfs-actions.pod:2242
7616 #: ../src/guestfs-actions.pod:2307 ../src/guestfs-actions.pod:2331
7617 #: ../src/guestfs-actions.pod:2348 ../src/guestfs-actions.pod:2377
7618 #: ../src/guestfs-actions.pod:5288 ../src/guestfs-actions.pod:5314
7619 #: ../src/guestfs-actions.pod:5445 ../src/guestfs-actions.pod:5471
7620 #: ../src/guestfs-actions.pod:5495 ../src/guestfs-actions.pod:6423
7621 #: ../src/guestfs-actions.pod:6478 ../src/guestfs-actions.pod:6624
7622 #: ../src/guestfs-actions.pod:6648 ../src/guestfs-actions.pod:7317
7623 #: ../src/guestfs-actions.pod:7343 ../src/guestfs-actions.pod:7369
7624 #: ../src/guestfs-actions.pod:7388 ../src/guestfs-actions.pod:7473
7625 #: ../src/guestfs-actions.pod:7492 ../src/guestfs-actions.pod:7538
7626 #: ../src/guestfs-actions.pod:7557 ../fish/guestfish-actions.pod:592
7627 #: ../fish/guestfish-actions.pod:727 ../fish/guestfish-actions.pod:739
7628 #: ../fish/guestfish-actions.pod:915 ../fish/guestfish-actions.pod:925
7629 #: ../fish/guestfish-actions.pod:992 ../fish/guestfish-actions.pod:1002
7630 #: ../fish/guestfish-actions.pod:1194 ../fish/guestfish-actions.pod:1495
7631 #: ../fish/guestfish-actions.pod:1505 ../fish/guestfish-actions.pod:1555
7632 #: ../fish/guestfish-actions.pod:1570 ../fish/guestfish-actions.pod:1580
7633 #: ../fish/guestfish-actions.pod:1599 ../fish/guestfish-actions.pod:3577
7634 #: ../fish/guestfish-actions.pod:3592 ../fish/guestfish-actions.pod:3668
7635 #: ../fish/guestfish-actions.pod:3685 ../fish/guestfish-actions.pod:3700
7636 #: ../fish/guestfish-actions.pod:4354 ../fish/guestfish-actions.pod:4400
7637 #: ../fish/guestfish-actions.pod:4485 ../fish/guestfish-actions.pod:4500
7638 #: ../fish/guestfish-actions.pod:4910 ../fish/guestfish-actions.pod:4928
7639 #: ../fish/guestfish-actions.pod:4945 ../fish/guestfish-actions.pod:4955
7640 #: ../fish/guestfish-actions.pod:5003 ../fish/guestfish-actions.pod:5013
7641 #: ../fish/guestfish-actions.pod:5042 ../fish/guestfish-actions.pod:5052
7642 msgid ""
7643 "Because of the message protocol, there is a transfer limit of somewhere "
7644 "between 2MB and 4MB.  See L<guestfs(3)/PROTOCOL LIMITS>."
7645 msgstr ""
7646
7647 #. type: textblock
7648 #: ../src/guestfs-actions.pod:886 ../src/guestfs-actions.pod:3588
7649 #: ../src/guestfs-actions.pod:3650 ../src/guestfs-actions.pod:3667
7650 #: ../src/guestfs-actions.pod:3755 ../src/guestfs-actions.pod:4160
7651 #: ../src/guestfs-actions.pod:4174 ../src/guestfs-actions.pod:5394
7652 #: ../src/guestfs-actions.pod:5408 ../src/guestfs-actions.pod:7197
7653 #: ../src/guestfs-actions.pod:7211
7654 msgid "(Added in 0.4)"
7655 msgstr ""
7656
7657 #. type: =head2
7658 #: ../src/guestfs-actions.pod:888
7659 msgid "guestfs_checksum"
7660 msgstr ""
7661
7662 #. type: verbatim
7663 #: ../src/guestfs-actions.pod:890
7664 #, no-wrap
7665 msgid ""
7666 " char *\n"
7667 " guestfs_checksum (guestfs_h *g,\n"
7668 "                   const char *csumtype,\n"
7669 "                   const char *path);\n"
7670 "\n"
7671 msgstr ""
7672
7673 #. type: textblock
7674 #: ../src/guestfs-actions.pod:895 ../fish/guestfish-actions.pod:599
7675 msgid ""
7676 "This call computes the MD5, SHAx or CRC checksum of the file named C<path>."
7677 msgstr ""
7678
7679 #. type: textblock
7680 #: ../src/guestfs-actions.pod:898 ../fish/guestfish-actions.pod:602
7681 msgid ""
7682 "The type of checksum to compute is given by the C<csumtype> parameter which "
7683 "must have one of the following values:"
7684 msgstr ""
7685
7686 #. type: =item
7687 #: ../src/guestfs-actions.pod:903 ../fish/guestfish-actions.pod:607
7688 msgid "C<crc>"
7689 msgstr "C<crc>"
7690
7691 #. type: textblock
7692 #: ../src/guestfs-actions.pod:905 ../fish/guestfish-actions.pod:609
7693 msgid ""
7694 "Compute the cyclic redundancy check (CRC) specified by POSIX for the "
7695 "C<cksum> command."
7696 msgstr ""
7697
7698 #. type: =item
7699 #: ../src/guestfs-actions.pod:908 ../fish/guestfish-actions.pod:612
7700 msgid "C<md5>"
7701 msgstr "C<md5>"
7702
7703 #. type: textblock
7704 #: ../src/guestfs-actions.pod:910 ../fish/guestfish-actions.pod:614
7705 msgid "Compute the MD5 hash (using the C<md5sum> program)."
7706 msgstr ""
7707
7708 #. type: =item
7709 #: ../src/guestfs-actions.pod:912 ../fish/guestfish-actions.pod:616
7710 msgid "C<sha1>"
7711 msgstr "C<sha1>"
7712
7713 #. type: textblock
7714 #: ../src/guestfs-actions.pod:914 ../fish/guestfish-actions.pod:618
7715 msgid "Compute the SHA1 hash (using the C<sha1sum> program)."
7716 msgstr ""
7717
7718 #. type: =item
7719 #: ../src/guestfs-actions.pod:916 ../fish/guestfish-actions.pod:620
7720 msgid "C<sha224>"
7721 msgstr "C<sha224>"
7722
7723 #. type: textblock
7724 #: ../src/guestfs-actions.pod:918 ../fish/guestfish-actions.pod:622
7725 msgid "Compute the SHA224 hash (using the C<sha224sum> program)."
7726 msgstr ""
7727
7728 #. type: =item
7729 #: ../src/guestfs-actions.pod:920 ../fish/guestfish-actions.pod:624
7730 msgid "C<sha256>"
7731 msgstr "C<sha256>"
7732
7733 #. type: textblock
7734 #: ../src/guestfs-actions.pod:922 ../fish/guestfish-actions.pod:626
7735 msgid "Compute the SHA256 hash (using the C<sha256sum> program)."
7736 msgstr ""
7737
7738 #. type: =item
7739 #: ../src/guestfs-actions.pod:924 ../fish/guestfish-actions.pod:628
7740 msgid "C<sha384>"
7741 msgstr "C<sha384>"
7742
7743 #. type: textblock
7744 #: ../src/guestfs-actions.pod:926 ../fish/guestfish-actions.pod:630
7745 msgid "Compute the SHA384 hash (using the C<sha384sum> program)."
7746 msgstr ""
7747
7748 #. type: =item
7749 #: ../src/guestfs-actions.pod:928 ../fish/guestfish-actions.pod:632
7750 msgid "C<sha512>"
7751 msgstr "C<sha512>"
7752
7753 #. type: textblock
7754 #: ../src/guestfs-actions.pod:930 ../fish/guestfish-actions.pod:634
7755 msgid "Compute the SHA512 hash (using the C<sha512sum> program)."
7756 msgstr ""
7757
7758 #. type: textblock
7759 #: ../src/guestfs-actions.pod:934 ../fish/guestfish-actions.pod:638
7760 msgid "The checksum is returned as a printable string."
7761 msgstr ""
7762
7763 #. type: textblock
7764 #: ../src/guestfs-actions.pod:936
7765 msgid "To get the checksum for a device, use C<guestfs_checksum_device>."
7766 msgstr ""
7767
7768 #. type: textblock
7769 #: ../src/guestfs-actions.pod:938
7770 msgid "To get the checksums for many files, use C<guestfs_checksums_out>."
7771 msgstr ""
7772
7773 #. type: textblock
7774 #: ../src/guestfs-actions.pod:943 ../src/guestfs-actions.pod:1251
7775 #: ../src/guestfs-actions.pod:2085 ../src/guestfs-actions.pod:3327
7776 #: ../src/guestfs-actions.pod:3356 ../src/guestfs-actions.pod:3417
7777 #: ../src/guestfs-actions.pod:3444 ../src/guestfs-actions.pod:6894
7778 msgid "(Added in 1.0.2)"
7779 msgstr ""
7780
7781 #. type: =head2
7782 #: ../src/guestfs-actions.pod:945
7783 msgid "guestfs_checksum_device"
7784 msgstr ""
7785
7786 #. type: verbatim
7787 #: ../src/guestfs-actions.pod:947
7788 #, no-wrap
7789 msgid ""
7790 " char *\n"
7791 " guestfs_checksum_device (guestfs_h *g,\n"
7792 "                          const char *csumtype,\n"
7793 "                          const char *device);\n"
7794 "\n"
7795 msgstr ""
7796
7797 #. type: textblock
7798 #: ../src/guestfs-actions.pod:952
7799 msgid ""
7800 "This call computes the MD5, SHAx or CRC checksum of the contents of the "
7801 "device named C<device>.  For the types of checksums supported see the "
7802 "C<guestfs_checksum> command."
7803 msgstr ""
7804
7805 #. type: textblock
7806 #: ../src/guestfs-actions.pod:959 ../src/guestfs-actions.pod:4925
7807 #: ../src/guestfs-actions.pod:4984 ../src/guestfs-actions.pod:5021
7808 #: ../src/guestfs-actions.pod:5039 ../src/guestfs-actions.pod:5215
7809 #: ../src/guestfs-actions.pod:6803 ../src/guestfs-actions.pod:6817
7810 #: ../src/guestfs-actions.pod:7223
7811 msgid "(Added in 1.3.2)"
7812 msgstr ""
7813
7814 #. type: =head2
7815 #: ../src/guestfs-actions.pod:961
7816 msgid "guestfs_checksums_out"
7817 msgstr ""
7818
7819 #. type: verbatim
7820 #: ../src/guestfs-actions.pod:963
7821 #, no-wrap
7822 msgid ""
7823 " int\n"
7824 " guestfs_checksums_out (guestfs_h *g,\n"
7825 "                        const char *csumtype,\n"
7826 "                        const char *directory,\n"
7827 "                        const char *sumsfile);\n"
7828 "\n"
7829 msgstr ""
7830
7831 #. type: textblock
7832 #: ../src/guestfs-actions.pod:969 ../fish/guestfish-actions.pod:656
7833 msgid ""
7834 "This command computes the checksums of all regular files in C<directory> and "
7835 "then emits a list of those checksums to the local output file C<sumsfile>."
7836 msgstr ""
7837
7838 #. type: textblock
7839 #: ../src/guestfs-actions.pod:973 ../fish/guestfish-actions.pod:660
7840 msgid ""
7841 "This can be used for verifying the integrity of a virtual machine.  However "
7842 "to be properly secure you should pay attention to the output of the checksum "
7843 "command (it uses the ones from GNU coreutils).  In particular when the "
7844 "filename is not printable, coreutils uses a special backslash syntax.  For "
7845 "more information, see the GNU coreutils info file."
7846 msgstr ""
7847
7848 #. type: textblock
7849 #: ../src/guestfs-actions.pod:983
7850 msgid "(Added in 1.3.7)"
7851 msgstr ""
7852
7853 #. type: =head2
7854 #: ../src/guestfs-actions.pod:985
7855 msgid "guestfs_chmod"
7856 msgstr ""
7857
7858 #. type: verbatim
7859 #: ../src/guestfs-actions.pod:987
7860 #, no-wrap
7861 msgid ""
7862 " int\n"
7863 " guestfs_chmod (guestfs_h *g,\n"
7864 "                int mode,\n"
7865 "                const char *path);\n"
7866 "\n"
7867 msgstr ""
7868
7869 #. type: textblock
7870 #: ../src/guestfs-actions.pod:992 ../fish/guestfish-actions.pod:674
7871 msgid ""
7872 "Change the mode (permissions) of C<path> to C<mode>.  Only numeric modes are "
7873 "supported."
7874 msgstr ""
7875
7876 #. type: textblock
7877 #: ../src/guestfs-actions.pod:995 ../fish/guestfish-actions.pod:677
7878 msgid ""
7879 "I<Note>: When using this command from guestfish, C<mode> by default would be "
7880 "decimal, unless you prefix it with C<0> to get octal, ie. use C<0700> not "
7881 "C<700>."
7882 msgstr ""
7883
7884 #. type: textblock
7885 #: ../src/guestfs-actions.pod:999 ../src/guestfs-actions.pod:4411
7886 #: ../src/guestfs-actions.pod:4608 ../src/guestfs-actions.pod:4627
7887 #: ../src/guestfs-actions.pod:4646 ../fish/guestfish-actions.pod:681
7888 #: ../fish/guestfish-actions.pod:3007 ../fish/guestfish-actions.pod:3136
7889 #: ../fish/guestfish-actions.pod:3146 ../fish/guestfish-actions.pod:3156
7890 msgid "The mode actually set is affected by the umask."
7891 msgstr ""
7892
7893 #. type: =head2
7894 #: ../src/guestfs-actions.pod:1005
7895 msgid "guestfs_chown"
7896 msgstr ""
7897
7898 #. type: verbatim
7899 #: ../src/guestfs-actions.pod:1007
7900 #, no-wrap
7901 msgid ""
7902 " int\n"
7903 " guestfs_chown (guestfs_h *g,\n"
7904 "                int owner,\n"
7905 "                int group,\n"
7906 "                const char *path);\n"
7907 "\n"
7908 msgstr ""
7909
7910 #. type: textblock
7911 #: ../src/guestfs-actions.pod:1013 ../fish/guestfish-actions.pod:687
7912 msgid "Change the file owner to C<owner> and group to C<group>."
7913 msgstr ""
7914
7915 #. type: textblock
7916 #: ../src/guestfs-actions.pod:1015 ../src/guestfs-actions.pod:3519
7917 #: ../fish/guestfish-actions.pod:689 ../fish/guestfish-actions.pod:2465
7918 msgid ""
7919 "Only numeric uid and gid are supported.  If you want to use names, you will "
7920 "need to locate and parse the password file yourself (Augeas support makes "
7921 "this relatively easy)."
7922 msgstr ""
7923
7924 #. type: =head2
7925 #: ../src/guestfs-actions.pod:1023
7926 msgid "guestfs_command"
7927 msgstr ""
7928
7929 #. type: verbatim
7930 #: ../src/guestfs-actions.pod:1025
7931 #, no-wrap
7932 msgid ""
7933 " char *\n"
7934 " guestfs_command (guestfs_h *g,\n"
7935 "                  char *const *arguments);\n"
7936 "\n"
7937 msgstr ""
7938
7939 #. type: textblock
7940 #: ../src/guestfs-actions.pod:1029 ../fish/guestfish-actions.pod:697
7941 msgid ""
7942 "This call runs a command from the guest filesystem.  The filesystem must be "
7943 "mounted, and must contain a compatible operating system (ie. something "
7944 "Linux, with the same or compatible processor architecture)."
7945 msgstr ""
7946
7947 #. type: textblock
7948 #: ../src/guestfs-actions.pod:1034
7949 msgid ""
7950 "The single parameter is an argv-style list of arguments.  The first element "
7951 "is the name of the program to run.  Subsequent elements are parameters.  The "
7952 "list must be non-empty (ie. must contain a program name).  Note that the "
7953 "command runs directly, and is I<not> invoked via the shell (see "
7954 "C<guestfs_sh>)."
7955 msgstr ""
7956
7957 #. type: textblock
7958 #: ../src/guestfs-actions.pod:1041 ../fish/guestfish-actions.pod:709
7959 msgid "The return value is anything printed to I<stdout> by the command."
7960 msgstr ""
7961
7962 #. type: textblock
7963 #: ../src/guestfs-actions.pod:1044 ../fish/guestfish-actions.pod:712
7964 msgid ""
7965 "If the command returns a non-zero exit status, then this function returns an "
7966 "error message.  The error message string is the content of I<stderr> from "
7967 "the command."
7968 msgstr ""
7969
7970 #. type: textblock
7971 #: ../src/guestfs-actions.pod:1048 ../fish/guestfish-actions.pod:716
7972 msgid ""
7973 "The C<$PATH> environment variable will contain at least C</usr/bin> and C</"
7974 "bin>.  If you require a program from another location, you should provide "
7975 "the full path in the first parameter."
7976 msgstr ""
7977
7978 #. type: textblock
7979 #: ../src/guestfs-actions.pod:1053 ../fish/guestfish-actions.pod:721
7980 msgid ""
7981 "Shared libraries and data files required by the program must be available on "
7982 "filesystems which are mounted in the correct places.  It is the caller's "
7983 "responsibility to ensure all filesystems that are needed are mounted at the "
7984 "right locations."
7985 msgstr ""
7986
7987 #. type: textblock
7988 #: ../src/guestfs-actions.pod:1065 ../src/guestfs-actions.pod:1085
7989 #: ../src/guestfs-actions.pod:1550
7990 msgid "(Added in 0.9.1)"
7991 msgstr ""
7992
7993 #. type: =head2
7994 #: ../src/guestfs-actions.pod:1067
7995 msgid "guestfs_command_lines"
7996 msgstr ""
7997
7998 #. type: verbatim
7999 #: ../src/guestfs-actions.pod:1069
8000 #, no-wrap
8001 msgid ""
8002 " char **\n"
8003 " guestfs_command_lines (guestfs_h *g,\n"
8004 "                        char *const *arguments);\n"
8005 "\n"
8006 msgstr ""
8007
8008 #. type: textblock
8009 #: ../src/guestfs-actions.pod:1073
8010 msgid ""
8011 "This is the same as C<guestfs_command>, but splits the result into a list of "
8012 "lines."
8013 msgstr ""
8014
8015 #. type: textblock
8016 #: ../src/guestfs-actions.pod:1076
8017 msgid "See also: C<guestfs_sh_lines>"
8018 msgstr ""
8019
8020 #. type: =head2
8021 #: ../src/guestfs-actions.pod:1087
8022 msgid "guestfs_config"
8023 msgstr ""
8024
8025 #. type: verbatim
8026 #: ../src/guestfs-actions.pod:1089
8027 #, no-wrap
8028 msgid ""
8029 " int\n"
8030 " guestfs_config (guestfs_h *g,\n"
8031 "                 const char *qemuparam,\n"
8032 "                 const char *qemuvalue);\n"
8033 "\n"
8034 msgstr ""
8035
8036 #. type: textblock
8037 #: ../src/guestfs-actions.pod:1094 ../fish/guestfish-actions.pod:746
8038 msgid ""
8039 "This can be used to add arbitrary qemu command line parameters of the form "
8040 "I<-param value>.  Actually it's not quite arbitrary - we prevent you from "
8041 "setting some parameters which would interfere with parameters that we use."
8042 msgstr ""
8043
8044 #. type: textblock
8045 #: ../src/guestfs-actions.pod:1099 ../fish/guestfish-actions.pod:751
8046 msgid "The first character of C<param> string must be a C<-> (dash)."
8047 msgstr ""
8048
8049 #. type: textblock
8050 #: ../src/guestfs-actions.pod:1101 ../fish/guestfish-actions.pod:753
8051 msgid "C<value> can be NULL."
8052 msgstr ""
8053
8054 #. type: =head2
8055 #: ../src/guestfs-actions.pod:1107
8056 msgid "guestfs_copy_size"
8057 msgstr ""
8058
8059 #. type: verbatim
8060 #: ../src/guestfs-actions.pod:1109
8061 #, no-wrap
8062 msgid ""
8063 " int\n"
8064 " guestfs_copy_size (guestfs_h *g,\n"
8065 "                    const char *src,\n"
8066 "                    const char *dest,\n"
8067 "                    int64_t size);\n"
8068 "\n"
8069 msgstr ""
8070
8071 #. type: textblock
8072 #: ../src/guestfs-actions.pod:1115 ../fish/guestfish-actions.pod:759
8073 msgid ""
8074 "This command copies exactly C<size> bytes from one source device or file "
8075 "C<src> to another destination device or file C<dest>."
8076 msgstr ""
8077
8078 #. type: textblock
8079 #: ../src/guestfs-actions.pod:1118 ../fish/guestfish-actions.pod:762
8080 msgid ""
8081 "Note this will fail if the source is too short or if the destination is not "
8082 "large enough."
8083 msgstr ""
8084
8085 #. type: textblock
8086 #: ../src/guestfs-actions.pod:1123 ../src/guestfs-actions.pod:1246
8087 #: ../src/guestfs-actions.pod:1277 ../src/guestfs-actions.pod:1322
8088 #: ../src/guestfs-actions.pod:1699 ../src/guestfs-actions.pod:1721
8089 #: ../src/guestfs-actions.pod:3500 ../src/guestfs-actions.pod:6889
8090 #: ../src/guestfs-actions.pod:6923 ../src/guestfs-actions.pod:7409
8091 #: ../src/guestfs-actions.pod:7428
8092 msgid ""
8093 "This long-running command can generate progress notification messages so "
8094 "that the caller can display a progress bar or indicator.  To receive these "
8095 "messages, the caller must register a progress event callback.  See L<guestfs"
8096 "(3)/GUESTFS_EVENT_PROGRESS>."
8097 msgstr ""
8098
8099 #. type: textblock
8100 #: ../src/guestfs-actions.pod:1128 ../src/guestfs-actions.pod:4187
8101 #: ../src/guestfs-actions.pod:5421 ../src/guestfs-actions.pod:7130
8102 #: ../src/guestfs-actions.pod:7150 ../src/guestfs-actions.pod:7236
8103 msgid "(Added in 1.0.87)"
8104 msgstr ""
8105
8106 #. type: =head2
8107 #: ../src/guestfs-actions.pod:1130
8108 msgid "guestfs_cp"
8109 msgstr ""
8110
8111 #. type: verbatim
8112 #: ../src/guestfs-actions.pod:1132
8113 #, no-wrap
8114 msgid ""
8115 " int\n"
8116 " guestfs_cp (guestfs_h *g,\n"
8117 "             const char *src,\n"
8118 "             const char *dest);\n"
8119 "\n"
8120 msgstr ""
8121
8122 #. type: textblock
8123 #: ../src/guestfs-actions.pod:1137 ../fish/guestfish-actions.pod:769
8124 msgid ""
8125 "This copies a file from C<src> to C<dest> where C<dest> is either a "
8126 "destination filename or destination directory."
8127 msgstr ""
8128
8129 #. type: textblock
8130 #: ../src/guestfs-actions.pod:1142 ../src/guestfs-actions.pod:1156
8131 #: ../src/guestfs-actions.pod:1228 ../src/guestfs-actions.pod:1302
8132 #: ../src/guestfs-actions.pod:1416 ../src/guestfs-actions.pod:4879
8133 #: ../src/guestfs-actions.pod:5265
8134 msgid "(Added in 1.0.18)"
8135 msgstr ""
8136
8137 #. type: =head2
8138 #: ../src/guestfs-actions.pod:1144
8139 msgid "guestfs_cp_a"
8140 msgstr ""
8141
8142 #. type: verbatim
8143 #: ../src/guestfs-actions.pod:1146
8144 #, no-wrap
8145 msgid ""
8146 " int\n"
8147 " guestfs_cp_a (guestfs_h *g,\n"
8148 "               const char *src,\n"
8149 "               const char *dest);\n"
8150 "\n"
8151 msgstr ""
8152
8153 #. type: textblock
8154 #: ../src/guestfs-actions.pod:1151 ../fish/guestfish-actions.pod:776
8155 msgid ""
8156 "This copies a file or directory from C<src> to C<dest> recursively using the "
8157 "C<cp -a> command."
8158 msgstr ""
8159
8160 #. type: =head2
8161 #: ../src/guestfs-actions.pod:1158
8162 msgid "guestfs_dd"
8163 msgstr ""
8164
8165 #. type: verbatim
8166 #: ../src/guestfs-actions.pod:1160
8167 #, no-wrap
8168 msgid ""
8169 " int\n"
8170 " guestfs_dd (guestfs_h *g,\n"
8171 "             const char *src,\n"
8172 "             const char *dest);\n"
8173 "\n"
8174 msgstr ""
8175
8176 #. type: textblock
8177 #: ../src/guestfs-actions.pod:1165 ../fish/guestfish-actions.pod:783
8178 msgid ""
8179 "This command copies from one source device or file C<src> to another "
8180 "destination device or file C<dest>.  Normally you would use this to copy to "
8181 "or from a device or partition, for example to duplicate a filesystem."
8182 msgstr ""
8183
8184 #. type: textblock
8185 #: ../src/guestfs-actions.pod:1170
8186 msgid ""
8187 "If the destination is a device, it must be as large or larger than the "
8188 "source file or device, otherwise the copy will fail.  This command cannot do "
8189 "partial copies (see C<guestfs_copy_size>)."
8190 msgstr ""
8191
8192 #. type: =head2
8193 #: ../src/guestfs-actions.pod:1178
8194 msgid "guestfs_df"
8195 msgstr ""
8196
8197 #. type: verbatim
8198 #: ../src/guestfs-actions.pod:1180
8199 #, no-wrap
8200 msgid ""
8201 " char *\n"
8202 " guestfs_df (guestfs_h *g);\n"
8203 "\n"
8204 msgstr ""
8205
8206 #. type: textblock
8207 #: ../src/guestfs-actions.pod:1183 ../fish/guestfish-actions.pod:796
8208 msgid "This command runs the C<df> command to report disk space used."
8209 msgstr ""
8210
8211 #. type: textblock
8212 #: ../src/guestfs-actions.pod:1185 ../src/guestfs-actions.pod:1202
8213 msgid ""
8214 "This command is mostly useful for interactive sessions.  It is I<not> "
8215 "intended that you try to parse the output string.  Use C<guestfs_statvfs> "
8216 "from programs."
8217 msgstr ""
8218
8219 #. type: textblock
8220 #: ../src/guestfs-actions.pod:1192 ../src/guestfs-actions.pod:1209
8221 #: ../src/guestfs-actions.pod:1327 ../src/guestfs-actions.pod:2310
8222 #: ../src/guestfs-actions.pod:2334 ../src/guestfs-actions.pod:2402
8223 #: ../src/guestfs-actions.pod:4297 ../src/guestfs-actions.pod:4779
8224 #: ../src/guestfs-actions.pod:6627 ../src/guestfs-actions.pod:6651
8225 #: ../src/guestfs-actions.pod:7276 ../src/guestfs-actions.pod:7289
8226 #: ../src/guestfs-actions.pod:7302
8227 msgid "(Added in 1.0.54)"
8228 msgstr ""
8229
8230 #. type: =head2
8231 #: ../src/guestfs-actions.pod:1194
8232 msgid "guestfs_df_h"
8233 msgstr ""
8234
8235 #. type: verbatim
8236 #: ../src/guestfs-actions.pod:1196
8237 #, no-wrap
8238 msgid ""
8239 " char *\n"
8240 " guestfs_df_h (guestfs_h *g);\n"
8241 "\n"
8242 msgstr ""
8243
8244 #. type: textblock
8245 #: ../src/guestfs-actions.pod:1199 ../fish/guestfish-actions.pod:806
8246 msgid ""
8247 "This command runs the C<df -h> command to report disk space used in human-"
8248 "readable format."
8249 msgstr ""
8250
8251 #. type: =head2
8252 #: ../src/guestfs-actions.pod:1211
8253 msgid "guestfs_dmesg"
8254 msgstr ""
8255
8256 #. type: verbatim
8257 #: ../src/guestfs-actions.pod:1213
8258 #, no-wrap
8259 msgid ""
8260 " char *\n"
8261 " guestfs_dmesg (guestfs_h *g);\n"
8262 "\n"
8263 msgstr ""
8264
8265 #. type: textblock
8266 #: ../src/guestfs-actions.pod:1216 ../fish/guestfish-actions.pod:817
8267 msgid ""
8268 "This returns the kernel messages (C<dmesg> output) from the guest kernel.  "
8269 "This is sometimes useful for extended debugging of problems."
8270 msgstr ""
8271
8272 #. type: textblock
8273 #: ../src/guestfs-actions.pod:1220
8274 msgid ""
8275 "Another way to get the same information is to enable verbose messages with "
8276 "C<guestfs_set_verbose> or by setting the environment variable "
8277 "C<LIBGUESTFS_DEBUG=1> before running the program."
8278 msgstr ""
8279
8280 #. type: =head2
8281 #: ../src/guestfs-actions.pod:1230
8282 msgid "guestfs_download"
8283 msgstr ""
8284
8285 #. type: verbatim
8286 #: ../src/guestfs-actions.pod:1232
8287 #, no-wrap
8288 msgid ""
8289 " int\n"
8290 " guestfs_download (guestfs_h *g,\n"
8291 "                   const char *remotefilename,\n"
8292 "                   const char *filename);\n"
8293 "\n"
8294 msgstr ""
8295
8296 #. type: textblock
8297 #: ../src/guestfs-actions.pod:1237 ../src/guestfs-actions.pod:1262
8298 #: ../fish/guestfish-actions.pod:830 ../fish/guestfish-actions.pod:843
8299 msgid ""
8300 "Download file C<remotefilename> and save it as C<filename> on the local "
8301 "machine."
8302 msgstr ""
8303
8304 #. type: textblock
8305 #: ../src/guestfs-actions.pod:1240 ../src/guestfs-actions.pod:6883
8306 #: ../fish/guestfish-actions.pod:833 ../fish/guestfish-actions.pod:4658
8307 msgid "C<filename> can also be a named pipe."
8308 msgstr ""
8309
8310 #. type: textblock
8311 #: ../src/guestfs-actions.pod:1242
8312 msgid "See also C<guestfs_upload>, C<guestfs_cat>."
8313 msgstr ""
8314
8315 #. type: =head2
8316 #: ../src/guestfs-actions.pod:1253
8317 msgid "guestfs_download_offset"
8318 msgstr ""
8319
8320 #. type: verbatim
8321 #: ../src/guestfs-actions.pod:1255
8322 #, no-wrap
8323 msgid ""
8324 " int\n"
8325 " guestfs_download_offset (guestfs_h *g,\n"
8326 "                          const char *remotefilename,\n"
8327 "                          const char *filename,\n"
8328 "                          int64_t offset,\n"
8329 "                          int64_t size);\n"
8330 "\n"
8331 msgstr ""
8332
8333 #. type: textblock
8334 #: ../src/guestfs-actions.pod:1265 ../fish/guestfish-actions.pod:846
8335 msgid ""
8336 "C<remotefilename> is read for C<size> bytes starting at C<offset> (this "
8337 "region must be within the file or device)."
8338 msgstr ""
8339
8340 #. type: textblock
8341 #: ../src/guestfs-actions.pod:1268
8342 msgid ""
8343 "Note that there is no limit on the amount of data that can be downloaded "
8344 "with this call, unlike with C<guestfs_pread>, and this call always reads the "
8345 "full amount unless an error occurs."
8346 msgstr ""
8347
8348 #. type: textblock
8349 #: ../src/guestfs-actions.pod:1273
8350 msgid "See also C<guestfs_download>, C<guestfs_pread>."
8351 msgstr ""
8352
8353 #. type: textblock
8354 #: ../src/guestfs-actions.pod:1282 ../src/guestfs-actions.pod:6928
8355 msgid "(Added in 1.5.17)"
8356 msgstr ""
8357
8358 #. type: =head2
8359 #: ../src/guestfs-actions.pod:1284
8360 msgid "guestfs_drop_caches"
8361 msgstr ""
8362
8363 #. type: verbatim
8364 #: ../src/guestfs-actions.pod:1286
8365 #, no-wrap
8366 msgid ""
8367 " int\n"
8368 " guestfs_drop_caches (guestfs_h *g,\n"
8369 "                      int whattodrop);\n"
8370 "\n"
8371 msgstr ""
8372
8373 #. type: textblock
8374 #: ../src/guestfs-actions.pod:1290 ../fish/guestfish-actions.pod:862
8375 msgid ""
8376 "This instructs the guest kernel to drop its page cache, and/or dentries and "
8377 "inode caches.  The parameter C<whattodrop> tells the kernel what precisely "
8378 "to drop, see L<http://linux-mm.org/Drop_Caches>"
8379 msgstr ""
8380
8381 #. type: textblock
8382 #: ../src/guestfs-actions.pod:1295 ../fish/guestfish-actions.pod:867
8383 msgid "Setting C<whattodrop> to 3 should drop everything."
8384 msgstr ""
8385
8386 #. type: textblock
8387 #: ../src/guestfs-actions.pod:1297 ../fish/guestfish-actions.pod:869
8388 msgid ""
8389 "This automatically calls L<sync(2)> before the operation, so that the "
8390 "maximum guest memory is freed."
8391 msgstr ""
8392
8393 #. type: =head2
8394 #: ../src/guestfs-actions.pod:1304
8395 msgid "guestfs_du"
8396 msgstr ""
8397
8398 #. type: verbatim
8399 #: ../src/guestfs-actions.pod:1306
8400 #, no-wrap
8401 msgid ""
8402 " int64_t\n"
8403 " guestfs_du (guestfs_h *g,\n"
8404 "             const char *path);\n"
8405 "\n"
8406 msgstr ""
8407
8408 #. type: textblock
8409 #: ../src/guestfs-actions.pod:1310 ../fish/guestfish-actions.pod:876
8410 msgid ""
8411 "This command runs the C<du -s> command to estimate file space usage for "
8412 "C<path>."
8413 msgstr ""
8414
8415 #. type: textblock
8416 #: ../src/guestfs-actions.pod:1313 ../fish/guestfish-actions.pod:879
8417 msgid ""
8418 "C<path> can be a file or a directory.  If C<path> is a directory then the "
8419 "estimate includes the contents of the directory and all subdirectories "
8420 "(recursively)."
8421 msgstr ""
8422
8423 #. type: textblock
8424 #: ../src/guestfs-actions.pod:1317 ../fish/guestfish-actions.pod:883
8425 msgid ""
8426 "The result is the estimated size in I<kilobytes> (ie. units of 1024 bytes)."
8427 msgstr ""
8428
8429 #. type: =head2
8430 #: ../src/guestfs-actions.pod:1329
8431 msgid "guestfs_e2fsck_f"
8432 msgstr ""
8433
8434 #. type: verbatim
8435 #: ../src/guestfs-actions.pod:1331
8436 #, no-wrap
8437 msgid ""
8438 " int\n"
8439 " guestfs_e2fsck_f (guestfs_h *g,\n"
8440 "                   const char *device);\n"
8441 "\n"
8442 msgstr ""
8443
8444 #. type: textblock
8445 #: ../src/guestfs-actions.pod:1335 ../fish/guestfish-actions.pod:890
8446 msgid ""
8447 "This runs C<e2fsck -p -f device>, ie. runs the ext2/ext3 filesystem checker "
8448 "on C<device>, noninteractively (I<-p>), even if the filesystem appears to be "
8449 "clean (I<-f>)."
8450 msgstr ""
8451
8452 #. type: textblock
8453 #: ../src/guestfs-actions.pod:1339
8454 msgid ""
8455 "This command is only needed because of C<guestfs_resize2fs> (q.v.).  "
8456 "Normally you should use C<guestfs_fsck>."
8457 msgstr ""
8458
8459 #. type: textblock
8460 #: ../src/guestfs-actions.pod:1344
8461 msgid "(Added in 1.0.29)"
8462 msgstr ""
8463
8464 #. type: =head2
8465 #: ../src/guestfs-actions.pod:1346
8466 msgid "guestfs_echo_daemon"
8467 msgstr ""
8468
8469 #. type: verbatim
8470 #: ../src/guestfs-actions.pod:1348
8471 #, no-wrap
8472 msgid ""
8473 " char *\n"
8474 " guestfs_echo_daemon (guestfs_h *g,\n"
8475 "                      char *const *words);\n"
8476 "\n"
8477 msgstr ""
8478
8479 #. type: textblock
8480 #: ../src/guestfs-actions.pod:1352 ../fish/guestfish-actions.pod:901
8481 msgid ""
8482 "This command concatenates the list of C<words> passed with single spaces "
8483 "between them and returns the resulting string."
8484 msgstr ""
8485
8486 #. type: textblock
8487 #: ../src/guestfs-actions.pod:1355 ../fish/guestfish-actions.pod:904
8488 msgid "You can use this command to test the connection through to the daemon."
8489 msgstr ""
8490
8491 #. type: textblock
8492 #: ../src/guestfs-actions.pod:1357
8493 msgid "See also C<guestfs_ping_daemon>."
8494 msgstr ""
8495
8496 #. type: textblock
8497 #: ../src/guestfs-actions.pod:1362 ../src/guestfs-actions.pod:2096
8498 #: ../src/guestfs-actions.pod:6099
8499 msgid "(Added in 1.0.69)"
8500 msgstr ""
8501
8502 #. type: =head2
8503 #: ../src/guestfs-actions.pod:1364
8504 msgid "guestfs_egrep"
8505 msgstr ""
8506
8507 #. type: verbatim
8508 #: ../src/guestfs-actions.pod:1366
8509 #, no-wrap
8510 msgid ""
8511 " char **\n"
8512 " guestfs_egrep (guestfs_h *g,\n"
8513 "                const char *regex,\n"
8514 "                const char *path);\n"
8515 "\n"
8516 msgstr ""
8517
8518 #. type: textblock
8519 #: ../src/guestfs-actions.pod:1371 ../fish/guestfish-actions.pod:912
8520 msgid ""
8521 "This calls the external C<egrep> program and returns the matching lines."
8522 msgstr ""
8523
8524 #. type: textblock
8525 #: ../src/guestfs-actions.pod:1381 ../src/guestfs-actions.pod:1400
8526 #: ../src/guestfs-actions.pod:1457 ../src/guestfs-actions.pod:1503
8527 #: ../src/guestfs-actions.pod:1522 ../src/guestfs-actions.pod:2226
8528 #: ../src/guestfs-actions.pod:2245 ../src/guestfs-actions.pod:2423
8529 #: ../src/guestfs-actions.pod:2436 ../src/guestfs-actions.pod:2451
8530 #: ../src/guestfs-actions.pod:2497 ../src/guestfs-actions.pod:2519
8531 #: ../src/guestfs-actions.pod:2532 ../src/guestfs-actions.pod:3680
8532 #: ../src/guestfs-actions.pod:3694 ../src/guestfs-actions.pod:3707
8533 #: ../src/guestfs-actions.pod:3721 ../src/guestfs-actions.pod:4707
8534 #: ../src/guestfs-actions.pod:5599 ../src/guestfs-actions.pod:5648
8535 #: ../src/guestfs-actions.pod:6495 ../src/guestfs-actions.pod:6507
8536 #: ../src/guestfs-actions.pod:6520 ../src/guestfs-actions.pod:6533
8537 #: ../src/guestfs-actions.pod:6555 ../src/guestfs-actions.pod:6568
8538 #: ../src/guestfs-actions.pod:6581 ../src/guestfs-actions.pod:6594
8539 #: ../src/guestfs-actions.pod:7372 ../src/guestfs-actions.pod:7391
8540 #: ../src/guestfs-actions.pod:7476 ../src/guestfs-actions.pod:7495
8541 #: ../src/guestfs-actions.pod:7541 ../src/guestfs-actions.pod:7560
8542 msgid "(Added in 1.0.66)"
8543 msgstr ""
8544
8545 #. type: =head2
8546 #: ../src/guestfs-actions.pod:1383
8547 msgid "guestfs_egrepi"
8548 msgstr ""
8549
8550 #. type: verbatim
8551 #: ../src/guestfs-actions.pod:1385
8552 #, no-wrap
8553 msgid ""
8554 " char **\n"
8555 " guestfs_egrepi (guestfs_h *g,\n"
8556 "                 const char *regex,\n"
8557 "                 const char *path);\n"
8558 "\n"
8559 msgstr ""
8560
8561 #. type: textblock
8562 #: ../src/guestfs-actions.pod:1390 ../fish/guestfish-actions.pod:922
8563 msgid ""
8564 "This calls the external C<egrep -i> program and returns the matching lines."
8565 msgstr ""
8566
8567 #. type: =head2
8568 #: ../src/guestfs-actions.pod:1402
8569 msgid "guestfs_equal"
8570 msgstr ""
8571
8572 #. type: verbatim
8573 #: ../src/guestfs-actions.pod:1404
8574 #, no-wrap
8575 msgid ""
8576 " int\n"
8577 " guestfs_equal (guestfs_h *g,\n"
8578 "                const char *file1,\n"
8579 "                const char *file2);\n"
8580 "\n"
8581 msgstr ""
8582
8583 #. type: textblock
8584 #: ../src/guestfs-actions.pod:1409 ../fish/guestfish-actions.pod:932
8585 msgid ""
8586 "This compares the two files C<file1> and C<file2> and returns true if their "
8587 "content is exactly equal, or false otherwise."
8588 msgstr ""
8589
8590 #. type: textblock
8591 #: ../src/guestfs-actions.pod:1412 ../fish/guestfish-actions.pod:935
8592 msgid "The external L<cmp(1)> program is used for the comparison."
8593 msgstr ""
8594
8595 #. type: =head2
8596 #: ../src/guestfs-actions.pod:1418
8597 msgid "guestfs_exists"
8598 msgstr ""
8599
8600 #. type: verbatim
8601 #: ../src/guestfs-actions.pod:1420
8602 #, no-wrap
8603 msgid ""
8604 " int\n"
8605 " guestfs_exists (guestfs_h *g,\n"
8606 "                 const char *path);\n"
8607 "\n"
8608 msgstr ""
8609
8610 #. type: textblock
8611 #: ../src/guestfs-actions.pod:1424 ../fish/guestfish-actions.pod:941
8612 msgid ""
8613 "This returns C<true> if and only if there is a file, directory (or anything) "
8614 "with the given C<path> name."
8615 msgstr ""
8616
8617 #. type: textblock
8618 #: ../src/guestfs-actions.pod:1427
8619 msgid "See also C<guestfs_is_file>, C<guestfs_is_dir>, C<guestfs_stat>."
8620 msgstr ""
8621
8622 #. type: =head2
8623 #: ../src/guestfs-actions.pod:1433
8624 msgid "guestfs_fallocate"
8625 msgstr ""
8626
8627 #. type: verbatim
8628 #: ../src/guestfs-actions.pod:1435
8629 #, no-wrap
8630 msgid ""
8631 " int\n"
8632 " guestfs_fallocate (guestfs_h *g,\n"
8633 "                    const char *path,\n"
8634 "                    int len);\n"
8635 "\n"
8636 msgstr ""
8637
8638 #. type: textblock
8639 #: ../src/guestfs-actions.pod:1440 ../src/guestfs-actions.pod:1466
8640 #: ../fish/guestfish-actions.pod:950 ../fish/guestfish-actions.pod:969
8641 msgid ""
8642 "This command preallocates a file (containing zero bytes) named C<path> of "
8643 "size C<len> bytes.  If the file exists already, it is overwritten."
8644 msgstr ""
8645
8646 #. type: textblock
8647 #: ../src/guestfs-actions.pod:1444 ../fish/guestfish-actions.pod:954
8648 msgid ""
8649 "Do not confuse this with the guestfish-specific C<alloc> command which "
8650 "allocates a file in the host and attaches it as a device."
8651 msgstr ""
8652
8653 #. type: textblock
8654 #: ../src/guestfs-actions.pod:1450
8655 msgid ""
8656 "This function is deprecated.  In new code, use the L</guestfs_fallocate64> "
8657 "call instead."
8658 msgstr ""
8659
8660 #. type: =head2
8661 #: ../src/guestfs-actions.pod:1459
8662 msgid "guestfs_fallocate64"
8663 msgstr ""
8664
8665 #. type: verbatim
8666 #: ../src/guestfs-actions.pod:1461
8667 #, no-wrap
8668 msgid ""
8669 " int\n"
8670 " guestfs_fallocate64 (guestfs_h *g,\n"
8671 "                      const char *path,\n"
8672 "                      int64_t len);\n"
8673 "\n"
8674 msgstr ""
8675
8676 #. type: textblock
8677 #: ../src/guestfs-actions.pod:1470
8678 msgid ""
8679 "Note that this call allocates disk blocks for the file.  To create a sparse "
8680 "file use C<guestfs_truncate_size> instead."
8681 msgstr ""
8682
8683 #. type: textblock
8684 #: ../src/guestfs-actions.pod:1473
8685 msgid ""
8686 "The deprecated call C<guestfs_fallocate> does the same, but owing to an "
8687 "oversight it only allowed 30 bit lengths to be specified, effectively "
8688 "limiting the maximum size of files created through that call to 1GB."
8689 msgstr ""
8690
8691 #. type: textblock
8692 #: ../src/guestfs-actions.pod:1478 ../fish/guestfish-actions.pod:981
8693 msgid ""
8694 "Do not confuse this with the guestfish-specific C<alloc> and C<sparse> "
8695 "commands which create a file in the host and attach it as a device."
8696 msgstr ""
8697
8698 #. type: textblock
8699 #: ../src/guestfs-actions.pod:1484
8700 msgid "(Added in 1.3.17)"
8701 msgstr ""
8702
8703 #. type: =head2
8704 #: ../src/guestfs-actions.pod:1486
8705 msgid "guestfs_fgrep"
8706 msgstr ""
8707
8708 #. type: verbatim
8709 #: ../src/guestfs-actions.pod:1488
8710 #, no-wrap
8711 msgid ""
8712 " char **\n"
8713 " guestfs_fgrep (guestfs_h *g,\n"
8714 "                const char *pattern,\n"
8715 "                const char *path);\n"
8716 "\n"
8717 msgstr ""
8718
8719 #. type: textblock
8720 #: ../src/guestfs-actions.pod:1493 ../fish/guestfish-actions.pod:989
8721 msgid ""
8722 "This calls the external C<fgrep> program and returns the matching lines."
8723 msgstr ""
8724
8725 #. type: =head2
8726 #: ../src/guestfs-actions.pod:1505
8727 msgid "guestfs_fgrepi"
8728 msgstr ""
8729
8730 #. type: verbatim
8731 #: ../src/guestfs-actions.pod:1507
8732 #, no-wrap
8733 msgid ""
8734 " char **\n"
8735 " guestfs_fgrepi (guestfs_h *g,\n"
8736 "                 const char *pattern,\n"
8737 "                 const char *path);\n"
8738 "\n"
8739 msgstr ""
8740
8741 #. type: textblock
8742 #: ../src/guestfs-actions.pod:1512 ../fish/guestfish-actions.pod:999
8743 msgid ""
8744 "This calls the external C<fgrep -i> program and returns the matching lines."
8745 msgstr ""
8746
8747 #. type: =head2
8748 #: ../src/guestfs-actions.pod:1524
8749 msgid "guestfs_file"
8750 msgstr ""
8751
8752 #. type: verbatim
8753 #: ../src/guestfs-actions.pod:1526
8754 #, no-wrap
8755 msgid ""
8756 " char *\n"
8757 " guestfs_file (guestfs_h *g,\n"
8758 "               const char *path);\n"
8759 "\n"
8760 msgstr ""
8761
8762 #. type: textblock
8763 #: ../src/guestfs-actions.pod:1530 ../fish/guestfish-actions.pod:1009
8764 msgid ""
8765 "This call uses the standard L<file(1)> command to determine the type or "
8766 "contents of the file."
8767 msgstr ""
8768
8769 #. type: textblock
8770 #: ../src/guestfs-actions.pod:1533 ../fish/guestfish-actions.pod:1012
8771 msgid ""
8772 "This call will also transparently look inside various types of compressed "
8773 "file."
8774 msgstr ""
8775
8776 #. type: textblock
8777 #: ../src/guestfs-actions.pod:1536 ../fish/guestfish-actions.pod:1015
8778 msgid ""
8779 "The exact command which runs is C<file -zb path>.  Note in particular that "
8780 "the filename is not prepended to the output (the I<-b> option)."
8781 msgstr ""
8782
8783 #. type: textblock
8784 #: ../src/guestfs-actions.pod:1540 ../fish/guestfish-actions.pod:1019
8785 msgid ""
8786 "The output depends on the output of the underlying L<file(1)> command and it "
8787 "can change in future in ways beyond our control.  In other words, the output "
8788 "is not guaranteed by the ABI."
8789 msgstr ""
8790
8791 #. type: textblock
8792 #: ../src/guestfs-actions.pod:1544
8793 msgid ""
8794 "See also: L<file(1)>, C<guestfs_vfs_type>, C<guestfs_lstat>, "
8795 "C<guestfs_is_file>, C<guestfs_is_blockdev> (etc)."
8796 msgstr ""
8797
8798 #. type: =head2
8799 #: ../src/guestfs-actions.pod:1552
8800 msgid "guestfs_file_architecture"
8801 msgstr ""
8802
8803 #. type: verbatim
8804 #: ../src/guestfs-actions.pod:1554
8805 #, no-wrap
8806 msgid ""
8807 " char *\n"
8808 " guestfs_file_architecture (guestfs_h *g,\n"
8809 "                            const char *filename);\n"
8810 "\n"
8811 msgstr ""
8812
8813 #. type: textblock
8814 #: ../src/guestfs-actions.pod:1558 ../fish/guestfish-actions.pod:1030
8815 msgid ""
8816 "This detects the architecture of the binary C<filename>, and returns it if "
8817 "known."
8818 msgstr ""
8819
8820 #. type: textblock
8821 #: ../src/guestfs-actions.pod:1561 ../fish/guestfish-actions.pod:1033
8822 msgid "Currently defined architectures are:"
8823 msgstr ""
8824
8825 #. type: =item
8826 #: ../src/guestfs-actions.pod:1565 ../fish/guestfish-actions.pod:1037
8827 msgid "\"i386\""
8828 msgstr "\"i386\""
8829
8830 #. type: textblock
8831 #: ../src/guestfs-actions.pod:1567 ../fish/guestfish-actions.pod:1039
8832 msgid ""
8833 "This string is returned for all 32 bit i386, i486, i586, i686 binaries "
8834 "irrespective of the precise processor requirements of the binary."
8835 msgstr ""
8836
8837 #. type: =item
8838 #: ../src/guestfs-actions.pod:1570 ../fish/guestfish-actions.pod:1042
8839 msgid "\"x86_64\""
8840 msgstr "\"x86_64\""
8841
8842 #. type: textblock
8843 #: ../src/guestfs-actions.pod:1572 ../fish/guestfish-actions.pod:1044
8844 msgid "64 bit x86-64."
8845 msgstr ""
8846
8847 #. type: =item
8848 #: ../src/guestfs-actions.pod:1574 ../fish/guestfish-actions.pod:1046
8849 msgid "\"sparc\""
8850 msgstr ""
8851
8852 #. type: textblock
8853 #: ../src/guestfs-actions.pod:1576 ../fish/guestfish-actions.pod:1048
8854 msgid "32 bit SPARC."
8855 msgstr ""
8856
8857 #. type: =item
8858 #: ../src/guestfs-actions.pod:1578 ../fish/guestfish-actions.pod:1050
8859 msgid "\"sparc64\""
8860 msgstr ""
8861
8862 #. type: textblock
8863 #: ../src/guestfs-actions.pod:1580 ../fish/guestfish-actions.pod:1052
8864 msgid "64 bit SPARC V9 and above."
8865 msgstr ""
8866
8867 #. type: =item
8868 #: ../src/guestfs-actions.pod:1582 ../fish/guestfish-actions.pod:1054
8869 msgid "\"ia64\""
8870 msgstr "\"ia64\""
8871
8872 #. type: textblock
8873 #: ../src/guestfs-actions.pod:1584 ../fish/guestfish-actions.pod:1056
8874 msgid "Intel Itanium."
8875 msgstr "Intel Itanium."
8876
8877 #. type: =item
8878 #: ../src/guestfs-actions.pod:1586 ../fish/guestfish-actions.pod:1058
8879 msgid "\"ppc\""
8880 msgstr ""
8881
8882 #. type: textblock
8883 #: ../src/guestfs-actions.pod:1588 ../fish/guestfish-actions.pod:1060
8884 msgid "32 bit Power PC."
8885 msgstr ""
8886
8887 #. type: =item
8888 #: ../src/guestfs-actions.pod:1590 ../fish/guestfish-actions.pod:1062
8889 msgid "\"ppc64\""
8890 msgstr ""
8891
8892 #. type: textblock
8893 #: ../src/guestfs-actions.pod:1592 ../fish/guestfish-actions.pod:1064
8894 msgid "64 bit Power PC."
8895 msgstr ""
8896
8897 #. type: textblock
8898 #: ../src/guestfs-actions.pod:1596 ../fish/guestfish-actions.pod:1068
8899 msgid "Libguestfs may return other architecture strings in future."
8900 msgstr ""
8901
8902 #. type: textblock
8903 #: ../src/guestfs-actions.pod:1598 ../fish/guestfish-actions.pod:1070
8904 msgid "The function works on at least the following types of files:"
8905 msgstr ""
8906
8907 #. type: textblock
8908 #: ../src/guestfs-actions.pod:1604 ../fish/guestfish-actions.pod:1076
8909 msgid "many types of Un*x and Linux binary"
8910 msgstr ""
8911
8912 #. type: textblock
8913 #: ../src/guestfs-actions.pod:1608 ../fish/guestfish-actions.pod:1080
8914 msgid "many types of Un*x and Linux shared library"
8915 msgstr ""
8916
8917 #. type: textblock
8918 #: ../src/guestfs-actions.pod:1612 ../fish/guestfish-actions.pod:1084
8919 msgid "Windows Win32 and Win64 binaries"
8920 msgstr ""
8921
8922 #. type: textblock
8923 #: ../src/guestfs-actions.pod:1616 ../fish/guestfish-actions.pod:1088
8924 msgid "Windows Win32 and Win64 DLLs"
8925 msgstr ""
8926
8927 #. type: textblock
8928 #: ../src/guestfs-actions.pod:1618 ../fish/guestfish-actions.pod:1090
8929 msgid "Win32 binaries and DLLs return C<i386>."
8930 msgstr ""
8931
8932 #. type: textblock
8933 #: ../src/guestfs-actions.pod:1620 ../fish/guestfish-actions.pod:1092
8934 msgid "Win64 binaries and DLLs return C<x86_64>."
8935 msgstr ""
8936
8937 #. type: textblock
8938 #: ../src/guestfs-actions.pod:1624 ../fish/guestfish-actions.pod:1096
8939 msgid "Linux kernel modules"
8940 msgstr ""
8941
8942 #. type: textblock
8943 #: ../src/guestfs-actions.pod:1628 ../fish/guestfish-actions.pod:1100
8944 msgid "Linux new-style initrd images"
8945 msgstr ""
8946
8947 #. type: textblock
8948 #: ../src/guestfs-actions.pod:1632 ../fish/guestfish-actions.pod:1104
8949 msgid "some non-x86 Linux vmlinuz kernels"
8950 msgstr ""
8951
8952 #. type: textblock
8953 #: ../src/guestfs-actions.pod:1636 ../fish/guestfish-actions.pod:1108
8954 msgid "What it can't do currently:"
8955 msgstr ""
8956
8957 #. type: textblock
8958 #: ../src/guestfs-actions.pod:1642 ../fish/guestfish-actions.pod:1114
8959 msgid "static libraries (libfoo.a)"
8960 msgstr ""
8961
8962 #. type: textblock
8963 #: ../src/guestfs-actions.pod:1646 ../fish/guestfish-actions.pod:1118
8964 msgid "Linux old-style initrd as compressed ext2 filesystem (RHEL 3)"
8965 msgstr ""
8966
8967 #. type: textblock
8968 #: ../src/guestfs-actions.pod:1650 ../fish/guestfish-actions.pod:1122
8969 msgid "x86 Linux vmlinuz kernels"
8970 msgstr ""
8971
8972 #. type: textblock
8973 #: ../src/guestfs-actions.pod:1652 ../fish/guestfish-actions.pod:1124
8974 msgid ""
8975 "x86 vmlinuz images (bzImage format) consist of a mix of 16-, 32- and "
8976 "compressed code, and are horribly hard to unpack.  If you want to find the "
8977 "architecture of a kernel, use the architecture of the associated initrd or "
8978 "kernel module(s) instead."
8979 msgstr ""
8980
8981 #. type: textblock
8982 #: ../src/guestfs-actions.pod:1662 ../src/guestfs-actions.pod:1825
8983 #: ../src/guestfs-actions.pod:1842 ../src/guestfs-actions.pod:2555
8984 #: ../src/guestfs-actions.pod:2648 ../src/guestfs-actions.pod:2718
8985 #: ../src/guestfs-actions.pod:2806 ../src/guestfs-actions.pod:2827
8986 #: ../src/guestfs-actions.pod:2870 ../src/guestfs-actions.pod:2954
8987 #: ../src/guestfs-actions.pod:3051 ../src/guestfs-actions.pod:3298
8988 #: ../src/guestfs-actions.pod:3430
8989 msgid "(Added in 1.5.3)"
8990 msgstr ""
8991
8992 #. type: =head2
8993 #: ../src/guestfs-actions.pod:1664
8994 msgid "guestfs_filesize"
8995 msgstr ""
8996
8997 #. type: verbatim
8998 #: ../src/guestfs-actions.pod:1666
8999 #, no-wrap
9000 msgid ""
9001 " int64_t\n"
9002 " guestfs_filesize (guestfs_h *g,\n"
9003 "                   const char *file);\n"
9004 "\n"
9005 msgstr ""
9006
9007 #. type: textblock
9008 #: ../src/guestfs-actions.pod:1670 ../fish/guestfish-actions.pod:1135
9009 msgid "This command returns the size of C<file> in bytes."
9010 msgstr ""
9011
9012 #. type: textblock
9013 #: ../src/guestfs-actions.pod:1672
9014 msgid ""
9015 "To get other stats about a file, use C<guestfs_stat>, C<guestfs_lstat>, "
9016 "C<guestfs_is_dir>, C<guestfs_is_file> etc.  To get the size of block "
9017 "devices, use C<guestfs_blockdev_getsize64>."
9018 msgstr ""
9019
9020 #. type: textblock
9021 #: ../src/guestfs-actions.pod:1678
9022 msgid "(Added in 1.0.82)"
9023 msgstr ""
9024
9025 #. type: =head2
9026 #: ../src/guestfs-actions.pod:1680
9027 msgid "guestfs_fill"
9028 msgstr ""
9029
9030 #. type: verbatim
9031 #: ../src/guestfs-actions.pod:1682
9032 #, no-wrap
9033 msgid ""
9034 " int\n"
9035 " guestfs_fill (guestfs_h *g,\n"
9036 "               int c,\n"
9037 "               int len,\n"
9038 "               const char *path);\n"
9039 "\n"
9040 msgstr ""
9041
9042 #. type: textblock
9043 #: ../src/guestfs-actions.pod:1688 ../fish/guestfish-actions.pod:1145
9044 msgid ""
9045 "This command creates a new file called C<path>.  The initial content of the "
9046 "file is C<len> octets of C<c>, where C<c> must be a number in the range C<"
9047 "[0..255]>."
9048 msgstr ""
9049
9050 #. type: textblock
9051 #: ../src/guestfs-actions.pod:1692
9052 msgid ""
9053 "To fill a file with zero bytes (sparsely), it is much more efficient to use "
9054 "C<guestfs_truncate_size>.  To create a file with a pattern of repeating "
9055 "bytes use C<guestfs_fill_pattern>."
9056 msgstr ""
9057
9058 #. type: textblock
9059 #: ../src/guestfs-actions.pod:1704
9060 msgid "(Added in 1.0.79)"
9061 msgstr ""
9062
9063 #. type: =head2
9064 #: ../src/guestfs-actions.pod:1706
9065 msgid "guestfs_fill_pattern"
9066 msgstr ""
9067
9068 #. type: verbatim
9069 #: ../src/guestfs-actions.pod:1708
9070 #, no-wrap
9071 msgid ""
9072 " int\n"
9073 " guestfs_fill_pattern (guestfs_h *g,\n"
9074 "                       const char *pattern,\n"
9075 "                       int len,\n"
9076 "                       const char *path);\n"
9077 "\n"
9078 msgstr ""
9079
9080 #. type: textblock
9081 #: ../src/guestfs-actions.pod:1714
9082 msgid ""
9083 "This function is like C<guestfs_fill> except that it creates a new file of "
9084 "length C<len> containing the repeating pattern of bytes in C<pattern>.  The "
9085 "pattern is truncated if necessary to ensure the length of the file is "
9086 "exactly C<len> bytes."
9087 msgstr ""
9088
9089 #. type: textblock
9090 #: ../src/guestfs-actions.pod:1726
9091 msgid "(Added in 1.3.12)"
9092 msgstr ""
9093
9094 #. type: =head2
9095 #: ../src/guestfs-actions.pod:1728
9096 msgid "guestfs_find"
9097 msgstr ""
9098
9099 #. type: verbatim
9100 #: ../src/guestfs-actions.pod:1730
9101 #, no-wrap
9102 msgid ""
9103 " char **\n"
9104 " guestfs_find (guestfs_h *g,\n"
9105 "               const char *directory);\n"
9106 "\n"
9107 msgstr ""
9108
9109 #. type: textblock
9110 #: ../src/guestfs-actions.pod:1734 ../fish/guestfish-actions.pod:1167
9111 msgid ""
9112 "This command lists out all files and directories, recursively, starting at "
9113 "C<directory>.  It is essentially equivalent to running the shell command "
9114 "C<find directory -print> but some post-processing happens on the output, "
9115 "described below."
9116 msgstr ""
9117
9118 #. type: textblock
9119 #: ../src/guestfs-actions.pod:1739 ../fish/guestfish-actions.pod:1172
9120 msgid ""
9121 "This returns a list of strings I<without any prefix>.  Thus if the directory "
9122 "structure was:"
9123 msgstr ""
9124
9125 #. type: verbatim
9126 #: ../src/guestfs-actions.pod:1742 ../fish/guestfish-actions.pod:1175
9127 #, no-wrap
9128 msgid ""
9129 " /tmp/a\n"
9130 " /tmp/b\n"
9131 " /tmp/c/d\n"
9132 "\n"
9133 msgstr ""
9134
9135 #. type: textblock
9136 #: ../src/guestfs-actions.pod:1746
9137 msgid ""
9138 "then the returned list from C<guestfs_find> C</tmp> would be 4 elements:"
9139 msgstr ""
9140
9141 #. type: verbatim
9142 #: ../src/guestfs-actions.pod:1749 ../fish/guestfish-actions.pod:1182
9143 #, no-wrap
9144 msgid ""
9145 " a\n"
9146 " b\n"
9147 " c\n"
9148 " c/d\n"
9149 "\n"
9150 msgstr ""
9151
9152 #. type: textblock
9153 #: ../src/guestfs-actions.pod:1754 ../fish/guestfish-actions.pod:1187
9154 msgid "If C<directory> is not a directory, then this command returns an error."
9155 msgstr ""
9156
9157 #. type: textblock
9158 #: ../src/guestfs-actions.pod:1757 ../fish/guestfish-actions.pod:1190
9159 msgid "The returned list is sorted."
9160 msgstr ""
9161
9162 #. type: textblock
9163 #: ../src/guestfs-actions.pod:1759
9164 msgid "See also C<guestfs_find0>."
9165 msgstr ""
9166
9167 #. type: textblock
9168 #: ../src/guestfs-actions.pod:1768 ../src/guestfs-actions.pod:4124
9169 #: ../src/guestfs-actions.pod:5683
9170 msgid "(Added in 1.0.27)"
9171 msgstr ""
9172
9173 #. type: =head2
9174 #: ../src/guestfs-actions.pod:1770
9175 msgid "guestfs_find0"
9176 msgstr ""
9177
9178 #. type: verbatim
9179 #: ../src/guestfs-actions.pod:1772
9180 #, no-wrap
9181 msgid ""
9182 " int\n"
9183 " guestfs_find0 (guestfs_h *g,\n"
9184 "                const char *directory,\n"
9185 "                const char *files);\n"
9186 "\n"
9187 msgstr ""
9188
9189 #. type: textblock
9190 #: ../src/guestfs-actions.pod:1777 ../fish/guestfish-actions.pod:1201
9191 msgid ""
9192 "This command lists out all files and directories, recursively, starting at "
9193 "C<directory>, placing the resulting list in the external file called "
9194 "C<files>."
9195 msgstr ""
9196
9197 #. type: textblock
9198 #: ../src/guestfs-actions.pod:1781
9199 msgid ""
9200 "This command works the same way as C<guestfs_find> with the following "
9201 "exceptions:"
9202 msgstr ""
9203
9204 #. type: textblock
9205 #: ../src/guestfs-actions.pod:1788 ../fish/guestfish-actions.pod:1212
9206 msgid "The resulting list is written to an external file."
9207 msgstr ""
9208
9209 #. type: textblock
9210 #: ../src/guestfs-actions.pod:1792 ../fish/guestfish-actions.pod:1216
9211 msgid ""
9212 "Items (filenames) in the result are separated by C<\\0> characters.  See "
9213 "L<find(1)> option I<-print0>."
9214 msgstr ""
9215
9216 #. type: textblock
9217 #: ../src/guestfs-actions.pod:1797 ../fish/guestfish-actions.pod:1221
9218 msgid "This command is not limited in the number of names that it can return."
9219 msgstr ""
9220
9221 #. type: textblock
9222 #: ../src/guestfs-actions.pod:1802 ../fish/guestfish-actions.pod:1226
9223 msgid "The result list is not sorted."
9224 msgstr ""
9225
9226 #. type: textblock
9227 #: ../src/guestfs-actions.pod:1808
9228 msgid "(Added in 1.0.74)"
9229 msgstr ""
9230
9231 #. type: =head2
9232 #: ../src/guestfs-actions.pod:1810
9233 msgid "guestfs_findfs_label"
9234 msgstr ""
9235
9236 #. type: verbatim
9237 #: ../src/guestfs-actions.pod:1812
9238 #, no-wrap
9239 msgid ""
9240 " char *\n"
9241 " guestfs_findfs_label (guestfs_h *g,\n"
9242 "                       const char *label);\n"
9243 "\n"
9244 msgstr ""
9245
9246 #. type: textblock
9247 #: ../src/guestfs-actions.pod:1816 ../fish/guestfish-actions.pod:1236
9248 msgid ""
9249 "This command searches the filesystems and returns the one which has the "
9250 "given label.  An error is returned if no such filesystem can be found."
9251 msgstr ""
9252
9253 #. type: textblock
9254 #: ../src/guestfs-actions.pod:1820
9255 msgid "To find the label of a filesystem, use C<guestfs_vfs_label>."
9256 msgstr ""
9257
9258 #. type: =head2
9259 #: ../src/guestfs-actions.pod:1827
9260 msgid "guestfs_findfs_uuid"
9261 msgstr ""
9262
9263 #. type: verbatim
9264 #: ../src/guestfs-actions.pod:1829
9265 #, no-wrap
9266 msgid ""
9267 " char *\n"
9268 " guestfs_findfs_uuid (guestfs_h *g,\n"
9269 "                      const char *uuid);\n"
9270 "\n"
9271 msgstr ""
9272
9273 #. type: textblock
9274 #: ../src/guestfs-actions.pod:1833 ../fish/guestfish-actions.pod:1246
9275 msgid ""
9276 "This command searches the filesystems and returns the one which has the "
9277 "given UUID.  An error is returned if no such filesystem can be found."
9278 msgstr ""
9279
9280 #. type: textblock
9281 #: ../src/guestfs-actions.pod:1837
9282 msgid "To find the UUID of a filesystem, use C<guestfs_vfs_uuid>."
9283 msgstr ""
9284
9285 #. type: =head2
9286 #: ../src/guestfs-actions.pod:1844
9287 msgid "guestfs_fsck"
9288 msgstr ""
9289
9290 #. type: verbatim
9291 #: ../src/guestfs-actions.pod:1846
9292 #, no-wrap
9293 msgid ""
9294 " int\n"
9295 " guestfs_fsck (guestfs_h *g,\n"
9296 "               const char *fstype,\n"
9297 "               const char *device);\n"
9298 "\n"
9299 msgstr ""
9300
9301 #. type: textblock
9302 #: ../src/guestfs-actions.pod:1851 ../fish/guestfish-actions.pod:1256
9303 msgid ""
9304 "This runs the filesystem checker (fsck) on C<device> which should have "
9305 "filesystem type C<fstype>."
9306 msgstr ""
9307
9308 #. type: textblock
9309 #: ../src/guestfs-actions.pod:1854 ../fish/guestfish-actions.pod:1259
9310 msgid ""
9311 "The returned integer is the status.  See L<fsck(8)> for the list of status "
9312 "codes from C<fsck>."
9313 msgstr ""
9314
9315 #. type: textblock
9316 #: ../src/guestfs-actions.pod:1863 ../fish/guestfish-actions.pod:1268
9317 msgid "Multiple status codes can be summed together."
9318 msgstr ""
9319
9320 #. type: textblock
9321 #: ../src/guestfs-actions.pod:1867 ../fish/guestfish-actions.pod:1272
9322 msgid ""
9323 "A non-zero return code can mean \"success\", for example if errors have been "
9324 "corrected on the filesystem."
9325 msgstr ""
9326
9327 #. type: textblock
9328 #: ../src/guestfs-actions.pod:1872 ../fish/guestfish-actions.pod:1277
9329 msgid "Checking or repairing NTFS volumes is not supported (by linux-ntfs)."
9330 msgstr ""
9331
9332 #. type: textblock
9333 #: ../src/guestfs-actions.pod:1877 ../fish/guestfish-actions.pod:1282
9334 msgid ""
9335 "This command is entirely equivalent to running C<fsck -a -t fstype device>."
9336 msgstr ""
9337
9338 #. type: textblock
9339 #: ../src/guestfs-actions.pod:1881 ../src/guestfs-actions.pod:7414
9340 msgid "(Added in 1.0.16)"
9341 msgstr ""
9342
9343 #. type: =head2
9344 #: ../src/guestfs-actions.pod:1883
9345 msgid "guestfs_get_append"
9346 msgstr ""
9347
9348 #. type: verbatim
9349 #: ../src/guestfs-actions.pod:1885
9350 #, no-wrap
9351 msgid ""
9352 " const char *\n"
9353 " guestfs_get_append (guestfs_h *g);\n"
9354 "\n"
9355 msgstr ""
9356
9357 #. type: textblock
9358 #: ../src/guestfs-actions.pod:1888 ../fish/guestfish-actions.pod:1288
9359 msgid ""
9360 "Return the additional kernel options which are added to the guest kernel "
9361 "command line."
9362 msgstr ""
9363
9364 #. type: textblock
9365 #: ../src/guestfs-actions.pod:1891 ../fish/guestfish-actions.pod:1291
9366 msgid "If C<NULL> then no options are added."
9367 msgstr ""
9368
9369 #. type: textblock
9370 #: ../src/guestfs-actions.pod:1893
9371 msgid ""
9372 "This function returns a string which may be NULL.  There is no way to return "
9373 "an error from this function.  The string is owned by the guest handle and "
9374 "must I<not> be freed."
9375 msgstr ""
9376
9377 #. type: textblock
9378 #: ../src/guestfs-actions.pod:1897 ../src/guestfs-actions.pod:5361
9379 #: ../src/guestfs-actions.pod:5841 ../src/guestfs-actions.pod:6262
9380 #: ../src/guestfs-actions.pod:6281 ../src/guestfs-actions.pod:6297
9381 #: ../src/guestfs-actions.pod:6321 ../src/guestfs-actions.pod:7078
9382 #: ../src/guestfs-actions.pod:7096 ../src/guestfs-actions.pod:7457
9383 msgid "(Added in 1.0.26)"
9384 msgstr ""
9385
9386 #. type: =head2
9387 #: ../src/guestfs-actions.pod:1899
9388 msgid "guestfs_get_attach_method"
9389 msgstr ""
9390
9391 #. type: verbatim
9392 #: ../src/guestfs-actions.pod:1901
9393 #, no-wrap
9394 msgid ""
9395 " char *\n"
9396 " guestfs_get_attach_method (guestfs_h *g);\n"
9397 "\n"
9398 msgstr ""
9399
9400 #. type: textblock
9401 #: ../src/guestfs-actions.pod:1904
9402 msgid "Return the current attach method.  See C<guestfs_set_attach_method>."
9403 msgstr ""
9404
9405 #. type: =head2
9406 #: ../src/guestfs-actions.pod:1909
9407 msgid "guestfs_get_autosync"
9408 msgstr ""
9409
9410 #. type: verbatim
9411 #: ../src/guestfs-actions.pod:1911
9412 #, no-wrap
9413 msgid ""
9414 " int\n"
9415 " guestfs_get_autosync (guestfs_h *g);\n"
9416 "\n"
9417 msgstr ""
9418
9419 #. type: textblock
9420 #: ../src/guestfs-actions.pod:1914 ../fish/guestfish-actions.pod:1303
9421 msgid "Get the autosync flag."
9422 msgstr ""
9423
9424 #. type: =head2
9425 #: ../src/guestfs-actions.pod:1920
9426 msgid "guestfs_get_direct"
9427 msgstr ""
9428
9429 #. type: verbatim
9430 #: ../src/guestfs-actions.pod:1922
9431 #, no-wrap
9432 msgid ""
9433 " int\n"
9434 " guestfs_get_direct (guestfs_h *g);\n"
9435 "\n"
9436 msgstr ""
9437
9438 #. type: textblock
9439 #: ../src/guestfs-actions.pod:1925 ../fish/guestfish-actions.pod:1309
9440 msgid "Return the direct appliance mode flag."
9441 msgstr ""
9442
9443 #. type: textblock
9444 #: ../src/guestfs-actions.pod:1929 ../src/guestfs-actions.pod:5910
9445 msgid "(Added in 1.0.72)"
9446 msgstr ""
9447
9448 #. type: =head2
9449 #: ../src/guestfs-actions.pod:1931
9450 msgid "guestfs_get_e2label"
9451 msgstr ""
9452
9453 #. type: verbatim
9454 #: ../src/guestfs-actions.pod:1933
9455 #, no-wrap
9456 msgid ""
9457 " char *\n"
9458 " guestfs_get_e2label (guestfs_h *g,\n"
9459 "                      const char *device);\n"
9460 "\n"
9461 msgstr ""
9462
9463 #. type: textblock
9464 #: ../src/guestfs-actions.pod:1937 ../fish/guestfish-actions.pod:1315
9465 msgid ""
9466 "This returns the ext2/3/4 filesystem label of the filesystem on C<device>."
9467 msgstr ""
9468
9469 #. type: textblock
9470 #: ../src/guestfs-actions.pod:1943
9471 msgid ""
9472 "This function is deprecated.  In new code, use the L</guestfs_vfs_label> "
9473 "call instead."
9474 msgstr ""
9475
9476 #. type: textblock
9477 #: ../src/guestfs-actions.pod:1950 ../src/guestfs-actions.pod:1971
9478 #: ../src/guestfs-actions.pod:5928 ../src/guestfs-actions.pod:5947
9479 msgid "(Added in 1.0.15)"
9480 msgstr ""
9481
9482 #. type: =head2
9483 #: ../src/guestfs-actions.pod:1952
9484 msgid "guestfs_get_e2uuid"
9485 msgstr ""
9486
9487 #. type: verbatim
9488 #: ../src/guestfs-actions.pod:1954
9489 #, no-wrap
9490 msgid ""
9491 " char *\n"
9492 " guestfs_get_e2uuid (guestfs_h *g,\n"
9493 "                     const char *device);\n"
9494 "\n"
9495 msgstr ""
9496
9497 #. type: textblock
9498 #: ../src/guestfs-actions.pod:1958 ../fish/guestfish-actions.pod:1329
9499 msgid ""
9500 "This returns the ext2/3/4 filesystem UUID of the filesystem on C<device>."
9501 msgstr ""
9502
9503 #. type: textblock
9504 #: ../src/guestfs-actions.pod:1964
9505 msgid ""
9506 "This function is deprecated.  In new code, use the L</guestfs_vfs_uuid> call "
9507 "instead."
9508 msgstr ""
9509
9510 #. type: =head2
9511 #: ../src/guestfs-actions.pod:1973
9512 msgid "guestfs_get_memsize"
9513 msgstr ""
9514
9515 #. type: verbatim
9516 #: ../src/guestfs-actions.pod:1975
9517 #, no-wrap
9518 msgid ""
9519 " int\n"
9520 " guestfs_get_memsize (guestfs_h *g);\n"
9521 "\n"
9522 msgstr ""
9523
9524 #. type: textblock
9525 #: ../src/guestfs-actions.pod:1978 ../fish/guestfish-actions.pod:1343
9526 msgid ""
9527 "This gets the memory size in megabytes allocated to the qemu subprocess."
9528 msgstr ""
9529
9530 #. type: textblock
9531 #: ../src/guestfs-actions.pod:1981
9532 msgid ""
9533 "If C<guestfs_set_memsize> was not called on this handle, and if "
9534 "C<LIBGUESTFS_MEMSIZE> was not set, then this returns the compiled-in default "
9535 "value for memsize."
9536 msgstr ""
9537
9538 #. type: textblock
9539 #: ../src/guestfs-actions.pod:1985 ../src/guestfs-actions.pod:2066
9540 #: ../src/guestfs-actions.pod:5963 ../src/guestfs-actions.pod:6070
9541 #: ../fish/guestfish-actions.pod:1350 ../fish/guestfish-actions.pod:1401
9542 #: ../fish/guestfish-actions.pod:4033 ../fish/guestfish-actions.pod:4120
9543 msgid ""
9544 "For more information on the architecture of libguestfs, see L<guestfs(3)>."
9545 msgstr ""
9546
9547 #. type: textblock
9548 #: ../src/guestfs-actions.pod:1990 ../src/guestfs-actions.pod:4415
9549 #: ../src/guestfs-actions.pod:4612 ../src/guestfs-actions.pod:4631
9550 #: ../src/guestfs-actions.pod:4650 ../src/guestfs-actions.pod:4662
9551 #: ../src/guestfs-actions.pod:4679 ../src/guestfs-actions.pod:4692
9552 #: ../src/guestfs-actions.pod:5586 ../src/guestfs-actions.pod:5968
9553 #: ../src/guestfs-actions.pod:6229 ../src/guestfs-actions.pod:6844
9554 msgid "(Added in 1.0.55)"
9555 msgstr ""
9556
9557 #. type: =head2
9558 #: ../src/guestfs-actions.pod:1992
9559 msgid "guestfs_get_network"
9560 msgstr ""
9561
9562 #. type: verbatim
9563 #: ../src/guestfs-actions.pod:1994
9564 #, no-wrap
9565 msgid ""
9566 " int\n"
9567 " guestfs_get_network (guestfs_h *g);\n"
9568 "\n"
9569 msgstr ""
9570
9571 #. type: textblock
9572 #: ../src/guestfs-actions.pod:1997 ../fish/guestfish-actions.pod:1357
9573 msgid "This returns the enable network flag."
9574 msgstr ""
9575
9576 #. type: textblock
9577 #: ../src/guestfs-actions.pod:2001 ../src/guestfs-actions.pod:5987
9578 msgid "(Added in 1.5.4)"
9579 msgstr ""
9580
9581 #. type: =head2
9582 #: ../src/guestfs-actions.pod:2003
9583 msgid "guestfs_get_path"
9584 msgstr ""
9585
9586 #. type: verbatim
9587 #: ../src/guestfs-actions.pod:2005
9588 #, no-wrap
9589 msgid ""
9590 " const char *\n"
9591 " guestfs_get_path (guestfs_h *g);\n"
9592 "\n"
9593 msgstr ""
9594
9595 #. type: textblock
9596 #: ../src/guestfs-actions.pod:2008 ../fish/guestfish-actions.pod:1363
9597 msgid "Return the current search path."
9598 msgstr ""
9599
9600 #. type: textblock
9601 #: ../src/guestfs-actions.pod:2010 ../fish/guestfish-actions.pod:1365
9602 msgid ""
9603 "This is always non-NULL.  If it wasn't set already, then this will return "
9604 "the default path."
9605 msgstr ""
9606
9607 #. type: textblock
9608 #: ../src/guestfs-actions.pod:2013 ../src/guestfs-actions.pod:2042
9609 msgid ""
9610 "This function returns a string, or NULL on error.  The string is owned by "
9611 "the guest handle and must I<not> be freed."
9612 msgstr ""
9613
9614 #. type: =head2
9615 #: ../src/guestfs-actions.pod:2018
9616 msgid "guestfs_get_pid"
9617 msgstr ""
9618
9619 #. type: verbatim
9620 #: ../src/guestfs-actions.pod:2020
9621 #, no-wrap
9622 msgid ""
9623 " int\n"
9624 " guestfs_get_pid (guestfs_h *g);\n"
9625 "\n"
9626 msgstr ""
9627
9628 #. type: textblock
9629 #: ../src/guestfs-actions.pod:2023 ../fish/guestfish-actions.pod:1374
9630 msgid ""
9631 "Return the process ID of the qemu subprocess.  If there is no qemu "
9632 "subprocess, then this will return an error."
9633 msgstr ""
9634
9635 #. type: textblock
9636 #: ../src/guestfs-actions.pod:2026 ../fish/guestfish-actions.pod:1377
9637 msgid "This is an internal call used for debugging and testing."
9638 msgstr ""
9639
9640 #. type: textblock
9641 #: ../src/guestfs-actions.pod:2030
9642 msgid "(Added in 1.0.56)"
9643 msgstr ""
9644
9645 #. type: =head2
9646 #: ../src/guestfs-actions.pod:2032
9647 msgid "guestfs_get_qemu"
9648 msgstr ""
9649
9650 #. type: verbatim
9651 #: ../src/guestfs-actions.pod:2034
9652 #, no-wrap
9653 msgid ""
9654 " const char *\n"
9655 " guestfs_get_qemu (guestfs_h *g);\n"
9656 "\n"
9657 msgstr ""
9658
9659 #. type: textblock
9660 #: ../src/guestfs-actions.pod:2037 ../fish/guestfish-actions.pod:1383
9661 msgid "Return the current qemu binary."
9662 msgstr ""
9663
9664 #. type: textblock
9665 #: ../src/guestfs-actions.pod:2039 ../fish/guestfish-actions.pod:1385
9666 msgid ""
9667 "This is always non-NULL.  If it wasn't set already, then this will return "
9668 "the default qemu binary name."
9669 msgstr ""
9670
9671 #. type: textblock
9672 #: ../src/guestfs-actions.pod:2045 ../src/guestfs-actions.pod:6032
9673 msgid "(Added in 1.0.6)"
9674 msgstr ""
9675
9676 #. type: =head2
9677 #: ../src/guestfs-actions.pod:2047
9678 msgid "guestfs_get_recovery_proc"
9679 msgstr ""
9680
9681 #. type: verbatim
9682 #: ../src/guestfs-actions.pod:2049
9683 #, no-wrap
9684 msgid ""
9685 " int\n"
9686 " guestfs_get_recovery_proc (guestfs_h *g);\n"
9687 "\n"
9688 msgstr ""
9689
9690 #. type: textblock
9691 #: ../src/guestfs-actions.pod:2052 ../fish/guestfish-actions.pod:1392
9692 msgid "Return the recovery process enabled flag."
9693 msgstr ""
9694
9695 #. type: textblock
9696 #: ../src/guestfs-actions.pod:2056 ../src/guestfs-actions.pod:3525
9697 #: ../src/guestfs-actions.pod:3822 ../src/guestfs-actions.pod:4222
9698 #: ../src/guestfs-actions.pod:4254 ../src/guestfs-actions.pod:5291
9699 #: ../src/guestfs-actions.pod:5634 ../src/guestfs-actions.pod:6056
9700 #: ../src/guestfs-actions.pod:6747 ../src/guestfs-actions.pod:6767
9701 #: ../src/guestfs-actions.pod:6959
9702 msgid "(Added in 1.0.77)"
9703 msgstr ""
9704
9705 #. type: =head2
9706 #: ../src/guestfs-actions.pod:2058
9707 msgid "guestfs_get_selinux"
9708 msgstr ""
9709
9710 #. type: verbatim
9711 #: ../src/guestfs-actions.pod:2060
9712 #, no-wrap
9713 msgid ""
9714 " int\n"
9715 " guestfs_get_selinux (guestfs_h *g);\n"
9716 "\n"
9717 msgstr ""
9718
9719 #. type: textblock
9720 #: ../src/guestfs-actions.pod:2063
9721 msgid ""
9722 "This returns the current setting of the selinux flag which is passed to the "
9723 "appliance at boot time.  See C<guestfs_set_selinux>."
9724 msgstr ""
9725
9726 #. type: textblock
9727 #: ../src/guestfs-actions.pod:2071 ../src/guestfs-actions.pod:2134
9728 #: ../src/guestfs-actions.pod:6075 ../src/guestfs-actions.pod:6133
9729 msgid "(Added in 1.0.67)"
9730 msgstr ""
9731
9732 #. type: =head2
9733 #: ../src/guestfs-actions.pod:2073
9734 msgid "guestfs_get_state"
9735 msgstr ""
9736
9737 #. type: verbatim
9738 #: ../src/guestfs-actions.pod:2075
9739 #, no-wrap
9740 msgid ""
9741 " int\n"
9742 " guestfs_get_state (guestfs_h *g);\n"
9743 "\n"
9744 msgstr ""
9745
9746 #. type: textblock
9747 #: ../src/guestfs-actions.pod:2078 ../fish/guestfish-actions.pod:1408
9748 msgid ""
9749 "This returns the current state as an opaque integer.  This is only useful "
9750 "for printing debug and internal error messages."
9751 msgstr ""
9752
9753 #. type: textblock
9754 #: ../src/guestfs-actions.pod:2081 ../src/guestfs-actions.pod:3323
9755 #: ../src/guestfs-actions.pod:3352 ../src/guestfs-actions.pod:3413
9756 #: ../src/guestfs-actions.pod:3440 ../fish/guestfish-actions.pod:1411
9757 #: ../fish/guestfish-actions.pod:2347 ../fish/guestfish-actions.pod:2365
9758 #: ../fish/guestfish-actions.pod:2403 ../fish/guestfish-actions.pod:2419
9759 msgid "For more information on states, see L<guestfs(3)>."
9760 msgstr ""
9761
9762 #. type: =head2
9763 #: ../src/guestfs-actions.pod:2087
9764 msgid "guestfs_get_trace"
9765 msgstr ""
9766
9767 #. type: verbatim
9768 #: ../src/guestfs-actions.pod:2089
9769 #, no-wrap
9770 msgid ""
9771 " int\n"
9772 " guestfs_get_trace (guestfs_h *g);\n"
9773 "\n"
9774 msgstr ""
9775
9776 #. type: textblock
9777 #: ../src/guestfs-actions.pod:2092 ../fish/guestfish-actions.pod:1417
9778 msgid "Return the command trace flag."
9779 msgstr ""
9780
9781 #. type: =head2
9782 #: ../src/guestfs-actions.pod:2098
9783 msgid "guestfs_get_umask"
9784 msgstr ""
9785
9786 #. type: verbatim
9787 #: ../src/guestfs-actions.pod:2100
9788 #, no-wrap
9789 msgid ""
9790 " int\n"
9791 " guestfs_get_umask (guestfs_h *g);\n"
9792 "\n"
9793 msgstr ""
9794
9795 #. type: textblock
9796 #: ../src/guestfs-actions.pod:2103
9797 msgid ""
9798 "Return the current umask.  By default the umask is C<022> unless it has been "
9799 "set by calling C<guestfs_umask>."
9800 msgstr ""
9801
9802 #. type: =head2
9803 #: ../src/guestfs-actions.pod:2110
9804 msgid "guestfs_get_verbose"
9805 msgstr ""
9806
9807 #. type: verbatim
9808 #: ../src/guestfs-actions.pod:2112
9809 #, no-wrap
9810 msgid ""
9811 " int\n"
9812 " guestfs_get_verbose (guestfs_h *g);\n"
9813 "\n"
9814 msgstr ""
9815
9816 #. type: textblock
9817 #: ../src/guestfs-actions.pod:2115 ../fish/guestfish-actions.pod:1430
9818 msgid "This returns the verbose messages flag."
9819 msgstr ""
9820
9821 #. type: =head2
9822 #: ../src/guestfs-actions.pod:2121
9823 msgid "guestfs_getcon"
9824 msgstr ""
9825
9826 #. type: verbatim
9827 #: ../src/guestfs-actions.pod:2123
9828 #, no-wrap
9829 msgid ""
9830 " char *\n"
9831 " guestfs_getcon (guestfs_h *g);\n"
9832 "\n"
9833 msgstr ""
9834
9835 #. type: textblock
9836 #: ../src/guestfs-actions.pod:2126 ../fish/guestfish-actions.pod:1436
9837 msgid "This gets the SELinux security context of the daemon."
9838 msgstr ""
9839
9840 #. type: textblock
9841 #: ../src/guestfs-actions.pod:2128
9842 msgid ""
9843 "See the documentation about SELINUX in L<guestfs(3)>, and C<guestfs_setcon>"
9844 msgstr ""
9845
9846 #. type: =head2
9847 #: ../src/guestfs-actions.pod:2136
9848 msgid "guestfs_getxattr"
9849 msgstr ""
9850
9851 #. type: verbatim
9852 #: ../src/guestfs-actions.pod:2138
9853 #, no-wrap
9854 msgid ""
9855 " char *\n"
9856 " guestfs_getxattr (guestfs_h *g,\n"
9857 "                   const char *path,\n"
9858 "                   const char *name,\n"
9859 "                   size_t *size_r);\n"
9860 "\n"
9861 msgstr ""
9862
9863 #. type: textblock
9864 #: ../src/guestfs-actions.pod:2144
9865 msgid ""
9866 "Get a single extended attribute from file C<path> named C<name>.  This call "
9867 "follows symlinks.  If you want to lookup an extended attribute for the "
9868 "symlink itself, use C<guestfs_lgetxattr>."
9869 msgstr ""
9870
9871 #. type: textblock
9872 #: ../src/guestfs-actions.pod:2148 ../src/guestfs-actions.pod:3539
9873 msgid ""
9874 "Normally it is better to get all extended attributes from a file in one go "
9875 "by calling C<guestfs_getxattrs>.  However some Linux filesystem "
9876 "implementations are buggy and do not provide a way to list out attributes.  "
9877 "For these filesystems (notably ntfs-3g)  you have to know the names of the "
9878 "extended attributes you want in advance and call this function."
9879 msgstr ""
9880
9881 #. type: textblock
9882 #: ../src/guestfs-actions.pod:2155 ../src/guestfs-actions.pod:3546
9883 #: ../fish/guestfish-actions.pod:1456 ../fish/guestfish-actions.pod:2484
9884 msgid ""
9885 "Extended attribute values are blobs of binary data.  If there is no extended "
9886 "attribute named C<name>, this returns an error."
9887 msgstr ""
9888
9889 #. type: textblock
9890 #: ../src/guestfs-actions.pod:2158
9891 msgid "See also: C<guestfs_getxattrs>, C<guestfs_lgetxattr>, L<attr(5)>."
9892 msgstr ""
9893
9894 #. type: textblock
9895 #: ../src/guestfs-actions.pod:2160 ../src/guestfs-actions.pod:2373
9896 #: ../src/guestfs-actions.pod:3551 ../src/guestfs-actions.pod:5284
9897 #: ../src/guestfs-actions.pod:5310 ../src/guestfs-actions.pod:5491
9898 msgid ""
9899 "This function returns a buffer, or NULL on error.  The size of the returned "
9900 "buffer is written to C<*size_r>.  I<The caller must free the returned buffer "
9901 "after use>."
9902 msgstr ""
9903
9904 #. type: textblock
9905 #: ../src/guestfs-actions.pod:2164 ../src/guestfs-actions.pod:3555
9906 msgid "(Added in 1.7.24)"
9907 msgstr ""
9908
9909 #. type: =head2
9910 #: ../src/guestfs-actions.pod:2166
9911 msgid "guestfs_getxattrs"
9912 msgstr ""
9913
9914 #. type: verbatim
9915 #: ../src/guestfs-actions.pod:2168
9916 #, no-wrap
9917 msgid ""
9918 " struct guestfs_xattr_list *\n"
9919 " guestfs_getxattrs (guestfs_h *g,\n"
9920 "                    const char *path);\n"
9921 "\n"
9922 msgstr ""
9923
9924 #. type: textblock
9925 #: ../src/guestfs-actions.pod:2172 ../fish/guestfish-actions.pod:1465
9926 msgid ""
9927 "This call lists the extended attributes of the file or directory C<path>."
9928 msgstr ""
9929
9930 #. type: textblock
9931 #: ../src/guestfs-actions.pod:2175 ../fish/guestfish-actions.pod:1468
9932 msgid ""
9933 "At the system call level, this is a combination of the L<listxattr(2)> and "
9934 "L<getxattr(2)> calls."
9935 msgstr ""
9936
9937 #. type: textblock
9938 #: ../src/guestfs-actions.pod:2178
9939 msgid "See also: C<guestfs_lgetxattrs>, L<attr(5)>."
9940 msgstr ""
9941
9942 #. type: textblock
9943 #: ../src/guestfs-actions.pod:2180 ../src/guestfs-actions.pod:3567
9944 #: ../src/guestfs-actions.pod:4218
9945 msgid ""
9946 "This function returns a C<struct guestfs_xattr_list *>, or NULL if there was "
9947 "an error.  I<The caller must call C<guestfs_free_xattr_list> after use>."
9948 msgstr ""
9949
9950 #. type: textblock
9951 #: ../src/guestfs-actions.pod:2184 ../src/guestfs-actions.pod:3571
9952 #: ../src/guestfs-actions.pod:3736 ../src/guestfs-actions.pod:3772
9953 #: ../src/guestfs-actions.pod:5664 ../src/guestfs-actions.pod:6152
9954 #: ../src/guestfs-actions.pod:7522
9955 msgid "(Added in 1.0.59)"
9956 msgstr ""
9957
9958 #. type: =head2
9959 #: ../src/guestfs-actions.pod:2186
9960 msgid "guestfs_glob_expand"
9961 msgstr ""
9962
9963 #. type: verbatim
9964 #: ../src/guestfs-actions.pod:2188
9965 #, no-wrap
9966 msgid ""
9967 " char **\n"
9968 " guestfs_glob_expand (guestfs_h *g,\n"
9969 "                      const char *pattern);\n"
9970 "\n"
9971 msgstr ""
9972
9973 #. type: textblock
9974 #: ../src/guestfs-actions.pod:2192 ../fish/guestfish-actions.pod:1477
9975 msgid ""
9976 "This command searches for all the pathnames matching C<pattern> according to "
9977 "the wildcard expansion rules used by the shell."
9978 msgstr ""
9979
9980 #. type: textblock
9981 #: ../src/guestfs-actions.pod:2196 ../fish/guestfish-actions.pod:1481
9982 msgid ""
9983 "If no paths match, then this returns an empty list (note: not an error)."
9984 msgstr ""
9985
9986 #. type: textblock
9987 #: ../src/guestfs-actions.pod:2199 ../fish/guestfish-actions.pod:1484
9988 msgid ""
9989 "It is just a wrapper around the C L<glob(3)> function with flags C<GLOB_MARK|"
9990 "GLOB_BRACE>.  See that manual page for more details."
9991 msgstr ""
9992
9993 #. type: textblock
9994 #: ../src/guestfs-actions.pod:2207 ../src/guestfs-actions.pod:6345
9995 #: ../src/guestfs-actions.pod:6362
9996 msgid "(Added in 1.0.50)"
9997 msgstr ""
9998
9999 #. type: =head2
10000 #: ../src/guestfs-actions.pod:2209
10001 msgid "guestfs_grep"
10002 msgstr ""
10003
10004 #. type: verbatim
10005 #: ../src/guestfs-actions.pod:2211
10006 #, no-wrap
10007 msgid ""
10008 " char **\n"
10009 " guestfs_grep (guestfs_h *g,\n"
10010 "               const char *regex,\n"
10011 "               const char *path);\n"
10012 "\n"
10013 msgstr ""
10014
10015 #. type: textblock
10016 #: ../src/guestfs-actions.pod:2216 ../fish/guestfish-actions.pod:1492
10017 msgid "This calls the external C<grep> program and returns the matching lines."
10018 msgstr ""
10019
10020 #. type: =head2
10021 #: ../src/guestfs-actions.pod:2228
10022 msgid "guestfs_grepi"
10023 msgstr ""
10024
10025 #. type: verbatim
10026 #: ../src/guestfs-actions.pod:2230
10027 #, no-wrap
10028 msgid ""
10029 " char **\n"
10030 " guestfs_grepi (guestfs_h *g,\n"
10031 "                const char *regex,\n"
10032 "                const char *path);\n"
10033 "\n"
10034 msgstr ""
10035
10036 #. type: textblock
10037 #: ../src/guestfs-actions.pod:2235 ../fish/guestfish-actions.pod:1502
10038 msgid ""
10039 "This calls the external C<grep -i> program and returns the matching lines."
10040 msgstr ""
10041
10042 #. type: =head2
10043 #: ../src/guestfs-actions.pod:2247
10044 msgid "guestfs_grub_install"
10045 msgstr ""
10046
10047 #. type: verbatim
10048 #: ../src/guestfs-actions.pod:2249
10049 #, no-wrap
10050 msgid ""
10051 " int\n"
10052 " guestfs_grub_install (guestfs_h *g,\n"
10053 "                       const char *root,\n"
10054 "                       const char *device);\n"
10055 "\n"
10056 msgstr ""
10057
10058 #. type: textblock
10059 #: ../src/guestfs-actions.pod:2254 ../fish/guestfish-actions.pod:1512
10060 msgid ""
10061 "This command installs GRUB 1 (the Grand Unified Bootloader) on C<device>, "
10062 "with the root directory being C<root>."
10063 msgstr ""
10064
10065 #. type: textblock
10066 #: ../src/guestfs-actions.pod:2263 ../fish/guestfish-actions.pod:1521
10067 msgid ""
10068 "There is currently no way in the API to install grub2, which is used by most "
10069 "modern Linux guests.  It is possible to run the grub2 command from the "
10070 "guest, although see the caveats in L<guestfs(3)/RUNNING COMMANDS>."
10071 msgstr ""
10072
10073 #. type: textblock
10074 #: ../src/guestfs-actions.pod:2270 ../fish/guestfish-actions.pod:1528
10075 msgid ""
10076 "This uses C<grub-install> from the host.  Unfortunately grub is not always "
10077 "compatible with itself, so this only works in rather narrow circumstances.  "
10078 "Careful testing with each guest version is advisable."
10079 msgstr ""
10080
10081 #. type: textblock
10082 #: ../src/guestfs-actions.pod:2277 ../fish/guestfish-actions.pod:1535
10083 msgid ""
10084 "If grub-install reports the error \"No suitable drive was found in the "
10085 "generated device map.\" it may be that you need to create a C</boot/grub/"
10086 "device.map> file first that contains the mapping between grub device names "
10087 "and Linux device names.  It is usually sufficient to create a file "
10088 "containing:"
10089 msgstr ""
10090
10091 #. type: verbatim
10092 #: ../src/guestfs-actions.pod:2284 ../fish/guestfish-actions.pod:1542
10093 #, no-wrap
10094 msgid ""
10095 " (hd0) /dev/vda\n"
10096 "\n"
10097 msgstr ""
10098
10099 #. type: textblock
10100 #: ../src/guestfs-actions.pod:2286 ../fish/guestfish-actions.pod:1544
10101 msgid "replacing C</dev/vda> with the name of the installation device."
10102 msgstr ""
10103
10104 #. type: textblock
10105 #: ../src/guestfs-actions.pod:2292
10106 msgid "(Added in 1.0.17)"
10107 msgstr ""
10108
10109 #. type: =head2
10110 #: ../src/guestfs-actions.pod:2294
10111 msgid "guestfs_head"
10112 msgstr ""
10113
10114 #. type: verbatim
10115 #: ../src/guestfs-actions.pod:2296
10116 #, no-wrap
10117 msgid ""
10118 " char **\n"
10119 " guestfs_head (guestfs_h *g,\n"
10120 "               const char *path);\n"
10121 "\n"
10122 msgstr ""
10123
10124 #. type: textblock
10125 #: ../src/guestfs-actions.pod:2300 ../fish/guestfish-actions.pod:1552
10126 msgid ""
10127 "This command returns up to the first 10 lines of a file as a list of strings."
10128 msgstr ""
10129
10130 #. type: =head2
10131 #: ../src/guestfs-actions.pod:2312
10132 msgid "guestfs_head_n"
10133 msgstr ""
10134
10135 #. type: verbatim
10136 #: ../src/guestfs-actions.pod:2314
10137 #, no-wrap
10138 msgid ""
10139 " char **\n"
10140 " guestfs_head_n (guestfs_h *g,\n"
10141 "                 int nrlines,\n"
10142 "                 const char *path);\n"
10143 "\n"
10144 msgstr ""
10145
10146 #. type: textblock
10147 #: ../src/guestfs-actions.pod:2319 ../fish/guestfish-actions.pod:1562
10148 msgid ""
10149 "If the parameter C<nrlines> is a positive number, this returns the first "
10150 "C<nrlines> lines of the file C<path>."
10151 msgstr ""
10152
10153 #. type: textblock
10154 #: ../src/guestfs-actions.pod:2322 ../fish/guestfish-actions.pod:1565
10155 msgid ""
10156 "If the parameter C<nrlines> is a negative number, this returns lines from "
10157 "the file C<path>, excluding the last C<nrlines> lines."
10158 msgstr ""
10159
10160 #. type: textblock
10161 #: ../src/guestfs-actions.pod:2325 ../src/guestfs-actions.pod:6642
10162 #: ../fish/guestfish-actions.pod:1568 ../fish/guestfish-actions.pod:4498
10163 msgid "If the parameter C<nrlines> is zero, this returns an empty list."
10164 msgstr ""
10165
10166 #. type: =head2
10167 #: ../src/guestfs-actions.pod:2336
10168 msgid "guestfs_hexdump"
10169 msgstr ""
10170
10171 #. type: verbatim
10172 #: ../src/guestfs-actions.pod:2338
10173 #, no-wrap
10174 msgid ""
10175 " char *\n"
10176 " guestfs_hexdump (guestfs_h *g,\n"
10177 "                  const char *path);\n"
10178 "\n"
10179 msgstr ""
10180
10181 #. type: textblock
10182 #: ../src/guestfs-actions.pod:2342 ../fish/guestfish-actions.pod:1577
10183 msgid ""
10184 "This runs C<hexdump -C> on the given C<path>.  The result is the human-"
10185 "readable, canonical hex dump of the file."
10186 msgstr ""
10187
10188 #. type: textblock
10189 #: ../src/guestfs-actions.pod:2351 ../src/guestfs-actions.pod:6426
10190 #: ../src/guestfs-actions.pod:6481
10191 msgid "(Added in 1.0.22)"
10192 msgstr ""
10193
10194 #. type: =head2
10195 #: ../src/guestfs-actions.pod:2353
10196 msgid "guestfs_initrd_cat"
10197 msgstr ""
10198
10199 #. type: verbatim
10200 #: ../src/guestfs-actions.pod:2355
10201 #, no-wrap
10202 msgid ""
10203 " char *\n"
10204 " guestfs_initrd_cat (guestfs_h *g,\n"
10205 "                     const char *initrdpath,\n"
10206 "                     const char *filename,\n"
10207 "                     size_t *size_r);\n"
10208 "\n"
10209 msgstr ""
10210
10211 #. type: textblock
10212 #: ../src/guestfs-actions.pod:2361 ../fish/guestfish-actions.pod:1587
10213 msgid ""
10214 "This command unpacks the file C<filename> from the initrd file called "
10215 "C<initrdpath>.  The filename must be given I<without> the initial C</> "
10216 "character."
10217 msgstr ""
10218
10219 #. type: textblock
10220 #: ../src/guestfs-actions.pod:2365 ../fish/guestfish-actions.pod:1591
10221 msgid ""
10222 "For example, in guestfish you could use the following command to examine the "
10223 "boot script (usually called C</init>)  contained in a Linux initrd or "
10224 "initramfs image:"
10225 msgstr ""
10226
10227 #. type: verbatim
10228 #: ../src/guestfs-actions.pod:2369 ../fish/guestfish-actions.pod:1595
10229 #, no-wrap
10230 msgid ""
10231 " initrd-cat /boot/initrd-<version>.img init\n"
10232 "\n"
10233 msgstr ""
10234
10235 #. type: textblock
10236 #: ../src/guestfs-actions.pod:2371
10237 msgid "See also C<guestfs_initrd_list>."
10238 msgstr ""
10239
10240 #. type: =head2
10241 #: ../src/guestfs-actions.pod:2382
10242 msgid "guestfs_initrd_list"
10243 msgstr ""
10244
10245 #. type: verbatim
10246 #: ../src/guestfs-actions.pod:2384
10247 #, no-wrap
10248 msgid ""
10249 " char **\n"
10250 " guestfs_initrd_list (guestfs_h *g,\n"
10251 "                      const char *path);\n"
10252 "\n"
10253 msgstr ""
10254
10255 #. type: textblock
10256 #: ../src/guestfs-actions.pod:2388 ../fish/guestfish-actions.pod:1606
10257 msgid "This command lists out files contained in an initrd."
10258 msgstr ""
10259
10260 #. type: textblock
10261 #: ../src/guestfs-actions.pod:2390 ../fish/guestfish-actions.pod:1608
10262 msgid ""
10263 "The files are listed without any initial C</> character.  The files are "
10264 "listed in the order they appear (not necessarily alphabetical).  Directory "
10265 "names are listed as separate items."
10266 msgstr ""
10267
10268 #. type: textblock
10269 #: ../src/guestfs-actions.pod:2394 ../fish/guestfish-actions.pod:1612
10270 msgid ""
10271 "Old Linux kernels (2.4 and earlier) used a compressed ext2 filesystem as "
10272 "initrd.  We I<only> support the newer initramfs format (compressed cpio "
10273 "files)."
10274 msgstr ""
10275
10276 #. type: =head2
10277 #: ../src/guestfs-actions.pod:2404
10278 msgid "guestfs_inotify_add_watch"
10279 msgstr ""
10280
10281 #. type: verbatim
10282 #: ../src/guestfs-actions.pod:2406
10283 #, no-wrap
10284 msgid ""
10285 " int64_t\n"
10286 " guestfs_inotify_add_watch (guestfs_h *g,\n"
10287 "                            const char *path,\n"
10288 "                            int mask);\n"
10289 "\n"
10290 msgstr ""
10291
10292 #. type: textblock
10293 #: ../src/guestfs-actions.pod:2411 ../fish/guestfish-actions.pod:1620
10294 msgid "Watch C<path> for the events listed in C<mask>."
10295 msgstr ""
10296
10297 #. type: textblock
10298 #: ../src/guestfs-actions.pod:2413 ../fish/guestfish-actions.pod:1622
10299 msgid ""
10300 "Note that if C<path> is a directory then events within that directory are "
10301 "watched, but this does I<not> happen recursively (in subdirectories)."
10302 msgstr ""
10303
10304 #. type: textblock
10305 #: ../src/guestfs-actions.pod:2417 ../fish/guestfish-actions.pod:1626
10306 msgid ""
10307 "Note for non-C or non-Linux callers: the inotify events are defined by the "
10308 "Linux kernel ABI and are listed in C</usr/include/sys/inotify.h>."
10309 msgstr ""
10310
10311 #. type: =head2
10312 #: ../src/guestfs-actions.pod:2425
10313 msgid "guestfs_inotify_close"
10314 msgstr ""
10315
10316 #. type: verbatim
10317 #: ../src/guestfs-actions.pod:2427
10318 #, no-wrap
10319 msgid ""
10320 " int\n"
10321 " guestfs_inotify_close (guestfs_h *g);\n"
10322 "\n"
10323 msgstr ""
10324
10325 #. type: textblock
10326 #: ../src/guestfs-actions.pod:2430 ../fish/guestfish-actions.pod:1634
10327 msgid ""
10328 "This closes the inotify handle which was previously opened by inotify_init.  "
10329 "It removes all watches, throws away any pending events, and deallocates all "
10330 "resources."
10331 msgstr ""
10332
10333 #. type: =head2
10334 #: ../src/guestfs-actions.pod:2438
10335 msgid "guestfs_inotify_files"
10336 msgstr ""
10337
10338 #. type: verbatim
10339 #: ../src/guestfs-actions.pod:2440
10340 #, no-wrap
10341 msgid ""
10342 " char **\n"
10343 " guestfs_inotify_files (guestfs_h *g);\n"
10344 "\n"
10345 msgstr ""
10346
10347 #. type: textblock
10348 #: ../src/guestfs-actions.pod:2443
10349 msgid ""
10350 "This function is a helpful wrapper around C<guestfs_inotify_read> which just "
10351 "returns a list of pathnames of objects that were touched.  The returned "
10352 "pathnames are sorted and deduplicated."
10353 msgstr ""
10354
10355 #. type: =head2
10356 #: ../src/guestfs-actions.pod:2453
10357 msgid "guestfs_inotify_init"
10358 msgstr ""
10359
10360 #. type: verbatim
10361 #: ../src/guestfs-actions.pod:2455
10362 #, no-wrap
10363 msgid ""
10364 " int\n"
10365 " guestfs_inotify_init (guestfs_h *g,\n"
10366 "                       int maxevents);\n"
10367 "\n"
10368 msgstr ""
10369
10370 #. type: textblock
10371 #: ../src/guestfs-actions.pod:2459 ../fish/guestfish-actions.pod:1650
10372 msgid ""
10373 "This command creates a new inotify handle.  The inotify subsystem can be "
10374 "used to notify events which happen to objects in the guest filesystem."
10375 msgstr ""
10376
10377 #. type: textblock
10378 #: ../src/guestfs-actions.pod:2463
10379 msgid ""
10380 "C<maxevents> is the maximum number of events which will be queued up between "
10381 "calls to C<guestfs_inotify_read> or C<guestfs_inotify_files>.  If this is "
10382 "passed as C<0>, then the kernel (or previously set)  default is used.  For "
10383 "Linux 2.6.29 the default was 16384 events.  Beyond this limit, the kernel "
10384 "throws away events, but records the fact that it threw them away by setting "
10385 "a flag C<IN_Q_OVERFLOW> in the returned structure list (see "
10386 "C<guestfs_inotify_read>)."
10387 msgstr ""
10388
10389 #. type: textblock
10390 #: ../src/guestfs-actions.pod:2473
10391 msgid ""
10392 "Before any events are generated, you have to add some watches to the "
10393 "internal watch list.  See: C<guestfs_inotify_add_watch>, "
10394 "C<guestfs_inotify_rm_watch> and C<guestfs_inotify_watch_all>."
10395 msgstr ""
10396
10397 #. type: textblock
10398 #: ../src/guestfs-actions.pod:2479
10399 msgid ""
10400 "Queued up events should be read periodically by calling "
10401 "C<guestfs_inotify_read> (or C<guestfs_inotify_files> which is just a helpful "
10402 "wrapper around C<guestfs_inotify_read>).  If you don't read the events out "
10403 "often enough then you risk the internal queue overflowing."
10404 msgstr ""
10405
10406 #. type: textblock
10407 #: ../src/guestfs-actions.pod:2486
10408 msgid ""
10409 "The handle should be closed after use by calling C<guestfs_inotify_close>.  "
10410 "This also removes any watches automatically."
10411 msgstr ""
10412
10413 #. type: textblock
10414 #: ../src/guestfs-actions.pod:2490 ../fish/guestfish-actions.pod:1681
10415 msgid ""
10416 "See also L<inotify(7)> for an overview of the inotify interface as exposed "
10417 "by the Linux kernel, which is roughly what we expose via libguestfs.  Note "
10418 "that there is one global inotify handle per libguestfs instance."
10419 msgstr ""
10420
10421 #. type: =head2
10422 #: ../src/guestfs-actions.pod:2499
10423 msgid "guestfs_inotify_read"
10424 msgstr ""
10425
10426 #. type: verbatim
10427 #: ../src/guestfs-actions.pod:2501
10428 #, no-wrap
10429 msgid ""
10430 " struct guestfs_inotify_event_list *\n"
10431 " guestfs_inotify_read (guestfs_h *g);\n"
10432 "\n"
10433 msgstr ""
10434
10435 #. type: textblock
10436 #: ../src/guestfs-actions.pod:2504 ../fish/guestfish-actions.pod:1690
10437 msgid ""
10438 "Return the complete queue of events that have happened since the previous "
10439 "read call."
10440 msgstr ""
10441
10442 #. type: textblock
10443 #: ../src/guestfs-actions.pod:2507 ../fish/guestfish-actions.pod:1693
10444 msgid "If no events have happened, this returns an empty list."
10445 msgstr ""
10446
10447 #. type: textblock
10448 #: ../src/guestfs-actions.pod:2509 ../fish/guestfish-actions.pod:1695
10449 msgid ""
10450 "I<Note>: In order to make sure that all events have been read, you must call "
10451 "this function repeatedly until it returns an empty list.  The reason is that "
10452 "the call will read events up to the maximum appliance-to-host message size "
10453 "and leave remaining events in the queue."
10454 msgstr ""
10455
10456 #. type: textblock
10457 #: ../src/guestfs-actions.pod:2515
10458 msgid ""
10459 "This function returns a C<struct guestfs_inotify_event_list *>, or NULL if "
10460 "there was an error.  I<The caller must call "
10461 "C<guestfs_free_inotify_event_list> after use>."
10462 msgstr ""
10463
10464 #. type: =head2
10465 #: ../src/guestfs-actions.pod:2521
10466 msgid "guestfs_inotify_rm_watch"
10467 msgstr ""
10468
10469 #. type: verbatim
10470 #: ../src/guestfs-actions.pod:2523
10471 #, no-wrap
10472 msgid ""
10473 " int\n"
10474 " guestfs_inotify_rm_watch (guestfs_h *g,\n"
10475 "                           int wd);\n"
10476 "\n"
10477 msgstr ""
10478
10479 #. type: textblock
10480 #: ../src/guestfs-actions.pod:2527
10481 msgid ""
10482 "Remove a previously defined inotify watch.  See C<guestfs_inotify_add_watch>."
10483 msgstr ""
10484
10485 #. type: =head2
10486 #: ../src/guestfs-actions.pod:2534
10487 msgid "guestfs_inspect_get_arch"
10488 msgstr ""
10489
10490 #. type: verbatim
10491 #: ../src/guestfs-actions.pod:2536
10492 #, no-wrap
10493 msgid ""
10494 " char *\n"
10495 " guestfs_inspect_get_arch (guestfs_h *g,\n"
10496 "                           const char *root);\n"
10497 "\n"
10498 msgstr ""
10499
10500 #. type: textblock
10501 #: ../src/guestfs-actions.pod:2540 ../src/guestfs-actions.pod:2563
10502 #: ../src/guestfs-actions.pod:2656 ../src/guestfs-actions.pod:2700
10503 #: ../src/guestfs-actions.pod:2726 ../src/guestfs-actions.pod:2765
10504 #: ../src/guestfs-actions.pod:2787 ../src/guestfs-actions.pod:2814
10505 #: ../src/guestfs-actions.pod:2835 ../src/guestfs-actions.pod:2878
10506 #: ../src/guestfs-actions.pod:2907 ../src/guestfs-actions.pod:2938
10507 #: ../src/guestfs-actions.pod:2962 ../src/guestfs-actions.pod:3017
10508 #: ../src/guestfs-actions.pod:3059 ../src/guestfs-actions.pod:3080
10509 #: ../src/guestfs-actions.pod:3103 ../src/guestfs-actions.pod:3120
10510 #: ../src/guestfs-actions.pod:3137 ../src/guestfs-actions.pod:3156
10511 msgid ""
10512 "This function should only be called with a root device string as returned by "
10513 "C<guestfs_inspect_os>."
10514 msgstr ""
10515
10516 #. type: textblock
10517 #: ../src/guestfs-actions.pod:2543
10518 msgid ""
10519 "This returns the architecture of the inspected operating system.  The "
10520 "possible return values are listed under C<guestfs_file_architecture>."
10521 msgstr ""
10522
10523 #. type: textblock
10524 #: ../src/guestfs-actions.pod:2547 ../fish/guestfish-actions.pod:1719
10525 msgid ""
10526 "If the architecture could not be determined, then the string C<unknown> is "
10527 "returned."
10528 msgstr ""
10529
10530 #. type: textblock
10531 #: ../src/guestfs-actions.pod:2550 ../src/guestfs-actions.pod:2643
10532 #: ../src/guestfs-actions.pod:2754 ../src/guestfs-actions.pod:2774
10533 #: ../src/guestfs-actions.pod:2802 ../src/guestfs-actions.pod:2894
10534 #: ../src/guestfs-actions.pod:2925 ../src/guestfs-actions.pod:2949
10535 #: ../src/guestfs-actions.pod:3003 ../src/guestfs-actions.pod:3046
10536 #: ../src/guestfs-actions.pod:3069 ../src/guestfs-actions.pod:3090
10537 #: ../src/guestfs-actions.pod:3110 ../src/guestfs-actions.pod:3127
10538 #: ../src/guestfs-actions.pod:3146 ../src/guestfs-actions.pod:3249
10539 #: ../src/guestfs-actions.pod:3290 ../fish/guestfish-actions.pod:1722
10540 #: ../fish/guestfish-actions.pod:1808 ../fish/guestfish-actions.pod:1896
10541 #: ../fish/guestfish-actions.pod:1911 ../fish/guestfish-actions.pod:1932
10542 #: ../fish/guestfish-actions.pod:2002 ../fish/guestfish-actions.pod:2026
10543 #: ../fish/guestfish-actions.pod:2043 ../fish/guestfish-actions.pod:2086
10544 #: ../fish/guestfish-actions.pod:2121 ../fish/guestfish-actions.pod:2137
10545 #: ../fish/guestfish-actions.pod:2153 ../fish/guestfish-actions.pod:2166
10546 #: ../fish/guestfish-actions.pod:2179 ../fish/guestfish-actions.pod:2194
10547 #: ../fish/guestfish-actions.pod:2293 ../fish/guestfish-actions.pod:2327
10548 msgid "Please read L<guestfs(3)/INSPECTION> for more details."
10549 msgstr ""
10550
10551 #. type: =head2
10552 #: ../src/guestfs-actions.pod:2557
10553 msgid "guestfs_inspect_get_distro"
10554 msgstr ""
10555
10556 #. type: verbatim
10557 #: ../src/guestfs-actions.pod:2559
10558 #, no-wrap
10559 msgid ""
10560 " char *\n"
10561 " guestfs_inspect_get_distro (guestfs_h *g,\n"
10562 "                             const char *root);\n"
10563 "\n"
10564 msgstr ""
10565
10566 #. type: textblock
10567 #: ../src/guestfs-actions.pod:2566 ../fish/guestfish-actions.pod:1731
10568 msgid ""
10569 "This returns the distro (distribution) of the inspected operating system."
10570 msgstr ""
10571
10572 #. type: textblock
10573 #: ../src/guestfs-actions.pod:2569 ../fish/guestfish-actions.pod:1734
10574 msgid "Currently defined distros are:"
10575 msgstr ""
10576
10577 #. type: =item
10578 #: ../src/guestfs-actions.pod:2573 ../fish/guestfish-actions.pod:1738
10579 msgid "\"archlinux\""
10580 msgstr "\"archlinux\""
10581
10582 #. type: textblock
10583 #: ../src/guestfs-actions.pod:2575 ../fish/guestfish-actions.pod:1740
10584 msgid "Arch Linux."
10585 msgstr "Arch Linux."
10586
10587 #. type: =item
10588 #: ../src/guestfs-actions.pod:2577 ../fish/guestfish-actions.pod:1742
10589 #, fuzzy
10590 #| msgid "\"gentoo\""
10591 msgid "\"centos\""
10592 msgstr "\"gentoo\""
10593
10594 #. type: textblock
10595 #: ../src/guestfs-actions.pod:2579 ../fish/guestfish-actions.pod:1744
10596 msgid "CentOS."
10597 msgstr ""
10598
10599 #. type: =item
10600 #: ../src/guestfs-actions.pod:2581 ../fish/guestfish-actions.pod:1746
10601 msgid "\"debian\""
10602 msgstr "\"debian\""
10603
10604 #. type: textblock
10605 #: ../src/guestfs-actions.pod:2583 ../fish/guestfish-actions.pod:1748
10606 msgid "Debian."
10607 msgstr "Debian."
10608
10609 #. type: =item
10610 #: ../src/guestfs-actions.pod:2585 ../fish/guestfish-actions.pod:1750
10611 msgid "\"fedora\""
10612 msgstr "\"fedora\""
10613
10614 #. type: textblock
10615 #: ../src/guestfs-actions.pod:2587 ../fish/guestfish-actions.pod:1752
10616 msgid "Fedora."
10617 msgstr "Fedora."
10618
10619 #. type: =item
10620 #: ../src/guestfs-actions.pod:2589 ../fish/guestfish-actions.pod:1754
10621 msgid "\"gentoo\""
10622 msgstr "\"gentoo\""
10623
10624 #. type: textblock
10625 #: ../src/guestfs-actions.pod:2591 ../fish/guestfish-actions.pod:1756
10626 msgid "Gentoo."
10627 msgstr "Gentoo."
10628
10629 #. type: =item
10630 #: ../src/guestfs-actions.pod:2593 ../fish/guestfish-actions.pod:1758
10631 msgid "\"linuxmint\""
10632 msgstr "\"linuxmint\""
10633
10634 #. type: textblock
10635 #: ../src/guestfs-actions.pod:2595 ../fish/guestfish-actions.pod:1760
10636 msgid "Linux Mint."
10637 msgstr "Linux Mint."
10638
10639 #. type: =item
10640 #: ../src/guestfs-actions.pod:2597 ../fish/guestfish-actions.pod:1762
10641 msgid "\"mandriva\""
10642 msgstr "\"mandriva\""
10643
10644 #. type: textblock
10645 #: ../src/guestfs-actions.pod:2599 ../fish/guestfish-actions.pod:1764
10646 msgid "Mandriva."
10647 msgstr "Mandriva."
10648
10649 #. type: =item
10650 #: ../src/guestfs-actions.pod:2601 ../fish/guestfish-actions.pod:1766
10651 msgid "\"meego\""
10652 msgstr "\"meego\""
10653
10654 #. type: textblock
10655 #: ../src/guestfs-actions.pod:2603 ../fish/guestfish-actions.pod:1768
10656 msgid "MeeGo."
10657 msgstr "MeeGo."
10658
10659 #. type: =item
10660 #: ../src/guestfs-actions.pod:2605 ../fish/guestfish-actions.pod:1770
10661 msgid "\"pardus\""
10662 msgstr "\"pardus\""
10663
10664 #. type: textblock
10665 #: ../src/guestfs-actions.pod:2607 ../fish/guestfish-actions.pod:1772
10666 msgid "Pardus."
10667 msgstr "Pardus."
10668
10669 #. type: =item
10670 #: ../src/guestfs-actions.pod:2609 ../fish/guestfish-actions.pod:1774
10671 msgid "\"redhat-based\""
10672 msgstr "\"redhat-based\""
10673
10674 #. type: textblock
10675 #: ../src/guestfs-actions.pod:2611 ../fish/guestfish-actions.pod:1776
10676 msgid "Some Red Hat-derived distro."
10677 msgstr "Дистрибутив, що походить від Red Hat."
10678
10679 #. type: =item
10680 #: ../src/guestfs-actions.pod:2613 ../fish/guestfish-actions.pod:1778
10681 msgid "\"rhel\""
10682 msgstr "\"rhel\""
10683
10684 #. type: textblock
10685 #: ../src/guestfs-actions.pod:2615 ../fish/guestfish-actions.pod:1780
10686 #, fuzzy
10687 #| msgid "Red Hat Enterprise Linux and some derivatives."
10688 msgid "Red Hat Enterprise Linux."
10689 msgstr "Red Hat Enterprise Linux та деякі з похідних дистрибутивів."
10690
10691 #. type: =item
10692 #: ../src/guestfs-actions.pod:2617 ../fish/guestfish-actions.pod:1782
10693 msgid "\"scientificlinux\""
10694 msgstr ""
10695
10696 #. type: textblock
10697 #: ../src/guestfs-actions.pod:2619 ../fish/guestfish-actions.pod:1784
10698 msgid "Scientific Linux."
10699 msgstr ""
10700
10701 #. type: =item
10702 #: ../src/guestfs-actions.pod:2621 ../fish/guestfish-actions.pod:1786
10703 msgid "\"slackware\""
10704 msgstr ""
10705
10706 #. type: textblock
10707 #: ../src/guestfs-actions.pod:2623 ../fish/guestfish-actions.pod:1788
10708 msgid "Slackware."
10709 msgstr ""
10710
10711 #. type: =item
10712 #: ../src/guestfs-actions.pod:2625 ../fish/guestfish-actions.pod:1790
10713 msgid "\"ubuntu\""
10714 msgstr "\"ubuntu\""
10715
10716 #. type: textblock
10717 #: ../src/guestfs-actions.pod:2627 ../fish/guestfish-actions.pod:1792
10718 msgid "Ubuntu."
10719 msgstr "Ubuntu."
10720
10721 #. type: =item
10722 #: ../src/guestfs-actions.pod:2629 ../src/guestfs-actions.pod:2745
10723 #: ../src/guestfs-actions.pod:3037 ../fish/guestfish-actions.pod:1794
10724 #: ../fish/guestfish-actions.pod:1887 ../fish/guestfish-actions.pod:2112
10725 msgid "\"unknown\""
10726 msgstr "\"unknown\""
10727
10728 #. type: textblock
10729 #: ../src/guestfs-actions.pod:2631 ../fish/guestfish-actions.pod:1796
10730 msgid "The distro could not be determined."
10731 msgstr "Дистрибутив, тип якого не вдалося визначити."
10732
10733 #. type: =item
10734 #: ../src/guestfs-actions.pod:2633 ../src/guestfs-actions.pod:3029
10735 #: ../fish/guestfish-actions.pod:1798 ../fish/guestfish-actions.pod:2104
10736 msgid "\"windows\""
10737 msgstr "\"windows\""
10738
10739 #. type: textblock
10740 #: ../src/guestfs-actions.pod:2635 ../fish/guestfish-actions.pod:1800
10741 msgid ""
10742 "Windows does not have distributions.  This string is returned if the OS type "
10743 "is Windows."
10744 msgstr ""
10745
10746 #. type: textblock
10747 #: ../src/guestfs-actions.pod:2640 ../src/guestfs-actions.pod:2751
10748 #: ../src/guestfs-actions.pod:3043 ../fish/guestfish-actions.pod:1805
10749 #: ../fish/guestfish-actions.pod:1893 ../fish/guestfish-actions.pod:2118
10750 msgid ""
10751 "Future versions of libguestfs may return other strings here.  The caller "
10752 "should be prepared to handle any string."
10753 msgstr ""
10754
10755 #. type: =head2
10756 #: ../src/guestfs-actions.pod:2650
10757 msgid "guestfs_inspect_get_drive_mappings"
10758 msgstr ""
10759
10760 #. type: verbatim
10761 #: ../src/guestfs-actions.pod:2652
10762 #, no-wrap
10763 msgid ""
10764 " char **\n"
10765 " guestfs_inspect_get_drive_mappings (guestfs_h *g,\n"
10766 "                                     const char *root);\n"
10767 "\n"
10768 msgstr ""
10769
10770 #. type: textblock
10771 #: ../src/guestfs-actions.pod:2659 ../fish/guestfish-actions.pod:1817
10772 msgid ""
10773 "This call is useful for Windows which uses a primitive system of assigning "
10774 "drive letters (like \"C:\") to partitions.  This inspection API examines the "
10775 "Windows Registry to find out how disks/partitions are mapped to drive "
10776 "letters, and returns a hash table as in the example below:"
10777 msgstr ""
10778
10779 #. type: verbatim
10780 #: ../src/guestfs-actions.pod:2665 ../fish/guestfish-actions.pod:1823
10781 #, no-wrap
10782 msgid ""
10783 " C      =>     /dev/vda2\n"
10784 " E      =>     /dev/vdb1\n"
10785 " F      =>     /dev/vdc1\n"
10786 "\n"
10787 msgstr ""
10788
10789 #. type: textblock
10790 #: ../src/guestfs-actions.pod:2669 ../fish/guestfish-actions.pod:1827
10791 msgid ""
10792 "Note that keys are drive letters.  For Windows, the key is case insensitive "
10793 "and just contains the drive letter, without the customary colon separator "
10794 "character."
10795 msgstr ""
10796
10797 #. type: textblock
10798 #: ../src/guestfs-actions.pod:2673 ../fish/guestfish-actions.pod:1831
10799 msgid ""
10800 "In future we may support other operating systems that also used drive "
10801 "letters, but the keys for those might not be case insensitive and might be "
10802 "longer than 1 character.  For example in OS-9, hard drives were named C<h0>, "
10803 "C<h1> etc."
10804 msgstr ""
10805
10806 #. type: textblock
10807 #: ../src/guestfs-actions.pod:2678 ../fish/guestfish-actions.pod:1836
10808 msgid ""
10809 "For Windows guests, currently only hard drive mappings are returned.  "
10810 "Removable disks (eg. DVD-ROMs) are ignored."
10811 msgstr ""
10812
10813 #. type: textblock
10814 #: ../src/guestfs-actions.pod:2681 ../fish/guestfish-actions.pod:1839
10815 msgid ""
10816 "For guests that do not use drive mappings, or if the drive mappings could "
10817 "not be determined, this returns an empty hash table."
10818 msgstr ""
10819
10820 #. type: textblock
10821 #: ../src/guestfs-actions.pod:2684
10822 msgid ""
10823 "Please read L<guestfs(3)/INSPECTION> for more details.  See also "
10824 "C<guestfs_inspect_get_mountpoints>, C<guestfs_inspect_get_filesystems>."
10825 msgstr ""
10826
10827 #. type: textblock
10828 #: ../src/guestfs-actions.pod:2688 ../src/guestfs-actions.pod:2864
10829 #: ../src/guestfs-actions.pod:3624 ../src/guestfs-actions.pod:4841
10830 #: ../src/guestfs-actions.pod:6783
10831 msgid ""
10832 "This function returns a NULL-terminated array of strings, or NULL if there "
10833 "was an error.  The array of strings will always have length C<2n+1>, where "
10834 "C<n> keys and values alternate, followed by the trailing NULL entry.  I<The "
10835 "caller must free the strings and the array after use>."
10836 msgstr ""
10837
10838 #. type: =head2
10839 #: ../src/guestfs-actions.pod:2694
10840 msgid "guestfs_inspect_get_filesystems"
10841 msgstr ""
10842
10843 #. type: verbatim
10844 #: ../src/guestfs-actions.pod:2696
10845 #, no-wrap
10846 msgid ""
10847 " char **\n"
10848 " guestfs_inspect_get_filesystems (guestfs_h *g,\n"
10849 "                                  const char *root);\n"
10850 "\n"
10851 msgstr ""
10852
10853 #. type: textblock
10854 #: ../src/guestfs-actions.pod:2703 ../fish/guestfish-actions.pod:1853
10855 msgid ""
10856 "This returns a list of all the filesystems that we think are associated with "
10857 "this operating system.  This includes the root filesystem, other ordinary "
10858 "filesystems, and non-mounted devices like swap partitions."
10859 msgstr ""
10860
10861 #. type: textblock
10862 #: ../src/guestfs-actions.pod:2708 ../fish/guestfish-actions.pod:1858
10863 msgid ""
10864 "In the case of a multi-boot virtual machine, it is possible for a filesystem "
10865 "to be shared between operating systems."
10866 msgstr ""
10867
10868 #. type: textblock
10869 #: ../src/guestfs-actions.pod:2711
10870 msgid ""
10871 "Please read L<guestfs(3)/INSPECTION> for more details.  See also "
10872 "C<guestfs_inspect_get_mountpoints>."
10873 msgstr ""
10874
10875 #. type: =head2
10876 #: ../src/guestfs-actions.pod:2720
10877 msgid "guestfs_inspect_get_format"
10878 msgstr ""
10879
10880 #. type: verbatim
10881 #: ../src/guestfs-actions.pod:2722
10882 #, no-wrap
10883 msgid ""
10884 " char *\n"
10885 " guestfs_inspect_get_format (guestfs_h *g,\n"
10886 "                             const char *root);\n"
10887 "\n"
10888 msgstr ""
10889
10890 #. type: textblock
10891 #: ../src/guestfs-actions.pod:2729 ../fish/guestfish-actions.pod:1871
10892 msgid ""
10893 "This returns the format of the inspected operating system.  You can use it "
10894 "to detect install images, live CDs and similar."
10895 msgstr ""
10896
10897 #. type: textblock
10898 #: ../src/guestfs-actions.pod:2732 ../fish/guestfish-actions.pod:1874
10899 msgid "Currently defined formats are:"
10900 msgstr ""
10901
10902 #. type: =item
10903 #: ../src/guestfs-actions.pod:2736 ../fish/guestfish-actions.pod:1878
10904 msgid "\"installed\""
10905 msgstr "\"installed\""
10906
10907 #. type: textblock
10908 #: ../src/guestfs-actions.pod:2738 ../fish/guestfish-actions.pod:1880
10909 msgid "This is an installed operating system."
10910 msgstr "Це встановлена операційна система."
10911
10912 #. type: =item
10913 #: ../src/guestfs-actions.pod:2740 ../fish/guestfish-actions.pod:1882
10914 msgid "\"installer\""
10915 msgstr ""
10916
10917 #. type: textblock
10918 #: ../src/guestfs-actions.pod:2742 ../fish/guestfish-actions.pod:1884
10919 msgid ""
10920 "The disk image being inspected is not an installed operating system, but a "
10921 "I<bootable> install disk, live CD, or similar."
10922 msgstr ""
10923
10924 #. type: textblock
10925 #: ../src/guestfs-actions.pod:2747 ../fish/guestfish-actions.pod:1889
10926 msgid "The format of this disk image is not known."
10927 msgstr ""
10928
10929 #. type: =head2
10930 #: ../src/guestfs-actions.pod:2759
10931 msgid "guestfs_inspect_get_hostname"
10932 msgstr ""
10933
10934 #. type: verbatim
10935 #: ../src/guestfs-actions.pod:2761
10936 #, no-wrap
10937 msgid ""
10938 " char *\n"
10939 " guestfs_inspect_get_hostname (guestfs_h *g,\n"
10940 "                               const char *root);\n"
10941 "\n"
10942 msgstr ""
10943
10944 #. type: textblock
10945 #: ../src/guestfs-actions.pod:2768 ../fish/guestfish-actions.pod:1905
10946 msgid ""
10947 "This function returns the hostname of the operating system as found by "
10948 "inspection of the guest's configuration files."
10949 msgstr ""
10950
10951 #. type: textblock
10952 #: ../src/guestfs-actions.pod:2771 ../fish/guestfish-actions.pod:1908
10953 msgid ""
10954 "If the hostname could not be determined, then the string C<unknown> is "
10955 "returned."
10956 msgstr ""
10957
10958 #. type: textblock
10959 #: ../src/guestfs-actions.pod:2779
10960 msgid "(Added in 1.7.9)"
10961 msgstr ""
10962
10963 #. type: =head2
10964 #: ../src/guestfs-actions.pod:2781
10965 msgid "guestfs_inspect_get_major_version"
10966 msgstr ""
10967
10968 #. type: verbatim
10969 #: ../src/guestfs-actions.pod:2783
10970 #, no-wrap
10971 msgid ""
10972 " int\n"
10973 " guestfs_inspect_get_major_version (guestfs_h *g,\n"
10974 "                                    const char *root);\n"
10975 "\n"
10976 msgstr ""
10977
10978 #. type: textblock
10979 #: ../src/guestfs-actions.pod:2790 ../fish/guestfish-actions.pod:1920
10980 msgid ""
10981 "This returns the major version number of the inspected operating system."
10982 msgstr ""
10983
10984 #. type: textblock
10985 #: ../src/guestfs-actions.pod:2793 ../fish/guestfish-actions.pod:1923
10986 msgid ""
10987 "Windows uses a consistent versioning scheme which is I<not> reflected in the "
10988 "popular public names used by the operating system.  Notably the operating "
10989 "system known as \"Windows 7\" is really version 6.1 (ie. major = 6, minor = "
10990 "1).  You can find out the real versions corresponding to releases of Windows "
10991 "by consulting Wikipedia or MSDN."
10992 msgstr ""
10993
10994 #. type: textblock
10995 #: ../src/guestfs-actions.pod:2800 ../src/guestfs-actions.pod:2820
10996 #: ../fish/guestfish-actions.pod:1930 ../fish/guestfish-actions.pod:1944
10997 msgid "If the version could not be determined, then C<0> is returned."
10998 msgstr ""
10999
11000 #. type: =head2
11001 #: ../src/guestfs-actions.pod:2808
11002 msgid "guestfs_inspect_get_minor_version"
11003 msgstr ""
11004
11005 #. type: verbatim
11006 #: ../src/guestfs-actions.pod:2810
11007 #, no-wrap
11008 msgid ""
11009 " int\n"
11010 " guestfs_inspect_get_minor_version (guestfs_h *g,\n"
11011 "                                    const char *root);\n"
11012 "\n"
11013 msgstr ""
11014
11015 #. type: textblock
11016 #: ../src/guestfs-actions.pod:2817 ../fish/guestfish-actions.pod:1941
11017 msgid ""
11018 "This returns the minor version number of the inspected operating system."
11019 msgstr ""
11020
11021 #. type: textblock
11022 #: ../src/guestfs-actions.pod:2822
11023 msgid ""
11024 "Please read L<guestfs(3)/INSPECTION> for more details.  See also "
11025 "C<guestfs_inspect_get_major_version>."
11026 msgstr ""
11027
11028 #. type: =head2
11029 #: ../src/guestfs-actions.pod:2829
11030 msgid "guestfs_inspect_get_mountpoints"
11031 msgstr ""
11032
11033 #. type: verbatim
11034 #: ../src/guestfs-actions.pod:2831
11035 #, no-wrap
11036 msgid ""
11037 " char **\n"
11038 " guestfs_inspect_get_mountpoints (guestfs_h *g,\n"
11039 "                                  const char *root);\n"
11040 "\n"
11041 msgstr ""
11042
11043 #. type: textblock
11044 #: ../src/guestfs-actions.pod:2838 ../fish/guestfish-actions.pod:1956
11045 msgid ""
11046 "This returns a hash of where we think the filesystems associated with this "
11047 "operating system should be mounted.  Callers should note that this is at "
11048 "best an educated guess made by reading configuration files such as C</etc/"
11049 "fstab>.  I<In particular note> that this may return filesystems which are "
11050 "non-existent or not mountable and callers should be prepared to handle or "
11051 "ignore failures if they try to mount them."
11052 msgstr ""
11053
11054 #. type: textblock
11055 #: ../src/guestfs-actions.pod:2847 ../fish/guestfish-actions.pod:1965
11056 msgid ""
11057 "Each element in the returned hashtable has a key which is the path of the "
11058 "mountpoint (eg. C</boot>) and a value which is the filesystem that would be "
11059 "mounted there (eg. C</dev/sda1>)."
11060 msgstr ""
11061
11062 #. type: textblock
11063 #: ../src/guestfs-actions.pod:2852 ../fish/guestfish-actions.pod:1970
11064 msgid ""
11065 "Non-mounted devices such as swap devices are I<not> returned in this list."
11066 msgstr ""
11067
11068 #. type: textblock
11069 #: ../src/guestfs-actions.pod:2855
11070 msgid ""
11071 "For operating systems like Windows which still use drive letters, this call "
11072 "will only return an entry for the first drive \"mounted on\" C</>.  For "
11073 "information about the mapping of drive letters to partitions, see "
11074 "C<guestfs_inspect_get_drive_mappings>."
11075 msgstr ""
11076
11077 #. type: textblock
11078 #: ../src/guestfs-actions.pod:2861
11079 msgid ""
11080 "Please read L<guestfs(3)/INSPECTION> for more details.  See also "
11081 "C<guestfs_inspect_get_filesystems>."
11082 msgstr ""
11083
11084 #. type: =head2
11085 #: ../src/guestfs-actions.pod:2872
11086 msgid "guestfs_inspect_get_package_format"
11087 msgstr ""
11088
11089 #. type: verbatim
11090 #: ../src/guestfs-actions.pod:2874
11091 #, no-wrap
11092 msgid ""
11093 " char *\n"
11094 " guestfs_inspect_get_package_format (guestfs_h *g,\n"
11095 "                                     const char *root);\n"
11096 "\n"
11097 msgstr ""
11098
11099 #. type: textblock
11100 #: ../src/guestfs-actions.pod:2881
11101 msgid ""
11102 "This function and C<guestfs_inspect_get_package_management> return the "
11103 "package format and package management tool used by the inspected operating "
11104 "system.  For example for Fedora these functions would return C<rpm> (package "
11105 "format) and C<yum> (package management)."
11106 msgstr ""
11107
11108 #. type: textblock
11109 #: ../src/guestfs-actions.pod:2887 ../fish/guestfish-actions.pod:1995
11110 msgid ""
11111 "This returns the string C<unknown> if we could not determine the package "
11112 "format I<or> if the operating system does not have a real packaging system "
11113 "(eg. Windows)."
11114 msgstr ""
11115
11116 #. type: textblock
11117 #: ../src/guestfs-actions.pod:2891 ../fish/guestfish-actions.pod:1999
11118 msgid ""
11119 "Possible strings include: C<rpm>, C<deb>, C<ebuild>, C<pisi>, C<pacman>.  "
11120 "Future versions of libguestfs may return other strings."
11121 msgstr ""
11122
11123 #. type: textblock
11124 #: ../src/guestfs-actions.pod:2899 ../src/guestfs-actions.pod:2930
11125 msgid "(Added in 1.7.5)"
11126 msgstr ""
11127
11128 #. type: =head2
11129 #: ../src/guestfs-actions.pod:2901
11130 msgid "guestfs_inspect_get_package_management"
11131 msgstr ""
11132
11133 #. type: verbatim
11134 #: ../src/guestfs-actions.pod:2903
11135 #, no-wrap
11136 msgid ""
11137 " char *\n"
11138 " guestfs_inspect_get_package_management (guestfs_h *g,\n"
11139 "                                         const char *root);\n"
11140 "\n"
11141 msgstr ""
11142
11143 #. type: textblock
11144 #: ../src/guestfs-actions.pod:2910
11145 msgid ""
11146 "C<guestfs_inspect_get_package_format> and this function return the package "
11147 "format and package management tool used by the inspected operating system.  "
11148 "For example for Fedora these functions would return C<rpm> (package format) "
11149 "and C<yum> (package management)."
11150 msgstr ""
11151
11152 #. type: textblock
11153 #: ../src/guestfs-actions.pod:2916 ../fish/guestfish-actions.pod:2017
11154 msgid ""
11155 "This returns the string C<unknown> if we could not determine the package "
11156 "management tool I<or> if the operating system does not have a real packaging "
11157 "system (eg. Windows)."
11158 msgstr ""
11159
11160 #. type: textblock
11161 #: ../src/guestfs-actions.pod:2920 ../fish/guestfish-actions.pod:2021
11162 msgid ""
11163 "Possible strings include: C<yum>, C<up2date>, C<apt> (for all Debian "
11164 "derivatives), C<portage>, C<pisi>, C<pacman>, C<urpmi>.  Future versions of "
11165 "libguestfs may return other strings."
11166 msgstr ""
11167
11168 #. type: =head2
11169 #: ../src/guestfs-actions.pod:2932
11170 msgid "guestfs_inspect_get_product_name"
11171 msgstr ""
11172
11173 #. type: verbatim
11174 #: ../src/guestfs-actions.pod:2934
11175 #, no-wrap
11176 msgid ""
11177 " char *\n"
11178 " guestfs_inspect_get_product_name (guestfs_h *g,\n"
11179 "                                   const char *root);\n"
11180 "\n"
11181 msgstr ""
11182
11183 #. type: textblock
11184 #: ../src/guestfs-actions.pod:2941 ../fish/guestfish-actions.pod:2035
11185 msgid ""
11186 "This returns the product name of the inspected operating system.  The "
11187 "product name is generally some freeform string which can be displayed to the "
11188 "user, but should not be parsed by programs."
11189 msgstr ""
11190
11191 #. type: textblock
11192 #: ../src/guestfs-actions.pod:2946 ../fish/guestfish-actions.pod:2040
11193 msgid ""
11194 "If the product name could not be determined, then the string C<unknown> is "
11195 "returned."
11196 msgstr ""
11197
11198 #. type: =head2
11199 #: ../src/guestfs-actions.pod:2956
11200 msgid "guestfs_inspect_get_product_variant"
11201 msgstr ""
11202
11203 #. type: verbatim
11204 #: ../src/guestfs-actions.pod:2958
11205 #, no-wrap
11206 msgid ""
11207 " char *\n"
11208 " guestfs_inspect_get_product_variant (guestfs_h *g,\n"
11209 "                                      const char *root);\n"
11210 "\n"
11211 msgstr ""
11212
11213 #. type: textblock
11214 #: ../src/guestfs-actions.pod:2965 ../fish/guestfish-actions.pod:2052
11215 #, fuzzy
11216 #| msgid "This is an installed operating system."
11217 msgid "This returns the product variant of the inspected operating system."
11218 msgstr "Це встановлена операційна система."
11219
11220 #. type: textblock
11221 #: ../src/guestfs-actions.pod:2968 ../fish/guestfish-actions.pod:2055
11222 msgid ""
11223 "For Windows guests, this returns the contents of the Registry key C<HKLM"
11224 "\\Software\\Microsoft\\Windows NT\\CurrentVersion> C<InstallationType> which "
11225 "is usually a string such as C<Client> or C<Server> (other values are "
11226 "possible).  This can be used to distinguish consumer and enterprise versions "
11227 "of Windows that have the same version number (for example, Windows 7 and "
11228 "Windows 2008 Server are both version 6.1, but the former is C<Client> and "
11229 "the latter is C<Server>)."
11230 msgstr ""
11231
11232 #. type: textblock
11233 #: ../src/guestfs-actions.pod:2977 ../fish/guestfish-actions.pod:2064
11234 msgid ""
11235 "For enterprise Linux guests, in future we intend this to return the product "
11236 "variant such as C<Desktop>, C<Server> and so on.  But this is not "
11237 "implemented at present."
11238 msgstr ""
11239
11240 #. type: textblock
11241 #: ../src/guestfs-actions.pod:2981 ../fish/guestfish-actions.pod:2068
11242 msgid ""
11243 "If the product variant could not be determined, then the string C<unknown> "
11244 "is returned."
11245 msgstr ""
11246
11247 #. type: textblock
11248 #: ../src/guestfs-actions.pod:2984
11249 msgid ""
11250 "Please read L<guestfs(3)/INSPECTION> for more details.  See also "
11251 "C<guestfs_inspect_get_product_name>, C<guestfs_inspect_get_major_version>."
11252 msgstr ""
11253
11254 #. type: =head2
11255 #: ../src/guestfs-actions.pod:2991
11256 msgid "guestfs_inspect_get_roots"
11257 msgstr ""
11258
11259 #. type: verbatim
11260 #: ../src/guestfs-actions.pod:2993
11261 #, no-wrap
11262 msgid ""
11263 " char **\n"
11264 " guestfs_inspect_get_roots (guestfs_h *g);\n"
11265 "\n"
11266 msgstr ""
11267
11268 #. type: textblock
11269 #: ../src/guestfs-actions.pod:2996
11270 msgid ""
11271 "This function is a convenient way to get the list of root devices, as "
11272 "returned from a previous call to C<guestfs_inspect_os>, but without redoing "
11273 "the whole inspection process."
11274 msgstr ""
11275
11276 #. type: textblock
11277 #: ../src/guestfs-actions.pod:3000
11278 msgid ""
11279 "This returns an empty list if either no root devices were found or the "
11280 "caller has not called C<guestfs_inspect_os>."
11281 msgstr ""
11282
11283 #. type: textblock
11284 #: ../src/guestfs-actions.pod:3009
11285 msgid "(Added in 1.7.3)"
11286 msgstr ""
11287
11288 #. type: =head2
11289 #: ../src/guestfs-actions.pod:3011
11290 msgid "guestfs_inspect_get_type"
11291 msgstr ""
11292
11293 #. type: verbatim
11294 #: ../src/guestfs-actions.pod:3013
11295 #, no-wrap
11296 msgid ""
11297 " char *\n"
11298 " guestfs_inspect_get_type (guestfs_h *g,\n"
11299 "                           const char *root);\n"
11300 "\n"
11301 msgstr ""
11302
11303 #. type: textblock
11304 #: ../src/guestfs-actions.pod:3020 ../fish/guestfish-actions.pod:2095
11305 msgid ""
11306 "This returns the type of the inspected operating system.  Currently defined "
11307 "types are:"
11308 msgstr ""
11309
11310 #. type: =item
11311 #: ../src/guestfs-actions.pod:3025 ../fish/guestfish-actions.pod:2100
11312 msgid "\"linux\""
11313 msgstr "\"linux\""
11314
11315 #. type: textblock
11316 #: ../src/guestfs-actions.pod:3027 ../fish/guestfish-actions.pod:2102
11317 msgid "Any Linux-based operating system."
11318 msgstr ""
11319
11320 #. type: textblock
11321 #: ../src/guestfs-actions.pod:3031 ../fish/guestfish-actions.pod:2106
11322 msgid "Any Microsoft Windows operating system."
11323 msgstr ""
11324
11325 #. type: =item
11326 #: ../src/guestfs-actions.pod:3033 ../fish/guestfish-actions.pod:2108
11327 msgid "\"freebsd\""
11328 msgstr "\"freebsd\""
11329
11330 #. type: textblock
11331 #: ../src/guestfs-actions.pod:3035 ../fish/guestfish-actions.pod:2110
11332 msgid "FreeBSD."
11333 msgstr "FreeBSD."
11334
11335 #. type: textblock
11336 #: ../src/guestfs-actions.pod:3039 ../fish/guestfish-actions.pod:2114
11337 msgid "The operating system type could not be determined."
11338 msgstr ""
11339
11340 #. type: =head2
11341 #: ../src/guestfs-actions.pod:3053
11342 msgid "guestfs_inspect_get_windows_current_control_set"
11343 msgstr ""
11344
11345 #. type: verbatim
11346 #: ../src/guestfs-actions.pod:3055
11347 #, no-wrap
11348 msgid ""
11349 " char *\n"
11350 " guestfs_inspect_get_windows_current_control_set (guestfs_h *g,\n"
11351 "                                                  const char *root);\n"
11352 "\n"
11353 msgstr ""
11354
11355 #. type: textblock
11356 #: ../src/guestfs-actions.pod:3062 ../fish/guestfish-actions.pod:2130
11357 msgid ""
11358 "This returns the Windows CurrentControlSet of the inspected guest.  The "
11359 "CurrentControlSet is a registry key name such as C<ControlSet001>."
11360 msgstr ""
11361
11362 #. type: textblock
11363 #: ../src/guestfs-actions.pod:3065 ../fish/guestfish-actions.pod:2133
11364 msgid ""
11365 "This call assumes that the guest is Windows and that the Registry could be "
11366 "examined by inspection.  If this is not the case then an error is returned."
11367 msgstr ""
11368
11369 #. type: =head2
11370 #: ../src/guestfs-actions.pod:3074
11371 msgid "guestfs_inspect_get_windows_systemroot"
11372 msgstr ""
11373
11374 #. type: verbatim
11375 #: ../src/guestfs-actions.pod:3076
11376 #, no-wrap
11377 msgid ""
11378 " char *\n"
11379 " guestfs_inspect_get_windows_systemroot (guestfs_h *g,\n"
11380 "                                         const char *root);\n"
11381 "\n"
11382 msgstr ""
11383
11384 #. type: textblock
11385 #: ../src/guestfs-actions.pod:3083 ../fish/guestfish-actions.pod:2146
11386 msgid ""
11387 "This returns the Windows systemroot of the inspected guest.  The systemroot "
11388 "is a directory path such as C</WINDOWS>."
11389 msgstr ""
11390
11391 #. type: textblock
11392 #: ../src/guestfs-actions.pod:3086 ../fish/guestfish-actions.pod:2149
11393 msgid ""
11394 "This call assumes that the guest is Windows and that the systemroot could be "
11395 "determined by inspection.  If this is not the case then an error is returned."
11396 msgstr ""
11397
11398 #. type: textblock
11399 #: ../src/guestfs-actions.pod:3095
11400 msgid "(Added in 1.5.25)"
11401 msgstr ""
11402
11403 #. type: =head2
11404 #: ../src/guestfs-actions.pod:3097
11405 msgid "guestfs_inspect_is_live"
11406 msgstr ""
11407
11408 #. type: verbatim
11409 #: ../src/guestfs-actions.pod:3099
11410 #, no-wrap
11411 msgid ""
11412 " int\n"
11413 " guestfs_inspect_is_live (guestfs_h *g,\n"
11414 "                          const char *root);\n"
11415 "\n"
11416 msgstr ""
11417
11418 #. type: textblock
11419 #: ../src/guestfs-actions.pod:3106
11420 msgid ""
11421 "If C<guestfs_inspect_get_format> returns C<installer> (this is an install "
11422 "disk), then this returns true if a live image was detected on the disk."
11423 msgstr ""
11424
11425 #. type: =head2
11426 #: ../src/guestfs-actions.pod:3114
11427 msgid "guestfs_inspect_is_multipart"
11428 msgstr ""
11429
11430 #. type: verbatim
11431 #: ../src/guestfs-actions.pod:3116
11432 #, no-wrap
11433 msgid ""
11434 " int\n"
11435 " guestfs_inspect_is_multipart (guestfs_h *g,\n"
11436 "                               const char *root);\n"
11437 "\n"
11438 msgstr ""
11439
11440 #. type: textblock
11441 #: ../src/guestfs-actions.pod:3123
11442 msgid ""
11443 "If C<guestfs_inspect_get_format> returns C<installer> (this is an install "
11444 "disk), then this returns true if the disk is part of a set."
11445 msgstr ""
11446
11447 #. type: =head2
11448 #: ../src/guestfs-actions.pod:3131
11449 msgid "guestfs_inspect_is_netinst"
11450 msgstr ""
11451
11452 #. type: verbatim
11453 #: ../src/guestfs-actions.pod:3133
11454 #, no-wrap
11455 msgid ""
11456 " int\n"
11457 " guestfs_inspect_is_netinst (guestfs_h *g,\n"
11458 "                             const char *root);\n"
11459 "\n"
11460 msgstr ""
11461
11462 #. type: textblock
11463 #: ../src/guestfs-actions.pod:3140
11464 msgid ""
11465 "If C<guestfs_inspect_get_format> returns C<installer> (this is an install "
11466 "disk), then this returns true if the disk is a network installer, ie. not a "
11467 "self-contained install CD but one which is likely to require network access "
11468 "to complete the install."
11469 msgstr ""
11470
11471 #. type: =head2
11472 #: ../src/guestfs-actions.pod:3150
11473 msgid "guestfs_inspect_list_applications"
11474 msgstr ""
11475
11476 #. type: verbatim
11477 #: ../src/guestfs-actions.pod:3152
11478 #, no-wrap
11479 msgid ""
11480 " struct guestfs_application_list *\n"
11481 " guestfs_inspect_list_applications (guestfs_h *g,\n"
11482 "                                    const char *root);\n"
11483 "\n"
11484 msgstr ""
11485
11486 #. type: textblock
11487 #: ../src/guestfs-actions.pod:3159 ../fish/guestfish-actions.pod:2203
11488 msgid "Return the list of applications installed in the operating system."
11489 msgstr ""
11490
11491 #. type: textblock
11492 #: ../src/guestfs-actions.pod:3161
11493 msgid ""
11494 "I<Note:> This call works differently from other parts of the inspection "
11495 "API.  You have to call C<guestfs_inspect_os>, then "
11496 "C<guestfs_inspect_get_mountpoints>, then mount up the disks, before calling "
11497 "this.  Listing applications is a significantly more difficult operation "
11498 "which requires access to the full filesystem.  Also note that unlike the "
11499 "other C<guestfs_inspect_get_*> calls which are just returning data cached in "
11500 "the libguestfs handle, this call actually reads parts of the mounted "
11501 "filesystems during the call."
11502 msgstr ""
11503
11504 #. type: textblock
11505 #: ../src/guestfs-actions.pod:3171 ../fish/guestfish-actions.pod:2215
11506 msgid ""
11507 "This returns an empty list if the inspection code was not able to determine "
11508 "the list of applications."
11509 msgstr ""
11510
11511 #. type: textblock
11512 #: ../src/guestfs-actions.pod:3174 ../fish/guestfish-actions.pod:2218
11513 msgid "The application structure contains the following fields:"
11514 msgstr ""
11515
11516 #. type: =item
11517 #: ../src/guestfs-actions.pod:3178 ../fish/guestfish-actions.pod:2222
11518 msgid "C<app_name>"
11519 msgstr "C<app_name>"
11520
11521 #. type: textblock
11522 #: ../src/guestfs-actions.pod:3180 ../fish/guestfish-actions.pod:2224
11523 msgid ""
11524 "The name of the application.  For Red Hat-derived and Debian-derived Linux "
11525 "guests, this is the package name."
11526 msgstr ""
11527
11528 #. type: =item
11529 #: ../src/guestfs-actions.pod:3183 ../fish/guestfish-actions.pod:2227
11530 msgid "C<app_display_name>"
11531 msgstr "C<app_display_name>"
11532
11533 #. type: textblock
11534 #: ../src/guestfs-actions.pod:3185 ../fish/guestfish-actions.pod:2229
11535 msgid ""
11536 "The display name of the application, sometimes localized to the install "
11537 "language of the guest operating system."
11538 msgstr ""
11539
11540 #. type: textblock
11541 #: ../src/guestfs-actions.pod:3188 ../fish/guestfish-actions.pod:2232
11542 msgid ""
11543 "If unavailable this is returned as an empty string C<\"\">.  Callers needing "
11544 "to display something can use C<app_name> instead."
11545 msgstr ""
11546
11547 #. type: =item
11548 #: ../src/guestfs-actions.pod:3191 ../fish/guestfish-actions.pod:2235
11549 msgid "C<app_epoch>"
11550 msgstr "C<app_epoch>"
11551
11552 #. type: textblock
11553 #: ../src/guestfs-actions.pod:3193 ../fish/guestfish-actions.pod:2237
11554 msgid ""
11555 "For package managers which use epochs, this contains the epoch of the "
11556 "package (an integer).  If unavailable, this is returned as C<0>."
11557 msgstr ""
11558
11559 #. type: =item
11560 #: ../src/guestfs-actions.pod:3196 ../fish/guestfish-actions.pod:2240
11561 msgid "C<app_version>"
11562 msgstr "C<app_version>"
11563
11564 #. type: textblock
11565 #: ../src/guestfs-actions.pod:3198 ../fish/guestfish-actions.pod:2242
11566 msgid ""
11567 "The version string of the application or package.  If unavailable this is "
11568 "returned as an empty string C<\"\">."
11569 msgstr ""
11570
11571 #. type: =item
11572 #: ../src/guestfs-actions.pod:3201 ../fish/guestfish-actions.pod:2245
11573 msgid "C<app_release>"
11574 msgstr "C<app_release>"
11575
11576 #. type: textblock
11577 #: ../src/guestfs-actions.pod:3203 ../fish/guestfish-actions.pod:2247
11578 msgid ""
11579 "The release string of the application or package, for package managers that "
11580 "use this.  If unavailable this is returned as an empty string C<\"\">."
11581 msgstr ""
11582
11583 #. type: =item
11584 #: ../src/guestfs-actions.pod:3207 ../fish/guestfish-actions.pod:2251
11585 msgid "C<app_install_path>"
11586 msgstr "C<app_install_path>"
11587
11588 #. type: textblock
11589 #: ../src/guestfs-actions.pod:3209 ../fish/guestfish-actions.pod:2253
11590 msgid ""
11591 "The installation path of the application (on operating systems such as "
11592 "Windows which use installation paths).  This path is in the format used by "
11593 "the guest operating system, it is not a libguestfs path."
11594 msgstr ""
11595
11596 #. type: textblock
11597 #: ../src/guestfs-actions.pod:3214 ../fish/guestfish-actions.pod:2258
11598 msgid "If unavailable this is returned as an empty string C<\"\">."
11599 msgstr ""
11600
11601 #. type: =item
11602 #: ../src/guestfs-actions.pod:3216 ../fish/guestfish-actions.pod:2260
11603 msgid "C<app_trans_path>"
11604 msgstr "C<app_trans_path>"
11605
11606 #. type: textblock
11607 #: ../src/guestfs-actions.pod:3218 ../fish/guestfish-actions.pod:2262
11608 msgid ""
11609 "The install path translated into a libguestfs path.  If unavailable this is "
11610 "returned as an empty string C<\"\">."
11611 msgstr ""
11612
11613 #. type: =item
11614 #: ../src/guestfs-actions.pod:3221 ../fish/guestfish-actions.pod:2265
11615 msgid "C<app_publisher>"
11616 msgstr "C<app_publisher>"
11617
11618 #. type: textblock
11619 #: ../src/guestfs-actions.pod:3223 ../fish/guestfish-actions.pod:2267
11620 msgid ""
11621 "The name of the publisher of the application, for package managers that use "
11622 "this.  If unavailable this is returned as an empty string C<\"\">."
11623 msgstr ""
11624
11625 #. type: =item
11626 #: ../src/guestfs-actions.pod:3227 ../fish/guestfish-actions.pod:2271
11627 msgid "C<app_url>"
11628 msgstr "C<app_url>"
11629
11630 #. type: textblock
11631 #: ../src/guestfs-actions.pod:3229 ../fish/guestfish-actions.pod:2273
11632 msgid ""
11633 "The URL (eg. upstream URL) of the application.  If unavailable this is "
11634 "returned as an empty string C<\"\">."
11635 msgstr ""
11636
11637 #. type: =item
11638 #: ../src/guestfs-actions.pod:3232 ../fish/guestfish-actions.pod:2276
11639 msgid "C<app_source_package>"
11640 msgstr ""
11641
11642 #. type: textblock
11643 #: ../src/guestfs-actions.pod:3234 ../fish/guestfish-actions.pod:2278
11644 msgid ""
11645 "For packaging systems which support this, the name of the source package.  "
11646 "If unavailable this is returned as an empty string C<\"\">."
11647 msgstr ""
11648
11649 #. type: =item
11650 #: ../src/guestfs-actions.pod:3237 ../fish/guestfish-actions.pod:2281
11651 msgid "C<app_summary>"
11652 msgstr ""
11653
11654 #. type: textblock
11655 #: ../src/guestfs-actions.pod:3239 ../fish/guestfish-actions.pod:2283
11656 msgid ""
11657 "A short (usually one line) description of the application or package.  If "
11658 "unavailable this is returned as an empty string C<\"\">."
11659 msgstr ""
11660
11661 #. type: =item
11662 #: ../src/guestfs-actions.pod:3242 ../fish/guestfish-actions.pod:2286
11663 msgid "C<app_description>"
11664 msgstr ""
11665
11666 #. type: textblock
11667 #: ../src/guestfs-actions.pod:3244 ../fish/guestfish-actions.pod:2288
11668 msgid ""
11669 "A longer description of the application or package.  If unavailable this is "
11670 "returned as an empty string C<\"\">."
11671 msgstr ""
11672
11673 #. type: textblock
11674 #: ../src/guestfs-actions.pod:3251
11675 msgid ""
11676 "This function returns a C<struct guestfs_application_list *>, or NULL if "
11677 "there was an error.  I<The caller must call C<guestfs_free_application_list> "
11678 "after use>."
11679 msgstr ""
11680
11681 #. type: textblock
11682 #: ../src/guestfs-actions.pod:3255
11683 msgid "(Added in 1.7.8)"
11684 msgstr ""
11685
11686 #. type: =head2
11687 #: ../src/guestfs-actions.pod:3257
11688 msgid "guestfs_inspect_os"
11689 msgstr ""
11690
11691 #. type: verbatim
11692 #: ../src/guestfs-actions.pod:3259
11693 #, no-wrap
11694 msgid ""
11695 " char **\n"
11696 " guestfs_inspect_os (guestfs_h *g);\n"
11697 "\n"
11698 msgstr ""
11699
11700 #. type: textblock
11701 #: ../src/guestfs-actions.pod:3262 ../fish/guestfish-actions.pod:2299
11702 msgid ""
11703 "This function uses other libguestfs functions and certain heuristics to "
11704 "inspect the disk(s) (usually disks belonging to a virtual machine), looking "
11705 "for operating systems."
11706 msgstr ""
11707
11708 #. type: textblock
11709 #: ../src/guestfs-actions.pod:3266 ../fish/guestfish-actions.pod:2303
11710 msgid "The list returned is empty if no operating systems were found."
11711 msgstr ""
11712
11713 #. type: textblock
11714 #: ../src/guestfs-actions.pod:3268 ../fish/guestfish-actions.pod:2305
11715 msgid ""
11716 "If one operating system was found, then this returns a list with a single "
11717 "element, which is the name of the root filesystem of this operating system.  "
11718 "It is also possible for this function to return a list containing more than "
11719 "one element, indicating a dual-boot or multi-boot virtual machine, with each "
11720 "element being the root filesystem of one of the operating systems."
11721 msgstr ""
11722
11723 #. type: textblock
11724 #: ../src/guestfs-actions.pod:3275
11725 msgid ""
11726 "You can pass the root string(s) returned to other C<guestfs_inspect_get_*> "
11727 "functions in order to query further information about each operating system, "
11728 "such as the name and version."
11729 msgstr ""
11730
11731 #. type: textblock
11732 #: ../src/guestfs-actions.pod:3280
11733 msgid ""
11734 "This function uses other libguestfs features such as C<guestfs_mount_ro> and "
11735 "C<guestfs_umount_all> in order to mount and unmount filesystems and look at "
11736 "the contents.  This should be called with no disks currently mounted.  The "
11737 "function may also use Augeas, so any existing Augeas handle will be closed."
11738 msgstr ""
11739
11740 #. type: textblock
11741 #: ../src/guestfs-actions.pod:3286 ../fish/guestfish-actions.pod:2323
11742 msgid ""
11743 "This function cannot decrypt encrypted disks.  The caller must do that first "
11744 "(supplying the necessary keys) if the disk is encrypted."
11745 msgstr ""
11746
11747 #. type: textblock
11748 #: ../src/guestfs-actions.pod:3292 ../src/guestfs-actions.pod:3582
11749 #: ../src/guestfs-actions.pod:3644
11750 msgid "See also C<guestfs_list_filesystems>."
11751 msgstr ""
11752
11753 #. type: =head2
11754 #: ../src/guestfs-actions.pod:3300
11755 msgid "guestfs_is_blockdev"
11756 msgstr ""
11757
11758 #. type: verbatim
11759 #: ../src/guestfs-actions.pod:3302
11760 #, no-wrap
11761 msgid ""
11762 " int\n"
11763 " guestfs_is_blockdev (guestfs_h *g,\n"
11764 "                      const char *path);\n"
11765 "\n"
11766 msgstr ""
11767
11768 #. type: textblock
11769 #: ../src/guestfs-actions.pod:3306 ../fish/guestfish-actions.pod:2335
11770 msgid ""
11771 "This returns C<true> if and only if there is a block device with the given "
11772 "C<path> name."
11773 msgstr ""
11774
11775 #. type: textblock
11776 #: ../src/guestfs-actions.pod:3309 ../src/guestfs-actions.pod:3338
11777 #: ../src/guestfs-actions.pod:3368 ../src/guestfs-actions.pod:3383
11778 #: ../src/guestfs-actions.pod:3399 ../src/guestfs-actions.pod:3455
11779 #: ../src/guestfs-actions.pod:3470
11780 msgid "See also C<guestfs_stat>."
11781 msgstr ""
11782
11783 #. type: textblock
11784 #: ../src/guestfs-actions.pod:3313 ../src/guestfs-actions.pod:3342
11785 #: ../src/guestfs-actions.pod:3387 ../src/guestfs-actions.pod:3459
11786 #: ../src/guestfs-actions.pod:3474
11787 msgid "(Added in 1.5.10)"
11788 msgstr ""
11789
11790 #. type: =head2
11791 #: ../src/guestfs-actions.pod:3315
11792 msgid "guestfs_is_busy"
11793 msgstr ""
11794
11795 #. type: verbatim
11796 #: ../src/guestfs-actions.pod:3317
11797 #, no-wrap
11798 msgid ""
11799 " int\n"
11800 " guestfs_is_busy (guestfs_h *g);\n"
11801 "\n"
11802 msgstr ""
11803
11804 #. type: textblock
11805 #: ../src/guestfs-actions.pod:3320 ../fish/guestfish-actions.pod:2344
11806 msgid ""
11807 "This returns true iff this handle is busy processing a command (in the "
11808 "C<BUSY> state)."
11809 msgstr ""
11810
11811 #. type: =head2
11812 #: ../src/guestfs-actions.pod:3329
11813 msgid "guestfs_is_chardev"
11814 msgstr ""
11815
11816 #. type: verbatim
11817 #: ../src/guestfs-actions.pod:3331
11818 #, no-wrap
11819 msgid ""
11820 " int\n"
11821 " guestfs_is_chardev (guestfs_h *g,\n"
11822 "                     const char *path);\n"
11823 "\n"
11824 msgstr ""
11825
11826 #. type: textblock
11827 #: ../src/guestfs-actions.pod:3335 ../fish/guestfish-actions.pod:2353
11828 msgid ""
11829 "This returns C<true> if and only if there is a character device with the "
11830 "given C<path> name."
11831 msgstr ""
11832
11833 #. type: =head2
11834 #: ../src/guestfs-actions.pod:3344
11835 msgid "guestfs_is_config"
11836 msgstr ""
11837
11838 #. type: verbatim
11839 #: ../src/guestfs-actions.pod:3346
11840 #, no-wrap
11841 msgid ""
11842 " int\n"
11843 " guestfs_is_config (guestfs_h *g);\n"
11844 "\n"
11845 msgstr ""
11846
11847 #. type: textblock
11848 #: ../src/guestfs-actions.pod:3349 ../fish/guestfish-actions.pod:2362
11849 msgid ""
11850 "This returns true iff this handle is being configured (in the C<CONFIG> "
11851 "state)."
11852 msgstr ""
11853
11854 #. type: =head2
11855 #: ../src/guestfs-actions.pod:3358
11856 msgid "guestfs_is_dir"
11857 msgstr ""
11858
11859 #. type: verbatim
11860 #: ../src/guestfs-actions.pod:3360
11861 #, no-wrap
11862 msgid ""
11863 " int\n"
11864 " guestfs_is_dir (guestfs_h *g,\n"
11865 "                 const char *path);\n"
11866 "\n"
11867 msgstr ""
11868
11869 #. type: textblock
11870 #: ../src/guestfs-actions.pod:3364 ../fish/guestfish-actions.pod:2371
11871 msgid ""
11872 "This returns C<true> if and only if there is a directory with the given "
11873 "C<path> name.  Note that it returns false for other objects like files."
11874 msgstr ""
11875
11876 #. type: =head2
11877 #: ../src/guestfs-actions.pod:3374
11878 msgid "guestfs_is_fifo"
11879 msgstr ""
11880
11881 #. type: verbatim
11882 #: ../src/guestfs-actions.pod:3376
11883 #, no-wrap
11884 msgid ""
11885 " int\n"
11886 " guestfs_is_fifo (guestfs_h *g,\n"
11887 "                  const char *path);\n"
11888 "\n"
11889 msgstr ""
11890
11891 #. type: textblock
11892 #: ../src/guestfs-actions.pod:3380 ../fish/guestfish-actions.pod:2381
11893 msgid ""
11894 "This returns C<true> if and only if there is a FIFO (named pipe)  with the "
11895 "given C<path> name."
11896 msgstr ""
11897
11898 #. type: =head2
11899 #: ../src/guestfs-actions.pod:3389
11900 msgid "guestfs_is_file"
11901 msgstr ""
11902
11903 #. type: verbatim
11904 #: ../src/guestfs-actions.pod:3391
11905 #, no-wrap
11906 msgid ""
11907 " int\n"
11908 " guestfs_is_file (guestfs_h *g,\n"
11909 "                  const char *path);\n"
11910 "\n"
11911 msgstr ""
11912
11913 #. type: textblock
11914 #: ../src/guestfs-actions.pod:3395 ../fish/guestfish-actions.pod:2390
11915 msgid ""
11916 "This returns C<true> if and only if there is a regular file with the given "
11917 "C<path> name.  Note that it returns false for other objects like directories."
11918 msgstr ""
11919
11920 #. type: =head2
11921 #: ../src/guestfs-actions.pod:3405
11922 msgid "guestfs_is_launching"
11923 msgstr ""
11924
11925 #. type: verbatim
11926 #: ../src/guestfs-actions.pod:3407
11927 #, no-wrap
11928 msgid ""
11929 " int\n"
11930 " guestfs_is_launching (guestfs_h *g);\n"
11931 "\n"
11932 msgstr ""
11933
11934 #. type: textblock
11935 #: ../src/guestfs-actions.pod:3410 ../fish/guestfish-actions.pod:2400
11936 msgid ""
11937 "This returns true iff this handle is launching the subprocess (in the "
11938 "C<LAUNCHING> state)."
11939 msgstr ""
11940
11941 #. type: =head2
11942 #: ../src/guestfs-actions.pod:3419
11943 msgid "guestfs_is_lv"
11944 msgstr ""
11945
11946 #. type: verbatim
11947 #: ../src/guestfs-actions.pod:3421
11948 #, no-wrap
11949 msgid ""
11950 " int\n"
11951 " guestfs_is_lv (guestfs_h *g,\n"
11952 "                const char *device);\n"
11953 "\n"
11954 msgstr ""
11955
11956 #. type: textblock
11957 #: ../src/guestfs-actions.pod:3425 ../fish/guestfish-actions.pod:2409
11958 msgid ""
11959 "This command tests whether C<device> is a logical volume, and returns true "
11960 "iff this is the case."
11961 msgstr ""
11962
11963 #. type: =head2
11964 #: ../src/guestfs-actions.pod:3432
11965 msgid "guestfs_is_ready"
11966 msgstr ""
11967
11968 #. type: verbatim
11969 #: ../src/guestfs-actions.pod:3434
11970 #, no-wrap
11971 msgid ""
11972 " int\n"
11973 " guestfs_is_ready (guestfs_h *g);\n"
11974 "\n"
11975 msgstr ""
11976
11977 #. type: textblock
11978 #: ../src/guestfs-actions.pod:3437 ../fish/guestfish-actions.pod:2416
11979 msgid ""
11980 "This returns true iff this handle is ready to accept commands (in the "
11981 "C<READY> state)."
11982 msgstr ""
11983
11984 #. type: =head2
11985 #: ../src/guestfs-actions.pod:3446
11986 msgid "guestfs_is_socket"
11987 msgstr ""
11988
11989 #. type: verbatim
11990 #: ../src/guestfs-actions.pod:3448
11991 #, no-wrap
11992 msgid ""
11993 " int\n"
11994 " guestfs_is_socket (guestfs_h *g,\n"
11995 "                    const char *path);\n"
11996 "\n"
11997 msgstr ""
11998
11999 #. type: textblock
12000 #: ../src/guestfs-actions.pod:3452 ../fish/guestfish-actions.pod:2425
12001 msgid ""
12002 "This returns C<true> if and only if there is a Unix domain socket with the "
12003 "given C<path> name."
12004 msgstr ""
12005
12006 #. type: =head2
12007 #: ../src/guestfs-actions.pod:3461
12008 msgid "guestfs_is_symlink"
12009 msgstr ""
12010
12011 #. type: verbatim
12012 #: ../src/guestfs-actions.pod:3463
12013 #, no-wrap
12014 msgid ""
12015 " int\n"
12016 " guestfs_is_symlink (guestfs_h *g,\n"
12017 "                     const char *path);\n"
12018 "\n"
12019 msgstr ""
12020
12021 #. type: textblock
12022 #: ../src/guestfs-actions.pod:3467 ../fish/guestfish-actions.pod:2434
12023 msgid ""
12024 "This returns C<true> if and only if there is a symbolic link with the given "
12025 "C<path> name."
12026 msgstr ""
12027
12028 #. type: =head2
12029 #: ../src/guestfs-actions.pod:3476
12030 msgid "guestfs_kill_subprocess"
12031 msgstr ""
12032
12033 #. type: verbatim
12034 #: ../src/guestfs-actions.pod:3478
12035 #, no-wrap
12036 msgid ""
12037 " int\n"
12038 " guestfs_kill_subprocess (guestfs_h *g);\n"
12039 "\n"
12040 msgstr ""
12041
12042 #. type: textblock
12043 #: ../src/guestfs-actions.pod:3481 ../fish/guestfish-actions.pod:2443
12044 msgid "This kills the qemu subprocess.  You should never need to call this."
12045 msgstr ""
12046
12047 #. type: =head2
12048 #: ../src/guestfs-actions.pod:3487
12049 msgid "guestfs_launch"
12050 msgstr ""
12051
12052 #. type: verbatim
12053 #: ../src/guestfs-actions.pod:3489
12054 #, no-wrap
12055 msgid ""
12056 " int\n"
12057 " guestfs_launch (guestfs_h *g);\n"
12058 "\n"
12059 msgstr ""
12060
12061 #. type: textblock
12062 #: ../src/guestfs-actions.pod:3492 ../fish/guestfish-actions.pod:2451
12063 msgid ""
12064 "Internally libguestfs is implemented by running a virtual machine using "
12065 "L<qemu(1)>."
12066 msgstr ""
12067
12068 #. type: textblock
12069 #: ../src/guestfs-actions.pod:3495 ../fish/guestfish-actions.pod:2454
12070 msgid ""
12071 "You should call this after configuring the handle (eg. adding drives) but "
12072 "before performing any actions."
12073 msgstr ""
12074
12075 #. type: =head2
12076 #: ../src/guestfs-actions.pod:3507
12077 msgid "guestfs_lchown"
12078 msgstr ""
12079
12080 #. type: verbatim
12081 #: ../src/guestfs-actions.pod:3509
12082 #, no-wrap
12083 msgid ""
12084 " int\n"
12085 " guestfs_lchown (guestfs_h *g,\n"
12086 "                 int owner,\n"
12087 "                 int group,\n"
12088 "                 const char *path);\n"
12089 "\n"
12090 msgstr ""
12091
12092 #. type: textblock
12093 #: ../src/guestfs-actions.pod:3515
12094 msgid ""
12095 "Change the file owner to C<owner> and group to C<group>.  This is like "
12096 "C<guestfs_chown> but if C<path> is a symlink then the link itself is "
12097 "changed, not the target."
12098 msgstr ""
12099
12100 #. type: =head2
12101 #: ../src/guestfs-actions.pod:3527
12102 msgid "guestfs_lgetxattr"
12103 msgstr ""
12104
12105 #. type: verbatim
12106 #: ../src/guestfs-actions.pod:3529
12107 #, no-wrap
12108 msgid ""
12109 " char *\n"
12110 " guestfs_lgetxattr (guestfs_h *g,\n"
12111 "                    const char *path,\n"
12112 "                    const char *name,\n"
12113 "                    size_t *size_r);\n"
12114 "\n"
12115 msgstr ""
12116
12117 #. type: textblock
12118 #: ../src/guestfs-actions.pod:3535 ../fish/guestfish-actions.pod:2473
12119 msgid ""
12120 "Get a single extended attribute from file C<path> named C<name>.  If C<path> "
12121 "is a symlink, then this call returns an extended attribute from the symlink."
12122 msgstr ""
12123
12124 #. type: textblock
12125 #: ../src/guestfs-actions.pod:3549
12126 msgid "See also: C<guestfs_lgetxattrs>, C<guestfs_getxattr>, L<attr(5)>."
12127 msgstr ""
12128
12129 #. type: =head2
12130 #: ../src/guestfs-actions.pod:3557
12131 msgid "guestfs_lgetxattrs"
12132 msgstr ""
12133
12134 #. type: verbatim
12135 #: ../src/guestfs-actions.pod:3559
12136 #, no-wrap
12137 msgid ""
12138 " struct guestfs_xattr_list *\n"
12139 " guestfs_lgetxattrs (guestfs_h *g,\n"
12140 "                     const char *path);\n"
12141 "\n"
12142 msgstr ""
12143
12144 #. type: textblock
12145 #: ../src/guestfs-actions.pod:3563
12146 msgid ""
12147 "This is the same as C<guestfs_getxattrs>, but if C<path> is a symbolic link, "
12148 "then it returns the extended attributes of the link itself."
12149 msgstr ""
12150
12151 #. type: =head2
12152 #: ../src/guestfs-actions.pod:3573
12153 msgid "guestfs_list_devices"
12154 msgstr ""
12155
12156 #. type: verbatim
12157 #: ../src/guestfs-actions.pod:3575
12158 #, no-wrap
12159 msgid ""
12160 " char **\n"
12161 " guestfs_list_devices (guestfs_h *g);\n"
12162 "\n"
12163 msgstr ""
12164
12165 #. type: textblock
12166 #: ../src/guestfs-actions.pod:3578 ../fish/guestfish-actions.pod:2501
12167 msgid "List all the block devices."
12168 msgstr ""
12169
12170 #. type: textblock
12171 #: ../src/guestfs-actions.pod:3580 ../fish/guestfish-actions.pod:2503
12172 msgid "The full block device names are returned, eg. C</dev/sda>."
12173 msgstr ""
12174
12175 #. type: =head2
12176 #: ../src/guestfs-actions.pod:3590
12177 msgid "guestfs_list_filesystems"
12178 msgstr ""
12179
12180 #. type: verbatim
12181 #: ../src/guestfs-actions.pod:3592
12182 #, no-wrap
12183 msgid ""
12184 " char **\n"
12185 " guestfs_list_filesystems (guestfs_h *g);\n"
12186 "\n"
12187 msgstr ""
12188
12189 #. type: textblock
12190 #: ../src/guestfs-actions.pod:3595 ../fish/guestfish-actions.pod:2511
12191 msgid ""
12192 "This inspection command looks for filesystems on partitions, block devices "
12193 "and logical volumes, returning a list of devices containing filesystems and "
12194 "their type."
12195 msgstr ""
12196
12197 #. type: textblock
12198 #: ../src/guestfs-actions.pod:3599 ../fish/guestfish-actions.pod:2515
12199 msgid ""
12200 "The return value is a hash, where the keys are the devices containing "
12201 "filesystems, and the values are the filesystem types.  For example:"
12202 msgstr ""
12203
12204 #. type: verbatim
12205 #: ../src/guestfs-actions.pod:3603 ../fish/guestfish-actions.pod:2519
12206 #, no-wrap
12207 msgid ""
12208 " \"/dev/sda1\" => \"ntfs\"\n"
12209 " \"/dev/sda2\" => \"ext2\"\n"
12210 " \"/dev/vg_guest/lv_root\" => \"ext4\"\n"
12211 " \"/dev/vg_guest/lv_swap\" => \"swap\"\n"
12212 "\n"
12213 msgstr ""
12214
12215 #. type: textblock
12216 #: ../src/guestfs-actions.pod:3608 ../fish/guestfish-actions.pod:2524
12217 msgid ""
12218 "The value can have the special value \"unknown\", meaning the content of the "
12219 "device is undetermined or empty.  \"swap\" means a Linux swap partition."
12220 msgstr ""
12221
12222 #. type: textblock
12223 #: ../src/guestfs-actions.pod:3612
12224 msgid ""
12225 "This command runs other libguestfs commands, which might include "
12226 "C<guestfs_mount> and C<guestfs_umount>, and therefore you should use this "
12227 "soon after launch and only when nothing is mounted."
12228 msgstr ""
12229
12230 #. type: textblock
12231 #: ../src/guestfs-actions.pod:3616
12232 msgid ""
12233 "Not all of the filesystems returned will be mountable.  In particular, swap "
12234 "partitions are returned in the list.  Also this command does not check that "
12235 "each filesystem found is valid and mountable, and some filesystems might be "
12236 "mountable but require special options.  Filesystems may not all belong to a "
12237 "single logical operating system (use C<guestfs_inspect_os> to look for OSes)."
12238 msgstr ""
12239
12240 #. type: textblock
12241 #: ../src/guestfs-actions.pod:3630 ../src/guestfs-actions.pod:5251
12242 msgid "(Added in 1.5.15)"
12243 msgstr ""
12244
12245 #. type: =head2
12246 #: ../src/guestfs-actions.pod:3632
12247 msgid "guestfs_list_partitions"
12248 msgstr ""
12249
12250 #. type: verbatim
12251 #: ../src/guestfs-actions.pod:3634
12252 #, no-wrap
12253 msgid ""
12254 " char **\n"
12255 " guestfs_list_partitions (guestfs_h *g);\n"
12256 "\n"
12257 msgstr ""
12258
12259 #. type: textblock
12260 #: ../src/guestfs-actions.pod:3637 ../fish/guestfish-actions.pod:2544
12261 msgid "List all the partitions detected on all block devices."
12262 msgstr ""
12263
12264 #. type: textblock
12265 #: ../src/guestfs-actions.pod:3639 ../fish/guestfish-actions.pod:2546
12266 msgid "The full partition device names are returned, eg. C</dev/sda1>"
12267 msgstr ""
12268
12269 #. type: textblock
12270 #: ../src/guestfs-actions.pod:3641
12271 msgid ""
12272 "This does not return logical volumes.  For that you will need to call "
12273 "C<guestfs_lvs>."
12274 msgstr ""
12275
12276 #. type: =head2
12277 #: ../src/guestfs-actions.pod:3652
12278 msgid "guestfs_ll"
12279 msgstr ""
12280
12281 #. type: verbatim
12282 #: ../src/guestfs-actions.pod:3654
12283 #, no-wrap
12284 msgid ""
12285 " char *\n"
12286 " guestfs_ll (guestfs_h *g,\n"
12287 "             const char *directory);\n"
12288 "\n"
12289 msgstr ""
12290
12291 #. type: textblock
12292 #: ../src/guestfs-actions.pod:3658 ../fish/guestfish-actions.pod:2557
12293 msgid ""
12294 "List the files in C<directory> (relative to the root directory, there is no "
12295 "cwd) in the format of 'ls -la'."
12296 msgstr ""
12297
12298 #. type: textblock
12299 #: ../src/guestfs-actions.pod:3661 ../fish/guestfish-actions.pod:2560
12300 msgid ""
12301 "This command is mostly useful for interactive sessions.  It is I<not> "
12302 "intended that you try to parse the output string."
12303 msgstr ""
12304
12305 #. type: =head2
12306 #: ../src/guestfs-actions.pod:3669
12307 msgid "guestfs_ln"
12308 msgstr ""
12309
12310 #. type: verbatim
12311 #: ../src/guestfs-actions.pod:3671
12312 #, no-wrap
12313 msgid ""
12314 " int\n"
12315 " guestfs_ln (guestfs_h *g,\n"
12316 "             const char *target,\n"
12317 "             const char *linkname);\n"
12318 "\n"
12319 msgstr ""
12320
12321 #. type: textblock
12322 #: ../src/guestfs-actions.pod:3676 ../fish/guestfish-actions.pod:2567
12323 msgid "This command creates a hard link using the C<ln> command."
12324 msgstr ""
12325
12326 #. type: =head2
12327 #: ../src/guestfs-actions.pod:3682
12328 msgid "guestfs_ln_f"
12329 msgstr ""
12330
12331 #. type: verbatim
12332 #: ../src/guestfs-actions.pod:3684
12333 #, no-wrap
12334 msgid ""
12335 " int\n"
12336 " guestfs_ln_f (guestfs_h *g,\n"
12337 "               const char *target,\n"
12338 "               const char *linkname);\n"
12339 "\n"
12340 msgstr ""
12341
12342 #. type: textblock
12343 #: ../src/guestfs-actions.pod:3689 ../fish/guestfish-actions.pod:2573
12344 msgid ""
12345 "This command creates a hard link using the C<ln -f> command.  The I<-f> "
12346 "option removes the link (C<linkname>) if it exists already."
12347 msgstr ""
12348
12349 #. type: =head2
12350 #: ../src/guestfs-actions.pod:3696
12351 msgid "guestfs_ln_s"
12352 msgstr ""
12353
12354 #. type: verbatim
12355 #: ../src/guestfs-actions.pod:3698
12356 #, no-wrap
12357 msgid ""
12358 " int\n"
12359 " guestfs_ln_s (guestfs_h *g,\n"
12360 "               const char *target,\n"
12361 "               const char *linkname);\n"
12362 "\n"
12363 msgstr ""
12364
12365 #. type: textblock
12366 #: ../src/guestfs-actions.pod:3703 ../fish/guestfish-actions.pod:2580
12367 msgid "This command creates a symbolic link using the C<ln -s> command."
12368 msgstr ""
12369
12370 #. type: =head2
12371 #: ../src/guestfs-actions.pod:3709
12372 msgid "guestfs_ln_sf"
12373 msgstr ""
12374
12375 #. type: verbatim
12376 #: ../src/guestfs-actions.pod:3711
12377 #, no-wrap
12378 msgid ""
12379 " int\n"
12380 " guestfs_ln_sf (guestfs_h *g,\n"
12381 "                const char *target,\n"
12382 "                const char *linkname);\n"
12383 "\n"
12384 msgstr ""
12385
12386 #. type: textblock
12387 #: ../src/guestfs-actions.pod:3716 ../fish/guestfish-actions.pod:2586
12388 msgid ""
12389 "This command creates a symbolic link using the C<ln -sf> command, The I<-f> "
12390 "option removes the link (C<linkname>) if it exists already."
12391 msgstr ""
12392
12393 #. type: =head2
12394 #: ../src/guestfs-actions.pod:3723
12395 msgid "guestfs_lremovexattr"
12396 msgstr ""
12397
12398 #. type: verbatim
12399 #: ../src/guestfs-actions.pod:3725
12400 #, no-wrap
12401 msgid ""
12402 " int\n"
12403 " guestfs_lremovexattr (guestfs_h *g,\n"
12404 "                       const char *xattr,\n"
12405 "                       const char *path);\n"
12406 "\n"
12407 msgstr ""
12408
12409 #. type: textblock
12410 #: ../src/guestfs-actions.pod:3730
12411 msgid ""
12412 "This is the same as C<guestfs_removexattr>, but if C<path> is a symbolic "
12413 "link, then it removes an extended attribute of the link itself."
12414 msgstr ""
12415
12416 #. type: =head2
12417 #: ../src/guestfs-actions.pod:3738
12418 msgid "guestfs_ls"
12419 msgstr ""
12420
12421 #. type: verbatim
12422 #: ../src/guestfs-actions.pod:3740
12423 #, no-wrap
12424 msgid ""
12425 " char **\n"
12426 " guestfs_ls (guestfs_h *g,\n"
12427 "             const char *directory);\n"
12428 "\n"
12429 msgstr ""
12430
12431 #. type: textblock
12432 #: ../src/guestfs-actions.pod:3744 ../fish/guestfish-actions.pod:2601
12433 msgid ""
12434 "List the files in C<directory> (relative to the root directory, there is no "
12435 "cwd).  The '.' and '..' entries are not returned, but hidden files are shown."
12436 msgstr ""
12437
12438 #. type: textblock
12439 #: ../src/guestfs-actions.pod:3748
12440 msgid ""
12441 "This command is mostly useful for interactive sessions.  Programs should "
12442 "probably use C<guestfs_readdir> instead."
12443 msgstr ""
12444
12445 #. type: =head2
12446 #: ../src/guestfs-actions.pod:3757
12447 msgid "guestfs_lsetxattr"
12448 msgstr ""
12449
12450 #. type: verbatim
12451 #: ../src/guestfs-actions.pod:3759
12452 #, no-wrap
12453 msgid ""
12454 " int\n"
12455 " guestfs_lsetxattr (guestfs_h *g,\n"
12456 "                    const char *xattr,\n"
12457 "                    const char *val,\n"
12458 "                    int vallen,\n"
12459 "                    const char *path);\n"
12460 "\n"
12461 msgstr ""
12462
12463 #. type: textblock
12464 #: ../src/guestfs-actions.pod:3766
12465 msgid ""
12466 "This is the same as C<guestfs_setxattr>, but if C<path> is a symbolic link, "
12467 "then it sets an extended attribute of the link itself."
12468 msgstr ""
12469
12470 #. type: =head2
12471 #: ../src/guestfs-actions.pod:3774
12472 msgid "guestfs_lstat"
12473 msgstr ""
12474
12475 #. type: verbatim
12476 #: ../src/guestfs-actions.pod:3776
12477 #, no-wrap
12478 msgid ""
12479 " struct guestfs_stat *\n"
12480 " guestfs_lstat (guestfs_h *g,\n"
12481 "                const char *path);\n"
12482 "\n"
12483 msgstr ""
12484
12485 #. type: textblock
12486 #: ../src/guestfs-actions.pod:3780 ../src/guestfs-actions.pod:6382
12487 #: ../fish/guestfish-actions.pod:2620 ../fish/guestfish-actions.pod:4333
12488 msgid "Returns file information for the given C<path>."
12489 msgstr ""
12490
12491 #. type: textblock
12492 #: ../src/guestfs-actions.pod:3782
12493 msgid ""
12494 "This is the same as C<guestfs_stat> except that if C<path> is a symbolic "
12495 "link, then the link is stat-ed, not the file it refers to."
12496 msgstr ""
12497
12498 #. type: textblock
12499 #: ../src/guestfs-actions.pod:3786 ../fish/guestfish-actions.pod:2626
12500 msgid "This is the same as the C<lstat(2)> system call."
12501 msgstr ""
12502
12503 #. type: textblock
12504 #: ../src/guestfs-actions.pod:3788 ../src/guestfs-actions.pod:6386
12505 msgid ""
12506 "This function returns a C<struct guestfs_stat *>, or NULL if there was an "
12507 "error.  I<The caller must call C<guestfs_free_stat> after use>."
12508 msgstr ""
12509
12510 #. type: textblock
12511 #: ../src/guestfs-actions.pod:3792 ../src/guestfs-actions.pod:6390
12512 #: ../src/guestfs-actions.pod:6408 ../src/guestfs-actions.pod:6789
12513 msgid "(Added in 0.9.2)"
12514 msgstr ""
12515
12516 #. type: =head2
12517 #: ../src/guestfs-actions.pod:3794
12518 msgid "guestfs_lstatlist"
12519 msgstr ""
12520
12521 #. type: verbatim
12522 #: ../src/guestfs-actions.pod:3796
12523 #, no-wrap
12524 msgid ""
12525 " struct guestfs_stat_list *\n"
12526 " guestfs_lstatlist (guestfs_h *g,\n"
12527 "                    const char *path,\n"
12528 "                    char *const *names);\n"
12529 "\n"
12530 msgstr ""
12531
12532 #. type: textblock
12533 #: ../src/guestfs-actions.pod:3801
12534 msgid ""
12535 "This call allows you to perform the C<guestfs_lstat> operation on multiple "
12536 "files, where all files are in the directory C<path>.  C<names> is the list "
12537 "of files from this directory."
12538 msgstr ""
12539
12540 #. type: textblock
12541 #: ../src/guestfs-actions.pod:3805 ../fish/guestfish-actions.pod:2636
12542 msgid ""
12543 "On return you get a list of stat structs, with a one-to-one correspondence "
12544 "to the C<names> list.  If any name did not exist or could not be lstat'd, "
12545 "then the C<ino> field of that structure is set to C<-1>."
12546 msgstr ""
12547
12548 #. type: textblock
12549 #: ../src/guestfs-actions.pod:3810
12550 msgid ""
12551 "This call is intended for programs that want to efficiently list a directory "
12552 "contents without making many round-trips.  See also C<guestfs_lxattrlist> "
12553 "for a similarly efficient call for getting extended attributes.  Very long "
12554 "directory listings might cause the protocol message size to be exceeded, "
12555 "causing this call to fail.  The caller must split up such requests into "
12556 "smaller groups of names."
12557 msgstr ""
12558
12559 #. type: textblock
12560 #: ../src/guestfs-actions.pod:3818
12561 msgid ""
12562 "This function returns a C<struct guestfs_stat_list *>, or NULL if there was "
12563 "an error.  I<The caller must call C<guestfs_free_stat_list> after use>."
12564 msgstr ""
12565
12566 #. type: =head2
12567 #: ../src/guestfs-actions.pod:3824
12568 msgid "guestfs_luks_add_key"
12569 msgstr ""
12570
12571 #. type: verbatim
12572 #: ../src/guestfs-actions.pod:3826
12573 #, no-wrap
12574 msgid ""
12575 " int\n"
12576 " guestfs_luks_add_key (guestfs_h *g,\n"
12577 "                       const char *device,\n"
12578 "                       const char *key,\n"
12579 "                       const char *newkey,\n"
12580 "                       int keyslot);\n"
12581 "\n"
12582 msgstr ""
12583
12584 #. type: textblock
12585 #: ../src/guestfs-actions.pod:3833 ../fish/guestfish-actions.pod:2653
12586 msgid ""
12587 "This command adds a new key on LUKS device C<device>.  C<key> is any "
12588 "existing key, and is used to access the device.  C<newkey> is the new key to "
12589 "add.  C<keyslot> is the key slot that will be replaced."
12590 msgstr ""
12591
12592 #. type: textblock
12593 #: ../src/guestfs-actions.pod:3838
12594 msgid ""
12595 "Note that if C<keyslot> already contains a key, then this command will "
12596 "fail.  You have to use C<guestfs_luks_kill_slot> first to remove that key."
12597 msgstr ""
12598
12599 #. type: textblock
12600 #: ../src/guestfs-actions.pod:3844 ../src/guestfs-actions.pod:3884
12601 #: ../src/guestfs-actions.pod:3907 ../src/guestfs-actions.pod:3927
12602 #: ../src/guestfs-actions.pod:3959 ../src/guestfs-actions.pod:3978
12603 msgid ""
12604 "This function takes a key or passphrase parameter which could contain "
12605 "sensitive material.  Read the section L</KEYS AND PASSPHRASES> for more "
12606 "information."
12607 msgstr ""
12608
12609 #. type: textblock
12610 #: ../src/guestfs-actions.pod:3848 ../src/guestfs-actions.pod:3888
12611 #: ../src/guestfs-actions.pod:3911 ../src/guestfs-actions.pod:3931
12612 msgid "(Added in 1.5.2)"
12613 msgstr ""
12614
12615 #. type: =head2
12616 #: ../src/guestfs-actions.pod:3850
12617 msgid "guestfs_luks_close"
12618 msgstr ""
12619
12620 #. type: verbatim
12621 #: ../src/guestfs-actions.pod:3852
12622 #, no-wrap
12623 msgid ""
12624 " int\n"
12625 " guestfs_luks_close (guestfs_h *g,\n"
12626 "                     const char *device);\n"
12627 "\n"
12628 msgstr ""
12629
12630 #. type: textblock
12631 #: ../src/guestfs-actions.pod:3856
12632 msgid ""
12633 "This closes a LUKS device that was created earlier by C<guestfs_luks_open> "
12634 "or C<guestfs_luks_open_ro>.  The C<device> parameter must be the name of the "
12635 "LUKS mapping device (ie. C</dev/mapper/mapname>) and I<not> the name of the "
12636 "underlying block device."
12637 msgstr ""
12638
12639 #. type: textblock
12640 #: ../src/guestfs-actions.pod:3864 ../src/guestfs-actions.pod:3963
12641 #: ../src/guestfs-actions.pod:3982 ../src/guestfs-actions.pod:4032
12642 #: ../src/guestfs-actions.pod:4080
12643 msgid "(Added in 1.5.1)"
12644 msgstr ""
12645
12646 #. type: =head2
12647 #: ../src/guestfs-actions.pod:3866
12648 msgid "guestfs_luks_format"
12649 msgstr ""
12650
12651 #. type: verbatim
12652 #: ../src/guestfs-actions.pod:3868
12653 #, no-wrap
12654 msgid ""
12655 " int\n"
12656 " guestfs_luks_format (guestfs_h *g,\n"
12657 "                      const char *device,\n"
12658 "                      const char *key,\n"
12659 "                      int keyslot);\n"
12660 "\n"
12661 msgstr ""
12662
12663 #. type: textblock
12664 #: ../src/guestfs-actions.pod:3874 ../fish/guestfish-actions.pod:2679
12665 msgid ""
12666 "This command erases existing data on C<device> and formats the device as a "
12667 "LUKS encrypted device.  C<key> is the initial key, which is added to key "
12668 "slot C<slot>.  (LUKS supports 8 key slots, numbered 0-7)."
12669 msgstr ""
12670
12671 #. type: textblock
12672 #: ../src/guestfs-actions.pod:3881 ../src/guestfs-actions.pod:3904
12673 #: ../src/guestfs-actions.pod:4044 ../src/guestfs-actions.pod:5002
12674 #: ../src/guestfs-actions.pod:5782 ../src/guestfs-actions.pod:6189
12675 #: ../src/guestfs-actions.pod:6219 ../src/guestfs-actions.pod:6252
12676 #: ../src/guestfs-actions.pod:7433 ../fish/guestfish-actions.pod:2687
12677 #: ../fish/guestfish-actions.pod:2700 ../fish/guestfish-actions.pod:2784
12678 #: ../fish/guestfish-actions.pod:3374 ../fish/guestfish-actions.pod:3894
12679 #: ../fish/guestfish-actions.pod:4204 ../fish/guestfish-actions.pod:4227
12680 #: ../fish/guestfish-actions.pod:4249 ../fish/guestfish-actions.pod:4978
12681 msgid ""
12682 "B<This command is dangerous.  Without careful use you can easily destroy all "
12683 "your data>."
12684 msgstr ""
12685
12686 #. type: =head2
12687 #: ../src/guestfs-actions.pod:3890
12688 msgid "guestfs_luks_format_cipher"
12689 msgstr ""
12690
12691 #. type: verbatim
12692 #: ../src/guestfs-actions.pod:3892
12693 #, no-wrap
12694 msgid ""
12695 " int\n"
12696 " guestfs_luks_format_cipher (guestfs_h *g,\n"
12697 "                             const char *device,\n"
12698 "                             const char *key,\n"
12699 "                             int keyslot,\n"
12700 "                             const char *cipher);\n"
12701 "\n"
12702 msgstr ""
12703
12704 #. type: textblock
12705 #: ../src/guestfs-actions.pod:3899
12706 msgid ""
12707 "This command is the same as C<guestfs_luks_format> but it also allows you to "
12708 "set the C<cipher> used."
12709 msgstr ""
12710
12711 #. type: =head2
12712 #: ../src/guestfs-actions.pod:3913
12713 msgid "guestfs_luks_kill_slot"
12714 msgstr ""
12715
12716 #. type: verbatim
12717 #: ../src/guestfs-actions.pod:3915
12718 #, no-wrap
12719 msgid ""
12720 " int\n"
12721 " guestfs_luks_kill_slot (guestfs_h *g,\n"
12722 "                         const char *device,\n"
12723 "                         const char *key,\n"
12724 "                         int keyslot);\n"
12725 "\n"
12726 msgstr ""
12727
12728 #. type: textblock
12729 #: ../src/guestfs-actions.pod:3921 ../fish/guestfish-actions.pod:2707
12730 msgid ""
12731 "This command deletes the key in key slot C<keyslot> from the encrypted LUKS "
12732 "device C<device>.  C<key> must be one of the I<other> keys."
12733 msgstr ""
12734
12735 #. type: =head2
12736 #: ../src/guestfs-actions.pod:3933
12737 msgid "guestfs_luks_open"
12738 msgstr ""
12739
12740 #. type: verbatim
12741 #: ../src/guestfs-actions.pod:3935
12742 #, no-wrap
12743 msgid ""
12744 " int\n"
12745 " guestfs_luks_open (guestfs_h *g,\n"
12746 "                    const char *device,\n"
12747 "                    const char *key,\n"
12748 "                    const char *mapname);\n"
12749 "\n"
12750 msgstr ""
12751
12752 #. type: textblock
12753 #: ../src/guestfs-actions.pod:3941 ../fish/guestfish-actions.pod:2718
12754 msgid ""
12755 "This command opens a block device which has been encrypted according to the "
12756 "Linux Unified Key Setup (LUKS) standard."
12757 msgstr ""
12758
12759 #. type: textblock
12760 #: ../src/guestfs-actions.pod:3944 ../fish/guestfish-actions.pod:2721
12761 msgid "C<device> is the encrypted block device or partition."
12762 msgstr ""
12763
12764 #. type: textblock
12765 #: ../src/guestfs-actions.pod:3946 ../fish/guestfish-actions.pod:2723
12766 msgid ""
12767 "The caller must supply one of the keys associated with the LUKS block "
12768 "device, in the C<key> parameter."
12769 msgstr ""
12770
12771 #. type: textblock
12772 #: ../src/guestfs-actions.pod:3949 ../fish/guestfish-actions.pod:2726
12773 msgid ""
12774 "This creates a new block device called C</dev/mapper/mapname>.  Reads and "
12775 "writes to this block device are decrypted from and encrypted to the "
12776 "underlying C<device> respectively."
12777 msgstr ""
12778
12779 #. type: textblock
12780 #: ../src/guestfs-actions.pod:3953
12781 msgid ""
12782 "If this block device contains LVM volume groups, then calling "
12783 "C<guestfs_vgscan> followed by C<guestfs_vg_activate_all> will make them "
12784 "visible."
12785 msgstr ""
12786
12787 #. type: =head2
12788 #: ../src/guestfs-actions.pod:3965
12789 msgid "guestfs_luks_open_ro"
12790 msgstr ""
12791
12792 #. type: verbatim
12793 #: ../src/guestfs-actions.pod:3967
12794 #, no-wrap
12795 msgid ""
12796 " int\n"
12797 " guestfs_luks_open_ro (guestfs_h *g,\n"
12798 "                       const char *device,\n"
12799 "                       const char *key,\n"
12800 "                       const char *mapname);\n"
12801 "\n"
12802 msgstr ""
12803
12804 #. type: textblock
12805 #: ../src/guestfs-actions.pod:3973
12806 msgid ""
12807 "This is the same as C<guestfs_luks_open> except that a read-only mapping is "
12808 "created."
12809 msgstr ""
12810
12811 #. type: =head2
12812 #: ../src/guestfs-actions.pod:3984
12813 msgid "guestfs_lvcreate"
12814 msgstr ""
12815
12816 #. type: verbatim
12817 #: ../src/guestfs-actions.pod:3986
12818 #, no-wrap
12819 msgid ""
12820 " int\n"
12821 " guestfs_lvcreate (guestfs_h *g,\n"
12822 "                   const char *logvol,\n"
12823 "                   const char *volgroup,\n"
12824 "                   int mbytes);\n"
12825 "\n"
12826 msgstr ""
12827
12828 #. type: textblock
12829 #: ../src/guestfs-actions.pod:3992 ../fish/guestfish-actions.pod:2751
12830 msgid ""
12831 "This creates an LVM logical volume called C<logvol> on the volume group "
12832 "C<volgroup>, with C<size> megabytes."
12833 msgstr ""
12834
12835 #. type: =head2
12836 #: ../src/guestfs-actions.pod:3999
12837 msgid "guestfs_lvm_canonical_lv_name"
12838 msgstr ""
12839
12840 #. type: verbatim
12841 #: ../src/guestfs-actions.pod:4001
12842 #, no-wrap
12843 msgid ""
12844 " char *\n"
12845 " guestfs_lvm_canonical_lv_name (guestfs_h *g,\n"
12846 "                                const char *lvname);\n"
12847 "\n"
12848 msgstr ""
12849
12850 #. type: textblock
12851 #: ../src/guestfs-actions.pod:4005 ../fish/guestfish-actions.pod:2758
12852 msgid ""
12853 "This converts alternative naming schemes for LVs that you might find to the "
12854 "canonical name.  For example, C</dev/mapper/VG-LV> is converted to C</dev/VG/"
12855 "LV>."
12856 msgstr ""
12857
12858 #. type: textblock
12859 #: ../src/guestfs-actions.pod:4009 ../fish/guestfish-actions.pod:2762
12860 msgid ""
12861 "This command returns an error if the C<lvname> parameter does not refer to a "
12862 "logical volume."
12863 msgstr ""
12864
12865 #. type: textblock
12866 #: ../src/guestfs-actions.pod:4012
12867 msgid "See also C<guestfs_is_lv>."
12868 msgstr ""
12869
12870 #. type: textblock
12871 #: ../src/guestfs-actions.pod:4017
12872 msgid "(Added in 1.5.24)"
12873 msgstr ""
12874
12875 #. type: =head2
12876 #: ../src/guestfs-actions.pod:4019
12877 msgid "guestfs_lvm_clear_filter"
12878 msgstr ""
12879
12880 #. type: verbatim
12881 #: ../src/guestfs-actions.pod:4021
12882 #, no-wrap
12883 msgid ""
12884 " int\n"
12885 " guestfs_lvm_clear_filter (guestfs_h *g);\n"
12886 "\n"
12887 msgstr ""
12888
12889 #. type: textblock
12890 #: ../src/guestfs-actions.pod:4024
12891 msgid ""
12892 "This undoes the effect of C<guestfs_lvm_set_filter>.  LVM will be able to "
12893 "see every block device."
12894 msgstr ""
12895
12896 #. type: textblock
12897 #: ../src/guestfs-actions.pod:4027 ../src/guestfs-actions.pod:4069
12898 #: ../fish/guestfish-actions.pod:2774 ../fish/guestfish-actions.pod:2805
12899 msgid ""
12900 "This command also clears the LVM cache and performs a volume group scan."
12901 msgstr ""
12902
12903 #. type: =head2
12904 #: ../src/guestfs-actions.pod:4034
12905 msgid "guestfs_lvm_remove_all"
12906 msgstr ""
12907
12908 #. type: verbatim
12909 #: ../src/guestfs-actions.pod:4036
12910 #, no-wrap
12911 msgid ""
12912 " int\n"
12913 " guestfs_lvm_remove_all (guestfs_h *g);\n"
12914 "\n"
12915 msgstr ""
12916
12917 #. type: textblock
12918 #: ../src/guestfs-actions.pod:4039 ../fish/guestfish-actions.pod:2781
12919 msgid ""
12920 "This command removes all LVM logical volumes, volume groups and physical "
12921 "volumes."
12922 msgstr ""
12923
12924 #. type: =head2
12925 #: ../src/guestfs-actions.pod:4049
12926 msgid "guestfs_lvm_set_filter"
12927 msgstr ""
12928
12929 #. type: verbatim
12930 #: ../src/guestfs-actions.pod:4051
12931 #, no-wrap
12932 msgid ""
12933 " int\n"
12934 " guestfs_lvm_set_filter (guestfs_h *g,\n"
12935 "                         char *const *devices);\n"
12936 "\n"
12937 msgstr ""
12938
12939 #. type: textblock
12940 #: ../src/guestfs-actions.pod:4055 ../fish/guestfish-actions.pod:2791
12941 msgid ""
12942 "This sets the LVM device filter so that LVM will only be able to \"see\" the "
12943 "block devices in the list C<devices>, and will ignore all other attached "
12944 "block devices."
12945 msgstr ""
12946
12947 #. type: textblock
12948 #: ../src/guestfs-actions.pod:4059 ../fish/guestfish-actions.pod:2795
12949 msgid ""
12950 "Where disk image(s) contain duplicate PVs or VGs, this command is useful to "
12951 "get LVM to ignore the duplicates, otherwise LVM can get confused.  Note also "
12952 "there are two types of duplication possible: either cloned PVs/VGs which "
12953 "have identical UUIDs; or VGs that are not cloned but just happen to have the "
12954 "same name.  In normal operation you cannot create this situation, but you "
12955 "can do it outside LVM, eg.  by cloning disk images or by bit twiddling "
12956 "inside the LVM metadata."
12957 msgstr ""
12958
12959 #. type: textblock
12960 #: ../src/guestfs-actions.pod:4072 ../fish/guestfish-actions.pod:2808
12961 msgid "You can filter whole block devices or individual partitions."
12962 msgstr ""
12963
12964 #. type: textblock
12965 #: ../src/guestfs-actions.pod:4074 ../fish/guestfish-actions.pod:2810
12966 msgid ""
12967 "You cannot use this if any VG is currently in use (eg.  contains a mounted "
12968 "filesystem), even if you are not filtering out that VG."
12969 msgstr ""
12970
12971 #. type: =head2
12972 #: ../src/guestfs-actions.pod:4082
12973 msgid "guestfs_lvremove"
12974 msgstr ""
12975
12976 #. type: verbatim
12977 #: ../src/guestfs-actions.pod:4084
12978 #, no-wrap
12979 msgid ""
12980 " int\n"
12981 " guestfs_lvremove (guestfs_h *g,\n"
12982 "                   const char *device);\n"
12983 "\n"
12984 msgstr ""
12985
12986 #. type: textblock
12987 #: ../src/guestfs-actions.pod:4088 ../fish/guestfish-actions.pod:2818
12988 msgid ""
12989 "Remove an LVM logical volume C<device>, where C<device> is the path to the "
12990 "LV, such as C</dev/VG/LV>."
12991 msgstr ""
12992
12993 #. type: textblock
12994 #: ../src/guestfs-actions.pod:4091 ../fish/guestfish-actions.pod:2821
12995 msgid ""
12996 "You can also remove all LVs in a volume group by specifying the VG name, C</"
12997 "dev/VG>."
12998 msgstr ""
12999
13000 #. type: textblock
13001 #: ../src/guestfs-actions.pod:4096 ../src/guestfs-actions.pod:5348
13002 #: ../src/guestfs-actions.pod:7165
13003 msgid "(Added in 1.0.13)"
13004 msgstr ""
13005
13006 #. type: =head2
13007 #: ../src/guestfs-actions.pod:4098
13008 msgid "guestfs_lvrename"
13009 msgstr ""
13010
13011 #. type: verbatim
13012 #: ../src/guestfs-actions.pod:4100
13013 #, no-wrap
13014 msgid ""
13015 " int\n"
13016 " guestfs_lvrename (guestfs_h *g,\n"
13017 "                   const char *logvol,\n"
13018 "                   const char *newlogvol);\n"
13019 "\n"
13020 msgstr ""
13021
13022 #. type: textblock
13023 #: ../src/guestfs-actions.pod:4105 ../fish/guestfish-actions.pod:2828
13024 msgid "Rename a logical volume C<logvol> with the new name C<newlogvol>."
13025 msgstr ""
13026
13027 #. type: textblock
13028 #: ../src/guestfs-actions.pod:4109 ../src/guestfs-actions.pod:7178
13029 msgid "(Added in 1.0.83)"
13030 msgstr ""
13031
13032 #. type: =head2
13033 #: ../src/guestfs-actions.pod:4111
13034 msgid "guestfs_lvresize"
13035 msgstr ""
13036
13037 #. type: verbatim
13038 #: ../src/guestfs-actions.pod:4113
13039 #, no-wrap
13040 msgid ""
13041 " int\n"
13042 " guestfs_lvresize (guestfs_h *g,\n"
13043 "                   const char *device,\n"
13044 "                   int mbytes);\n"
13045 "\n"
13046 msgstr ""
13047
13048 #. type: textblock
13049 #: ../src/guestfs-actions.pod:4118 ../fish/guestfish-actions.pod:2834
13050 msgid ""
13051 "This resizes (expands or shrinks) an existing LVM logical volume to "
13052 "C<mbytes>.  When reducing, data in the reduced part is lost."
13053 msgstr ""
13054
13055 #. type: =head2
13056 #: ../src/guestfs-actions.pod:4126
13057 msgid "guestfs_lvresize_free"
13058 msgstr ""
13059
13060 #. type: verbatim
13061 #: ../src/guestfs-actions.pod:4128
13062 #, no-wrap
13063 msgid ""
13064 " int\n"
13065 " guestfs_lvresize_free (guestfs_h *g,\n"
13066 "                        const char *lv,\n"
13067 "                        int percent);\n"
13068 "\n"
13069 msgstr ""
13070
13071 #. type: textblock
13072 #: ../src/guestfs-actions.pod:4133 ../fish/guestfish-actions.pod:2842
13073 msgid ""
13074 "This expands an existing logical volume C<lv> so that it fills C<pc>% of the "
13075 "remaining free space in the volume group.  Commonly you would call this with "
13076 "pc = 100 which expands the logical volume as much as possible, using all "
13077 "remaining free space in the volume group."
13078 msgstr ""
13079
13080 #. type: textblock
13081 #: ../src/guestfs-actions.pod:4141
13082 msgid "(Added in 1.3.3)"
13083 msgstr ""
13084
13085 #. type: =head2
13086 #: ../src/guestfs-actions.pod:4143
13087 msgid "guestfs_lvs"
13088 msgstr ""
13089
13090 #. type: verbatim
13091 #: ../src/guestfs-actions.pod:4145
13092 #, no-wrap
13093 msgid ""
13094 " char **\n"
13095 " guestfs_lvs (guestfs_h *g);\n"
13096 "\n"
13097 msgstr ""
13098
13099 #. type: textblock
13100 #: ../src/guestfs-actions.pod:4148 ../fish/guestfish-actions.pod:2852
13101 msgid ""
13102 "List all the logical volumes detected.  This is the equivalent of the L<lvs"
13103 "(8)> command."
13104 msgstr ""
13105
13106 #. type: textblock
13107 #: ../src/guestfs-actions.pod:4151 ../fish/guestfish-actions.pod:2855
13108 msgid ""
13109 "This returns a list of the logical volume device names (eg. C</dev/"
13110 "VolGroup00/LogVol00>)."
13111 msgstr ""
13112
13113 #. type: textblock
13114 #: ../src/guestfs-actions.pod:4154
13115 msgid "See also C<guestfs_lvs_full>, C<guestfs_list_filesystems>."
13116 msgstr ""
13117
13118 #. type: =head2
13119 #: ../src/guestfs-actions.pod:4162
13120 msgid "guestfs_lvs_full"
13121 msgstr ""
13122
13123 #. type: verbatim
13124 #: ../src/guestfs-actions.pod:4164
13125 #, no-wrap
13126 msgid ""
13127 " struct guestfs_lvm_lv_list *\n"
13128 " guestfs_lvs_full (guestfs_h *g);\n"
13129 "\n"
13130 msgstr ""
13131
13132 #. type: textblock
13133 #: ../src/guestfs-actions.pod:4167 ../fish/guestfish-actions.pod:2864
13134 msgid ""
13135 "List all the logical volumes detected.  This is the equivalent of the L<lvs"
13136 "(8)> command.  The \"full\" version includes all fields."
13137 msgstr ""
13138
13139 #. type: textblock
13140 #: ../src/guestfs-actions.pod:4170
13141 msgid ""
13142 "This function returns a C<struct guestfs_lvm_lv_list *>, or NULL if there "
13143 "was an error.  I<The caller must call C<guestfs_free_lvm_lv_list> after use>."
13144 msgstr ""
13145
13146 #. type: =head2
13147 #: ../src/guestfs-actions.pod:4176
13148 msgid "guestfs_lvuuid"
13149 msgstr ""
13150
13151 #. type: verbatim
13152 #: ../src/guestfs-actions.pod:4178
13153 #, no-wrap
13154 msgid ""
13155 " char *\n"
13156 " guestfs_lvuuid (guestfs_h *g,\n"
13157 "                 const char *device);\n"
13158 "\n"
13159 msgstr ""
13160
13161 #. type: textblock
13162 #: ../src/guestfs-actions.pod:4182 ../fish/guestfish-actions.pod:2871
13163 msgid "This command returns the UUID of the LVM LV C<device>."
13164 msgstr ""
13165
13166 #. type: =head2
13167 #: ../src/guestfs-actions.pod:4189
13168 msgid "guestfs_lxattrlist"
13169 msgstr ""
13170
13171 #. type: verbatim
13172 #: ../src/guestfs-actions.pod:4191
13173 #, no-wrap
13174 msgid ""
13175 " struct guestfs_xattr_list *\n"
13176 " guestfs_lxattrlist (guestfs_h *g,\n"
13177 "                     const char *path,\n"
13178 "                     char *const *names);\n"
13179 "\n"
13180 msgstr ""
13181
13182 #. type: textblock
13183 #: ../src/guestfs-actions.pod:4196 ../fish/guestfish-actions.pod:2877
13184 msgid ""
13185 "This call allows you to get the extended attributes of multiple files, where "
13186 "all files are in the directory C<path>.  C<names> is the list of files from "
13187 "this directory."
13188 msgstr ""
13189
13190 #. type: textblock
13191 #: ../src/guestfs-actions.pod:4200 ../fish/guestfish-actions.pod:2881
13192 msgid ""
13193 "On return you get a flat list of xattr structs which must be interpreted "
13194 "sequentially.  The first xattr struct always has a zero-length C<attrname>.  "
13195 "C<attrval> in this struct is zero-length to indicate there was an error "
13196 "doing C<lgetxattr> for this file, I<or> is a C string which is a decimal "
13197 "number (the number of following attributes for this file, which could be C<"
13198 "\"0\">).  Then after the first xattr struct are the zero or more attributes "
13199 "for the first named file.  This repeats for the second and subsequent files."
13200 msgstr ""
13201
13202 #. type: textblock
13203 #: ../src/guestfs-actions.pod:4210
13204 msgid ""
13205 "This call is intended for programs that want to efficiently list a directory "
13206 "contents without making many round-trips.  See also C<guestfs_lstatlist> for "
13207 "a similarly efficient call for getting standard stats.  Very long directory "
13208 "listings might cause the protocol message size to be exceeded, causing this "
13209 "call to fail.  The caller must split up such requests into smaller groups of "
13210 "names."
13211 msgstr ""
13212
13213 #. type: =head2
13214 #: ../src/guestfs-actions.pod:4224
13215 msgid "guestfs_mkdir"
13216 msgstr ""
13217
13218 #. type: verbatim
13219 #: ../src/guestfs-actions.pod:4226
13220 #, no-wrap
13221 msgid ""
13222 " int\n"
13223 " guestfs_mkdir (guestfs_h *g,\n"
13224 "                const char *path);\n"
13225 "\n"
13226 msgstr ""
13227
13228 #. type: textblock
13229 #: ../src/guestfs-actions.pod:4230 ../fish/guestfish-actions.pod:2903
13230 msgid "Create a directory named C<path>."
13231 msgstr ""
13232
13233 #. type: =head2
13234 #: ../src/guestfs-actions.pod:4236
13235 msgid "guestfs_mkdir_mode"
13236 msgstr ""
13237
13238 #. type: verbatim
13239 #: ../src/guestfs-actions.pod:4238
13240 #, no-wrap
13241 msgid ""
13242 " int\n"
13243 " guestfs_mkdir_mode (guestfs_h *g,\n"
13244 "                     const char *path,\n"
13245 "                     int mode);\n"
13246 "\n"
13247 msgstr ""
13248
13249 #. type: textblock
13250 #: ../src/guestfs-actions.pod:4243 ../fish/guestfish-actions.pod:2909
13251 msgid ""
13252 "This command creates a directory, setting the initial permissions of the "
13253 "directory to C<mode>."
13254 msgstr ""
13255
13256 #. type: textblock
13257 #: ../src/guestfs-actions.pod:4246 ../fish/guestfish-actions.pod:2912
13258 msgid ""
13259 "For common Linux filesystems, the actual mode which is set will be C<mode & "
13260 "~umask & 01777>.  Non-native-Linux filesystems may interpret the mode in "
13261 "other ways."
13262 msgstr ""
13263
13264 #. type: textblock
13265 #: ../src/guestfs-actions.pod:4250
13266 msgid "See also C<guestfs_mkdir>, C<guestfs_umask>"
13267 msgstr ""
13268
13269 #. type: =head2
13270 #: ../src/guestfs-actions.pod:4256
13271 msgid "guestfs_mkdir_p"
13272 msgstr ""
13273
13274 #. type: verbatim
13275 #: ../src/guestfs-actions.pod:4258
13276 #, no-wrap
13277 msgid ""
13278 " int\n"
13279 " guestfs_mkdir_p (guestfs_h *g,\n"
13280 "                  const char *path);\n"
13281 "\n"
13282 msgstr ""
13283
13284 #. type: textblock
13285 #: ../src/guestfs-actions.pod:4262 ../fish/guestfish-actions.pod:2922
13286 msgid ""
13287 "Create a directory named C<path>, creating any parent directories as "
13288 "necessary.  This is like the C<mkdir -p> shell command."
13289 msgstr ""
13290
13291 #. type: =head2
13292 #: ../src/guestfs-actions.pod:4269
13293 msgid "guestfs_mkdtemp"
13294 msgstr ""
13295
13296 #. type: verbatim
13297 #: ../src/guestfs-actions.pod:4271
13298 #, no-wrap
13299 msgid ""
13300 " char *\n"
13301 " guestfs_mkdtemp (guestfs_h *g,\n"
13302 "                  const char *template);\n"
13303 "\n"
13304 msgstr ""
13305
13306 #. type: textblock
13307 #: ../src/guestfs-actions.pod:4275 ../fish/guestfish-actions.pod:2929
13308 msgid ""
13309 "This command creates a temporary directory.  The C<template> parameter "
13310 "should be a full pathname for the temporary directory name with the final "
13311 "six characters being \"XXXXXX\"."
13312 msgstr ""
13313
13314 #. type: textblock
13315 #: ../src/guestfs-actions.pod:4280 ../fish/guestfish-actions.pod:2934
13316 msgid ""
13317 "For example: \"/tmp/myprogXXXXXX\" or \"/Temp/myprogXXXXXX\", the second one "
13318 "being suitable for Windows filesystems."
13319 msgstr ""
13320
13321 #. type: textblock
13322 #: ../src/guestfs-actions.pod:4283 ../fish/guestfish-actions.pod:2937
13323 msgid "The name of the temporary directory that was created is returned."
13324 msgstr ""
13325
13326 #. type: textblock
13327 #: ../src/guestfs-actions.pod:4286 ../fish/guestfish-actions.pod:2940
13328 msgid "The temporary directory is created with mode 0700 and is owned by root."
13329 msgstr ""
13330
13331 #. type: textblock
13332 #: ../src/guestfs-actions.pod:4289 ../fish/guestfish-actions.pod:2943
13333 msgid ""
13334 "The caller is responsible for deleting the temporary directory and its "
13335 "contents after use."
13336 msgstr ""
13337
13338 #. type: textblock
13339 #: ../src/guestfs-actions.pod:4292 ../fish/guestfish-actions.pod:2946
13340 msgid "See also: L<mkdtemp(3)>"
13341 msgstr ""
13342
13343 #. type: =head2
13344 #: ../src/guestfs-actions.pod:4299
13345 msgid "guestfs_mke2fs_J"
13346 msgstr ""
13347
13348 #. type: verbatim
13349 #: ../src/guestfs-actions.pod:4301
13350 #, no-wrap
13351 msgid ""
13352 " int\n"
13353 " guestfs_mke2fs_J (guestfs_h *g,\n"
13354 "                   const char *fstype,\n"
13355 "                   int blocksize,\n"
13356 "                   const char *device,\n"
13357 "                   const char *journal);\n"
13358 "\n"
13359 msgstr ""
13360
13361 #. type: textblock
13362 #: ../src/guestfs-actions.pod:4308 ../fish/guestfish-actions.pod:2952
13363 msgid ""
13364 "This creates an ext2/3/4 filesystem on C<device> with an external journal on "
13365 "C<journal>.  It is equivalent to the command:"
13366 msgstr ""
13367
13368 #. type: verbatim
13369 #: ../src/guestfs-actions.pod:4312 ../fish/guestfish-actions.pod:2956
13370 #, no-wrap
13371 msgid ""
13372 " mke2fs -t fstype -b blocksize -J device=<journal> <device>\n"
13373 "\n"
13374 msgstr ""
13375
13376 #. type: textblock
13377 #: ../src/guestfs-actions.pod:4314
13378 msgid "See also C<guestfs_mke2journal>."
13379 msgstr ""
13380
13381 #. type: textblock
13382 #: ../src/guestfs-actions.pod:4318 ../src/guestfs-actions.pod:4336
13383 #: ../src/guestfs-actions.pod:4354 ../src/guestfs-actions.pod:4370
13384 #: ../src/guestfs-actions.pod:4384 ../src/guestfs-actions.pod:4398
13385 #: ../src/guestfs-actions.pod:4457 ../src/guestfs-actions.pod:4722
13386 msgid "(Added in 1.0.68)"
13387 msgstr ""
13388
13389 #. type: =head2
13390 #: ../src/guestfs-actions.pod:4320
13391 msgid "guestfs_mke2fs_JL"
13392 msgstr ""
13393
13394 #. type: verbatim
13395 #: ../src/guestfs-actions.pod:4322
13396 #, no-wrap
13397 msgid ""
13398 " int\n"
13399 " guestfs_mke2fs_JL (guestfs_h *g,\n"
13400 "                    const char *fstype,\n"
13401 "                    int blocksize,\n"
13402 "                    const char *device,\n"
13403 "                    const char *label);\n"
13404 "\n"
13405 msgstr ""
13406
13407 #. type: textblock
13408 #: ../src/guestfs-actions.pod:4329 ../fish/guestfish-actions.pod:2964
13409 msgid ""
13410 "This creates an ext2/3/4 filesystem on C<device> with an external journal on "
13411 "the journal labeled C<label>."
13412 msgstr ""
13413
13414 #. type: textblock
13415 #: ../src/guestfs-actions.pod:4332
13416 msgid "See also C<guestfs_mke2journal_L>."
13417 msgstr ""
13418
13419 #. type: =head2
13420 #: ../src/guestfs-actions.pod:4338
13421 msgid "guestfs_mke2fs_JU"
13422 msgstr ""
13423
13424 #. type: verbatim
13425 #: ../src/guestfs-actions.pod:4340
13426 #, no-wrap
13427 msgid ""
13428 " int\n"
13429 " guestfs_mke2fs_JU (guestfs_h *g,\n"
13430 "                    const char *fstype,\n"
13431 "                    int blocksize,\n"
13432 "                    const char *device,\n"
13433 "                    const char *uuid);\n"
13434 "\n"
13435 msgstr ""
13436
13437 #. type: textblock
13438 #: ../src/guestfs-actions.pod:4347 ../fish/guestfish-actions.pod:2973
13439 msgid ""
13440 "This creates an ext2/3/4 filesystem on C<device> with an external journal on "
13441 "the journal with UUID C<uuid>."
13442 msgstr ""
13443
13444 #. type: textblock
13445 #: ../src/guestfs-actions.pod:4350
13446 msgid "See also C<guestfs_mke2journal_U>."
13447 msgstr ""
13448
13449 #. type: =head2
13450 #: ../src/guestfs-actions.pod:4356
13451 msgid "guestfs_mke2journal"
13452 msgstr ""
13453
13454 #. type: verbatim
13455 #: ../src/guestfs-actions.pod:4358
13456 #, no-wrap
13457 msgid ""
13458 " int\n"
13459 " guestfs_mke2journal (guestfs_h *g,\n"
13460 "                      int blocksize,\n"
13461 "                      const char *device);\n"
13462 "\n"
13463 msgstr ""
13464
13465 #. type: textblock
13466 #: ../src/guestfs-actions.pod:4363 ../fish/guestfish-actions.pod:2982
13467 msgid ""
13468 "This creates an ext2 external journal on C<device>.  It is equivalent to the "
13469 "command:"
13470 msgstr ""
13471
13472 #. type: verbatim
13473 #: ../src/guestfs-actions.pod:4366 ../fish/guestfish-actions.pod:2985
13474 #, no-wrap
13475 msgid ""
13476 " mke2fs -O journal_dev -b blocksize device\n"
13477 "\n"
13478 msgstr ""
13479
13480 #. type: =head2
13481 #: ../src/guestfs-actions.pod:4372
13482 msgid "guestfs_mke2journal_L"
13483 msgstr ""
13484
13485 #. type: verbatim
13486 #: ../src/guestfs-actions.pod:4374
13487 #, no-wrap
13488 msgid ""
13489 " int\n"
13490 " guestfs_mke2journal_L (guestfs_h *g,\n"
13491 "                        int blocksize,\n"
13492 "                        const char *label,\n"
13493 "                        const char *device);\n"
13494 "\n"
13495 msgstr ""
13496
13497 #. type: textblock
13498 #: ../src/guestfs-actions.pod:4380 ../fish/guestfish-actions.pod:2991
13499 msgid "This creates an ext2 external journal on C<device> with label C<label>."
13500 msgstr ""
13501
13502 #. type: =head2
13503 #: ../src/guestfs-actions.pod:4386
13504 msgid "guestfs_mke2journal_U"
13505 msgstr ""
13506
13507 #. type: verbatim
13508 #: ../src/guestfs-actions.pod:4388
13509 #, no-wrap
13510 msgid ""
13511 " int\n"
13512 " guestfs_mke2journal_U (guestfs_h *g,\n"
13513 "                        int blocksize,\n"
13514 "                        const char *uuid,\n"
13515 "                        const char *device);\n"
13516 "\n"
13517 msgstr ""
13518
13519 #. type: textblock
13520 #: ../src/guestfs-actions.pod:4394 ../fish/guestfish-actions.pod:2997
13521 msgid "This creates an ext2 external journal on C<device> with UUID C<uuid>."
13522 msgstr ""
13523
13524 #. type: =head2
13525 #: ../src/guestfs-actions.pod:4400
13526 msgid "guestfs_mkfifo"
13527 msgstr ""
13528
13529 #. type: verbatim
13530 #: ../src/guestfs-actions.pod:4402
13531 #, no-wrap
13532 msgid ""
13533 " int\n"
13534 " guestfs_mkfifo (guestfs_h *g,\n"
13535 "                 int mode,\n"
13536 "                 const char *path);\n"
13537 "\n"
13538 msgstr ""
13539
13540 #. type: textblock
13541 #: ../src/guestfs-actions.pod:4407
13542 msgid ""
13543 "This call creates a FIFO (named pipe) called C<path> with mode C<mode>.  It "
13544 "is just a convenient wrapper around C<guestfs_mknod>."
13545 msgstr ""
13546
13547 #. type: =head2
13548 #: ../src/guestfs-actions.pod:4417
13549 msgid "guestfs_mkfs"
13550 msgstr ""
13551
13552 #. type: verbatim
13553 #: ../src/guestfs-actions.pod:4419
13554 #, no-wrap
13555 msgid ""
13556 " int\n"
13557 " guestfs_mkfs (guestfs_h *g,\n"
13558 "               const char *fstype,\n"
13559 "               const char *device);\n"
13560 "\n"
13561 msgstr ""
13562
13563 #. type: textblock
13564 #: ../src/guestfs-actions.pod:4424 ../fish/guestfish-actions.pod:3013
13565 msgid ""
13566 "This creates a filesystem on C<device> (usually a partition or LVM logical "
13567 "volume).  The filesystem type is C<fstype>, for example C<ext3>."
13568 msgstr ""
13569
13570 #. type: =head2
13571 #: ../src/guestfs-actions.pod:4432
13572 msgid "guestfs_mkfs_b"
13573 msgstr ""
13574
13575 #. type: verbatim
13576 #: ../src/guestfs-actions.pod:4434
13577 #, no-wrap
13578 msgid ""
13579 " int\n"
13580 " guestfs_mkfs_b (guestfs_h *g,\n"
13581 "                 const char *fstype,\n"
13582 "                 int blocksize,\n"
13583 "                 const char *device);\n"
13584 "\n"
13585 msgstr ""
13586
13587 #. type: textblock
13588 #: ../src/guestfs-actions.pod:4440
13589 msgid ""
13590 "This call is similar to C<guestfs_mkfs>, but it allows you to control the "
13591 "block size of the resulting filesystem.  Supported block sizes depend on the "
13592 "filesystem type, but typically they are C<1024>, C<2048> or C<4096> only."
13593 msgstr ""
13594
13595 #. type: textblock
13596 #: ../src/guestfs-actions.pod:4445 ../src/guestfs-actions.pod:4488
13597 #: ../fish/guestfish-actions.pod:3026 ../fish/guestfish-actions.pod:3053
13598 msgid ""
13599 "For VFAT and NTFS the C<blocksize> parameter is treated as the requested "
13600 "cluster size."
13601 msgstr ""
13602
13603 #. type: textblock
13604 #: ../src/guestfs-actions.pod:4450
13605 msgid ""
13606 "This function is deprecated.  In new code, use the L</guestfs_mkfs_opts> "
13607 "call instead."
13608 msgstr ""
13609
13610 #. type: =head2
13611 #: ../src/guestfs-actions.pod:4459
13612 msgid "guestfs_mkfs_opts"
13613 msgstr ""
13614
13615 #. type: verbatim
13616 #: ../src/guestfs-actions.pod:4461
13617 #, no-wrap
13618 msgid ""
13619 " int\n"
13620 " guestfs_mkfs_opts (guestfs_h *g,\n"
13621 "                    const char *fstype,\n"
13622 "                    const char *device,\n"
13623 "                    ...);\n"
13624 "\n"
13625 msgstr ""
13626
13627 #. type: verbatim
13628 #: ../src/guestfs-actions.pod:4472
13629 #, no-wrap
13630 msgid ""
13631 " GUESTFS_MKFS_OPTS_BLOCKSIZE, int blocksize,\n"
13632 " GUESTFS_MKFS_OPTS_FEATURES, const char *features,\n"
13633 "\n"
13634 msgstr ""
13635
13636 #. type: textblock
13637 #: ../src/guestfs-actions.pod:4475 ../fish/guestfish-actions.pod:3040
13638 msgid ""
13639 "This function creates a filesystem on C<device>.  The filesystem type is "
13640 "C<fstype>, for example C<ext3>."
13641 msgstr ""
13642
13643 #. type: =item
13644 #: ../src/guestfs-actions.pod:4482 ../fish/guestfish-actions.pod:3047
13645 msgid "C<blocksize>"
13646 msgstr ""
13647
13648 #. type: textblock
13649 #: ../src/guestfs-actions.pod:4484 ../fish/guestfish-actions.pod:3049
13650 msgid ""
13651 "The filesystem block size.  Supported block sizes depend on the filesystem "
13652 "type, but typically they are C<1024>, C<2048> or C<4096> for Linux ext2/3 "
13653 "filesystems."
13654 msgstr ""
13655
13656 #. type: textblock
13657 #: ../src/guestfs-actions.pod:4491 ../fish/guestfish-actions.pod:3056
13658 msgid "For UFS block sizes, please see L<mkfs.ufs(8)>."
13659 msgstr ""
13660
13661 #. type: =item
13662 #: ../src/guestfs-actions.pod:4493 ../fish/guestfish-actions.pod:3058
13663 msgid "C<features>"
13664 msgstr ""
13665
13666 #. type: textblock
13667 #: ../src/guestfs-actions.pod:4495 ../fish/guestfish-actions.pod:3060
13668 msgid "This passes the I<-O> parameter to the external mkfs program."
13669 msgstr ""
13670
13671 #. type: textblock
13672 #: ../src/guestfs-actions.pod:4497 ../fish/guestfish-actions.pod:3062
13673 msgid ""
13674 "For certain filesystem types, this allows extra filesystem features to be "
13675 "selected.  See L<mke2fs(8)> and L<mkfs.ufs(8)> for more details."
13676 msgstr ""
13677
13678 #. type: textblock
13679 #: ../src/guestfs-actions.pod:4501 ../fish/guestfish-actions.pod:3066
13680 msgid ""
13681 "You cannot use this optional parameter with the C<gfs> or C<gfs2> filesystem "
13682 "type."
13683 msgstr ""
13684
13685 #. type: textblock
13686 #: ../src/guestfs-actions.pod:4508
13687 msgid "(Added in 1.7.19)"
13688 msgstr ""
13689
13690 #. type: =head2
13691 #: ../src/guestfs-actions.pod:4510
13692 msgid "guestfs_mkfs_opts_va"
13693 msgstr ""
13694
13695 #. type: verbatim
13696 #: ../src/guestfs-actions.pod:4512
13697 #, no-wrap
13698 msgid ""
13699 " int\n"
13700 " guestfs_mkfs_opts_va (guestfs_h *g,\n"
13701 "                       const char *fstype,\n"
13702 "                       const char *device,\n"
13703 "                       va_list args);\n"
13704 "\n"
13705 msgstr ""
13706
13707 #. type: textblock
13708 #: ../src/guestfs-actions.pod:4518
13709 msgid "This is the \"va_list variant\" of L</guestfs_mkfs_opts>."
13710 msgstr ""
13711
13712 #. type: =head2
13713 #: ../src/guestfs-actions.pod:4522
13714 msgid "guestfs_mkfs_opts_argv"
13715 msgstr ""
13716
13717 #. type: verbatim
13718 #: ../src/guestfs-actions.pod:4524
13719 #, no-wrap
13720 msgid ""
13721 " int\n"
13722 " guestfs_mkfs_opts_argv (guestfs_h *g,\n"
13723 "                         const char *fstype,\n"
13724 "                         const char *device,\n"
13725 "                         const struct guestfs_mkfs_opts_argv *optargs);\n"
13726 "\n"
13727 msgstr ""
13728
13729 #. type: textblock
13730 #: ../src/guestfs-actions.pod:4530
13731 msgid "This is the \"argv variant\" of L</guestfs_mkfs_opts>."
13732 msgstr ""
13733
13734 #. type: =head2
13735 #: ../src/guestfs-actions.pod:4534
13736 msgid "guestfs_mkmountpoint"
13737 msgstr ""
13738
13739 #. type: verbatim
13740 #: ../src/guestfs-actions.pod:4536
13741 #, no-wrap
13742 msgid ""
13743 " int\n"
13744 " guestfs_mkmountpoint (guestfs_h *g,\n"
13745 "                       const char *exemptpath);\n"
13746 "\n"
13747 msgstr ""
13748
13749 #. type: textblock
13750 #: ../src/guestfs-actions.pod:4540
13751 msgid ""
13752 "C<guestfs_mkmountpoint> and C<guestfs_rmmountpoint> are specialized calls "
13753 "that can be used to create extra mountpoints before mounting the first "
13754 "filesystem."
13755 msgstr ""
13756
13757 #. type: textblock
13758 #: ../src/guestfs-actions.pod:4544 ../fish/guestfish-actions.pod:3081
13759 msgid ""
13760 "These calls are I<only> necessary in some very limited circumstances, mainly "
13761 "the case where you want to mount a mix of unrelated and/or read-only "
13762 "filesystems together."
13763 msgstr ""
13764
13765 #. type: textblock
13766 #: ../src/guestfs-actions.pod:4548 ../fish/guestfish-actions.pod:3085
13767 msgid ""
13768 "For example, live CDs often contain a \"Russian doll\" nest of filesystems, "
13769 "an ISO outer layer, with a squashfs image inside, with an ext2/3 image "
13770 "inside that.  You can unpack this as follows in guestfish:"
13771 msgstr ""
13772
13773 #. type: verbatim
13774 #: ../src/guestfs-actions.pod:4553 ../fish/guestfish-actions.pod:3090
13775 #, no-wrap
13776 msgid ""
13777 " add-ro Fedora-11-i686-Live.iso\n"
13778 " run\n"
13779 " mkmountpoint /cd\n"
13780 " mkmountpoint /sqsh\n"
13781 " mkmountpoint /ext3fs\n"
13782 " mount /dev/sda /cd\n"
13783 " mount-loop /cd/LiveOS/squashfs.img /sqsh\n"
13784 " mount-loop /sqsh/LiveOS/ext3fs.img /ext3fs\n"
13785 "\n"
13786 msgstr ""
13787
13788 #. type: textblock
13789 #: ../src/guestfs-actions.pod:4562 ../fish/guestfish-actions.pod:3099
13790 msgid "The inner filesystem is now unpacked under the /ext3fs mountpoint."
13791 msgstr ""
13792
13793 #. type: textblock
13794 #: ../src/guestfs-actions.pod:4564
13795 msgid ""
13796 "C<guestfs_mkmountpoint> is not compatible with C<guestfs_umount_all>.  You "
13797 "may get unexpected errors if you try to mix these calls.  It is safest to "
13798 "manually unmount filesystems and remove mountpoints after use."
13799 msgstr ""
13800
13801 #. type: textblock
13802 #: ../src/guestfs-actions.pod:4568
13803 msgid ""
13804 "C<guestfs_umount_all> unmounts filesystems by sorting the paths longest "
13805 "first, so for this to work for manual mountpoints, you must ensure that the "
13806 "innermost mountpoints have the longest pathnames, as in the example code "
13807 "above."
13808 msgstr ""
13809
13810 #. type: textblock
13811 #: ../src/guestfs-actions.pod:4573 ../fish/guestfish-actions.pod:3110
13812 msgid ""
13813 "For more details see L<https://bugzilla.redhat.com/show_bug.cgi?id=599503>"
13814 msgstr ""
13815
13816 #. type: textblock
13817 #: ../src/guestfs-actions.pod:4575
13818 msgid ""
13819 "Autosync [see C<guestfs_set_autosync>, this is set by default on handles] "
13820 "can cause C<guestfs_umount_all> to be called when the handle is closed which "
13821 "can also trigger these issues."
13822 msgstr ""
13823
13824 #. type: textblock
13825 #: ../src/guestfs-actions.pod:4581 ../src/guestfs-actions.pod:4847
13826 #: ../src/guestfs-actions.pod:5766
13827 msgid "(Added in 1.0.62)"
13828 msgstr ""
13829
13830 #. type: =head2
13831 #: ../src/guestfs-actions.pod:4583
13832 msgid "guestfs_mknod"
13833 msgstr ""
13834
13835 #. type: verbatim
13836 #: ../src/guestfs-actions.pod:4585
13837 #, no-wrap
13838 msgid ""
13839 " int\n"
13840 " guestfs_mknod (guestfs_h *g,\n"
13841 "                int mode,\n"
13842 "                int devmajor,\n"
13843 "                int devminor,\n"
13844 "                const char *path);\n"
13845 "\n"
13846 msgstr ""
13847
13848 #. type: textblock
13849 #: ../src/guestfs-actions.pod:4592 ../fish/guestfish-actions.pod:3120
13850 msgid ""
13851 "This call creates block or character special devices, or named pipes (FIFOs)."
13852 msgstr ""
13853
13854 #. type: textblock
13855 #: ../src/guestfs-actions.pod:4595 ../fish/guestfish-actions.pod:3123
13856 msgid ""
13857 "The C<mode> parameter should be the mode, using the standard constants.  "
13858 "C<devmajor> and C<devminor> are the device major and minor numbers, only "
13859 "used when creating block and character special devices."
13860 msgstr ""
13861
13862 #. type: textblock
13863 #: ../src/guestfs-actions.pod:4600
13864 msgid ""
13865 "Note that, just like L<mknod(2)>, the mode must be bitwise OR'd with "
13866 "S_IFBLK, S_IFCHR, S_IFIFO or S_IFSOCK (otherwise this call just creates a "
13867 "regular file).  These constants are available in the standard Linux header "
13868 "files, or you can use C<guestfs_mknod_b>, C<guestfs_mknod_c> or "
13869 "C<guestfs_mkfifo> which are wrappers around this command which bitwise OR in "
13870 "the appropriate constant for you."
13871 msgstr ""
13872
13873 #. type: =head2
13874 #: ../src/guestfs-actions.pod:4614
13875 msgid "guestfs_mknod_b"
13876 msgstr ""
13877
13878 #. type: verbatim
13879 #: ../src/guestfs-actions.pod:4616
13880 #, no-wrap
13881 msgid ""
13882 " int\n"
13883 " guestfs_mknod_b (guestfs_h *g,\n"
13884 "                  int mode,\n"
13885 "                  int devmajor,\n"
13886 "                  int devminor,\n"
13887 "                  const char *path);\n"
13888 "\n"
13889 msgstr ""
13890
13891 #. type: textblock
13892 #: ../src/guestfs-actions.pod:4623
13893 msgid ""
13894 "This call creates a block device node called C<path> with mode C<mode> and "
13895 "device major/minor C<devmajor> and C<devminor>.  It is just a convenient "
13896 "wrapper around C<guestfs_mknod>."
13897 msgstr ""
13898
13899 #. type: =head2
13900 #: ../src/guestfs-actions.pod:4633
13901 msgid "guestfs_mknod_c"
13902 msgstr ""
13903
13904 #. type: verbatim
13905 #: ../src/guestfs-actions.pod:4635
13906 #, no-wrap
13907 msgid ""
13908 " int\n"
13909 " guestfs_mknod_c (guestfs_h *g,\n"
13910 "                  int mode,\n"
13911 "                  int devmajor,\n"
13912 "                  int devminor,\n"
13913 "                  const char *path);\n"
13914 "\n"
13915 msgstr ""
13916
13917 #. type: textblock
13918 #: ../src/guestfs-actions.pod:4642
13919 msgid ""
13920 "This call creates a char device node called C<path> with mode C<mode> and "
13921 "device major/minor C<devmajor> and C<devminor>.  It is just a convenient "
13922 "wrapper around C<guestfs_mknod>."
13923 msgstr ""
13924
13925 #. type: =head2
13926 #: ../src/guestfs-actions.pod:4652
13927 msgid "guestfs_mkswap"
13928 msgstr ""
13929
13930 #. type: verbatim
13931 #: ../src/guestfs-actions.pod:4654
13932 #, no-wrap
13933 msgid ""
13934 " int\n"
13935 " guestfs_mkswap (guestfs_h *g,\n"
13936 "                 const char *device);\n"
13937 "\n"
13938 msgstr ""
13939
13940 #. type: textblock
13941 #: ../src/guestfs-actions.pod:4658 ../fish/guestfish-actions.pod:3162
13942 msgid "Create a swap partition on C<device>."
13943 msgstr ""
13944
13945 #. type: =head2
13946 #: ../src/guestfs-actions.pod:4664
13947 msgid "guestfs_mkswap_L"
13948 msgstr ""
13949
13950 #. type: verbatim
13951 #: ../src/guestfs-actions.pod:4666
13952 #, no-wrap
13953 msgid ""
13954 " int\n"
13955 " guestfs_mkswap_L (guestfs_h *g,\n"
13956 "                   const char *label,\n"
13957 "                   const char *device);\n"
13958 "\n"
13959 msgstr ""
13960
13961 #. type: textblock
13962 #: ../src/guestfs-actions.pod:4671 ../fish/guestfish-actions.pod:3168
13963 msgid "Create a swap partition on C<device> with label C<label>."
13964 msgstr ""
13965
13966 #. type: textblock
13967 #: ../src/guestfs-actions.pod:4673 ../fish/guestfish-actions.pod:3170
13968 msgid ""
13969 "Note that you cannot attach a swap label to a block device (eg. C</dev/"
13970 "sda>), just to a partition.  This appears to be a limitation of the kernel "
13971 "or swap tools."
13972 msgstr ""
13973
13974 #. type: =head2
13975 #: ../src/guestfs-actions.pod:4681
13976 msgid "guestfs_mkswap_U"
13977 msgstr ""
13978
13979 #. type: verbatim
13980 #: ../src/guestfs-actions.pod:4683
13981 #, no-wrap
13982 msgid ""
13983 " int\n"
13984 " guestfs_mkswap_U (guestfs_h *g,\n"
13985 "                   const char *uuid,\n"
13986 "                   const char *device);\n"
13987 "\n"
13988 msgstr ""
13989
13990 #. type: textblock
13991 #: ../src/guestfs-actions.pod:4688 ../fish/guestfish-actions.pod:3178
13992 msgid "Create a swap partition on C<device> with UUID C<uuid>."
13993 msgstr ""
13994
13995 #. type: =head2
13996 #: ../src/guestfs-actions.pod:4694
13997 msgid "guestfs_mkswap_file"
13998 msgstr ""
13999
14000 #. type: verbatim
14001 #: ../src/guestfs-actions.pod:4696
14002 #, no-wrap
14003 msgid ""
14004 " int\n"
14005 " guestfs_mkswap_file (guestfs_h *g,\n"
14006 "                      const char *path);\n"
14007 "\n"
14008 msgstr ""
14009
14010 #. type: textblock
14011 #: ../src/guestfs-actions.pod:4700 ../fish/guestfish-actions.pod:3184
14012 msgid "Create a swap file."
14013 msgstr ""
14014
14015 #. type: textblock
14016 #: ../src/guestfs-actions.pod:4702
14017 msgid ""
14018 "This command just writes a swap file signature to an existing file.  To "
14019 "create the file itself, use something like C<guestfs_fallocate>."
14020 msgstr ""
14021
14022 #. type: =head2
14023 #: ../src/guestfs-actions.pod:4709
14024 msgid "guestfs_modprobe"
14025 msgstr ""
14026
14027 #. type: verbatim
14028 #: ../src/guestfs-actions.pod:4711
14029 #, no-wrap
14030 msgid ""
14031 " int\n"
14032 " guestfs_modprobe (guestfs_h *g,\n"
14033 "                   const char *modulename);\n"
14034 "\n"
14035 msgstr ""
14036
14037 #. type: textblock
14038 #: ../src/guestfs-actions.pod:4715 ../fish/guestfish-actions.pod:3193
14039 msgid "This loads a kernel module in the appliance."
14040 msgstr ""
14041
14042 #. type: textblock
14043 #: ../src/guestfs-actions.pod:4717 ../fish/guestfish-actions.pod:3195
14044 msgid ""
14045 "The kernel module must have been whitelisted when libguestfs was built (see "
14046 "C<appliance/kmod.whitelist.in> in the source)."
14047 msgstr ""
14048
14049 #. type: =head2
14050 #: ../src/guestfs-actions.pod:4724
14051 msgid "guestfs_mount"
14052 msgstr ""
14053
14054 #. type: verbatim
14055 #: ../src/guestfs-actions.pod:4726
14056 #, no-wrap
14057 msgid ""
14058 " int\n"
14059 " guestfs_mount (guestfs_h *g,\n"
14060 "                const char *device,\n"
14061 "                const char *mountpoint);\n"
14062 "\n"
14063 msgstr ""
14064
14065 #. type: textblock
14066 #: ../src/guestfs-actions.pod:4731 ../fish/guestfish-actions.pod:3202
14067 msgid ""
14068 "Mount a guest disk at a position in the filesystem.  Block devices are named "
14069 "C</dev/sda>, C</dev/sdb> and so on, as they were added to the guest.  If "
14070 "those block devices contain partitions, they will have the usual names (eg. "
14071 "C</dev/sda1>).  Also LVM C</dev/VG/LV>-style names can be used."
14072 msgstr ""
14073
14074 #. type: textblock
14075 #: ../src/guestfs-actions.pod:4737 ../fish/guestfish-actions.pod:3208
14076 msgid ""
14077 "The rules are the same as for L<mount(2)>: A filesystem must first be "
14078 "mounted on C</> before others can be mounted.  Other filesystems can only be "
14079 "mounted on directories which already exist."
14080 msgstr ""
14081
14082 #. type: textblock
14083 #: ../src/guestfs-actions.pod:4742 ../fish/guestfish-actions.pod:3213
14084 msgid ""
14085 "The mounted filesystem is writable, if we have sufficient permissions on the "
14086 "underlying device."
14087 msgstr ""
14088
14089 #. type: textblock
14090 #: ../src/guestfs-actions.pod:4745
14091 msgid ""
14092 "B<Important note:> When you use this call, the filesystem options C<sync> "
14093 "and C<noatime> are set implicitly.  This was originally done because we "
14094 "thought it would improve reliability, but it turns out that I<-o sync> has a "
14095 "very large negative performance impact and negligible effect on "
14096 "reliability.  Therefore we recommend that you avoid using C<guestfs_mount> "
14097 "in any code that needs performance, and instead use C<guestfs_mount_options> "
14098 "(use an empty string for the first parameter if you don't want any options)."
14099 msgstr ""
14100
14101 #. type: textblock
14102 #: ../src/guestfs-actions.pod:4757
14103 msgid ""
14104 "This function is deprecated.  In new code, use the L</guestfs_mount_options> "
14105 "call instead."
14106 msgstr ""
14107
14108 #. type: =head2
14109 #: ../src/guestfs-actions.pod:4766
14110 msgid "guestfs_mount_loop"
14111 msgstr ""
14112
14113 #. type: verbatim
14114 #: ../src/guestfs-actions.pod:4768
14115 #, no-wrap
14116 msgid ""
14117 " int\n"
14118 " guestfs_mount_loop (guestfs_h *g,\n"
14119 "                     const char *file,\n"
14120 "                     const char *mountpoint);\n"
14121 "\n"
14122 msgstr ""
14123
14124 #. type: textblock
14125 #: ../src/guestfs-actions.pod:4773 ../fish/guestfish-actions.pod:3237
14126 msgid ""
14127 "This command lets you mount C<file> (a filesystem image in a file) on a "
14128 "mount point.  It is entirely equivalent to the command C<mount -o loop file "
14129 "mountpoint>."
14130 msgstr ""
14131
14132 #. type: =head2
14133 #: ../src/guestfs-actions.pod:4781
14134 msgid "guestfs_mount_options"
14135 msgstr ""
14136
14137 #. type: verbatim
14138 #: ../src/guestfs-actions.pod:4783
14139 #, no-wrap
14140 msgid ""
14141 " int\n"
14142 " guestfs_mount_options (guestfs_h *g,\n"
14143 "                        const char *options,\n"
14144 "                        const char *device,\n"
14145 "                        const char *mountpoint);\n"
14146 "\n"
14147 msgstr ""
14148
14149 #. type: textblock
14150 #: ../src/guestfs-actions.pod:4789
14151 msgid ""
14152 "This is the same as the C<guestfs_mount> command, but it allows you to set "
14153 "the mount options as for the L<mount(8)> I<-o> flag."
14154 msgstr ""
14155
14156 #. type: textblock
14157 #: ../src/guestfs-actions.pod:4793 ../fish/guestfish-actions.pod:3249
14158 msgid ""
14159 "If the C<options> parameter is an empty string, then no options are passed "
14160 "(all options default to whatever the filesystem uses)."
14161 msgstr ""
14162
14163 #. type: textblock
14164 #: ../src/guestfs-actions.pod:4799 ../src/guestfs-actions.pod:4813
14165 #: ../src/guestfs-actions.pod:4830
14166 msgid "(Added in 1.0.10)"
14167 msgstr ""
14168
14169 #. type: =head2
14170 #: ../src/guestfs-actions.pod:4801
14171 msgid "guestfs_mount_ro"
14172 msgstr ""
14173
14174 #. type: verbatim
14175 #: ../src/guestfs-actions.pod:4803
14176 #, no-wrap
14177 msgid ""
14178 " int\n"
14179 " guestfs_mount_ro (guestfs_h *g,\n"
14180 "                   const char *device,\n"
14181 "                   const char *mountpoint);\n"
14182 "\n"
14183 msgstr ""
14184
14185 #. type: textblock
14186 #: ../src/guestfs-actions.pod:4808
14187 msgid ""
14188 "This is the same as the C<guestfs_mount> command, but it mounts the "
14189 "filesystem with the read-only (I<-o ro>) flag."
14190 msgstr ""
14191
14192 #. type: =head2
14193 #: ../src/guestfs-actions.pod:4815
14194 msgid "guestfs_mount_vfs"
14195 msgstr ""
14196
14197 #. type: verbatim
14198 #: ../src/guestfs-actions.pod:4817
14199 #, no-wrap
14200 msgid ""
14201 " int\n"
14202 " guestfs_mount_vfs (guestfs_h *g,\n"
14203 "                    const char *options,\n"
14204 "                    const char *vfstype,\n"
14205 "                    const char *device,\n"
14206 "                    const char *mountpoint);\n"
14207 "\n"
14208 msgstr ""
14209
14210 #. type: textblock
14211 #: ../src/guestfs-actions.pod:4824
14212 msgid ""
14213 "This is the same as the C<guestfs_mount> command, but it allows you to set "
14214 "both the mount options and the vfstype as for the L<mount(8)> I<-o> and I<-"
14215 "t> flags."
14216 msgstr ""
14217
14218 #. type: =head2
14219 #: ../src/guestfs-actions.pod:4832
14220 msgid "guestfs_mountpoints"
14221 msgstr ""
14222
14223 #. type: verbatim
14224 #: ../src/guestfs-actions.pod:4834
14225 #, no-wrap
14226 msgid ""
14227 " char **\n"
14228 " guestfs_mountpoints (guestfs_h *g);\n"
14229 "\n"
14230 msgstr ""
14231
14232 #. type: textblock
14233 #: ../src/guestfs-actions.pod:4837
14234 msgid ""
14235 "This call is similar to C<guestfs_mounts>.  That call returns a list of "
14236 "devices.  This one returns a hash table (map) of device name to directory "
14237 "where the device is mounted."
14238 msgstr ""
14239
14240 #. type: =head2
14241 #: ../src/guestfs-actions.pod:4849
14242 msgid "guestfs_mounts"
14243 msgstr ""
14244
14245 #. type: verbatim
14246 #: ../src/guestfs-actions.pod:4851
14247 #, no-wrap
14248 msgid ""
14249 " char **\n"
14250 " guestfs_mounts (guestfs_h *g);\n"
14251 "\n"
14252 msgstr ""
14253
14254 #. type: textblock
14255 #: ../src/guestfs-actions.pod:4854 ../fish/guestfish-actions.pod:3280
14256 msgid ""
14257 "This returns the list of currently mounted filesystems.  It returns the list "
14258 "of devices (eg. C</dev/sda1>, C</dev/VG/LV>)."
14259 msgstr ""
14260
14261 #. type: textblock
14262 #: ../src/guestfs-actions.pod:4857 ../fish/guestfish-actions.pod:3283
14263 msgid "Some internal mounts are not shown."
14264 msgstr ""
14265
14266 #. type: textblock
14267 #: ../src/guestfs-actions.pod:4859
14268 msgid "See also: C<guestfs_mountpoints>"
14269 msgstr ""
14270
14271 #. type: =head2
14272 #: ../src/guestfs-actions.pod:4867
14273 msgid "guestfs_mv"
14274 msgstr ""
14275
14276 #. type: verbatim
14277 #: ../src/guestfs-actions.pod:4869
14278 #, no-wrap
14279 msgid ""
14280 " int\n"
14281 " guestfs_mv (guestfs_h *g,\n"
14282 "             const char *src,\n"
14283 "             const char *dest);\n"
14284 "\n"
14285 msgstr ""
14286
14287 #. type: textblock
14288 #: ../src/guestfs-actions.pod:4874 ../fish/guestfish-actions.pod:3291
14289 msgid ""
14290 "This moves a file from C<src> to C<dest> where C<dest> is either a "
14291 "destination filename or destination directory."
14292 msgstr ""
14293
14294 #. type: =head2
14295 #: ../src/guestfs-actions.pod:4881
14296 msgid "guestfs_ntfs_3g_probe"
14297 msgstr ""
14298
14299 #. type: verbatim
14300 #: ../src/guestfs-actions.pod:4883
14301 #, no-wrap
14302 msgid ""
14303 " int\n"
14304 " guestfs_ntfs_3g_probe (guestfs_h *g,\n"
14305 "                        int rw,\n"
14306 "                        const char *device);\n"
14307 "\n"
14308 msgstr ""
14309
14310 #. type: textblock
14311 #: ../src/guestfs-actions.pod:4888 ../fish/guestfish-actions.pod:3298
14312 msgid ""
14313 "This command runs the L<ntfs-3g.probe(8)> command which probes an NTFS "
14314 "C<device> for mountability.  (Not all NTFS volumes can be mounted read-"
14315 "write, and some cannot be mounted at all)."
14316 msgstr ""
14317
14318 #. type: textblock
14319 #: ../src/guestfs-actions.pod:4892 ../fish/guestfish-actions.pod:3302
14320 msgid ""
14321 "C<rw> is a boolean flag.  Set it to true if you want to test if the volume "
14322 "can be mounted read-write.  Set it to false if you want to test if the "
14323 "volume can be mounted read-only."
14324 msgstr ""
14325
14326 #. type: textblock
14327 #: ../src/guestfs-actions.pod:4896 ../fish/guestfish-actions.pod:3306
14328 msgid ""
14329 "The return value is an integer which C<0> if the operation would succeed, or "
14330 "some non-zero value documented in the L<ntfs-3g.probe(8)> manual page."
14331 msgstr ""
14332
14333 #. type: textblock
14334 #: ../src/guestfs-actions.pod:4902
14335 msgid "(Added in 1.0.43)"
14336 msgstr ""
14337
14338 #. type: =head2
14339 #: ../src/guestfs-actions.pod:4904
14340 msgid "guestfs_ntfsresize"
14341 msgstr ""
14342
14343 #. type: verbatim
14344 #: ../src/guestfs-actions.pod:4906
14345 #, no-wrap
14346 msgid ""
14347 " int\n"
14348 " guestfs_ntfsresize (guestfs_h *g,\n"
14349 "                     const char *device);\n"
14350 "\n"
14351 msgstr ""
14352
14353 #. type: textblock
14354 #: ../src/guestfs-actions.pod:4910 ../fish/guestfish-actions.pod:3314
14355 msgid ""
14356 "This command resizes an NTFS filesystem, expanding or shrinking it to the "
14357 "size of the underlying device."
14358 msgstr ""
14359
14360 #. type: textblock
14361 #: ../src/guestfs-actions.pod:4913 ../fish/guestfish-actions.pod:3317
14362 msgid ""
14363 "I<Note:> After the resize operation, the filesystem is marked as requiring a "
14364 "consistency check (for safety).  You have to boot into Windows to perform "
14365 "this check and clear this condition.  Furthermore, ntfsresize refuses to "
14366 "resize filesystems which have been marked in this way.  So in effect it is "
14367 "not possible to call ntfsresize multiple times on a single filesystem "
14368 "without booting into Windows between each resize."
14369 msgstr ""
14370
14371 #. type: textblock
14372 #: ../src/guestfs-actions.pod:4921 ../fish/guestfish-actions.pod:3325
14373 msgid "See also L<ntfsresize(8)>."
14374 msgstr ""
14375
14376 #. type: =head2
14377 #: ../src/guestfs-actions.pod:4927
14378 msgid "guestfs_ntfsresize_size"
14379 msgstr ""
14380
14381 #. type: verbatim
14382 #: ../src/guestfs-actions.pod:4929
14383 #, no-wrap
14384 msgid ""
14385 " int\n"
14386 " guestfs_ntfsresize_size (guestfs_h *g,\n"
14387 "                          const char *device,\n"
14388 "                          int64_t size);\n"
14389 "\n"
14390 msgstr ""
14391
14392 #. type: textblock
14393 #: ../src/guestfs-actions.pod:4934
14394 msgid ""
14395 "This command is the same as C<guestfs_ntfsresize> except that it allows you "
14396 "to specify the new size (in bytes) explicitly."
14397 msgstr ""
14398
14399 #. type: textblock
14400 #: ../src/guestfs-actions.pod:4939 ../src/guestfs-actions.pod:5375
14401 #: ../src/guestfs-actions.pod:5448 ../src/guestfs-actions.pod:5714
14402 #: ../src/guestfs-actions.pod:7320
14403 msgid "(Added in 1.3.14)"
14404 msgstr ""
14405
14406 #. type: =head2
14407 #: ../src/guestfs-actions.pod:4941
14408 msgid "guestfs_part_add"
14409 msgstr ""
14410
14411 #. type: verbatim
14412 #: ../src/guestfs-actions.pod:4943
14413 #, no-wrap
14414 msgid ""
14415 " int\n"
14416 " guestfs_part_add (guestfs_h *g,\n"
14417 "                   const char *device,\n"
14418 "                   const char *prlogex,\n"
14419 "                   int64_t startsect,\n"
14420 "                   int64_t endsect);\n"
14421 "\n"
14422 msgstr ""
14423
14424 #. type: textblock
14425 #: ../src/guestfs-actions.pod:4950
14426 msgid ""
14427 "This command adds a partition to C<device>.  If there is no partition table "
14428 "on the device, call C<guestfs_part_init> first."
14429 msgstr ""
14430
14431 #. type: textblock
14432 #: ../src/guestfs-actions.pod:4953 ../fish/guestfish-actions.pod:3341
14433 msgid ""
14434 "The C<prlogex> parameter is the type of partition.  Normally you should pass "
14435 "C<p> or C<primary> here, but MBR partition tables also support C<l> (or "
14436 "C<logical>) and C<e> (or C<extended>) partition types."
14437 msgstr ""
14438
14439 #. type: textblock
14440 #: ../src/guestfs-actions.pod:4958 ../fish/guestfish-actions.pod:3346
14441 msgid ""
14442 "C<startsect> and C<endsect> are the start and end of the partition in "
14443 "I<sectors>.  C<endsect> may be negative, which means it counts backwards "
14444 "from the end of the disk (C<-1> is the last sector)."
14445 msgstr ""
14446
14447 #. type: textblock
14448 #: ../src/guestfs-actions.pod:4962
14449 msgid ""
14450 "Creating a partition which covers the whole disk is not so easy.  Use "
14451 "C<guestfs_part_disk> to do that."
14452 msgstr ""
14453
14454 #. type: textblock
14455 #: ../src/guestfs-actions.pod:4967 ../src/guestfs-actions.pod:5005
14456 #: ../src/guestfs-actions.pod:5058 ../src/guestfs-actions.pod:5136
14457 #: ../src/guestfs-actions.pod:5174 ../src/guestfs-actions.pod:5193
14458 #: ../src/guestfs-actions.pod:5233
14459 msgid "(Added in 1.0.78)"
14460 msgstr ""
14461
14462 #. type: =head2
14463 #: ../src/guestfs-actions.pod:4969
14464 msgid "guestfs_part_del"
14465 msgstr ""
14466
14467 #. type: verbatim
14468 #: ../src/guestfs-actions.pod:4971
14469 #, no-wrap
14470 msgid ""
14471 " int\n"
14472 " guestfs_part_del (guestfs_h *g,\n"
14473 "                   const char *device,\n"
14474 "                   int partnum);\n"
14475 "\n"
14476 msgstr ""
14477
14478 #. type: textblock
14479 #: ../src/guestfs-actions.pod:4976 ../fish/guestfish-actions.pod:3357
14480 msgid "This command deletes the partition numbered C<partnum> on C<device>."
14481 msgstr ""
14482
14483 #. type: textblock
14484 #: ../src/guestfs-actions.pod:4978 ../fish/guestfish-actions.pod:3359
14485 msgid ""
14486 "Note that in the case of MBR partitioning, deleting an extended partition "
14487 "also deletes any logical partitions it contains."
14488 msgstr ""
14489
14490 #. type: =head2
14491 #: ../src/guestfs-actions.pod:4986
14492 msgid "guestfs_part_disk"
14493 msgstr ""
14494
14495 #. type: verbatim
14496 #: ../src/guestfs-actions.pod:4988
14497 #, no-wrap
14498 msgid ""
14499 " int\n"
14500 " guestfs_part_disk (guestfs_h *g,\n"
14501 "                    const char *device,\n"
14502 "                    const char *parttype);\n"
14503 "\n"
14504 msgstr ""
14505
14506 #. type: textblock
14507 #: ../src/guestfs-actions.pod:4993
14508 msgid ""
14509 "This command is simply a combination of C<guestfs_part_init> followed by "
14510 "C<guestfs_part_add> to create a single primary partition covering the whole "
14511 "disk."
14512 msgstr ""
14513
14514 #. type: textblock
14515 #: ../src/guestfs-actions.pod:4997
14516 msgid ""
14517 "C<parttype> is the partition table type, usually C<mbr> or C<gpt>, but other "
14518 "possible values are described in C<guestfs_part_init>."
14519 msgstr ""
14520
14521 #. type: =head2
14522 #: ../src/guestfs-actions.pod:5007
14523 msgid "guestfs_part_get_bootable"
14524 msgstr ""
14525
14526 #. type: verbatim
14527 #: ../src/guestfs-actions.pod:5009
14528 #, no-wrap
14529 msgid ""
14530 " int\n"
14531 " guestfs_part_get_bootable (guestfs_h *g,\n"
14532 "                            const char *device,\n"
14533 "                            int partnum);\n"
14534 "\n"
14535 msgstr ""
14536
14537 #. type: textblock
14538 #: ../src/guestfs-actions.pod:5014 ../fish/guestfish-actions.pod:3381
14539 msgid ""
14540 "This command returns true if the partition C<partnum> on C<device> has the "
14541 "bootable flag set."
14542 msgstr ""
14543
14544 #. type: textblock
14545 #: ../src/guestfs-actions.pod:5017
14546 msgid "See also C<guestfs_part_set_bootable>."
14547 msgstr ""
14548
14549 #. type: =head2
14550 #: ../src/guestfs-actions.pod:5023
14551 msgid "guestfs_part_get_mbr_id"
14552 msgstr ""
14553
14554 #. type: verbatim
14555 #: ../src/guestfs-actions.pod:5025
14556 #, no-wrap
14557 msgid ""
14558 " int\n"
14559 " guestfs_part_get_mbr_id (guestfs_h *g,\n"
14560 "                          const char *device,\n"
14561 "                          int partnum);\n"
14562 "\n"
14563 msgstr ""
14564
14565 #. type: textblock
14566 #: ../src/guestfs-actions.pod:5030 ../fish/guestfish-actions.pod:3390
14567 msgid ""
14568 "Returns the MBR type byte (also known as the ID byte) from the numbered "
14569 "partition C<partnum>."
14570 msgstr ""
14571
14572 #. type: textblock
14573 #: ../src/guestfs-actions.pod:5033 ../src/guestfs-actions.pod:5209
14574 msgid ""
14575 "Note that only MBR (old DOS-style) partitions have type bytes.  You will get "
14576 "undefined results for other partition table types (see "
14577 "C<guestfs_part_get_parttype>)."
14578 msgstr ""
14579
14580 #. type: =head2
14581 #: ../src/guestfs-actions.pod:5041
14582 msgid "guestfs_part_get_parttype"
14583 msgstr ""
14584
14585 #. type: verbatim
14586 #: ../src/guestfs-actions.pod:5043
14587 #, no-wrap
14588 msgid ""
14589 " char *\n"
14590 " guestfs_part_get_parttype (guestfs_h *g,\n"
14591 "                            const char *device);\n"
14592 "\n"
14593 msgstr ""
14594
14595 #. type: textblock
14596 #: ../src/guestfs-actions.pod:5047 ../fish/guestfish-actions.pod:3401
14597 msgid ""
14598 "This command examines the partition table on C<device> and returns the "
14599 "partition table type (format) being used."
14600 msgstr ""
14601
14602 #. type: textblock
14603 #: ../src/guestfs-actions.pod:5050
14604 msgid ""
14605 "Common return values include: C<msdos> (a DOS/Windows style MBR partition "
14606 "table), C<gpt> (a GPT/EFI-style partition table).  Other values are "
14607 "possible, although unusual.  See C<guestfs_part_init> for a full list."
14608 msgstr ""
14609
14610 #. type: =head2
14611 #: ../src/guestfs-actions.pod:5060
14612 msgid "guestfs_part_init"
14613 msgstr ""
14614
14615 #. type: verbatim
14616 #: ../src/guestfs-actions.pod:5062
14617 #, no-wrap
14618 msgid ""
14619 " int\n"
14620 " guestfs_part_init (guestfs_h *g,\n"
14621 "                    const char *device,\n"
14622 "                    const char *parttype);\n"
14623 "\n"
14624 msgstr ""
14625
14626 #. type: textblock
14627 #: ../src/guestfs-actions.pod:5067 ../fish/guestfish-actions.pod:3413
14628 msgid ""
14629 "This creates an empty partition table on C<device> of one of the partition "
14630 "types listed below.  Usually C<parttype> should be either C<msdos> or C<gpt> "
14631 "(for large disks)."
14632 msgstr ""
14633
14634 #. type: textblock
14635 #: ../src/guestfs-actions.pod:5071
14636 msgid ""
14637 "Initially there are no partitions.  Following this, you should call "
14638 "C<guestfs_part_add> for each partition required."
14639 msgstr ""
14640
14641 #. type: textblock
14642 #: ../src/guestfs-actions.pod:5074 ../fish/guestfish-actions.pod:3420
14643 msgid "Possible values for C<parttype> are:"
14644 msgstr ""
14645
14646 #. type: =item
14647 #: ../src/guestfs-actions.pod:5078 ../fish/guestfish-actions.pod:3424
14648 msgid "B<efi> | B<gpt>"
14649 msgstr ""
14650
14651 #. type: textblock
14652 #: ../src/guestfs-actions.pod:5080 ../fish/guestfish-actions.pod:3426
14653 msgid "Intel EFI / GPT partition table."
14654 msgstr ""
14655
14656 #. type: textblock
14657 #: ../src/guestfs-actions.pod:5082 ../fish/guestfish-actions.pod:3428
14658 msgid ""
14659 "This is recommended for >= 2 TB partitions that will be accessed from Linux "
14660 "and Intel-based Mac OS X.  It also has limited backwards compatibility with "
14661 "the C<mbr> format."
14662 msgstr ""
14663
14664 #. type: =item
14665 #: ../src/guestfs-actions.pod:5086 ../fish/guestfish-actions.pod:3432
14666 msgid "B<mbr> | B<msdos>"
14667 msgstr ""
14668
14669 #. type: textblock
14670 #: ../src/guestfs-actions.pod:5088 ../fish/guestfish-actions.pod:3434
14671 msgid ""
14672 "The standard PC \"Master Boot Record\" (MBR) format used by MS-DOS and "
14673 "Windows.  This partition type will B<only> work for device sizes up to 2 "
14674 "TB.  For large disks we recommend using C<gpt>."
14675 msgstr ""
14676
14677 #. type: textblock
14678 #: ../src/guestfs-actions.pod:5095 ../fish/guestfish-actions.pod:3441
14679 msgid ""
14680 "Other partition table types that may work but are not supported include:"
14681 msgstr ""
14682
14683 #. type: =item
14684 #: ../src/guestfs-actions.pod:5100 ../fish/guestfish-actions.pod:3446
14685 msgid "B<aix>"
14686 msgstr ""
14687
14688 #. type: textblock
14689 #: ../src/guestfs-actions.pod:5102 ../fish/guestfish-actions.pod:3448
14690 msgid "AIX disk labels."
14691 msgstr ""
14692
14693 #. type: =item
14694 #: ../src/guestfs-actions.pod:5104 ../fish/guestfish-actions.pod:3450
14695 msgid "B<amiga> | B<rdb>"
14696 msgstr ""
14697
14698 #. type: textblock
14699 #: ../src/guestfs-actions.pod:5106 ../fish/guestfish-actions.pod:3452
14700 msgid "Amiga \"Rigid Disk Block\" format."
14701 msgstr ""
14702
14703 #. type: =item
14704 #: ../src/guestfs-actions.pod:5108 ../fish/guestfish-actions.pod:3454
14705 msgid "B<bsd>"
14706 msgstr ""
14707
14708 #. type: textblock
14709 #: ../src/guestfs-actions.pod:5110 ../fish/guestfish-actions.pod:3456
14710 msgid "BSD disk labels."
14711 msgstr ""
14712
14713 #. type: =item
14714 #: ../src/guestfs-actions.pod:5112 ../fish/guestfish-actions.pod:3458
14715 msgid "B<dasd>"
14716 msgstr ""
14717
14718 #. type: textblock
14719 #: ../src/guestfs-actions.pod:5114 ../fish/guestfish-actions.pod:3460
14720 msgid "DASD, used on IBM mainframes."
14721 msgstr ""
14722
14723 #. type: =item
14724 #: ../src/guestfs-actions.pod:5116 ../fish/guestfish-actions.pod:3462
14725 msgid "B<dvh>"
14726 msgstr ""
14727
14728 #. type: textblock
14729 #: ../src/guestfs-actions.pod:5118 ../fish/guestfish-actions.pod:3464
14730 msgid "MIPS/SGI volumes."
14731 msgstr ""
14732
14733 #. type: =item
14734 #: ../src/guestfs-actions.pod:5120 ../fish/guestfish-actions.pod:3466
14735 msgid "B<mac>"
14736 msgstr ""
14737
14738 #. type: textblock
14739 #: ../src/guestfs-actions.pod:5122 ../fish/guestfish-actions.pod:3468
14740 msgid "Old Mac partition format.  Modern Macs use C<gpt>."
14741 msgstr ""
14742
14743 #. type: =item
14744 #: ../src/guestfs-actions.pod:5124 ../fish/guestfish-actions.pod:3470
14745 msgid "B<pc98>"
14746 msgstr ""
14747
14748 #. type: textblock
14749 #: ../src/guestfs-actions.pod:5126 ../fish/guestfish-actions.pod:3472
14750 msgid "NEC PC-98 format, common in Japan apparently."
14751 msgstr ""
14752
14753 #. type: =item
14754 #: ../src/guestfs-actions.pod:5128 ../fish/guestfish-actions.pod:3474
14755 msgid "B<sun>"
14756 msgstr ""
14757
14758 #. type: textblock
14759 #: ../src/guestfs-actions.pod:5130 ../fish/guestfish-actions.pod:3476
14760 msgid "Sun disk labels."
14761 msgstr ""
14762
14763 #. type: =head2
14764 #: ../src/guestfs-actions.pod:5138
14765 msgid "guestfs_part_list"
14766 msgstr ""
14767
14768 #. type: verbatim
14769 #: ../src/guestfs-actions.pod:5140
14770 #, no-wrap
14771 msgid ""
14772 " struct guestfs_partition_list *\n"
14773 " guestfs_part_list (guestfs_h *g,\n"
14774 "                    const char *device);\n"
14775 "\n"
14776 msgstr ""
14777
14778 #. type: textblock
14779 #: ../src/guestfs-actions.pod:5144 ../fish/guestfish-actions.pod:3484
14780 msgid ""
14781 "This command parses the partition table on C<device> and returns the list of "
14782 "partitions found."
14783 msgstr ""
14784
14785 #. type: textblock
14786 #: ../src/guestfs-actions.pod:5147 ../fish/guestfish-actions.pod:3487
14787 msgid "The fields in the returned structure are:"
14788 msgstr ""
14789
14790 #. type: =item
14791 #: ../src/guestfs-actions.pod:5151 ../fish/guestfish-actions.pod:3491
14792 msgid "B<part_num>"
14793 msgstr ""
14794
14795 #. type: textblock
14796 #: ../src/guestfs-actions.pod:5153 ../fish/guestfish-actions.pod:3493
14797 msgid "Partition number, counting from 1."
14798 msgstr ""
14799
14800 #. type: =item
14801 #: ../src/guestfs-actions.pod:5155 ../fish/guestfish-actions.pod:3495
14802 msgid "B<part_start>"
14803 msgstr ""
14804
14805 #. type: textblock
14806 #: ../src/guestfs-actions.pod:5157
14807 msgid ""
14808 "Start of the partition I<in bytes>.  To get sectors you have to divide by "
14809 "the device's sector size, see C<guestfs_blockdev_getss>."
14810 msgstr ""
14811
14812 #. type: =item
14813 #: ../src/guestfs-actions.pod:5160 ../fish/guestfish-actions.pod:3500
14814 msgid "B<part_end>"
14815 msgstr ""
14816
14817 #. type: textblock
14818 #: ../src/guestfs-actions.pod:5162 ../fish/guestfish-actions.pod:3502
14819 msgid "End of the partition in bytes."
14820 msgstr ""
14821
14822 #. type: =item
14823 #: ../src/guestfs-actions.pod:5164 ../fish/guestfish-actions.pod:3504
14824 msgid "B<part_size>"
14825 msgstr ""
14826
14827 #. type: textblock
14828 #: ../src/guestfs-actions.pod:5166 ../fish/guestfish-actions.pod:3506
14829 msgid "Size of the partition in bytes."
14830 msgstr ""
14831
14832 #. type: textblock
14833 #: ../src/guestfs-actions.pod:5170
14834 msgid ""
14835 "This function returns a C<struct guestfs_partition_list *>, or NULL if there "
14836 "was an error.  I<The caller must call C<guestfs_free_partition_list> after "
14837 "use>."
14838 msgstr ""
14839
14840 #. type: =head2
14841 #: ../src/guestfs-actions.pod:5176
14842 msgid "guestfs_part_set_bootable"
14843 msgstr ""
14844
14845 #. type: verbatim
14846 #: ../src/guestfs-actions.pod:5178
14847 #, no-wrap
14848 msgid ""
14849 " int\n"
14850 " guestfs_part_set_bootable (guestfs_h *g,\n"
14851 "                            const char *device,\n"
14852 "                            int partnum,\n"
14853 "                            int bootable);\n"
14854 "\n"
14855 msgstr ""
14856
14857 #. type: textblock
14858 #: ../src/guestfs-actions.pod:5184 ../fish/guestfish-actions.pod:3514
14859 msgid ""
14860 "This sets the bootable flag on partition numbered C<partnum> on device "
14861 "C<device>.  Note that partitions are numbered from 1."
14862 msgstr ""
14863
14864 #. type: textblock
14865 #: ../src/guestfs-actions.pod:5187 ../fish/guestfish-actions.pod:3517
14866 msgid ""
14867 "The bootable flag is used by some operating systems (notably Windows) to "
14868 "determine which partition to boot from.  It is by no means universally "
14869 "recognized."
14870 msgstr ""
14871
14872 #. type: =head2
14873 #: ../src/guestfs-actions.pod:5195
14874 msgid "guestfs_part_set_mbr_id"
14875 msgstr ""
14876
14877 #. type: verbatim
14878 #: ../src/guestfs-actions.pod:5197
14879 #, no-wrap
14880 msgid ""
14881 " int\n"
14882 " guestfs_part_set_mbr_id (guestfs_h *g,\n"
14883 "                          const char *device,\n"
14884 "                          int partnum,\n"
14885 "                          int idbyte);\n"
14886 "\n"
14887 msgstr ""
14888
14889 #. type: textblock
14890 #: ../src/guestfs-actions.pod:5203 ../fish/guestfish-actions.pod:3525
14891 msgid ""
14892 "Sets the MBR type byte (also known as the ID byte) of the numbered partition "
14893 "C<partnum> to C<idbyte>.  Note that the type bytes quoted in most "
14894 "documentation are in fact hexadecimal numbers, but usually documented "
14895 "without any leading \"0x\" which might be confusing."
14896 msgstr ""
14897
14898 #. type: =head2
14899 #: ../src/guestfs-actions.pod:5217
14900 msgid "guestfs_part_set_name"
14901 msgstr ""
14902
14903 #. type: verbatim
14904 #: ../src/guestfs-actions.pod:5219
14905 #, no-wrap
14906 msgid ""
14907 " int\n"
14908 " guestfs_part_set_name (guestfs_h *g,\n"
14909 "                        const char *device,\n"
14910 "                        int partnum,\n"
14911 "                        const char *name);\n"
14912 "\n"
14913 msgstr ""
14914
14915 #. type: textblock
14916 #: ../src/guestfs-actions.pod:5225 ../fish/guestfish-actions.pod:3539
14917 msgid ""
14918 "This sets the partition name on partition numbered C<partnum> on device "
14919 "C<device>.  Note that partitions are numbered from 1."
14920 msgstr ""
14921
14922 #. type: textblock
14923 #: ../src/guestfs-actions.pod:5228 ../fish/guestfish-actions.pod:3542
14924 msgid ""
14925 "The partition name can only be set on certain types of partition table.  "
14926 "This works on C<gpt> but not on C<mbr> partitions."
14927 msgstr ""
14928
14929 #. type: =head2
14930 #: ../src/guestfs-actions.pod:5235
14931 msgid "guestfs_part_to_dev"
14932 msgstr ""
14933
14934 #. type: verbatim
14935 #: ../src/guestfs-actions.pod:5237
14936 #, no-wrap
14937 msgid ""
14938 " char *\n"
14939 " guestfs_part_to_dev (guestfs_h *g,\n"
14940 "                      const char *partition);\n"
14941 "\n"
14942 msgstr ""
14943
14944 #. type: textblock
14945 #: ../src/guestfs-actions.pod:5241 ../fish/guestfish-actions.pod:3549
14946 msgid ""
14947 "This function takes a partition name (eg. \"/dev/sdb1\") and removes the "
14948 "partition number, returning the device name (eg. \"/dev/sdb\")."
14949 msgstr ""
14950
14951 #. type: textblock
14952 #: ../src/guestfs-actions.pod:5245
14953 msgid ""
14954 "The named partition must exist, for example as a string returned from "
14955 "C<guestfs_list_partitions>."
14956 msgstr ""
14957
14958 #. type: =head2
14959 #: ../src/guestfs-actions.pod:5253
14960 msgid "guestfs_ping_daemon"
14961 msgstr ""
14962
14963 #. type: verbatim
14964 #: ../src/guestfs-actions.pod:5255
14965 #, no-wrap
14966 msgid ""
14967 " int\n"
14968 " guestfs_ping_daemon (guestfs_h *g);\n"
14969 "\n"
14970 msgstr ""
14971
14972 #. type: textblock
14973 #: ../src/guestfs-actions.pod:5258 ../fish/guestfish-actions.pod:3560
14974 msgid ""
14975 "This is a test probe into the guestfs daemon running inside the qemu "
14976 "subprocess.  Calling this function checks that the daemon responds to the "
14977 "ping message, without affecting the daemon or attached block device(s) in "
14978 "any other way."
14979 msgstr ""
14980
14981 #. type: =head2
14982 #: ../src/guestfs-actions.pod:5267
14983 msgid "guestfs_pread"
14984 msgstr ""
14985
14986 #. type: verbatim
14987 #: ../src/guestfs-actions.pod:5269
14988 #, no-wrap
14989 msgid ""
14990 " char *\n"
14991 " guestfs_pread (guestfs_h *g,\n"
14992 "                const char *path,\n"
14993 "                int count,\n"
14994 "                int64_t offset,\n"
14995 "                size_t *size_r);\n"
14996 "\n"
14997 msgstr ""
14998
14999 #. type: textblock
15000 #: ../src/guestfs-actions.pod:5276 ../fish/guestfish-actions.pod:3569
15001 msgid ""
15002 "This command lets you read part of a file.  It reads C<count> bytes of the "
15003 "file, starting at C<offset>, from file C<path>."
15004 msgstr ""
15005
15006 #. type: textblock
15007 #: ../src/guestfs-actions.pod:5279 ../src/guestfs-actions.pod:5305
15008 #: ../fish/guestfish-actions.pod:3572 ../fish/guestfish-actions.pod:3587
15009 msgid ""
15010 "This may read fewer bytes than requested.  For further details see the "
15011 "L<pread(2)> system call."
15012 msgstr ""
15013
15014 #. type: textblock
15015 #: ../src/guestfs-actions.pod:5282
15016 msgid "See also C<guestfs_pwrite>, C<guestfs_pread_device>."
15017 msgstr ""
15018
15019 #. type: =head2
15020 #: ../src/guestfs-actions.pod:5293
15021 msgid "guestfs_pread_device"
15022 msgstr ""
15023
15024 #. type: verbatim
15025 #: ../src/guestfs-actions.pod:5295
15026 #, no-wrap
15027 msgid ""
15028 " char *\n"
15029 " guestfs_pread_device (guestfs_h *g,\n"
15030 "                       const char *device,\n"
15031 "                       int count,\n"
15032 "                       int64_t offset,\n"
15033 "                       size_t *size_r);\n"
15034 "\n"
15035 msgstr ""
15036
15037 #. type: textblock
15038 #: ../src/guestfs-actions.pod:5302 ../fish/guestfish-actions.pod:3584
15039 msgid ""
15040 "This command lets you read part of a file.  It reads C<count> bytes of "
15041 "C<device>, starting at C<offset>."
15042 msgstr ""
15043
15044 #. type: textblock
15045 #: ../src/guestfs-actions.pod:5308
15046 msgid "See also C<guestfs_pread>."
15047 msgstr ""
15048
15049 #. type: textblock
15050 #: ../src/guestfs-actions.pod:5317
15051 msgid "(Added in 1.5.21)"
15052 msgstr ""
15053
15054 #. type: =head2
15055 #: ../src/guestfs-actions.pod:5319
15056 msgid "guestfs_pvcreate"
15057 msgstr ""
15058
15059 #. type: verbatim
15060 #: ../src/guestfs-actions.pod:5321
15061 #, no-wrap
15062 msgid ""
15063 " int\n"
15064 " guestfs_pvcreate (guestfs_h *g,\n"
15065 "                   const char *device);\n"
15066 "\n"
15067 msgstr ""
15068
15069 #. type: textblock
15070 #: ../src/guestfs-actions.pod:5325 ../fish/guestfish-actions.pod:3599
15071 msgid ""
15072 "This creates an LVM physical volume on the named C<device>, where C<device> "
15073 "should usually be a partition name such as C</dev/sda1>."
15074 msgstr ""
15075
15076 #. type: =head2
15077 #: ../src/guestfs-actions.pod:5333
15078 msgid "guestfs_pvremove"
15079 msgstr ""
15080
15081 #. type: verbatim
15082 #: ../src/guestfs-actions.pod:5335
15083 #, no-wrap
15084 msgid ""
15085 " int\n"
15086 " guestfs_pvremove (guestfs_h *g,\n"
15087 "                   const char *device);\n"
15088 "\n"
15089 msgstr ""
15090
15091 #. type: textblock
15092 #: ../src/guestfs-actions.pod:5339 ../fish/guestfish-actions.pod:3607
15093 msgid ""
15094 "This wipes a physical volume C<device> so that LVM will no longer recognise "
15095 "it."
15096 msgstr ""
15097
15098 #. type: textblock
15099 #: ../src/guestfs-actions.pod:5342 ../fish/guestfish-actions.pod:3610
15100 msgid ""
15101 "The implementation uses the C<pvremove> command which refuses to wipe "
15102 "physical volumes that contain any volume groups, so you have to remove those "
15103 "first."
15104 msgstr ""
15105
15106 #. type: =head2
15107 #: ../src/guestfs-actions.pod:5350
15108 msgid "guestfs_pvresize"
15109 msgstr ""
15110
15111 #. type: verbatim
15112 #: ../src/guestfs-actions.pod:5352
15113 #, no-wrap
15114 msgid ""
15115 " int\n"
15116 " guestfs_pvresize (guestfs_h *g,\n"
15117 "                   const char *device);\n"
15118 "\n"
15119 msgstr ""
15120
15121 #. type: textblock
15122 #: ../src/guestfs-actions.pod:5356 ../fish/guestfish-actions.pod:3618
15123 msgid ""
15124 "This resizes (expands or shrinks) an existing LVM physical volume to match "
15125 "the new size of the underlying device."
15126 msgstr ""
15127
15128 #. type: =head2
15129 #: ../src/guestfs-actions.pod:5363
15130 msgid "guestfs_pvresize_size"
15131 msgstr ""
15132
15133 #. type: verbatim
15134 #: ../src/guestfs-actions.pod:5365
15135 #, no-wrap
15136 msgid ""
15137 " int\n"
15138 " guestfs_pvresize_size (guestfs_h *g,\n"
15139 "                        const char *device,\n"
15140 "                        int64_t size);\n"
15141 "\n"
15142 msgstr ""
15143
15144 #. type: textblock
15145 #: ../src/guestfs-actions.pod:5370
15146 msgid ""
15147 "This command is the same as C<guestfs_pvresize> except that it allows you to "
15148 "specify the new size (in bytes) explicitly."
15149 msgstr ""
15150
15151 #. type: =head2
15152 #: ../src/guestfs-actions.pod:5377
15153 msgid "guestfs_pvs"
15154 msgstr ""
15155
15156 #. type: verbatim
15157 #: ../src/guestfs-actions.pod:5379
15158 #, no-wrap
15159 msgid ""
15160 " char **\n"
15161 " guestfs_pvs (guestfs_h *g);\n"
15162 "\n"
15163 msgstr ""
15164
15165 #. type: textblock
15166 #: ../src/guestfs-actions.pod:5382 ../fish/guestfish-actions.pod:3632
15167 msgid ""
15168 "List all the physical volumes detected.  This is the equivalent of the L<pvs"
15169 "(8)> command."
15170 msgstr ""
15171
15172 #. type: textblock
15173 #: ../src/guestfs-actions.pod:5385 ../fish/guestfish-actions.pod:3635
15174 msgid ""
15175 "This returns a list of just the device names that contain PVs (eg. C</dev/"
15176 "sda2>)."
15177 msgstr ""
15178
15179 #. type: textblock
15180 #: ../src/guestfs-actions.pod:5388
15181 msgid "See also C<guestfs_pvs_full>."
15182 msgstr ""
15183
15184 #. type: =head2
15185 #: ../src/guestfs-actions.pod:5396
15186 msgid "guestfs_pvs_full"
15187 msgstr ""
15188
15189 #. type: verbatim
15190 #: ../src/guestfs-actions.pod:5398
15191 #, no-wrap
15192 msgid ""
15193 " struct guestfs_lvm_pv_list *\n"
15194 " guestfs_pvs_full (guestfs_h *g);\n"
15195 "\n"
15196 msgstr ""
15197
15198 #. type: textblock
15199 #: ../src/guestfs-actions.pod:5401 ../fish/guestfish-actions.pod:3644
15200 msgid ""
15201 "List all the physical volumes detected.  This is the equivalent of the L<pvs"
15202 "(8)> command.  The \"full\" version includes all fields."
15203 msgstr ""
15204
15205 #. type: textblock
15206 #: ../src/guestfs-actions.pod:5404
15207 msgid ""
15208 "This function returns a C<struct guestfs_lvm_pv_list *>, or NULL if there "
15209 "was an error.  I<The caller must call C<guestfs_free_lvm_pv_list> after use>."
15210 msgstr ""
15211
15212 #. type: =head2
15213 #: ../src/guestfs-actions.pod:5410
15214 msgid "guestfs_pvuuid"
15215 msgstr ""
15216
15217 #. type: verbatim
15218 #: ../src/guestfs-actions.pod:5412
15219 #, no-wrap
15220 msgid ""
15221 " char *\n"
15222 " guestfs_pvuuid (guestfs_h *g,\n"
15223 "                 const char *device);\n"
15224 "\n"
15225 msgstr ""
15226
15227 #. type: textblock
15228 #: ../src/guestfs-actions.pod:5416 ../fish/guestfish-actions.pod:3651
15229 msgid "This command returns the UUID of the LVM PV C<device>."
15230 msgstr ""
15231
15232 #. type: =head2
15233 #: ../src/guestfs-actions.pod:5423
15234 msgid "guestfs_pwrite"
15235 msgstr ""
15236
15237 #. type: verbatim
15238 #: ../src/guestfs-actions.pod:5425
15239 #, no-wrap
15240 msgid ""
15241 " int\n"
15242 " guestfs_pwrite (guestfs_h *g,\n"
15243 "                 const char *path,\n"
15244 "                 const char *content,\n"
15245 "                 size_t content_size,\n"
15246 "                 int64_t offset);\n"
15247 "\n"
15248 msgstr ""
15249
15250 #. type: textblock
15251 #: ../src/guestfs-actions.pod:5432 ../fish/guestfish-actions.pod:3657
15252 msgid ""
15253 "This command writes to part of a file.  It writes the data buffer C<content> "
15254 "to the file C<path> starting at offset C<offset>."
15255 msgstr ""
15256
15257 #. type: textblock
15258 #: ../src/guestfs-actions.pod:5435 ../fish/guestfish-actions.pod:3660
15259 msgid ""
15260 "This command implements the L<pwrite(2)> system call, and like that system "
15261 "call it may not write the full data requested.  The return value is the "
15262 "number of bytes that were actually written to the file.  This could even be "
15263 "0, although short writes are unlikely for regular files in ordinary "
15264 "circumstances."
15265 msgstr ""
15266
15267 #. type: textblock
15268 #: ../src/guestfs-actions.pod:5441
15269 msgid "See also C<guestfs_pread>, C<guestfs_pwrite_device>."
15270 msgstr ""
15271
15272 #. type: =head2
15273 #: ../src/guestfs-actions.pod:5450
15274 msgid "guestfs_pwrite_device"
15275 msgstr ""
15276
15277 #. type: verbatim
15278 #: ../src/guestfs-actions.pod:5452
15279 #, no-wrap
15280 msgid ""
15281 " int\n"
15282 " guestfs_pwrite_device (guestfs_h *g,\n"
15283 "                        const char *device,\n"
15284 "                        const char *content,\n"
15285 "                        size_t content_size,\n"
15286 "                        int64_t offset);\n"
15287 "\n"
15288 msgstr ""
15289
15290 #. type: textblock
15291 #: ../src/guestfs-actions.pod:5459 ../fish/guestfish-actions.pod:3675
15292 msgid ""
15293 "This command writes to part of a device.  It writes the data buffer "
15294 "C<content> to C<device> starting at offset C<offset>."
15295 msgstr ""
15296
15297 #. type: textblock
15298 #: ../src/guestfs-actions.pod:5462 ../fish/guestfish-actions.pod:3678
15299 msgid ""
15300 "This command implements the L<pwrite(2)> system call, and like that system "
15301 "call it may not write the full data requested (although short writes to disk "
15302 "devices and partitions are probably impossible with standard Linux kernels)."
15303 msgstr ""
15304
15305 #. type: textblock
15306 #: ../src/guestfs-actions.pod:5467
15307 msgid "See also C<guestfs_pwrite>."
15308 msgstr ""
15309
15310 #. type: textblock
15311 #: ../src/guestfs-actions.pod:5474
15312 msgid "(Added in 1.5.20)"
15313 msgstr ""
15314
15315 #. type: =head2
15316 #: ../src/guestfs-actions.pod:5476
15317 msgid "guestfs_read_file"
15318 msgstr ""
15319
15320 #. type: verbatim
15321 #: ../src/guestfs-actions.pod:5478
15322 #, no-wrap
15323 msgid ""
15324 " char *\n"
15325 " guestfs_read_file (guestfs_h *g,\n"
15326 "                    const char *path,\n"
15327 "                    size_t *size_r);\n"
15328 "\n"
15329 msgstr ""
15330
15331 #. type: textblock
15332 #: ../src/guestfs-actions.pod:5483 ../fish/guestfish-actions.pod:3692
15333 msgid "This calls returns the contents of the file C<path> as a buffer."
15334 msgstr ""
15335
15336 #. type: textblock
15337 #: ../src/guestfs-actions.pod:5486
15338 msgid ""
15339 "Unlike C<guestfs_cat>, this function can correctly handle files that contain "
15340 "embedded ASCII NUL characters.  However unlike C<guestfs_download>, this "
15341 "function is limited in the total size of file that can be handled."
15342 msgstr ""
15343
15344 #. type: textblock
15345 #: ../src/guestfs-actions.pod:5498
15346 msgid "(Added in 1.0.63)"
15347 msgstr ""
15348
15349 #. type: =head2
15350 #: ../src/guestfs-actions.pod:5500
15351 msgid "guestfs_read_lines"
15352 msgstr ""
15353
15354 #. type: verbatim
15355 #: ../src/guestfs-actions.pod:5502
15356 #, no-wrap
15357 msgid ""
15358 " char **\n"
15359 " guestfs_read_lines (guestfs_h *g,\n"
15360 "                     const char *path);\n"
15361 "\n"
15362 msgstr ""
15363
15364 #. type: textblock
15365 #: ../src/guestfs-actions.pod:5508 ../fish/guestfish-actions.pod:3709
15366 msgid ""
15367 "The file contents are returned as a list of lines.  Trailing C<LF> and "
15368 "C<CRLF> character sequences are I<not> returned."
15369 msgstr ""
15370
15371 #. type: textblock
15372 #: ../src/guestfs-actions.pod:5511
15373 msgid ""
15374 "Note that this function cannot correctly handle binary files (specifically, "
15375 "files containing C<\\0> character which is treated as end of line).  For "
15376 "those you need to use the C<guestfs_read_file> function which has a more "
15377 "complex interface."
15378 msgstr ""
15379
15380 #. type: =head2
15381 #: ../src/guestfs-actions.pod:5522
15382 msgid "guestfs_readdir"
15383 msgstr ""
15384
15385 #. type: verbatim
15386 #: ../src/guestfs-actions.pod:5524
15387 #, no-wrap
15388 msgid ""
15389 " struct guestfs_dirent_list *\n"
15390 " guestfs_readdir (guestfs_h *g,\n"
15391 "                  const char *dir);\n"
15392 "\n"
15393 msgstr ""
15394
15395 #. type: textblock
15396 #: ../src/guestfs-actions.pod:5528 ../fish/guestfish-actions.pod:3721
15397 msgid "This returns the list of directory entries in directory C<dir>."
15398 msgstr ""
15399
15400 #. type: textblock
15401 #: ../src/guestfs-actions.pod:5530 ../fish/guestfish-actions.pod:3723
15402 msgid ""
15403 "All entries in the directory are returned, including C<.> and C<..>.  The "
15404 "entries are I<not> sorted, but returned in the same order as the underlying "
15405 "filesystem."
15406 msgstr ""
15407
15408 #. type: textblock
15409 #: ../src/guestfs-actions.pod:5534 ../fish/guestfish-actions.pod:3727
15410 msgid ""
15411 "Also this call returns basic file type information about each file.  The "
15412 "C<ftyp> field will contain one of the following characters:"
15413 msgstr ""
15414
15415 #. type: =item
15416 #: ../src/guestfs-actions.pod:5539 ../fish/guestfish-actions.pod:3732
15417 msgid "'b'"
15418 msgstr ""
15419
15420 #. type: textblock
15421 #: ../src/guestfs-actions.pod:5541 ../fish/guestfish-actions.pod:3734
15422 msgid "Block special"
15423 msgstr ""
15424
15425 #. type: =item
15426 #: ../src/guestfs-actions.pod:5543 ../fish/guestfish-actions.pod:3736
15427 msgid "'c'"
15428 msgstr ""
15429
15430 #. type: textblock
15431 #: ../src/guestfs-actions.pod:5545 ../fish/guestfish-actions.pod:3738
15432 msgid "Char special"
15433 msgstr ""
15434
15435 #. type: =item
15436 #: ../src/guestfs-actions.pod:5547 ../fish/guestfish-actions.pod:3740
15437 msgid "'d'"
15438 msgstr ""
15439
15440 #. type: textblock
15441 #: ../src/guestfs-actions.pod:5549 ../fish/guestfish-actions.pod:3742
15442 msgid "Directory"
15443 msgstr ""
15444
15445 #. type: =item
15446 #: ../src/guestfs-actions.pod:5551 ../fish/guestfish-actions.pod:3744
15447 msgid "'f'"
15448 msgstr ""
15449
15450 #. type: textblock
15451 #: ../src/guestfs-actions.pod:5553 ../fish/guestfish-actions.pod:3746
15452 msgid "FIFO (named pipe)"
15453 msgstr ""
15454
15455 #. type: =item
15456 #: ../src/guestfs-actions.pod:5555 ../fish/guestfish-actions.pod:3748
15457 msgid "'l'"
15458 msgstr ""
15459
15460 #. type: textblock
15461 #: ../src/guestfs-actions.pod:5557 ../fish/guestfish-actions.pod:3750
15462 msgid "Symbolic link"
15463 msgstr ""
15464
15465 #. type: =item
15466 #: ../src/guestfs-actions.pod:5559 ../fish/guestfish-actions.pod:3752
15467 msgid "'r'"
15468 msgstr ""
15469
15470 #. type: textblock
15471 #: ../src/guestfs-actions.pod:5561 ../fish/guestfish-actions.pod:3754
15472 msgid "Regular file"
15473 msgstr ""
15474
15475 #. type: =item
15476 #: ../src/guestfs-actions.pod:5563 ../fish/guestfish-actions.pod:3756
15477 msgid "'s'"
15478 msgstr ""
15479
15480 #. type: textblock
15481 #: ../src/guestfs-actions.pod:5565 ../fish/guestfish-actions.pod:3758
15482 msgid "Socket"
15483 msgstr ""
15484
15485 #. type: =item
15486 #: ../src/guestfs-actions.pod:5567 ../fish/guestfish-actions.pod:3760
15487 msgid "'u'"
15488 msgstr ""
15489
15490 #. type: textblock
15491 #: ../src/guestfs-actions.pod:5569 ../fish/guestfish-actions.pod:3762
15492 msgid "Unknown file type"
15493 msgstr ""
15494
15495 #. type: =item
15496 #: ../src/guestfs-actions.pod:5571 ../fish/guestfish-actions.pod:3764
15497 msgid "'?'"
15498 msgstr ""
15499
15500 #. type: textblock
15501 #: ../src/guestfs-actions.pod:5573 ../fish/guestfish-actions.pod:3766
15502 msgid ""
15503 "The L<readdir(3)> call returned a C<d_type> field with an unexpected value"
15504 msgstr ""
15505
15506 #. type: textblock
15507 #: ../src/guestfs-actions.pod:5578
15508 msgid ""
15509 "This function is primarily intended for use by programs.  To get a simple "
15510 "list of names, use C<guestfs_ls>.  To get a printable directory for human "
15511 "consumption, use C<guestfs_ll>."
15512 msgstr ""
15513
15514 #. type: textblock
15515 #: ../src/guestfs-actions.pod:5582
15516 msgid ""
15517 "This function returns a C<struct guestfs_dirent_list *>, or NULL if there "
15518 "was an error.  I<The caller must call C<guestfs_free_dirent_list> after use>."
15519 msgstr ""
15520
15521 #. type: =head2
15522 #: ../src/guestfs-actions.pod:5588
15523 msgid "guestfs_readlink"
15524 msgstr ""
15525
15526 #. type: verbatim
15527 #: ../src/guestfs-actions.pod:5590
15528 #, no-wrap
15529 msgid ""
15530 " char *\n"
15531 " guestfs_readlink (guestfs_h *g,\n"
15532 "                   const char *path);\n"
15533 "\n"
15534 msgstr ""
15535
15536 #. type: textblock
15537 #: ../src/guestfs-actions.pod:5594 ../fish/guestfish-actions.pod:3779
15538 msgid "This command reads the target of a symbolic link."
15539 msgstr ""
15540
15541 #. type: =head2
15542 #: ../src/guestfs-actions.pod:5601
15543 msgid "guestfs_readlinklist"
15544 msgstr ""
15545
15546 #. type: verbatim
15547 #: ../src/guestfs-actions.pod:5603
15548 #, no-wrap
15549 msgid ""
15550 " char **\n"
15551 " guestfs_readlinklist (guestfs_h *g,\n"
15552 "                       const char *path,\n"
15553 "                       char *const *names);\n"
15554 "\n"
15555 msgstr ""
15556
15557 #. type: textblock
15558 #: ../src/guestfs-actions.pod:5608 ../fish/guestfish-actions.pod:3785
15559 msgid ""
15560 "This call allows you to do a C<readlink> operation on multiple files, where "
15561 "all files are in the directory C<path>.  C<names> is the list of files from "
15562 "this directory."
15563 msgstr ""
15564
15565 #. type: textblock
15566 #: ../src/guestfs-actions.pod:5612 ../fish/guestfish-actions.pod:3789
15567 msgid ""
15568 "On return you get a list of strings, with a one-to-one correspondence to the "
15569 "C<names> list.  Each string is the value of the symbolic link."
15570 msgstr ""
15571
15572 #. type: textblock
15573 #: ../src/guestfs-actions.pod:5616 ../fish/guestfish-actions.pod:3793
15574 msgid ""
15575 "If the C<readlink(2)> operation fails on any name, then the corresponding "
15576 "result string is the empty string C<\"\">.  However the whole operation is "
15577 "completed even if there were C<readlink(2)> errors, and so you can call this "
15578 "function with names where you don't know if they are symbolic links already "
15579 "(albeit slightly less efficient)."
15580 msgstr ""
15581
15582 #. type: textblock
15583 #: ../src/guestfs-actions.pod:5623 ../fish/guestfish-actions.pod:3800
15584 msgid ""
15585 "This call is intended for programs that want to efficiently list a directory "
15586 "contents without making many round-trips.  Very long directory listings "
15587 "might cause the protocol message size to be exceeded, causing this call to "
15588 "fail.  The caller must split up such requests into smaller groups of names."
15589 msgstr ""
15590
15591 #. type: =head2
15592 #: ../src/guestfs-actions.pod:5636
15593 msgid "guestfs_realpath"
15594 msgstr ""
15595
15596 #. type: verbatim
15597 #: ../src/guestfs-actions.pod:5638
15598 #, no-wrap
15599 msgid ""
15600 " char *\n"
15601 " guestfs_realpath (guestfs_h *g,\n"
15602 "                   const char *path);\n"
15603 "\n"
15604 msgstr ""
15605
15606 #. type: textblock
15607 #: ../src/guestfs-actions.pod:5642 ../fish/guestfish-actions.pod:3811
15608 msgid ""
15609 "Return the canonicalized absolute pathname of C<path>.  The returned path "
15610 "has no C<.>, C<..> or symbolic link path elements."
15611 msgstr ""
15612
15613 #. type: =head2
15614 #: ../src/guestfs-actions.pod:5650
15615 msgid "guestfs_removexattr"
15616 msgstr ""
15617
15618 #. type: verbatim
15619 #: ../src/guestfs-actions.pod:5652
15620 #, no-wrap
15621 msgid ""
15622 " int\n"
15623 " guestfs_removexattr (guestfs_h *g,\n"
15624 "                      const char *xattr,\n"
15625 "                      const char *path);\n"
15626 "\n"
15627 msgstr ""
15628
15629 #. type: textblock
15630 #: ../src/guestfs-actions.pod:5657 ../fish/guestfish-actions.pod:3818
15631 msgid ""
15632 "This call removes the extended attribute named C<xattr> of the file C<path>."
15633 msgstr ""
15634
15635 #. type: textblock
15636 #: ../src/guestfs-actions.pod:5660
15637 msgid "See also: C<guestfs_lremovexattr>, L<attr(5)>."
15638 msgstr ""
15639
15640 #. type: =head2
15641 #: ../src/guestfs-actions.pod:5666
15642 msgid "guestfs_resize2fs"
15643 msgstr ""
15644
15645 #. type: verbatim
15646 #: ../src/guestfs-actions.pod:5668
15647 #, no-wrap
15648 msgid ""
15649 " int\n"
15650 " guestfs_resize2fs (guestfs_h *g,\n"
15651 "                    const char *device);\n"
15652 "\n"
15653 msgstr ""
15654
15655 #. type: textblock
15656 #: ../src/guestfs-actions.pod:5672 ../fish/guestfish-actions.pod:3827
15657 msgid ""
15658 "This resizes an ext2, ext3 or ext4 filesystem to match the size of the "
15659 "underlying device."
15660 msgstr ""
15661
15662 #. type: textblock
15663 #: ../src/guestfs-actions.pod:5675
15664 msgid ""
15665 "I<Note:> It is sometimes required that you run C<guestfs_e2fsck_f> on the "
15666 "C<device> before calling this command.  For unknown reasons C<resize2fs> "
15667 "sometimes gives an error about this and sometimes not.  In any case, it is "
15668 "always safe to call C<guestfs_e2fsck_f> before calling this function."
15669 msgstr ""
15670
15671 #. type: =head2
15672 #: ../src/guestfs-actions.pod:5685
15673 msgid "guestfs_resize2fs_M"
15674 msgstr ""
15675
15676 #. type: verbatim
15677 #: ../src/guestfs-actions.pod:5687
15678 #, no-wrap
15679 msgid ""
15680 " int\n"
15681 " guestfs_resize2fs_M (guestfs_h *g,\n"
15682 "                      const char *device);\n"
15683 "\n"
15684 msgstr ""
15685
15686 #. type: textblock
15687 #: ../src/guestfs-actions.pod:5691
15688 msgid ""
15689 "This command is the same as C<guestfs_resize2fs>, but the filesystem is "
15690 "resized to its minimum size.  This works like the I<-M> option to the "
15691 "C<resize2fs> command."
15692 msgstr ""
15693
15694 #. type: textblock
15695 #: ../src/guestfs-actions.pod:5695
15696 msgid ""
15697 "To get the resulting size of the filesystem you should call "
15698 "C<guestfs_tune2fs_l> and read the C<Block size> and C<Block count> values.  "
15699 "These two numbers, multiplied together, give the resulting size of the "
15700 "minimal filesystem in bytes."
15701 msgstr ""
15702
15703 #. type: =head2
15704 #: ../src/guestfs-actions.pod:5702
15705 msgid "guestfs_resize2fs_size"
15706 msgstr ""
15707
15708 #. type: verbatim
15709 #: ../src/guestfs-actions.pod:5704
15710 #, no-wrap
15711 msgid ""
15712 " int\n"
15713 " guestfs_resize2fs_size (guestfs_h *g,\n"
15714 "                         const char *device,\n"
15715 "                         int64_t size);\n"
15716 "\n"
15717 msgstr ""
15718
15719 #. type: textblock
15720 #: ../src/guestfs-actions.pod:5709
15721 msgid ""
15722 "This command is the same as C<guestfs_resize2fs> except that it allows you "
15723 "to specify the new size (in bytes) explicitly."
15724 msgstr ""
15725
15726 #. type: =head2
15727 #: ../src/guestfs-actions.pod:5716
15728 msgid "guestfs_rm"
15729 msgstr ""
15730
15731 #. type: verbatim
15732 #: ../src/guestfs-actions.pod:5718
15733 #, no-wrap
15734 msgid ""
15735 " int\n"
15736 " guestfs_rm (guestfs_h *g,\n"
15737 "             const char *path);\n"
15738 "\n"
15739 msgstr ""
15740
15741 #. type: textblock
15742 #: ../src/guestfs-actions.pod:5722 ../fish/guestfish-actions.pod:3860
15743 msgid "Remove the single file C<path>."
15744 msgstr ""
15745
15746 #. type: =head2
15747 #: ../src/guestfs-actions.pod:5728
15748 msgid "guestfs_rm_rf"
15749 msgstr ""
15750
15751 #. type: verbatim
15752 #: ../src/guestfs-actions.pod:5730
15753 #, no-wrap
15754 msgid ""
15755 " int\n"
15756 " guestfs_rm_rf (guestfs_h *g,\n"
15757 "                const char *path);\n"
15758 "\n"
15759 msgstr ""
15760
15761 #. type: textblock
15762 #: ../src/guestfs-actions.pod:5734 ../fish/guestfish-actions.pod:3866
15763 msgid ""
15764 "Remove the file or directory C<path>, recursively removing the contents if "
15765 "its a directory.  This is like the C<rm -rf> shell command."
15766 msgstr ""
15767
15768 #. type: =head2
15769 #: ../src/guestfs-actions.pod:5742
15770 msgid "guestfs_rmdir"
15771 msgstr ""
15772
15773 #. type: verbatim
15774 #: ../src/guestfs-actions.pod:5744
15775 #, no-wrap
15776 msgid ""
15777 " int\n"
15778 " guestfs_rmdir (guestfs_h *g,\n"
15779 "                const char *path);\n"
15780 "\n"
15781 msgstr ""
15782
15783 #. type: textblock
15784 #: ../src/guestfs-actions.pod:5748 ../fish/guestfish-actions.pod:3874
15785 msgid "Remove the single directory C<path>."
15786 msgstr ""
15787
15788 #. type: =head2
15789 #: ../src/guestfs-actions.pod:5754
15790 msgid "guestfs_rmmountpoint"
15791 msgstr ""
15792
15793 #. type: verbatim
15794 #: ../src/guestfs-actions.pod:5756
15795 #, no-wrap
15796 msgid ""
15797 " int\n"
15798 " guestfs_rmmountpoint (guestfs_h *g,\n"
15799 "                       const char *exemptpath);\n"
15800 "\n"
15801 msgstr ""
15802
15803 #. type: textblock
15804 #: ../src/guestfs-actions.pod:5760
15805 msgid ""
15806 "This calls removes a mountpoint that was previously created with "
15807 "C<guestfs_mkmountpoint>.  See C<guestfs_mkmountpoint> for full details."
15808 msgstr ""
15809
15810 #. type: =head2
15811 #: ../src/guestfs-actions.pod:5768
15812 msgid "guestfs_scrub_device"
15813 msgstr ""
15814
15815 #. type: verbatim
15816 #: ../src/guestfs-actions.pod:5770
15817 #, no-wrap
15818 msgid ""
15819 " int\n"
15820 " guestfs_scrub_device (guestfs_h *g,\n"
15821 "                       const char *device);\n"
15822 "\n"
15823 msgstr ""
15824
15825 #. type: textblock
15826 #: ../src/guestfs-actions.pod:5774 ../fish/guestfish-actions.pod:3888
15827 msgid ""
15828 "This command writes patterns over C<device> to make data retrieval more "
15829 "difficult."
15830 msgstr ""
15831
15832 #. type: textblock
15833 #: ../src/guestfs-actions.pod:5777 ../src/guestfs-actions.pod:5798
15834 #: ../src/guestfs-actions.pod:5817 ../fish/guestfish-actions.pod:3891
15835 #: ../fish/guestfish-actions.pod:3906 ../fish/guestfish-actions.pod:3919
15836 msgid ""
15837 "It is an interface to the L<scrub(1)> program.  See that manual page for "
15838 "more details."
15839 msgstr ""
15840
15841 #. type: textblock
15842 #: ../src/guestfs-actions.pod:5785 ../src/guestfs-actions.pod:5803
15843 #: ../src/guestfs-actions.pod:5822
15844 msgid "(Added in 1.0.52)"
15845 msgstr ""
15846
15847 #. type: =head2
15848 #: ../src/guestfs-actions.pod:5787
15849 msgid "guestfs_scrub_file"
15850 msgstr ""
15851
15852 #. type: verbatim
15853 #: ../src/guestfs-actions.pod:5789
15854 #, no-wrap
15855 msgid ""
15856 " int\n"
15857 " guestfs_scrub_file (guestfs_h *g,\n"
15858 "                     const char *file);\n"
15859 "\n"
15860 msgstr ""
15861
15862 #. type: textblock
15863 #: ../src/guestfs-actions.pod:5793 ../fish/guestfish-actions.pod:3901
15864 msgid ""
15865 "This command writes patterns over a file to make data retrieval more "
15866 "difficult."
15867 msgstr ""
15868
15869 #. type: textblock
15870 #: ../src/guestfs-actions.pod:5796 ../fish/guestfish-actions.pod:3904
15871 msgid "The file is I<removed> after scrubbing."
15872 msgstr ""
15873
15874 #. type: =head2
15875 #: ../src/guestfs-actions.pod:5805
15876 msgid "guestfs_scrub_freespace"
15877 msgstr ""
15878
15879 #. type: verbatim
15880 #: ../src/guestfs-actions.pod:5807
15881 #, no-wrap
15882 msgid ""
15883 " int\n"
15884 " guestfs_scrub_freespace (guestfs_h *g,\n"
15885 "                          const char *dir);\n"
15886 "\n"
15887 msgstr ""
15888
15889 #. type: textblock
15890 #: ../src/guestfs-actions.pod:5811
15891 msgid ""
15892 "This command creates the directory C<dir> and then fills it with files until "
15893 "the filesystem is full, and scrubs the files as for C<guestfs_scrub_file>, "
15894 "and deletes them.  The intention is to scrub any free space on the partition "
15895 "containing C<dir>."
15896 msgstr ""
15897
15898 #. type: =head2
15899 #: ../src/guestfs-actions.pod:5824
15900 msgid "guestfs_set_append"
15901 msgstr ""
15902
15903 #. type: verbatim
15904 #: ../src/guestfs-actions.pod:5826
15905 #, no-wrap
15906 msgid ""
15907 " int\n"
15908 " guestfs_set_append (guestfs_h *g,\n"
15909 "                     const char *append);\n"
15910 "\n"
15911 msgstr ""
15912
15913 #. type: textblock
15914 #: ../src/guestfs-actions.pod:5830 ../fish/guestfish-actions.pod:3928
15915 msgid ""
15916 "This function is used to add additional options to the guest kernel command "
15917 "line."
15918 msgstr ""
15919
15920 #. type: textblock
15921 #: ../src/guestfs-actions.pod:5833 ../fish/guestfish-actions.pod:3931
15922 msgid ""
15923 "The default is C<NULL> unless overridden by setting C<LIBGUESTFS_APPEND> "
15924 "environment variable."
15925 msgstr ""
15926
15927 #. type: textblock
15928 #: ../src/guestfs-actions.pod:5836 ../fish/guestfish-actions.pod:3934
15929 msgid ""
15930 "Setting C<append> to C<NULL> means I<no> additional options are passed "
15931 "(libguestfs always adds a few of its own)."
15932 msgstr ""
15933
15934 #. type: =head2
15935 #: ../src/guestfs-actions.pod:5843
15936 msgid "guestfs_set_attach_method"
15937 msgstr ""
15938
15939 #. type: verbatim
15940 #: ../src/guestfs-actions.pod:5845
15941 #, no-wrap
15942 msgid ""
15943 " int\n"
15944 " guestfs_set_attach_method (guestfs_h *g,\n"
15945 "                            const char *attachmethod);\n"
15946 "\n"
15947 msgstr ""
15948
15949 #. type: textblock
15950 #: ../src/guestfs-actions.pod:5849 ../fish/guestfish-actions.pod:3943
15951 msgid ""
15952 "Set the method that libguestfs uses to connect to the back end guestfsd "
15953 "daemon.  Possible methods are:"
15954 msgstr ""
15955
15956 #. type: textblock
15957 #: ../src/guestfs-actions.pod:5856 ../fish/guestfish-actions.pod:3950
15958 msgid ""
15959 "Launch an appliance and connect to it.  This is the ordinary method and the "
15960 "default."
15961 msgstr ""
15962
15963 #. type: =item
15964 #: ../src/guestfs-actions.pod:5859 ../fish/guestfish-actions.pod:3953
15965 msgid "C<unix:I<path>>"
15966 msgstr ""
15967
15968 #. type: textblock
15969 #: ../src/guestfs-actions.pod:5861 ../fish/guestfish-actions.pod:3955
15970 msgid "Connect to the Unix domain socket I<path>."
15971 msgstr ""
15972
15973 #. type: textblock
15974 #: ../src/guestfs-actions.pod:5863 ../fish/guestfish-actions.pod:3957
15975 msgid ""
15976 "This method lets you connect to an existing daemon or (using virtio-serial) "
15977 "to a live guest.  For more information, see L<guestfs(3)/ATTACHING TO "
15978 "RUNNING DAEMONS>."
15979 msgstr ""
15980
15981 #. type: =head2
15982 #: ../src/guestfs-actions.pod:5871
15983 msgid "guestfs_set_autosync"
15984 msgstr ""
15985
15986 #. type: verbatim
15987 #: ../src/guestfs-actions.pod:5873
15988 #, no-wrap
15989 msgid ""
15990 " int\n"
15991 " guestfs_set_autosync (guestfs_h *g,\n"
15992 "                       int autosync);\n"
15993 "\n"
15994 msgstr ""
15995
15996 #. type: textblock
15997 #: ../src/guestfs-actions.pod:5877 ../fish/guestfish-actions.pod:3969
15998 msgid ""
15999 "If C<autosync> is true, this enables autosync.  Libguestfs will make a best "
16000 "effort attempt to make filesystems consistent and synchronized when the "
16001 "handle is closed (also if the program exits without closing handles)."
16002 msgstr ""
16003
16004 #. type: textblock
16005 #: ../src/guestfs-actions.pod:5882 ../fish/guestfish-actions.pod:3974
16006 msgid ""
16007 "This is enabled by default (since libguestfs 1.5.24, previously it was "
16008 "disabled by default)."
16009 msgstr ""
16010
16011 #. type: =head2
16012 #: ../src/guestfs-actions.pod:5889
16013 msgid "guestfs_set_direct"
16014 msgstr ""
16015
16016 #. type: verbatim
16017 #: ../src/guestfs-actions.pod:5891
16018 #, no-wrap
16019 msgid ""
16020 " int\n"
16021 " guestfs_set_direct (guestfs_h *g,\n"
16022 "                     int direct);\n"
16023 "\n"
16024 msgstr ""
16025
16026 #. type: textblock
16027 #: ../src/guestfs-actions.pod:5895 ../fish/guestfish-actions.pod:3983
16028 msgid ""
16029 "If the direct appliance mode flag is enabled, then stdin and stdout are "
16030 "passed directly through to the appliance once it is launched."
16031 msgstr ""
16032
16033 #. type: textblock
16034 #: ../src/guestfs-actions.pod:5899
16035 msgid ""
16036 "One consequence of this is that log messages aren't caught by the library "
16037 "and handled by C<guestfs_set_log_message_callback>, but go straight to "
16038 "stdout."
16039 msgstr ""
16040
16041 #. type: textblock
16042 #: ../src/guestfs-actions.pod:5903 ../fish/guestfish-actions.pod:3991
16043 msgid "You probably don't want to use this unless you know what you are doing."
16044 msgstr ""
16045
16046 #. type: textblock
16047 #: ../src/guestfs-actions.pod:5906 ../fish/guestfish-actions.pod:3994
16048 msgid "The default is disabled."
16049 msgstr ""
16050
16051 #. type: =head2
16052 #: ../src/guestfs-actions.pod:5912
16053 msgid "guestfs_set_e2label"
16054 msgstr ""
16055
16056 #. type: verbatim
16057 #: ../src/guestfs-actions.pod:5914
16058 #, no-wrap
16059 msgid ""
16060 " int\n"
16061 " guestfs_set_e2label (guestfs_h *g,\n"
16062 "                      const char *device,\n"
16063 "                      const char *label);\n"
16064 "\n"
16065 msgstr ""
16066
16067 #. type: textblock
16068 #: ../src/guestfs-actions.pod:5919 ../fish/guestfish-actions.pod:4000
16069 msgid ""
16070 "This sets the ext2/3/4 filesystem label of the filesystem on C<device> to "
16071 "C<label>.  Filesystem labels are limited to 16 characters."
16072 msgstr ""
16073
16074 #. type: textblock
16075 #: ../src/guestfs-actions.pod:5923
16076 msgid ""
16077 "You can use either C<guestfs_tune2fs_l> or C<guestfs_get_e2label> to return "
16078 "the existing label on a filesystem."
16079 msgstr ""
16080
16081 #. type: =head2
16082 #: ../src/guestfs-actions.pod:5930
16083 msgid "guestfs_set_e2uuid"
16084 msgstr ""
16085
16086 #. type: verbatim
16087 #: ../src/guestfs-actions.pod:5932
16088 #, no-wrap
16089 msgid ""
16090 " int\n"
16091 " guestfs_set_e2uuid (guestfs_h *g,\n"
16092 "                     const char *device,\n"
16093 "                     const char *uuid);\n"
16094 "\n"
16095 msgstr ""
16096
16097 #. type: textblock
16098 #: ../src/guestfs-actions.pod:5937 ../fish/guestfish-actions.pod:4011
16099 msgid ""
16100 "This sets the ext2/3/4 filesystem UUID of the filesystem on C<device> to "
16101 "C<uuid>.  The format of the UUID and alternatives such as C<clear>, "
16102 "C<random> and C<time> are described in the L<tune2fs(8)> manpage."
16103 msgstr ""
16104
16105 #. type: textblock
16106 #: ../src/guestfs-actions.pod:5942
16107 msgid ""
16108 "You can use either C<guestfs_tune2fs_l> or C<guestfs_get_e2uuid> to return "
16109 "the existing UUID of a filesystem."
16110 msgstr ""
16111
16112 #. type: =head2
16113 #: ../src/guestfs-actions.pod:5949
16114 msgid "guestfs_set_memsize"
16115 msgstr ""
16116
16117 #. type: verbatim
16118 #: ../src/guestfs-actions.pod:5951
16119 #, no-wrap
16120 msgid ""
16121 " int\n"
16122 " guestfs_set_memsize (guestfs_h *g,\n"
16123 "                      int memsize);\n"
16124 "\n"
16125 msgstr ""
16126
16127 #. type: textblock
16128 #: ../src/guestfs-actions.pod:5955
16129 msgid ""
16130 "This sets the memory size in megabytes allocated to the qemu subprocess.  "
16131 "This only has any effect if called before C<guestfs_launch>."
16132 msgstr ""
16133
16134 #. type: textblock
16135 #: ../src/guestfs-actions.pod:5959 ../fish/guestfish-actions.pod:4029
16136 msgid ""
16137 "You can also change this by setting the environment variable "
16138 "C<LIBGUESTFS_MEMSIZE> before the handle is created."
16139 msgstr ""
16140
16141 #. type: =head2
16142 #: ../src/guestfs-actions.pod:5970
16143 msgid "guestfs_set_network"
16144 msgstr ""
16145
16146 #. type: verbatim
16147 #: ../src/guestfs-actions.pod:5972
16148 #, no-wrap
16149 msgid ""
16150 " int\n"
16151 " guestfs_set_network (guestfs_h *g,\n"
16152 "                      int network);\n"
16153 "\n"
16154 msgstr ""
16155
16156 #. type: textblock
16157 #: ../src/guestfs-actions.pod:5976 ../fish/guestfish-actions.pod:4042
16158 msgid ""
16159 "If C<network> is true, then the network is enabled in the libguestfs "
16160 "appliance.  The default is false."
16161 msgstr ""
16162
16163 #. type: textblock
16164 #: ../src/guestfs-actions.pod:5979 ../fish/guestfish-actions.pod:4045
16165 msgid ""
16166 "This affects whether commands are able to access the network (see L<guestfs"
16167 "(3)/RUNNING COMMANDS>)."
16168 msgstr ""
16169
16170 #. type: textblock
16171 #: ../src/guestfs-actions.pod:5982
16172 msgid ""
16173 "You must call this before calling C<guestfs_launch>, otherwise it has no "
16174 "effect."
16175 msgstr ""
16176
16177 #. type: =head2
16178 #: ../src/guestfs-actions.pod:5989
16179 msgid "guestfs_set_path"
16180 msgstr ""
16181
16182 #. type: verbatim
16183 #: ../src/guestfs-actions.pod:5991
16184 #, no-wrap
16185 msgid ""
16186 " int\n"
16187 " guestfs_set_path (guestfs_h *g,\n"
16188 "                   const char *searchpath);\n"
16189 "\n"
16190 msgstr ""
16191
16192 #. type: textblock
16193 #: ../src/guestfs-actions.pod:5995 ../fish/guestfish-actions.pod:4057
16194 msgid "Set the path that libguestfs searches for kernel and initrd.img."
16195 msgstr ""
16196
16197 #. type: textblock
16198 #: ../src/guestfs-actions.pod:5997 ../fish/guestfish-actions.pod:4059
16199 msgid ""
16200 "The default is C<$libdir/guestfs> unless overridden by setting "
16201 "C<LIBGUESTFS_PATH> environment variable."
16202 msgstr ""
16203
16204 #. type: textblock
16205 #: ../src/guestfs-actions.pod:6000 ../fish/guestfish-actions.pod:4062
16206 msgid "Setting C<path> to C<NULL> restores the default path."
16207 msgstr ""
16208
16209 #. type: =head2
16210 #: ../src/guestfs-actions.pod:6006
16211 msgid "guestfs_set_qemu"
16212 msgstr ""
16213
16214 #. type: verbatim
16215 #: ../src/guestfs-actions.pod:6008
16216 #, no-wrap
16217 msgid ""
16218 " int\n"
16219 " guestfs_set_qemu (guestfs_h *g,\n"
16220 "                   const char *qemu);\n"
16221 "\n"
16222 msgstr ""
16223
16224 #. type: textblock
16225 #: ../src/guestfs-actions.pod:6012 ../fish/guestfish-actions.pod:4070
16226 msgid "Set the qemu binary that we will use."
16227 msgstr ""
16228
16229 #. type: textblock
16230 #: ../src/guestfs-actions.pod:6014 ../fish/guestfish-actions.pod:4072
16231 msgid ""
16232 "The default is chosen when the library was compiled by the configure script."
16233 msgstr ""
16234
16235 #. type: textblock
16236 #: ../src/guestfs-actions.pod:6017 ../fish/guestfish-actions.pod:4075
16237 msgid ""
16238 "You can also override this by setting the C<LIBGUESTFS_QEMU> environment "
16239 "variable."
16240 msgstr ""
16241
16242 #. type: textblock
16243 #: ../src/guestfs-actions.pod:6020 ../fish/guestfish-actions.pod:4078
16244 msgid "Setting C<qemu> to C<NULL> restores the default qemu binary."
16245 msgstr ""
16246
16247 #. type: textblock
16248 #: ../src/guestfs-actions.pod:6022 ../fish/guestfish-actions.pod:4080
16249 msgid ""
16250 "Note that you should call this function as early as possible after creating "
16251 "the handle.  This is because some pre-launch operations depend on testing "
16252 "qemu features (by running C<qemu -help>).  If the qemu binary changes, we "
16253 "don't retest features, and so you might see inconsistent results.  Using the "
16254 "environment variable C<LIBGUESTFS_QEMU> is safest of all since that picks "
16255 "the qemu binary at the same time as the handle is created."
16256 msgstr ""
16257
16258 #. type: =head2
16259 #: ../src/guestfs-actions.pod:6034
16260 msgid "guestfs_set_recovery_proc"
16261 msgstr ""
16262
16263 #. type: verbatim
16264 #: ../src/guestfs-actions.pod:6036
16265 #, no-wrap
16266 msgid ""
16267 " int\n"
16268 " guestfs_set_recovery_proc (guestfs_h *g,\n"
16269 "                            int recoveryproc);\n"
16270 "\n"
16271 msgstr ""
16272
16273 #. type: textblock
16274 #: ../src/guestfs-actions.pod:6040
16275 msgid ""
16276 "If this is called with the parameter C<false> then C<guestfs_launch> does "
16277 "not create a recovery process.  The purpose of the recovery process is to "
16278 "stop runaway qemu processes in the case where the main program aborts "
16279 "abruptly."
16280 msgstr ""
16281
16282 #. type: textblock
16283 #: ../src/guestfs-actions.pod:6045
16284 msgid ""
16285 "This only has any effect if called before C<guestfs_launch>, and the default "
16286 "is true."
16287 msgstr ""
16288
16289 #. type: textblock
16290 #: ../src/guestfs-actions.pod:6048 ../fish/guestfish-actions.pod:4102
16291 msgid ""
16292 "About the only time when you would want to disable this is if the main "
16293 "process will fork itself into the background (\"daemonize\" itself).  In "
16294 "this case the recovery process thinks that the main program has disappeared "
16295 "and so kills qemu, which is not very helpful."
16296 msgstr ""
16297
16298 #. type: =head2
16299 #: ../src/guestfs-actions.pod:6058
16300 msgid "guestfs_set_selinux"
16301 msgstr ""
16302
16303 #. type: verbatim
16304 #: ../src/guestfs-actions.pod:6060
16305 #, no-wrap
16306 msgid ""
16307 " int\n"
16308 " guestfs_set_selinux (guestfs_h *g,\n"
16309 "                      int selinux);\n"
16310 "\n"
16311 msgstr ""
16312
16313 #. type: textblock
16314 #: ../src/guestfs-actions.pod:6064 ../fish/guestfish-actions.pod:4114
16315 msgid ""
16316 "This sets the selinux flag that is passed to the appliance at boot time.  "
16317 "The default is C<selinux=0> (disabled)."
16318 msgstr ""
16319
16320 #. type: textblock
16321 #: ../src/guestfs-actions.pod:6067 ../fish/guestfish-actions.pod:4117
16322 msgid ""
16323 "Note that if SELinux is enabled, it is always in Permissive mode "
16324 "(C<enforcing=0>)."
16325 msgstr ""
16326
16327 #. type: =head2
16328 #: ../src/guestfs-actions.pod:6077
16329 msgid "guestfs_set_trace"
16330 msgstr ""
16331
16332 #. type: verbatim
16333 #: ../src/guestfs-actions.pod:6079
16334 #, no-wrap
16335 msgid ""
16336 " int\n"
16337 " guestfs_set_trace (guestfs_h *g,\n"
16338 "                    int trace);\n"
16339 "\n"
16340 msgstr ""
16341
16342 #. type: textblock
16343 #: ../src/guestfs-actions.pod:6083 ../fish/guestfish-actions.pod:4129
16344 msgid ""
16345 "If the command trace flag is set to 1, then libguestfs calls, parameters and "
16346 "return values are traced."
16347 msgstr ""
16348
16349 #. type: textblock
16350 #: ../src/guestfs-actions.pod:6086 ../fish/guestfish-actions.pod:4132
16351 msgid ""
16352 "If you want to trace C API calls into libguestfs (and other libraries) then "
16353 "possibly a better way is to use the external ltrace(1) command."
16354 msgstr ""
16355
16356 #. type: textblock
16357 #: ../src/guestfs-actions.pod:6090 ../fish/guestfish-actions.pod:4136
16358 msgid ""
16359 "Command traces are disabled unless the environment variable "
16360 "C<LIBGUESTFS_TRACE> is defined and set to C<1>."
16361 msgstr ""
16362
16363 #. type: textblock
16364 #: ../src/guestfs-actions.pod:6093
16365 msgid ""
16366 "Trace messages are normally sent to C<stderr>, unless you register a "
16367 "callback to send them somewhere else (see C<guestfs_set_event_callback>)."
16368 msgstr ""
16369
16370 #. type: =head2
16371 #: ../src/guestfs-actions.pod:6101
16372 msgid "guestfs_set_verbose"
16373 msgstr ""
16374
16375 #. type: verbatim
16376 #: ../src/guestfs-actions.pod:6103
16377 #, no-wrap
16378 msgid ""
16379 " int\n"
16380 " guestfs_set_verbose (guestfs_h *g,\n"
16381 "                      int verbose);\n"
16382 "\n"
16383 msgstr ""
16384
16385 #. type: textblock
16386 #: ../src/guestfs-actions.pod:6107 ../fish/guestfish-actions.pod:4149
16387 msgid "If C<verbose> is true, this turns on verbose messages."
16388 msgstr ""
16389
16390 #. type: textblock
16391 #: ../src/guestfs-actions.pod:6109 ../fish/guestfish-actions.pod:4151
16392 msgid ""
16393 "Verbose messages are disabled unless the environment variable "
16394 "C<LIBGUESTFS_DEBUG> is defined and set to C<1>."
16395 msgstr ""
16396
16397 #. type: textblock
16398 #: ../src/guestfs-actions.pod:6112
16399 msgid ""
16400 "Verbose messages are normally sent to C<stderr>, unless you register a "
16401 "callback to send them somewhere else (see C<guestfs_set_event_callback>)."
16402 msgstr ""
16403
16404 #. type: =head2
16405 #: ../src/guestfs-actions.pod:6120
16406 msgid "guestfs_setcon"
16407 msgstr ""
16408
16409 #. type: verbatim
16410 #: ../src/guestfs-actions.pod:6122
16411 #, no-wrap
16412 msgid ""
16413 " int\n"
16414 " guestfs_setcon (guestfs_h *g,\n"
16415 "                 const char *context);\n"
16416 "\n"
16417 msgstr ""
16418
16419 #. type: textblock
16420 #: ../src/guestfs-actions.pod:6126 ../fish/guestfish-actions.pod:4162
16421 msgid ""
16422 "This sets the SELinux security context of the daemon to the string "
16423 "C<context>."
16424 msgstr ""
16425
16426 #. type: textblock
16427 #: ../src/guestfs-actions.pod:6129 ../fish/guestfish-actions.pod:4165
16428 msgid "See the documentation about SELINUX in L<guestfs(3)>."
16429 msgstr ""
16430
16431 #. type: =head2
16432 #: ../src/guestfs-actions.pod:6135
16433 msgid "guestfs_setxattr"
16434 msgstr ""
16435
16436 #. type: verbatim
16437 #: ../src/guestfs-actions.pod:6137
16438 #, no-wrap
16439 msgid ""
16440 " int\n"
16441 " guestfs_setxattr (guestfs_h *g,\n"
16442 "                   const char *xattr,\n"
16443 "                   const char *val,\n"
16444 "                   int vallen,\n"
16445 "                   const char *path);\n"
16446 "\n"
16447 msgstr ""
16448
16449 #. type: textblock
16450 #: ../src/guestfs-actions.pod:6144 ../fish/guestfish-actions.pod:4171
16451 msgid ""
16452 "This call sets the extended attribute named C<xattr> of the file C<path> to "
16453 "the value C<val> (of length C<vallen>).  The value is arbitrary 8 bit data."
16454 msgstr ""
16455
16456 #. type: textblock
16457 #: ../src/guestfs-actions.pod:6148
16458 msgid "See also: C<guestfs_lsetxattr>, L<attr(5)>."
16459 msgstr ""
16460
16461 #. type: =head2
16462 #: ../src/guestfs-actions.pod:6154
16463 msgid "guestfs_sfdisk"
16464 msgstr ""
16465
16466 #. type: verbatim
16467 #: ../src/guestfs-actions.pod:6156
16468 #, no-wrap
16469 msgid ""
16470 " int\n"
16471 " guestfs_sfdisk (guestfs_h *g,\n"
16472 "                 const char *device,\n"
16473 "                 int cyls,\n"
16474 "                 int heads,\n"
16475 "                 int sectors,\n"
16476 "                 char *const *lines);\n"
16477 "\n"
16478 msgstr ""
16479
16480 #. type: textblock
16481 #: ../src/guestfs-actions.pod:6164 ../fish/guestfish-actions.pod:4181
16482 msgid ""
16483 "This is a direct interface to the L<sfdisk(8)> program for creating "
16484 "partitions on block devices."
16485 msgstr ""
16486
16487 #. type: textblock
16488 #: ../src/guestfs-actions.pod:6167 ../fish/guestfish-actions.pod:4184
16489 msgid "C<device> should be a block device, for example C</dev/sda>."
16490 msgstr ""
16491
16492 #. type: textblock
16493 #: ../src/guestfs-actions.pod:6169 ../fish/guestfish-actions.pod:4186
16494 msgid ""
16495 "C<cyls>, C<heads> and C<sectors> are the number of cylinders, heads and "
16496 "sectors on the device, which are passed directly to sfdisk as the I<-C>, I<-"
16497 "H> and I<-S> parameters.  If you pass C<0> for any of these, then the "
16498 "corresponding parameter is omitted.  Usually for 'large' disks, you can just "
16499 "pass C<0> for these, but for small (floppy-sized) disks, sfdisk (or rather, "
16500 "the kernel) cannot work out the right geometry and you will need to tell it."
16501 msgstr ""
16502
16503 #. type: textblock
16504 #: ../src/guestfs-actions.pod:6177 ../fish/guestfish-actions.pod:4194
16505 msgid ""
16506 "C<lines> is a list of lines that we feed to C<sfdisk>.  For more information "
16507 "refer to the L<sfdisk(8)> manpage."
16508 msgstr ""
16509
16510 #. type: textblock
16511 #: ../src/guestfs-actions.pod:6180 ../fish/guestfish-actions.pod:4197
16512 msgid ""
16513 "To create a single partition occupying the whole disk, you would pass "
16514 "C<lines> as a single element list, when the single element being the string "
16515 "C<,> (comma)."
16516 msgstr ""
16517
16518 #. type: textblock
16519 #: ../src/guestfs-actions.pod:6184
16520 msgid ""
16521 "See also: C<guestfs_sfdisk_l>, C<guestfs_sfdisk_N>, C<guestfs_part_init>"
16522 msgstr ""
16523
16524 #. type: textblock
16525 #: ../src/guestfs-actions.pod:6192 ../src/guestfs-actions.pod:6222
16526 #: ../src/guestfs-actions.pod:6255
16527 msgid ""
16528 "This function is deprecated.  In new code, use the L</guestfs_part_add> call "
16529 "instead."
16530 msgstr ""
16531
16532 #. type: =head2
16533 #: ../src/guestfs-actions.pod:6201
16534 msgid "guestfs_sfdiskM"
16535 msgstr ""
16536
16537 #. type: verbatim
16538 #: ../src/guestfs-actions.pod:6203
16539 #, no-wrap
16540 msgid ""
16541 " int\n"
16542 " guestfs_sfdiskM (guestfs_h *g,\n"
16543 "                  const char *device,\n"
16544 "                  char *const *lines);\n"
16545 "\n"
16546 msgstr ""
16547
16548 #. type: textblock
16549 #: ../src/guestfs-actions.pod:6208
16550 msgid ""
16551 "This is a simplified interface to the C<guestfs_sfdisk> command, where "
16552 "partition sizes are specified in megabytes only (rounded to the nearest "
16553 "cylinder) and you don't need to specify the cyls, heads and sectors "
16554 "parameters which were rarely if ever used anyway."
16555 msgstr ""
16556
16557 #. type: textblock
16558 #: ../src/guestfs-actions.pod:6214
16559 msgid ""
16560 "See also: C<guestfs_sfdisk>, the L<sfdisk(8)> manpage and "
16561 "C<guestfs_part_disk>"
16562 msgstr ""
16563
16564 #. type: =head2
16565 #: ../src/guestfs-actions.pod:6231
16566 msgid "guestfs_sfdisk_N"
16567 msgstr ""
16568
16569 #. type: verbatim
16570 #: ../src/guestfs-actions.pod:6233
16571 #, no-wrap
16572 msgid ""
16573 " int\n"
16574 " guestfs_sfdisk_N (guestfs_h *g,\n"
16575 "                   const char *device,\n"
16576 "                   int partnum,\n"
16577 "                   int cyls,\n"
16578 "                   int heads,\n"
16579 "                   int sectors,\n"
16580 "                   const char *line);\n"
16581 "\n"
16582 msgstr ""
16583
16584 #. type: textblock
16585 #: ../src/guestfs-actions.pod:6242 ../fish/guestfish-actions.pod:4241
16586 msgid ""
16587 "This runs L<sfdisk(8)> option to modify just the single partition C<n> "
16588 "(note: C<n> counts from 1)."
16589 msgstr ""
16590
16591 #. type: textblock
16592 #: ../src/guestfs-actions.pod:6245
16593 msgid ""
16594 "For other parameters, see C<guestfs_sfdisk>.  You should usually pass C<0> "
16595 "for the cyls/heads/sectors parameters."
16596 msgstr ""
16597
16598 #. type: textblock
16599 #: ../src/guestfs-actions.pod:6248
16600 msgid "See also: C<guestfs_part_add>"
16601 msgstr ""
16602
16603 #. type: =head2
16604 #: ../src/guestfs-actions.pod:6264
16605 msgid "guestfs_sfdisk_disk_geometry"
16606 msgstr ""
16607
16608 #. type: verbatim
16609 #: ../src/guestfs-actions.pod:6266
16610 #, no-wrap
16611 msgid ""
16612 " char *\n"
16613 " guestfs_sfdisk_disk_geometry (guestfs_h *g,\n"
16614 "                               const char *device);\n"
16615 "\n"
16616 msgstr ""
16617
16618 #. type: textblock
16619 #: ../src/guestfs-actions.pod:6270
16620 msgid ""
16621 "This displays the disk geometry of C<device> read from the partition table.  "
16622 "Especially in the case where the underlying block device has been resized, "
16623 "this can be different from the kernel's idea of the geometry (see "
16624 "C<guestfs_sfdisk_kernel_geometry>)."
16625 msgstr ""
16626
16627 #. type: textblock
16628 #: ../src/guestfs-actions.pod:6275 ../src/guestfs-actions.pod:6291
16629 #: ../fish/guestfish-actions.pod:4268 ../fish/guestfish-actions.pod:4277
16630 msgid "The result is in human-readable format, and not designed to be parsed."
16631 msgstr ""
16632
16633 #. type: =head2
16634 #: ../src/guestfs-actions.pod:6283
16635 msgid "guestfs_sfdisk_kernel_geometry"
16636 msgstr ""
16637
16638 #. type: verbatim
16639 #: ../src/guestfs-actions.pod:6285
16640 #, no-wrap
16641 msgid ""
16642 " char *\n"
16643 " guestfs_sfdisk_kernel_geometry (guestfs_h *g,\n"
16644 "                                 const char *device);\n"
16645 "\n"
16646 msgstr ""
16647
16648 #. type: textblock
16649 #: ../src/guestfs-actions.pod:6289 ../fish/guestfish-actions.pod:4275
16650 msgid "This displays the kernel's idea of the geometry of C<device>."
16651 msgstr ""
16652
16653 #. type: =head2
16654 #: ../src/guestfs-actions.pod:6299
16655 msgid "guestfs_sfdisk_l"
16656 msgstr ""
16657
16658 #. type: verbatim
16659 #: ../src/guestfs-actions.pod:6301
16660 #, no-wrap
16661 msgid ""
16662 " char *\n"
16663 " guestfs_sfdisk_l (guestfs_h *g,\n"
16664 "                   const char *device);\n"
16665 "\n"
16666 msgstr ""
16667
16668 #. type: textblock
16669 #: ../src/guestfs-actions.pod:6305 ../fish/guestfish-actions.pod:4284
16670 msgid ""
16671 "This displays the partition table on C<device>, in the human-readable output "
16672 "of the L<sfdisk(8)> command.  It is not intended to be parsed."
16673 msgstr ""
16674
16675 #. type: textblock
16676 #: ../src/guestfs-actions.pod:6309
16677 msgid "See also: C<guestfs_part_list>"
16678 msgstr ""
16679
16680 #. type: textblock
16681 #: ../src/guestfs-actions.pod:6314
16682 msgid ""
16683 "This function is deprecated.  In new code, use the L</guestfs_part_list> "
16684 "call instead."
16685 msgstr ""
16686
16687 #. type: =head2
16688 #: ../src/guestfs-actions.pod:6323
16689 msgid "guestfs_sh"
16690 msgstr ""
16691
16692 #. type: verbatim
16693 #: ../src/guestfs-actions.pod:6325
16694 #, no-wrap
16695 msgid ""
16696 " char *\n"
16697 " guestfs_sh (guestfs_h *g,\n"
16698 "             const char *command);\n"
16699 "\n"
16700 msgstr ""
16701
16702 #. type: textblock
16703 #: ../src/guestfs-actions.pod:6329 ../fish/guestfish-actions.pod:4301
16704 msgid ""
16705 "This call runs a command from the guest filesystem via the guest's C</bin/"
16706 "sh>."
16707 msgstr ""
16708
16709 #. type: textblock
16710 #: ../src/guestfs-actions.pod:6332
16711 msgid "This is like C<guestfs_command>, but passes the command to:"
16712 msgstr ""
16713
16714 #. type: verbatim
16715 #: ../src/guestfs-actions.pod:6334 ../fish/guestfish-actions.pod:4306
16716 #, no-wrap
16717 msgid ""
16718 " /bin/sh -c \"command\"\n"
16719 "\n"
16720 msgstr ""
16721
16722 #. type: textblock
16723 #: ../src/guestfs-actions.pod:6336 ../fish/guestfish-actions.pod:4308
16724 msgid ""
16725 "Depending on the guest's shell, this usually results in wildcards being "
16726 "expanded, shell expressions being interpolated and so on."
16727 msgstr ""
16728
16729 #. type: textblock
16730 #: ../src/guestfs-actions.pod:6340
16731 msgid "All the provisos about C<guestfs_command> apply to this call."
16732 msgstr ""
16733
16734 #. type: =head2
16735 #: ../src/guestfs-actions.pod:6347
16736 msgid "guestfs_sh_lines"
16737 msgstr ""
16738
16739 #. type: verbatim
16740 #: ../src/guestfs-actions.pod:6349
16741 #, no-wrap
16742 msgid ""
16743 " char **\n"
16744 " guestfs_sh_lines (guestfs_h *g,\n"
16745 "                   const char *command);\n"
16746 "\n"
16747 msgstr ""
16748
16749 #. type: textblock
16750 #: ../src/guestfs-actions.pod:6353
16751 msgid ""
16752 "This is the same as C<guestfs_sh>, but splits the result into a list of "
16753 "lines."
16754 msgstr ""
16755
16756 #. type: textblock
16757 #: ../src/guestfs-actions.pod:6356
16758 msgid "See also: C<guestfs_command_lines>"
16759 msgstr ""
16760
16761 #. type: =head2
16762 #: ../src/guestfs-actions.pod:6364
16763 msgid "guestfs_sleep"
16764 msgstr ""
16765
16766 #. type: verbatim
16767 #: ../src/guestfs-actions.pod:6366
16768 #, no-wrap
16769 msgid ""
16770 " int\n"
16771 " guestfs_sleep (guestfs_h *g,\n"
16772 "                int secs);\n"
16773 "\n"
16774 msgstr ""
16775
16776 #. type: textblock
16777 #: ../src/guestfs-actions.pod:6370 ../fish/guestfish-actions.pod:4327
16778 msgid "Sleep for C<secs> seconds."
16779 msgstr ""
16780
16781 #. type: textblock
16782 #: ../src/guestfs-actions.pod:6374
16783 msgid "(Added in 1.0.41)"
16784 msgstr ""
16785
16786 #. type: =head2
16787 #: ../src/guestfs-actions.pod:6376 ../src/guestfs-structs.pod:109
16788 msgid "guestfs_stat"
16789 msgstr ""
16790
16791 #. type: verbatim
16792 #: ../src/guestfs-actions.pod:6378
16793 #, no-wrap
16794 msgid ""
16795 " struct guestfs_stat *\n"
16796 " guestfs_stat (guestfs_h *g,\n"
16797 "               const char *path);\n"
16798 "\n"
16799 msgstr ""
16800
16801 #. type: textblock
16802 #: ../src/guestfs-actions.pod:6384 ../fish/guestfish-actions.pod:4335
16803 msgid "This is the same as the C<stat(2)> system call."
16804 msgstr ""
16805
16806 #. type: =head2
16807 #: ../src/guestfs-actions.pod:6392 ../src/guestfs-structs.pod:135
16808 msgid "guestfs_statvfs"
16809 msgstr ""
16810
16811 #. type: verbatim
16812 #: ../src/guestfs-actions.pod:6394
16813 #, no-wrap
16814 msgid ""
16815 " struct guestfs_statvfs *\n"
16816 " guestfs_statvfs (guestfs_h *g,\n"
16817 "                  const char *path);\n"
16818 "\n"
16819 msgstr ""
16820
16821 #. type: textblock
16822 #: ../src/guestfs-actions.pod:6398 ../fish/guestfish-actions.pod:4341
16823 msgid ""
16824 "Returns file system statistics for any mounted file system.  C<path> should "
16825 "be a file or directory in the mounted file system (typically it is the mount "
16826 "point itself, but it doesn't need to be)."
16827 msgstr ""
16828
16829 #. type: textblock
16830 #: ../src/guestfs-actions.pod:6402 ../fish/guestfish-actions.pod:4345
16831 msgid "This is the same as the C<statvfs(2)> system call."
16832 msgstr ""
16833
16834 #. type: textblock
16835 #: ../src/guestfs-actions.pod:6404
16836 msgid ""
16837 "This function returns a C<struct guestfs_statvfs *>, or NULL if there was an "
16838 "error.  I<The caller must call C<guestfs_free_statvfs> after use>."
16839 msgstr ""
16840
16841 #. type: =head2
16842 #: ../src/guestfs-actions.pod:6410
16843 msgid "guestfs_strings"
16844 msgstr ""
16845
16846 #. type: verbatim
16847 #: ../src/guestfs-actions.pod:6412
16848 #, no-wrap
16849 msgid ""
16850 " char **\n"
16851 " guestfs_strings (guestfs_h *g,\n"
16852 "                  const char *path);\n"
16853 "\n"
16854 msgstr ""
16855
16856 #. type: textblock
16857 #: ../src/guestfs-actions.pod:6416 ../fish/guestfish-actions.pod:4351
16858 msgid ""
16859 "This runs the L<strings(1)> command on a file and returns the list of "
16860 "printable strings found."
16861 msgstr ""
16862
16863 #. type: =head2
16864 #: ../src/guestfs-actions.pod:6428
16865 msgid "guestfs_strings_e"
16866 msgstr ""
16867
16868 #. type: verbatim
16869 #: ../src/guestfs-actions.pod:6430
16870 #, no-wrap
16871 msgid ""
16872 " char **\n"
16873 " guestfs_strings_e (guestfs_h *g,\n"
16874 "                    const char *encoding,\n"
16875 "                    const char *path);\n"
16876 "\n"
16877 msgstr ""
16878
16879 #. type: textblock
16880 #: ../src/guestfs-actions.pod:6435
16881 msgid ""
16882 "This is like the C<guestfs_strings> command, but allows you to specify the "
16883 "encoding of strings that are looked for in the source file C<path>."
16884 msgstr ""
16885
16886 #. type: textblock
16887 #: ../src/guestfs-actions.pod:6439 ../fish/guestfish-actions.pod:4365
16888 msgid "Allowed encodings are:"
16889 msgstr ""
16890
16891 #. type: =item
16892 #: ../src/guestfs-actions.pod:6443 ../fish/guestfish-actions.pod:4369
16893 msgid "s"
16894 msgstr ""
16895
16896 #. type: textblock
16897 #: ../src/guestfs-actions.pod:6445
16898 msgid ""
16899 "Single 7-bit-byte characters like ASCII and the ASCII-compatible parts of "
16900 "ISO-8859-X (this is what C<guestfs_strings> uses)."
16901 msgstr ""
16902
16903 #. type: =item
16904 #: ../src/guestfs-actions.pod:6448 ../fish/guestfish-actions.pod:4374
16905 msgid "S"
16906 msgstr ""
16907
16908 #. type: textblock
16909 #: ../src/guestfs-actions.pod:6450 ../fish/guestfish-actions.pod:4376
16910 msgid "Single 8-bit-byte characters."
16911 msgstr ""
16912
16913 #. type: =item
16914 #: ../src/guestfs-actions.pod:6452 ../fish/guestfish-actions.pod:4378
16915 msgid "b"
16916 msgstr ""
16917
16918 #. type: textblock
16919 #: ../src/guestfs-actions.pod:6454 ../fish/guestfish-actions.pod:4380
16920 msgid "16-bit big endian strings such as those encoded in UTF-16BE or UCS-2BE."
16921 msgstr ""
16922
16923 #. type: =item
16924 #: ../src/guestfs-actions.pod:6457 ../fish/guestfish-actions.pod:4383
16925 msgid "l (lower case letter L)"
16926 msgstr ""
16927
16928 #. type: textblock
16929 #: ../src/guestfs-actions.pod:6459 ../fish/guestfish-actions.pod:4385
16930 msgid ""
16931 "16-bit little endian such as UTF-16LE and UCS-2LE.  This is useful for "
16932 "examining binaries in Windows guests."
16933 msgstr ""
16934
16935 #. type: =item
16936 #: ../src/guestfs-actions.pod:6462 ../fish/guestfish-actions.pod:4388
16937 msgid "B"
16938 msgstr ""
16939
16940 #. type: textblock
16941 #: ../src/guestfs-actions.pod:6464 ../fish/guestfish-actions.pod:4390
16942 msgid "32-bit big endian such as UCS-4BE."
16943 msgstr ""
16944
16945 #. type: =item
16946 #: ../src/guestfs-actions.pod:6466 ../fish/guestfish-actions.pod:4392
16947 msgid "L"
16948 msgstr ""
16949
16950 #. type: textblock
16951 #: ../src/guestfs-actions.pod:6468 ../fish/guestfish-actions.pod:4394
16952 msgid "32-bit little endian such as UCS-4LE."
16953 msgstr ""
16954
16955 #. type: textblock
16956 #: ../src/guestfs-actions.pod:6472 ../fish/guestfish-actions.pod:4398
16957 msgid "The returned strings are transcoded to UTF-8."
16958 msgstr ""
16959
16960 #. type: =head2
16961 #: ../src/guestfs-actions.pod:6483
16962 msgid "guestfs_swapoff_device"
16963 msgstr ""
16964
16965 #. type: verbatim
16966 #: ../src/guestfs-actions.pod:6485
16967 #, no-wrap
16968 msgid ""
16969 " int\n"
16970 " guestfs_swapoff_device (guestfs_h *g,\n"
16971 "                         const char *device);\n"
16972 "\n"
16973 msgstr ""
16974
16975 #. type: textblock
16976 #: ../src/guestfs-actions.pod:6489
16977 msgid ""
16978 "This command disables the libguestfs appliance swap device or partition "
16979 "named C<device>.  See C<guestfs_swapon_device>."
16980 msgstr ""
16981
16982 #. type: =head2
16983 #: ../src/guestfs-actions.pod:6497
16984 msgid "guestfs_swapoff_file"
16985 msgstr ""
16986
16987 #. type: verbatim
16988 #: ../src/guestfs-actions.pod:6499
16989 #, no-wrap
16990 msgid ""
16991 " int\n"
16992 " guestfs_swapoff_file (guestfs_h *g,\n"
16993 "                       const char *file);\n"
16994 "\n"
16995 msgstr ""
16996
16997 #. type: textblock
16998 #: ../src/guestfs-actions.pod:6503 ../fish/guestfish-actions.pod:4415
16999 msgid "This command disables the libguestfs appliance swap on file."
17000 msgstr ""
17001
17002 #. type: =head2
17003 #: ../src/guestfs-actions.pod:6509
17004 msgid "guestfs_swapoff_label"
17005 msgstr ""
17006
17007 #. type: verbatim
17008 #: ../src/guestfs-actions.pod:6511
17009 #, no-wrap
17010 msgid ""
17011 " int\n"
17012 " guestfs_swapoff_label (guestfs_h *g,\n"
17013 "                        const char *label);\n"
17014 "\n"
17015 msgstr ""
17016
17017 #. type: textblock
17018 #: ../src/guestfs-actions.pod:6515 ../fish/guestfish-actions.pod:4421
17019 msgid ""
17020 "This command disables the libguestfs appliance swap on labeled swap "
17021 "partition."
17022 msgstr ""
17023
17024 #. type: =head2
17025 #: ../src/guestfs-actions.pod:6522
17026 msgid "guestfs_swapoff_uuid"
17027 msgstr ""
17028
17029 #. type: verbatim
17030 #: ../src/guestfs-actions.pod:6524
17031 #, no-wrap
17032 msgid ""
17033 " int\n"
17034 " guestfs_swapoff_uuid (guestfs_h *g,\n"
17035 "                       const char *uuid);\n"
17036 "\n"
17037 msgstr ""
17038
17039 #. type: textblock
17040 #: ../src/guestfs-actions.pod:6528 ../fish/guestfish-actions.pod:4428
17041 msgid ""
17042 "This command disables the libguestfs appliance swap partition with the given "
17043 "UUID."
17044 msgstr ""
17045
17046 #. type: =head2
17047 #: ../src/guestfs-actions.pod:6535
17048 msgid "guestfs_swapon_device"
17049 msgstr ""
17050
17051 #. type: verbatim
17052 #: ../src/guestfs-actions.pod:6537
17053 #, no-wrap
17054 msgid ""
17055 " int\n"
17056 " guestfs_swapon_device (guestfs_h *g,\n"
17057 "                        const char *device);\n"
17058 "\n"
17059 msgstr ""
17060
17061 #. type: textblock
17062 #: ../src/guestfs-actions.pod:6541
17063 msgid ""
17064 "This command enables the libguestfs appliance to use the swap device or "
17065 "partition named C<device>.  The increased memory is made available for all "
17066 "commands, for example those run using C<guestfs_command> or C<guestfs_sh>."
17067 msgstr ""
17068
17069 #. type: textblock
17070 #: ../src/guestfs-actions.pod:6546 ../fish/guestfish-actions.pod:4440
17071 msgid ""
17072 "Note that you should not swap to existing guest swap partitions unless you "
17073 "know what you are doing.  They may contain hibernation information, or other "
17074 "information that the guest doesn't want you to trash.  You also risk leaking "
17075 "information about the host to the guest this way.  Instead, attach a new "
17076 "host device to the guest and swap on that."
17077 msgstr ""
17078
17079 #. type: =head2
17080 #: ../src/guestfs-actions.pod:6557
17081 msgid "guestfs_swapon_file"
17082 msgstr ""
17083
17084 #. type: verbatim
17085 #: ../src/guestfs-actions.pod:6559
17086 #, no-wrap
17087 msgid ""
17088 " int\n"
17089 " guestfs_swapon_file (guestfs_h *g,\n"
17090 "                      const char *file);\n"
17091 "\n"
17092 msgstr ""
17093
17094 #. type: textblock
17095 #: ../src/guestfs-actions.pod:6563
17096 msgid ""
17097 "This command enables swap to a file.  See C<guestfs_swapon_device> for other "
17098 "notes."
17099 msgstr ""
17100
17101 #. type: =head2
17102 #: ../src/guestfs-actions.pod:6570
17103 msgid "guestfs_swapon_label"
17104 msgstr ""
17105
17106 #. type: verbatim
17107 #: ../src/guestfs-actions.pod:6572
17108 #, no-wrap
17109 msgid ""
17110 " int\n"
17111 " guestfs_swapon_label (guestfs_h *g,\n"
17112 "                       const char *label);\n"
17113 "\n"
17114 msgstr ""
17115
17116 #. type: textblock
17117 #: ../src/guestfs-actions.pod:6576
17118 msgid ""
17119 "This command enables swap to a labeled swap partition.  See "
17120 "C<guestfs_swapon_device> for other notes."
17121 msgstr ""
17122
17123 #. type: =head2
17124 #: ../src/guestfs-actions.pod:6583
17125 msgid "guestfs_swapon_uuid"
17126 msgstr ""
17127
17128 #. type: verbatim
17129 #: ../src/guestfs-actions.pod:6585
17130 #, no-wrap
17131 msgid ""
17132 " int\n"
17133 " guestfs_swapon_uuid (guestfs_h *g,\n"
17134 "                      const char *uuid);\n"
17135 "\n"
17136 msgstr ""
17137
17138 #. type: textblock
17139 #: ../src/guestfs-actions.pod:6589
17140 msgid ""
17141 "This command enables swap to a swap partition with the given UUID.  See "
17142 "C<guestfs_swapon_device> for other notes."
17143 msgstr ""
17144
17145 #. type: =head2
17146 #: ../src/guestfs-actions.pod:6596
17147 msgid "guestfs_sync"
17148 msgstr ""
17149
17150 #. type: verbatim
17151 #: ../src/guestfs-actions.pod:6598
17152 #, no-wrap
17153 msgid ""
17154 " int\n"
17155 " guestfs_sync (guestfs_h *g);\n"
17156 "\n"
17157 msgstr ""
17158
17159 #. type: textblock
17160 #: ../src/guestfs-actions.pod:6601 ../fish/guestfish-actions.pod:4472
17161 msgid ""
17162 "This syncs the disk, so that any writes are flushed through to the "
17163 "underlying disk image."
17164 msgstr ""
17165
17166 #. type: textblock
17167 #: ../src/guestfs-actions.pod:6604 ../fish/guestfish-actions.pod:4475
17168 msgid ""
17169 "You should always call this if you have modified a disk image, before "
17170 "closing the handle."
17171 msgstr ""
17172
17173 #. type: =head2
17174 #: ../src/guestfs-actions.pod:6611
17175 msgid "guestfs_tail"
17176 msgstr ""
17177
17178 #. type: verbatim
17179 #: ../src/guestfs-actions.pod:6613
17180 #, no-wrap
17181 msgid ""
17182 " char **\n"
17183 " guestfs_tail (guestfs_h *g,\n"
17184 "               const char *path);\n"
17185 "\n"
17186 msgstr ""
17187
17188 #. type: textblock
17189 #: ../src/guestfs-actions.pod:6617 ../fish/guestfish-actions.pod:4482
17190 msgid ""
17191 "This command returns up to the last 10 lines of a file as a list of strings."
17192 msgstr ""
17193
17194 #. type: =head2
17195 #: ../src/guestfs-actions.pod:6629
17196 msgid "guestfs_tail_n"
17197 msgstr ""
17198
17199 #. type: verbatim
17200 #: ../src/guestfs-actions.pod:6631
17201 #, no-wrap
17202 msgid ""
17203 " char **\n"
17204 " guestfs_tail_n (guestfs_h *g,\n"
17205 "                 int nrlines,\n"
17206 "                 const char *path);\n"
17207 "\n"
17208 msgstr ""
17209
17210 #. type: textblock
17211 #: ../src/guestfs-actions.pod:6636 ../fish/guestfish-actions.pod:4492
17212 msgid ""
17213 "If the parameter C<nrlines> is a positive number, this returns the last "
17214 "C<nrlines> lines of the file C<path>."
17215 msgstr ""
17216
17217 #. type: textblock
17218 #: ../src/guestfs-actions.pod:6639 ../fish/guestfish-actions.pod:4495
17219 msgid ""
17220 "If the parameter C<nrlines> is a negative number, this returns lines from "
17221 "the file C<path>, starting with the C<-nrlines>th line."
17222 msgstr ""
17223
17224 #. type: =head2
17225 #: ../src/guestfs-actions.pod:6653
17226 msgid "guestfs_tar_in"
17227 msgstr ""
17228
17229 #. type: verbatim
17230 #: ../src/guestfs-actions.pod:6655
17231 #, no-wrap
17232 msgid ""
17233 " int\n"
17234 " guestfs_tar_in (guestfs_h *g,\n"
17235 "                 const char *tarfile,\n"
17236 "                 const char *directory);\n"
17237 "\n"
17238 msgstr ""
17239
17240 #. type: textblock
17241 #: ../src/guestfs-actions.pod:6660 ../fish/guestfish-actions.pod:4507
17242 msgid ""
17243 "This command uploads and unpacks local file C<tarfile> (an I<uncompressed> "
17244 "tar file) into C<directory>."
17245 msgstr ""
17246
17247 #. type: textblock
17248 #: ../src/guestfs-actions.pod:6663
17249 msgid ""
17250 "To upload a compressed tarball, use C<guestfs_tgz_in> or C<guestfs_txz_in>."
17251 msgstr ""
17252
17253 #. type: textblock
17254 #: ../src/guestfs-actions.pod:6668 ../src/guestfs-actions.pod:6685
17255 #: ../src/guestfs-actions.pod:6701 ../src/guestfs-actions.pod:6717
17256 msgid "(Added in 1.0.3)"
17257 msgstr ""
17258
17259 #. type: =head2
17260 #: ../src/guestfs-actions.pod:6670
17261 msgid "guestfs_tar_out"
17262 msgstr ""
17263
17264 #. type: verbatim
17265 #: ../src/guestfs-actions.pod:6672
17266 #, no-wrap
17267 msgid ""
17268 " int\n"
17269 " guestfs_tar_out (guestfs_h *g,\n"
17270 "                  const char *directory,\n"
17271 "                  const char *tarfile);\n"
17272 "\n"
17273 msgstr ""
17274
17275 #. type: textblock
17276 #: ../src/guestfs-actions.pod:6677 ../fish/guestfish-actions.pod:4519
17277 msgid ""
17278 "This command packs the contents of C<directory> and downloads it to local "
17279 "file C<tarfile>."
17280 msgstr ""
17281
17282 #. type: textblock
17283 #: ../src/guestfs-actions.pod:6680
17284 msgid ""
17285 "To download a compressed tarball, use C<guestfs_tgz_out> or "
17286 "C<guestfs_txz_out>."
17287 msgstr ""
17288
17289 #. type: =head2
17290 #: ../src/guestfs-actions.pod:6687
17291 msgid "guestfs_tgz_in"
17292 msgstr ""
17293
17294 #. type: verbatim
17295 #: ../src/guestfs-actions.pod:6689
17296 #, no-wrap
17297 msgid ""
17298 " int\n"
17299 " guestfs_tgz_in (guestfs_h *g,\n"
17300 "                 const char *tarball,\n"
17301 "                 const char *directory);\n"
17302 "\n"
17303 msgstr ""
17304
17305 #. type: textblock
17306 #: ../src/guestfs-actions.pod:6694 ../fish/guestfish-actions.pod:4531
17307 msgid ""
17308 "This command uploads and unpacks local file C<tarball> (a I<gzip compressed> "
17309 "tar file) into C<directory>."
17310 msgstr ""
17311
17312 #. type: textblock
17313 #: ../src/guestfs-actions.pod:6697
17314 msgid "To upload an uncompressed tarball, use C<guestfs_tar_in>."
17315 msgstr ""
17316
17317 #. type: =head2
17318 #: ../src/guestfs-actions.pod:6703
17319 msgid "guestfs_tgz_out"
17320 msgstr ""
17321
17322 #. type: verbatim
17323 #: ../src/guestfs-actions.pod:6705
17324 #, no-wrap
17325 msgid ""
17326 " int\n"
17327 " guestfs_tgz_out (guestfs_h *g,\n"
17328 "                  const char *directory,\n"
17329 "                  const char *tarball);\n"
17330 "\n"
17331 msgstr ""
17332
17333 #. type: textblock
17334 #: ../src/guestfs-actions.pod:6710 ../fish/guestfish-actions.pod:4542
17335 msgid ""
17336 "This command packs the contents of C<directory> and downloads it to local "
17337 "file C<tarball>."
17338 msgstr ""
17339
17340 #. type: textblock
17341 #: ../src/guestfs-actions.pod:6713
17342 msgid "To download an uncompressed tarball, use C<guestfs_tar_out>."
17343 msgstr ""
17344
17345 #. type: =head2
17346 #: ../src/guestfs-actions.pod:6719
17347 msgid "guestfs_touch"
17348 msgstr ""
17349
17350 #. type: verbatim
17351 #: ../src/guestfs-actions.pod:6721
17352 #, no-wrap
17353 msgid ""
17354 " int\n"
17355 " guestfs_touch (guestfs_h *g,\n"
17356 "                const char *path);\n"
17357 "\n"
17358 msgstr ""
17359
17360 #. type: textblock
17361 #: ../src/guestfs-actions.pod:6725 ../fish/guestfish-actions.pod:4553
17362 msgid ""
17363 "Touch acts like the L<touch(1)> command.  It can be used to update the "
17364 "timestamps on a file, or, if the file does not exist, to create a new zero-"
17365 "length file."
17366 msgstr ""
17367
17368 #. type: textblock
17369 #: ../src/guestfs-actions.pod:6729 ../fish/guestfish-actions.pod:4557
17370 msgid ""
17371 "This command only works on regular files, and will fail on other file types "
17372 "such as directories, symbolic links, block special etc."
17373 msgstr ""
17374
17375 #. type: =head2
17376 #: ../src/guestfs-actions.pod:6736
17377 msgid "guestfs_truncate"
17378 msgstr ""
17379
17380 #. type: verbatim
17381 #: ../src/guestfs-actions.pod:6738
17382 #, no-wrap
17383 msgid ""
17384 " int\n"
17385 " guestfs_truncate (guestfs_h *g,\n"
17386 "                   const char *path);\n"
17387 "\n"
17388 msgstr ""
17389
17390 #. type: textblock
17391 #: ../src/guestfs-actions.pod:6742 ../fish/guestfish-actions.pod:4564
17392 msgid ""
17393 "This command truncates C<path> to a zero-length file.  The file must exist "
17394 "already."
17395 msgstr ""
17396
17397 #. type: =head2
17398 #: ../src/guestfs-actions.pod:6749
17399 msgid "guestfs_truncate_size"
17400 msgstr ""
17401
17402 #. type: verbatim
17403 #: ../src/guestfs-actions.pod:6751
17404 #, no-wrap
17405 msgid ""
17406 " int\n"
17407 " guestfs_truncate_size (guestfs_h *g,\n"
17408 "                        const char *path,\n"
17409 "                        int64_t size);\n"
17410 "\n"
17411 msgstr ""
17412
17413 #. type: textblock
17414 #: ../src/guestfs-actions.pod:6756 ../fish/guestfish-actions.pod:4571
17415 msgid ""
17416 "This command truncates C<path> to size C<size> bytes.  The file must exist "
17417 "already."
17418 msgstr ""
17419
17420 #. type: textblock
17421 #: ../src/guestfs-actions.pod:6759
17422 msgid ""
17423 "If the current file size is less than C<size> then the file is extended to "
17424 "the required size with zero bytes.  This creates a sparse file (ie. disk "
17425 "blocks are not allocated for the file until you write to it).  To create a "
17426 "non-sparse file of zeroes, use C<guestfs_fallocate64> instead."
17427 msgstr ""
17428
17429 #. type: =head2
17430 #: ../src/guestfs-actions.pod:6769
17431 msgid "guestfs_tune2fs_l"
17432 msgstr ""
17433
17434 #. type: verbatim
17435 #: ../src/guestfs-actions.pod:6771
17436 #, no-wrap
17437 msgid ""
17438 " char **\n"
17439 " guestfs_tune2fs_l (guestfs_h *g,\n"
17440 "                    const char *device);\n"
17441 "\n"
17442 msgstr ""
17443
17444 #. type: textblock
17445 #: ../src/guestfs-actions.pod:6775 ../fish/guestfish-actions.pod:4584
17446 msgid ""
17447 "This returns the contents of the ext2, ext3 or ext4 filesystem superblock on "
17448 "C<device>."
17449 msgstr ""
17450
17451 #. type: textblock
17452 #: ../src/guestfs-actions.pod:6778 ../fish/guestfish-actions.pod:4587
17453 msgid ""
17454 "It is the same as running C<tune2fs -l device>.  See L<tune2fs(8)> manpage "
17455 "for more details.  The list of fields returned isn't clearly defined, and "
17456 "depends on both the version of C<tune2fs> that libguestfs was built against, "
17457 "and the filesystem itself."
17458 msgstr ""
17459
17460 #. type: =head2
17461 #: ../src/guestfs-actions.pod:6791
17462 msgid "guestfs_txz_in"
17463 msgstr ""
17464
17465 #. type: verbatim
17466 #: ../src/guestfs-actions.pod:6793
17467 #, no-wrap
17468 msgid ""
17469 " int\n"
17470 " guestfs_txz_in (guestfs_h *g,\n"
17471 "                 const char *tarball,\n"
17472 "                 const char *directory);\n"
17473 "\n"
17474 msgstr ""
17475
17476 #. type: textblock
17477 #: ../src/guestfs-actions.pod:6798 ../fish/guestfish-actions.pod:4596
17478 msgid ""
17479 "This command uploads and unpacks local file C<tarball> (an I<xz compressed> "
17480 "tar file) into C<directory>."
17481 msgstr ""
17482
17483 #. type: =head2
17484 #: ../src/guestfs-actions.pod:6805
17485 msgid "guestfs_txz_out"
17486 msgstr ""
17487
17488 #. type: verbatim
17489 #: ../src/guestfs-actions.pod:6807
17490 #, no-wrap
17491 msgid ""
17492 " int\n"
17493 " guestfs_txz_out (guestfs_h *g,\n"
17494 "                  const char *directory,\n"
17495 "                  const char *tarball);\n"
17496 "\n"
17497 msgstr ""
17498
17499 #. type: textblock
17500 #: ../src/guestfs-actions.pod:6812 ../fish/guestfish-actions.pod:4605
17501 msgid ""
17502 "This command packs the contents of C<directory> and downloads it to local "
17503 "file C<tarball> (as an xz compressed tar archive)."
17504 msgstr ""
17505
17506 #. type: =head2
17507 #: ../src/guestfs-actions.pod:6819
17508 msgid "guestfs_umask"
17509 msgstr ""
17510
17511 #. type: verbatim
17512 #: ../src/guestfs-actions.pod:6821
17513 #, no-wrap
17514 msgid ""
17515 " int\n"
17516 " guestfs_umask (guestfs_h *g,\n"
17517 "                int mask);\n"
17518 "\n"
17519 msgstr ""
17520
17521 #. type: textblock
17522 #: ../src/guestfs-actions.pod:6825 ../fish/guestfish-actions.pod:4614
17523 msgid ""
17524 "This function sets the mask used for creating new files and device nodes to "
17525 "C<mask & 0777>."
17526 msgstr ""
17527
17528 #. type: textblock
17529 #: ../src/guestfs-actions.pod:6828 ../fish/guestfish-actions.pod:4617
17530 msgid ""
17531 "Typical umask values would be C<022> which creates new files with "
17532 "permissions like \"-rw-r--r--\" or \"-rwxr-xr-x\", and C<002> which creates "
17533 "new files with permissions like \"-rw-rw-r--\" or \"-rwxrwxr-x\"."
17534 msgstr ""
17535
17536 #. type: textblock
17537 #: ../src/guestfs-actions.pod:6833 ../fish/guestfish-actions.pod:4622
17538 msgid ""
17539 "The default umask is C<022>.  This is important because it means that "
17540 "directories and device nodes will be created with C<0644> or C<0755> mode "
17541 "even if you specify C<0777>."
17542 msgstr ""
17543
17544 #. type: textblock
17545 #: ../src/guestfs-actions.pod:6837
17546 msgid ""
17547 "See also C<guestfs_get_umask>, L<umask(2)>, C<guestfs_mknod>, "
17548 "C<guestfs_mkdir>."
17549 msgstr ""
17550
17551 #. type: textblock
17552 #: ../src/guestfs-actions.pod:6840 ../fish/guestfish-actions.pod:4629
17553 msgid "This call returns the previous umask."
17554 msgstr ""
17555
17556 #. type: =head2
17557 #: ../src/guestfs-actions.pod:6846
17558 msgid "guestfs_umount"
17559 msgstr ""
17560
17561 #. type: verbatim
17562 #: ../src/guestfs-actions.pod:6848
17563 #, no-wrap
17564 msgid ""
17565 " int\n"
17566 " guestfs_umount (guestfs_h *g,\n"
17567 "                 const char *pathordevice);\n"
17568 "\n"
17569 msgstr ""
17570
17571 #. type: textblock
17572 #: ../src/guestfs-actions.pod:6852 ../fish/guestfish-actions.pod:4637
17573 msgid ""
17574 "This unmounts the given filesystem.  The filesystem may be specified either "
17575 "by its mountpoint (path) or the device which contains the filesystem."
17576 msgstr ""
17577
17578 #. type: =head2
17579 #: ../src/guestfs-actions.pod:6860
17580 msgid "guestfs_umount_all"
17581 msgstr ""
17582
17583 #. type: verbatim
17584 #: ../src/guestfs-actions.pod:6862
17585 #, no-wrap
17586 msgid ""
17587 " int\n"
17588 " guestfs_umount_all (guestfs_h *g);\n"
17589 "\n"
17590 msgstr ""
17591
17592 #. type: textblock
17593 #: ../src/guestfs-actions.pod:6865 ../fish/guestfish-actions.pod:4647
17594 msgid "This unmounts all mounted filesystems."
17595 msgstr ""
17596
17597 #. type: textblock
17598 #: ../src/guestfs-actions.pod:6867 ../fish/guestfish-actions.pod:4649
17599 msgid "Some internal mounts are not unmounted by this call."
17600 msgstr ""
17601
17602 #. type: =head2
17603 #: ../src/guestfs-actions.pod:6873
17604 msgid "guestfs_upload"
17605 msgstr ""
17606
17607 #. type: verbatim
17608 #: ../src/guestfs-actions.pod:6875
17609 #, no-wrap
17610 msgid ""
17611 " int\n"
17612 " guestfs_upload (guestfs_h *g,\n"
17613 "                 const char *filename,\n"
17614 "                 const char *remotefilename);\n"
17615 "\n"
17616 msgstr ""
17617
17618 #. type: textblock
17619 #: ../src/guestfs-actions.pod:6880 ../src/guestfs-actions.pod:6904
17620 #: ../fish/guestfish-actions.pod:4655 ../fish/guestfish-actions.pod:4668
17621 msgid "Upload local file C<filename> to C<remotefilename> on the filesystem."
17622 msgstr ""
17623
17624 #. type: textblock
17625 #: ../src/guestfs-actions.pod:6885
17626 msgid "See also C<guestfs_download>."
17627 msgstr ""
17628
17629 #. type: =head2
17630 #: ../src/guestfs-actions.pod:6896
17631 msgid "guestfs_upload_offset"
17632 msgstr ""
17633
17634 #. type: verbatim
17635 #: ../src/guestfs-actions.pod:6898
17636 #, no-wrap
17637 msgid ""
17638 " int\n"
17639 " guestfs_upload_offset (guestfs_h *g,\n"
17640 "                        const char *filename,\n"
17641 "                        const char *remotefilename,\n"
17642 "                        int64_t offset);\n"
17643 "\n"
17644 msgstr ""
17645
17646 #. type: textblock
17647 #: ../src/guestfs-actions.pod:6907 ../fish/guestfish-actions.pod:4671
17648 msgid ""
17649 "C<remotefilename> is overwritten starting at the byte C<offset> specified.  "
17650 "The intention is to overwrite parts of existing files or devices, although "
17651 "if a non-existant file is specified then it is created with a \"hole\" "
17652 "before C<offset>.  The size of the data written is implicit in the size of "
17653 "the source C<filename>."
17654 msgstr ""
17655
17656 #. type: textblock
17657 #: ../src/guestfs-actions.pod:6914
17658 msgid ""
17659 "Note that there is no limit on the amount of data that can be uploaded with "
17660 "this call, unlike with C<guestfs_pwrite>, and this call always writes the "
17661 "full amount unless an error occurs."
17662 msgstr ""
17663
17664 #. type: textblock
17665 #: ../src/guestfs-actions.pod:6919
17666 msgid "See also C<guestfs_upload>, C<guestfs_pwrite>."
17667 msgstr ""
17668
17669 #. type: =head2
17670 #: ../src/guestfs-actions.pod:6930
17671 msgid "guestfs_utimens"
17672 msgstr ""
17673
17674 #. type: verbatim
17675 #: ../src/guestfs-actions.pod:6932
17676 #, no-wrap
17677 msgid ""
17678 " int\n"
17679 " guestfs_utimens (guestfs_h *g,\n"
17680 "                  const char *path,\n"
17681 "                  int64_t atsecs,\n"
17682 "                  int64_t atnsecs,\n"
17683 "                  int64_t mtsecs,\n"
17684 "                  int64_t mtnsecs);\n"
17685 "\n"
17686 msgstr ""
17687
17688 #. type: textblock
17689 #: ../src/guestfs-actions.pod:6940 ../fish/guestfish-actions.pod:4691
17690 msgid "This command sets the timestamps of a file with nanosecond precision."
17691 msgstr ""
17692
17693 #. type: textblock
17694 #: ../src/guestfs-actions.pod:6943 ../fish/guestfish-actions.pod:4694
17695 msgid ""
17696 "C<atsecs, atnsecs> are the last access time (atime) in secs and nanoseconds "
17697 "from the epoch."
17698 msgstr ""
17699
17700 #. type: textblock
17701 #: ../src/guestfs-actions.pod:6946 ../fish/guestfish-actions.pod:4697
17702 msgid ""
17703 "C<mtsecs, mtnsecs> are the last modification time (mtime) in secs and "
17704 "nanoseconds from the epoch."
17705 msgstr ""
17706
17707 #. type: textblock
17708 #: ../src/guestfs-actions.pod:6949 ../fish/guestfish-actions.pod:4700
17709 msgid ""
17710 "If the C<*nsecs> field contains the special value C<-1> then the "
17711 "corresponding timestamp is set to the current time.  (The C<*secs> field is "
17712 "ignored in this case)."
17713 msgstr ""
17714
17715 #. type: textblock
17716 #: ../src/guestfs-actions.pod:6953 ../fish/guestfish-actions.pod:4704
17717 msgid ""
17718 "If the C<*nsecs> field contains the special value C<-2> then the "
17719 "corresponding timestamp is left unchanged.  (The C<*secs> field is ignored "
17720 "in this case)."
17721 msgstr ""
17722
17723 #. type: =head2
17724 #: ../src/guestfs-actions.pod:6961 ../src/guestfs-structs.pod:175
17725 msgid "guestfs_version"
17726 msgstr ""
17727
17728 #. type: verbatim
17729 #: ../src/guestfs-actions.pod:6963
17730 #, no-wrap
17731 msgid ""
17732 " struct guestfs_version *\n"
17733 " guestfs_version (guestfs_h *g);\n"
17734 "\n"
17735 msgstr ""
17736
17737 #. type: textblock
17738 #: ../src/guestfs-actions.pod:6966 ../fish/guestfish-actions.pod:4712
17739 msgid ""
17740 "Return the libguestfs version number that the program is linked against."
17741 msgstr ""
17742
17743 #. type: textblock
17744 #: ../src/guestfs-actions.pod:6969 ../fish/guestfish-actions.pod:4715
17745 msgid ""
17746 "Note that because of dynamic linking this is not necessarily the version of "
17747 "libguestfs that you compiled against.  You can compile the program, and then "
17748 "at runtime dynamically link against a completely different C<libguestfs.so> "
17749 "library."
17750 msgstr ""
17751
17752 #. type: textblock
17753 #: ../src/guestfs-actions.pod:6974 ../fish/guestfish-actions.pod:4720
17754 msgid ""
17755 "This call was added in version C<1.0.58>.  In previous versions of "
17756 "libguestfs there was no way to get the version number.  From C code you can "
17757 "use dynamic linker functions to find out if this symbol exists (if it "
17758 "doesn't, then it's an earlier version)."
17759 msgstr ""
17760
17761 #. type: textblock
17762 #: ../src/guestfs-actions.pod:6980 ../fish/guestfish-actions.pod:4726
17763 msgid ""
17764 "The call returns a structure with four elements.  The first three (C<major>, "
17765 "C<minor> and C<release>) are numbers and correspond to the usual version "
17766 "triplet.  The fourth element (C<extra>) is a string and is normally empty, "
17767 "but may be used for distro-specific information."
17768 msgstr ""
17769
17770 #. type: textblock
17771 #: ../src/guestfs-actions.pod:6986 ../fish/guestfish-actions.pod:4732
17772 msgid ""
17773 "To construct the original version string: C<$major.$minor.$release$extra>"
17774 msgstr ""
17775
17776 #. type: textblock
17777 #: ../src/guestfs-actions.pod:6989 ../fish/guestfish-actions.pod:4735
17778 msgid "See also: L<guestfs(3)/LIBGUESTFS VERSION NUMBERS>."
17779 msgstr ""
17780
17781 #. type: textblock
17782 #: ../src/guestfs-actions.pod:6991
17783 msgid ""
17784 "I<Note:> Don't use this call to test for availability of features.  In "
17785 "enterprise distributions we backport features from later versions into "
17786 "earlier versions, making this an unreliable way to test for features.  Use "
17787 "C<guestfs_available> instead."
17788 msgstr ""
17789
17790 #. type: textblock
17791 #: ../src/guestfs-actions.pod:6997
17792 msgid ""
17793 "This function returns a C<struct guestfs_version *>, or NULL if there was an "
17794 "error.  I<The caller must call C<guestfs_free_version> after use>."
17795 msgstr ""
17796
17797 #. type: textblock
17798 #: ../src/guestfs-actions.pod:7001
17799 msgid "(Added in 1.0.58)"
17800 msgstr ""
17801
17802 #. type: =head2
17803 #: ../src/guestfs-actions.pod:7003
17804 msgid "guestfs_vfs_label"
17805 msgstr ""
17806
17807 #. type: verbatim
17808 #: ../src/guestfs-actions.pod:7005
17809 #, no-wrap
17810 msgid ""
17811 " char *\n"
17812 " guestfs_vfs_label (guestfs_h *g,\n"
17813 "                    const char *device);\n"
17814 "\n"
17815 msgstr ""
17816
17817 #. type: textblock
17818 #: ../src/guestfs-actions.pod:7009 ../fish/guestfish-actions.pod:4747
17819 msgid "This returns the filesystem label of the filesystem on C<device>."
17820 msgstr ""
17821
17822 #. type: textblock
17823 #: ../src/guestfs-actions.pod:7012 ../fish/guestfish-actions.pod:4750
17824 msgid "If the filesystem is unlabeled, this returns the empty string."
17825 msgstr ""
17826
17827 #. type: textblock
17828 #: ../src/guestfs-actions.pod:7014
17829 msgid "To find a filesystem from the label, use C<guestfs_findfs_label>."
17830 msgstr ""
17831
17832 #. type: textblock
17833 #: ../src/guestfs-actions.pod:7019 ../src/guestfs-actions.pod:7056
17834 msgid "(Added in 1.3.18)"
17835 msgstr ""
17836
17837 #. type: =head2
17838 #: ../src/guestfs-actions.pod:7021
17839 msgid "guestfs_vfs_type"
17840 msgstr ""
17841
17842 #. type: verbatim
17843 #: ../src/guestfs-actions.pod:7023
17844 #, no-wrap
17845 msgid ""
17846 " char *\n"
17847 " guestfs_vfs_type (guestfs_h *g,\n"
17848 "                   const char *device);\n"
17849 "\n"
17850 msgstr ""
17851
17852 #. type: textblock
17853 #: ../src/guestfs-actions.pod:7027 ../fish/guestfish-actions.pod:4758
17854 msgid ""
17855 "This command gets the filesystem type corresponding to the filesystem on "
17856 "C<device>."
17857 msgstr ""
17858
17859 #. type: textblock
17860 #: ../src/guestfs-actions.pod:7030 ../fish/guestfish-actions.pod:4761
17861 msgid ""
17862 "For most filesystems, the result is the name of the Linux VFS module which "
17863 "would be used to mount this filesystem if you mounted it without specifying "
17864 "the filesystem type.  For example a string such as C<ext3> or C<ntfs>."
17865 msgstr ""
17866
17867 #. type: =head2
17868 #: ../src/guestfs-actions.pod:7040
17869 msgid "guestfs_vfs_uuid"
17870 msgstr ""
17871
17872 #. type: verbatim
17873 #: ../src/guestfs-actions.pod:7042
17874 #, no-wrap
17875 msgid ""
17876 " char *\n"
17877 " guestfs_vfs_uuid (guestfs_h *g,\n"
17878 "                   const char *device);\n"
17879 "\n"
17880 msgstr ""
17881
17882 #. type: textblock
17883 #: ../src/guestfs-actions.pod:7046 ../fish/guestfish-actions.pod:4770
17884 msgid "This returns the filesystem UUID of the filesystem on C<device>."
17885 msgstr ""
17886
17887 #. type: textblock
17888 #: ../src/guestfs-actions.pod:7049 ../fish/guestfish-actions.pod:4773
17889 msgid "If the filesystem does not have a UUID, this returns the empty string."
17890 msgstr ""
17891
17892 #. type: textblock
17893 #: ../src/guestfs-actions.pod:7051
17894 msgid "To find a filesystem from the UUID, use C<guestfs_findfs_uuid>."
17895 msgstr ""
17896
17897 #. type: =head2
17898 #: ../src/guestfs-actions.pod:7058
17899 msgid "guestfs_vg_activate"
17900 msgstr ""
17901
17902 #. type: verbatim
17903 #: ../src/guestfs-actions.pod:7060
17904 #, no-wrap
17905 msgid ""
17906 " int\n"
17907 " guestfs_vg_activate (guestfs_h *g,\n"
17908 "                      int activate,\n"
17909 "                      char *const *volgroups);\n"
17910 "\n"
17911 msgstr ""
17912
17913 #. type: textblock
17914 #: ../src/guestfs-actions.pod:7065 ../fish/guestfish-actions.pod:4781
17915 msgid ""
17916 "This command activates or (if C<activate> is false) deactivates all logical "
17917 "volumes in the listed volume groups C<volgroups>.  If activated, then they "
17918 "are made known to the kernel, ie. they appear as C</dev/mapper> devices.  If "
17919 "deactivated, then those devices disappear."
17920 msgstr ""
17921
17922 #. type: textblock
17923 #: ../src/guestfs-actions.pod:7071 ../fish/guestfish-actions.pod:4787
17924 msgid "This command is the same as running C<vgchange -a y|n volgroups...>"
17925 msgstr ""
17926
17927 #. type: textblock
17928 #: ../src/guestfs-actions.pod:7073 ../fish/guestfish-actions.pod:4789
17929 msgid ""
17930 "Note that if C<volgroups> is an empty list then B<all> volume groups are "
17931 "activated or deactivated."
17932 msgstr ""
17933
17934 #. type: =head2
17935 #: ../src/guestfs-actions.pod:7080
17936 msgid "guestfs_vg_activate_all"
17937 msgstr ""
17938
17939 #. type: verbatim
17940 #: ../src/guestfs-actions.pod:7082
17941 #, no-wrap
17942 msgid ""
17943 " int\n"
17944 " guestfs_vg_activate_all (guestfs_h *g,\n"
17945 "                          int activate);\n"
17946 "\n"
17947 msgstr ""
17948
17949 #. type: textblock
17950 #: ../src/guestfs-actions.pod:7086 ../fish/guestfish-actions.pod:4796
17951 msgid ""
17952 "This command activates or (if C<activate> is false) deactivates all logical "
17953 "volumes in all volume groups.  If activated, then they are made known to the "
17954 "kernel, ie. they appear as C</dev/mapper> devices.  If deactivated, then "
17955 "those devices disappear."
17956 msgstr ""
17957
17958 #. type: textblock
17959 #: ../src/guestfs-actions.pod:7092 ../fish/guestfish-actions.pod:4802
17960 msgid "This command is the same as running C<vgchange -a y|n>"
17961 msgstr ""
17962
17963 #. type: =head2
17964 #: ../src/guestfs-actions.pod:7098
17965 msgid "guestfs_vgcreate"
17966 msgstr ""
17967
17968 #. type: verbatim
17969 #: ../src/guestfs-actions.pod:7100
17970 #, no-wrap
17971 msgid ""
17972 " int\n"
17973 " guestfs_vgcreate (guestfs_h *g,\n"
17974 "                   const char *volgroup,\n"
17975 "                   char *const *physvols);\n"
17976 "\n"
17977 msgstr ""
17978
17979 #. type: textblock
17980 #: ../src/guestfs-actions.pod:7105 ../fish/guestfish-actions.pod:4808
17981 msgid ""
17982 "This creates an LVM volume group called C<volgroup> from the non-empty list "
17983 "of physical volumes C<physvols>."
17984 msgstr ""
17985
17986 #. type: =head2
17987 #: ../src/guestfs-actions.pod:7112
17988 msgid "guestfs_vglvuuids"
17989 msgstr ""
17990
17991 #. type: verbatim
17992 #: ../src/guestfs-actions.pod:7114
17993 #, no-wrap
17994 msgid ""
17995 " char **\n"
17996 " guestfs_vglvuuids (guestfs_h *g,\n"
17997 "                    const char *vgname);\n"
17998 "\n"
17999 msgstr ""
18000
18001 #. type: textblock
18002 #: ../src/guestfs-actions.pod:7118 ../fish/guestfish-actions.pod:4815
18003 msgid ""
18004 "Given a VG called C<vgname>, this returns the UUIDs of all the logical "
18005 "volumes created in this volume group."
18006 msgstr ""
18007
18008 #. type: textblock
18009 #: ../src/guestfs-actions.pod:7121
18010 msgid ""
18011 "You can use this along with C<guestfs_lvs> and C<guestfs_lvuuid> calls to "
18012 "associate logical volumes and volume groups."
18013 msgstr ""
18014
18015 #. type: textblock
18016 #: ../src/guestfs-actions.pod:7124
18017 msgid "See also C<guestfs_vgpvuuids>."
18018 msgstr ""
18019
18020 #. type: =head2
18021 #: ../src/guestfs-actions.pod:7132
18022 msgid "guestfs_vgpvuuids"
18023 msgstr ""
18024
18025 #. type: verbatim
18026 #: ../src/guestfs-actions.pod:7134
18027 #, no-wrap
18028 msgid ""
18029 " char **\n"
18030 " guestfs_vgpvuuids (guestfs_h *g,\n"
18031 "                    const char *vgname);\n"
18032 "\n"
18033 msgstr ""
18034
18035 #. type: textblock
18036 #: ../src/guestfs-actions.pod:7138 ../fish/guestfish-actions.pod:4827
18037 msgid ""
18038 "Given a VG called C<vgname>, this returns the UUIDs of all the physical "
18039 "volumes that this volume group resides on."
18040 msgstr ""
18041
18042 #. type: textblock
18043 #: ../src/guestfs-actions.pod:7141
18044 msgid ""
18045 "You can use this along with C<guestfs_pvs> and C<guestfs_pvuuid> calls to "
18046 "associate physical volumes and volume groups."
18047 msgstr ""
18048
18049 #. type: textblock
18050 #: ../src/guestfs-actions.pod:7144
18051 msgid "See also C<guestfs_vglvuuids>."
18052 msgstr ""
18053
18054 #. type: =head2
18055 #: ../src/guestfs-actions.pod:7152
18056 msgid "guestfs_vgremove"
18057 msgstr ""
18058
18059 #. type: verbatim
18060 #: ../src/guestfs-actions.pod:7154
18061 #, no-wrap
18062 msgid ""
18063 " int\n"
18064 " guestfs_vgremove (guestfs_h *g,\n"
18065 "                   const char *vgname);\n"
18066 "\n"
18067 msgstr ""
18068
18069 #. type: textblock
18070 #: ../src/guestfs-actions.pod:7158 ../fish/guestfish-actions.pod:4839
18071 msgid "Remove an LVM volume group C<vgname>, (for example C<VG>)."
18072 msgstr ""
18073
18074 #. type: textblock
18075 #: ../src/guestfs-actions.pod:7160 ../fish/guestfish-actions.pod:4841
18076 msgid ""
18077 "This also forcibly removes all logical volumes in the volume group (if any)."
18078 msgstr ""
18079
18080 #. type: =head2
18081 #: ../src/guestfs-actions.pod:7167
18082 msgid "guestfs_vgrename"
18083 msgstr ""
18084
18085 #. type: verbatim
18086 #: ../src/guestfs-actions.pod:7169
18087 #, no-wrap
18088 msgid ""
18089 " int\n"
18090 " guestfs_vgrename (guestfs_h *g,\n"
18091 "                   const char *volgroup,\n"
18092 "                   const char *newvolgroup);\n"
18093 "\n"
18094 msgstr ""
18095
18096 #. type: textblock
18097 #: ../src/guestfs-actions.pod:7174 ../fish/guestfish-actions.pod:4848
18098 msgid "Rename a volume group C<volgroup> with the new name C<newvolgroup>."
18099 msgstr ""
18100
18101 #. type: =head2
18102 #: ../src/guestfs-actions.pod:7180
18103 msgid "guestfs_vgs"
18104 msgstr ""
18105
18106 #. type: verbatim
18107 #: ../src/guestfs-actions.pod:7182
18108 #, no-wrap
18109 msgid ""
18110 " char **\n"
18111 " guestfs_vgs (guestfs_h *g);\n"
18112 "\n"
18113 msgstr ""
18114
18115 #. type: textblock
18116 #: ../src/guestfs-actions.pod:7185 ../fish/guestfish-actions.pod:4854
18117 msgid ""
18118 "List all the volumes groups detected.  This is the equivalent of the L<vgs(8)"
18119 "> command."
18120 msgstr ""
18121
18122 #. type: textblock
18123 #: ../src/guestfs-actions.pod:7188 ../fish/guestfish-actions.pod:4857
18124 msgid ""
18125 "This returns a list of just the volume group names that were detected (eg. "
18126 "C<VolGroup00>)."
18127 msgstr ""
18128
18129 #. type: textblock
18130 #: ../src/guestfs-actions.pod:7191
18131 msgid "See also C<guestfs_vgs_full>."
18132 msgstr ""
18133
18134 #. type: =head2
18135 #: ../src/guestfs-actions.pod:7199
18136 msgid "guestfs_vgs_full"
18137 msgstr ""
18138
18139 #. type: verbatim
18140 #: ../src/guestfs-actions.pod:7201
18141 #, no-wrap
18142 msgid ""
18143 " struct guestfs_lvm_vg_list *\n"
18144 " guestfs_vgs_full (guestfs_h *g);\n"
18145 "\n"
18146 msgstr ""
18147
18148 #. type: textblock
18149 #: ../src/guestfs-actions.pod:7204 ../fish/guestfish-actions.pod:4866
18150 msgid ""
18151 "List all the volumes groups detected.  This is the equivalent of the L<vgs(8)"
18152 "> command.  The \"full\" version includes all fields."
18153 msgstr ""
18154
18155 #. type: textblock
18156 #: ../src/guestfs-actions.pod:7207
18157 msgid ""
18158 "This function returns a C<struct guestfs_lvm_vg_list *>, or NULL if there "
18159 "was an error.  I<The caller must call C<guestfs_free_lvm_vg_list> after use>."
18160 msgstr ""
18161
18162 #. type: =head2
18163 #: ../src/guestfs-actions.pod:7213
18164 msgid "guestfs_vgscan"
18165 msgstr ""
18166
18167 #. type: verbatim
18168 #: ../src/guestfs-actions.pod:7215
18169 #, no-wrap
18170 msgid ""
18171 " int\n"
18172 " guestfs_vgscan (guestfs_h *g);\n"
18173 "\n"
18174 msgstr ""
18175
18176 #. type: textblock
18177 #: ../src/guestfs-actions.pod:7218 ../fish/guestfish-actions.pod:4873
18178 msgid ""
18179 "This rescans all block devices and rebuilds the list of LVM physical "
18180 "volumes, volume groups and logical volumes."
18181 msgstr ""
18182
18183 #. type: =head2
18184 #: ../src/guestfs-actions.pod:7225
18185 msgid "guestfs_vguuid"
18186 msgstr ""
18187
18188 #. type: verbatim
18189 #: ../src/guestfs-actions.pod:7227
18190 #, no-wrap
18191 msgid ""
18192 " char *\n"
18193 " guestfs_vguuid (guestfs_h *g,\n"
18194 "                 const char *vgname);\n"
18195 "\n"
18196 msgstr ""
18197
18198 #. type: textblock
18199 #: ../src/guestfs-actions.pod:7231 ../fish/guestfish-actions.pod:4880
18200 msgid "This command returns the UUID of the LVM VG named C<vgname>."
18201 msgstr ""
18202
18203 #. type: =head2
18204 #: ../src/guestfs-actions.pod:7238
18205 msgid "guestfs_wait_ready"
18206 msgstr ""
18207
18208 #. type: verbatim
18209 #: ../src/guestfs-actions.pod:7240
18210 #, no-wrap
18211 msgid ""
18212 " int\n"
18213 " guestfs_wait_ready (guestfs_h *g);\n"
18214 "\n"
18215 msgstr ""
18216
18217 #. type: textblock
18218 #: ../src/guestfs-actions.pod:7243
18219 msgid "This function is a no op."
18220 msgstr ""
18221
18222 #. type: textblock
18223 #: ../src/guestfs-actions.pod:7245
18224 msgid ""
18225 "In versions of the API E<lt> 1.0.71 you had to call this function just after "
18226 "calling C<guestfs_launch> to wait for the launch to complete.  However this "
18227 "is no longer necessary because C<guestfs_launch> now does the waiting."
18228 msgstr ""
18229
18230 #. type: textblock
18231 #: ../src/guestfs-actions.pod:7250
18232 msgid ""
18233 "If you see any calls to this function in code then you can just remove them, "
18234 "unless you want to retain compatibility with older versions of the API."
18235 msgstr ""
18236
18237 #. type: textblock
18238 #: ../src/guestfs-actions.pod:7256
18239 msgid ""
18240 "This function is deprecated.  In new code, use the L</guestfs_launch> call "
18241 "instead."
18242 msgstr ""
18243
18244 #. type: =head2
18245 #: ../src/guestfs-actions.pod:7265
18246 msgid "guestfs_wc_c"
18247 msgstr ""
18248
18249 #. type: verbatim
18250 #: ../src/guestfs-actions.pod:7267
18251 #, no-wrap
18252 msgid ""
18253 " int\n"
18254 " guestfs_wc_c (guestfs_h *g,\n"
18255 "               const char *path);\n"
18256 "\n"
18257 msgstr ""
18258
18259 #. type: textblock
18260 #: ../src/guestfs-actions.pod:7271 ../fish/guestfish-actions.pod:4886
18261 msgid ""
18262 "This command counts the characters in a file, using the C<wc -c> external "
18263 "command."
18264 msgstr ""
18265
18266 #. type: =head2
18267 #: ../src/guestfs-actions.pod:7278
18268 msgid "guestfs_wc_l"
18269 msgstr ""
18270
18271 #. type: verbatim
18272 #: ../src/guestfs-actions.pod:7280
18273 #, no-wrap
18274 msgid ""
18275 " int\n"
18276 " guestfs_wc_l (guestfs_h *g,\n"
18277 "               const char *path);\n"
18278 "\n"
18279 msgstr ""
18280
18281 #. type: textblock
18282 #: ../src/guestfs-actions.pod:7284 ../fish/guestfish-actions.pod:4893
18283 msgid ""
18284 "This command counts the lines in a file, using the C<wc -l> external command."
18285 msgstr ""
18286
18287 #. type: =head2
18288 #: ../src/guestfs-actions.pod:7291
18289 msgid "guestfs_wc_w"
18290 msgstr ""
18291
18292 #. type: verbatim
18293 #: ../src/guestfs-actions.pod:7293
18294 #, no-wrap
18295 msgid ""
18296 " int\n"
18297 " guestfs_wc_w (guestfs_h *g,\n"
18298 "               const char *path);\n"
18299 "\n"
18300 msgstr ""
18301
18302 #. type: textblock
18303 #: ../src/guestfs-actions.pod:7297 ../fish/guestfish-actions.pod:4900
18304 msgid ""
18305 "This command counts the words in a file, using the C<wc -w> external command."
18306 msgstr ""
18307
18308 #. type: =head2
18309 #: ../src/guestfs-actions.pod:7304
18310 msgid "guestfs_write"
18311 msgstr ""
18312
18313 #. type: verbatim
18314 #: ../src/guestfs-actions.pod:7306
18315 #, no-wrap
18316 msgid ""
18317 " int\n"
18318 " guestfs_write (guestfs_h *g,\n"
18319 "                const char *path,\n"
18320 "                const char *content,\n"
18321 "                size_t content_size);\n"
18322 "\n"
18323 msgstr ""
18324
18325 #. type: textblock
18326 #: ../src/guestfs-actions.pod:7312 ../fish/guestfish-actions.pod:4907
18327 msgid ""
18328 "This call creates a file called C<path>.  The content of the file is the "
18329 "string C<content> (which can contain any 8 bit data)."
18330 msgstr ""
18331
18332 #. type: =head2
18333 #: ../src/guestfs-actions.pod:7322
18334 msgid "guestfs_write_file"
18335 msgstr ""
18336
18337 #. type: verbatim
18338 #: ../src/guestfs-actions.pod:7324
18339 #, no-wrap
18340 msgid ""
18341 " int\n"
18342 " guestfs_write_file (guestfs_h *g,\n"
18343 "                     const char *path,\n"
18344 "                     const char *content,\n"
18345 "                     int size);\n"
18346 "\n"
18347 msgstr ""
18348
18349 #. type: textblock
18350 #: ../src/guestfs-actions.pod:7330 ../fish/guestfish-actions.pod:4917
18351 msgid ""
18352 "This call creates a file called C<path>.  The contents of the file is the "
18353 "string C<content> (which can contain any 8 bit data), with length C<size>."
18354 msgstr ""
18355
18356 #. type: textblock
18357 #: ../src/guestfs-actions.pod:7334 ../fish/guestfish-actions.pod:4921
18358 msgid ""
18359 "As a special case, if C<size> is C<0> then the length is calculated using "
18360 "C<strlen> (so in this case the content cannot contain embedded ASCII NULs)."
18361 msgstr ""
18362
18363 #. type: textblock
18364 #: ../src/guestfs-actions.pod:7338 ../fish/guestfish-actions.pod:4925
18365 msgid ""
18366 "I<NB.> Owing to a bug, writing content containing ASCII NUL characters does "
18367 "I<not> work, even if the length is specified."
18368 msgstr ""
18369
18370 #. type: textblock
18371 #: ../src/guestfs-actions.pod:7346
18372 msgid ""
18373 "This function is deprecated.  In new code, use the L</guestfs_write> call "
18374 "instead."
18375 msgstr ""
18376
18377 #. type: =head2
18378 #: ../src/guestfs-actions.pod:7355
18379 msgid "guestfs_zegrep"
18380 msgstr ""
18381
18382 #. type: verbatim
18383 #: ../src/guestfs-actions.pod:7357
18384 #, no-wrap
18385 msgid ""
18386 " char **\n"
18387 " guestfs_zegrep (guestfs_h *g,\n"
18388 "                 const char *regex,\n"
18389 "                 const char *path);\n"
18390 "\n"
18391 msgstr ""
18392
18393 #. type: textblock
18394 #: ../src/guestfs-actions.pod:7362 ../fish/guestfish-actions.pod:4942
18395 msgid ""
18396 "This calls the external C<zegrep> program and returns the matching lines."
18397 msgstr ""
18398
18399 #. type: =head2
18400 #: ../src/guestfs-actions.pod:7374
18401 msgid "guestfs_zegrepi"
18402 msgstr ""
18403
18404 #. type: verbatim
18405 #: ../src/guestfs-actions.pod:7376
18406 #, no-wrap
18407 msgid ""
18408 " char **\n"
18409 " guestfs_zegrepi (guestfs_h *g,\n"
18410 "                  const char *regex,\n"
18411 "                  const char *path);\n"
18412 "\n"
18413 msgstr ""
18414
18415 #. type: textblock
18416 #: ../src/guestfs-actions.pod:7381 ../fish/guestfish-actions.pod:4952
18417 msgid ""
18418 "This calls the external C<zegrep -i> program and returns the matching lines."
18419 msgstr ""
18420
18421 #. type: =head2
18422 #: ../src/guestfs-actions.pod:7393
18423 msgid "guestfs_zero"
18424 msgstr ""
18425
18426 #. type: verbatim
18427 #: ../src/guestfs-actions.pod:7395
18428 #, no-wrap
18429 msgid ""
18430 " int\n"
18431 " guestfs_zero (guestfs_h *g,\n"
18432 "               const char *device);\n"
18433 "\n"
18434 msgstr ""
18435
18436 #. type: textblock
18437 #: ../src/guestfs-actions.pod:7399 ../fish/guestfish-actions.pod:4962
18438 msgid "This command writes zeroes over the first few blocks of C<device>."
18439 msgstr ""
18440
18441 #. type: textblock
18442 #: ../src/guestfs-actions.pod:7401 ../fish/guestfish-actions.pod:4964
18443 msgid ""
18444 "How many blocks are zeroed isn't specified (but it's I<not> enough to "
18445 "securely wipe the device).  It should be sufficient to remove any partition "
18446 "tables, filesystem superblocks and so on."
18447 msgstr ""
18448
18449 #. type: textblock
18450 #: ../src/guestfs-actions.pod:7405
18451 msgid "See also: C<guestfs_zero_device>, C<guestfs_scrub_device>."
18452 msgstr ""
18453
18454 #. type: =head2
18455 #: ../src/guestfs-actions.pod:7416
18456 msgid "guestfs_zero_device"
18457 msgstr ""
18458
18459 #. type: verbatim
18460 #: ../src/guestfs-actions.pod:7418
18461 #, no-wrap
18462 msgid ""
18463 " int\n"
18464 " guestfs_zero_device (guestfs_h *g,\n"
18465 "                      const char *device);\n"
18466 "\n"
18467 msgstr ""
18468
18469 #. type: textblock
18470 #: ../src/guestfs-actions.pod:7422
18471 msgid ""
18472 "This command writes zeroes over the entire C<device>.  Compare with "
18473 "C<guestfs_zero> which just zeroes the first few blocks of a device."
18474 msgstr ""
18475
18476 #. type: textblock
18477 #: ../src/guestfs-actions.pod:7436
18478 msgid "(Added in 1.3.1)"
18479 msgstr ""
18480
18481 #. type: =head2
18482 #: ../src/guestfs-actions.pod:7438
18483 msgid "guestfs_zerofree"
18484 msgstr ""
18485
18486 #. type: verbatim
18487 #: ../src/guestfs-actions.pod:7440
18488 #, no-wrap
18489 msgid ""
18490 " int\n"
18491 " guestfs_zerofree (guestfs_h *g,\n"
18492 "                   const char *device);\n"
18493 "\n"
18494 msgstr ""
18495
18496 #. type: textblock
18497 #: ../src/guestfs-actions.pod:7444 ../fish/guestfish-actions.pod:4985
18498 msgid ""
18499 "This runs the I<zerofree> program on C<device>.  This program claims to zero "
18500 "unused inodes and disk blocks on an ext2/3 filesystem, thus making it "
18501 "possible to compress the filesystem more effectively."
18502 msgstr ""
18503
18504 #. type: textblock
18505 #: ../src/guestfs-actions.pod:7449 ../fish/guestfish-actions.pod:4990
18506 msgid "You should B<not> run this program if the filesystem is mounted."
18507 msgstr ""
18508
18509 #. type: textblock
18510 #: ../src/guestfs-actions.pod:7452 ../fish/guestfish-actions.pod:4993
18511 msgid ""
18512 "It is possible that using this program can damage the filesystem or data on "
18513 "the filesystem."
18514 msgstr ""
18515
18516 #. type: =head2
18517 #: ../src/guestfs-actions.pod:7459
18518 msgid "guestfs_zfgrep"
18519 msgstr ""
18520
18521 #. type: verbatim
18522 #: ../src/guestfs-actions.pod:7461
18523 #, no-wrap
18524 msgid ""
18525 " char **\n"
18526 " guestfs_zfgrep (guestfs_h *g,\n"
18527 "                 const char *pattern,\n"
18528 "                 const char *path);\n"
18529 "\n"
18530 msgstr ""
18531
18532 #. type: textblock
18533 #: ../src/guestfs-actions.pod:7466 ../fish/guestfish-actions.pod:5000
18534 msgid ""
18535 "This calls the external C<zfgrep> program and returns the matching lines."
18536 msgstr ""
18537
18538 #. type: =head2
18539 #: ../src/guestfs-actions.pod:7478
18540 msgid "guestfs_zfgrepi"
18541 msgstr ""
18542
18543 #. type: verbatim
18544 #: ../src/guestfs-actions.pod:7480
18545 #, no-wrap
18546 msgid ""
18547 " char **\n"
18548 " guestfs_zfgrepi (guestfs_h *g,\n"
18549 "                  const char *pattern,\n"
18550 "                  const char *path);\n"
18551 "\n"
18552 msgstr ""
18553
18554 #. type: textblock
18555 #: ../src/guestfs-actions.pod:7485 ../fish/guestfish-actions.pod:5010
18556 msgid ""
18557 "This calls the external C<zfgrep -i> program and returns the matching lines."
18558 msgstr ""
18559
18560 #. type: =head2
18561 #: ../src/guestfs-actions.pod:7497
18562 msgid "guestfs_zfile"
18563 msgstr ""
18564
18565 #. type: verbatim
18566 #: ../src/guestfs-actions.pod:7499
18567 #, no-wrap
18568 msgid ""
18569 " char *\n"
18570 " guestfs_zfile (guestfs_h *g,\n"
18571 "                const char *meth,\n"
18572 "                const char *path);\n"
18573 "\n"
18574 msgstr ""
18575
18576 #. type: textblock
18577 #: ../src/guestfs-actions.pod:7504 ../fish/guestfish-actions.pod:5020
18578 msgid ""
18579 "This command runs C<file> after first decompressing C<path> using C<method>."
18580 msgstr ""
18581
18582 #. type: textblock
18583 #: ../src/guestfs-actions.pod:7507 ../fish/guestfish-actions.pod:5023
18584 msgid "C<method> must be one of C<gzip>, C<compress> or C<bzip2>."
18585 msgstr ""
18586
18587 #. type: textblock
18588 #: ../src/guestfs-actions.pod:7509
18589 msgid ""
18590 "Since 1.0.63, use C<guestfs_file> instead which can now process compressed "
18591 "files."
18592 msgstr ""
18593
18594 #. type: textblock
18595 #: ../src/guestfs-actions.pod:7515
18596 msgid ""
18597 "This function is deprecated.  In new code, use the L</guestfs_file> call "
18598 "instead."
18599 msgstr ""
18600
18601 #. type: =head2
18602 #: ../src/guestfs-actions.pod:7524
18603 msgid "guestfs_zgrep"
18604 msgstr ""
18605
18606 #. type: verbatim
18607 #: ../src/guestfs-actions.pod:7526
18608 #, no-wrap
18609 msgid ""
18610 " char **\n"
18611 " guestfs_zgrep (guestfs_h *g,\n"
18612 "                const char *regex,\n"
18613 "                const char *path);\n"
18614 "\n"
18615 msgstr ""
18616
18617 #. type: textblock
18618 #: ../src/guestfs-actions.pod:7531 ../fish/guestfish-actions.pod:5039
18619 msgid ""
18620 "This calls the external C<zgrep> program and returns the matching lines."
18621 msgstr ""
18622
18623 #. type: =head2
18624 #: ../src/guestfs-actions.pod:7543
18625 msgid "guestfs_zgrepi"
18626 msgstr ""
18627
18628 #. type: verbatim
18629 #: ../src/guestfs-actions.pod:7545
18630 #, no-wrap
18631 msgid ""
18632 " char **\n"
18633 " guestfs_zgrepi (guestfs_h *g,\n"
18634 "                 const char *regex,\n"
18635 "                 const char *path);\n"
18636 "\n"
18637 msgstr ""
18638
18639 #. type: textblock
18640 #: ../src/guestfs-actions.pod:7550 ../fish/guestfish-actions.pod:5049
18641 msgid ""
18642 "This calls the external C<zgrep -i> program and returns the matching lines."
18643 msgstr ""
18644
18645 #. type: =item
18646 #: ../src/guestfs-availability.pod:3
18647 msgid "B<augeas>"
18648 msgstr ""
18649
18650 #. type: textblock
18651 #: ../src/guestfs-availability.pod:5
18652 msgid ""
18653 "The following functions: L</guestfs_aug_clear> L</guestfs_aug_close> L</"
18654 "guestfs_aug_defnode> L</guestfs_aug_defvar> L</guestfs_aug_get> L</"
18655 "guestfs_aug_init> L</guestfs_aug_insert> L</guestfs_aug_load> L</"
18656 "guestfs_aug_ls> L</guestfs_aug_match> L</guestfs_aug_mv> L</guestfs_aug_rm> "
18657 "L</guestfs_aug_save> L</guestfs_aug_set>"
18658 msgstr ""
18659
18660 #. type: =item
18661 #: ../src/guestfs-availability.pod:21
18662 msgid "B<grub>"
18663 msgstr ""
18664
18665 #. type: textblock
18666 #: ../src/guestfs-availability.pod:23
18667 msgid "The following functions: L</guestfs_grub_install>"
18668 msgstr ""
18669
18670 #. type: =item
18671 #: ../src/guestfs-availability.pod:26
18672 msgid "B<inotify>"
18673 msgstr ""
18674
18675 #. type: textblock
18676 #: ../src/guestfs-availability.pod:28
18677 msgid ""
18678 "The following functions: L</guestfs_inotify_add_watch> L</"
18679 "guestfs_inotify_close> L</guestfs_inotify_files> L</guestfs_inotify_init> L</"
18680 "guestfs_inotify_read> L</guestfs_inotify_rm_watch>"
18681 msgstr ""
18682
18683 #. type: =item
18684 #: ../src/guestfs-availability.pod:36
18685 msgid "B<linuxfsuuid>"
18686 msgstr ""
18687
18688 #. type: textblock
18689 #: ../src/guestfs-availability.pod:38
18690 msgid ""
18691 "The following functions: L</guestfs_mke2fs_JU> L</guestfs_mke2journal_U> L</"
18692 "guestfs_mkswap_U> L</guestfs_swapoff_uuid> L</guestfs_swapon_uuid>"
18693 msgstr ""
18694
18695 #. type: =item
18696 #: ../src/guestfs-availability.pod:45
18697 msgid "B<linuxmodules>"
18698 msgstr ""
18699
18700 #. type: textblock
18701 #: ../src/guestfs-availability.pod:47
18702 msgid "The following functions: L</guestfs_modprobe>"
18703 msgstr ""
18704
18705 #. type: =item
18706 #: ../src/guestfs-availability.pod:50
18707 msgid "B<linuxxattrs>"
18708 msgstr ""
18709
18710 #. type: textblock
18711 #: ../src/guestfs-availability.pod:52
18712 msgid ""
18713 "The following functions: L</guestfs_getxattr> L</guestfs_getxattrs> L</"
18714 "guestfs_lgetxattr> L</guestfs_lgetxattrs> L</guestfs_lremovexattr> L</"
18715 "guestfs_lsetxattr> L</guestfs_lxattrlist> L</guestfs_removexattr> L</"
18716 "guestfs_setxattr>"
18717 msgstr ""
18718
18719 #. type: =item
18720 #: ../src/guestfs-availability.pod:63
18721 msgid "B<luks>"
18722 msgstr ""
18723
18724 #. type: textblock
18725 #: ../src/guestfs-availability.pod:65
18726 msgid ""
18727 "The following functions: L</guestfs_luks_add_key> L</guestfs_luks_close> L</"
18728 "guestfs_luks_format> L</guestfs_luks_format_cipher> L</"
18729 "guestfs_luks_kill_slot> L</guestfs_luks_open> L</guestfs_luks_open_ro>"
18730 msgstr ""
18731
18732 #. type: =item
18733 #: ../src/guestfs-availability.pod:74
18734 msgid "B<lvm2>"
18735 msgstr ""
18736
18737 #. type: textblock
18738 #: ../src/guestfs-availability.pod:76
18739 msgid ""
18740 "The following functions: L</guestfs_is_lv> L</guestfs_lvcreate> L</"
18741 "guestfs_lvm_remove_all> L</guestfs_lvm_set_filter> L</guestfs_lvremove> L</"
18742 "guestfs_lvresize> L</guestfs_lvresize_free> L</guestfs_lvs> L</"
18743 "guestfs_lvs_full> L</guestfs_pvcreate> L</guestfs_pvremove> L</"
18744 "guestfs_pvresize> L</guestfs_pvresize_size> L</guestfs_pvs> L</"
18745 "guestfs_pvs_full> L</guestfs_vg_activate> L</guestfs_vg_activate_all> L</"
18746 "guestfs_vgcreate> L</guestfs_vgremove> L</guestfs_vgs> L</guestfs_vgs_full>"
18747 msgstr ""
18748
18749 #. type: =item
18750 #: ../src/guestfs-availability.pod:99
18751 msgid "B<mknod>"
18752 msgstr ""
18753
18754 #. type: textblock
18755 #: ../src/guestfs-availability.pod:101
18756 msgid ""
18757 "The following functions: L</guestfs_mkfifo> L</guestfs_mknod> L</"
18758 "guestfs_mknod_b> L</guestfs_mknod_c>"
18759 msgstr ""
18760
18761 #. type: =item
18762 #: ../src/guestfs-availability.pod:107
18763 msgid "B<ntfs3g>"
18764 msgstr ""
18765
18766 #. type: textblock
18767 #: ../src/guestfs-availability.pod:109
18768 msgid "The following functions: L</guestfs_ntfs_3g_probe>"
18769 msgstr ""
18770
18771 #. type: =item
18772 #: ../src/guestfs-availability.pod:112
18773 msgid "B<ntfsprogs>"
18774 msgstr ""
18775
18776 #. type: textblock
18777 #: ../src/guestfs-availability.pod:114
18778 msgid ""
18779 "The following functions: L</guestfs_ntfsresize> L</guestfs_ntfsresize_size>"
18780 msgstr ""
18781
18782 #. type: =item
18783 #: ../src/guestfs-availability.pod:118
18784 msgid "B<realpath>"
18785 msgstr ""
18786
18787 #. type: textblock
18788 #: ../src/guestfs-availability.pod:120
18789 msgid "The following functions: L</guestfs_realpath>"
18790 msgstr ""
18791
18792 #. type: =item
18793 #: ../src/guestfs-availability.pod:123
18794 msgid "B<scrub>"
18795 msgstr ""
18796
18797 #. type: textblock
18798 #: ../src/guestfs-availability.pod:125
18799 msgid ""
18800 "The following functions: L</guestfs_scrub_device> L</guestfs_scrub_file> L</"
18801 "guestfs_scrub_freespace>"
18802 msgstr ""
18803
18804 #. type: =item
18805 #: ../src/guestfs-availability.pod:130
18806 msgid "B<selinux>"
18807 msgstr ""
18808
18809 #. type: textblock
18810 #: ../src/guestfs-availability.pod:132
18811 msgid "The following functions: L</guestfs_getcon> L</guestfs_setcon>"
18812 msgstr ""
18813
18814 #. type: =item
18815 #: ../src/guestfs-availability.pod:136
18816 msgid "B<xz>"
18817 msgstr ""
18818
18819 #. type: textblock
18820 #: ../src/guestfs-availability.pod:138
18821 msgid "The following functions: L</guestfs_txz_in> L</guestfs_txz_out>"
18822 msgstr ""
18823
18824 #. type: =item
18825 #: ../src/guestfs-availability.pod:142
18826 msgid "B<zerofree>"
18827 msgstr ""
18828
18829 #. type: textblock
18830 #: ../src/guestfs-availability.pod:144
18831 msgid "The following functions: L</guestfs_zerofree>"
18832 msgstr ""
18833
18834 #. type: =head2
18835 #: ../src/guestfs-structs.pod:1
18836 msgid "guestfs_int_bool"
18837 msgstr ""
18838
18839 #. type: verbatim
18840 #: ../src/guestfs-structs.pod:3
18841 #, no-wrap
18842 msgid ""
18843 " struct guestfs_int_bool {\n"
18844 "   int32_t i;\n"
18845 "   int32_t b;\n"
18846 " };\n"
18847 " \n"
18848 msgstr ""
18849
18850 #. type: verbatim
18851 #: ../src/guestfs-structs.pod:8
18852 #, no-wrap
18853 msgid ""
18854 " struct guestfs_int_bool_list {\n"
18855 "   uint32_t len; /* Number of elements in list. */\n"
18856 "   struct guestfs_int_bool *val; /* Elements. */\n"
18857 " };\n"
18858 " \n"
18859 msgstr ""
18860
18861 #. type: verbatim
18862 #: ../src/guestfs-structs.pod:13
18863 #, no-wrap
18864 msgid ""
18865 " void guestfs_free_int_bool (struct guestfs_free_int_bool *);\n"
18866 " void guestfs_free_int_bool_list (struct guestfs_free_int_bool_list *);\n"
18867 "\n"
18868 msgstr ""
18869
18870 #. type: =head2
18871 #: ../src/guestfs-structs.pod:16
18872 msgid "guestfs_lvm_pv"
18873 msgstr ""
18874
18875 #. type: verbatim
18876 #: ../src/guestfs-structs.pod:18
18877 #, no-wrap
18878 msgid ""
18879 " struct guestfs_lvm_pv {\n"
18880 "   char *pv_name;\n"
18881 "   /* The next field is NOT nul-terminated, be careful when printing it: */\n"
18882 "   char pv_uuid[32];\n"
18883 "   char *pv_fmt;\n"
18884 "   uint64_t pv_size;\n"
18885 "   uint64_t dev_size;\n"
18886 "   uint64_t pv_free;\n"
18887 "   uint64_t pv_used;\n"
18888 "   char *pv_attr;\n"
18889 "   int64_t pv_pe_count;\n"
18890 "   int64_t pv_pe_alloc_count;\n"
18891 "   char *pv_tags;\n"
18892 "   uint64_t pe_start;\n"
18893 "   int64_t pv_mda_count;\n"
18894 "   uint64_t pv_mda_free;\n"
18895 " };\n"
18896 " \n"
18897 msgstr ""
18898
18899 #. type: verbatim
18900 #: ../src/guestfs-structs.pod:36
18901 #, no-wrap
18902 msgid ""
18903 " struct guestfs_lvm_pv_list {\n"
18904 "   uint32_t len; /* Number of elements in list. */\n"
18905 "   struct guestfs_lvm_pv *val; /* Elements. */\n"
18906 " };\n"
18907 " \n"
18908 msgstr ""
18909
18910 #. type: verbatim
18911 #: ../src/guestfs-structs.pod:41
18912 #, no-wrap
18913 msgid ""
18914 " void guestfs_free_lvm_pv (struct guestfs_free_lvm_pv *);\n"
18915 " void guestfs_free_lvm_pv_list (struct guestfs_free_lvm_pv_list *);\n"
18916 "\n"
18917 msgstr ""
18918
18919 #. type: =head2
18920 #: ../src/guestfs-structs.pod:44
18921 msgid "guestfs_lvm_vg"
18922 msgstr ""
18923
18924 #. type: verbatim
18925 #: ../src/guestfs-structs.pod:46
18926 #, no-wrap
18927 msgid ""
18928 " struct guestfs_lvm_vg {\n"
18929 "   char *vg_name;\n"
18930 "   /* The next field is NOT nul-terminated, be careful when printing it: */\n"
18931 "   char vg_uuid[32];\n"
18932 "   char *vg_fmt;\n"
18933 "   char *vg_attr;\n"
18934 "   uint64_t vg_size;\n"
18935 "   uint64_t vg_free;\n"
18936 "   char *vg_sysid;\n"
18937 "   uint64_t vg_extent_size;\n"
18938 "   int64_t vg_extent_count;\n"
18939 "   int64_t vg_free_count;\n"
18940 "   int64_t max_lv;\n"
18941 "   int64_t max_pv;\n"
18942 "   int64_t pv_count;\n"
18943 "   int64_t lv_count;\n"
18944 "   int64_t snap_count;\n"
18945 "   int64_t vg_seqno;\n"
18946 "   char *vg_tags;\n"
18947 "   int64_t vg_mda_count;\n"
18948 "   uint64_t vg_mda_free;\n"
18949 " };\n"
18950 " \n"
18951 msgstr ""
18952
18953 #. type: verbatim
18954 #: ../src/guestfs-structs.pod:69
18955 #, no-wrap
18956 msgid ""
18957 " struct guestfs_lvm_vg_list {\n"
18958 "   uint32_t len; /* Number of elements in list. */\n"
18959 "   struct guestfs_lvm_vg *val; /* Elements. */\n"
18960 " };\n"
18961 " \n"
18962 msgstr ""
18963
18964 #. type: verbatim
18965 #: ../src/guestfs-structs.pod:74
18966 #, no-wrap
18967 msgid ""
18968 " void guestfs_free_lvm_vg (struct guestfs_free_lvm_vg *);\n"
18969 " void guestfs_free_lvm_vg_list (struct guestfs_free_lvm_vg_list *);\n"
18970 "\n"
18971 msgstr ""
18972
18973 #. type: =head2
18974 #: ../src/guestfs-structs.pod:77
18975 msgid "guestfs_lvm_lv"
18976 msgstr ""
18977
18978 #. type: verbatim
18979 #: ../src/guestfs-structs.pod:79
18980 #, no-wrap
18981 msgid ""
18982 " struct guestfs_lvm_lv {\n"
18983 "   char *lv_name;\n"
18984 "   /* The next field is NOT nul-terminated, be careful when printing it: */\n"
18985 "   char lv_uuid[32];\n"
18986 "   char *lv_attr;\n"
18987 "   int64_t lv_major;\n"
18988 "   int64_t lv_minor;\n"
18989 "   int64_t lv_kernel_major;\n"
18990 "   int64_t lv_kernel_minor;\n"
18991 "   uint64_t lv_size;\n"
18992 "   int64_t seg_count;\n"
18993 "   char *origin;\n"
18994 "   /* The next field is [0..100] or -1 meaning 'not present': */\n"
18995 "   float snap_percent;\n"
18996 "   /* The next field is [0..100] or -1 meaning 'not present': */\n"
18997 "   float copy_percent;\n"
18998 "   char *move_pv;\n"
18999 "   char *lv_tags;\n"
19000 "   char *mirror_log;\n"
19001 "   char *modules;\n"
19002 " };\n"
19003 " \n"
19004 msgstr ""
19005
19006 #. type: verbatim
19007 #: ../src/guestfs-structs.pod:101
19008 #, no-wrap
19009 msgid ""
19010 " struct guestfs_lvm_lv_list {\n"
19011 "   uint32_t len; /* Number of elements in list. */\n"
19012 "   struct guestfs_lvm_lv *val; /* Elements. */\n"
19013 " };\n"
19014 " \n"
19015 msgstr ""
19016
19017 #. type: verbatim
19018 #: ../src/guestfs-structs.pod:106
19019 #, no-wrap
19020 msgid ""
19021 " void guestfs_free_lvm_lv (struct guestfs_free_lvm_lv *);\n"
19022 " void guestfs_free_lvm_lv_list (struct guestfs_free_lvm_lv_list *);\n"
19023 "\n"
19024 msgstr ""
19025
19026 #. type: verbatim
19027 #: ../src/guestfs-structs.pod:111
19028 #, no-wrap
19029 msgid ""
19030 " struct guestfs_stat {\n"
19031 "   int64_t dev;\n"
19032 "   int64_t ino;\n"
19033 "   int64_t mode;\n"
19034 "   int64_t nlink;\n"
19035 "   int64_t uid;\n"
19036 "   int64_t gid;\n"
19037 "   int64_t rdev;\n"
19038 "   int64_t size;\n"
19039 "   int64_t blksize;\n"
19040 "   int64_t blocks;\n"
19041 "   int64_t atime;\n"
19042 "   int64_t mtime;\n"
19043 "   int64_t ctime;\n"
19044 " };\n"
19045 " \n"
19046 msgstr ""
19047
19048 #. type: verbatim
19049 #: ../src/guestfs-structs.pod:127
19050 #, no-wrap
19051 msgid ""
19052 " struct guestfs_stat_list {\n"
19053 "   uint32_t len; /* Number of elements in list. */\n"
19054 "   struct guestfs_stat *val; /* Elements. */\n"
19055 " };\n"
19056 " \n"
19057 msgstr ""
19058
19059 #. type: verbatim
19060 #: ../src/guestfs-structs.pod:132
19061 #, no-wrap
19062 msgid ""
19063 " void guestfs_free_stat (struct guestfs_free_stat *);\n"
19064 " void guestfs_free_stat_list (struct guestfs_free_stat_list *);\n"
19065 "\n"
19066 msgstr ""
19067
19068 #. type: verbatim
19069 #: ../src/guestfs-structs.pod:137
19070 #, no-wrap
19071 msgid ""
19072 " struct guestfs_statvfs {\n"
19073 "   int64_t bsize;\n"
19074 "   int64_t frsize;\n"
19075 "   int64_t blocks;\n"
19076 "   int64_t bfree;\n"
19077 "   int64_t bavail;\n"
19078 "   int64_t files;\n"
19079 "   int64_t ffree;\n"
19080 "   int64_t favail;\n"
19081 "   int64_t fsid;\n"
19082 "   int64_t flag;\n"
19083 "   int64_t namemax;\n"
19084 " };\n"
19085 " \n"
19086 msgstr ""
19087
19088 #. type: verbatim
19089 #: ../src/guestfs-structs.pod:151
19090 #, no-wrap
19091 msgid ""
19092 " struct guestfs_statvfs_list {\n"
19093 "   uint32_t len; /* Number of elements in list. */\n"
19094 "   struct guestfs_statvfs *val; /* Elements. */\n"
19095 " };\n"
19096 " \n"
19097 msgstr ""
19098
19099 #. type: verbatim
19100 #: ../src/guestfs-structs.pod:156
19101 #, no-wrap
19102 msgid ""
19103 " void guestfs_free_statvfs (struct guestfs_free_statvfs *);\n"
19104 " void guestfs_free_statvfs_list (struct guestfs_free_statvfs_list *);\n"
19105 "\n"
19106 msgstr ""
19107
19108 #. type: =head2
19109 #: ../src/guestfs-structs.pod:159
19110 msgid "guestfs_dirent"
19111 msgstr ""
19112
19113 #. type: verbatim
19114 #: ../src/guestfs-structs.pod:161
19115 #, no-wrap
19116 msgid ""
19117 " struct guestfs_dirent {\n"
19118 "   int64_t ino;\n"
19119 "   char ftyp;\n"
19120 "   char *name;\n"
19121 " };\n"
19122 " \n"
19123 msgstr ""
19124
19125 #. type: verbatim
19126 #: ../src/guestfs-structs.pod:167
19127 #, no-wrap
19128 msgid ""
19129 " struct guestfs_dirent_list {\n"
19130 "   uint32_t len; /* Number of elements in list. */\n"
19131 "   struct guestfs_dirent *val; /* Elements. */\n"
19132 " };\n"
19133 " \n"
19134 msgstr ""
19135
19136 #. type: verbatim
19137 #: ../src/guestfs-structs.pod:172
19138 #, no-wrap
19139 msgid ""
19140 " void guestfs_free_dirent (struct guestfs_free_dirent *);\n"
19141 " void guestfs_free_dirent_list (struct guestfs_free_dirent_list *);\n"
19142 "\n"
19143 msgstr ""
19144
19145 #. type: verbatim
19146 #: ../src/guestfs-structs.pod:177
19147 #, no-wrap
19148 msgid ""
19149 " struct guestfs_version {\n"
19150 "   int64_t major;\n"
19151 "   int64_t minor;\n"
19152 "   int64_t release;\n"
19153 "   char *extra;\n"
19154 " };\n"
19155 " \n"
19156 msgstr ""
19157
19158 #. type: verbatim
19159 #: ../src/guestfs-structs.pod:184
19160 #, no-wrap
19161 msgid ""
19162 " struct guestfs_version_list {\n"
19163 "   uint32_t len; /* Number of elements in list. */\n"
19164 "   struct guestfs_version *val; /* Elements. */\n"
19165 " };\n"
19166 " \n"
19167 msgstr ""
19168
19169 #. type: verbatim
19170 #: ../src/guestfs-structs.pod:189
19171 #, no-wrap
19172 msgid ""
19173 " void guestfs_free_version (struct guestfs_free_version *);\n"
19174 " void guestfs_free_version_list (struct guestfs_free_version_list *);\n"
19175 "\n"
19176 msgstr ""
19177
19178 #. type: =head2
19179 #: ../src/guestfs-structs.pod:192
19180 msgid "guestfs_xattr"
19181 msgstr ""
19182
19183 #. type: verbatim
19184 #: ../src/guestfs-structs.pod:194
19185 #, no-wrap
19186 msgid ""
19187 " struct guestfs_xattr {\n"
19188 "   char *attrname;\n"
19189 "   /* The next two fields describe a byte array. */\n"
19190 "   uint32_t attrval_len;\n"
19191 "   char *attrval;\n"
19192 " };\n"
19193 " \n"
19194 msgstr ""
19195
19196 #. type: verbatim
19197 #: ../src/guestfs-structs.pod:201
19198 #, no-wrap
19199 msgid ""
19200 " struct guestfs_xattr_list {\n"
19201 "   uint32_t len; /* Number of elements in list. */\n"
19202 "   struct guestfs_xattr *val; /* Elements. */\n"
19203 " };\n"
19204 " \n"
19205 msgstr ""
19206
19207 #. type: verbatim
19208 #: ../src/guestfs-structs.pod:206
19209 #, no-wrap
19210 msgid ""
19211 " void guestfs_free_xattr (struct guestfs_free_xattr *);\n"
19212 " void guestfs_free_xattr_list (struct guestfs_free_xattr_list *);\n"
19213 "\n"
19214 msgstr ""
19215
19216 #. type: =head2
19217 #: ../src/guestfs-structs.pod:209
19218 msgid "guestfs_inotify_event"
19219 msgstr ""
19220
19221 #. type: verbatim
19222 #: ../src/guestfs-structs.pod:211
19223 #, no-wrap
19224 msgid ""
19225 " struct guestfs_inotify_event {\n"
19226 "   int64_t in_wd;\n"
19227 "   uint32_t in_mask;\n"
19228 "   uint32_t in_cookie;\n"
19229 "   char *in_name;\n"
19230 " };\n"
19231 " \n"
19232 msgstr ""
19233
19234 #. type: verbatim
19235 #: ../src/guestfs-structs.pod:218
19236 #, no-wrap
19237 msgid ""
19238 " struct guestfs_inotify_event_list {\n"
19239 "   uint32_t len; /* Number of elements in list. */\n"
19240 "   struct guestfs_inotify_event *val; /* Elements. */\n"
19241 " };\n"
19242 " \n"
19243 msgstr ""
19244
19245 #. type: verbatim
19246 #: ../src/guestfs-structs.pod:223
19247 #, no-wrap
19248 msgid ""
19249 " void guestfs_free_inotify_event (struct guestfs_free_inotify_event *);\n"
19250 " void guestfs_free_inotify_event_list (struct guestfs_free_inotify_event_list *);\n"
19251 "\n"
19252 msgstr ""
19253
19254 #. type: =head2
19255 #: ../src/guestfs-structs.pod:226
19256 msgid "guestfs_partition"
19257 msgstr ""
19258
19259 #. type: verbatim
19260 #: ../src/guestfs-structs.pod:228
19261 #, no-wrap
19262 msgid ""
19263 " struct guestfs_partition {\n"
19264 "   int32_t part_num;\n"
19265 "   uint64_t part_start;\n"
19266 "   uint64_t part_end;\n"
19267 "   uint64_t part_size;\n"
19268 " };\n"
19269 " \n"
19270 msgstr ""
19271
19272 #. type: verbatim
19273 #: ../src/guestfs-structs.pod:235
19274 #, no-wrap
19275 msgid ""
19276 " struct guestfs_partition_list {\n"
19277 "   uint32_t len; /* Number of elements in list. */\n"
19278 "   struct guestfs_partition *val; /* Elements. */\n"
19279 " };\n"
19280 " \n"
19281 msgstr ""
19282
19283 #. type: verbatim
19284 #: ../src/guestfs-structs.pod:240
19285 #, no-wrap
19286 msgid ""
19287 " void guestfs_free_partition (struct guestfs_free_partition *);\n"
19288 " void guestfs_free_partition_list (struct guestfs_free_partition_list *);\n"
19289 "\n"
19290 msgstr ""
19291
19292 #. type: =head2
19293 #: ../src/guestfs-structs.pod:243
19294 msgid "guestfs_application"
19295 msgstr ""
19296
19297 #. type: verbatim
19298 #: ../src/guestfs-structs.pod:245
19299 #, no-wrap
19300 msgid ""
19301 " struct guestfs_application {\n"
19302 "   char *app_name;\n"
19303 "   char *app_display_name;\n"
19304 "   int32_t app_epoch;\n"
19305 "   char *app_version;\n"
19306 "   char *app_release;\n"
19307 "   char *app_install_path;\n"
19308 "   char *app_trans_path;\n"
19309 "   char *app_publisher;\n"
19310 "   char *app_url;\n"
19311 "   char *app_source_package;\n"
19312 "   char *app_summary;\n"
19313 "   char *app_description;\n"
19314 " };\n"
19315 " \n"
19316 msgstr ""
19317
19318 #. type: verbatim
19319 #: ../src/guestfs-structs.pod:260
19320 #, no-wrap
19321 msgid ""
19322 " struct guestfs_application_list {\n"
19323 "   uint32_t len; /* Number of elements in list. */\n"
19324 "   struct guestfs_application *val; /* Elements. */\n"
19325 " };\n"
19326 " \n"
19327 msgstr ""
19328
19329 #. type: verbatim
19330 #: ../src/guestfs-structs.pod:265
19331 #, no-wrap
19332 msgid ""
19333 " void guestfs_free_application (struct guestfs_free_application *);\n"
19334 " void guestfs_free_application_list (struct guestfs_free_application_list *);\n"
19335 "\n"
19336 msgstr ""
19337
19338 #. type: textblock
19339 #: ../fish/guestfish.pod:5
19340 msgid "guestfish - the libguestfs Filesystem Interactive SHell"
19341 msgstr ""
19342
19343 #. type: verbatim
19344 #: ../fish/guestfish.pod:9
19345 #, no-wrap
19346 msgid ""
19347 " guestfish [--options] [commands]\n"
19348 "\n"
19349 msgstr ""
19350
19351 #. type: verbatim
19352 #: ../fish/guestfish.pod:11
19353 #, no-wrap
19354 msgid ""
19355 " guestfish\n"
19356 "\n"
19357 msgstr ""
19358
19359 #. type: verbatim
19360 #: ../fish/guestfish.pod:13
19361 #, no-wrap
19362 msgid ""
19363 " guestfish [--ro|--rw] -a disk.img\n"
19364 "\n"
19365 msgstr ""
19366
19367 #. type: verbatim
19368 #: ../fish/guestfish.pod:15
19369 #, no-wrap
19370 msgid ""
19371 " guestfish [--ro|--rw] -a disk.img -m dev[:mountpoint]\n"
19372 "\n"
19373 msgstr ""
19374
19375 #. type: verbatim
19376 #: ../fish/guestfish.pod:17
19377 #, no-wrap
19378 msgid ""
19379 " guestfish -d libvirt-domain\n"
19380 "\n"
19381 msgstr ""
19382
19383 #. type: verbatim
19384 #: ../fish/guestfish.pod:19
19385 #, no-wrap
19386 msgid ""
19387 " guestfish [--ro|--rw] -a disk.img -i\n"
19388 "\n"
19389 msgstr ""
19390
19391 #. type: verbatim
19392 #: ../fish/guestfish.pod:21
19393 #, no-wrap
19394 msgid ""
19395 " guestfish -d libvirt-domain -i\n"
19396 "\n"
19397 msgstr ""
19398
19399 #. type: =head1
19400 #: ../fish/guestfish.pod:23 ../fuse/guestmount.pod:15 ../tools/virt-edit.pl:44
19401 #: ../tools/virt-win-reg.pl:51 ../tools/virt-tar.pl:64
19402 msgid "WARNING"
19403 msgstr ""
19404
19405 #. type: textblock
19406 #: ../fish/guestfish.pod:25
19407 msgid ""
19408 "Using guestfish in read/write mode on live virtual machines can be "
19409 "dangerous, potentially causing disk corruption.  Use the I<--ro> (read-only) "
19410 "option to use guestfish safely if the disk image or virtual machine might be "
19411 "live."
19412 msgstr ""
19413
19414 #. type: textblock
19415 #: ../fish/guestfish.pod:32
19416 msgid ""
19417 "Guestfish is a shell and command-line tool for examining and modifying "
19418 "virtual machine filesystems.  It uses libguestfs and exposes all of the "
19419 "functionality of the guestfs API, see L<guestfs(3)>."
19420 msgstr ""
19421
19422 #. type: textblock
19423 #: ../fish/guestfish.pod:36
19424 msgid ""
19425 "Guestfish gives you structured access to the libguestfs API, from shell "
19426 "scripts or the command line or interactively.  If you want to rescue a "
19427 "broken virtual machine image, you should look at the L<virt-rescue(1)> "
19428 "command."
19429 msgstr ""
19430
19431 #. type: =head1
19432 #: ../fish/guestfish.pod:41 ../fish/guestfish.pod:958
19433 #: ../fuse/guestmount.pod:39 ../tools/virt-edit.pl:63 ../tools/virt-tar.pl:50
19434 msgid "EXAMPLES"
19435 msgstr ""
19436
19437 #. type: =head2
19438 #: ../fish/guestfish.pod:43
19439 msgid "As an interactive shell"
19440 msgstr ""
19441
19442 #. type: verbatim
19443 #: ../fish/guestfish.pod:45
19444 #, no-wrap
19445 msgid ""
19446 " $ guestfish\n"
19447 " \n"
19448 msgstr ""
19449
19450 #. type: verbatim
19451 #: ../fish/guestfish.pod:47
19452 #, no-wrap
19453 msgid ""
19454 " Welcome to guestfish, the libguestfs filesystem interactive shell for\n"
19455 " editing virtual machine filesystems.\n"
19456 " \n"
19457 msgstr ""
19458
19459 #. type: verbatim
19460 #: ../fish/guestfish.pod:50
19461 #, no-wrap
19462 msgid ""
19463 " Type: 'help' for a list of commands\n"
19464 "       'man' to read the manual\n"
19465 "       'quit' to quit the shell\n"
19466 " \n"
19467 msgstr ""
19468
19469 #. type: verbatim
19470 #: ../fish/guestfish.pod:54
19471 #, no-wrap
19472 msgid ""
19473 " ><fs> add-ro disk.img\n"
19474 " ><fs> run\n"
19475 " ><fs> list-filesystems\n"
19476 " /dev/sda1: ext4\n"
19477 " /dev/vg_guest/lv_root: ext4\n"
19478 " /dev/vg_guest/lv_swap: swap\n"
19479 " ><fs> mount /dev/vg_guest/lv_root /\n"
19480 " ><fs> cat /etc/fstab\n"
19481 " # /etc/fstab\n"
19482 " # Created by anaconda\n"
19483 " [...]\n"
19484 " ><fs> exit\n"
19485 "\n"
19486 msgstr ""
19487
19488 #. type: =head2
19489 #: ../fish/guestfish.pod:67
19490 msgid "From shell scripts"
19491 msgstr ""
19492
19493 #. type: textblock
19494 #: ../fish/guestfish.pod:69
19495 msgid "Create a new C</etc/motd> file in a guest or disk image:"
19496 msgstr ""
19497
19498 #. type: verbatim
19499 #: ../fish/guestfish.pod:71
19500 #, no-wrap
19501 msgid ""
19502 " guestfish <<_EOF_\n"
19503 " add disk.img\n"
19504 " run\n"
19505 " mount /dev/vg_guest/lv_root /\n"
19506 " write /etc/motd \"Welcome, new users\"\n"
19507 " _EOF_\n"
19508 "\n"
19509 msgstr ""
19510
19511 #. type: textblock
19512 #: ../fish/guestfish.pod:78
19513 msgid "List the LVM logical volumes in a disk image:"
19514 msgstr ""
19515
19516 #. type: verbatim
19517 #: ../fish/guestfish.pod:80
19518 #, no-wrap
19519 msgid ""
19520 " guestfish -a disk.img --ro <<_EOF_\n"
19521 " run\n"
19522 " lvs\n"
19523 " _EOF_\n"
19524 "\n"
19525 msgstr ""
19526
19527 #. type: textblock
19528 #: ../fish/guestfish.pod:85
19529 msgid "List all the filesystems in a disk image:"
19530 msgstr ""
19531
19532 #. type: verbatim
19533 #: ../fish/guestfish.pod:87
19534 #, no-wrap
19535 msgid ""
19536 " guestfish -a disk.img --ro <<_EOF_\n"
19537 " run\n"
19538 " list-filesystems\n"
19539 " _EOF_\n"
19540 "\n"
19541 msgstr ""
19542
19543 #. type: =head2
19544 #: ../fish/guestfish.pod:92
19545 msgid "On one command line"
19546 msgstr ""
19547
19548 #. type: textblock
19549 #: ../fish/guestfish.pod:94
19550 msgid "Update C</etc/resolv.conf> in a guest:"
19551 msgstr ""
19552
19553 #. type: verbatim
19554 #: ../fish/guestfish.pod:96
19555 #, no-wrap
19556 msgid ""
19557 " guestfish \\\n"
19558 "   add disk.img : run : mount /dev/vg_guest/lv_root / : \\\n"
19559 "   write /etc/resolv.conf \"nameserver 1.2.3.4\"\n"
19560 "\n"
19561 msgstr ""
19562
19563 #. type: textblock
19564 #: ../fish/guestfish.pod:100
19565 msgid "Edit C</boot/grub/grub.conf> interactively:"
19566 msgstr ""
19567
19568 #. type: verbatim
19569 #: ../fish/guestfish.pod:102
19570 #, no-wrap
19571 msgid ""
19572 " guestfish --rw --add disk.img \\\n"
19573 "   --mount /dev/vg_guest/lv_root \\\n"
19574 "   --mount /dev/sda1:/boot \\\n"
19575 "   edit /boot/grub/grub.conf\n"
19576 "\n"
19577 msgstr ""
19578
19579 #. type: =head2
19580 #: ../fish/guestfish.pod:107
19581 msgid "Mount disks automatically"
19582 msgstr ""
19583
19584 #. type: textblock
19585 #: ../fish/guestfish.pod:109
19586 msgid ""
19587 "Use the I<-i> option to automatically mount the disks from a virtual machine:"
19588 msgstr ""
19589
19590 #. type: verbatim
19591 #: ../fish/guestfish.pod:112
19592 #, no-wrap
19593 msgid ""
19594 " guestfish --ro -a disk.img -i cat /etc/group\n"
19595 "\n"
19596 msgstr ""
19597
19598 #. type: verbatim
19599 #: ../fish/guestfish.pod:114
19600 #, no-wrap
19601 msgid ""
19602 " guestfish --ro -d libvirt-domain -i cat /etc/group\n"
19603 "\n"
19604 msgstr ""
19605
19606 #. type: textblock
19607 #: ../fish/guestfish.pod:116
19608 msgid "Another way to edit C</boot/grub/grub.conf> interactively is:"
19609 msgstr ""
19610
19611 #. type: verbatim
19612 #: ../fish/guestfish.pod:118
19613 #, no-wrap
19614 msgid ""
19615 " guestfish --rw -a disk.img -i edit /boot/grub/grub.conf\n"
19616 "\n"
19617 msgstr ""
19618
19619 #. type: =head2
19620 #: ../fish/guestfish.pod:120
19621 msgid "As a script interpreter"
19622 msgstr ""
19623
19624 #. type: textblock
19625 #: ../fish/guestfish.pod:122
19626 msgid "Create a 100MB disk containing an ext2-formatted partition:"
19627 msgstr ""
19628
19629 #. type: verbatim
19630 #: ../fish/guestfish.pod:124
19631 #, no-wrap
19632 msgid ""
19633 " #!/usr/bin/guestfish -f\n"
19634 " sparse test1.img 100M\n"
19635 " run\n"
19636 " part-disk /dev/sda mbr\n"
19637 " mkfs ext2 /dev/sda1\n"
19638 "\n"
19639 msgstr ""
19640
19641 #. type: =head2
19642 #: ../fish/guestfish.pod:130
19643 msgid "Start with a prepared disk"
19644 msgstr ""
19645
19646 #. type: textblock
19647 #: ../fish/guestfish.pod:132
19648 msgid ""
19649 "An alternate way to create a 100MB disk called C<test1.img> containing a "
19650 "single ext2-formatted partition:"
19651 msgstr ""
19652
19653 #. type: verbatim
19654 #: ../fish/guestfish.pod:135
19655 #, no-wrap
19656 msgid ""
19657 " guestfish -N fs\n"
19658 "\n"
19659 msgstr ""
19660
19661 #. type: textblock
19662 #: ../fish/guestfish.pod:137
19663 msgid "To list what is available do:"
19664 msgstr ""
19665
19666 #. type: verbatim
19667 #: ../fish/guestfish.pod:139 ../fish/guestfish.pod:949
19668 #, no-wrap
19669 msgid ""
19670 " guestfish -N help | less\n"
19671 "\n"
19672 msgstr ""
19673
19674 #. type: =head2
19675 #: ../fish/guestfish.pod:141
19676 msgid "Remote control"
19677 msgstr ""
19678
19679 #. type: verbatim
19680 #: ../fish/guestfish.pod:143
19681 #, no-wrap
19682 msgid ""
19683 " eval \"`guestfish --listen`\"\n"
19684 " guestfish --remote add-ro disk.img\n"
19685 " guestfish --remote run\n"
19686 " guestfish --remote lvs\n"
19687 "\n"
19688 msgstr ""
19689
19690 #. type: =head1
19691 #: ../fish/guestfish.pod:148 ../test-tool/libguestfs-test-tool.pod:37
19692 #: ../fuse/guestmount.pod:83 ../tools/virt-edit.pl:81
19693 #: ../tools/virt-win-reg.pl:96 ../tools/virt-list-filesystems.pl:53
19694 #: ../tools/virt-tar.pl:103 ../tools/virt-make-fs.pl:153
19695 #: ../tools/virt-list-partitions.pl:54
19696 msgid "OPTIONS"
19697 msgstr ""
19698
19699 #. type: =item
19700 #: ../fish/guestfish.pod:152 ../fuse/guestmount.pod:141
19701 #: ../tools/virt-edit.pl:89 ../tools/virt-win-reg.pl:104
19702 #: ../tools/virt-list-filesystems.pl:61 ../tools/virt-tar.pl:111
19703 #: ../tools/virt-make-fs.pl:161 ../tools/virt-list-partitions.pl:62
19704 msgid "B<--help>"
19705 msgstr ""
19706
19707 #. type: textblock
19708 #: ../fish/guestfish.pod:154
19709 msgid "Displays general help on options."
19710 msgstr ""
19711
19712 #. type: =item
19713 #: ../fish/guestfish.pod:156
19714 msgid "B<-h>"
19715 msgstr ""
19716
19717 #. type: =item
19718 #: ../fish/guestfish.pod:158
19719 msgid "B<--cmd-help>"
19720 msgstr ""
19721
19722 #. type: textblock
19723 #: ../fish/guestfish.pod:160
19724 msgid "Lists all available guestfish commands."
19725 msgstr ""
19726
19727 #. type: =item
19728 #: ../fish/guestfish.pod:162
19729 msgid "B<-h cmd>"
19730 msgstr ""
19731
19732 #. type: =item
19733 #: ../fish/guestfish.pod:164
19734 msgid "B<--cmd-help cmd>"
19735 msgstr ""
19736
19737 #. type: textblock
19738 #: ../fish/guestfish.pod:166
19739 msgid "Displays detailed help on a single command C<cmd>."
19740 msgstr ""
19741
19742 #. type: =item
19743 #: ../fish/guestfish.pod:168
19744 msgid "B<-a image>"
19745 msgstr ""
19746
19747 #. type: =item
19748 #: ../fish/guestfish.pod:170
19749 msgid "B<--add image>"
19750 msgstr ""
19751
19752 #. type: textblock
19753 #: ../fish/guestfish.pod:172
19754 msgid "Add a block device or virtual machine image to the shell."
19755 msgstr ""
19756
19757 #. type: textblock
19758 #: ../fish/guestfish.pod:174 ../fuse/guestmount.pod:91
19759 msgid ""
19760 "The format of the disk image is auto-detected.  To override this and force a "
19761 "particular format use the I<--format=..> option."
19762 msgstr ""
19763
19764 #. type: textblock
19765 #: ../fish/guestfish.pod:177
19766 msgid ""
19767 "Using this flag is mostly equivalent to using the C<add> command, with "
19768 "C<readonly:true> if the I<--ro> flag was given, and with C<format:...> if "
19769 "the I<--format=...> flag was given."
19770 msgstr ""
19771
19772 #. type: =item
19773 #: ../fish/guestfish.pod:181
19774 msgid "B<-c URI>"
19775 msgstr ""
19776
19777 #. type: =item
19778 #: ../fish/guestfish.pod:183
19779 msgid "B<--connect URI>"
19780 msgstr ""
19781
19782 #. type: textblock
19783 #: ../fish/guestfish.pod:185 ../fuse/guestmount.pod:96
19784 msgid ""
19785 "When used in conjunction with the I<-d> option, this specifies the libvirt "
19786 "URI to use.  The default is to use the default libvirt connection."
19787 msgstr ""
19788
19789 #. type: =item
19790 #: ../fish/guestfish.pod:189
19791 msgid "B<--csh>"
19792 msgstr ""
19793
19794 #. type: textblock
19795 #: ../fish/guestfish.pod:191
19796 msgid ""
19797 "If using the I<--listen> option and a csh-like shell, use this option.  See "
19798 "section L</REMOTE CONTROL AND CSH> below."
19799 msgstr ""
19800
19801 #. type: =item
19802 #: ../fish/guestfish.pod:194
19803 msgid "B<-d libvirt-domain>"
19804 msgstr ""
19805
19806 #. type: =item
19807 #: ../fish/guestfish.pod:196
19808 msgid "B<--domain libvirt-domain>"
19809 msgstr ""
19810
19811 #. type: textblock
19812 #: ../fish/guestfish.pod:198 ../fuse/guestmount.pod:102
19813 msgid ""
19814 "Add disks from the named libvirt domain.  If the I<--ro> option is also "
19815 "used, then any libvirt domain can be used.  However in write mode, only "
19816 "libvirt domains which are shut down can be named here."
19817 msgstr ""
19818
19819 #. type: textblock
19820 #: ../fish/guestfish.pod:202
19821 msgid ""
19822 "Using this flag is mostly equivalent to using the C<add-domain> command, "
19823 "with C<readonly:true> if the I<--ro> flag was given, and with C<format:...> "
19824 "if the I<--format:...> flag was given."
19825 msgstr ""
19826
19827 #. type: =item
19828 #: ../fish/guestfish.pod:206
19829 msgid "B<-D>"
19830 msgstr ""
19831
19832 #. type: =item
19833 #: ../fish/guestfish.pod:208
19834 msgid "B<--no-dest-paths>"
19835 msgstr ""
19836
19837 #. type: textblock
19838 #: ../fish/guestfish.pod:210
19839 msgid ""
19840 "Don't tab-complete paths on the guest filesystem.  It is useful to be able "
19841 "to hit the tab key to complete paths on the guest filesystem, but this "
19842 "causes extra \"hidden\" guestfs calls to be made, so this option is here to "
19843 "allow this feature to be disabled."
19844 msgstr ""
19845
19846 #. type: =item
19847 #: ../fish/guestfish.pod:215 ../fuse/guestmount.pod:118
19848 msgid "B<--echo-keys>"
19849 msgstr ""
19850
19851 #. type: textblock
19852 #: ../fish/guestfish.pod:217 ../fuse/guestmount.pod:120
19853 msgid ""
19854 "When prompting for keys and passphrases, guestfish normally turns echoing "
19855 "off so you cannot see what you are typing.  If you are not worried about "
19856 "Tempest attacks and there is no one else in the room you can specify this "
19857 "flag to see what you are typing."
19858 msgstr ""
19859
19860 #. type: =item
19861 #: ../fish/guestfish.pod:222
19862 msgid "B<-f file>"
19863 msgstr ""
19864
19865 #. type: =item
19866 #: ../fish/guestfish.pod:224
19867 msgid "B<--file file>"
19868 msgstr ""
19869
19870 #. type: textblock
19871 #: ../fish/guestfish.pod:226
19872 msgid "Read commands from C<file>.  To write pure guestfish scripts, use:"
19873 msgstr ""
19874
19875 #. type: verbatim
19876 #: ../fish/guestfish.pod:229
19877 #, no-wrap
19878 msgid ""
19879 " #!/usr/bin/guestfish -f\n"
19880 "\n"
19881 msgstr ""
19882
19883 #. type: =item
19884 #: ../fish/guestfish.pod:231
19885 msgid "B<--format=raw|qcow2|..>"
19886 msgstr ""
19887
19888 #. type: =item
19889 #: ../fish/guestfish.pod:233
19890 msgid "B<--format>"
19891 msgstr ""
19892
19893 #. type: textblock
19894 #: ../fish/guestfish.pod:235 ../fuse/guestmount.pod:127
19895 msgid ""
19896 "The default for the I<-a> option is to auto-detect the format of the disk "
19897 "image.  Using this forces the disk format for I<-a> options which follow on "
19898 "the command line.  Using I<--format> with no argument switches back to auto-"
19899 "detection for subsequent I<-a> options."
19900 msgstr ""
19901
19902 #. type: verbatim
19903 #: ../fish/guestfish.pod:242
19904 #, no-wrap
19905 msgid ""
19906 " guestfish --format=raw -a disk.img\n"
19907 "\n"
19908 msgstr ""
19909
19910 #. type: textblock
19911 #: ../fish/guestfish.pod:244
19912 msgid "forces raw format (no auto-detection) for C<disk.img>."
19913 msgstr ""
19914
19915 #. type: verbatim
19916 #: ../fish/guestfish.pod:246
19917 #, no-wrap
19918 msgid ""
19919 " guestfish --format=raw -a disk.img --format -a another.img\n"
19920 "\n"
19921 msgstr ""
19922
19923 #. type: textblock
19924 #: ../fish/guestfish.pod:248
19925 msgid ""
19926 "forces raw format (no auto-detection) for C<disk.img> and reverts to auto-"
19927 "detection for C<another.img>."
19928 msgstr ""
19929
19930 #. type: textblock
19931 #: ../fish/guestfish.pod:251
19932 msgid ""
19933 "If you have untrusted raw-format guest disk images, you should use this "
19934 "option to specify the disk format.  This avoids a possible security problem "
19935 "with malicious guests (CVE-2010-3851).  See also L</add-drive-opts>."
19936 msgstr ""
19937
19938 #. type: =item
19939 #: ../fish/guestfish.pod:256
19940 msgid "B<-i>"
19941 msgstr ""
19942
19943 #. type: =item
19944 #: ../fish/guestfish.pod:258
19945 msgid "B<--inspector>"
19946 msgstr ""
19947
19948 #. type: textblock
19949 #: ../fish/guestfish.pod:260 ../fuse/guestmount.pod:147
19950 msgid ""
19951 "Using L<virt-inspector(1)> code, inspect the disks looking for an operating "
19952 "system and mount filesystems as they would be mounted on the real virtual "
19953 "machine."
19954 msgstr ""
19955
19956 #. type: textblock
19957 #: ../fish/guestfish.pod:264
19958 msgid "Typical usage is either:"
19959 msgstr ""
19960
19961 #. type: verbatim
19962 #: ../fish/guestfish.pod:266
19963 #, no-wrap
19964 msgid ""
19965 " guestfish -d myguest -i\n"
19966 "\n"
19967 msgstr ""
19968
19969 #. type: textblock
19970 #: ../fish/guestfish.pod:268
19971 msgid "(for an inactive libvirt domain called I<myguest>), or:"
19972 msgstr ""
19973
19974 #. type: verbatim
19975 #: ../fish/guestfish.pod:270
19976 #, no-wrap
19977 msgid ""
19978 " guestfish --ro -d myguest -i\n"
19979 "\n"
19980 msgstr ""
19981
19982 #. type: textblock
19983 #: ../fish/guestfish.pod:272
19984 msgid "(for active domains, readonly), or specify the block device directly:"
19985 msgstr ""
19986
19987 #. type: verbatim
19988 #: ../fish/guestfish.pod:274
19989 #, no-wrap
19990 msgid ""
19991 " guestfish --rw -a /dev/Guests/MyGuest -i\n"
19992 "\n"
19993 msgstr ""
19994
19995 #. type: textblock
19996 #: ../fish/guestfish.pod:276
19997 msgid ""
19998 "Note that the command line syntax changed slightly over older versions of "
19999 "guestfish.  You can still use the old syntax:"
20000 msgstr ""
20001
20002 #. type: verbatim
20003 #: ../fish/guestfish.pod:279
20004 #, no-wrap
20005 msgid ""
20006 " guestfish [--ro] -i disk.img\n"
20007 "\n"
20008 msgstr ""
20009
20010 #. type: verbatim
20011 #: ../fish/guestfish.pod:281
20012 #, no-wrap
20013 msgid ""
20014 " guestfish [--ro] -i libvirt-domain\n"
20015 "\n"
20016 msgstr ""
20017
20018 #. type: textblock
20019 #: ../fish/guestfish.pod:283
20020 msgid ""
20021 "Using this flag is mostly equivalent to using the C<inspect-os> command and "
20022 "then using other commands to mount the filesystems that were found."
20023 msgstr ""
20024
20025 #. type: =item
20026 #: ../fish/guestfish.pod:287 ../fuse/guestmount.pod:151
20027 msgid "B<--keys-from-stdin>"
20028 msgstr ""
20029
20030 #. type: textblock
20031 #: ../fish/guestfish.pod:289 ../fuse/guestmount.pod:153
20032 msgid ""
20033 "Read key or passphrase parameters from stdin.  The default is to try to read "
20034 "passphrases from the user by opening C</dev/tty>."
20035 msgstr ""
20036
20037 #. type: =item
20038 #: ../fish/guestfish.pod:292
20039 msgid "B<--listen>"
20040 msgstr ""
20041
20042 #. type: textblock
20043 #: ../fish/guestfish.pod:294
20044 msgid ""
20045 "Fork into the background and listen for remote commands.  See section L</"
20046 "REMOTE CONTROL GUESTFISH OVER A SOCKET> below."
20047 msgstr ""
20048
20049 #. type: =item
20050 #: ../fish/guestfish.pod:297 ../fuse/guestmount.pod:156
20051 msgid "B<--live>"
20052 msgstr ""
20053
20054 #. type: textblock
20055 #: ../fish/guestfish.pod:299 ../fuse/guestmount.pod:158
20056 msgid ""
20057 "Connect to a live virtual machine.  (Experimental, see L<guestfs(3)/"
20058 "ATTACHING TO RUNNING DAEMONS>)."
20059 msgstr ""
20060
20061 #. type: =item
20062 #: ../fish/guestfish.pod:302 ../fuse/guestmount.pod:161
20063 msgid "B<-m dev[:mountpoint[:options]]>"
20064 msgstr ""
20065
20066 #. type: =item
20067 #: ../fish/guestfish.pod:304 ../fuse/guestmount.pod:163
20068 msgid "B<--mount dev[:mountpoint[:options]]>"
20069 msgstr ""
20070
20071 #. type: textblock
20072 #: ../fish/guestfish.pod:306
20073 msgid "Mount the named partition or logical volume on the given mountpoint."
20074 msgstr ""
20075
20076 #. type: textblock
20077 #: ../fish/guestfish.pod:308
20078 msgid "If the mountpoint is omitted, it defaults to C</>."
20079 msgstr ""
20080
20081 #. type: textblock
20082 #: ../fish/guestfish.pod:310
20083 msgid "You have to mount something on C</> before most commands will work."
20084 msgstr ""
20085
20086 #. type: textblock
20087 #: ../fish/guestfish.pod:312
20088 msgid ""
20089 "If any I<-m> or I<--mount> options are given, the guest is automatically "
20090 "launched."
20091 msgstr ""
20092
20093 #. type: textblock
20094 #: ../fish/guestfish.pod:315
20095 msgid ""
20096 "If you don't know what filesystems a disk image contains, you can either run "
20097 "guestfish without this option, then list the partitions, filesystems and LVs "
20098 "available (see L</list-partitions>, L</list-filesystems> and L</lvs> "
20099 "commands), or you can use the L<virt-filesystems(1)> program."
20100 msgstr ""
20101
20102 #. type: textblock
20103 #: ../fish/guestfish.pod:321 ../fuse/guestmount.pod:171
20104 msgid ""
20105 "The third (and rarely used) part of the mount parameter is the list of mount "
20106 "options used to mount the underlying filesystem.  If this is not given, then "
20107 "the mount options are either the empty string or C<ro> (the latter if the "
20108 "I<--ro> flag is used).  By specifying the mount options, you override this "
20109 "default choice.  Probably the only time you would use this is to enable ACLs "
20110 "and/or extended attributes if the filesystem can support them:"
20111 msgstr ""
20112
20113 #. type: verbatim
20114 #: ../fish/guestfish.pod:329 ../fuse/guestmount.pod:179
20115 #, no-wrap
20116 msgid ""
20117 " -m /dev/sda1:/:acl,user_xattr\n"
20118 "\n"
20119 msgstr ""
20120
20121 #. type: textblock
20122 #: ../fish/guestfish.pod:331
20123 msgid "Using this flag is equivalent to using the C<mount-options> command."
20124 msgstr ""
20125
20126 #. type: =item
20127 #: ../fish/guestfish.pod:333
20128 msgid "B<-n>"
20129 msgstr ""
20130
20131 #. type: =item
20132 #: ../fish/guestfish.pod:335
20133 msgid "B<--no-sync>"
20134 msgstr ""
20135
20136 #. type: textblock
20137 #: ../fish/guestfish.pod:337
20138 msgid ""
20139 "Disable autosync.  This is enabled by default.  See the discussion of "
20140 "autosync in the L<guestfs(3)> manpage."
20141 msgstr ""
20142
20143 #. type: =item
20144 #: ../fish/guestfish.pod:340
20145 msgid "B<-N type>"
20146 msgstr ""
20147
20148 #. type: =item
20149 #: ../fish/guestfish.pod:342
20150 msgid "B<--new type>"
20151 msgstr ""
20152
20153 #. type: =item
20154 #: ../fish/guestfish.pod:344
20155 msgid "B<-N help>"
20156 msgstr ""
20157
20158 #. type: textblock
20159 #: ../fish/guestfish.pod:346
20160 msgid ""
20161 "Prepare a fresh disk image formatted as \"type\".  This is an alternative to "
20162 "the I<-a> option: whereas I<-a> adds an existing disk, I<-N> creates a "
20163 "preformatted disk with a filesystem and adds it.  See L</PREPARED DISK "
20164 "IMAGES> below."
20165 msgstr ""
20166
20167 #. type: =item
20168 #: ../fish/guestfish.pod:351
20169 msgid "B<--progress-bars>"
20170 msgstr ""
20171
20172 #. type: textblock
20173 #: ../fish/guestfish.pod:353
20174 msgid "Enable progress bars, even when guestfish is used non-interactively."
20175 msgstr ""
20176
20177 #. type: textblock
20178 #: ../fish/guestfish.pod:355
20179 msgid ""
20180 "Progress bars are enabled by default when guestfish is used as an "
20181 "interactive shell."
20182 msgstr ""
20183
20184 #. type: =item
20185 #: ../fish/guestfish.pod:358
20186 msgid "B<--no-progress-bars>"
20187 msgstr ""
20188
20189 #. type: textblock
20190 #: ../fish/guestfish.pod:360
20191 msgid "Disable progress bars."
20192 msgstr ""
20193
20194 #. type: =item
20195 #: ../fish/guestfish.pod:362
20196 msgid "B<--remote[=pid]>"
20197 msgstr ""
20198
20199 #. type: textblock
20200 #: ../fish/guestfish.pod:364
20201 msgid ""
20202 "Send remote commands to C<$GUESTFISH_PID> or C<pid>.  See section L</REMOTE "
20203 "CONTROL GUESTFISH OVER A SOCKET> below."
20204 msgstr ""
20205
20206 #. type: =item
20207 #: ../fish/guestfish.pod:367
20208 msgid "B<-r>"
20209 msgstr ""
20210
20211 #. type: =item
20212 #: ../fish/guestfish.pod:369
20213 msgid "B<--ro>"
20214 msgstr ""
20215
20216 #. type: textblock
20217 #: ../fish/guestfish.pod:371
20218 msgid ""
20219 "This changes the I<-a>, I<-d> and I<-m> options so that disks are added and "
20220 "mounts are done read-only."
20221 msgstr ""
20222
20223 #. type: textblock
20224 #: ../fish/guestfish.pod:374
20225 msgid ""
20226 "The option must always be used if the disk image or virtual machine might be "
20227 "running, and is generally recommended in cases where you don't need write "
20228 "access to the disk."
20229 msgstr ""
20230
20231 #. type: textblock
20232 #: ../fish/guestfish.pod:378
20233 msgid ""
20234 "Note that prepared disk images created with I<-N> are not affected by this "
20235 "option.  Also commands like C<add> are not affected - you have to specify "
20236 "the C<readonly:true> option explicitly if you need it."
20237 msgstr ""
20238
20239 #. type: textblock
20240 #: ../fish/guestfish.pod:382
20241 msgid "See also L</OPENING DISKS FOR READ AND WRITE> below."
20242 msgstr ""
20243
20244 #. type: =item
20245 #: ../fish/guestfish.pod:384 ../fuse/guestmount.pod:235
20246 msgid "B<--selinux>"
20247 msgstr ""
20248
20249 #. type: textblock
20250 #: ../fish/guestfish.pod:386
20251 msgid "Enable SELinux support for the guest.  See L<guestfs(3)/SELINUX>."
20252 msgstr ""
20253
20254 #. type: =item
20255 #: ../fish/guestfish.pod:388
20256 msgid "B<-v>"
20257 msgstr ""
20258
20259 #. type: =item
20260 #: ../fish/guestfish.pod:390
20261 msgid "B<--verbose>"
20262 msgstr ""
20263
20264 #. type: textblock
20265 #: ../fish/guestfish.pod:392
20266 msgid ""
20267 "Enable very verbose messages.  This is particularly useful if you find a bug."
20268 msgstr ""
20269
20270 #. type: =item
20271 #: ../fish/guestfish.pod:395
20272 msgid "B<-V>"
20273 msgstr ""
20274
20275 #. type: =item
20276 #: ../fish/guestfish.pod:397 ../tools/virt-edit.pl:97
20277 #: ../tools/virt-win-reg.pl:112 ../tools/virt-list-filesystems.pl:69
20278 #: ../tools/virt-tar.pl:119 ../tools/virt-make-fs.pl:169
20279 #: ../tools/virt-list-partitions.pl:70
20280 msgid "B<--version>"
20281 msgstr ""
20282
20283 #. type: textblock
20284 #: ../fish/guestfish.pod:399
20285 msgid "Display the guestfish / libguestfs version number and exit."
20286 msgstr ""
20287
20288 #. type: =item
20289 #: ../fish/guestfish.pod:401
20290 msgid "B<-w>"
20291 msgstr ""
20292
20293 #. type: =item
20294 #: ../fish/guestfish.pod:403
20295 msgid "B<--rw>"
20296 msgstr ""
20297
20298 #. type: textblock
20299 #: ../fish/guestfish.pod:405 ../fuse/guestmount.pod:249
20300 msgid ""
20301 "This changes the I<-a>, I<-d> and I<-m> options so that disks are added and "
20302 "mounts are done read-write."
20303 msgstr ""
20304
20305 #. type: textblock
20306 #: ../fish/guestfish.pod:408
20307 msgid "See L</OPENING DISKS FOR READ AND WRITE> below."
20308 msgstr ""
20309
20310 #. type: =item
20311 #: ../fish/guestfish.pod:410
20312 msgid "B<-x>"
20313 msgstr ""
20314
20315 #. type: textblock
20316 #: ../fish/guestfish.pod:412
20317 msgid "Echo each command before executing it."
20318 msgstr ""
20319
20320 #. type: =head1
20321 #: ../fish/guestfish.pod:416
20322 msgid "COMMANDS ON COMMAND LINE"
20323 msgstr ""
20324
20325 #. type: textblock
20326 #: ../fish/guestfish.pod:418
20327 msgid ""
20328 "Any additional (non-option) arguments are treated as commands to execute."
20329 msgstr ""
20330
20331 #. type: textblock
20332 #: ../fish/guestfish.pod:421
20333 msgid ""
20334 "Commands to execute should be separated by a colon (C<:>), where the colon "
20335 "is a separate parameter.  Thus:"
20336 msgstr ""
20337
20338 #. type: verbatim
20339 #: ../fish/guestfish.pod:424
20340 #, no-wrap
20341 msgid ""
20342 " guestfish cmd [args...] : cmd [args...] : cmd [args...] ...\n"
20343 "\n"
20344 msgstr ""
20345
20346 #. type: textblock
20347 #: ../fish/guestfish.pod:426
20348 msgid ""
20349 "If there are no additional arguments, then we enter a shell, either an "
20350 "interactive shell with a prompt (if the input is a terminal) or a non-"
20351 "interactive shell."
20352 msgstr ""
20353
20354 #. type: textblock
20355 #: ../fish/guestfish.pod:430
20356 msgid ""
20357 "In either command line mode or non-interactive shell, the first command that "
20358 "gives an error causes the whole shell to exit.  In interactive mode (with a "
20359 "prompt) if a command fails, you can continue to enter commands."
20360 msgstr ""
20361
20362 #. type: =head1
20363 #: ../fish/guestfish.pod:435
20364 msgid "USING launch (OR run)"
20365 msgstr ""
20366
20367 #. type: textblock
20368 #: ../fish/guestfish.pod:437
20369 msgid ""
20370 "As with L<guestfs(3)>, you must first configure your guest by adding disks, "
20371 "then launch it, then mount any disks you need, and finally issue actions/"
20372 "commands.  So the general order of the day is:"
20373 msgstr ""
20374
20375 #. type: textblock
20376 #: ../fish/guestfish.pod:445
20377 msgid "add or -a/--add"
20378 msgstr ""
20379
20380 #. type: textblock
20381 #: ../fish/guestfish.pod:449
20382 msgid "launch (aka run)"
20383 msgstr ""
20384
20385 #. type: textblock
20386 #: ../fish/guestfish.pod:453
20387 msgid "mount or -m/--mount"
20388 msgstr ""
20389
20390 #. type: textblock
20391 #: ../fish/guestfish.pod:457
20392 msgid "any other commands"
20393 msgstr ""
20394
20395 #. type: textblock
20396 #: ../fish/guestfish.pod:461
20397 msgid ""
20398 "C<run> is a synonym for C<launch>.  You must C<launch> (or C<run>)  your "
20399 "guest before mounting or performing any other commands."
20400 msgstr ""
20401
20402 #. type: textblock
20403 #: ../fish/guestfish.pod:464
20404 msgid ""
20405 "The only exception is that if any of the I<-i>, I<-m>, I<--mount>, I<-N> or "
20406 "I<--new> options were given then C<run> is done automatically, simply "
20407 "because guestfish can't perform the action you asked for without doing this."
20408 msgstr ""
20409
20410 #. type: =head1
20411 #: ../fish/guestfish.pod:469
20412 msgid "OPENING DISKS FOR READ AND WRITE"
20413 msgstr ""
20414
20415 #. type: textblock
20416 #: ../fish/guestfish.pod:471
20417 msgid ""
20418 "The guestfish, L<guestmount(1)> and L<virt-rescue(1)> options I<--ro> and "
20419 "I<--rw> affect whether the other command line options I<-a>, I<-c>, I<-d>, "
20420 "I<-i> and I<-m> open disk images read-only or for writing."
20421 msgstr ""
20422
20423 #. type: textblock
20424 #: ../fish/guestfish.pod:476
20425 msgid ""
20426 "In libguestfs E<le> 1.10, guestfish, guestmount and virt-rescue defaulted to "
20427 "opening disk images supplied on the command line for write.  To open a disk "
20428 "image read-only you have to do I<-a image --ro>."
20429 msgstr ""
20430
20431 #. type: textblock
20432 #: ../fish/guestfish.pod:480
20433 msgid ""
20434 "This matters: If you accidentally open a live VM disk image writable then "
20435 "you will cause irreversible disk corruption."
20436 msgstr ""
20437
20438 #. type: textblock
20439 #: ../fish/guestfish.pod:483
20440 msgid ""
20441 "By libguestfs 1.12 we intend to change the default the other way.  Disk "
20442 "images will be opened read-only.  You will have to either specify "
20443 "I<guestfish --rw>, I<guestmount --rw>, I<virt-rescue --rw>, or change the "
20444 "configuration file C</etc/libguestfs-tools.conf> in order to get write "
20445 "access for disk images specified by those other command line options."
20446 msgstr ""
20447
20448 #. type: textblock
20449 #: ../fish/guestfish.pod:490
20450 msgid ""
20451 "This version of guestfish, guestmount and virt-rescue has a I<--rw> option "
20452 "which does nothing (it is already the default).  However it is highly "
20453 "recommended that you use this option to indicate that you need write access, "
20454 "and prepare your scripts for the day when this option will be required for "
20455 "write access."
20456 msgstr ""
20457
20458 #. type: textblock
20459 #: ../fish/guestfish.pod:496
20460 msgid ""
20461 "B<Note:> This does I<not> affect commands like L</add> and L</mount>, or any "
20462 "other libguestfs program apart from guestfish and guestmount."
20463 msgstr ""
20464
20465 #. type: =head1
20466 #: ../fish/guestfish.pod:499
20467 msgid "QUOTING"
20468 msgstr ""
20469
20470 #. type: textblock
20471 #: ../fish/guestfish.pod:501
20472 msgid ""
20473 "You can quote ordinary parameters using either single or double quotes.  For "
20474 "example:"
20475 msgstr ""
20476
20477 #. type: verbatim
20478 #: ../fish/guestfish.pod:504
20479 #, no-wrap
20480 msgid ""
20481 " add \"file with a space.img\"\n"
20482 "\n"
20483 msgstr ""
20484
20485 #. type: verbatim
20486 #: ../fish/guestfish.pod:506
20487 #, no-wrap
20488 msgid ""
20489 " rm '/file name'\n"
20490 "\n"
20491 msgstr ""
20492
20493 #. type: verbatim
20494 #: ../fish/guestfish.pod:508
20495 #, no-wrap
20496 msgid ""
20497 " rm '/\"'\n"
20498 "\n"
20499 msgstr ""
20500
20501 #. type: textblock
20502 #: ../fish/guestfish.pod:510
20503 msgid ""
20504 "A few commands require a list of strings to be passed.  For these, use a "
20505 "whitespace-separated list, enclosed in quotes.  Strings containing "
20506 "whitespace to be passed through must be enclosed in single quotes.  A "
20507 "literal single quote must be escaped with a backslash."
20508 msgstr ""
20509
20510 #. type: verbatim
20511 #: ../fish/guestfish.pod:515
20512 #, no-wrap
20513 msgid ""
20514 " vgcreate VG \"/dev/sda1 /dev/sdb1\"\n"
20515 " command \"/bin/echo 'foo      bar'\"\n"
20516 " command \"/bin/echo \\'foo\\'\"\n"
20517 "\n"
20518 msgstr ""
20519
20520 #. type: =head1
20521 #: ../fish/guestfish.pod:519
20522 msgid "OPTIONAL ARGUMENTS"
20523 msgstr ""
20524
20525 #. type: textblock
20526 #: ../fish/guestfish.pod:521
20527 msgid ""
20528 "Some commands take optional arguments.  These arguments appear in this "
20529 "documentation as C<[argname:..]>.  You can use them as in these examples:"
20530 msgstr ""
20531
20532 #. type: verbatim
20533 #: ../fish/guestfish.pod:525
20534 #, no-wrap
20535 msgid ""
20536 " add-drive-opts filename\n"
20537 "\n"
20538 msgstr ""
20539
20540 #. type: verbatim
20541 #: ../fish/guestfish.pod:527
20542 #, no-wrap
20543 msgid ""
20544 " add-drive-opts filename readonly:true\n"
20545 "\n"
20546 msgstr ""
20547
20548 #. type: verbatim
20549 #: ../fish/guestfish.pod:529
20550 #, no-wrap
20551 msgid ""
20552 " add-drive-opts filename format:qcow2 readonly:false\n"
20553 "\n"
20554 msgstr ""
20555
20556 #. type: textblock
20557 #: ../fish/guestfish.pod:531
20558 msgid ""
20559 "Each optional argument can appear at most once.  All optional arguments must "
20560 "appear after the required ones."
20561 msgstr ""
20562
20563 #. type: =head1
20564 #: ../fish/guestfish.pod:534
20565 msgid "NUMBERS"
20566 msgstr ""
20567
20568 #. type: textblock
20569 #: ../fish/guestfish.pod:536
20570 msgid ""
20571 "This section applies to all commands which can take integers as parameters."
20572 msgstr ""
20573
20574 #. type: =head2
20575 #: ../fish/guestfish.pod:539
20576 msgid "SIZE SUFFIX"
20577 msgstr ""
20578
20579 #. type: textblock
20580 #: ../fish/guestfish.pod:541
20581 msgid ""
20582 "When the command takes a parameter measured in bytes, you can use one of the "
20583 "following suffixes to specify kilobytes, megabytes and larger sizes:"
20584 msgstr ""
20585
20586 #. type: =item
20587 #: ../fish/guestfish.pod:547
20588 msgid "B<k> or B<K> or B<KiB>"
20589 msgstr ""
20590
20591 #. type: textblock
20592 #: ../fish/guestfish.pod:549
20593 msgid "The size in kilobytes (multiplied by 1024)."
20594 msgstr ""
20595
20596 #. type: =item
20597 #: ../fish/guestfish.pod:551
20598 msgid "B<KB>"
20599 msgstr ""
20600
20601 #. type: textblock
20602 #: ../fish/guestfish.pod:553
20603 msgid "The size in SI 1000 byte units."
20604 msgstr ""
20605
20606 #. type: =item
20607 #: ../fish/guestfish.pod:555
20608 msgid "B<M> or B<MiB>"
20609 msgstr ""
20610
20611 #. type: textblock
20612 #: ../fish/guestfish.pod:557
20613 msgid "The size in megabytes (multiplied by 1048576)."
20614 msgstr ""
20615
20616 #. type: =item
20617 #: ../fish/guestfish.pod:559
20618 msgid "B<MB>"
20619 msgstr ""
20620
20621 #. type: textblock
20622 #: ../fish/guestfish.pod:561
20623 msgid "The size in SI 1000000 byte units."
20624 msgstr ""
20625
20626 #. type: =item
20627 #: ../fish/guestfish.pod:563
20628 msgid "B<G> or B<GiB>"
20629 msgstr ""
20630
20631 #. type: textblock
20632 #: ../fish/guestfish.pod:565
20633 msgid "The size in gigabytes (multiplied by 2**30)."
20634 msgstr ""
20635
20636 #. type: =item
20637 #: ../fish/guestfish.pod:567
20638 msgid "B<GB>"
20639 msgstr ""
20640
20641 #. type: textblock
20642 #: ../fish/guestfish.pod:569
20643 msgid "The size in SI 10**9 byte units."
20644 msgstr ""
20645
20646 #. type: =item
20647 #: ../fish/guestfish.pod:571
20648 msgid "B<T> or B<TiB>"
20649 msgstr ""
20650
20651 #. type: textblock
20652 #: ../fish/guestfish.pod:573
20653 msgid "The size in terabytes (multiplied by 2**40)."
20654 msgstr ""
20655
20656 #. type: =item
20657 #: ../fish/guestfish.pod:575
20658 msgid "B<TB>"
20659 msgstr ""
20660
20661 #. type: textblock
20662 #: ../fish/guestfish.pod:577
20663 msgid "The size in SI 10**12 byte units."
20664 msgstr ""
20665
20666 #. type: =item
20667 #: ../fish/guestfish.pod:579
20668 msgid "B<P> or B<PiB>"
20669 msgstr ""
20670
20671 #. type: textblock
20672 #: ../fish/guestfish.pod:581
20673 msgid "The size in petabytes (multiplied by 2**50)."
20674 msgstr ""
20675
20676 #. type: =item
20677 #: ../fish/guestfish.pod:583
20678 msgid "B<PB>"
20679 msgstr ""
20680
20681 #. type: textblock
20682 #: ../fish/guestfish.pod:585
20683 msgid "The size in SI 10**15 byte units."
20684 msgstr ""
20685
20686 #. type: =item
20687 #: ../fish/guestfish.pod:587
20688 msgid "B<E> or B<EiB>"
20689 msgstr ""
20690
20691 #. type: textblock
20692 #: ../fish/guestfish.pod:589
20693 msgid "The size in exabytes (multiplied by 2**60)."
20694 msgstr ""
20695
20696 #. type: =item
20697 #: ../fish/guestfish.pod:591
20698 msgid "B<EB>"
20699 msgstr ""
20700
20701 #. type: textblock
20702 #: ../fish/guestfish.pod:593
20703 msgid "The size in SI 10**18 byte units."
20704 msgstr ""
20705
20706 #. type: =item
20707 #: ../fish/guestfish.pod:595
20708 msgid "B<Z> or B<ZiB>"
20709 msgstr ""
20710
20711 #. type: textblock
20712 #: ../fish/guestfish.pod:597
20713 msgid "The size in zettabytes (multiplied by 2**70)."
20714 msgstr ""
20715
20716 #. type: =item
20717 #: ../fish/guestfish.pod:599
20718 msgid "B<ZB>"
20719 msgstr ""
20720
20721 #. type: textblock
20722 #: ../fish/guestfish.pod:601
20723 msgid "The size in SI 10**21 byte units."
20724 msgstr ""
20725
20726 #. type: =item
20727 #: ../fish/guestfish.pod:603
20728 msgid "B<Y> or B<YiB>"
20729 msgstr ""
20730
20731 #. type: textblock
20732 #: ../fish/guestfish.pod:605
20733 msgid "The size in yottabytes (multiplied by 2**80)."
20734 msgstr ""
20735
20736 #. type: =item
20737 #: ../fish/guestfish.pod:607
20738 msgid "B<YB>"
20739 msgstr ""
20740
20741 #. type: textblock
20742 #: ../fish/guestfish.pod:609
20743 msgid "The size in SI 10**24 byte units."
20744 msgstr ""
20745
20746 #. type: verbatim
20747 #: ../fish/guestfish.pod:615
20748 #, no-wrap
20749 msgid ""
20750 " truncate-size /file 1G\n"
20751 "\n"
20752 msgstr ""
20753
20754 #. type: textblock
20755 #: ../fish/guestfish.pod:617
20756 msgid "would truncate the file to 1 gigabyte."
20757 msgstr ""
20758
20759 #. type: textblock
20760 #: ../fish/guestfish.pod:619
20761 msgid ""
20762 "Be careful because a few commands take sizes in kilobytes or megabytes (eg. "
20763 "the parameter to L</memsize> is specified in megabytes already).  Adding a "
20764 "suffix will probably not do what you expect."
20765 msgstr ""
20766
20767 #. type: =head2
20768 #: ../fish/guestfish.pod:623
20769 msgid "OCTAL AND HEXADECIMAL NUMBERS"
20770 msgstr ""
20771
20772 #. type: textblock
20773 #: ../fish/guestfish.pod:625
20774 msgid ""
20775 "For specifying the radix (base) use the C convention: C<0> to prefix an "
20776 "octal number or C<0x> to prefix a hexadecimal number.  For example:"
20777 msgstr ""
20778
20779 #. type: verbatim
20780 #: ../fish/guestfish.pod:628
20781 #, no-wrap
20782 msgid ""
20783 " 1234      decimal number 1234\n"
20784 " 02322     octal number, equivalent to decimal 1234\n"
20785 " 0x4d2     hexadecimal number, equivalent to decimal 1234\n"
20786 "\n"
20787 msgstr ""
20788
20789 #. type: textblock
20790 #: ../fish/guestfish.pod:632
20791 msgid ""
20792 "When using the C<chmod> command, you almost always want to specify an octal "
20793 "number for the mode, and you must prefix it with C<0> (unlike the Unix "
20794 "L<chmod(1)> program):"
20795 msgstr ""
20796
20797 #. type: verbatim
20798 #: ../fish/guestfish.pod:636
20799 #, no-wrap
20800 msgid ""
20801 " chmod 0777 /public  # OK\n"
20802 " chmod 777 /public   # WRONG! This is mode 777 decimal = 01411 octal.\n"
20803 "\n"
20804 msgstr ""
20805
20806 #. type: textblock
20807 #: ../fish/guestfish.pod:639
20808 msgid ""
20809 "Commands that return numbers usually print them in decimal, but some "
20810 "commands print numbers in other radices (eg. C<umask> prints the mode in "
20811 "octal, preceeded by C<0>)."
20812 msgstr ""
20813
20814 #. type: =head1
20815 #: ../fish/guestfish.pod:643
20816 msgid "WILDCARDS AND GLOBBING"
20817 msgstr ""
20818
20819 #. type: textblock
20820 #: ../fish/guestfish.pod:645
20821 msgid ""
20822 "Neither guestfish nor the underlying guestfs API performs wildcard expansion "
20823 "(globbing) by default.  So for example the following will not do what you "
20824 "expect:"
20825 msgstr ""
20826
20827 #. type: verbatim
20828 #: ../fish/guestfish.pod:649
20829 #, no-wrap
20830 msgid ""
20831 " rm-rf /home/*\n"
20832 "\n"
20833 msgstr ""
20834
20835 #. type: textblock
20836 #: ../fish/guestfish.pod:651
20837 msgid ""
20838 "Assuming you don't have a directory called literally C</home/*> then the "
20839 "above command will return an error."
20840 msgstr ""
20841
20842 #. type: textblock
20843 #: ../fish/guestfish.pod:654
20844 msgid "To perform wildcard expansion, use the C<glob> command."
20845 msgstr ""
20846
20847 #. type: verbatim
20848 #: ../fish/guestfish.pod:656
20849 #, no-wrap
20850 msgid ""
20851 " glob rm-rf /home/*\n"
20852 "\n"
20853 msgstr ""
20854
20855 #. type: textblock
20856 #: ../fish/guestfish.pod:658
20857 msgid ""
20858 "runs C<rm-rf> on each path that matches (ie. potentially running the command "
20859 "many times), equivalent to:"
20860 msgstr ""
20861
20862 #. type: verbatim
20863 #: ../fish/guestfish.pod:661
20864 #, no-wrap
20865 msgid ""
20866 " rm-rf /home/jim\n"
20867 " rm-rf /home/joe\n"
20868 " rm-rf /home/mary\n"
20869 "\n"
20870 msgstr ""
20871
20872 #. type: textblock
20873 #: ../fish/guestfish.pod:665
20874 msgid "C<glob> only works on simple guest paths and not on device names."
20875 msgstr ""
20876
20877 #. type: textblock
20878 #: ../fish/guestfish.pod:667
20879 msgid ""
20880 "If you have several parameters, each containing a wildcard, then glob will "
20881 "perform a Cartesian product."
20882 msgstr ""
20883
20884 #. type: =head1
20885 #: ../fish/guestfish.pod:670
20886 msgid "COMMENTS"
20887 msgstr ""
20888
20889 #. type: textblock
20890 #: ../fish/guestfish.pod:672
20891 msgid ""
20892 "Any line which starts with a I<#> character is treated as a comment and "
20893 "ignored.  The I<#> can optionally be preceeded by whitespace, but B<not> by "
20894 "a command.  For example:"
20895 msgstr ""
20896
20897 #. type: verbatim
20898 #: ../fish/guestfish.pod:676
20899 #, no-wrap
20900 msgid ""
20901 " # this is a comment\n"
20902 "         # this is a comment\n"
20903 " foo # NOT a comment\n"
20904 "\n"
20905 msgstr ""
20906
20907 #. type: textblock
20908 #: ../fish/guestfish.pod:680
20909 msgid "Blank lines are also ignored."
20910 msgstr ""
20911
20912 #. type: =head1
20913 #: ../fish/guestfish.pod:682
20914 msgid "RUNNING COMMANDS LOCALLY"
20915 msgstr ""
20916
20917 #. type: textblock
20918 #: ../fish/guestfish.pod:684
20919 msgid ""
20920 "Any line which starts with a I<!> character is treated as a command sent to "
20921 "the local shell (C</bin/sh> or whatever L<system(3)> uses).  For example:"
20922 msgstr ""
20923
20924 #. type: verbatim
20925 #: ../fish/guestfish.pod:688
20926 #, no-wrap
20927 msgid ""
20928 " !mkdir local\n"
20929 " tgz-out /remote local/remote-data.tar.gz\n"
20930 "\n"
20931 msgstr ""
20932
20933 #. type: textblock
20934 #: ../fish/guestfish.pod:691
20935 msgid ""
20936 "will create a directory C<local> on the host, and then export the contents "
20937 "of C</remote> on the mounted filesystem to C<local/remote-data.tar.gz>.  "
20938 "(See C<tgz-out>)."
20939 msgstr ""
20940
20941 #. type: textblock
20942 #: ../fish/guestfish.pod:695
20943 msgid ""
20944 "To change the local directory, use the C<lcd> command.  C<!cd> will have no "
20945 "effect, due to the way that subprocesses work in Unix."
20946 msgstr ""
20947
20948 #. type: =head2
20949 #: ../fish/guestfish.pod:698
20950 msgid "LOCAL COMMANDS WITH INLINE EXECUTION"
20951 msgstr ""
20952
20953 #. type: textblock
20954 #: ../fish/guestfish.pod:700
20955 msgid ""
20956 "If a line starts with I<E<lt>!> then the shell command is executed (as for "
20957 "I<!>), but subsequently any output (stdout) of the shell command is parsed "
20958 "and executed as guestfish commands."
20959 msgstr ""
20960
20961 #. type: textblock
20962 #: ../fish/guestfish.pod:704
20963 msgid ""
20964 "Thus you can use shell script to construct arbitrary guestfish commands "
20965 "which are then parsed by guestfish."
20966 msgstr ""
20967
20968 #. type: textblock
20969 #: ../fish/guestfish.pod:707
20970 msgid ""
20971 "For example it is tedious to create a sequence of files (eg. C</foo.1> "
20972 "through C</foo.100>) using guestfish commands alone.  However this is simple "
20973 "if we use a shell script to create the guestfish commands for us:"
20974 msgstr ""
20975
20976 #. type: verbatim
20977 #: ../fish/guestfish.pod:712
20978 #, no-wrap
20979 msgid ""
20980 " <! for n in `seq 1 100`; do echo write /foo.$n $n; done\n"
20981 "\n"
20982 msgstr ""
20983
20984 #. type: textblock
20985 #: ../fish/guestfish.pod:714
20986 msgid "or with names like C</foo.001>:"
20987 msgstr ""
20988
20989 #. type: verbatim
20990 #: ../fish/guestfish.pod:716
20991 #, no-wrap
20992 msgid ""
20993 " <! for n in `seq 1 100`; do printf \"write /foo.%03d %d\\n\" $n $n; done\n"
20994 "\n"
20995 msgstr ""
20996
20997 #. type: textblock
20998 #: ../fish/guestfish.pod:718
20999 msgid ""
21000 "When using guestfish interactively it can be helpful to just run the shell "
21001 "script first (ie. remove the initial C<E<lt>> character so it is just an "
21002 "ordinary I<!> local command), see what guestfish commands it would run, and "
21003 "when you are happy with those prepend the C<E<lt>> character to run the "
21004 "guestfish commands for real."
21005 msgstr ""
21006
21007 #. type: =head1
21008 #: ../fish/guestfish.pod:724
21009 msgid "PIPES"
21010 msgstr ""
21011
21012 #. type: textblock
21013 #: ../fish/guestfish.pod:726
21014 msgid ""
21015 "Use C<command E<lt>spaceE<gt> | command> to pipe the output of the first "
21016 "command (a guestfish command) to the second command (any host command).  For "
21017 "example:"
21018 msgstr ""
21019
21020 #. type: verbatim
21021 #: ../fish/guestfish.pod:730
21022 #, no-wrap
21023 msgid ""
21024 " cat /etc/passwd | awk -F: '$3 == 0 { print }'\n"
21025 "\n"
21026 msgstr ""
21027
21028 #. type: textblock
21029 #: ../fish/guestfish.pod:732
21030 msgid ""
21031 "(where C<cat> is the guestfish cat command, but C<awk> is the host awk "
21032 "program).  The above command would list all accounts in the guest filesystem "
21033 "which have UID 0, ie. root accounts including backdoors.  Other examples:"
21034 msgstr ""
21035
21036 #. type: verbatim
21037 #: ../fish/guestfish.pod:737
21038 #, no-wrap
21039 msgid ""
21040 " hexdump /bin/ls | head\n"
21041 " list-devices | tail -1\n"
21042 " tgz-out / - | tar ztf -\n"
21043 "\n"
21044 msgstr ""
21045
21046 #. type: textblock
21047 #: ../fish/guestfish.pod:741
21048 msgid ""
21049 "The space before the pipe symbol is required, any space after the pipe "
21050 "symbol is optional.  Everything after the pipe symbol is just passed "
21051 "straight to the host shell, so it can contain redirections, globs and "
21052 "anything else that makes sense on the host side."
21053 msgstr ""
21054
21055 #. type: textblock
21056 #: ../fish/guestfish.pod:746
21057 msgid ""
21058 "To use a literal argument which begins with a pipe symbol, you have to quote "
21059 "it, eg:"
21060 msgstr ""
21061
21062 #. type: verbatim
21063 #: ../fish/guestfish.pod:749
21064 #, no-wrap
21065 msgid ""
21066 " echo \"|\"\n"
21067 "\n"
21068 msgstr ""
21069
21070 #. type: =head1
21071 #: ../fish/guestfish.pod:751
21072 msgid "HOME DIRECTORIES"
21073 msgstr ""
21074
21075 #. type: textblock
21076 #: ../fish/guestfish.pod:753
21077 msgid ""
21078 "If a parameter starts with the character C<~> then the tilde may be expanded "
21079 "as a home directory path (either C<~> for the current user's home directory, "
21080 "or C<~user> for another user)."
21081 msgstr ""
21082
21083 #. type: textblock
21084 #: ../fish/guestfish.pod:757
21085 msgid ""
21086 "Note that home directory expansion happens for users known I<on the host>, "
21087 "not in the guest filesystem."
21088 msgstr ""
21089
21090 #. type: textblock
21091 #: ../fish/guestfish.pod:760
21092 msgid ""
21093 "To use a literal argument which begins with a tilde, you have to quote it, "
21094 "eg:"
21095 msgstr ""
21096
21097 #. type: verbatim
21098 #: ../fish/guestfish.pod:763
21099 #, no-wrap
21100 msgid ""
21101 " echo \"~\"\n"
21102 "\n"
21103 msgstr ""
21104
21105 #. type: textblock
21106 #: ../fish/guestfish.pod:767
21107 msgid ""
21108 "Libguestfs has some support for Linux guests encrypted according to the "
21109 "Linux Unified Key Setup (LUKS) standard, which includes nearly all whole "
21110 "disk encryption systems used by modern Linux guests.  Currently only LVM-on-"
21111 "LUKS is supported."
21112 msgstr ""
21113
21114 #. type: textblock
21115 #: ../fish/guestfish.pod:772
21116 msgid "Identify encrypted block devices and partitions using L</vfs-type>:"
21117 msgstr ""
21118
21119 #. type: verbatim
21120 #: ../fish/guestfish.pod:774
21121 #, no-wrap
21122 msgid ""
21123 " ><fs> vfs-type /dev/sda2\n"
21124 " crypto_LUKS\n"
21125 "\n"
21126 msgstr ""
21127
21128 #. type: textblock
21129 #: ../fish/guestfish.pod:777
21130 msgid ""
21131 "Then open those devices using L</luks-open>.  This creates a device-mapper "
21132 "device called C</dev/mapper/luksdev>."
21133 msgstr ""
21134
21135 #. type: verbatim
21136 #: ../fish/guestfish.pod:780
21137 #, no-wrap
21138 msgid ""
21139 " ><fs> luks-open /dev/sda2 luksdev\n"
21140 " Enter key or passphrase (\"key\"): <enter the passphrase>\n"
21141 "\n"
21142 msgstr ""
21143
21144 #. type: textblock
21145 #: ../fish/guestfish.pod:783
21146 msgid ""
21147 "Finally you have to tell LVM to scan for volume groups on the newly created "
21148 "mapper device:"
21149 msgstr ""
21150
21151 #. type: verbatim
21152 #: ../fish/guestfish.pod:786
21153 #, no-wrap
21154 msgid ""
21155 " vgscan\n"
21156 " vg-activate-all true\n"
21157 "\n"
21158 msgstr ""
21159
21160 #. type: textblock
21161 #: ../fish/guestfish.pod:789
21162 msgid "The logical volume(s) can now be mounted in the usual way."
21163 msgstr ""
21164
21165 #. type: textblock
21166 #: ../fish/guestfish.pod:791
21167 msgid ""
21168 "Before closing a LUKS device you must unmount any logical volumes on it and "
21169 "deactivate the volume groups by calling C<vg-activate false VG> on each "
21170 "one.  Then you can close the mapper device:"
21171 msgstr ""
21172
21173 #. type: verbatim
21174 #: ../fish/guestfish.pod:795
21175 #, no-wrap
21176 msgid ""
21177 " vg-activate false /dev/VG\n"
21178 " luks-close /dev/mapper/luksdev\n"
21179 "\n"
21180 msgstr ""
21181
21182 #. type: =head1
21183 #: ../fish/guestfish.pod:798 ../tools/virt-edit.pl:342
21184 msgid "WINDOWS PATHS"
21185 msgstr ""
21186
21187 #. type: textblock
21188 #: ../fish/guestfish.pod:800
21189 msgid ""
21190 "If a path is prefixed with C<win:> then you can use Windows-style drive "
21191 "letters and paths (with some limitations).  The following commands are "
21192 "equivalent:"
21193 msgstr ""
21194
21195 #. type: verbatim
21196 #: ../fish/guestfish.pod:804
21197 #, no-wrap
21198 msgid ""
21199 " file /WINDOWS/system32/config/system.LOG\n"
21200 "\n"
21201 msgstr ""
21202
21203 #. type: verbatim
21204 #: ../fish/guestfish.pod:806
21205 #, no-wrap
21206 msgid ""
21207 " file win:\\windows\\system32\\config\\system.log\n"
21208 "\n"
21209 msgstr ""
21210
21211 #. type: verbatim
21212 #: ../fish/guestfish.pod:808
21213 #, no-wrap
21214 msgid ""
21215 " file WIN:C:\\Windows\\SYSTEM32\\CONFIG\\SYSTEM.LOG\n"
21216 "\n"
21217 msgstr ""
21218
21219 #. type: textblock
21220 #: ../fish/guestfish.pod:810
21221 msgid ""
21222 "The parameter is rewritten \"behind the scenes\" by looking up the position "
21223 "where the drive is mounted, prepending that to the path, changing all "
21224 "backslash characters to forward slash, then resolving the result using L</"
21225 "case-sensitive-path>.  For example if the E: drive was mounted on C</e> then "
21226 "the parameter might be rewritten like this:"
21227 msgstr ""
21228
21229 #. type: verbatim
21230 #: ../fish/guestfish.pod:816
21231 #, no-wrap
21232 msgid ""
21233 " win:e:\\foo\\bar => /e/FOO/bar\n"
21234 "\n"
21235 msgstr ""
21236
21237 #. type: textblock
21238 #: ../fish/guestfish.pod:818
21239 msgid "This only works in argument positions that expect a path."
21240 msgstr ""
21241
21242 #. type: =head1
21243 #: ../fish/guestfish.pod:820
21244 msgid "UPLOADING AND DOWNLOADING FILES"
21245 msgstr ""
21246
21247 #. type: textblock
21248 #: ../fish/guestfish.pod:822
21249 msgid ""
21250 "For commands such as C<upload>, C<download>, C<tar-in>, C<tar-out> and "
21251 "others which upload from or download to a local file, you can use the "
21252 "special filename C<-> to mean \"from stdin\" or \"to stdout\".  For example:"
21253 msgstr ""
21254
21255 #. type: verbatim
21256 #: ../fish/guestfish.pod:826
21257 #, no-wrap
21258 msgid ""
21259 " upload - /foo\n"
21260 "\n"
21261 msgstr ""
21262
21263 #. type: textblock
21264 #: ../fish/guestfish.pod:828
21265 msgid ""
21266 "reads stdin and creates from that a file C</foo> in the disk image, and:"
21267 msgstr ""
21268
21269 #. type: verbatim
21270 #: ../fish/guestfish.pod:831
21271 #, no-wrap
21272 msgid ""
21273 " tar-out /etc - | tar tf -\n"
21274 "\n"
21275 msgstr ""
21276
21277 #. type: textblock
21278 #: ../fish/guestfish.pod:833
21279 msgid ""
21280 "writes the tarball to stdout and then pipes that into the external \"tar\" "
21281 "command (see L</PIPES>)."
21282 msgstr ""
21283
21284 #. type: textblock
21285 #: ../fish/guestfish.pod:836
21286 msgid ""
21287 "When using C<-> to read from stdin, the input is read up to the end of "
21288 "stdin.  You can also use a special \"heredoc\"-like syntax to read up to "
21289 "some arbitrary end marker:"
21290 msgstr ""
21291
21292 #. type: verbatim
21293 #: ../fish/guestfish.pod:840
21294 #, no-wrap
21295 msgid ""
21296 " upload -<<END /foo\n"
21297 " input line 1\n"
21298 " input line 2\n"
21299 " input line 3\n"
21300 " END\n"
21301 "\n"
21302 msgstr ""
21303
21304 #. type: textblock
21305 #: ../fish/guestfish.pod:846
21306 msgid ""
21307 "Any string of characters can be used instead of C<END>.  The end marker must "
21308 "appear on a line of its own, without any preceeding or following characters "
21309 "(not even spaces)."
21310 msgstr ""
21311
21312 #. type: textblock
21313 #: ../fish/guestfish.pod:850
21314 msgid ""
21315 "Note that the C<-E<lt>E<lt>> syntax only applies to parameters used to "
21316 "upload local files (so-called \"FileIn\" parameters in the generator)."
21317 msgstr ""
21318
21319 #. type: =head1
21320 #: ../fish/guestfish.pod:853
21321 msgid "EXIT ON ERROR BEHAVIOUR"
21322 msgstr ""
21323
21324 #. type: textblock
21325 #: ../fish/guestfish.pod:855
21326 msgid ""
21327 "By default, guestfish will ignore any errors when in interactive mode (ie. "
21328 "taking commands from a human over a tty), and will exit on the first error "
21329 "in non-interactive mode (scripts, commands given on the command line)."
21330 msgstr ""
21331
21332 #. type: textblock
21333 #: ../fish/guestfish.pod:860
21334 msgid ""
21335 "If you prefix a command with a I<-> character, then that command will not "
21336 "cause guestfish to exit, even if that (one) command returns an error."
21337 msgstr ""
21338
21339 #. type: =head1
21340 #: ../fish/guestfish.pod:864
21341 msgid "REMOTE CONTROL GUESTFISH OVER A SOCKET"
21342 msgstr ""
21343
21344 #. type: textblock
21345 #: ../fish/guestfish.pod:866
21346 msgid ""
21347 "Guestfish can be remote-controlled over a socket.  This is useful "
21348 "particularly in shell scripts where you want to make several different "
21349 "changes to a filesystem, but you don't want the overhead of starting up a "
21350 "guestfish process each time."
21351 msgstr ""
21352
21353 #. type: textblock
21354 #: ../fish/guestfish.pod:871
21355 msgid "Start a guestfish server process using:"
21356 msgstr ""
21357
21358 #. type: verbatim
21359 #: ../fish/guestfish.pod:873
21360 #, no-wrap
21361 msgid ""
21362 " eval \"`guestfish --listen`\"\n"
21363 "\n"
21364 msgstr ""
21365
21366 #. type: textblock
21367 #: ../fish/guestfish.pod:875
21368 msgid "and then send it commands by doing:"
21369 msgstr ""
21370
21371 #. type: verbatim
21372 #: ../fish/guestfish.pod:877
21373 #, no-wrap
21374 msgid ""
21375 " guestfish --remote cmd [...]\n"
21376 "\n"
21377 msgstr ""
21378
21379 #. type: textblock
21380 #: ../fish/guestfish.pod:879
21381 msgid "To cause the server to exit, send it the exit command:"
21382 msgstr ""
21383
21384 #. type: verbatim
21385 #: ../fish/guestfish.pod:881
21386 #, no-wrap
21387 msgid ""
21388 " guestfish --remote exit\n"
21389 "\n"
21390 msgstr ""
21391
21392 #. type: textblock
21393 #: ../fish/guestfish.pod:883
21394 msgid ""
21395 "Note that the server will normally exit if there is an error in a command.  "
21396 "You can change this in the usual way.  See section L</EXIT ON ERROR "
21397 "BEHAVIOUR>."
21398 msgstr ""
21399
21400 #. type: =head2
21401 #: ../fish/guestfish.pod:887
21402 msgid "CONTROLLING MULTIPLE GUESTFISH PROCESSES"
21403 msgstr ""
21404
21405 #. type: textblock
21406 #: ../fish/guestfish.pod:889
21407 msgid ""
21408 "The C<eval> statement sets the environment variable C<$GUESTFISH_PID>, which "
21409 "is how the I<--remote> option knows where to send the commands.  You can "
21410 "have several guestfish listener processes running using:"
21411 msgstr ""
21412
21413 #. type: verbatim
21414 #: ../fish/guestfish.pod:893
21415 #, no-wrap
21416 msgid ""
21417 " eval \"`guestfish --listen`\"\n"
21418 " pid1=$GUESTFISH_PID\n"
21419 " eval \"`guestfish --listen`\"\n"
21420 " pid2=$GUESTFISH_PID\n"
21421 " ...\n"
21422 " guestfish --remote=$pid1 cmd\n"
21423 " guestfish --remote=$pid2 cmd\n"
21424 "\n"
21425 msgstr ""
21426
21427 #. type: =head2
21428 #: ../fish/guestfish.pod:901
21429 msgid "REMOTE CONTROL AND CSH"
21430 msgstr ""
21431
21432 #. type: textblock
21433 #: ../fish/guestfish.pod:903
21434 msgid ""
21435 "When using csh-like shells (csh, tcsh etc) you have to add the I<--csh> "
21436 "option:"
21437 msgstr ""
21438
21439 #. type: verbatim
21440 #: ../fish/guestfish.pod:906
21441 #, no-wrap
21442 msgid ""
21443 " eval \"`guestfish --listen --csh`\"\n"
21444 "\n"
21445 msgstr ""
21446
21447 #. type: =head2
21448 #: ../fish/guestfish.pod:908
21449 msgid "REMOTE CONTROL DETAILS"
21450 msgstr ""
21451
21452 #. type: textblock
21453 #: ../fish/guestfish.pod:910
21454 msgid ""
21455 "Remote control happens over a Unix domain socket called C</tmp/.guestfish-"
21456 "$UID/socket-$PID>, where C<$UID> is the effective user ID of the process, "
21457 "and C<$PID> is the process ID of the server."
21458 msgstr ""
21459
21460 #. type: textblock
21461 #: ../fish/guestfish.pod:914
21462 msgid "Guestfish client and server versions must match exactly."
21463 msgstr ""
21464
21465 #. type: =head2
21466 #: ../fish/guestfish.pod:916
21467 msgid "REMOTE CONTROL RUN COMMAND HANGING"
21468 msgstr ""
21469
21470 #. type: textblock
21471 #: ../fish/guestfish.pod:918
21472 msgid ""
21473 "Using the C<run> (or C<launch>) command remotely in a command substitution "
21474 "context hangs, ie. don't do (note the backquotes):"
21475 msgstr ""
21476
21477 #. type: verbatim
21478 #: ../fish/guestfish.pod:921
21479 #, no-wrap
21480 msgid ""
21481 " a=`guestfish --remote run`\n"
21482 "\n"
21483 msgstr ""
21484
21485 #. type: textblock
21486 #: ../fish/guestfish.pod:923
21487 msgid ""
21488 "Since the C<run> command produces no output on stdout, this is not useful "
21489 "anyway.  For further information see L<https://bugzilla.redhat.com/show_bug."
21490 "cgi?id=592910>."
21491 msgstr ""
21492
21493 #. type: =head1
21494 #: ../fish/guestfish.pod:927
21495 msgid "PREPARED DISK IMAGES"
21496 msgstr ""
21497
21498 #. type: textblock
21499 #: ../fish/guestfish.pod:929
21500 msgid ""
21501 "Use the I<-N type> or I<--new type> parameter to select one of a set of "
21502 "preformatted disk images that guestfish can make for you to save typing.  "
21503 "This is particularly useful for testing purposes.  This option is used "
21504 "instead of the I<-a> option, and like I<-a> can appear multiple times (and "
21505 "can be mixed with I<-a>)."
21506 msgstr ""
21507
21508 #. type: textblock
21509 #: ../fish/guestfish.pod:935
21510 msgid ""
21511 "The new disk is called C<test1.img> for the first I<-N>, C<test2.img> for "
21512 "the second and so on.  Existing files in the current directory are "
21513 "I<overwritten>."
21514 msgstr ""
21515
21516 #. type: textblock
21517 #: ../fish/guestfish.pod:939
21518 msgid ""
21519 "The type briefly describes how the disk should be sized, partitioned, how "
21520 "filesystem(s) should be created, and how content should be added.  "
21521 "Optionally the type can be followed by extra parameters, separated by C<:> "
21522 "(colon) characters.  For example, I<-N fs> creates a default 100MB, sparsely-"
21523 "allocated disk, containing a single partition, with the partition formatted "
21524 "as ext2.  I<-N fs:ext4:1G> is the same, but for an ext4 filesystem on a 1GB "
21525 "disk instead."
21526 msgstr ""
21527
21528 #. type: textblock
21529 #: ../fish/guestfish.pod:947
21530 msgid "To list the available types and any extra parameters they take, run:"
21531 msgstr ""
21532
21533 #. type: textblock
21534 #: ../fish/guestfish.pod:951
21535 msgid ""
21536 "Note that the prepared filesystem is not mounted.  You would usually have to "
21537 "use the C<mount /dev/sda1 /> command or add the I<-m /dev/sda1> option."
21538 msgstr ""
21539
21540 #. type: textblock
21541 #: ../fish/guestfish.pod:955
21542 msgid ""
21543 "If any I<-N> or I<--new> options are given, the guest is automatically "
21544 "launched."
21545 msgstr ""
21546
21547 #. type: textblock
21548 #: ../fish/guestfish.pod:960
21549 msgid "Create a 100MB disk with an ext4-formatted partition:"
21550 msgstr ""
21551
21552 #. type: verbatim
21553 #: ../fish/guestfish.pod:962
21554 #, no-wrap
21555 msgid ""
21556 " guestfish -N fs:ext4\n"
21557 "\n"
21558 msgstr ""
21559
21560 #. type: textblock
21561 #: ../fish/guestfish.pod:964
21562 msgid "Create a 32MB disk with a VFAT-formatted partition, and mount it:"
21563 msgstr ""
21564
21565 #. type: verbatim
21566 #: ../fish/guestfish.pod:966
21567 #, no-wrap
21568 msgid ""
21569 " guestfish -N fs:vfat:32M -m /dev/sda1\n"
21570 "\n"
21571 msgstr ""
21572
21573 #. type: textblock
21574 #: ../fish/guestfish.pod:968
21575 msgid "Create a blank 200MB disk:"
21576 msgstr ""
21577
21578 #. type: verbatim
21579 #: ../fish/guestfish.pod:970
21580 #, no-wrap
21581 msgid ""
21582 " guestfish -N disk:200M\n"
21583 "\n"
21584 msgstr ""
21585
21586 #. type: =head1
21587 #: ../fish/guestfish.pod:972
21588 msgid "PROGRESS BARS"
21589 msgstr ""
21590
21591 #. type: textblock
21592 #: ../fish/guestfish.pod:974
21593 msgid ""
21594 "Some (not all) long-running commands send progress notification messages as "
21595 "they are running.  Guestfish turns these messages into progress bars."
21596 msgstr ""
21597
21598 #. type: textblock
21599 #: ../fish/guestfish.pod:978
21600 msgid ""
21601 "When a command that supports progress bars takes longer than two seconds to "
21602 "run, and if progress bars are enabled, then you will see one appearing below "
21603 "the command:"
21604 msgstr ""
21605
21606 #. type: verbatim
21607 #: ../fish/guestfish.pod:982
21608 #, no-wrap
21609 msgid ""
21610 " ><fs> copy-size /large-file /another-file 2048M\n"
21611 " / 10% [#####-----------------------------------------] 00:30\n"
21612 "\n"
21613 msgstr ""
21614
21615 #. type: textblock
21616 #: ../fish/guestfish.pod:985
21617 msgid ""
21618 "The spinner on the left hand side moves round once for every progress "
21619 "notification received from the backend.  This is a (reasonably) golden "
21620 "assurance that the command is \"doing something\" even if the progress bar "
21621 "is not moving, because the command is able to send the progress "
21622 "notifications.  When the bar reaches 100% and the command finishes, the "
21623 "spinner disappears."
21624 msgstr ""
21625
21626 #. type: textblock
21627 #: ../fish/guestfish.pod:992
21628 msgid ""
21629 "Progress bars are enabled by default when guestfish is used interactively.  "
21630 "You can enable them even for non-interactive modes using I<--progress-bars>, "
21631 "and you can disable them completely using I<--no-progress-bars>."
21632 msgstr ""
21633
21634 #. type: =head1
21635 #: ../fish/guestfish.pod:997
21636 msgid "GUESTFISH COMMANDS"
21637 msgstr ""
21638
21639 #. type: textblock
21640 #: ../fish/guestfish.pod:999
21641 msgid ""
21642 "The commands in this section are guestfish convenience commands, in other "
21643 "words, they are not part of the L<guestfs(3)> API."
21644 msgstr ""
21645
21646 #. type: =head2
21647 #: ../fish/guestfish.pod:1002
21648 msgid "help"
21649 msgstr ""
21650
21651 #. type: verbatim
21652 #: ../fish/guestfish.pod:1004
21653 #, no-wrap
21654 msgid ""
21655 " help\n"
21656 " help cmd\n"
21657 "\n"
21658 msgstr ""
21659
21660 #. type: textblock
21661 #: ../fish/guestfish.pod:1007
21662 msgid "Without any parameter, this provides general help."
21663 msgstr ""
21664
21665 #. type: textblock
21666 #: ../fish/guestfish.pod:1009
21667 msgid "With a C<cmd> parameter, this displays detailed help for that command."
21668 msgstr ""
21669
21670 #. type: =head2
21671 #: ../fish/guestfish.pod:1011
21672 msgid "quit | exit"
21673 msgstr ""
21674
21675 #. type: textblock
21676 #: ../fish/guestfish.pod:1013
21677 msgid "This exits guestfish.  You can also use C<^D> key."
21678 msgstr ""
21679
21680 #. type: textblock
21681 #: ../fish/guestfish.pod:1015
21682 msgid "@FISH_COMMANDS@"
21683 msgstr ""
21684
21685 #. type: =head1
21686 #: ../fish/guestfish.pod:1017
21687 msgid "COMMANDS"
21688 msgstr ""
21689
21690 #. type: =head1
21691 #: ../fish/guestfish.pod:1021 ../test-tool/libguestfs-test-tool.pod:77
21692 msgid "EXIT CODE"
21693 msgstr ""
21694
21695 #. type: textblock
21696 #: ../fish/guestfish.pod:1023
21697 msgid ""
21698 "guestfish returns 0 if the commands completed without error, or 1 if there "
21699 "was an error."
21700 msgstr ""
21701
21702 #. type: =item
21703 #: ../fish/guestfish.pod:1030
21704 msgid "EDITOR"
21705 msgstr ""
21706
21707 #. type: textblock
21708 #: ../fish/guestfish.pod:1032
21709 msgid ""
21710 "The C<edit> command uses C<$EDITOR> as the editor.  If not set, it uses "
21711 "C<vi>."
21712 msgstr ""
21713
21714 #. type: =item
21715 #: ../fish/guestfish.pod:1035
21716 msgid "GUESTFISH_PID"
21717 msgstr ""
21718
21719 #. type: textblock
21720 #: ../fish/guestfish.pod:1037
21721 msgid ""
21722 "Used with the I<--remote> option to specify the remote guestfish process to "
21723 "control.  See section L</REMOTE CONTROL GUESTFISH OVER A SOCKET>."
21724 msgstr ""
21725
21726 #. type: =item
21727 #: ../fish/guestfish.pod:1041
21728 msgid "HEXEDITOR"
21729 msgstr ""
21730
21731 #. type: textblock
21732 #: ../fish/guestfish.pod:1043
21733 msgid ""
21734 "The L</hexedit> command uses C<$HEXEDITOR> as the external hex editor.  If "
21735 "not specified, the external L<hexedit(1)> program is used."
21736 msgstr ""
21737
21738 #. type: =item
21739 #: ../fish/guestfish.pod:1047
21740 msgid "HOME"
21741 msgstr ""
21742
21743 #. type: textblock
21744 #: ../fish/guestfish.pod:1049
21745 msgid ""
21746 "If compiled with GNU readline support, various files in the home directory "
21747 "can be used.  See L</FILES>."
21748 msgstr ""
21749
21750 #. type: textblock
21751 #: ../fish/guestfish.pod:1058
21752 msgid ""
21753 "Set C<LIBGUESTFS_DEBUG=1> to enable verbose messages.  This has the same "
21754 "effect as using the B<-v> option."
21755 msgstr ""
21756
21757 #. type: textblock
21758 #: ../fish/guestfish.pod:1070
21759 msgid ""
21760 "Set the path that guestfish uses to search for kernel and initrd.img.  See "
21761 "the discussion of paths in L<guestfs(3)>."
21762 msgstr ""
21763
21764 #. type: textblock
21765 #: ../fish/guestfish.pod:1081
21766 msgid "Set C<LIBGUESTFS_TRACE=1> to enable command traces."
21767 msgstr ""
21768
21769 #. type: =item
21770 #: ../fish/guestfish.pod:1083
21771 msgid "PAGER"
21772 msgstr ""
21773
21774 #. type: textblock
21775 #: ../fish/guestfish.pod:1085
21776 msgid ""
21777 "The C<more> command uses C<$PAGER> as the pager.  If not set, it uses "
21778 "C<more>."
21779 msgstr ""
21780
21781 #. type: =head1
21782 #: ../fish/guestfish.pod:1101 ../fuse/guestmount.pod:262
21783 msgid "FILES"
21784 msgstr ""
21785
21786 #. type: =item
21787 #: ../fish/guestfish.pod:1105 ../fuse/guestmount.pod:266
21788 msgid "$HOME/.libguestfs-tools.rc"
21789 msgstr ""
21790
21791 #. type: =item
21792 #: ../fish/guestfish.pod:1107 ../fuse/guestmount.pod:268
21793 msgid "/etc/libguestfs-tools.conf"
21794 msgstr ""
21795
21796 #. type: textblock
21797 #: ../fish/guestfish.pod:1109 ../fuse/guestmount.pod:270
21798 msgid ""
21799 "This configuration file controls the default read-only or read-write mode "
21800 "(I<--ro> or I<--rw>)."
21801 msgstr ""
21802
21803 #. type: textblock
21804 #: ../fish/guestfish.pod:1112
21805 msgid "See L</OPENING DISKS FOR READ AND WRITE>."
21806 msgstr ""
21807
21808 #. type: =item
21809 #: ../fish/guestfish.pod:1114
21810 msgid "$HOME/.guestfish"
21811 msgstr ""
21812
21813 #. type: textblock
21814 #: ../fish/guestfish.pod:1116
21815 msgid ""
21816 "If compiled with GNU readline support, then the command history is saved in "
21817 "this file."
21818 msgstr ""
21819
21820 #. type: =item
21821 #: ../fish/guestfish.pod:1119
21822 msgid "$HOME/.inputrc"
21823 msgstr ""
21824
21825 #. type: =item
21826 #: ../fish/guestfish.pod:1121
21827 msgid "/etc/inputrc"
21828 msgstr ""
21829
21830 #. type: textblock
21831 #: ../fish/guestfish.pod:1123
21832 msgid ""
21833 "If compiled with GNU readline support, then these files can be used to "
21834 "configure readline.  For further information, please see L<readline(3)/"
21835 "INITIALIZATION FILE>."
21836 msgstr ""
21837
21838 #. type: textblock
21839 #: ../fish/guestfish.pod:1127
21840 msgid "To write rules which only apply to guestfish, use:"
21841 msgstr ""
21842
21843 #. type: verbatim
21844 #: ../fish/guestfish.pod:1129
21845 #, no-wrap
21846 msgid ""
21847 " $if guestfish\n"
21848 " ...\n"
21849 " $endif\n"
21850 "\n"
21851 msgstr ""
21852
21853 #. type: textblock
21854 #: ../fish/guestfish.pod:1133
21855 msgid ""
21856 "Variables that you can set in inputrc that change the behaviour of guestfish "
21857 "in useful ways include:"
21858 msgstr ""
21859
21860 #. type: =item
21861 #: ../fish/guestfish.pod:1138
21862 msgid "completion-ignore-case (default: on)"
21863 msgstr ""
21864
21865 #. type: textblock
21866 #: ../fish/guestfish.pod:1140
21867 msgid ""
21868 "By default, guestfish will ignore case when tab-completing paths on the "
21869 "disk.  Use:"
21870 msgstr ""
21871
21872 #. type: verbatim
21873 #: ../fish/guestfish.pod:1143
21874 #, no-wrap
21875 msgid ""
21876 " set completion-ignore-case off\n"
21877 "\n"
21878 msgstr ""
21879
21880 #. type: textblock
21881 #: ../fish/guestfish.pod:1145
21882 msgid "to make guestfish case sensitive."
21883 msgstr ""
21884
21885 #. type: =item
21886 #: ../fish/guestfish.pod:1149
21887 msgid "test1.img"
21888 msgstr ""
21889
21890 #. type: =item
21891 #: ../fish/guestfish.pod:1151
21892 msgid "test2.img (etc)"
21893 msgstr ""
21894
21895 #. type: textblock
21896 #: ../fish/guestfish.pod:1153
21897 msgid ""
21898 "When using the I<-N> or I<--new> option, the prepared disk or filesystem "
21899 "will be created in the file C<test1.img> in the current directory.  The "
21900 "second use of I<-N> will use C<test2.img> and so on.  Any existing file with "
21901 "the same name will be overwritten."
21902 msgstr ""
21903
21904 #. type: textblock
21905 #: ../fish/guestfish.pod:1162
21906 msgid ""
21907 "L<guestfs(3)>, L<http://libguestfs.org/>, L<virt-cat(1)>, L<virt-copy-in(1)"
21908 ">, L<virt-copy-out(1)>, L<virt-df(1)>, L<virt-edit(1)>, L<virt-filesystems(1)"
21909 ">, L<virt-inspector(1)>, L<virt-list-filesystems(1)>, L<virt-list-partitions"
21910 "(1)>, L<virt-ls(1)>, L<virt-make-fs(1)>, L<virt-rescue(1)>, L<virt-resize(1)"
21911 ">, L<virt-tar(1)>, L<virt-tar-in(1)>, L<virt-tar-out(1)>, L<virt-win-reg(1)"
21912 ">, L<hexedit(1)>."
21913 msgstr ""
21914
21915 #. type: textblock
21916 #: ../fish/guestfish.pod:1192 ../test-tool/libguestfs-test-tool.pod:102
21917 #: ../fuse/guestmount.pod:297 ../tools/virt-edit.pl:518
21918 #: ../tools/virt-win-reg.pl:606 ../tools/virt-list-filesystems.pl:210
21919 #: ../tools/virt-tar.pl:309 ../tools/virt-make-fs.pl:572
21920 #: ../tools/virt-list-partitions.pl:277
21921 msgid ""
21922 "This program is free software; you can redistribute it and/or modify it "
21923 "under the terms of the GNU General Public License as published by the Free "
21924 "Software Foundation; either version 2 of the License, or (at your option) "
21925 "any later version."
21926 msgstr ""
21927
21928 #. type: textblock
21929 #: ../fish/guestfish.pod:1197 ../test-tool/libguestfs-test-tool.pod:107
21930 #: ../fuse/guestmount.pod:302 ../tools/virt-edit.pl:523
21931 #: ../tools/virt-win-reg.pl:611 ../tools/virt-list-filesystems.pl:215
21932 #: ../tools/virt-tar.pl:314 ../tools/virt-make-fs.pl:577
21933 #: ../tools/virt-list-partitions.pl:282
21934 msgid ""
21935 "This program is distributed in the hope that it will be useful, but WITHOUT "
21936 "ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or "
21937 "FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for "
21938 "more details."
21939 msgstr ""
21940
21941 #. type: textblock
21942 #: ../fish/guestfish.pod:1202 ../test-tool/libguestfs-test-tool.pod:112
21943 #: ../fuse/guestmount.pod:307 ../tools/virt-edit.pl:528
21944 #: ../tools/virt-win-reg.pl:616 ../tools/virt-list-filesystems.pl:220
21945 #: ../tools/virt-tar.pl:319 ../tools/virt-make-fs.pl:582
21946 #: ../tools/virt-list-partitions.pl:287
21947 msgid ""
21948 "You should have received a copy of the GNU General Public License along with "
21949 "this program; if not, write to the Free Software Foundation, Inc., 675 Mass "
21950 "Ave, Cambridge, MA 02139, USA."
21951 msgstr ""
21952
21953 #. type: =head2
21954 #: ../fish/guestfish-actions.pod:1
21955 msgid "add-cdrom"
21956 msgstr ""
21957
21958 #. type: verbatim
21959 #: ../fish/guestfish-actions.pod:3
21960 #, no-wrap
21961 msgid ""
21962 " add-cdrom filename\n"
21963 "\n"
21964 msgstr ""
21965
21966 #. type: textblock
21967 #: ../fish/guestfish-actions.pod:15
21968 msgid ""
21969 "This call checks for the existence of C<filename>.  This stops you from "
21970 "specifying other types of drive which are supported by qemu such as C<nbd:> "
21971 "and C<http:> URLs.  To specify those, use the general L</config> call "
21972 "instead."
21973 msgstr ""
21974
21975 #. type: textblock
21976 #: ../fish/guestfish-actions.pod:22
21977 msgid ""
21978 "If you just want to add an ISO file (often you use this as an efficient way "
21979 "to transfer large files into the guest), then you should probably use L</add-"
21980 "drive-ro> instead."
21981 msgstr ""
21982
21983 #. type: textblock
21984 #: ../fish/guestfish-actions.pod:28 ../fish/guestfish-actions.pod:158
21985 #: ../fish/guestfish-actions.pod:172
21986 msgid ""
21987 "This function is deprecated.  In new code, use the L</add_drive_opts> call "
21988 "instead."
21989 msgstr ""
21990
21991 #. type: =head2
21992 #: ../fish/guestfish-actions.pod:35
21993 msgid "add-domain"
21994 msgstr ""
21995
21996 #. type: =head2
21997 #: ../fish/guestfish-actions.pod:37
21998 msgid "domain"
21999 msgstr ""
22000
22001 #. type: verbatim
22002 #: ../fish/guestfish-actions.pod:39
22003 #, no-wrap
22004 msgid ""
22005 " add-domain dom [libvirturi:..] [readonly:..] [iface:..] [live:..]\n"
22006 "\n"
22007 msgstr ""
22008
22009 #. type: textblock
22010 #: ../fish/guestfish-actions.pod:41
22011 msgid ""
22012 "This function adds the disk(s) attached to the named libvirt domain C<dom>.  "
22013 "It works by connecting to libvirt, requesting the domain and domain XML from "
22014 "libvirt, parsing it for disks, and calling L</add-drive-opts> on each one."
22015 msgstr ""
22016
22017 #. type: textblock
22018 #: ../fish/guestfish-actions.pod:71
22019 msgid ""
22020 "The other optional parameters are passed directly through to L</add-drive-"
22021 "opts>."
22022 msgstr ""
22023
22024 #. type: textblock
22025 #: ../fish/guestfish-actions.pod:74 ../fish/guestfish-actions.pod:138
22026 #: ../fish/guestfish-actions.pod:3071
22027 msgid ""
22028 "This command has one or more optional arguments.  See L</OPTIONAL ARGUMENTS>."
22029 msgstr ""
22030
22031 #. type: =head2
22032 #: ../fish/guestfish-actions.pod:76
22033 msgid "add-drive"
22034 msgstr ""
22035
22036 #. type: verbatim
22037 #: ../fish/guestfish-actions.pod:78
22038 #, no-wrap
22039 msgid ""
22040 " add-drive filename\n"
22041 "\n"
22042 msgstr ""
22043
22044 #. type: textblock
22045 #: ../fish/guestfish-actions.pod:80
22046 msgid ""
22047 "This function is the equivalent of calling L</add-drive-opts> with no "
22048 "optional parameters, so the disk is added writable, with the format being "
22049 "detected automatically."
22050 msgstr ""
22051
22052 #. type: textblock
22053 #: ../fish/guestfish-actions.pod:84
22054 msgid ""
22055 "Automatic detection of the format opens you up to a potential security hole "
22056 "when dealing with untrusted raw-format images.  See CVE-2010-3851 and "
22057 "RHBZ#642934.  Specifying the format closes this security hole.  Therefore "
22058 "you should think about replacing calls to this function with calls to L</add-"
22059 "drive-opts>, and specifying the format."
22060 msgstr ""
22061
22062 #. type: =head2
22063 #: ../fish/guestfish-actions.pod:91
22064 msgid "add-drive-opts"
22065 msgstr ""
22066
22067 #. type: =head2
22068 #: ../fish/guestfish-actions.pod:93
22069 msgid "add"
22070 msgstr ""
22071
22072 #. type: verbatim
22073 #: ../fish/guestfish-actions.pod:95
22074 #, no-wrap
22075 msgid ""
22076 " add-drive-opts filename [readonly:..] [format:..] [iface:..]\n"
22077 "\n"
22078 msgstr ""
22079
22080 #. type: textblock
22081 #: ../fish/guestfish-actions.pod:122
22082 msgid ""
22083 "This forces the image format.  If you omit this (or use L</add-drive> or L</"
22084 "add-drive-ro>) then the format is automatically detected.  Possible formats "
22085 "include C<raw> and C<qcow2>."
22086 msgstr ""
22087
22088 #. type: textblock
22089 #: ../fish/guestfish-actions.pod:133
22090 msgid ""
22091 "This rarely-used option lets you emulate the behaviour of the deprecated L</"
22092 "add-drive-with-if> call (q.v.)"
22093 msgstr ""
22094
22095 #. type: =head2
22096 #: ../fish/guestfish-actions.pod:140
22097 msgid "add-drive-ro"
22098 msgstr ""
22099
22100 #. type: =head2
22101 #: ../fish/guestfish-actions.pod:142
22102 msgid "add-ro"
22103 msgstr ""
22104
22105 #. type: verbatim
22106 #: ../fish/guestfish-actions.pod:144
22107 #, no-wrap
22108 msgid ""
22109 " add-drive-ro filename\n"
22110 "\n"
22111 msgstr ""
22112
22113 #. type: textblock
22114 #: ../fish/guestfish-actions.pod:146
22115 msgid ""
22116 "This function is the equivalent of calling L</add-drive-opts> with the "
22117 "optional parameter C<GUESTFS_ADD_DRIVE_OPTS_READONLY> set to 1, so the disk "
22118 "is added read-only, with the format being detected automatically."
22119 msgstr ""
22120
22121 #. type: =head2
22122 #: ../fish/guestfish-actions.pod:151
22123 msgid "add-drive-ro-with-if"
22124 msgstr ""
22125
22126 #. type: verbatim
22127 #: ../fish/guestfish-actions.pod:153
22128 #, no-wrap
22129 msgid ""
22130 " add-drive-ro-with-if filename iface\n"
22131 "\n"
22132 msgstr ""
22133
22134 #. type: textblock
22135 #: ../fish/guestfish-actions.pod:155
22136 msgid ""
22137 "This is the same as L</add-drive-ro> but it allows you to specify the QEMU "
22138 "interface emulation to use at run time."
22139 msgstr ""
22140
22141 #. type: =head2
22142 #: ../fish/guestfish-actions.pod:165
22143 msgid "add-drive-with-if"
22144 msgstr ""
22145
22146 #. type: verbatim
22147 #: ../fish/guestfish-actions.pod:167
22148 #, no-wrap
22149 msgid ""
22150 " add-drive-with-if filename iface\n"
22151 "\n"
22152 msgstr ""
22153
22154 #. type: textblock
22155 #: ../fish/guestfish-actions.pod:169
22156 msgid ""
22157 "This is the same as L</add-drive> but it allows you to specify the QEMU "
22158 "interface emulation to use at run time."
22159 msgstr ""
22160
22161 #. type: =head2
22162 #: ../fish/guestfish-actions.pod:179
22163 msgid "aug-clear"
22164 msgstr ""
22165
22166 #. type: verbatim
22167 #: ../fish/guestfish-actions.pod:181
22168 #, no-wrap
22169 msgid ""
22170 " aug-clear augpath\n"
22171 "\n"
22172 msgstr ""
22173
22174 #. type: =head2
22175 #: ../fish/guestfish-actions.pod:186
22176 msgid "aug-close"
22177 msgstr ""
22178
22179 #. type: verbatim
22180 #: ../fish/guestfish-actions.pod:188
22181 #, no-wrap
22182 msgid ""
22183 " aug-close\n"
22184 "\n"
22185 msgstr ""
22186
22187 #. type: textblock
22188 #: ../fish/guestfish-actions.pod:190
22189 msgid ""
22190 "Close the current Augeas handle and free up any resources used by it.  After "
22191 "calling this, you have to call L</aug-init> again before you can use any "
22192 "other Augeas functions."
22193 msgstr ""
22194
22195 #. type: =head2
22196 #: ../fish/guestfish-actions.pod:195
22197 msgid "aug-defnode"
22198 msgstr ""
22199
22200 #. type: verbatim
22201 #: ../fish/guestfish-actions.pod:197
22202 #, no-wrap
22203 msgid ""
22204 " aug-defnode name expr val\n"
22205 "\n"
22206 msgstr ""
22207
22208 #. type: textblock
22209 #: ../fish/guestfish-actions.pod:202
22210 msgid ""
22211 "If C<expr> evaluates to an empty nodeset, a node is created, equivalent to "
22212 "calling L</aug-set> C<expr>, C<value>.  C<name> will be the nodeset "
22213 "containing that single node."
22214 msgstr ""
22215
22216 #. type: =head2
22217 #: ../fish/guestfish-actions.pod:210
22218 msgid "aug-defvar"
22219 msgstr ""
22220
22221 #. type: verbatim
22222 #: ../fish/guestfish-actions.pod:212
22223 #, no-wrap
22224 msgid ""
22225 " aug-defvar name expr\n"
22226 "\n"
22227 msgstr ""
22228
22229 #. type: =head2
22230 #: ../fish/guestfish-actions.pod:221
22231 msgid "aug-get"
22232 msgstr ""
22233
22234 #. type: verbatim
22235 #: ../fish/guestfish-actions.pod:223
22236 #, no-wrap
22237 msgid ""
22238 " aug-get augpath\n"
22239 "\n"
22240 msgstr ""
22241
22242 #. type: =head2
22243 #: ../fish/guestfish-actions.pod:228
22244 msgid "aug-init"
22245 msgstr ""
22246
22247 #. type: verbatim
22248 #: ../fish/guestfish-actions.pod:230
22249 #, no-wrap
22250 msgid ""
22251 " aug-init root flags\n"
22252 "\n"
22253 msgstr ""
22254
22255 #. type: textblock
22256 #: ../fish/guestfish-actions.pod:236
22257 msgid "You must call this before using any other L</aug-*> commands."
22258 msgstr ""
22259
22260 #. type: textblock
22261 #: ../fish/guestfish-actions.pod:261
22262 msgid ""
22263 "This option is only useful when debugging Augeas lenses.  Use of this option "
22264 "may require additional memory for the libguestfs appliance.  You may need to "
22265 "set the C<LIBGUESTFS_MEMSIZE> environment variable or call L</set-memsize>."
22266 msgstr ""
22267
22268 #. type: textblock
22269 #: ../fish/guestfish-actions.pod:276
22270 msgid "Do not load the tree in L</aug-init>."
22271 msgstr ""
22272
22273 #. type: textblock
22274 #: ../fish/guestfish-actions.pod:280
22275 msgid "To close the handle, you can call L</aug-close>."
22276 msgstr ""
22277
22278 #. type: =head2
22279 #: ../fish/guestfish-actions.pod:284
22280 msgid "aug-insert"
22281 msgstr ""
22282
22283 #. type: verbatim
22284 #: ../fish/guestfish-actions.pod:286
22285 #, no-wrap
22286 msgid ""
22287 " aug-insert augpath label true|false\n"
22288 "\n"
22289 msgstr ""
22290
22291 #. type: =head2
22292 #: ../fish/guestfish-actions.pod:296
22293 msgid "aug-load"
22294 msgstr ""
22295
22296 #. type: verbatim
22297 #: ../fish/guestfish-actions.pod:298
22298 #, no-wrap
22299 msgid ""
22300 " aug-load\n"
22301 "\n"
22302 msgstr ""
22303
22304 #. type: =head2
22305 #: ../fish/guestfish-actions.pod:305
22306 msgid "aug-ls"
22307 msgstr ""
22308
22309 #. type: verbatim
22310 #: ../fish/guestfish-actions.pod:307
22311 #, no-wrap
22312 msgid ""
22313 " aug-ls augpath\n"
22314 "\n"
22315 msgstr ""
22316
22317 #. type: textblock
22318 #: ../fish/guestfish-actions.pod:309
22319 msgid ""
22320 "This is just a shortcut for listing L</aug-match> C<path/*> and sorting the "
22321 "resulting nodes into alphabetical order."
22322 msgstr ""
22323
22324 #. type: =head2
22325 #: ../fish/guestfish-actions.pod:312
22326 msgid "aug-match"
22327 msgstr ""
22328
22329 #. type: verbatim
22330 #: ../fish/guestfish-actions.pod:314
22331 #, no-wrap
22332 msgid ""
22333 " aug-match augpath\n"
22334 "\n"
22335 msgstr ""
22336
22337 #. type: =head2
22338 #: ../fish/guestfish-actions.pod:320
22339 msgid "aug-mv"
22340 msgstr ""
22341
22342 #. type: verbatim
22343 #: ../fish/guestfish-actions.pod:322
22344 #, no-wrap
22345 msgid ""
22346 " aug-mv src dest\n"
22347 "\n"
22348 msgstr ""
22349
22350 #. type: =head2
22351 #: ../fish/guestfish-actions.pod:327
22352 msgid "aug-rm"
22353 msgstr ""
22354
22355 #. type: verbatim
22356 #: ../fish/guestfish-actions.pod:329
22357 #, no-wrap
22358 msgid ""
22359 " aug-rm augpath\n"
22360 "\n"
22361 msgstr ""
22362
22363 #. type: =head2
22364 #: ../fish/guestfish-actions.pod:335
22365 msgid "aug-save"
22366 msgstr ""
22367
22368 #. type: verbatim
22369 #: ../fish/guestfish-actions.pod:337
22370 #, no-wrap
22371 msgid ""
22372 " aug-save\n"
22373 "\n"
22374 msgstr ""
22375
22376 #. type: textblock
22377 #: ../fish/guestfish-actions.pod:341
22378 msgid ""
22379 "The flags which were passed to L</aug-init> affect exactly how files are "
22380 "saved."
22381 msgstr ""
22382
22383 #. type: =head2
22384 #: ../fish/guestfish-actions.pod:344
22385 msgid "aug-set"
22386 msgstr ""
22387
22388 #. type: verbatim
22389 #: ../fish/guestfish-actions.pod:346
22390 #, no-wrap
22391 msgid ""
22392 " aug-set augpath val\n"
22393 "\n"
22394 msgstr ""
22395
22396 #. type: textblock
22397 #: ../fish/guestfish-actions.pod:350
22398 msgid ""
22399 "In the Augeas API, it is possible to clear a node by setting the value to "
22400 "NULL.  Due to an oversight in the libguestfs API you cannot do that with "
22401 "this call.  Instead you must use the L</aug-clear> call."
22402 msgstr ""
22403
22404 #. type: =head2
22405 #: ../fish/guestfish-actions.pod:355
22406 msgid "available"
22407 msgstr ""
22408
22409 #. type: verbatim
22410 #: ../fish/guestfish-actions.pod:357
22411 #, no-wrap
22412 msgid ""
22413 " available 'groups ...'\n"
22414 "\n"
22415 msgstr ""
22416
22417 #. type: textblock
22418 #: ../fish/guestfish-actions.pod:363
22419 msgid ""
22420 "The libguestfs groups, and the functions that those groups correspond to, "
22421 "are listed in L<guestfs(3)/AVAILABILITY>.  You can also fetch this list at "
22422 "runtime by calling L</available-all-groups>."
22423 msgstr ""
22424
22425 #. type: textblock
22426 #: ../fish/guestfish-actions.pod:387
22427 msgid "You must call L</launch> before calling this function."
22428 msgstr ""
22429
22430 #. type: textblock
22431 #: ../fish/guestfish-actions.pod:409
22432 msgid ""
22433 "This call was added in version C<1.0.80>.  In previous versions of "
22434 "libguestfs all you could do would be to speculatively execute a command to "
22435 "find out if the daemon implemented it.  See also L</version>."
22436 msgstr ""
22437
22438 #. type: =head2
22439 #: ../fish/guestfish-actions.pod:416
22440 msgid "available-all-groups"
22441 msgstr ""
22442
22443 #. type: verbatim
22444 #: ../fish/guestfish-actions.pod:418
22445 #, no-wrap
22446 msgid ""
22447 " available-all-groups\n"
22448 "\n"
22449 msgstr ""
22450
22451 #. type: textblock
22452 #: ../fish/guestfish-actions.pod:420
22453 msgid ""
22454 "This command returns a list of all optional groups that this daemon knows "
22455 "about.  Note this returns both supported and unsupported groups.  To find "
22456 "out which ones the daemon can actually support you have to call L</"
22457 "available> on each member of the returned list."
22458 msgstr ""
22459
22460 #. type: textblock
22461 #: ../fish/guestfish-actions.pod:426
22462 msgid "See also L</available> and L<guestfs(3)/AVAILABILITY>."
22463 msgstr ""
22464
22465 #. type: =head2
22466 #: ../fish/guestfish-actions.pod:428
22467 msgid "base64-in"
22468 msgstr ""
22469
22470 #. type: verbatim
22471 #: ../fish/guestfish-actions.pod:430
22472 #, no-wrap
22473 msgid ""
22474 " base64-in (base64file|-) filename\n"
22475 "\n"
22476 msgstr ""
22477
22478 #. type: textblock
22479 #: ../fish/guestfish-actions.pod:435 ../fish/guestfish-actions.pod:444
22480 #: ../fish/guestfish-actions.pod:668 ../fish/guestfish-actions.pod:837
22481 #: ../fish/guestfish-actions.pod:856 ../fish/guestfish-actions.pod:1230
22482 #: ../fish/guestfish-actions.pod:4513 ../fish/guestfish-actions.pod:4525
22483 #: ../fish/guestfish-actions.pod:4536 ../fish/guestfish-actions.pod:4547
22484 #: ../fish/guestfish-actions.pod:4599 ../fish/guestfish-actions.pod:4608
22485 #: ../fish/guestfish-actions.pod:4662 ../fish/guestfish-actions.pod:4685
22486 msgid "Use C<-> instead of a filename to read/write from stdin/stdout."
22487 msgstr ""
22488
22489 #. type: =head2
22490 #: ../fish/guestfish-actions.pod:437
22491 msgid "base64-out"
22492 msgstr ""
22493
22494 #. type: verbatim
22495 #: ../fish/guestfish-actions.pod:439
22496 #, no-wrap
22497 msgid ""
22498 " base64-out filename (base64file|-)\n"
22499 "\n"
22500 msgstr ""
22501
22502 #. type: =head2
22503 #: ../fish/guestfish-actions.pod:446
22504 msgid "blockdev-flushbufs"
22505 msgstr ""
22506
22507 #. type: verbatim
22508 #: ../fish/guestfish-actions.pod:448
22509 #, no-wrap
22510 msgid ""
22511 " blockdev-flushbufs device\n"
22512 "\n"
22513 msgstr ""
22514
22515 #. type: =head2
22516 #: ../fish/guestfish-actions.pod:455
22517 msgid "blockdev-getbsz"
22518 msgstr ""
22519
22520 #. type: verbatim
22521 #: ../fish/guestfish-actions.pod:457
22522 #, no-wrap
22523 msgid ""
22524 " blockdev-getbsz device\n"
22525 "\n"
22526 msgstr ""
22527
22528 #. type: =head2
22529 #: ../fish/guestfish-actions.pod:466
22530 msgid "blockdev-getro"
22531 msgstr ""
22532
22533 #. type: verbatim
22534 #: ../fish/guestfish-actions.pod:468
22535 #, no-wrap
22536 msgid ""
22537 " blockdev-getro device\n"
22538 "\n"
22539 msgstr ""
22540
22541 #. type: =head2
22542 #: ../fish/guestfish-actions.pod:475
22543 msgid "blockdev-getsize64"
22544 msgstr ""
22545
22546 #. type: verbatim
22547 #: ../fish/guestfish-actions.pod:477
22548 #, no-wrap
22549 msgid ""
22550 " blockdev-getsize64 device\n"
22551 "\n"
22552 msgstr ""
22553
22554 #. type: textblock
22555 #: ../fish/guestfish-actions.pod:481
22556 msgid "See also L</blockdev-getsz>."
22557 msgstr ""
22558
22559 #. type: =head2
22560 #: ../fish/guestfish-actions.pod:485
22561 msgid "blockdev-getss"
22562 msgstr ""
22563
22564 #. type: verbatim
22565 #: ../fish/guestfish-actions.pod:487
22566 #, no-wrap
22567 msgid ""
22568 " blockdev-getss device\n"
22569 "\n"
22570 msgstr ""
22571
22572 #. type: textblock
22573 #: ../fish/guestfish-actions.pod:492
22574 msgid ""
22575 "(Note, this is not the size in sectors, use L</blockdev-getsz> for that)."
22576 msgstr ""
22577
22578 #. type: =head2
22579 #: ../fish/guestfish-actions.pod:497
22580 msgid "blockdev-getsz"
22581 msgstr ""
22582
22583 #. type: verbatim
22584 #: ../fish/guestfish-actions.pod:499
22585 #, no-wrap
22586 msgid ""
22587 " blockdev-getsz device\n"
22588 "\n"
22589 msgstr ""
22590
22591 #. type: textblock
22592 #: ../fish/guestfish-actions.pod:504
22593 msgid ""
22594 "See also L</blockdev-getss> for the real sector size of the device, and L</"
22595 "blockdev-getsize64> for the more useful I<size in bytes>."
22596 msgstr ""
22597
22598 #. type: =head2
22599 #: ../fish/guestfish-actions.pod:510
22600 msgid "blockdev-rereadpt"
22601 msgstr ""
22602
22603 #. type: verbatim
22604 #: ../fish/guestfish-actions.pod:512
22605 #, no-wrap
22606 msgid ""
22607 " blockdev-rereadpt device\n"
22608 "\n"
22609 msgstr ""
22610
22611 #. type: =head2
22612 #: ../fish/guestfish-actions.pod:518
22613 msgid "blockdev-setbsz"
22614 msgstr ""
22615
22616 #. type: verbatim
22617 #: ../fish/guestfish-actions.pod:520
22618 #, no-wrap
22619 msgid ""
22620 " blockdev-setbsz device blocksize\n"
22621 "\n"
22622 msgstr ""
22623
22624 #. type: =head2
22625 #: ../fish/guestfish-actions.pod:529
22626 msgid "blockdev-setro"
22627 msgstr ""
22628
22629 #. type: verbatim
22630 #: ../fish/guestfish-actions.pod:531
22631 #, no-wrap
22632 msgid ""
22633 " blockdev-setro device\n"
22634 "\n"
22635 msgstr ""
22636
22637 #. type: =head2
22638 #: ../fish/guestfish-actions.pod:537
22639 msgid "blockdev-setrw"
22640 msgstr ""
22641
22642 #. type: verbatim
22643 #: ../fish/guestfish-actions.pod:539
22644 #, no-wrap
22645 msgid ""
22646 " blockdev-setrw device\n"
22647 "\n"
22648 msgstr ""
22649
22650 #. type: =head2
22651 #: ../fish/guestfish-actions.pod:545
22652 msgid "case-sensitive-path"
22653 msgstr ""
22654
22655 #. type: verbatim
22656 #: ../fish/guestfish-actions.pod:547
22657 #, no-wrap
22658 msgid ""
22659 " case-sensitive-path path\n"
22660 "\n"
22661 msgstr ""
22662
22663 #. type: textblock
22664 #: ../fish/guestfish-actions.pod:571
22665 msgid ""
22666 "Thus L</case-sensitive-path> (\"/Windows/System32\")  might return C<\"/"
22667 "WINDOWS/system32\"> (the exact return value would depend on details of how "
22668 "the directories were originally created under Windows)."
22669 msgstr ""
22670
22671 #. type: textblock
22672 #: ../fish/guestfish-actions.pod:579
22673 msgid "See also L</realpath>."
22674 msgstr ""
22675
22676 #. type: =head2
22677 #: ../fish/guestfish-actions.pod:581
22678 msgid "cat"
22679 msgstr ""
22680
22681 #. type: verbatim
22682 #: ../fish/guestfish-actions.pod:583
22683 #, no-wrap
22684 msgid ""
22685 " cat path\n"
22686 "\n"
22687 msgstr ""
22688
22689 #. type: textblock
22690 #: ../fish/guestfish-actions.pod:587
22691 msgid ""
22692 "Note that this function cannot correctly handle binary files (specifically, "
22693 "files containing C<\\0> character which is treated as end of string).  For "
22694 "those you need to use the L</read-file> or L</download> functions which have "
22695 "a more complex interface."
22696 msgstr ""
22697
22698 #. type: =head2
22699 #: ../fish/guestfish-actions.pod:595
22700 msgid "checksum"
22701 msgstr ""
22702
22703 #. type: verbatim
22704 #: ../fish/guestfish-actions.pod:597
22705 #, no-wrap
22706 msgid ""
22707 " checksum csumtype path\n"
22708 "\n"
22709 msgstr ""
22710
22711 #. type: textblock
22712 #: ../fish/guestfish-actions.pod:640
22713 msgid "To get the checksum for a device, use L</checksum-device>."
22714 msgstr ""
22715
22716 #. type: textblock
22717 #: ../fish/guestfish-actions.pod:642
22718 msgid "To get the checksums for many files, use L</checksums-out>."
22719 msgstr ""
22720
22721 #. type: =head2
22722 #: ../fish/guestfish-actions.pod:644
22723 msgid "checksum-device"
22724 msgstr ""
22725
22726 #. type: verbatim
22727 #: ../fish/guestfish-actions.pod:646
22728 #, no-wrap
22729 msgid ""
22730 " checksum-device csumtype device\n"
22731 "\n"
22732 msgstr ""
22733
22734 #. type: textblock
22735 #: ../fish/guestfish-actions.pod:648
22736 msgid ""
22737 "This call computes the MD5, SHAx or CRC checksum of the contents of the "
22738 "device named C<device>.  For the types of checksums supported see the L</"
22739 "checksum> command."
22740 msgstr ""
22741
22742 #. type: =head2
22743 #: ../fish/guestfish-actions.pod:652
22744 msgid "checksums-out"
22745 msgstr ""
22746
22747 #. type: verbatim
22748 #: ../fish/guestfish-actions.pod:654
22749 #, no-wrap
22750 msgid ""
22751 " checksums-out csumtype directory (sumsfile|-)\n"
22752 "\n"
22753 msgstr ""
22754
22755 #. type: =head2
22756 #: ../fish/guestfish-actions.pod:670
22757 msgid "chmod"
22758 msgstr ""
22759
22760 #. type: verbatim
22761 #: ../fish/guestfish-actions.pod:672
22762 #, no-wrap
22763 msgid ""
22764 " chmod mode path\n"
22765 "\n"
22766 msgstr ""
22767
22768 #. type: =head2
22769 #: ../fish/guestfish-actions.pod:683
22770 msgid "chown"
22771 msgstr ""
22772
22773 #. type: verbatim
22774 #: ../fish/guestfish-actions.pod:685
22775 #, no-wrap
22776 msgid ""
22777 " chown owner group path\n"
22778 "\n"
22779 msgstr ""
22780
22781 #. type: =head2
22782 #: ../fish/guestfish-actions.pod:693
22783 msgid "command"
22784 msgstr ""
22785
22786 #. type: verbatim
22787 #: ../fish/guestfish-actions.pod:695
22788 #, no-wrap
22789 msgid ""
22790 " command 'arguments ...'\n"
22791 "\n"
22792 msgstr ""
22793
22794 #. type: textblock
22795 #: ../fish/guestfish-actions.pod:702
22796 msgid ""
22797 "The single parameter is an argv-style list of arguments.  The first element "
22798 "is the name of the program to run.  Subsequent elements are parameters.  The "
22799 "list must be non-empty (ie. must contain a program name).  Note that the "
22800 "command runs directly, and is I<not> invoked via the shell (see L</sh>)."
22801 msgstr ""
22802
22803 #. type: =head2
22804 #: ../fish/guestfish-actions.pod:730
22805 msgid "command-lines"
22806 msgstr ""
22807
22808 #. type: verbatim
22809 #: ../fish/guestfish-actions.pod:732
22810 #, no-wrap
22811 msgid ""
22812 " command-lines 'arguments ...'\n"
22813 "\n"
22814 msgstr ""
22815
22816 #. type: textblock
22817 #: ../fish/guestfish-actions.pod:734
22818 msgid ""
22819 "This is the same as L</command>, but splits the result into a list of lines."
22820 msgstr ""
22821
22822 #. type: textblock
22823 #: ../fish/guestfish-actions.pod:737
22824 msgid "See also: L</sh-lines>"
22825 msgstr ""
22826
22827 #. type: =head2
22828 #: ../fish/guestfish-actions.pod:742
22829 msgid "config"
22830 msgstr ""
22831
22832 #. type: verbatim
22833 #: ../fish/guestfish-actions.pod:744
22834 #, no-wrap
22835 msgid ""
22836 " config qemuparam qemuvalue\n"
22837 "\n"
22838 msgstr ""
22839
22840 #. type: =head2
22841 #: ../fish/guestfish-actions.pod:755
22842 msgid "copy-size"
22843 msgstr ""
22844
22845 #. type: verbatim
22846 #: ../fish/guestfish-actions.pod:757
22847 #, no-wrap
22848 msgid ""
22849 " copy-size src dest size\n"
22850 "\n"
22851 msgstr ""
22852
22853 #. type: =head2
22854 #: ../fish/guestfish-actions.pod:765
22855 msgid "cp"
22856 msgstr ""
22857
22858 #. type: verbatim
22859 #: ../fish/guestfish-actions.pod:767
22860 #, no-wrap
22861 msgid ""
22862 " cp src dest\n"
22863 "\n"
22864 msgstr ""
22865
22866 #. type: =head2
22867 #: ../fish/guestfish-actions.pod:772
22868 msgid "cp-a"
22869 msgstr ""
22870
22871 #. type: verbatim
22872 #: ../fish/guestfish-actions.pod:774
22873 #, no-wrap
22874 msgid ""
22875 " cp-a src dest\n"
22876 "\n"
22877 msgstr ""
22878
22879 #. type: =head2
22880 #: ../fish/guestfish-actions.pod:779
22881 msgid "dd"
22882 msgstr ""
22883
22884 #. type: verbatim
22885 #: ../fish/guestfish-actions.pod:781
22886 #, no-wrap
22887 msgid ""
22888 " dd src dest\n"
22889 "\n"
22890 msgstr ""
22891
22892 #. type: textblock
22893 #: ../fish/guestfish-actions.pod:788
22894 msgid ""
22895 "If the destination is a device, it must be as large or larger than the "
22896 "source file or device, otherwise the copy will fail.  This command cannot do "
22897 "partial copies (see L</copy-size>)."
22898 msgstr ""
22899
22900 #. type: =head2
22901 #: ../fish/guestfish-actions.pod:792
22902 msgid "df"
22903 msgstr ""
22904
22905 #. type: verbatim
22906 #: ../fish/guestfish-actions.pod:794
22907 #, no-wrap
22908 msgid ""
22909 " df\n"
22910 "\n"
22911 msgstr ""
22912
22913 #. type: textblock
22914 #: ../fish/guestfish-actions.pod:798 ../fish/guestfish-actions.pod:809
22915 msgid ""
22916 "This command is mostly useful for interactive sessions.  It is I<not> "
22917 "intended that you try to parse the output string.  Use L</statvfs> from "
22918 "programs."
22919 msgstr ""
22920
22921 #. type: =head2
22922 #: ../fish/guestfish-actions.pod:802
22923 msgid "df-h"
22924 msgstr ""
22925
22926 #. type: verbatim
22927 #: ../fish/guestfish-actions.pod:804
22928 #, no-wrap
22929 msgid ""
22930 " df-h\n"
22931 "\n"
22932 msgstr ""
22933
22934 #. type: =head2
22935 #: ../fish/guestfish-actions.pod:813
22936 msgid "dmesg"
22937 msgstr ""
22938
22939 #. type: verbatim
22940 #: ../fish/guestfish-actions.pod:815
22941 #, no-wrap
22942 msgid ""
22943 " dmesg\n"
22944 "\n"
22945 msgstr ""
22946
22947 #. type: textblock
22948 #: ../fish/guestfish-actions.pod:821
22949 msgid ""
22950 "Another way to get the same information is to enable verbose messages with "
22951 "L</set-verbose> or by setting the environment variable C<LIBGUESTFS_DEBUG=1> "
22952 "before running the program."
22953 msgstr ""
22954
22955 #. type: =head2
22956 #: ../fish/guestfish-actions.pod:826
22957 msgid "download"
22958 msgstr ""
22959
22960 #. type: verbatim
22961 #: ../fish/guestfish-actions.pod:828
22962 #, no-wrap
22963 msgid ""
22964 " download remotefilename (filename|-)\n"
22965 "\n"
22966 msgstr ""
22967
22968 #. type: textblock
22969 #: ../fish/guestfish-actions.pod:835
22970 msgid "See also L</upload>, L</cat>."
22971 msgstr ""
22972
22973 #. type: =head2
22974 #: ../fish/guestfish-actions.pod:839
22975 msgid "download-offset"
22976 msgstr ""
22977
22978 #. type: verbatim
22979 #: ../fish/guestfish-actions.pod:841
22980 #, no-wrap
22981 msgid ""
22982 " download-offset remotefilename (filename|-) offset size\n"
22983 "\n"
22984 msgstr ""
22985
22986 #. type: textblock
22987 #: ../fish/guestfish-actions.pod:849
22988 msgid ""
22989 "Note that there is no limit on the amount of data that can be downloaded "
22990 "with this call, unlike with L</pread>, and this call always reads the full "
22991 "amount unless an error occurs."
22992 msgstr ""
22993
22994 #. type: textblock
22995 #: ../fish/guestfish-actions.pod:854
22996 msgid "See also L</download>, L</pread>."
22997 msgstr ""
22998
22999 #. type: =head2
23000 #: ../fish/guestfish-actions.pod:858
23001 msgid "drop-caches"
23002 msgstr ""
23003
23004 #. type: verbatim
23005 #: ../fish/guestfish-actions.pod:860
23006 #, no-wrap
23007 msgid ""
23008 " drop-caches whattodrop\n"
23009 "\n"
23010 msgstr ""
23011
23012 #. type: =head2
23013 #: ../fish/guestfish-actions.pod:872
23014 msgid "du"
23015 msgstr ""
23016
23017 #. type: verbatim
23018 #: ../fish/guestfish-actions.pod:874
23019 #, no-wrap
23020 msgid ""
23021 " du path\n"
23022 "\n"
23023 msgstr ""
23024
23025 #. type: =head2
23026 #: ../fish/guestfish-actions.pod:886
23027 msgid "e2fsck-f"
23028 msgstr ""
23029
23030 #. type: verbatim
23031 #: ../fish/guestfish-actions.pod:888
23032 #, no-wrap
23033 msgid ""
23034 " e2fsck-f device\n"
23035 "\n"
23036 msgstr ""
23037
23038 #. type: textblock
23039 #: ../fish/guestfish-actions.pod:894
23040 msgid ""
23041 "This command is only needed because of L</resize2fs> (q.v.).  Normally you "
23042 "should use L</fsck>."
23043 msgstr ""
23044
23045 #. type: =head2
23046 #: ../fish/guestfish-actions.pod:897
23047 msgid "echo-daemon"
23048 msgstr ""
23049
23050 #. type: verbatim
23051 #: ../fish/guestfish-actions.pod:899
23052 #, no-wrap
23053 msgid ""
23054 " echo-daemon 'words ...'\n"
23055 "\n"
23056 msgstr ""
23057
23058 #. type: textblock
23059 #: ../fish/guestfish-actions.pod:906
23060 msgid "See also L</ping-daemon>."
23061 msgstr ""
23062
23063 #. type: =head2
23064 #: ../fish/guestfish-actions.pod:908
23065 msgid "egrep"
23066 msgstr ""
23067
23068 #. type: verbatim
23069 #: ../fish/guestfish-actions.pod:910
23070 #, no-wrap
23071 msgid ""
23072 " egrep regex path\n"
23073 "\n"
23074 msgstr ""
23075
23076 #. type: =head2
23077 #: ../fish/guestfish-actions.pod:918
23078 msgid "egrepi"
23079 msgstr ""
23080
23081 #. type: verbatim
23082 #: ../fish/guestfish-actions.pod:920
23083 #, no-wrap
23084 msgid ""
23085 " egrepi regex path\n"
23086 "\n"
23087 msgstr ""
23088
23089 #. type: =head2
23090 #: ../fish/guestfish-actions.pod:928
23091 msgid "equal"
23092 msgstr ""
23093
23094 #. type: verbatim
23095 #: ../fish/guestfish-actions.pod:930
23096 #, no-wrap
23097 msgid ""
23098 " equal file1 file2\n"
23099 "\n"
23100 msgstr ""
23101
23102 #. type: =head2
23103 #: ../fish/guestfish-actions.pod:937
23104 msgid "exists"
23105 msgstr ""
23106
23107 #. type: verbatim
23108 #: ../fish/guestfish-actions.pod:939
23109 #, no-wrap
23110 msgid ""
23111 " exists path\n"
23112 "\n"
23113 msgstr ""
23114
23115 #. type: textblock
23116 #: ../fish/guestfish-actions.pod:944
23117 msgid "See also L</is-file>, L</is-dir>, L</stat>."
23118 msgstr ""
23119
23120 #. type: =head2
23121 #: ../fish/guestfish-actions.pod:946
23122 msgid "fallocate"
23123 msgstr ""
23124
23125 #. type: verbatim
23126 #: ../fish/guestfish-actions.pod:948
23127 #, no-wrap
23128 msgid ""
23129 " fallocate path len\n"
23130 "\n"
23131 msgstr ""
23132
23133 #. type: textblock
23134 #: ../fish/guestfish-actions.pod:958
23135 msgid ""
23136 "This function is deprecated.  In new code, use the L</fallocate64> call "
23137 "instead."
23138 msgstr ""
23139
23140 #. type: =head2
23141 #: ../fish/guestfish-actions.pod:965
23142 msgid "fallocate64"
23143 msgstr ""
23144
23145 #. type: verbatim
23146 #: ../fish/guestfish-actions.pod:967
23147 #, no-wrap
23148 msgid ""
23149 " fallocate64 path len\n"
23150 "\n"
23151 msgstr ""
23152
23153 #. type: textblock
23154 #: ../fish/guestfish-actions.pod:973
23155 msgid ""
23156 "Note that this call allocates disk blocks for the file.  To create a sparse "
23157 "file use L</truncate-size> instead."
23158 msgstr ""
23159
23160 #. type: textblock
23161 #: ../fish/guestfish-actions.pod:976
23162 msgid ""
23163 "The deprecated call L</fallocate> does the same, but owing to an oversight "
23164 "it only allowed 30 bit lengths to be specified, effectively limiting the "
23165 "maximum size of files created through that call to 1GB."
23166 msgstr ""
23167
23168 #. type: =head2
23169 #: ../fish/guestfish-actions.pod:985
23170 msgid "fgrep"
23171 msgstr ""
23172
23173 #. type: verbatim
23174 #: ../fish/guestfish-actions.pod:987
23175 #, no-wrap
23176 msgid ""
23177 " fgrep pattern path\n"
23178 "\n"
23179 msgstr ""
23180
23181 #. type: =head2
23182 #: ../fish/guestfish-actions.pod:995
23183 msgid "fgrepi"
23184 msgstr ""
23185
23186 #. type: verbatim
23187 #: ../fish/guestfish-actions.pod:997
23188 #, no-wrap
23189 msgid ""
23190 " fgrepi pattern path\n"
23191 "\n"
23192 msgstr ""
23193
23194 #. type: =head2
23195 #: ../fish/guestfish-actions.pod:1005
23196 msgid "file"
23197 msgstr ""
23198
23199 #. type: verbatim
23200 #: ../fish/guestfish-actions.pod:1007
23201 #, no-wrap
23202 msgid ""
23203 " file path\n"
23204 "\n"
23205 msgstr ""
23206
23207 #. type: textblock
23208 #: ../fish/guestfish-actions.pod:1023
23209 msgid ""
23210 "See also: L<file(1)>, L</vfs-type>, L</lstat>, L</is-file>, L</is-blockdev> "
23211 "(etc)."
23212 msgstr ""
23213
23214 #. type: =head2
23215 #: ../fish/guestfish-actions.pod:1026
23216 msgid "file-architecture"
23217 msgstr ""
23218
23219 #. type: verbatim
23220 #: ../fish/guestfish-actions.pod:1028
23221 #, no-wrap
23222 msgid ""
23223 " file-architecture filename\n"
23224 "\n"
23225 msgstr ""
23226
23227 #. type: =head2
23228 #: ../fish/guestfish-actions.pod:1131
23229 msgid "filesize"
23230 msgstr ""
23231
23232 #. type: verbatim
23233 #: ../fish/guestfish-actions.pod:1133
23234 #, no-wrap
23235 msgid ""
23236 " filesize file\n"
23237 "\n"
23238 msgstr ""
23239
23240 #. type: textblock
23241 #: ../fish/guestfish-actions.pod:1137
23242 msgid ""
23243 "To get other stats about a file, use L</stat>, L</lstat>, L</is-dir>, L</is-"
23244 "file> etc.  To get the size of block devices, use L</blockdev-getsize64>."
23245 msgstr ""
23246
23247 #. type: =head2
23248 #: ../fish/guestfish-actions.pod:1141
23249 msgid "fill"
23250 msgstr ""
23251
23252 #. type: verbatim
23253 #: ../fish/guestfish-actions.pod:1143
23254 #, no-wrap
23255 msgid ""
23256 " fill c len path\n"
23257 "\n"
23258 msgstr ""
23259
23260 #. type: textblock
23261 #: ../fish/guestfish-actions.pod:1149
23262 msgid ""
23263 "To fill a file with zero bytes (sparsely), it is much more efficient to use "
23264 "L</truncate-size>.  To create a file with a pattern of repeating bytes use "
23265 "L</fill-pattern>."
23266 msgstr ""
23267
23268 #. type: =head2
23269 #: ../fish/guestfish-actions.pod:1154
23270 msgid "fill-pattern"
23271 msgstr ""
23272
23273 #. type: verbatim
23274 #: ../fish/guestfish-actions.pod:1156
23275 #, no-wrap
23276 msgid ""
23277 " fill-pattern pattern len path\n"
23278 "\n"
23279 msgstr ""
23280
23281 #. type: textblock
23282 #: ../fish/guestfish-actions.pod:1158
23283 msgid ""
23284 "This function is like L</fill> except that it creates a new file of length "
23285 "C<len> containing the repeating pattern of bytes in C<pattern>.  The pattern "
23286 "is truncated if necessary to ensure the length of the file is exactly C<len> "
23287 "bytes."
23288 msgstr ""
23289
23290 #. type: =head2
23291 #: ../fish/guestfish-actions.pod:1163
23292 msgid "find"
23293 msgstr ""
23294
23295 #. type: verbatim
23296 #: ../fish/guestfish-actions.pod:1165
23297 #, no-wrap
23298 msgid ""
23299 " find directory\n"
23300 "\n"
23301 msgstr ""
23302
23303 #. type: textblock
23304 #: ../fish/guestfish-actions.pod:1179
23305 msgid "then the returned list from L</find> C</tmp> would be 4 elements:"
23306 msgstr ""
23307
23308 #. type: textblock
23309 #: ../fish/guestfish-actions.pod:1192
23310 msgid "See also L</find0>."
23311 msgstr ""
23312
23313 #. type: =head2
23314 #: ../fish/guestfish-actions.pod:1197
23315 msgid "find0"
23316 msgstr ""
23317
23318 #. type: verbatim
23319 #: ../fish/guestfish-actions.pod:1199
23320 #, no-wrap
23321 msgid ""
23322 " find0 directory (files|-)\n"
23323 "\n"
23324 msgstr ""
23325
23326 #. type: textblock
23327 #: ../fish/guestfish-actions.pod:1205
23328 msgid ""
23329 "This command works the same way as L</find> with the following exceptions:"
23330 msgstr ""
23331
23332 #. type: =head2
23333 #: ../fish/guestfish-actions.pod:1232
23334 msgid "findfs-label"
23335 msgstr ""
23336
23337 #. type: verbatim
23338 #: ../fish/guestfish-actions.pod:1234
23339 #, no-wrap
23340 msgid ""
23341 " findfs-label label\n"
23342 "\n"
23343 msgstr ""
23344
23345 #. type: textblock
23346 #: ../fish/guestfish-actions.pod:1240
23347 msgid "To find the label of a filesystem, use L</vfs-label>."
23348 msgstr ""
23349
23350 #. type: =head2
23351 #: ../fish/guestfish-actions.pod:1242
23352 msgid "findfs-uuid"
23353 msgstr ""
23354
23355 #. type: verbatim
23356 #: ../fish/guestfish-actions.pod:1244
23357 #, no-wrap
23358 msgid ""
23359 " findfs-uuid uuid\n"
23360 "\n"
23361 msgstr ""
23362
23363 #. type: textblock
23364 #: ../fish/guestfish-actions.pod:1250
23365 msgid "To find the UUID of a filesystem, use L</vfs-uuid>."
23366 msgstr ""
23367
23368 #. type: =head2
23369 #: ../fish/guestfish-actions.pod:1252
23370 msgid "fsck"
23371 msgstr ""
23372
23373 #. type: verbatim
23374 #: ../fish/guestfish-actions.pod:1254
23375 #, no-wrap
23376 msgid ""
23377 " fsck fstype device\n"
23378 "\n"
23379 msgstr ""
23380
23381 #. type: =head2
23382 #: ../fish/guestfish-actions.pod:1284
23383 msgid "get-append"
23384 msgstr ""
23385
23386 #. type: verbatim
23387 #: ../fish/guestfish-actions.pod:1286
23388 #, no-wrap
23389 msgid ""
23390 " get-append\n"
23391 "\n"
23392 msgstr ""
23393
23394 #. type: =head2
23395 #: ../fish/guestfish-actions.pod:1293
23396 msgid "get-attach-method"
23397 msgstr ""
23398
23399 #. type: verbatim
23400 #: ../fish/guestfish-actions.pod:1295
23401 #, no-wrap
23402 msgid ""
23403 " get-attach-method\n"
23404 "\n"
23405 msgstr ""
23406
23407 #. type: textblock
23408 #: ../fish/guestfish-actions.pod:1297
23409 msgid "Return the current attach method.  See L</set-attach-method>."
23410 msgstr ""
23411
23412 #. type: =head2
23413 #: ../fish/guestfish-actions.pod:1299
23414 msgid "get-autosync"
23415 msgstr ""
23416
23417 #. type: verbatim
23418 #: ../fish/guestfish-actions.pod:1301
23419 #, no-wrap
23420 msgid ""
23421 " get-autosync\n"
23422 "\n"
23423 msgstr ""
23424
23425 #. type: =head2
23426 #: ../fish/guestfish-actions.pod:1305
23427 msgid "get-direct"
23428 msgstr ""
23429
23430 #. type: verbatim
23431 #: ../fish/guestfish-actions.pod:1307
23432 #, no-wrap
23433 msgid ""
23434 " get-direct\n"
23435 "\n"
23436 msgstr ""
23437
23438 #. type: =head2
23439 #: ../fish/guestfish-actions.pod:1311
23440 msgid "get-e2label"
23441 msgstr ""
23442
23443 #. type: verbatim
23444 #: ../fish/guestfish-actions.pod:1313
23445 #, no-wrap
23446 msgid ""
23447 " get-e2label device\n"
23448 "\n"
23449 msgstr ""
23450
23451 #. type: textblock
23452 #: ../fish/guestfish-actions.pod:1318
23453 msgid ""
23454 "This function is deprecated.  In new code, use the L</vfs_label> call "
23455 "instead."
23456 msgstr ""
23457
23458 #. type: =head2
23459 #: ../fish/guestfish-actions.pod:1325
23460 msgid "get-e2uuid"
23461 msgstr ""
23462
23463 #. type: verbatim
23464 #: ../fish/guestfish-actions.pod:1327
23465 #, no-wrap
23466 msgid ""
23467 " get-e2uuid device\n"
23468 "\n"
23469 msgstr ""
23470
23471 #. type: textblock
23472 #: ../fish/guestfish-actions.pod:1332
23473 msgid ""
23474 "This function is deprecated.  In new code, use the L</vfs_uuid> call instead."
23475 msgstr ""
23476
23477 #. type: =head2
23478 #: ../fish/guestfish-actions.pod:1339
23479 msgid "get-memsize"
23480 msgstr ""
23481
23482 #. type: verbatim
23483 #: ../fish/guestfish-actions.pod:1341
23484 #, no-wrap
23485 msgid ""
23486 " get-memsize\n"
23487 "\n"
23488 msgstr ""
23489
23490 #. type: textblock
23491 #: ../fish/guestfish-actions.pod:1346
23492 msgid ""
23493 "If L</set-memsize> was not called on this handle, and if "
23494 "C<LIBGUESTFS_MEMSIZE> was not set, then this returns the compiled-in default "
23495 "value for memsize."
23496 msgstr ""
23497
23498 #. type: =head2
23499 #: ../fish/guestfish-actions.pod:1353
23500 msgid "get-network"
23501 msgstr ""
23502
23503 #. type: verbatim
23504 #: ../fish/guestfish-actions.pod:1355
23505 #, no-wrap
23506 msgid ""
23507 " get-network\n"
23508 "\n"
23509 msgstr ""
23510
23511 #. type: =head2
23512 #: ../fish/guestfish-actions.pod:1359
23513 msgid "get-path"
23514 msgstr ""
23515
23516 #. type: verbatim
23517 #: ../fish/guestfish-actions.pod:1361
23518 #, no-wrap
23519 msgid ""
23520 " get-path\n"
23521 "\n"
23522 msgstr ""
23523
23524 #. type: =head2
23525 #: ../fish/guestfish-actions.pod:1368
23526 msgid "get-pid"
23527 msgstr ""
23528
23529 #. type: =head2
23530 #: ../fish/guestfish-actions.pod:1370
23531 msgid "pid"
23532 msgstr ""
23533
23534 #. type: verbatim
23535 #: ../fish/guestfish-actions.pod:1372
23536 #, no-wrap
23537 msgid ""
23538 " get-pid\n"
23539 "\n"
23540 msgstr ""
23541
23542 #. type: =head2
23543 #: ../fish/guestfish-actions.pod:1379
23544 msgid "get-qemu"
23545 msgstr ""
23546
23547 #. type: verbatim
23548 #: ../fish/guestfish-actions.pod:1381
23549 #, no-wrap
23550 msgid ""
23551 " get-qemu\n"
23552 "\n"
23553 msgstr ""
23554
23555 #. type: =head2
23556 #: ../fish/guestfish-actions.pod:1388
23557 msgid "get-recovery-proc"
23558 msgstr ""
23559
23560 #. type: verbatim
23561 #: ../fish/guestfish-actions.pod:1390
23562 #, no-wrap
23563 msgid ""
23564 " get-recovery-proc\n"
23565 "\n"
23566 msgstr ""
23567
23568 #. type: =head2
23569 #: ../fish/guestfish-actions.pod:1394
23570 msgid "get-selinux"
23571 msgstr ""
23572
23573 #. type: verbatim
23574 #: ../fish/guestfish-actions.pod:1396
23575 #, no-wrap
23576 msgid ""
23577 " get-selinux\n"
23578 "\n"
23579 msgstr ""
23580
23581 #. type: textblock
23582 #: ../fish/guestfish-actions.pod:1398
23583 msgid ""
23584 "This returns the current setting of the selinux flag which is passed to the "
23585 "appliance at boot time.  See L</set-selinux>."
23586 msgstr ""
23587
23588 #. type: =head2
23589 #: ../fish/guestfish-actions.pod:1404
23590 msgid "get-state"
23591 msgstr ""
23592
23593 #. type: verbatim
23594 #: ../fish/guestfish-actions.pod:1406
23595 #, no-wrap
23596 msgid ""
23597 " get-state\n"
23598 "\n"
23599 msgstr ""
23600
23601 #. type: =head2
23602 #: ../fish/guestfish-actions.pod:1413
23603 msgid "get-trace"
23604 msgstr ""
23605
23606 #. type: verbatim
23607 #: ../fish/guestfish-actions.pod:1415
23608 #, no-wrap
23609 msgid ""
23610 " get-trace\n"
23611 "\n"
23612 msgstr ""
23613
23614 #. type: =head2
23615 #: ../fish/guestfish-actions.pod:1419
23616 msgid "get-umask"
23617 msgstr ""
23618
23619 #. type: verbatim
23620 #: ../fish/guestfish-actions.pod:1421
23621 #, no-wrap
23622 msgid ""
23623 " get-umask\n"
23624 "\n"
23625 msgstr ""
23626
23627 #. type: textblock
23628 #: ../fish/guestfish-actions.pod:1423
23629 msgid ""
23630 "Return the current umask.  By default the umask is C<022> unless it has been "
23631 "set by calling L</umask>."
23632 msgstr ""
23633
23634 #. type: =head2
23635 #: ../fish/guestfish-actions.pod:1426
23636 msgid "get-verbose"
23637 msgstr ""
23638
23639 #. type: verbatim
23640 #: ../fish/guestfish-actions.pod:1428
23641 #, no-wrap
23642 msgid ""
23643 " get-verbose\n"
23644 "\n"
23645 msgstr ""
23646
23647 #. type: =head2
23648 #: ../fish/guestfish-actions.pod:1432
23649 msgid "getcon"
23650 msgstr ""
23651
23652 #. type: verbatim
23653 #: ../fish/guestfish-actions.pod:1434
23654 #, no-wrap
23655 msgid ""
23656 " getcon\n"
23657 "\n"
23658 msgstr ""
23659
23660 #. type: textblock
23661 #: ../fish/guestfish-actions.pod:1438
23662 msgid "See the documentation about SELINUX in L<guestfs(3)>, and L</setcon>"
23663 msgstr ""
23664
23665 #. type: =head2
23666 #: ../fish/guestfish-actions.pod:1441
23667 msgid "getxattr"
23668 msgstr ""
23669
23670 #. type: verbatim
23671 #: ../fish/guestfish-actions.pod:1443
23672 #, no-wrap
23673 msgid ""
23674 " getxattr path name\n"
23675 "\n"
23676 msgstr ""
23677
23678 #. type: textblock
23679 #: ../fish/guestfish-actions.pod:1445
23680 msgid ""
23681 "Get a single extended attribute from file C<path> named C<name>.  This call "
23682 "follows symlinks.  If you want to lookup an extended attribute for the "
23683 "symlink itself, use L</lgetxattr>."
23684 msgstr ""
23685
23686 #. type: textblock
23687 #: ../fish/guestfish-actions.pod:1449 ../fish/guestfish-actions.pod:2477
23688 msgid ""
23689 "Normally it is better to get all extended attributes from a file in one go "
23690 "by calling L</getxattrs>.  However some Linux filesystem implementations are "
23691 "buggy and do not provide a way to list out attributes.  For these "
23692 "filesystems (notably ntfs-3g)  you have to know the names of the extended "
23693 "attributes you want in advance and call this function."
23694 msgstr ""
23695
23696 #. type: textblock
23697 #: ../fish/guestfish-actions.pod:1459
23698 msgid "See also: L</getxattrs>, L</lgetxattr>, L<attr(5)>."
23699 msgstr ""
23700
23701 #. type: =head2
23702 #: ../fish/guestfish-actions.pod:1461
23703 msgid "getxattrs"
23704 msgstr ""
23705
23706 #. type: verbatim
23707 #: ../fish/guestfish-actions.pod:1463
23708 #, no-wrap
23709 msgid ""
23710 " getxattrs path\n"
23711 "\n"
23712 msgstr ""
23713
23714 #. type: textblock
23715 #: ../fish/guestfish-actions.pod:1471
23716 msgid "See also: L</lgetxattrs>, L<attr(5)>."
23717 msgstr ""
23718
23719 #. type: =head2
23720 #: ../fish/guestfish-actions.pod:1473
23721 msgid "glob-expand"
23722 msgstr ""
23723
23724 #. type: verbatim
23725 #: ../fish/guestfish-actions.pod:1475
23726 #, no-wrap
23727 msgid ""
23728 " glob-expand pattern\n"
23729 "\n"
23730 msgstr ""
23731
23732 #. type: =head2
23733 #: ../fish/guestfish-actions.pod:1488
23734 msgid "grep"
23735 msgstr ""
23736
23737 #. type: verbatim
23738 #: ../fish/guestfish-actions.pod:1490
23739 #, no-wrap
23740 msgid ""
23741 " grep regex path\n"
23742 "\n"
23743 msgstr ""
23744
23745 #. type: =head2
23746 #: ../fish/guestfish-actions.pod:1498
23747 msgid "grepi"
23748 msgstr ""
23749
23750 #. type: verbatim
23751 #: ../fish/guestfish-actions.pod:1500
23752 #, no-wrap
23753 msgid ""
23754 " grepi regex path\n"
23755 "\n"
23756 msgstr ""
23757
23758 #. type: =head2
23759 #: ../fish/guestfish-actions.pod:1508
23760 msgid "grub-install"
23761 msgstr ""
23762
23763 #. type: verbatim
23764 #: ../fish/guestfish-actions.pod:1510
23765 #, no-wrap
23766 msgid ""
23767 " grub-install root device\n"
23768 "\n"
23769 msgstr ""
23770
23771 #. type: =head2
23772 #: ../fish/guestfish-actions.pod:1548
23773 msgid "head"
23774 msgstr ""
23775
23776 #. type: verbatim
23777 #: ../fish/guestfish-actions.pod:1550
23778 #, no-wrap
23779 msgid ""
23780 " head path\n"
23781 "\n"
23782 msgstr ""
23783
23784 #. type: =head2
23785 #: ../fish/guestfish-actions.pod:1558
23786 msgid "head-n"
23787 msgstr ""
23788
23789 #. type: verbatim
23790 #: ../fish/guestfish-actions.pod:1560
23791 #, no-wrap
23792 msgid ""
23793 " head-n nrlines path\n"
23794 "\n"
23795 msgstr ""
23796
23797 #. type: =head2
23798 #: ../fish/guestfish-actions.pod:1573
23799 msgid "hexdump"
23800 msgstr ""
23801
23802 #. type: verbatim
23803 #: ../fish/guestfish-actions.pod:1575
23804 #, no-wrap
23805 msgid ""
23806 " hexdump path\n"
23807 "\n"
23808 msgstr ""
23809
23810 #. type: =head2
23811 #: ../fish/guestfish-actions.pod:1583
23812 msgid "initrd-cat"
23813 msgstr ""
23814
23815 #. type: verbatim
23816 #: ../fish/guestfish-actions.pod:1585
23817 #, no-wrap
23818 msgid ""
23819 " initrd-cat initrdpath filename\n"
23820 "\n"
23821 msgstr ""
23822
23823 #. type: textblock
23824 #: ../fish/guestfish-actions.pod:1597
23825 msgid "See also L</initrd-list>."
23826 msgstr ""
23827
23828 #. type: =head2
23829 #: ../fish/guestfish-actions.pod:1602
23830 msgid "initrd-list"
23831 msgstr ""
23832
23833 #. type: verbatim
23834 #: ../fish/guestfish-actions.pod:1604
23835 #, no-wrap
23836 msgid ""
23837 " initrd-list path\n"
23838 "\n"
23839 msgstr ""
23840
23841 #. type: =head2
23842 #: ../fish/guestfish-actions.pod:1616
23843 msgid "inotify-add-watch"
23844 msgstr ""
23845
23846 #. type: verbatim
23847 #: ../fish/guestfish-actions.pod:1618
23848 #, no-wrap
23849 msgid ""
23850 " inotify-add-watch path mask\n"
23851 "\n"
23852 msgstr ""
23853
23854 #. type: =head2
23855 #: ../fish/guestfish-actions.pod:1630
23856 msgid "inotify-close"
23857 msgstr ""
23858
23859 #. type: verbatim
23860 #: ../fish/guestfish-actions.pod:1632
23861 #, no-wrap
23862 msgid ""
23863 " inotify-close\n"
23864 "\n"
23865 msgstr ""
23866
23867 #. type: =head2
23868 #: ../fish/guestfish-actions.pod:1638
23869 msgid "inotify-files"
23870 msgstr ""
23871
23872 #. type: verbatim
23873 #: ../fish/guestfish-actions.pod:1640
23874 #, no-wrap
23875 msgid ""
23876 " inotify-files\n"
23877 "\n"
23878 msgstr ""
23879
23880 #. type: textblock
23881 #: ../fish/guestfish-actions.pod:1642
23882 msgid ""
23883 "This function is a helpful wrapper around L</inotify-read> which just "
23884 "returns a list of pathnames of objects that were touched.  The returned "
23885 "pathnames are sorted and deduplicated."
23886 msgstr ""
23887
23888 #. type: =head2
23889 #: ../fish/guestfish-actions.pod:1646
23890 msgid "inotify-init"
23891 msgstr ""
23892
23893 #. type: verbatim
23894 #: ../fish/guestfish-actions.pod:1648
23895 #, no-wrap
23896 msgid ""
23897 " inotify-init maxevents\n"
23898 "\n"
23899 msgstr ""
23900
23901 #. type: textblock
23902 #: ../fish/guestfish-actions.pod:1654
23903 msgid ""
23904 "C<maxevents> is the maximum number of events which will be queued up between "
23905 "calls to L</inotify-read> or L</inotify-files>.  If this is passed as C<0>, "
23906 "then the kernel (or previously set)  default is used.  For Linux 2.6.29 the "
23907 "default was 16384 events.  Beyond this limit, the kernel throws away events, "
23908 "but records the fact that it threw them away by setting a flag "
23909 "C<IN_Q_OVERFLOW> in the returned structure list (see L</inotify-read>)."
23910 msgstr ""
23911
23912 #. type: textblock
23913 #: ../fish/guestfish-actions.pod:1664
23914 msgid ""
23915 "Before any events are generated, you have to add some watches to the "
23916 "internal watch list.  See: L</inotify-add-watch>, L</inotify-rm-watch> and "
23917 "L</inotify-watch-all>."
23918 msgstr ""
23919
23920 #. type: textblock
23921 #: ../fish/guestfish-actions.pod:1670
23922 msgid ""
23923 "Queued up events should be read periodically by calling L</inotify-read> (or "
23924 "L</inotify-files> which is just a helpful wrapper around L</inotify-read>).  "
23925 "If you don't read the events out often enough then you risk the internal "
23926 "queue overflowing."
23927 msgstr ""
23928
23929 #. type: textblock
23930 #: ../fish/guestfish-actions.pod:1677
23931 msgid ""
23932 "The handle should be closed after use by calling L</inotify-close>.  This "
23933 "also removes any watches automatically."
23934 msgstr ""
23935
23936 #. type: =head2
23937 #: ../fish/guestfish-actions.pod:1686
23938 msgid "inotify-read"
23939 msgstr ""
23940
23941 #. type: verbatim
23942 #: ../fish/guestfish-actions.pod:1688
23943 #, no-wrap
23944 msgid ""
23945 " inotify-read\n"
23946 "\n"
23947 msgstr ""
23948
23949 #. type: =head2
23950 #: ../fish/guestfish-actions.pod:1701
23951 msgid "inotify-rm-watch"
23952 msgstr ""
23953
23954 #. type: verbatim
23955 #: ../fish/guestfish-actions.pod:1703
23956 #, no-wrap
23957 msgid ""
23958 " inotify-rm-watch wd\n"
23959 "\n"
23960 msgstr ""
23961
23962 #. type: textblock
23963 #: ../fish/guestfish-actions.pod:1705
23964 msgid "Remove a previously defined inotify watch.  See L</inotify-add-watch>."
23965 msgstr ""
23966
23967 #. type: =head2
23968 #: ../fish/guestfish-actions.pod:1708
23969 msgid "inspect-get-arch"
23970 msgstr ""
23971
23972 #. type: verbatim
23973 #: ../fish/guestfish-actions.pod:1710
23974 #, no-wrap
23975 msgid ""
23976 " inspect-get-arch root\n"
23977 "\n"
23978 msgstr ""
23979
23980 #. type: textblock
23981 #: ../fish/guestfish-actions.pod:1712 ../fish/guestfish-actions.pod:1728
23982 #: ../fish/guestfish-actions.pod:1814 ../fish/guestfish-actions.pod:1850
23983 #: ../fish/guestfish-actions.pod:1868 ../fish/guestfish-actions.pod:1902
23984 #: ../fish/guestfish-actions.pod:1917 ../fish/guestfish-actions.pod:1938
23985 #: ../fish/guestfish-actions.pod:1953 ../fish/guestfish-actions.pod:1986
23986 #: ../fish/guestfish-actions.pod:2008 ../fish/guestfish-actions.pod:2032
23987 #: ../fish/guestfish-actions.pod:2049 ../fish/guestfish-actions.pod:2092
23988 #: ../fish/guestfish-actions.pod:2127 ../fish/guestfish-actions.pod:2143
23989 #: ../fish/guestfish-actions.pod:2159 ../fish/guestfish-actions.pod:2172
23990 #: ../fish/guestfish-actions.pod:2185 ../fish/guestfish-actions.pod:2200
23991 msgid ""
23992 "This function should only be called with a root device string as returned by "
23993 "L</inspect-os>."
23994 msgstr ""
23995
23996 #. type: textblock
23997 #: ../fish/guestfish-actions.pod:1715
23998 msgid ""
23999 "This returns the architecture of the inspected operating system.  The "
24000 "possible return values are listed under L</file-architecture>."
24001 msgstr ""
24002
24003 #. type: =head2
24004 #: ../fish/guestfish-actions.pod:1724
24005 msgid "inspect-get-distro"
24006 msgstr ""
24007
24008 #. type: verbatim
24009 #: ../fish/guestfish-actions.pod:1726
24010 #, no-wrap
24011 msgid ""
24012 " inspect-get-distro root\n"
24013 "\n"
24014 msgstr ""
24015
24016 #. type: =head2
24017 #: ../fish/guestfish-actions.pod:1810
24018 msgid "inspect-get-drive-mappings"
24019 msgstr ""
24020
24021 #. type: verbatim
24022 #: ../fish/guestfish-actions.pod:1812
24023 #, no-wrap
24024 msgid ""
24025 " inspect-get-drive-mappings root\n"
24026 "\n"
24027 msgstr ""
24028
24029 #. type: textblock
24030 #: ../fish/guestfish-actions.pod:1842
24031 msgid ""
24032 "Please read L<guestfs(3)/INSPECTION> for more details.  See also L</inspect-"
24033 "get-mountpoints>, L</inspect-get-filesystems>."
24034 msgstr ""
24035
24036 #. type: =head2
24037 #: ../fish/guestfish-actions.pod:1846
24038 msgid "inspect-get-filesystems"
24039 msgstr ""
24040
24041 #. type: verbatim
24042 #: ../fish/guestfish-actions.pod:1848
24043 #, no-wrap
24044 msgid ""
24045 " inspect-get-filesystems root\n"
24046 "\n"
24047 msgstr ""
24048
24049 #. type: textblock
24050 #: ../fish/guestfish-actions.pod:1861
24051 msgid ""
24052 "Please read L<guestfs(3)/INSPECTION> for more details.  See also L</inspect-"
24053 "get-mountpoints>."
24054 msgstr ""
24055
24056 #. type: =head2
24057 #: ../fish/guestfish-actions.pod:1864
24058 msgid "inspect-get-format"
24059 msgstr ""
24060
24061 #. type: verbatim
24062 #: ../fish/guestfish-actions.pod:1866
24063 #, no-wrap
24064 msgid ""
24065 " inspect-get-format root\n"
24066 "\n"
24067 msgstr ""
24068
24069 #. type: =head2
24070 #: ../fish/guestfish-actions.pod:1898
24071 msgid "inspect-get-hostname"
24072 msgstr ""
24073
24074 #. type: verbatim
24075 #: ../fish/guestfish-actions.pod:1900
24076 #, no-wrap
24077 msgid ""
24078 " inspect-get-hostname root\n"
24079 "\n"
24080 msgstr ""
24081
24082 #. type: =head2
24083 #: ../fish/guestfish-actions.pod:1913
24084 msgid "inspect-get-major-version"
24085 msgstr ""
24086
24087 #. type: verbatim
24088 #: ../fish/guestfish-actions.pod:1915
24089 #, no-wrap
24090 msgid ""
24091 " inspect-get-major-version root\n"
24092 "\n"
24093 msgstr ""
24094
24095 #. type: =head2
24096 #: ../fish/guestfish-actions.pod:1934
24097 msgid "inspect-get-minor-version"
24098 msgstr ""
24099
24100 #. type: verbatim
24101 #: ../fish/guestfish-actions.pod:1936
24102 #, no-wrap
24103 msgid ""
24104 " inspect-get-minor-version root\n"
24105 "\n"
24106 msgstr ""
24107
24108 #. type: textblock
24109 #: ../fish/guestfish-actions.pod:1946
24110 msgid ""
24111 "Please read L<guestfs(3)/INSPECTION> for more details.  See also L</inspect-"
24112 "get-major-version>."
24113 msgstr ""
24114
24115 #. type: =head2
24116 #: ../fish/guestfish-actions.pod:1949
24117 msgid "inspect-get-mountpoints"
24118 msgstr ""
24119
24120 #. type: verbatim
24121 #: ../fish/guestfish-actions.pod:1951
24122 #, no-wrap
24123 msgid ""
24124 " inspect-get-mountpoints root\n"
24125 "\n"
24126 msgstr ""
24127
24128 #. type: textblock
24129 #: ../fish/guestfish-actions.pod:1973
24130 msgid ""
24131 "For operating systems like Windows which still use drive letters, this call "
24132 "will only return an entry for the first drive \"mounted on\" C</>.  For "
24133 "information about the mapping of drive letters to partitions, see L</inspect-"
24134 "get-drive-mappings>."
24135 msgstr ""
24136
24137 #. type: textblock
24138 #: ../fish/guestfish-actions.pod:1979
24139 msgid ""
24140 "Please read L<guestfs(3)/INSPECTION> for more details.  See also L</inspect-"
24141 "get-filesystems>."
24142 msgstr ""
24143
24144 #. type: =head2
24145 #: ../fish/guestfish-actions.pod:1982
24146 msgid "inspect-get-package-format"
24147 msgstr ""
24148
24149 #. type: verbatim
24150 #: ../fish/guestfish-actions.pod:1984
24151 #, no-wrap
24152 msgid ""
24153 " inspect-get-package-format root\n"
24154 "\n"
24155 msgstr ""
24156
24157 #. type: textblock
24158 #: ../fish/guestfish-actions.pod:1989
24159 msgid ""
24160 "This function and L</inspect-get-package-management> return the package "
24161 "format and package management tool used by the inspected operating system.  "
24162 "For example for Fedora these functions would return C<rpm> (package format) "
24163 "and C<yum> (package management)."
24164 msgstr ""
24165
24166 #. type: =head2
24167 #: ../fish/guestfish-actions.pod:2004
24168 msgid "inspect-get-package-management"
24169 msgstr ""
24170
24171 #. type: verbatim
24172 #: ../fish/guestfish-actions.pod:2006
24173 #, no-wrap
24174 msgid ""
24175 " inspect-get-package-management root\n"
24176 "\n"
24177 msgstr ""
24178
24179 #. type: textblock
24180 #: ../fish/guestfish-actions.pod:2011
24181 msgid ""
24182 "L</inspect-get-package-format> and this function return the package format "
24183 "and package management tool used by the inspected operating system.  For "
24184 "example for Fedora these functions would return C<rpm> (package format) and "
24185 "C<yum> (package management)."
24186 msgstr ""
24187
24188 #. type: =head2
24189 #: ../fish/guestfish-actions.pod:2028
24190 msgid "inspect-get-product-name"
24191 msgstr ""
24192
24193 #. type: verbatim
24194 #: ../fish/guestfish-actions.pod:2030
24195 #, no-wrap
24196 msgid ""
24197 " inspect-get-product-name root\n"
24198 "\n"
24199 msgstr ""
24200
24201 #. type: =head2
24202 #: ../fish/guestfish-actions.pod:2045
24203 msgid "inspect-get-product-variant"
24204 msgstr ""
24205
24206 #. type: verbatim
24207 #: ../fish/guestfish-actions.pod:2047
24208 #, no-wrap
24209 msgid ""
24210 " inspect-get-product-variant root\n"
24211 "\n"
24212 msgstr ""
24213
24214 #. type: textblock
24215 #: ../fish/guestfish-actions.pod:2071
24216 msgid ""
24217 "Please read L<guestfs(3)/INSPECTION> for more details.  See also L</inspect-"
24218 "get-product-name>, L</inspect-get-major-version>."
24219 msgstr ""
24220
24221 #. type: =head2
24222 #: ../fish/guestfish-actions.pod:2075
24223 msgid "inspect-get-roots"
24224 msgstr ""
24225
24226 #. type: verbatim
24227 #: ../fish/guestfish-actions.pod:2077
24228 #, no-wrap
24229 msgid ""
24230 " inspect-get-roots\n"
24231 "\n"
24232 msgstr ""
24233
24234 #. type: textblock
24235 #: ../fish/guestfish-actions.pod:2079
24236 msgid ""
24237 "This function is a convenient way to get the list of root devices, as "
24238 "returned from a previous call to L</inspect-os>, but without redoing the "
24239 "whole inspection process."
24240 msgstr ""
24241
24242 #. type: textblock
24243 #: ../fish/guestfish-actions.pod:2083
24244 msgid ""
24245 "This returns an empty list if either no root devices were found or the "
24246 "caller has not called L</inspect-os>."
24247 msgstr ""
24248
24249 #. type: =head2
24250 #: ../fish/guestfish-actions.pod:2088
24251 msgid "inspect-get-type"
24252 msgstr ""
24253
24254 #. type: verbatim
24255 #: ../fish/guestfish-actions.pod:2090
24256 #, no-wrap
24257 msgid ""
24258 " inspect-get-type root\n"
24259 "\n"
24260 msgstr ""
24261
24262 #. type: =head2
24263 #: ../fish/guestfish-actions.pod:2123
24264 msgid "inspect-get-windows-current-control-set"
24265 msgstr ""
24266
24267 #. type: verbatim
24268 #: ../fish/guestfish-actions.pod:2125
24269 #, no-wrap
24270 msgid ""
24271 " inspect-get-windows-current-control-set root\n"
24272 "\n"
24273 msgstr ""
24274
24275 #. type: =head2
24276 #: ../fish/guestfish-actions.pod:2139
24277 msgid "inspect-get-windows-systemroot"
24278 msgstr ""
24279
24280 #. type: verbatim
24281 #: ../fish/guestfish-actions.pod:2141
24282 #, no-wrap
24283 msgid ""
24284 " inspect-get-windows-systemroot root\n"
24285 "\n"
24286 msgstr ""
24287
24288 #. type: =head2
24289 #: ../fish/guestfish-actions.pod:2155
24290 msgid "inspect-is-live"
24291 msgstr ""
24292
24293 #. type: verbatim
24294 #: ../fish/guestfish-actions.pod:2157
24295 #, no-wrap
24296 msgid ""
24297 " inspect-is-live root\n"
24298 "\n"
24299 msgstr ""
24300
24301 #. type: textblock
24302 #: ../fish/guestfish-actions.pod:2162
24303 msgid ""
24304 "If L</inspect-get-format> returns C<installer> (this is an install disk), "
24305 "then this returns true if a live image was detected on the disk."
24306 msgstr ""
24307
24308 #. type: =head2
24309 #: ../fish/guestfish-actions.pod:2168
24310 msgid "inspect-is-multipart"
24311 msgstr ""
24312
24313 #. type: verbatim
24314 #: ../fish/guestfish-actions.pod:2170
24315 #, no-wrap
24316 msgid ""
24317 " inspect-is-multipart root\n"
24318 "\n"
24319 msgstr ""
24320
24321 #. type: textblock
24322 #: ../fish/guestfish-actions.pod:2175
24323 msgid ""
24324 "If L</inspect-get-format> returns C<installer> (this is an install disk), "
24325 "then this returns true if the disk is part of a set."
24326 msgstr ""
24327
24328 #. type: =head2
24329 #: ../fish/guestfish-actions.pod:2181
24330 msgid "inspect-is-netinst"
24331 msgstr ""
24332
24333 #. type: verbatim
24334 #: ../fish/guestfish-actions.pod:2183
24335 #, no-wrap
24336 msgid ""
24337 " inspect-is-netinst root\n"
24338 "\n"
24339 msgstr ""
24340
24341 #. type: textblock
24342 #: ../fish/guestfish-actions.pod:2188
24343 msgid ""
24344 "If L</inspect-get-format> returns C<installer> (this is an install disk), "
24345 "then this returns true if the disk is a network installer, ie. not a self-"
24346 "contained install CD but one which is likely to require network access to "
24347 "complete the install."
24348 msgstr ""
24349
24350 #. type: =head2
24351 #: ../fish/guestfish-actions.pod:2196
24352 msgid "inspect-list-applications"
24353 msgstr ""
24354
24355 #. type: verbatim
24356 #: ../fish/guestfish-actions.pod:2198
24357 #, no-wrap
24358 msgid ""
24359 " inspect-list-applications root\n"
24360 "\n"
24361 msgstr ""
24362
24363 #. type: textblock
24364 #: ../fish/guestfish-actions.pod:2205
24365 msgid ""
24366 "I<Note:> This call works differently from other parts of the inspection "
24367 "API.  You have to call L</inspect-os>, then L</inspect-get-mountpoints>, "
24368 "then mount up the disks, before calling this.  Listing applications is a "
24369 "significantly more difficult operation which requires access to the full "
24370 "filesystem.  Also note that unlike the other L</inspect-get-*> calls which "
24371 "are just returning data cached in the libguestfs handle, this call actually "
24372 "reads parts of the mounted filesystems during the call."
24373 msgstr ""
24374
24375 #. type: =head2
24376 #: ../fish/guestfish-actions.pod:2295
24377 msgid "inspect-os"
24378 msgstr ""
24379
24380 #. type: verbatim
24381 #: ../fish/guestfish-actions.pod:2297
24382 #, no-wrap
24383 msgid ""
24384 " inspect-os\n"
24385 "\n"
24386 msgstr ""
24387
24388 #. type: textblock
24389 #: ../fish/guestfish-actions.pod:2312
24390 msgid ""
24391 "You can pass the root string(s) returned to other L</inspect-get-*> "
24392 "functions in order to query further information about each operating system, "
24393 "such as the name and version."
24394 msgstr ""
24395
24396 #. type: textblock
24397 #: ../fish/guestfish-actions.pod:2317
24398 msgid ""
24399 "This function uses other libguestfs features such as L</mount-ro> and L</"
24400 "umount-all> in order to mount and unmount filesystems and look at the "
24401 "contents.  This should be called with no disks currently mounted.  The "
24402 "function may also use Augeas, so any existing Augeas handle will be closed."
24403 msgstr ""
24404
24405 #. type: textblock
24406 #: ../fish/guestfish-actions.pod:2329 ../fish/guestfish-actions.pod:2505
24407 #: ../fish/guestfish-actions.pod:2551
24408 msgid "See also L</list-filesystems>."
24409 msgstr ""
24410
24411 #. type: =head2
24412 #: ../fish/guestfish-actions.pod:2331
24413 msgid "is-blockdev"
24414 msgstr ""
24415
24416 #. type: verbatim
24417 #: ../fish/guestfish-actions.pod:2333
24418 #, no-wrap
24419 msgid ""
24420 " is-blockdev path\n"
24421 "\n"
24422 msgstr ""
24423
24424 #. type: textblock
24425 #: ../fish/guestfish-actions.pod:2338 ../fish/guestfish-actions.pod:2356
24426 #: ../fish/guestfish-actions.pod:2375 ../fish/guestfish-actions.pod:2384
24427 #: ../fish/guestfish-actions.pod:2394 ../fish/guestfish-actions.pod:2428
24428 #: ../fish/guestfish-actions.pod:2437
24429 msgid "See also L</stat>."
24430 msgstr ""
24431
24432 #. type: =head2
24433 #: ../fish/guestfish-actions.pod:2340
24434 msgid "is-busy"
24435 msgstr ""
24436
24437 #. type: verbatim
24438 #: ../fish/guestfish-actions.pod:2342
24439 #, no-wrap
24440 msgid ""
24441 " is-busy\n"
24442 "\n"
24443 msgstr ""
24444
24445 #. type: =head2
24446 #: ../fish/guestfish-actions.pod:2349
24447 msgid "is-chardev"
24448 msgstr ""
24449
24450 #. type: verbatim
24451 #: ../fish/guestfish-actions.pod:2351
24452 #, no-wrap
24453 msgid ""
24454 " is-chardev path\n"
24455 "\n"
24456 msgstr ""
24457
24458 #. type: =head2
24459 #: ../fish/guestfish-actions.pod:2358
24460 msgid "is-config"
24461 msgstr ""
24462
24463 #. type: verbatim
24464 #: ../fish/guestfish-actions.pod:2360
24465 #, no-wrap
24466 msgid ""
24467 " is-config\n"
24468 "\n"
24469 msgstr ""
24470
24471 #. type: =head2
24472 #: ../fish/guestfish-actions.pod:2367
24473 msgid "is-dir"
24474 msgstr ""
24475
24476 #. type: verbatim
24477 #: ../fish/guestfish-actions.pod:2369
24478 #, no-wrap
24479 msgid ""
24480 " is-dir path\n"
24481 "\n"
24482 msgstr ""
24483
24484 #. type: =head2
24485 #: ../fish/guestfish-actions.pod:2377
24486 msgid "is-fifo"
24487 msgstr ""
24488
24489 #. type: verbatim
24490 #: ../fish/guestfish-actions.pod:2379
24491 #, no-wrap
24492 msgid ""
24493 " is-fifo path\n"
24494 "\n"
24495 msgstr ""
24496
24497 #. type: =head2
24498 #: ../fish/guestfish-actions.pod:2386
24499 msgid "is-file"
24500 msgstr ""
24501
24502 #. type: verbatim
24503 #: ../fish/guestfish-actions.pod:2388
24504 #, no-wrap
24505 msgid ""
24506 " is-file path\n"
24507 "\n"
24508 msgstr ""
24509
24510 #. type: =head2
24511 #: ../fish/guestfish-actions.pod:2396
24512 msgid "is-launching"
24513 msgstr ""
24514
24515 #. type: verbatim
24516 #: ../fish/guestfish-actions.pod:2398
24517 #, no-wrap
24518 msgid ""
24519 " is-launching\n"
24520 "\n"
24521 msgstr ""
24522
24523 #. type: =head2
24524 #: ../fish/guestfish-actions.pod:2405
24525 msgid "is-lv"
24526 msgstr ""
24527
24528 #. type: verbatim
24529 #: ../fish/guestfish-actions.pod:2407
24530 #, no-wrap
24531 msgid ""
24532 " is-lv device\n"
24533 "\n"
24534 msgstr ""
24535
24536 #. type: =head2
24537 #: ../fish/guestfish-actions.pod:2412
24538 msgid "is-ready"
24539 msgstr ""
24540
24541 #. type: verbatim
24542 #: ../fish/guestfish-actions.pod:2414
24543 #, no-wrap
24544 msgid ""
24545 " is-ready\n"
24546 "\n"
24547 msgstr ""
24548
24549 #. type: =head2
24550 #: ../fish/guestfish-actions.pod:2421
24551 msgid "is-socket"
24552 msgstr ""
24553
24554 #. type: verbatim
24555 #: ../fish/guestfish-actions.pod:2423
24556 #, no-wrap
24557 msgid ""
24558 " is-socket path\n"
24559 "\n"
24560 msgstr ""
24561
24562 #. type: =head2
24563 #: ../fish/guestfish-actions.pod:2430
24564 msgid "is-symlink"
24565 msgstr ""
24566
24567 #. type: verbatim
24568 #: ../fish/guestfish-actions.pod:2432
24569 #, no-wrap
24570 msgid ""
24571 " is-symlink path\n"
24572 "\n"
24573 msgstr ""
24574
24575 #. type: =head2
24576 #: ../fish/guestfish-actions.pod:2439
24577 msgid "kill-subprocess"
24578 msgstr ""
24579
24580 #. type: verbatim
24581 #: ../fish/guestfish-actions.pod:2441
24582 #, no-wrap
24583 msgid ""
24584 " kill-subprocess\n"
24585 "\n"
24586 msgstr ""
24587
24588 #. type: =head2
24589 #: ../fish/guestfish-actions.pod:2445
24590 msgid "launch"
24591 msgstr ""
24592
24593 #. type: =head2
24594 #: ../fish/guestfish-actions.pod:2447
24595 msgid "run"
24596 msgstr ""
24597
24598 #. type: verbatim
24599 #: ../fish/guestfish-actions.pod:2449
24600 #, no-wrap
24601 msgid ""
24602 " launch\n"
24603 "\n"
24604 msgstr ""
24605
24606 #. type: =head2
24607 #: ../fish/guestfish-actions.pod:2457
24608 msgid "lchown"
24609 msgstr ""
24610
24611 #. type: verbatim
24612 #: ../fish/guestfish-actions.pod:2459
24613 #, no-wrap
24614 msgid ""
24615 " lchown owner group path\n"
24616 "\n"
24617 msgstr ""
24618
24619 #. type: textblock
24620 #: ../fish/guestfish-actions.pod:2461
24621 msgid ""
24622 "Change the file owner to C<owner> and group to C<group>.  This is like L</"
24623 "chown> but if C<path> is a symlink then the link itself is changed, not the "
24624 "target."
24625 msgstr ""
24626
24627 #. type: =head2
24628 #: ../fish/guestfish-actions.pod:2469
24629 msgid "lgetxattr"
24630 msgstr ""
24631
24632 #. type: verbatim
24633 #: ../fish/guestfish-actions.pod:2471
24634 #, no-wrap
24635 msgid ""
24636 " lgetxattr path name\n"
24637 "\n"
24638 msgstr ""
24639
24640 #. type: textblock
24641 #: ../fish/guestfish-actions.pod:2487
24642 msgid "See also: L</lgetxattrs>, L</getxattr>, L<attr(5)>."
24643 msgstr ""
24644
24645 #. type: =head2
24646 #: ../fish/guestfish-actions.pod:2489
24647 msgid "lgetxattrs"
24648 msgstr ""
24649
24650 #. type: verbatim
24651 #: ../fish/guestfish-actions.pod:2491
24652 #, no-wrap
24653 msgid ""
24654 " lgetxattrs path\n"
24655 "\n"
24656 msgstr ""
24657
24658 #. type: textblock
24659 #: ../fish/guestfish-actions.pod:2493
24660 msgid ""
24661 "This is the same as L</getxattrs>, but if C<path> is a symbolic link, then "
24662 "it returns the extended attributes of the link itself."
24663 msgstr ""
24664
24665 #. type: =head2
24666 #: ../fish/guestfish-actions.pod:2497
24667 msgid "list-devices"
24668 msgstr ""
24669
24670 #. type: verbatim
24671 #: ../fish/guestfish-actions.pod:2499
24672 #, no-wrap
24673 msgid ""
24674 " list-devices\n"
24675 "\n"
24676 msgstr ""
24677
24678 #. type: =head2
24679 #: ../fish/guestfish-actions.pod:2507
24680 msgid "list-filesystems"
24681 msgstr ""
24682
24683 #. type: verbatim
24684 #: ../fish/guestfish-actions.pod:2509
24685 #, no-wrap
24686 msgid ""
24687 " list-filesystems\n"
24688 "\n"
24689 msgstr ""
24690
24691 #. type: textblock
24692 #: ../fish/guestfish-actions.pod:2528
24693 msgid ""
24694 "This command runs other libguestfs commands, which might include L</mount> "
24695 "and L</umount>, and therefore you should use this soon after launch and only "
24696 "when nothing is mounted."
24697 msgstr ""
24698
24699 #. type: textblock
24700 #: ../fish/guestfish-actions.pod:2532
24701 msgid ""
24702 "Not all of the filesystems returned will be mountable.  In particular, swap "
24703 "partitions are returned in the list.  Also this command does not check that "
24704 "each filesystem found is valid and mountable, and some filesystems might be "
24705 "mountable but require special options.  Filesystems may not all belong to a "
24706 "single logical operating system (use L</inspect-os> to look for OSes)."
24707 msgstr ""
24708
24709 #. type: =head2
24710 #: ../fish/guestfish-actions.pod:2540
24711 msgid "list-partitions"
24712 msgstr ""
24713
24714 #. type: verbatim
24715 #: ../fish/guestfish-actions.pod:2542
24716 #, no-wrap
24717 msgid ""
24718 " list-partitions\n"
24719 "\n"
24720 msgstr ""
24721
24722 #. type: textblock
24723 #: ../fish/guestfish-actions.pod:2548
24724 msgid ""
24725 "This does not return logical volumes.  For that you will need to call L</"
24726 "lvs>."
24727 msgstr ""
24728
24729 #. type: =head2
24730 #: ../fish/guestfish-actions.pod:2553
24731 msgid "ll"
24732 msgstr ""
24733
24734 #. type: verbatim
24735 #: ../fish/guestfish-actions.pod:2555
24736 #, no-wrap
24737 msgid ""
24738 " ll directory\n"
24739 "\n"
24740 msgstr ""
24741
24742 #. type: =head2
24743 #: ../fish/guestfish-actions.pod:2563
24744 msgid "ln"
24745 msgstr ""
24746
24747 #. type: verbatim
24748 #: ../fish/guestfish-actions.pod:2565
24749 #, no-wrap
24750 msgid ""
24751 " ln target linkname\n"
24752 "\n"
24753 msgstr ""
24754
24755 #. type: =head2
24756 #: ../fish/guestfish-actions.pod:2569
24757 msgid "ln-f"
24758 msgstr ""
24759
24760 #. type: verbatim
24761 #: ../fish/guestfish-actions.pod:2571
24762 #, no-wrap
24763 msgid ""
24764 " ln-f target linkname\n"
24765 "\n"
24766 msgstr ""
24767
24768 #. type: =head2
24769 #: ../fish/guestfish-actions.pod:2576
24770 msgid "ln-s"
24771 msgstr ""
24772
24773 #. type: verbatim
24774 #: ../fish/guestfish-actions.pod:2578
24775 #, no-wrap
24776 msgid ""
24777 " ln-s target linkname\n"
24778 "\n"
24779 msgstr ""
24780
24781 #. type: =head2
24782 #: ../fish/guestfish-actions.pod:2582
24783 msgid "ln-sf"
24784 msgstr ""
24785
24786 #. type: verbatim
24787 #: ../fish/guestfish-actions.pod:2584
24788 #, no-wrap
24789 msgid ""
24790 " ln-sf target linkname\n"
24791 "\n"
24792 msgstr ""
24793
24794 #. type: =head2
24795 #: ../fish/guestfish-actions.pod:2589
24796 msgid "lremovexattr"
24797 msgstr ""
24798
24799 #. type: verbatim
24800 #: ../fish/guestfish-actions.pod:2591
24801 #, no-wrap
24802 msgid ""
24803 " lremovexattr xattr path\n"
24804 "\n"
24805 msgstr ""
24806
24807 #. type: textblock
24808 #: ../fish/guestfish-actions.pod:2593
24809 msgid ""
24810 "This is the same as L</removexattr>, but if C<path> is a symbolic link, then "
24811 "it removes an extended attribute of the link itself."
24812 msgstr ""
24813
24814 #. type: =head2
24815 #: ../fish/guestfish-actions.pod:2597
24816 msgid "ls"
24817 msgstr ""
24818
24819 #. type: verbatim
24820 #: ../fish/guestfish-actions.pod:2599
24821 #, no-wrap
24822 msgid ""
24823 " ls directory\n"
24824 "\n"
24825 msgstr ""
24826
24827 #. type: textblock
24828 #: ../fish/guestfish-actions.pod:2605
24829 msgid ""
24830 "This command is mostly useful for interactive sessions.  Programs should "
24831 "probably use L</readdir> instead."
24832 msgstr ""
24833
24834 #. type: =head2
24835 #: ../fish/guestfish-actions.pod:2608
24836 msgid "lsetxattr"
24837 msgstr ""
24838
24839 #. type: verbatim
24840 #: ../fish/guestfish-actions.pod:2610
24841 #, no-wrap
24842 msgid ""
24843 " lsetxattr xattr val vallen path\n"
24844 "\n"
24845 msgstr ""
24846
24847 #. type: textblock
24848 #: ../fish/guestfish-actions.pod:2612
24849 msgid ""
24850 "This is the same as L</setxattr>, but if C<path> is a symbolic link, then it "
24851 "sets an extended attribute of the link itself."
24852 msgstr ""
24853
24854 #. type: =head2
24855 #: ../fish/guestfish-actions.pod:2616
24856 msgid "lstat"
24857 msgstr ""
24858
24859 #. type: verbatim
24860 #: ../fish/guestfish-actions.pod:2618
24861 #, no-wrap
24862 msgid ""
24863 " lstat path\n"
24864 "\n"
24865 msgstr ""
24866
24867 #. type: textblock
24868 #: ../fish/guestfish-actions.pod:2622
24869 msgid ""
24870 "This is the same as L</stat> except that if C<path> is a symbolic link, then "
24871 "the link is stat-ed, not the file it refers to."
24872 msgstr ""
24873
24874 #. type: =head2
24875 #: ../fish/guestfish-actions.pod:2628
24876 msgid "lstatlist"
24877 msgstr ""
24878
24879 #. type: verbatim
24880 #: ../fish/guestfish-actions.pod:2630
24881 #, no-wrap
24882 msgid ""
24883 " lstatlist path 'names ...'\n"
24884 "\n"
24885 msgstr ""
24886
24887 #. type: textblock
24888 #: ../fish/guestfish-actions.pod:2632
24889 msgid ""
24890 "This call allows you to perform the L</lstat> operation on multiple files, "
24891 "where all files are in the directory C<path>.  C<names> is the list of files "
24892 "from this directory."
24893 msgstr ""
24894
24895 #. type: textblock
24896 #: ../fish/guestfish-actions.pod:2641
24897 msgid ""
24898 "This call is intended for programs that want to efficiently list a directory "
24899 "contents without making many round-trips.  See also L</lxattrlist> for a "
24900 "similarly efficient call for getting extended attributes.  Very long "
24901 "directory listings might cause the protocol message size to be exceeded, "
24902 "causing this call to fail.  The caller must split up such requests into "
24903 "smaller groups of names."
24904 msgstr ""
24905
24906 #. type: =head2
24907 #: ../fish/guestfish-actions.pod:2649
24908 msgid "luks-add-key"
24909 msgstr ""
24910
24911 #. type: verbatim
24912 #: ../fish/guestfish-actions.pod:2651
24913 #, no-wrap
24914 msgid ""
24915 " luks-add-key device keyslot\n"
24916 "\n"
24917 msgstr ""
24918
24919 #. type: textblock
24920 #: ../fish/guestfish-actions.pod:2658
24921 msgid ""
24922 "Note that if C<keyslot> already contains a key, then this command will "
24923 "fail.  You have to use L</luks-kill-slot> first to remove that key."
24924 msgstr ""
24925
24926 #. type: textblock
24927 #: ../fish/guestfish-actions.pod:2662 ../fish/guestfish-actions.pod:2684
24928 #: ../fish/guestfish-actions.pod:2697 ../fish/guestfish-actions.pod:2711
24929 #: ../fish/guestfish-actions.pod:2734 ../fish/guestfish-actions.pod:2744
24930 msgid ""
24931 "This command has one or more key or passphrase parameters.  Guestfish will "
24932 "prompt for these separately."
24933 msgstr ""
24934
24935 #. type: =head2
24936 #: ../fish/guestfish-actions.pod:2665
24937 msgid "luks-close"
24938 msgstr ""
24939
24940 #. type: verbatim
24941 #: ../fish/guestfish-actions.pod:2667
24942 #, no-wrap
24943 msgid ""
24944 " luks-close device\n"
24945 "\n"
24946 msgstr ""
24947
24948 #. type: textblock
24949 #: ../fish/guestfish-actions.pod:2669
24950 msgid ""
24951 "This closes a LUKS device that was created earlier by L</luks-open> or L</"
24952 "luks-open-ro>.  The C<device> parameter must be the name of the LUKS mapping "
24953 "device (ie. C</dev/mapper/mapname>) and I<not> the name of the underlying "
24954 "block device."
24955 msgstr ""
24956
24957 #. type: =head2
24958 #: ../fish/guestfish-actions.pod:2675
24959 msgid "luks-format"
24960 msgstr ""
24961
24962 #. type: verbatim
24963 #: ../fish/guestfish-actions.pod:2677
24964 #, no-wrap
24965 msgid ""
24966 " luks-format device keyslot\n"
24967 "\n"
24968 msgstr ""
24969
24970 #. type: =head2
24971 #: ../fish/guestfish-actions.pod:2690
24972 msgid "luks-format-cipher"
24973 msgstr ""
24974
24975 #. type: verbatim
24976 #: ../fish/guestfish-actions.pod:2692
24977 #, no-wrap
24978 msgid ""
24979 " luks-format-cipher device keyslot cipher\n"
24980 "\n"
24981 msgstr ""
24982
24983 #. type: textblock
24984 #: ../fish/guestfish-actions.pod:2694
24985 msgid ""
24986 "This command is the same as L</luks-format> but it also allows you to set "
24987 "the C<cipher> used."
24988 msgstr ""
24989
24990 #. type: =head2
24991 #: ../fish/guestfish-actions.pod:2703
24992 msgid "luks-kill-slot"
24993 msgstr ""
24994
24995 #. type: verbatim
24996 #: ../fish/guestfish-actions.pod:2705
24997 #, no-wrap
24998 msgid ""
24999 " luks-kill-slot device keyslot\n"
25000 "\n"
25001 msgstr ""
25002
25003 #. type: =head2
25004 #: ../fish/guestfish-actions.pod:2714
25005 msgid "luks-open"
25006 msgstr ""
25007
25008 #. type: verbatim
25009 #: ../fish/guestfish-actions.pod:2716
25010 #, no-wrap
25011 msgid ""
25012 " luks-open device mapname\n"
25013 "\n"
25014 msgstr ""
25015
25016 #. type: textblock
25017 #: ../fish/guestfish-actions.pod:2730
25018 msgid ""
25019 "If this block device contains LVM volume groups, then calling L</vgscan> "
25020 "followed by L</vg-activate-all> will make them visible."
25021 msgstr ""
25022
25023 #. type: =head2
25024 #: ../fish/guestfish-actions.pod:2737
25025 msgid "luks-open-ro"
25026 msgstr ""
25027
25028 #. type: verbatim
25029 #: ../fish/guestfish-actions.pod:2739
25030 #, no-wrap
25031 msgid ""
25032 " luks-open-ro device mapname\n"
25033 "\n"
25034 msgstr ""
25035
25036 #. type: textblock
25037 #: ../fish/guestfish-actions.pod:2741
25038 msgid ""
25039 "This is the same as L</luks-open> except that a read-only mapping is created."
25040 msgstr ""
25041
25042 #. type: =head2
25043 #: ../fish/guestfish-actions.pod:2747
25044 msgid "lvcreate"
25045 msgstr ""
25046
25047 #. type: verbatim
25048 #: ../fish/guestfish-actions.pod:2749
25049 #, no-wrap
25050 msgid ""
25051 " lvcreate logvol volgroup mbytes\n"
25052 "\n"
25053 msgstr ""
25054
25055 #. type: =head2
25056 #: ../fish/guestfish-actions.pod:2754
25057 msgid "lvm-canonical-lv-name"
25058 msgstr ""
25059
25060 #. type: verbatim
25061 #: ../fish/guestfish-actions.pod:2756
25062 #, no-wrap
25063 msgid ""
25064 " lvm-canonical-lv-name lvname\n"
25065 "\n"
25066 msgstr ""
25067
25068 #. type: textblock
25069 #: ../fish/guestfish-actions.pod:2765
25070 msgid "See also L</is-lv>."
25071 msgstr ""
25072
25073 #. type: =head2
25074 #: ../fish/guestfish-actions.pod:2767
25075 msgid "lvm-clear-filter"
25076 msgstr ""
25077
25078 #. type: verbatim
25079 #: ../fish/guestfish-actions.pod:2769
25080 #, no-wrap
25081 msgid ""
25082 " lvm-clear-filter\n"
25083 "\n"
25084 msgstr ""
25085
25086 #. type: textblock
25087 #: ../fish/guestfish-actions.pod:2771
25088 msgid ""
25089 "This undoes the effect of L</lvm-set-filter>.  LVM will be able to see every "
25090 "block device."
25091 msgstr ""
25092
25093 #. type: =head2
25094 #: ../fish/guestfish-actions.pod:2777
25095 msgid "lvm-remove-all"
25096 msgstr ""
25097
25098 #. type: verbatim
25099 #: ../fish/guestfish-actions.pod:2779
25100 #, no-wrap
25101 msgid ""
25102 " lvm-remove-all\n"
25103 "\n"
25104 msgstr ""
25105
25106 #. type: =head2
25107 #: ../fish/guestfish-actions.pod:2787
25108 msgid "lvm-set-filter"
25109 msgstr ""
25110
25111 #. type: verbatim
25112 #: ../fish/guestfish-actions.pod:2789
25113 #, no-wrap
25114 msgid ""
25115 " lvm-set-filter 'devices ...'\n"
25116 "\n"
25117 msgstr ""
25118
25119 #. type: =head2
25120 #: ../fish/guestfish-actions.pod:2814
25121 msgid "lvremove"
25122 msgstr ""
25123
25124 #. type: verbatim
25125 #: ../fish/guestfish-actions.pod:2816
25126 #, no-wrap
25127 msgid ""
25128 " lvremove device\n"
25129 "\n"
25130 msgstr ""
25131
25132 #. type: =head2
25133 #: ../fish/guestfish-actions.pod:2824
25134 msgid "lvrename"
25135 msgstr ""
25136
25137 #. type: verbatim
25138 #: ../fish/guestfish-actions.pod:2826
25139 #, no-wrap
25140 msgid ""
25141 " lvrename logvol newlogvol\n"
25142 "\n"
25143 msgstr ""
25144
25145 #. type: =head2
25146 #: ../fish/guestfish-actions.pod:2830
25147 msgid "lvresize"
25148 msgstr ""
25149
25150 #. type: verbatim
25151 #: ../fish/guestfish-actions.pod:2832
25152 #, no-wrap
25153 msgid ""
25154 " lvresize device mbytes\n"
25155 "\n"
25156 msgstr ""
25157
25158 #. type: =head2
25159 #: ../fish/guestfish-actions.pod:2838
25160 msgid "lvresize-free"
25161 msgstr ""
25162
25163 #. type: verbatim
25164 #: ../fish/guestfish-actions.pod:2840
25165 #, no-wrap
25166 msgid ""
25167 " lvresize-free lv percent\n"
25168 "\n"
25169 msgstr ""
25170
25171 #. type: =head2
25172 #: ../fish/guestfish-actions.pod:2848
25173 msgid "lvs"
25174 msgstr ""
25175
25176 #. type: verbatim
25177 #: ../fish/guestfish-actions.pod:2850
25178 #, no-wrap
25179 msgid ""
25180 " lvs\n"
25181 "\n"
25182 msgstr ""
25183
25184 #. type: textblock
25185 #: ../fish/guestfish-actions.pod:2858
25186 msgid "See also L</lvs-full>, L</list-filesystems>."
25187 msgstr ""
25188
25189 #. type: =head2
25190 #: ../fish/guestfish-actions.pod:2860
25191 msgid "lvs-full"
25192 msgstr ""
25193
25194 #. type: verbatim
25195 #: ../fish/guestfish-actions.pod:2862
25196 #, no-wrap
25197 msgid ""
25198 " lvs-full\n"
25199 "\n"
25200 msgstr ""
25201
25202 #. type: =head2
25203 #: ../fish/guestfish-actions.pod:2867
25204 msgid "lvuuid"
25205 msgstr ""
25206
25207 #. type: verbatim
25208 #: ../fish/guestfish-actions.pod:2869
25209 #, no-wrap
25210 msgid ""
25211 " lvuuid device\n"
25212 "\n"
25213 msgstr ""
25214
25215 #. type: =head2
25216 #: ../fish/guestfish-actions.pod:2873
25217 msgid "lxattrlist"
25218 msgstr ""
25219
25220 #. type: verbatim
25221 #: ../fish/guestfish-actions.pod:2875
25222 #, no-wrap
25223 msgid ""
25224 " lxattrlist path 'names ...'\n"
25225 "\n"
25226 msgstr ""
25227
25228 #. type: textblock
25229 #: ../fish/guestfish-actions.pod:2891
25230 msgid ""
25231 "This call is intended for programs that want to efficiently list a directory "
25232 "contents without making many round-trips.  See also L</lstatlist> for a "
25233 "similarly efficient call for getting standard stats.  Very long directory "
25234 "listings might cause the protocol message size to be exceeded, causing this "
25235 "call to fail.  The caller must split up such requests into smaller groups of "
25236 "names."
25237 msgstr ""
25238
25239 #. type: =head2
25240 #: ../fish/guestfish-actions.pod:2899
25241 msgid "mkdir"
25242 msgstr ""
25243
25244 #. type: verbatim
25245 #: ../fish/guestfish-actions.pod:2901
25246 #, no-wrap
25247 msgid ""
25248 " mkdir path\n"
25249 "\n"
25250 msgstr ""
25251
25252 #. type: =head2
25253 #: ../fish/guestfish-actions.pod:2905
25254 msgid "mkdir-mode"
25255 msgstr ""
25256
25257 #. type: verbatim
25258 #: ../fish/guestfish-actions.pod:2907
25259 #, no-wrap
25260 msgid ""
25261 " mkdir-mode path mode\n"
25262 "\n"
25263 msgstr ""
25264
25265 #. type: textblock
25266 #: ../fish/guestfish-actions.pod:2916
25267 msgid "See also L</mkdir>, L</umask>"
25268 msgstr ""
25269
25270 #. type: =head2
25271 #: ../fish/guestfish-actions.pod:2918
25272 msgid "mkdir-p"
25273 msgstr ""
25274
25275 #. type: verbatim
25276 #: ../fish/guestfish-actions.pod:2920
25277 #, no-wrap
25278 msgid ""
25279 " mkdir-p path\n"
25280 "\n"
25281 msgstr ""
25282
25283 #. type: =head2
25284 #: ../fish/guestfish-actions.pod:2925
25285 msgid "mkdtemp"
25286 msgstr ""
25287
25288 #. type: verbatim
25289 #: ../fish/guestfish-actions.pod:2927
25290 #, no-wrap
25291 msgid ""
25292 " mkdtemp template\n"
25293 "\n"
25294 msgstr ""
25295
25296 #. type: =head2
25297 #: ../fish/guestfish-actions.pod:2948
25298 msgid "mke2fs-J"
25299 msgstr ""
25300
25301 #. type: verbatim
25302 #: ../fish/guestfish-actions.pod:2950
25303 #, no-wrap
25304 msgid ""
25305 " mke2fs-J fstype blocksize device journal\n"
25306 "\n"
25307 msgstr ""
25308
25309 #. type: textblock
25310 #: ../fish/guestfish-actions.pod:2958
25311 msgid "See also L</mke2journal>."
25312 msgstr ""
25313
25314 #. type: =head2
25315 #: ../fish/guestfish-actions.pod:2960
25316 msgid "mke2fs-JL"
25317 msgstr ""
25318
25319 #. type: verbatim
25320 #: ../fish/guestfish-actions.pod:2962
25321 #, no-wrap
25322 msgid ""
25323 " mke2fs-JL fstype blocksize device label\n"
25324 "\n"
25325 msgstr ""
25326
25327 #. type: textblock
25328 #: ../fish/guestfish-actions.pod:2967
25329 msgid "See also L</mke2journal-L>."
25330 msgstr ""
25331
25332 #. type: =head2
25333 #: ../fish/guestfish-actions.pod:2969
25334 msgid "mke2fs-JU"
25335 msgstr ""
25336
25337 #. type: verbatim
25338 #: ../fish/guestfish-actions.pod:2971
25339 #, no-wrap
25340 msgid ""
25341 " mke2fs-JU fstype blocksize device uuid\n"
25342 "\n"
25343 msgstr ""
25344
25345 #. type: textblock
25346 #: ../fish/guestfish-actions.pod:2976
25347 msgid "See also L</mke2journal-U>."
25348 msgstr ""
25349
25350 #. type: =head2
25351 #: ../fish/guestfish-actions.pod:2978
25352 msgid "mke2journal"
25353 msgstr ""
25354
25355 #. type: verbatim
25356 #: ../fish/guestfish-actions.pod:2980
25357 #, no-wrap
25358 msgid ""
25359 " mke2journal blocksize device\n"
25360 "\n"
25361 msgstr ""
25362
25363 #. type: =head2
25364 #: ../fish/guestfish-actions.pod:2987
25365 msgid "mke2journal-L"
25366 msgstr ""
25367
25368 #. type: verbatim
25369 #: ../fish/guestfish-actions.pod:2989
25370 #, no-wrap
25371 msgid ""
25372 " mke2journal-L blocksize label device\n"
25373 "\n"
25374 msgstr ""
25375
25376 #. type: =head2
25377 #: ../fish/guestfish-actions.pod:2993
25378 msgid "mke2journal-U"
25379 msgstr ""
25380
25381 #. type: verbatim
25382 #: ../fish/guestfish-actions.pod:2995
25383 #, no-wrap
25384 msgid ""
25385 " mke2journal-U blocksize uuid device\n"
25386 "\n"
25387 msgstr ""
25388
25389 #. type: =head2
25390 #: ../fish/guestfish-actions.pod:2999
25391 msgid "mkfifo"
25392 msgstr ""
25393
25394 #. type: verbatim
25395 #: ../fish/guestfish-actions.pod:3001
25396 #, no-wrap
25397 msgid ""
25398 " mkfifo mode path\n"
25399 "\n"
25400 msgstr ""
25401
25402 #. type: textblock
25403 #: ../fish/guestfish-actions.pod:3003
25404 msgid ""
25405 "This call creates a FIFO (named pipe) called C<path> with mode C<mode>.  It "
25406 "is just a convenient wrapper around L</mknod>."
25407 msgstr ""
25408
25409 #. type: =head2
25410 #: ../fish/guestfish-actions.pod:3009
25411 msgid "mkfs"
25412 msgstr ""
25413
25414 #. type: verbatim
25415 #: ../fish/guestfish-actions.pod:3011
25416 #, no-wrap
25417 msgid ""
25418 " mkfs fstype device\n"
25419 "\n"
25420 msgstr ""
25421
25422 #. type: =head2
25423 #: ../fish/guestfish-actions.pod:3017
25424 msgid "mkfs-b"
25425 msgstr ""
25426
25427 #. type: verbatim
25428 #: ../fish/guestfish-actions.pod:3019
25429 #, no-wrap
25430 msgid ""
25431 " mkfs-b fstype blocksize device\n"
25432 "\n"
25433 msgstr ""
25434
25435 #. type: textblock
25436 #: ../fish/guestfish-actions.pod:3021
25437 msgid ""
25438 "This call is similar to L</mkfs>, but it allows you to control the block "
25439 "size of the resulting filesystem.  Supported block sizes depend on the "
25440 "filesystem type, but typically they are C<1024>, C<2048> or C<4096> only."
25441 msgstr ""
25442
25443 #. type: textblock
25444 #: ../fish/guestfish-actions.pod:3029
25445 msgid ""
25446 "This function is deprecated.  In new code, use the L</mkfs_opts> call "
25447 "instead."
25448 msgstr ""
25449
25450 #. type: =head2
25451 #: ../fish/guestfish-actions.pod:3036
25452 msgid "mkfs-opts"
25453 msgstr ""
25454
25455 #. type: verbatim
25456 #: ../fish/guestfish-actions.pod:3038
25457 #, no-wrap
25458 msgid ""
25459 " mkfs-opts fstype device [blocksize:..] [features:..]\n"
25460 "\n"
25461 msgstr ""
25462
25463 #. type: =head2
25464 #: ../fish/guestfish-actions.pod:3073
25465 msgid "mkmountpoint"
25466 msgstr ""
25467
25468 #. type: verbatim
25469 #: ../fish/guestfish-actions.pod:3075
25470 #, no-wrap
25471 msgid ""
25472 " mkmountpoint exemptpath\n"
25473 "\n"
25474 msgstr ""
25475
25476 #. type: textblock
25477 #: ../fish/guestfish-actions.pod:3077
25478 msgid ""
25479 "L</mkmountpoint> and L</rmmountpoint> are specialized calls that can be used "
25480 "to create extra mountpoints before mounting the first filesystem."
25481 msgstr ""
25482
25483 #. type: textblock
25484 #: ../fish/guestfish-actions.pod:3101
25485 msgid ""
25486 "L</mkmountpoint> is not compatible with L</umount-all>.  You may get "
25487 "unexpected errors if you try to mix these calls.  It is safest to manually "
25488 "unmount filesystems and remove mountpoints after use."
25489 msgstr ""
25490
25491 #. type: textblock
25492 #: ../fish/guestfish-actions.pod:3105
25493 msgid ""
25494 "L</umount-all> unmounts filesystems by sorting the paths longest first, so "
25495 "for this to work for manual mountpoints, you must ensure that the innermost "
25496 "mountpoints have the longest pathnames, as in the example code above."
25497 msgstr ""
25498
25499 #. type: textblock
25500 #: ../fish/guestfish-actions.pod:3112
25501 msgid ""
25502 "Autosync [see L</set-autosync>, this is set by default on handles] can cause "
25503 "L</umount-all> to be called when the handle is closed which can also trigger "
25504 "these issues."
25505 msgstr ""
25506
25507 #. type: =head2
25508 #: ../fish/guestfish-actions.pod:3116
25509 msgid "mknod"
25510 msgstr ""
25511
25512 #. type: verbatim
25513 #: ../fish/guestfish-actions.pod:3118
25514 #, no-wrap
25515 msgid ""
25516 " mknod mode devmajor devminor path\n"
25517 "\n"
25518 msgstr ""
25519
25520 #. type: textblock
25521 #: ../fish/guestfish-actions.pod:3128
25522 msgid ""
25523 "Note that, just like L<mknod(2)>, the mode must be bitwise OR'd with "
25524 "S_IFBLK, S_IFCHR, S_IFIFO or S_IFSOCK (otherwise this call just creates a "
25525 "regular file).  These constants are available in the standard Linux header "
25526 "files, or you can use L</mknod-b>, L</mknod-c> or L</mkfifo> which are "
25527 "wrappers around this command which bitwise OR in the appropriate constant "
25528 "for you."
25529 msgstr ""
25530
25531 #. type: =head2
25532 #: ../fish/guestfish-actions.pod:3138
25533 msgid "mknod-b"
25534 msgstr ""
25535
25536 #. type: verbatim
25537 #: ../fish/guestfish-actions.pod:3140
25538 #, no-wrap
25539 msgid ""
25540 " mknod-b mode devmajor devminor path\n"
25541 "\n"
25542 msgstr ""
25543
25544 #. type: textblock
25545 #: ../fish/guestfish-actions.pod:3142
25546 msgid ""
25547 "This call creates a block device node called C<path> with mode C<mode> and "
25548 "device major/minor C<devmajor> and C<devminor>.  It is just a convenient "
25549 "wrapper around L</mknod>."
25550 msgstr ""
25551
25552 #. type: =head2
25553 #: ../fish/guestfish-actions.pod:3148
25554 msgid "mknod-c"
25555 msgstr ""
25556
25557 #. type: verbatim
25558 #: ../fish/guestfish-actions.pod:3150
25559 #, no-wrap
25560 msgid ""
25561 " mknod-c mode devmajor devminor path\n"
25562 "\n"
25563 msgstr ""
25564
25565 #. type: textblock
25566 #: ../fish/guestfish-actions.pod:3152
25567 msgid ""
25568 "This call creates a char device node called C<path> with mode C<mode> and "
25569 "device major/minor C<devmajor> and C<devminor>.  It is just a convenient "
25570 "wrapper around L</mknod>."
25571 msgstr ""
25572
25573 #. type: =head2
25574 #: ../fish/guestfish-actions.pod:3158
25575 msgid "mkswap"
25576 msgstr ""
25577
25578 #. type: verbatim
25579 #: ../fish/guestfish-actions.pod:3160
25580 #, no-wrap
25581 msgid ""
25582 " mkswap device\n"
25583 "\n"
25584 msgstr ""
25585
25586 #. type: =head2
25587 #: ../fish/guestfish-actions.pod:3164
25588 msgid "mkswap-L"
25589 msgstr ""
25590
25591 #. type: verbatim
25592 #: ../fish/guestfish-actions.pod:3166
25593 #, no-wrap
25594 msgid ""
25595 " mkswap-L label device\n"
25596 "\n"
25597 msgstr ""
25598
25599 #. type: =head2
25600 #: ../fish/guestfish-actions.pod:3174
25601 msgid "mkswap-U"
25602 msgstr ""
25603
25604 #. type: verbatim
25605 #: ../fish/guestfish-actions.pod:3176
25606 #, no-wrap
25607 msgid ""
25608 " mkswap-U uuid device\n"
25609 "\n"
25610 msgstr ""
25611
25612 #. type: =head2
25613 #: ../fish/guestfish-actions.pod:3180
25614 msgid "mkswap-file"
25615 msgstr ""
25616
25617 #. type: verbatim
25618 #: ../fish/guestfish-actions.pod:3182
25619 #, no-wrap
25620 msgid ""
25621 " mkswap-file path\n"
25622 "\n"
25623 msgstr ""
25624
25625 #. type: textblock
25626 #: ../fish/guestfish-actions.pod:3186
25627 msgid ""
25628 "This command just writes a swap file signature to an existing file.  To "
25629 "create the file itself, use something like L</fallocate>."
25630 msgstr ""
25631
25632 #. type: =head2
25633 #: ../fish/guestfish-actions.pod:3189
25634 msgid "modprobe"
25635 msgstr ""
25636
25637 #. type: verbatim
25638 #: ../fish/guestfish-actions.pod:3191
25639 #, no-wrap
25640 msgid ""
25641 " modprobe modulename\n"
25642 "\n"
25643 msgstr ""
25644
25645 #. type: =head2
25646 #: ../fish/guestfish-actions.pod:3198
25647 msgid "mount"
25648 msgstr ""
25649
25650 #. type: verbatim
25651 #: ../fish/guestfish-actions.pod:3200
25652 #, no-wrap
25653 msgid ""
25654 " mount device mountpoint\n"
25655 "\n"
25656 msgstr ""
25657
25658 #. type: textblock
25659 #: ../fish/guestfish-actions.pod:3216
25660 msgid ""
25661 "B<Important note:> When you use this call, the filesystem options C<sync> "
25662 "and C<noatime> are set implicitly.  This was originally done because we "
25663 "thought it would improve reliability, but it turns out that I<-o sync> has a "
25664 "very large negative performance impact and negligible effect on "
25665 "reliability.  Therefore we recommend that you avoid using L</mount> in any "
25666 "code that needs performance, and instead use L</mount-options> (use an empty "
25667 "string for the first parameter if you don't want any options)."
25668 msgstr ""
25669
25670 #. type: textblock
25671 #: ../fish/guestfish-actions.pod:3226
25672 msgid ""
25673 "This function is deprecated.  In new code, use the L</mount_options> call "
25674 "instead."
25675 msgstr ""
25676
25677 #. type: =head2
25678 #: ../fish/guestfish-actions.pod:3233
25679 msgid "mount-loop"
25680 msgstr ""
25681
25682 #. type: verbatim
25683 #: ../fish/guestfish-actions.pod:3235
25684 #, no-wrap
25685 msgid ""
25686 " mount-loop file mountpoint\n"
25687 "\n"
25688 msgstr ""
25689
25690 #. type: =head2
25691 #: ../fish/guestfish-actions.pod:3241
25692 msgid "mount-options"
25693 msgstr ""
25694
25695 #. type: verbatim
25696 #: ../fish/guestfish-actions.pod:3243
25697 #, no-wrap
25698 msgid ""
25699 " mount-options options device mountpoint\n"
25700 "\n"
25701 msgstr ""
25702
25703 #. type: textblock
25704 #: ../fish/guestfish-actions.pod:3245
25705 msgid ""
25706 "This is the same as the L</mount> command, but it allows you to set the "
25707 "mount options as for the L<mount(8)> I<-o> flag."
25708 msgstr ""
25709
25710 #. type: =head2
25711 #: ../fish/guestfish-actions.pod:3253
25712 msgid "mount-ro"
25713 msgstr ""
25714
25715 #. type: verbatim
25716 #: ../fish/guestfish-actions.pod:3255
25717 #, no-wrap
25718 msgid ""
25719 " mount-ro device mountpoint\n"
25720 "\n"
25721 msgstr ""
25722
25723 #. type: textblock
25724 #: ../fish/guestfish-actions.pod:3257
25725 msgid ""
25726 "This is the same as the L</mount> command, but it mounts the filesystem with "
25727 "the read-only (I<-o ro>) flag."
25728 msgstr ""
25729
25730 #. type: =head2
25731 #: ../fish/guestfish-actions.pod:3260
25732 msgid "mount-vfs"
25733 msgstr ""
25734
25735 #. type: verbatim
25736 #: ../fish/guestfish-actions.pod:3262
25737 #, no-wrap
25738 msgid ""
25739 " mount-vfs options vfstype device mountpoint\n"
25740 "\n"
25741 msgstr ""
25742
25743 #. type: textblock
25744 #: ../fish/guestfish-actions.pod:3264
25745 msgid ""
25746 "This is the same as the L</mount> command, but it allows you to set both the "
25747 "mount options and the vfstype as for the L<mount(8)> I<-o> and I<-t> flags."
25748 msgstr ""
25749
25750 #. type: =head2
25751 #: ../fish/guestfish-actions.pod:3268
25752 msgid "mountpoints"
25753 msgstr ""
25754
25755 #. type: verbatim
25756 #: ../fish/guestfish-actions.pod:3270
25757 #, no-wrap
25758 msgid ""
25759 " mountpoints\n"
25760 "\n"
25761 msgstr ""
25762
25763 #. type: textblock
25764 #: ../fish/guestfish-actions.pod:3272
25765 msgid ""
25766 "This call is similar to L</mounts>.  That call returns a list of devices.  "
25767 "This one returns a hash table (map) of device name to directory where the "
25768 "device is mounted."
25769 msgstr ""
25770
25771 #. type: =head2
25772 #: ../fish/guestfish-actions.pod:3276
25773 msgid "mounts"
25774 msgstr ""
25775
25776 #. type: verbatim
25777 #: ../fish/guestfish-actions.pod:3278
25778 #, no-wrap
25779 msgid ""
25780 " mounts\n"
25781 "\n"
25782 msgstr ""
25783
25784 #. type: textblock
25785 #: ../fish/guestfish-actions.pod:3285
25786 msgid "See also: L</mountpoints>"
25787 msgstr ""
25788
25789 #. type: =head2
25790 #: ../fish/guestfish-actions.pod:3287
25791 msgid "mv"
25792 msgstr ""
25793
25794 #. type: verbatim
25795 #: ../fish/guestfish-actions.pod:3289
25796 #, no-wrap
25797 msgid ""
25798 " mv src dest\n"
25799 "\n"
25800 msgstr ""
25801
25802 #. type: =head2
25803 #: ../fish/guestfish-actions.pod:3294
25804 msgid "ntfs-3g-probe"
25805 msgstr ""
25806
25807 #. type: verbatim
25808 #: ../fish/guestfish-actions.pod:3296
25809 #, no-wrap
25810 msgid ""
25811 " ntfs-3g-probe true|false device\n"
25812 "\n"
25813 msgstr ""
25814
25815 #. type: =head2
25816 #: ../fish/guestfish-actions.pod:3310
25817 msgid "ntfsresize"
25818 msgstr ""
25819
25820 #. type: verbatim
25821 #: ../fish/guestfish-actions.pod:3312
25822 #, no-wrap
25823 msgid ""
25824 " ntfsresize device\n"
25825 "\n"
25826 msgstr ""
25827
25828 #. type: =head2
25829 #: ../fish/guestfish-actions.pod:3327
25830 msgid "ntfsresize-size"
25831 msgstr ""
25832
25833 #. type: verbatim
25834 #: ../fish/guestfish-actions.pod:3329
25835 #, no-wrap
25836 msgid ""
25837 " ntfsresize-size device size\n"
25838 "\n"
25839 msgstr ""
25840
25841 #. type: textblock
25842 #: ../fish/guestfish-actions.pod:3331
25843 msgid ""
25844 "This command is the same as L</ntfsresize> except that it allows you to "
25845 "specify the new size (in bytes) explicitly."
25846 msgstr ""
25847
25848 #. type: =head2
25849 #: ../fish/guestfish-actions.pod:3334
25850 msgid "part-add"
25851 msgstr ""
25852
25853 #. type: verbatim
25854 #: ../fish/guestfish-actions.pod:3336
25855 #, no-wrap
25856 msgid ""
25857 " part-add device prlogex startsect endsect\n"
25858 "\n"
25859 msgstr ""
25860
25861 #. type: textblock
25862 #: ../fish/guestfish-actions.pod:3338
25863 msgid ""
25864 "This command adds a partition to C<device>.  If there is no partition table "
25865 "on the device, call L</part-init> first."
25866 msgstr ""
25867
25868 #. type: textblock
25869 #: ../fish/guestfish-actions.pod:3350
25870 msgid ""
25871 "Creating a partition which covers the whole disk is not so easy.  Use L</"
25872 "part-disk> to do that."
25873 msgstr ""
25874
25875 #. type: =head2
25876 #: ../fish/guestfish-actions.pod:3353
25877 msgid "part-del"
25878 msgstr ""
25879
25880 #. type: verbatim
25881 #: ../fish/guestfish-actions.pod:3355
25882 #, no-wrap
25883 msgid ""
25884 " part-del device partnum\n"
25885 "\n"
25886 msgstr ""
25887
25888 #. type: =head2
25889 #: ../fish/guestfish-actions.pod:3363
25890 msgid "part-disk"
25891 msgstr ""
25892
25893 #. type: verbatim
25894 #: ../fish/guestfish-actions.pod:3365
25895 #, no-wrap
25896 msgid ""
25897 " part-disk device parttype\n"
25898 "\n"
25899 msgstr ""
25900
25901 #. type: textblock
25902 #: ../fish/guestfish-actions.pod:3367
25903 msgid ""
25904 "This command is simply a combination of L</part-init> followed by L</part-"
25905 "add> to create a single primary partition covering the whole disk."
25906 msgstr ""
25907
25908 #. type: textblock
25909 #: ../fish/guestfish-actions.pod:3371
25910 msgid ""
25911 "C<parttype> is the partition table type, usually C<mbr> or C<gpt>, but other "
25912 "possible values are described in L</part-init>."
25913 msgstr ""
25914
25915 #. type: =head2
25916 #: ../fish/guestfish-actions.pod:3377
25917 msgid "part-get-bootable"
25918 msgstr ""
25919
25920 #. type: verbatim
25921 #: ../fish/guestfish-actions.pod:3379
25922 #, no-wrap
25923 msgid ""
25924 " part-get-bootable device partnum\n"
25925 "\n"
25926 msgstr ""
25927
25928 #. type: textblock
25929 #: ../fish/guestfish-actions.pod:3384
25930 msgid "See also L</part-set-bootable>."
25931 msgstr ""
25932
25933 #. type: =head2
25934 #: ../fish/guestfish-actions.pod:3386
25935 msgid "part-get-mbr-id"
25936 msgstr ""
25937
25938 #. type: verbatim
25939 #: ../fish/guestfish-actions.pod:3388
25940 #, no-wrap
25941 msgid ""
25942 " part-get-mbr-id device partnum\n"
25943 "\n"
25944 msgstr ""
25945
25946 #. type: textblock
25947 #: ../fish/guestfish-actions.pod:3393 ../fish/guestfish-actions.pod:3531
25948 msgid ""
25949 "Note that only MBR (old DOS-style) partitions have type bytes.  You will get "
25950 "undefined results for other partition table types (see L</part-get-"
25951 "parttype>)."
25952 msgstr ""
25953
25954 #. type: =head2
25955 #: ../fish/guestfish-actions.pod:3397
25956 msgid "part-get-parttype"
25957 msgstr ""
25958
25959 #. type: verbatim
25960 #: ../fish/guestfish-actions.pod:3399
25961 #, no-wrap
25962 msgid ""
25963 " part-get-parttype device\n"
25964 "\n"
25965 msgstr ""
25966
25967 #. type: textblock
25968 #: ../fish/guestfish-actions.pod:3404
25969 msgid ""
25970 "Common return values include: C<msdos> (a DOS/Windows style MBR partition "
25971 "table), C<gpt> (a GPT/EFI-style partition table).  Other values are "
25972 "possible, although unusual.  See L</part-init> for a full list."
25973 msgstr ""
25974
25975 #. type: =head2
25976 #: ../fish/guestfish-actions.pod:3409
25977 msgid "part-init"
25978 msgstr ""
25979
25980 #. type: verbatim
25981 #: ../fish/guestfish-actions.pod:3411
25982 #, no-wrap
25983 msgid ""
25984 " part-init device parttype\n"
25985 "\n"
25986 msgstr ""
25987
25988 #. type: textblock
25989 #: ../fish/guestfish-actions.pod:3417
25990 msgid ""
25991 "Initially there are no partitions.  Following this, you should call L</part-"
25992 "add> for each partition required."
25993 msgstr ""
25994
25995 #. type: =head2
25996 #: ../fish/guestfish-actions.pod:3480
25997 msgid "part-list"
25998 msgstr ""
25999
26000 #. type: verbatim
26001 #: ../fish/guestfish-actions.pod:3482
26002 #, no-wrap
26003 msgid ""
26004 " part-list device\n"
26005 "\n"
26006 msgstr ""
26007
26008 #. type: textblock
26009 #: ../fish/guestfish-actions.pod:3497
26010 msgid ""
26011 "Start of the partition I<in bytes>.  To get sectors you have to divide by "
26012 "the device's sector size, see L</blockdev-getss>."
26013 msgstr ""
26014
26015 #. type: =head2
26016 #: ../fish/guestfish-actions.pod:3510
26017 msgid "part-set-bootable"
26018 msgstr ""
26019
26020 #. type: verbatim
26021 #: ../fish/guestfish-actions.pod:3512
26022 #, no-wrap
26023 msgid ""
26024 " part-set-bootable device partnum true|false\n"
26025 "\n"
26026 msgstr ""
26027
26028 #. type: =head2
26029 #: ../fish/guestfish-actions.pod:3521
26030 msgid "part-set-mbr-id"
26031 msgstr ""
26032
26033 #. type: verbatim
26034 #: ../fish/guestfish-actions.pod:3523
26035 #, no-wrap
26036 msgid ""
26037 " part-set-mbr-id device partnum idbyte\n"
26038 "\n"
26039 msgstr ""
26040
26041 #. type: =head2
26042 #: ../fish/guestfish-actions.pod:3535
26043 msgid "part-set-name"
26044 msgstr ""
26045
26046 #. type: verbatim
26047 #: ../fish/guestfish-actions.pod:3537
26048 #, no-wrap
26049 msgid ""
26050 " part-set-name device partnum name\n"
26051 "\n"
26052 msgstr ""
26053
26054 #. type: =head2
26055 #: ../fish/guestfish-actions.pod:3545
26056 msgid "part-to-dev"
26057 msgstr ""
26058
26059 #. type: verbatim
26060 #: ../fish/guestfish-actions.pod:3547
26061 #, no-wrap
26062 msgid ""
26063 " part-to-dev partition\n"
26064 "\n"
26065 msgstr ""
26066
26067 #. type: textblock
26068 #: ../fish/guestfish-actions.pod:3553
26069 msgid ""
26070 "The named partition must exist, for example as a string returned from L</"
26071 "list-partitions>."
26072 msgstr ""
26073
26074 #. type: =head2
26075 #: ../fish/guestfish-actions.pod:3556
26076 msgid "ping-daemon"
26077 msgstr ""
26078
26079 #. type: verbatim
26080 #: ../fish/guestfish-actions.pod:3558
26081 #, no-wrap
26082 msgid ""
26083 " ping-daemon\n"
26084 "\n"
26085 msgstr ""
26086
26087 #. type: =head2
26088 #: ../fish/guestfish-actions.pod:3565
26089 msgid "pread"
26090 msgstr ""
26091
26092 #. type: verbatim
26093 #: ../fish/guestfish-actions.pod:3567
26094 #, no-wrap
26095 msgid ""
26096 " pread path count offset\n"
26097 "\n"
26098 msgstr ""
26099
26100 #. type: textblock
26101 #: ../fish/guestfish-actions.pod:3575
26102 msgid "See also L</pwrite>, L</pread-device>."
26103 msgstr ""
26104
26105 #. type: =head2
26106 #: ../fish/guestfish-actions.pod:3580
26107 msgid "pread-device"
26108 msgstr ""
26109
26110 #. type: verbatim
26111 #: ../fish/guestfish-actions.pod:3582
26112 #, no-wrap
26113 msgid ""
26114 " pread-device device count offset\n"
26115 "\n"
26116 msgstr ""
26117
26118 #. type: textblock
26119 #: ../fish/guestfish-actions.pod:3590
26120 msgid "See also L</pread>."
26121 msgstr ""
26122
26123 #. type: =head2
26124 #: ../fish/guestfish-actions.pod:3595
26125 msgid "pvcreate"
26126 msgstr ""
26127
26128 #. type: verbatim
26129 #: ../fish/guestfish-actions.pod:3597
26130 #, no-wrap
26131 msgid ""
26132 " pvcreate device\n"
26133 "\n"
26134 msgstr ""
26135
26136 #. type: =head2
26137 #: ../fish/guestfish-actions.pod:3603
26138 msgid "pvremove"
26139 msgstr ""
26140
26141 #. type: verbatim
26142 #: ../fish/guestfish-actions.pod:3605
26143 #, no-wrap
26144 msgid ""
26145 " pvremove device\n"
26146 "\n"
26147 msgstr ""
26148
26149 #. type: =head2
26150 #: ../fish/guestfish-actions.pod:3614
26151 msgid "pvresize"
26152 msgstr ""
26153
26154 #. type: verbatim
26155 #: ../fish/guestfish-actions.pod:3616
26156 #, no-wrap
26157 msgid ""
26158 " pvresize device\n"
26159 "\n"
26160 msgstr ""
26161
26162 #. type: =head2
26163 #: ../fish/guestfish-actions.pod:3621
26164 msgid "pvresize-size"
26165 msgstr ""
26166
26167 #. type: verbatim
26168 #: ../fish/guestfish-actions.pod:3623
26169 #, no-wrap
26170 msgid ""
26171 " pvresize-size device size\n"
26172 "\n"
26173 msgstr ""
26174
26175 #. type: textblock
26176 #: ../fish/guestfish-actions.pod:3625
26177 msgid ""
26178 "This command is the same as L</pvresize> except that it allows you to "
26179 "specify the new size (in bytes) explicitly."
26180 msgstr ""
26181
26182 #. type: =head2
26183 #: ../fish/guestfish-actions.pod:3628
26184 msgid "pvs"
26185 msgstr ""
26186
26187 #. type: verbatim
26188 #: ../fish/guestfish-actions.pod:3630
26189 #, no-wrap
26190 msgid ""
26191 " pvs\n"
26192 "\n"
26193 msgstr ""
26194
26195 #. type: textblock
26196 #: ../fish/guestfish-actions.pod:3638
26197 msgid "See also L</pvs-full>."
26198 msgstr ""
26199
26200 #. type: =head2
26201 #: ../fish/guestfish-actions.pod:3640
26202 msgid "pvs-full"
26203 msgstr ""
26204
26205 #. type: verbatim
26206 #: ../fish/guestfish-actions.pod:3642
26207 #, no-wrap
26208 msgid ""
26209 " pvs-full\n"
26210 "\n"
26211 msgstr ""
26212
26213 #. type: =head2
26214 #: ../fish/guestfish-actions.pod:3647
26215 msgid "pvuuid"
26216 msgstr ""
26217
26218 #. type: verbatim
26219 #: ../fish/guestfish-actions.pod:3649
26220 #, no-wrap
26221 msgid ""
26222 " pvuuid device\n"
26223 "\n"
26224 msgstr ""
26225
26226 #. type: =head2
26227 #: ../fish/guestfish-actions.pod:3653
26228 msgid "pwrite"
26229 msgstr ""
26230
26231 #. type: verbatim
26232 #: ../fish/guestfish-actions.pod:3655
26233 #, no-wrap
26234 msgid ""
26235 " pwrite path content offset\n"
26236 "\n"
26237 msgstr ""
26238
26239 #. type: textblock
26240 #: ../fish/guestfish-actions.pod:3666
26241 msgid "See also L</pread>, L</pwrite-device>."
26242 msgstr ""
26243
26244 #. type: =head2
26245 #: ../fish/guestfish-actions.pod:3671
26246 msgid "pwrite-device"
26247 msgstr ""
26248
26249 #. type: verbatim
26250 #: ../fish/guestfish-actions.pod:3673
26251 #, no-wrap
26252 msgid ""
26253 " pwrite-device device content offset\n"
26254 "\n"
26255 msgstr ""
26256
26257 #. type: textblock
26258 #: ../fish/guestfish-actions.pod:3683
26259 msgid "See also L</pwrite>."
26260 msgstr ""
26261
26262 #. type: =head2
26263 #: ../fish/guestfish-actions.pod:3688
26264 msgid "read-file"
26265 msgstr ""
26266
26267 #. type: verbatim
26268 #: ../fish/guestfish-actions.pod:3690
26269 #, no-wrap
26270 msgid ""
26271 " read-file path\n"
26272 "\n"
26273 msgstr ""
26274
26275 #. type: textblock
26276 #: ../fish/guestfish-actions.pod:3695
26277 msgid ""
26278 "Unlike L</cat>, this function can correctly handle files that contain "
26279 "embedded ASCII NUL characters.  However unlike L</download>, this function "
26280 "is limited in the total size of file that can be handled."
26281 msgstr ""
26282
26283 #. type: =head2
26284 #: ../fish/guestfish-actions.pod:3703
26285 msgid "read-lines"
26286 msgstr ""
26287
26288 #. type: verbatim
26289 #: ../fish/guestfish-actions.pod:3705
26290 #, no-wrap
26291 msgid ""
26292 " read-lines path\n"
26293 "\n"
26294 msgstr ""
26295
26296 #. type: textblock
26297 #: ../fish/guestfish-actions.pod:3712
26298 msgid ""
26299 "Note that this function cannot correctly handle binary files (specifically, "
26300 "files containing C<\\0> character which is treated as end of line).  For "
26301 "those you need to use the L</read-file> function which has a more complex "
26302 "interface."
26303 msgstr ""
26304
26305 #. type: =head2
26306 #: ../fish/guestfish-actions.pod:3717
26307 msgid "readdir"
26308 msgstr ""
26309
26310 #. type: verbatim
26311 #: ../fish/guestfish-actions.pod:3719
26312 #, no-wrap
26313 msgid ""
26314 " readdir dir\n"
26315 "\n"
26316 msgstr ""
26317
26318 #. type: textblock
26319 #: ../fish/guestfish-actions.pod:3771
26320 msgid ""
26321 "This function is primarily intended for use by programs.  To get a simple "
26322 "list of names, use L</ls>.  To get a printable directory for human "
26323 "consumption, use L</ll>."
26324 msgstr ""
26325
26326 #. type: =head2
26327 #: ../fish/guestfish-actions.pod:3775
26328 msgid "readlink"
26329 msgstr ""
26330
26331 #. type: verbatim
26332 #: ../fish/guestfish-actions.pod:3777
26333 #, no-wrap
26334 msgid ""
26335 " readlink path\n"
26336 "\n"
26337 msgstr ""
26338
26339 #. type: =head2
26340 #: ../fish/guestfish-actions.pod:3781
26341 msgid "readlinklist"
26342 msgstr ""
26343
26344 #. type: verbatim
26345 #: ../fish/guestfish-actions.pod:3783
26346 #, no-wrap
26347 msgid ""
26348 " readlinklist path 'names ...'\n"
26349 "\n"
26350 msgstr ""
26351
26352 #. type: =head2
26353 #: ../fish/guestfish-actions.pod:3807
26354 msgid "realpath"
26355 msgstr ""
26356
26357 #. type: verbatim
26358 #: ../fish/guestfish-actions.pod:3809
26359 #, no-wrap
26360 msgid ""
26361 " realpath path\n"
26362 "\n"
26363 msgstr ""
26364
26365 #. type: =head2
26366 #: ../fish/guestfish-actions.pod:3814
26367 msgid "removexattr"
26368 msgstr ""
26369
26370 #. type: verbatim
26371 #: ../fish/guestfish-actions.pod:3816
26372 #, no-wrap
26373 msgid ""
26374 " removexattr xattr path\n"
26375 "\n"
26376 msgstr ""
26377
26378 #. type: textblock
26379 #: ../fish/guestfish-actions.pod:3821
26380 msgid "See also: L</lremovexattr>, L<attr(5)>."
26381 msgstr ""
26382
26383 #. type: =head2
26384 #: ../fish/guestfish-actions.pod:3823
26385 msgid "resize2fs"
26386 msgstr ""
26387
26388 #. type: verbatim
26389 #: ../fish/guestfish-actions.pod:3825
26390 #, no-wrap
26391 msgid ""
26392 " resize2fs device\n"
26393 "\n"
26394 msgstr ""
26395
26396 #. type: textblock
26397 #: ../fish/guestfish-actions.pod:3830
26398 msgid ""
26399 "I<Note:> It is sometimes required that you run L</e2fsck-f> on the C<device> "
26400 "before calling this command.  For unknown reasons C<resize2fs> sometimes "
26401 "gives an error about this and sometimes not.  In any case, it is always safe "
26402 "to call L</e2fsck-f> before calling this function."
26403 msgstr ""
26404
26405 #. type: =head2
26406 #: ../fish/guestfish-actions.pod:3836
26407 msgid "resize2fs-M"
26408 msgstr ""
26409
26410 #. type: verbatim
26411 #: ../fish/guestfish-actions.pod:3838
26412 #, no-wrap
26413 msgid ""
26414 " resize2fs-M device\n"
26415 "\n"
26416 msgstr ""
26417
26418 #. type: textblock
26419 #: ../fish/guestfish-actions.pod:3840
26420 msgid ""
26421 "This command is the same as L</resize2fs>, but the filesystem is resized to "
26422 "its minimum size.  This works like the I<-M> option to the C<resize2fs> "
26423 "command."
26424 msgstr ""
26425
26426 #. type: textblock
26427 #: ../fish/guestfish-actions.pod:3844
26428 msgid ""
26429 "To get the resulting size of the filesystem you should call L</tune2fs-l> "
26430 "and read the C<Block size> and C<Block count> values.  These two numbers, "
26431 "multiplied together, give the resulting size of the minimal filesystem in "
26432 "bytes."
26433 msgstr ""
26434
26435 #. type: =head2
26436 #: ../fish/guestfish-actions.pod:3849
26437 msgid "resize2fs-size"
26438 msgstr ""
26439
26440 #. type: verbatim
26441 #: ../fish/guestfish-actions.pod:3851
26442 #, no-wrap
26443 msgid ""
26444 " resize2fs-size device size\n"
26445 "\n"
26446 msgstr ""
26447
26448 #. type: textblock
26449 #: ../fish/guestfish-actions.pod:3853
26450 msgid ""
26451 "This command is the same as L</resize2fs> except that it allows you to "
26452 "specify the new size (in bytes) explicitly."
26453 msgstr ""
26454
26455 #. type: =head2
26456 #: ../fish/guestfish-actions.pod:3856
26457 msgid "rm"
26458 msgstr ""
26459
26460 #. type: verbatim
26461 #: ../fish/guestfish-actions.pod:3858
26462 #, no-wrap
26463 msgid ""
26464 " rm path\n"
26465 "\n"
26466 msgstr ""
26467
26468 #. type: =head2
26469 #: ../fish/guestfish-actions.pod:3862
26470 msgid "rm-rf"
26471 msgstr ""
26472
26473 #. type: verbatim
26474 #: ../fish/guestfish-actions.pod:3864
26475 #, no-wrap
26476 msgid ""
26477 " rm-rf path\n"
26478 "\n"
26479 msgstr ""
26480
26481 #. type: =head2
26482 #: ../fish/guestfish-actions.pod:3870
26483 msgid "rmdir"
26484 msgstr ""
26485
26486 #. type: verbatim
26487 #: ../fish/guestfish-actions.pod:3872
26488 #, no-wrap
26489 msgid ""
26490 " rmdir path\n"
26491 "\n"
26492 msgstr ""
26493
26494 #. type: =head2
26495 #: ../fish/guestfish-actions.pod:3876
26496 msgid "rmmountpoint"
26497 msgstr ""
26498
26499 #. type: verbatim
26500 #: ../fish/guestfish-actions.pod:3878
26501 #, no-wrap
26502 msgid ""
26503 " rmmountpoint exemptpath\n"
26504 "\n"
26505 msgstr ""
26506
26507 #. type: textblock
26508 #: ../fish/guestfish-actions.pod:3880
26509 msgid ""
26510 "This calls removes a mountpoint that was previously created with L</"
26511 "mkmountpoint>.  See L</mkmountpoint> for full details."
26512 msgstr ""
26513
26514 #. type: =head2
26515 #: ../fish/guestfish-actions.pod:3884
26516 msgid "scrub-device"
26517 msgstr ""
26518
26519 #. type: verbatim
26520 #: ../fish/guestfish-actions.pod:3886
26521 #, no-wrap
26522 msgid ""
26523 " scrub-device device\n"
26524 "\n"
26525 msgstr ""
26526
26527 #. type: =head2
26528 #: ../fish/guestfish-actions.pod:3897
26529 msgid "scrub-file"
26530 msgstr ""
26531
26532 #. type: verbatim
26533 #: ../fish/guestfish-actions.pod:3899
26534 #, no-wrap
26535 msgid ""
26536 " scrub-file file\n"
26537 "\n"
26538 msgstr ""
26539
26540 #. type: =head2
26541 #: ../fish/guestfish-actions.pod:3909
26542 msgid "scrub-freespace"
26543 msgstr ""
26544
26545 #. type: verbatim
26546 #: ../fish/guestfish-actions.pod:3911
26547 #, no-wrap
26548 msgid ""
26549 " scrub-freespace dir\n"
26550 "\n"
26551 msgstr ""
26552
26553 #. type: textblock
26554 #: ../fish/guestfish-actions.pod:3913
26555 msgid ""
26556 "This command creates the directory C<dir> and then fills it with files until "
26557 "the filesystem is full, and scrubs the files as for L</scrub-file>, and "
26558 "deletes them.  The intention is to scrub any free space on the partition "
26559 "containing C<dir>."
26560 msgstr ""
26561
26562 #. type: =head2
26563 #: ../fish/guestfish-actions.pod:3922
26564 msgid "set-append"
26565 msgstr ""
26566
26567 #. type: =head2
26568 #: ../fish/guestfish-actions.pod:3924
26569 msgid "append"
26570 msgstr ""
26571
26572 #. type: verbatim
26573 #: ../fish/guestfish-actions.pod:3926
26574 #, no-wrap
26575 msgid ""
26576 " set-append append\n"
26577 "\n"
26578 msgstr ""
26579
26580 #. type: =head2
26581 #: ../fish/guestfish-actions.pod:3937
26582 msgid "set-attach-method"
26583 msgstr ""
26584
26585 #. type: =head2
26586 #: ../fish/guestfish-actions.pod:3939
26587 msgid "attach-method"
26588 msgstr ""
26589
26590 #. type: verbatim
26591 #: ../fish/guestfish-actions.pod:3941
26592 #, no-wrap
26593 msgid ""
26594 " set-attach-method attachmethod\n"
26595 "\n"
26596 msgstr ""
26597
26598 #. type: =head2
26599 #: ../fish/guestfish-actions.pod:3963
26600 msgid "set-autosync"
26601 msgstr ""
26602
26603 #. type: =head2
26604 #: ../fish/guestfish-actions.pod:3965
26605 msgid "autosync"
26606 msgstr ""
26607
26608 #. type: verbatim
26609 #: ../fish/guestfish-actions.pod:3967
26610 #, no-wrap
26611 msgid ""
26612 " set-autosync true|false\n"
26613 "\n"
26614 msgstr ""
26615
26616 #. type: =head2
26617 #: ../fish/guestfish-actions.pod:3977
26618 msgid "set-direct"
26619 msgstr ""
26620
26621 #. type: =head2
26622 #: ../fish/guestfish-actions.pod:3979
26623 msgid "direct"
26624 msgstr ""
26625
26626 #. type: verbatim
26627 #: ../fish/guestfish-actions.pod:3981
26628 #, no-wrap
26629 msgid ""
26630 " set-direct true|false\n"
26631 "\n"
26632 msgstr ""
26633
26634 #. type: textblock
26635 #: ../fish/guestfish-actions.pod:3987
26636 msgid ""
26637 "One consequence of this is that log messages aren't caught by the library "
26638 "and handled by L</set-log-message-callback>, but go straight to stdout."
26639 msgstr ""
26640
26641 #. type: =head2
26642 #: ../fish/guestfish-actions.pod:3996
26643 msgid "set-e2label"
26644 msgstr ""
26645
26646 #. type: verbatim
26647 #: ../fish/guestfish-actions.pod:3998
26648 #, no-wrap
26649 msgid ""
26650 " set-e2label device label\n"
26651 "\n"
26652 msgstr ""
26653
26654 #. type: textblock
26655 #: ../fish/guestfish-actions.pod:4004
26656 msgid ""
26657 "You can use either L</tune2fs-l> or L</get-e2label> to return the existing "
26658 "label on a filesystem."
26659 msgstr ""
26660
26661 #. type: =head2
26662 #: ../fish/guestfish-actions.pod:4007
26663 msgid "set-e2uuid"
26664 msgstr ""
26665
26666 #. type: verbatim
26667 #: ../fish/guestfish-actions.pod:4009
26668 #, no-wrap
26669 msgid ""
26670 " set-e2uuid device uuid\n"
26671 "\n"
26672 msgstr ""
26673
26674 #. type: textblock
26675 #: ../fish/guestfish-actions.pod:4016
26676 msgid ""
26677 "You can use either L</tune2fs-l> or L</get-e2uuid> to return the existing "
26678 "UUID of a filesystem."
26679 msgstr ""
26680
26681 #. type: =head2
26682 #: ../fish/guestfish-actions.pod:4019
26683 msgid "set-memsize"
26684 msgstr ""
26685
26686 #. type: =head2
26687 #: ../fish/guestfish-actions.pod:4021
26688 msgid "memsize"
26689 msgstr ""
26690
26691 #. type: verbatim
26692 #: ../fish/guestfish-actions.pod:4023
26693 #, no-wrap
26694 msgid ""
26695 " set-memsize memsize\n"
26696 "\n"
26697 msgstr ""
26698
26699 #. type: textblock
26700 #: ../fish/guestfish-actions.pod:4025
26701 msgid ""
26702 "This sets the memory size in megabytes allocated to the qemu subprocess.  "
26703 "This only has any effect if called before L</launch>."
26704 msgstr ""
26705
26706 #. type: =head2
26707 #: ../fish/guestfish-actions.pod:4036
26708 msgid "set-network"
26709 msgstr ""
26710
26711 #. type: =head2
26712 #: ../fish/guestfish-actions.pod:4038
26713 msgid "network"
26714 msgstr ""
26715
26716 #. type: verbatim
26717 #: ../fish/guestfish-actions.pod:4040
26718 #, no-wrap
26719 msgid ""
26720 " set-network true|false\n"
26721 "\n"
26722 msgstr ""
26723
26724 #. type: textblock
26725 #: ../fish/guestfish-actions.pod:4048
26726 msgid ""
26727 "You must call this before calling L</launch>, otherwise it has no effect."
26728 msgstr ""
26729
26730 #. type: =head2
26731 #: ../fish/guestfish-actions.pod:4051
26732 msgid "set-path"
26733 msgstr ""
26734
26735 #. type: =head2
26736 #: ../fish/guestfish-actions.pod:4053
26737 msgid "path"
26738 msgstr ""
26739
26740 #. type: verbatim
26741 #: ../fish/guestfish-actions.pod:4055
26742 #, no-wrap
26743 msgid ""
26744 " set-path searchpath\n"
26745 "\n"
26746 msgstr ""
26747
26748 #. type: =head2
26749 #: ../fish/guestfish-actions.pod:4064
26750 msgid "set-qemu"
26751 msgstr ""
26752
26753 #. type: =head2
26754 #: ../fish/guestfish-actions.pod:4066
26755 msgid "qemu"
26756 msgstr ""
26757
26758 #. type: verbatim
26759 #: ../fish/guestfish-actions.pod:4068
26760 #, no-wrap
26761 msgid ""
26762 " set-qemu qemu\n"
26763 "\n"
26764 msgstr ""
26765
26766 #. type: =head2
26767 #: ../fish/guestfish-actions.pod:4088
26768 msgid "set-recovery-proc"
26769 msgstr ""
26770
26771 #. type: =head2
26772 #: ../fish/guestfish-actions.pod:4090
26773 msgid "recovery-proc"
26774 msgstr ""
26775
26776 #. type: verbatim
26777 #: ../fish/guestfish-actions.pod:4092
26778 #, no-wrap
26779 msgid ""
26780 " set-recovery-proc true|false\n"
26781 "\n"
26782 msgstr ""
26783
26784 #. type: textblock
26785 #: ../fish/guestfish-actions.pod:4094
26786 msgid ""
26787 "If this is called with the parameter C<false> then L</launch> does not "
26788 "create a recovery process.  The purpose of the recovery process is to stop "
26789 "runaway qemu processes in the case where the main program aborts abruptly."
26790 msgstr ""
26791
26792 #. type: textblock
26793 #: ../fish/guestfish-actions.pod:4099
26794 msgid ""
26795 "This only has any effect if called before L</launch>, and the default is "
26796 "true."
26797 msgstr ""
26798
26799 #. type: =head2
26800 #: ../fish/guestfish-actions.pod:4108
26801 msgid "set-selinux"
26802 msgstr ""
26803
26804 #. type: =head2
26805 #: ../fish/guestfish-actions.pod:4110
26806 msgid "selinux"
26807 msgstr ""
26808
26809 #. type: verbatim
26810 #: ../fish/guestfish-actions.pod:4112
26811 #, no-wrap
26812 msgid ""
26813 " set-selinux true|false\n"
26814 "\n"
26815 msgstr ""
26816
26817 #. type: =head2
26818 #: ../fish/guestfish-actions.pod:4123
26819 msgid "set-trace"
26820 msgstr ""
26821
26822 #. type: =head2
26823 #: ../fish/guestfish-actions.pod:4125
26824 msgid "trace"
26825 msgstr ""
26826
26827 #. type: verbatim
26828 #: ../fish/guestfish-actions.pod:4127
26829 #, no-wrap
26830 msgid ""
26831 " set-trace true|false\n"
26832 "\n"
26833 msgstr ""
26834
26835 #. type: textblock
26836 #: ../fish/guestfish-actions.pod:4139
26837 msgid ""
26838 "Trace messages are normally sent to C<stderr>, unless you register a "
26839 "callback to send them somewhere else (see L</set-event-callback>)."
26840 msgstr ""
26841
26842 #. type: =head2
26843 #: ../fish/guestfish-actions.pod:4143
26844 msgid "set-verbose"
26845 msgstr ""
26846
26847 #. type: =head2
26848 #: ../fish/guestfish-actions.pod:4145
26849 msgid "verbose"
26850 msgstr ""
26851
26852 #. type: verbatim
26853 #: ../fish/guestfish-actions.pod:4147
26854 #, no-wrap
26855 msgid ""
26856 " set-verbose true|false\n"
26857 "\n"
26858 msgstr ""
26859
26860 #. type: textblock
26861 #: ../fish/guestfish-actions.pod:4154
26862 msgid ""
26863 "Verbose messages are normally sent to C<stderr>, unless you register a "
26864 "callback to send them somewhere else (see L</set-event-callback>)."
26865 msgstr ""
26866
26867 #. type: =head2
26868 #: ../fish/guestfish-actions.pod:4158
26869 msgid "setcon"
26870 msgstr ""
26871
26872 #. type: verbatim
26873 #: ../fish/guestfish-actions.pod:4160
26874 #, no-wrap
26875 msgid ""
26876 " setcon context\n"
26877 "\n"
26878 msgstr ""
26879
26880 #. type: =head2
26881 #: ../fish/guestfish-actions.pod:4167
26882 msgid "setxattr"
26883 msgstr ""
26884
26885 #. type: verbatim
26886 #: ../fish/guestfish-actions.pod:4169
26887 #, no-wrap
26888 msgid ""
26889 " setxattr xattr val vallen path\n"
26890 "\n"
26891 msgstr ""
26892
26893 #. type: textblock
26894 #: ../fish/guestfish-actions.pod:4175
26895 msgid "See also: L</lsetxattr>, L<attr(5)>."
26896 msgstr ""
26897
26898 #. type: =head2
26899 #: ../fish/guestfish-actions.pod:4177
26900 msgid "sfdisk"
26901 msgstr ""
26902
26903 #. type: verbatim
26904 #: ../fish/guestfish-actions.pod:4179
26905 #, no-wrap
26906 msgid ""
26907 " sfdisk device cyls heads sectors 'lines ...'\n"
26908 "\n"
26909 msgstr ""
26910
26911 #. type: textblock
26912 #: ../fish/guestfish-actions.pod:4201
26913 msgid "See also: L</sfdisk-l>, L</sfdisk-N>, L</part-init>"
26914 msgstr ""
26915
26916 #. type: textblock
26917 #: ../fish/guestfish-actions.pod:4207 ../fish/guestfish-actions.pod:4230
26918 #: ../fish/guestfish-actions.pod:4252
26919 msgid ""
26920 "This function is deprecated.  In new code, use the L</part_add> call instead."
26921 msgstr ""
26922
26923 #. type: =head2
26924 #: ../fish/guestfish-actions.pod:4214
26925 msgid "sfdiskM"
26926 msgstr ""
26927
26928 #. type: verbatim
26929 #: ../fish/guestfish-actions.pod:4216
26930 #, no-wrap
26931 msgid ""
26932 " sfdiskM device 'lines ...'\n"
26933 "\n"
26934 msgstr ""
26935
26936 #. type: textblock
26937 #: ../fish/guestfish-actions.pod:4218
26938 msgid ""
26939 "This is a simplified interface to the L</sfdisk> command, where partition "
26940 "sizes are specified in megabytes only (rounded to the nearest cylinder) and "
26941 "you don't need to specify the cyls, heads and sectors parameters which were "
26942 "rarely if ever used anyway."
26943 msgstr ""
26944
26945 #. type: textblock
26946 #: ../fish/guestfish-actions.pod:4224
26947 msgid "See also: L</sfdisk>, the L<sfdisk(8)> manpage and L</part-disk>"
26948 msgstr ""
26949
26950 #. type: =head2
26951 #: ../fish/guestfish-actions.pod:4237
26952 msgid "sfdisk-N"
26953 msgstr ""
26954
26955 #. type: verbatim
26956 #: ../fish/guestfish-actions.pod:4239
26957 #, no-wrap
26958 msgid ""
26959 " sfdisk-N device partnum cyls heads sectors line\n"
26960 "\n"
26961 msgstr ""
26962
26963 #. type: textblock
26964 #: ../fish/guestfish-actions.pod:4244
26965 msgid ""
26966 "For other parameters, see L</sfdisk>.  You should usually pass C<0> for the "
26967 "cyls/heads/sectors parameters."
26968 msgstr ""
26969
26970 #. type: textblock
26971 #: ../fish/guestfish-actions.pod:4247
26972 msgid "See also: L</part-add>"
26973 msgstr ""
26974
26975 #. type: =head2
26976 #: ../fish/guestfish-actions.pod:4259
26977 msgid "sfdisk-disk-geometry"
26978 msgstr ""
26979
26980 #. type: verbatim
26981 #: ../fish/guestfish-actions.pod:4261
26982 #, no-wrap
26983 msgid ""
26984 " sfdisk-disk-geometry device\n"
26985 "\n"
26986 msgstr ""
26987
26988 #. type: textblock
26989 #: ../fish/guestfish-actions.pod:4263
26990 msgid ""
26991 "This displays the disk geometry of C<device> read from the partition table.  "
26992 "Especially in the case where the underlying block device has been resized, "
26993 "this can be different from the kernel's idea of the geometry (see L</sfdisk-"
26994 "kernel-geometry>)."
26995 msgstr ""
26996
26997 #. type: =head2
26998 #: ../fish/guestfish-actions.pod:4271
26999 msgid "sfdisk-kernel-geometry"
27000 msgstr ""
27001
27002 #. type: verbatim
27003 #: ../fish/guestfish-actions.pod:4273
27004 #, no-wrap
27005 msgid ""
27006 " sfdisk-kernel-geometry device\n"
27007 "\n"
27008 msgstr ""
27009
27010 #. type: =head2
27011 #: ../fish/guestfish-actions.pod:4280
27012 msgid "sfdisk-l"
27013 msgstr ""
27014
27015 #. type: verbatim
27016 #: ../fish/guestfish-actions.pod:4282
27017 #, no-wrap
27018 msgid ""
27019 " sfdisk-l device\n"
27020 "\n"
27021 msgstr ""
27022
27023 #. type: textblock
27024 #: ../fish/guestfish-actions.pod:4288
27025 msgid "See also: L</part-list>"
27026 msgstr ""
27027
27028 #. type: textblock
27029 #: ../fish/guestfish-actions.pod:4290
27030 msgid ""
27031 "This function is deprecated.  In new code, use the L</part_list> call "
27032 "instead."
27033 msgstr ""
27034
27035 #. type: =head2
27036 #: ../fish/guestfish-actions.pod:4297
27037 msgid "sh"
27038 msgstr ""
27039
27040 #. type: verbatim
27041 #: ../fish/guestfish-actions.pod:4299
27042 #, no-wrap
27043 msgid ""
27044 " sh command\n"
27045 "\n"
27046 msgstr ""
27047
27048 #. type: textblock
27049 #: ../fish/guestfish-actions.pod:4304
27050 msgid "This is like L</command>, but passes the command to:"
27051 msgstr ""
27052
27053 #. type: textblock
27054 #: ../fish/guestfish-actions.pod:4312
27055 msgid "All the provisos about L</command> apply to this call."
27056 msgstr ""
27057
27058 #. type: =head2
27059 #: ../fish/guestfish-actions.pod:4314
27060 msgid "sh-lines"
27061 msgstr ""
27062
27063 #. type: verbatim
27064 #: ../fish/guestfish-actions.pod:4316
27065 #, no-wrap
27066 msgid ""
27067 " sh-lines command\n"
27068 "\n"
27069 msgstr ""
27070
27071 #. type: textblock
27072 #: ../fish/guestfish-actions.pod:4318
27073 msgid "This is the same as L</sh>, but splits the result into a list of lines."
27074 msgstr ""
27075
27076 #. type: textblock
27077 #: ../fish/guestfish-actions.pod:4321
27078 msgid "See also: L</command-lines>"
27079 msgstr ""
27080
27081 #. type: =head2
27082 #: ../fish/guestfish-actions.pod:4323
27083 msgid "sleep"
27084 msgstr ""
27085
27086 #. type: verbatim
27087 #: ../fish/guestfish-actions.pod:4325
27088 #, no-wrap
27089 msgid ""
27090 " sleep secs\n"
27091 "\n"
27092 msgstr ""
27093
27094 #. type: =head2
27095 #: ../fish/guestfish-actions.pod:4329
27096 msgid "stat"
27097 msgstr ""
27098
27099 #. type: verbatim
27100 #: ../fish/guestfish-actions.pod:4331
27101 #, no-wrap
27102 msgid ""
27103 " stat path\n"
27104 "\n"
27105 msgstr ""
27106
27107 #. type: =head2
27108 #: ../fish/guestfish-actions.pod:4337
27109 msgid "statvfs"
27110 msgstr ""
27111
27112 #. type: verbatim
27113 #: ../fish/guestfish-actions.pod:4339
27114 #, no-wrap
27115 msgid ""
27116 " statvfs path\n"
27117 "\n"
27118 msgstr ""
27119
27120 #. type: =head2
27121 #: ../fish/guestfish-actions.pod:4347
27122 msgid "strings"
27123 msgstr ""
27124
27125 #. type: verbatim
27126 #: ../fish/guestfish-actions.pod:4349
27127 #, no-wrap
27128 msgid ""
27129 " strings path\n"
27130 "\n"
27131 msgstr ""
27132
27133 #. type: =head2
27134 #: ../fish/guestfish-actions.pod:4357
27135 msgid "strings-e"
27136 msgstr ""
27137
27138 #. type: verbatim
27139 #: ../fish/guestfish-actions.pod:4359
27140 #, no-wrap
27141 msgid ""
27142 " strings-e encoding path\n"
27143 "\n"
27144 msgstr ""
27145
27146 #. type: textblock
27147 #: ../fish/guestfish-actions.pod:4361
27148 msgid ""
27149 "This is like the L</strings> command, but allows you to specify the encoding "
27150 "of strings that are looked for in the source file C<path>."
27151 msgstr ""
27152
27153 #. type: textblock
27154 #: ../fish/guestfish-actions.pod:4371
27155 msgid ""
27156 "Single 7-bit-byte characters like ASCII and the ASCII-compatible parts of "
27157 "ISO-8859-X (this is what L</strings> uses)."
27158 msgstr ""
27159
27160 #. type: =head2
27161 #: ../fish/guestfish-actions.pod:4403
27162 msgid "swapoff-device"
27163 msgstr ""
27164
27165 #. type: verbatim
27166 #: ../fish/guestfish-actions.pod:4405
27167 #, no-wrap
27168 msgid ""
27169 " swapoff-device device\n"
27170 "\n"
27171 msgstr ""
27172
27173 #. type: textblock
27174 #: ../fish/guestfish-actions.pod:4407
27175 msgid ""
27176 "This command disables the libguestfs appliance swap device or partition "
27177 "named C<device>.  See L</swapon-device>."
27178 msgstr ""
27179
27180 #. type: =head2
27181 #: ../fish/guestfish-actions.pod:4411
27182 msgid "swapoff-file"
27183 msgstr ""
27184
27185 #. type: verbatim
27186 #: ../fish/guestfish-actions.pod:4413
27187 #, no-wrap
27188 msgid ""
27189 " swapoff-file file\n"
27190 "\n"
27191 msgstr ""
27192
27193 #. type: =head2
27194 #: ../fish/guestfish-actions.pod:4417
27195 msgid "swapoff-label"
27196 msgstr ""
27197
27198 #. type: verbatim
27199 #: ../fish/guestfish-actions.pod:4419
27200 #, no-wrap
27201 msgid ""
27202 " swapoff-label label\n"
27203 "\n"
27204 msgstr ""
27205
27206 #. type: =head2
27207 #: ../fish/guestfish-actions.pod:4424
27208 msgid "swapoff-uuid"
27209 msgstr ""
27210
27211 #. type: verbatim
27212 #: ../fish/guestfish-actions.pod:4426
27213 #, no-wrap
27214 msgid ""
27215 " swapoff-uuid uuid\n"
27216 "\n"
27217 msgstr ""
27218
27219 #. type: =head2
27220 #: ../fish/guestfish-actions.pod:4431
27221 msgid "swapon-device"
27222 msgstr ""
27223
27224 #. type: verbatim
27225 #: ../fish/guestfish-actions.pod:4433
27226 #, no-wrap
27227 msgid ""
27228 " swapon-device device\n"
27229 "\n"
27230 msgstr ""
27231
27232 #. type: textblock
27233 #: ../fish/guestfish-actions.pod:4435
27234 msgid ""
27235 "This command enables the libguestfs appliance to use the swap device or "
27236 "partition named C<device>.  The increased memory is made available for all "
27237 "commands, for example those run using L</command> or L</sh>."
27238 msgstr ""
27239
27240 #. type: =head2
27241 #: ../fish/guestfish-actions.pod:4447
27242 msgid "swapon-file"
27243 msgstr ""
27244
27245 #. type: verbatim
27246 #: ../fish/guestfish-actions.pod:4449
27247 #, no-wrap
27248 msgid ""
27249 " swapon-file file\n"
27250 "\n"
27251 msgstr ""
27252
27253 #. type: textblock
27254 #: ../fish/guestfish-actions.pod:4451
27255 msgid ""
27256 "This command enables swap to a file.  See L</swapon-device> for other notes."
27257 msgstr ""
27258
27259 #. type: =head2
27260 #: ../fish/guestfish-actions.pod:4454
27261 msgid "swapon-label"
27262 msgstr ""
27263
27264 #. type: verbatim
27265 #: ../fish/guestfish-actions.pod:4456
27266 #, no-wrap
27267 msgid ""
27268 " swapon-label label\n"
27269 "\n"
27270 msgstr ""
27271
27272 #. type: textblock
27273 #: ../fish/guestfish-actions.pod:4458
27274 msgid ""
27275 "This command enables swap to a labeled swap partition.  See L</swapon-"
27276 "device> for other notes."
27277 msgstr ""
27278
27279 #. type: =head2
27280 #: ../fish/guestfish-actions.pod:4461
27281 msgid "swapon-uuid"
27282 msgstr ""
27283
27284 #. type: verbatim
27285 #: ../fish/guestfish-actions.pod:4463
27286 #, no-wrap
27287 msgid ""
27288 " swapon-uuid uuid\n"
27289 "\n"
27290 msgstr ""
27291
27292 #. type: textblock
27293 #: ../fish/guestfish-actions.pod:4465
27294 msgid ""
27295 "This command enables swap to a swap partition with the given UUID.  See L</"
27296 "swapon-device> for other notes."
27297 msgstr ""
27298
27299 #. type: =head2
27300 #: ../fish/guestfish-actions.pod:4468
27301 msgid "sync"
27302 msgstr ""
27303
27304 #. type: verbatim
27305 #: ../fish/guestfish-actions.pod:4470
27306 #, no-wrap
27307 msgid ""
27308 " sync\n"
27309 "\n"
27310 msgstr ""
27311
27312 #. type: =head2
27313 #: ../fish/guestfish-actions.pod:4478
27314 msgid "tail"
27315 msgstr ""
27316
27317 #. type: verbatim
27318 #: ../fish/guestfish-actions.pod:4480
27319 #, no-wrap
27320 msgid ""
27321 " tail path\n"
27322 "\n"
27323 msgstr ""
27324
27325 #. type: =head2
27326 #: ../fish/guestfish-actions.pod:4488
27327 msgid "tail-n"
27328 msgstr ""
27329
27330 #. type: verbatim
27331 #: ../fish/guestfish-actions.pod:4490
27332 #, no-wrap
27333 msgid ""
27334 " tail-n nrlines path\n"
27335 "\n"
27336 msgstr ""
27337
27338 #. type: =head2
27339 #: ../fish/guestfish-actions.pod:4503
27340 msgid "tar-in"
27341 msgstr ""
27342
27343 #. type: verbatim
27344 #: ../fish/guestfish-actions.pod:4505
27345 #, no-wrap
27346 msgid ""
27347 " tar-in (tarfile|-) directory\n"
27348 "\n"
27349 msgstr ""
27350
27351 #. type: textblock
27352 #: ../fish/guestfish-actions.pod:4510
27353 msgid "To upload a compressed tarball, use L</tgz-in> or L</txz-in>."
27354 msgstr ""
27355
27356 #. type: =head2
27357 #: ../fish/guestfish-actions.pod:4515
27358 msgid "tar-out"
27359 msgstr ""
27360
27361 #. type: verbatim
27362 #: ../fish/guestfish-actions.pod:4517
27363 #, no-wrap
27364 msgid ""
27365 " tar-out directory (tarfile|-)\n"
27366 "\n"
27367 msgstr ""
27368
27369 #. type: textblock
27370 #: ../fish/guestfish-actions.pod:4522
27371 msgid "To download a compressed tarball, use L</tgz-out> or L</txz-out>."
27372 msgstr ""
27373
27374 #. type: =head2
27375 #: ../fish/guestfish-actions.pod:4527
27376 msgid "tgz-in"
27377 msgstr ""
27378
27379 #. type: verbatim
27380 #: ../fish/guestfish-actions.pod:4529
27381 #, no-wrap
27382 msgid ""
27383 " tgz-in (tarball|-) directory\n"
27384 "\n"
27385 msgstr ""
27386
27387 #. type: textblock
27388 #: ../fish/guestfish-actions.pod:4534
27389 msgid "To upload an uncompressed tarball, use L</tar-in>."
27390 msgstr ""
27391
27392 #. type: =head2
27393 #: ../fish/guestfish-actions.pod:4538
27394 msgid "tgz-out"
27395 msgstr ""
27396
27397 #. type: verbatim
27398 #: ../fish/guestfish-actions.pod:4540
27399 #, no-wrap
27400 msgid ""
27401 " tgz-out directory (tarball|-)\n"
27402 "\n"
27403 msgstr ""
27404
27405 #. type: textblock
27406 #: ../fish/guestfish-actions.pod:4545
27407 msgid "To download an uncompressed tarball, use L</tar-out>."
27408 msgstr ""
27409
27410 #. type: =head2
27411 #: ../fish/guestfish-actions.pod:4549
27412 msgid "touch"
27413 msgstr ""
27414
27415 #. type: verbatim
27416 #: ../fish/guestfish-actions.pod:4551
27417 #, no-wrap
27418 msgid ""
27419 " touch path\n"
27420 "\n"
27421 msgstr ""
27422
27423 #. type: =head2
27424 #: ../fish/guestfish-actions.pod:4560
27425 msgid "truncate"
27426 msgstr ""
27427
27428 #. type: verbatim
27429 #: ../fish/guestfish-actions.pod:4562
27430 #, no-wrap
27431 msgid ""
27432 " truncate path\n"
27433 "\n"
27434 msgstr ""
27435
27436 #. type: =head2
27437 #: ../fish/guestfish-actions.pod:4567
27438 msgid "truncate-size"
27439 msgstr ""
27440
27441 #. type: verbatim
27442 #: ../fish/guestfish-actions.pod:4569
27443 #, no-wrap
27444 msgid ""
27445 " truncate-size path size\n"
27446 "\n"
27447 msgstr ""
27448
27449 #. type: textblock
27450 #: ../fish/guestfish-actions.pod:4574
27451 msgid ""
27452 "If the current file size is less than C<size> then the file is extended to "
27453 "the required size with zero bytes.  This creates a sparse file (ie. disk "
27454 "blocks are not allocated for the file until you write to it).  To create a "
27455 "non-sparse file of zeroes, use L</fallocate64> instead."
27456 msgstr ""
27457
27458 #. type: =head2
27459 #: ../fish/guestfish-actions.pod:4580
27460 msgid "tune2fs-l"
27461 msgstr ""
27462
27463 #. type: verbatim
27464 #: ../fish/guestfish-actions.pod:4582
27465 #, no-wrap
27466 msgid ""
27467 " tune2fs-l device\n"
27468 "\n"
27469 msgstr ""
27470
27471 #. type: =head2
27472 #: ../fish/guestfish-actions.pod:4592
27473 msgid "txz-in"
27474 msgstr ""
27475
27476 #. type: verbatim
27477 #: ../fish/guestfish-actions.pod:4594
27478 #, no-wrap
27479 msgid ""
27480 " txz-in (tarball|-) directory\n"
27481 "\n"
27482 msgstr ""
27483
27484 #. type: =head2
27485 #: ../fish/guestfish-actions.pod:4601
27486 msgid "txz-out"
27487 msgstr ""
27488
27489 #. type: verbatim
27490 #: ../fish/guestfish-actions.pod:4603
27491 #, no-wrap
27492 msgid ""
27493 " txz-out directory (tarball|-)\n"
27494 "\n"
27495 msgstr ""
27496
27497 #. type: =head2
27498 #: ../fish/guestfish-actions.pod:4610
27499 msgid "umask"
27500 msgstr ""
27501
27502 #. type: verbatim
27503 #: ../fish/guestfish-actions.pod:4612
27504 #, no-wrap
27505 msgid ""
27506 " umask mask\n"
27507 "\n"
27508 msgstr ""
27509
27510 #. type: textblock
27511 #: ../fish/guestfish-actions.pod:4626
27512 msgid "See also L</get-umask>, L<umask(2)>, L</mknod>, L</mkdir>."
27513 msgstr ""
27514
27515 #. type: =head2
27516 #: ../fish/guestfish-actions.pod:4631
27517 msgid "umount"
27518 msgstr ""
27519
27520 #. type: =head2
27521 #: ../fish/guestfish-actions.pod:4633
27522 msgid "unmount"
27523 msgstr ""
27524
27525 #. type: verbatim
27526 #: ../fish/guestfish-actions.pod:4635
27527 #, no-wrap
27528 msgid ""
27529 " umount pathordevice\n"
27530 "\n"
27531 msgstr ""
27532
27533 #. type: =head2
27534 #: ../fish/guestfish-actions.pod:4641
27535 msgid "umount-all"
27536 msgstr ""
27537
27538 #. type: =head2
27539 #: ../fish/guestfish-actions.pod:4643
27540 msgid "unmount-all"
27541 msgstr ""
27542
27543 #. type: verbatim
27544 #: ../fish/guestfish-actions.pod:4645
27545 #, no-wrap
27546 msgid ""
27547 " umount-all\n"
27548 "\n"
27549 msgstr ""
27550
27551 #. type: =head2
27552 #: ../fish/guestfish-actions.pod:4651
27553 msgid "upload"
27554 msgstr ""
27555
27556 #. type: verbatim
27557 #: ../fish/guestfish-actions.pod:4653
27558 #, no-wrap
27559 msgid ""
27560 " upload (filename|-) remotefilename\n"
27561 "\n"
27562 msgstr ""
27563
27564 #. type: textblock
27565 #: ../fish/guestfish-actions.pod:4660
27566 msgid "See also L</download>."
27567 msgstr ""
27568
27569 #. type: =head2
27570 #: ../fish/guestfish-actions.pod:4664
27571 msgid "upload-offset"
27572 msgstr ""
27573
27574 #. type: verbatim
27575 #: ../fish/guestfish-actions.pod:4666
27576 #, no-wrap
27577 msgid ""
27578 " upload-offset (filename|-) remotefilename offset\n"
27579 "\n"
27580 msgstr ""
27581
27582 #. type: textblock
27583 #: ../fish/guestfish-actions.pod:4678
27584 msgid ""
27585 "Note that there is no limit on the amount of data that can be uploaded with "
27586 "this call, unlike with L</pwrite>, and this call always writes the full "
27587 "amount unless an error occurs."
27588 msgstr ""
27589
27590 #. type: textblock
27591 #: ../fish/guestfish-actions.pod:4683
27592 msgid "See also L</upload>, L</pwrite>."
27593 msgstr ""
27594
27595 #. type: =head2
27596 #: ../fish/guestfish-actions.pod:4687
27597 msgid "utimens"
27598 msgstr ""
27599
27600 #. type: verbatim
27601 #: ../fish/guestfish-actions.pod:4689
27602 #, no-wrap
27603 msgid ""
27604 " utimens path atsecs atnsecs mtsecs mtnsecs\n"
27605 "\n"
27606 msgstr ""
27607
27608 #. type: =head2
27609 #: ../fish/guestfish-actions.pod:4708
27610 msgid "version"
27611 msgstr ""
27612
27613 #. type: verbatim
27614 #: ../fish/guestfish-actions.pod:4710
27615 #, no-wrap
27616 msgid ""
27617 " version\n"
27618 "\n"
27619 msgstr ""
27620
27621 #. type: textblock
27622 #: ../fish/guestfish-actions.pod:4737
27623 msgid ""
27624 "I<Note:> Don't use this call to test for availability of features.  In "
27625 "enterprise distributions we backport features from later versions into "
27626 "earlier versions, making this an unreliable way to test for features.  Use "
27627 "L</available> instead."
27628 msgstr ""
27629
27630 #. type: =head2
27631 #: ../fish/guestfish-actions.pod:4743
27632 msgid "vfs-label"
27633 msgstr ""
27634
27635 #. type: verbatim
27636 #: ../fish/guestfish-actions.pod:4745
27637 #, no-wrap
27638 msgid ""
27639 " vfs-label device\n"
27640 "\n"
27641 msgstr ""
27642
27643 #. type: textblock
27644 #: ../fish/guestfish-actions.pod:4752
27645 msgid "To find a filesystem from the label, use L</findfs-label>."
27646 msgstr ""
27647
27648 #. type: =head2
27649 #: ../fish/guestfish-actions.pod:4754
27650 msgid "vfs-type"
27651 msgstr ""
27652
27653 #. type: verbatim
27654 #: ../fish/guestfish-actions.pod:4756
27655 #, no-wrap
27656 msgid ""
27657 " vfs-type device\n"
27658 "\n"
27659 msgstr ""
27660
27661 #. type: =head2
27662 #: ../fish/guestfish-actions.pod:4766
27663 msgid "vfs-uuid"
27664 msgstr ""
27665
27666 #. type: verbatim
27667 #: ../fish/guestfish-actions.pod:4768
27668 #, no-wrap
27669 msgid ""
27670 " vfs-uuid device\n"
27671 "\n"
27672 msgstr ""
27673
27674 #. type: textblock
27675 #: ../fish/guestfish-actions.pod:4775
27676 msgid "To find a filesystem from the UUID, use L</findfs-uuid>."
27677 msgstr ""
27678
27679 #. type: =head2
27680 #: ../fish/guestfish-actions.pod:4777
27681 msgid "vg-activate"
27682 msgstr ""
27683
27684 #. type: verbatim
27685 #: ../fish/guestfish-actions.pod:4779
27686 #, no-wrap
27687 msgid ""
27688 " vg-activate true|false 'volgroups ...'\n"
27689 "\n"
27690 msgstr ""
27691
27692 #. type: =head2
27693 #: ../fish/guestfish-actions.pod:4792
27694 msgid "vg-activate-all"
27695 msgstr ""
27696
27697 #. type: verbatim
27698 #: ../fish/guestfish-actions.pod:4794
27699 #, no-wrap
27700 msgid ""
27701 " vg-activate-all true|false\n"
27702 "\n"
27703 msgstr ""
27704
27705 #. type: =head2
27706 #: ../fish/guestfish-actions.pod:4804
27707 msgid "vgcreate"
27708 msgstr ""
27709
27710 #. type: verbatim
27711 #: ../fish/guestfish-actions.pod:4806
27712 #, no-wrap
27713 msgid ""
27714 " vgcreate volgroup 'physvols ...'\n"
27715 "\n"
27716 msgstr ""
27717
27718 #. type: =head2
27719 #: ../fish/guestfish-actions.pod:4811
27720 msgid "vglvuuids"
27721 msgstr ""
27722
27723 #. type: verbatim
27724 #: ../fish/guestfish-actions.pod:4813
27725 #, no-wrap
27726 msgid ""
27727 " vglvuuids vgname\n"
27728 "\n"
27729 msgstr ""
27730
27731 #. type: textblock
27732 #: ../fish/guestfish-actions.pod:4818
27733 msgid ""
27734 "You can use this along with L</lvs> and L</lvuuid> calls to associate "
27735 "logical volumes and volume groups."
27736 msgstr ""
27737
27738 #. type: textblock
27739 #: ../fish/guestfish-actions.pod:4821
27740 msgid "See also L</vgpvuuids>."
27741 msgstr ""
27742
27743 #. type: =head2
27744 #: ../fish/guestfish-actions.pod:4823
27745 msgid "vgpvuuids"
27746 msgstr ""
27747
27748 #. type: verbatim
27749 #: ../fish/guestfish-actions.pod:4825
27750 #, no-wrap
27751 msgid ""
27752 " vgpvuuids vgname\n"
27753 "\n"
27754 msgstr ""
27755
27756 #. type: textblock
27757 #: ../fish/guestfish-actions.pod:4830
27758 msgid ""
27759 "You can use this along with L</pvs> and L</pvuuid> calls to associate "
27760 "physical volumes and volume groups."
27761 msgstr ""
27762
27763 #. type: textblock
27764 #: ../fish/guestfish-actions.pod:4833
27765 msgid "See also L</vglvuuids>."
27766 msgstr ""
27767
27768 #. type: =head2
27769 #: ../fish/guestfish-actions.pod:4835
27770 msgid "vgremove"
27771 msgstr ""
27772
27773 #. type: verbatim
27774 #: ../fish/guestfish-actions.pod:4837
27775 #, no-wrap
27776 msgid ""
27777 " vgremove vgname\n"
27778 "\n"
27779 msgstr ""
27780
27781 #. type: =head2
27782 #: ../fish/guestfish-actions.pod:4844
27783 msgid "vgrename"
27784 msgstr ""
27785
27786 #. type: verbatim
27787 #: ../fish/guestfish-actions.pod:4846
27788 #, no-wrap
27789 msgid ""
27790 " vgrename volgroup newvolgroup\n"
27791 "\n"
27792 msgstr ""
27793
27794 #. type: =head2
27795 #: ../fish/guestfish-actions.pod:4850
27796 msgid "vgs"
27797 msgstr ""
27798
27799 #. type: verbatim
27800 #: ../fish/guestfish-actions.pod:4852
27801 #, no-wrap
27802 msgid ""
27803 " vgs\n"
27804 "\n"
27805 msgstr ""
27806
27807 #. type: textblock
27808 #: ../fish/guestfish-actions.pod:4860
27809 msgid "See also L</vgs-full>."
27810 msgstr ""
27811
27812 #. type: =head2
27813 #: ../fish/guestfish-actions.pod:4862
27814 msgid "vgs-full"
27815 msgstr ""
27816
27817 #. type: verbatim
27818 #: ../fish/guestfish-actions.pod:4864
27819 #, no-wrap
27820 msgid ""
27821 " vgs-full\n"
27822 "\n"
27823 msgstr ""
27824
27825 #. type: =head2
27826 #: ../fish/guestfish-actions.pod:4869
27827 msgid "vgscan"
27828 msgstr ""
27829
27830 #. type: verbatim
27831 #: ../fish/guestfish-actions.pod:4871
27832 #, no-wrap
27833 msgid ""
27834 " vgscan\n"
27835 "\n"
27836 msgstr ""
27837
27838 #. type: =head2
27839 #: ../fish/guestfish-actions.pod:4876
27840 msgid "vguuid"
27841 msgstr ""
27842
27843 #. type: verbatim
27844 #: ../fish/guestfish-actions.pod:4878
27845 #, no-wrap
27846 msgid ""
27847 " vguuid vgname\n"
27848 "\n"
27849 msgstr ""
27850
27851 #. type: =head2
27852 #: ../fish/guestfish-actions.pod:4882
27853 msgid "wc-c"
27854 msgstr ""
27855
27856 #. type: verbatim
27857 #: ../fish/guestfish-actions.pod:4884
27858 #, no-wrap
27859 msgid ""
27860 " wc-c path\n"
27861 "\n"
27862 msgstr ""
27863
27864 #. type: =head2
27865 #: ../fish/guestfish-actions.pod:4889
27866 msgid "wc-l"
27867 msgstr ""
27868
27869 #. type: verbatim
27870 #: ../fish/guestfish-actions.pod:4891
27871 #, no-wrap
27872 msgid ""
27873 " wc-l path\n"
27874 "\n"
27875 msgstr ""
27876
27877 #. type: =head2
27878 #: ../fish/guestfish-actions.pod:4896
27879 msgid "wc-w"
27880 msgstr ""
27881
27882 #. type: verbatim
27883 #: ../fish/guestfish-actions.pod:4898
27884 #, no-wrap
27885 msgid ""
27886 " wc-w path\n"
27887 "\n"
27888 msgstr ""
27889
27890 #. type: =head2
27891 #: ../fish/guestfish-actions.pod:4903
27892 msgid "write"
27893 msgstr ""
27894
27895 #. type: verbatim
27896 #: ../fish/guestfish-actions.pod:4905
27897 #, no-wrap
27898 msgid ""
27899 " write path content\n"
27900 "\n"
27901 msgstr ""
27902
27903 #. type: =head2
27904 #: ../fish/guestfish-actions.pod:4913
27905 msgid "write-file"
27906 msgstr ""
27907
27908 #. type: verbatim
27909 #: ../fish/guestfish-actions.pod:4915
27910 #, no-wrap
27911 msgid ""
27912 " write-file path content size\n"
27913 "\n"
27914 msgstr ""
27915
27916 #. type: textblock
27917 #: ../fish/guestfish-actions.pod:4931
27918 msgid ""
27919 "This function is deprecated.  In new code, use the L</write> call instead."
27920 msgstr ""
27921
27922 #. type: =head2
27923 #: ../fish/guestfish-actions.pod:4938
27924 msgid "zegrep"
27925 msgstr ""
27926
27927 #. type: verbatim
27928 #: ../fish/guestfish-actions.pod:4940
27929 #, no-wrap
27930 msgid ""
27931 " zegrep regex path\n"
27932 "\n"
27933 msgstr ""
27934
27935 #. type: =head2
27936 #: ../fish/guestfish-actions.pod:4948
27937 msgid "zegrepi"
27938 msgstr ""
27939
27940 #. type: verbatim
27941 #: ../fish/guestfish-actions.pod:4950
27942 #, no-wrap
27943 msgid ""
27944 " zegrepi regex path\n"
27945 "\n"
27946 msgstr ""
27947
27948 #. type: =head2
27949 #: ../fish/guestfish-actions.pod:4958
27950 msgid "zero"
27951 msgstr ""
27952
27953 #. type: verbatim
27954 #: ../fish/guestfish-actions.pod:4960
27955 #, no-wrap
27956 msgid ""
27957 " zero device\n"
27958 "\n"
27959 msgstr ""
27960
27961 #. type: textblock
27962 #: ../fish/guestfish-actions.pod:4968
27963 msgid "See also: L</zero-device>, L</scrub-device>."
27964 msgstr ""
27965
27966 #. type: =head2
27967 #: ../fish/guestfish-actions.pod:4970
27968 msgid "zero-device"
27969 msgstr ""
27970
27971 #. type: verbatim
27972 #: ../fish/guestfish-actions.pod:4972
27973 #, no-wrap
27974 msgid ""
27975 " zero-device device\n"
27976 "\n"
27977 msgstr ""
27978
27979 #. type: textblock
27980 #: ../fish/guestfish-actions.pod:4974
27981 msgid ""
27982 "This command writes zeroes over the entire C<device>.  Compare with L</zero> "
27983 "which just zeroes the first few blocks of a device."
27984 msgstr ""
27985
27986 #. type: =head2
27987 #: ../fish/guestfish-actions.pod:4981
27988 msgid "zerofree"
27989 msgstr ""
27990
27991 #. type: verbatim
27992 #: ../fish/guestfish-actions.pod:4983
27993 #, no-wrap
27994 msgid ""
27995 " zerofree device\n"
27996 "\n"
27997 msgstr ""
27998
27999 #. type: =head2
28000 #: ../fish/guestfish-actions.pod:4996
28001 msgid "zfgrep"
28002 msgstr ""
28003
28004 #. type: verbatim
28005 #: ../fish/guestfish-actions.pod:4998
28006 #, no-wrap
28007 msgid ""
28008 " zfgrep pattern path\n"
28009 "\n"
28010 msgstr ""
28011
28012 #. type: =head2
28013 #: ../fish/guestfish-actions.pod:5006
28014 msgid "zfgrepi"
28015 msgstr ""
28016
28017 #. type: verbatim
28018 #: ../fish/guestfish-actions.pod:5008
28019 #, no-wrap
28020 msgid ""
28021 " zfgrepi pattern path\n"
28022 "\n"
28023 msgstr ""
28024
28025 #. type: =head2
28026 #: ../fish/guestfish-actions.pod:5016
28027 msgid "zfile"
28028 msgstr ""
28029
28030 #. type: verbatim
28031 #: ../fish/guestfish-actions.pod:5018
28032 #, no-wrap
28033 msgid ""
28034 " zfile meth path\n"
28035 "\n"
28036 msgstr ""
28037
28038 #. type: textblock
28039 #: ../fish/guestfish-actions.pod:5025
28040 msgid ""
28041 "Since 1.0.63, use L</file> instead which can now process compressed files."
28042 msgstr ""
28043
28044 #. type: textblock
28045 #: ../fish/guestfish-actions.pod:5028
28046 msgid ""
28047 "This function is deprecated.  In new code, use the L</file> call instead."
28048 msgstr ""
28049
28050 #. type: =head2
28051 #: ../fish/guestfish-actions.pod:5035
28052 msgid "zgrep"
28053 msgstr ""
28054
28055 #. type: verbatim
28056 #: ../fish/guestfish-actions.pod:5037
28057 #, no-wrap
28058 msgid ""
28059 " zgrep regex path\n"
28060 "\n"
28061 msgstr ""
28062
28063 #. type: =head2
28064 #: ../fish/guestfish-actions.pod:5045
28065 msgid "zgrepi"
28066 msgstr ""
28067
28068 #. type: verbatim
28069 #: ../fish/guestfish-actions.pod:5047
28070 #, no-wrap
28071 msgid ""
28072 " zgrepi regex path\n"
28073 "\n"
28074 msgstr ""
28075
28076 #. type: =head2
28077 #: ../fish/guestfish-commands.pod:1
28078 msgid "alloc"
28079 msgstr ""
28080
28081 #. type: =head2
28082 #: ../fish/guestfish-commands.pod:3
28083 msgid "allocate"
28084 msgstr ""
28085
28086 #. type: verbatim
28087 #: ../fish/guestfish-commands.pod:5
28088 #, no-wrap
28089 msgid ""
28090 " alloc filename size\n"
28091 "\n"
28092 msgstr ""
28093
28094 #. type: textblock
28095 #: ../fish/guestfish-commands.pod:7
28096 msgid ""
28097 "This creates an empty (zeroed) file of the given size, and then adds so it "
28098 "can be further examined."
28099 msgstr ""
28100
28101 #. type: textblock
28102 #: ../fish/guestfish-commands.pod:10 ../fish/guestfish-commands.pod:168
28103 msgid "For more advanced image creation, see L<qemu-img(1)> utility."
28104 msgstr ""
28105
28106 #. type: textblock
28107 #: ../fish/guestfish-commands.pod:12 ../fish/guestfish-commands.pod:170
28108 msgid "Size can be specified using standard suffixes, eg. C<1M>."
28109 msgstr ""
28110
28111 #. type: textblock
28112 #: ../fish/guestfish-commands.pod:14
28113 msgid ""
28114 "To create a sparse file, use L</sparse> instead.  To create a prepared disk "
28115 "image, see L</PREPARED DISK IMAGES>."
28116 msgstr ""
28117
28118 #. type: =head2
28119 #: ../fish/guestfish-commands.pod:17
28120 msgid "copy-in"
28121 msgstr ""
28122
28123 #. type: verbatim
28124 #: ../fish/guestfish-commands.pod:19
28125 #, no-wrap
28126 msgid ""
28127 " copy-in local [local ...] /remotedir\n"
28128 "\n"
28129 msgstr ""
28130
28131 #. type: textblock
28132 #: ../fish/guestfish-commands.pod:21
28133 msgid ""
28134 "C<copy-in> copies local files or directories recursively into the disk "
28135 "image, placing them in the directory called C</remotedir> (which must "
28136 "exist).  This guestfish meta-command turns into a sequence of L</tar-in> and "
28137 "other commands as necessary."
28138 msgstr ""
28139
28140 #. type: textblock
28141 #: ../fish/guestfish-commands.pod:26
28142 msgid ""
28143 "Multiple local files and directories can be specified, but the last "
28144 "parameter must always be a remote directory.  Wildcards cannot be used."
28145 msgstr ""
28146
28147 #. type: =head2
28148 #: ../fish/guestfish-commands.pod:30
28149 msgid "copy-out"
28150 msgstr ""
28151
28152 #. type: verbatim
28153 #: ../fish/guestfish-commands.pod:32
28154 #, no-wrap
28155 msgid ""
28156 " copy-out remote [remote ...] localdir\n"
28157 "\n"
28158 msgstr ""
28159
28160 #. type: textblock
28161 #: ../fish/guestfish-commands.pod:34
28162 msgid ""
28163 "C<copy-out> copies remote files or directories recursively out of the disk "
28164 "image, placing them on the host disk in a local directory called C<localdir> "
28165 "(which must exist).  This guestfish meta-command turns into a sequence of L</"
28166 "download>, L</tar-out> and other commands as necessary."
28167 msgstr ""
28168
28169 #. type: textblock
28170 #: ../fish/guestfish-commands.pod:40
28171 msgid ""
28172 "Multiple remote files and directories can be specified, but the last "
28173 "parameter must always be a local directory.  To download to the current "
28174 "directory, use C<.> as in:"
28175 msgstr ""
28176
28177 #. type: verbatim
28178 #: ../fish/guestfish-commands.pod:44
28179 #, no-wrap
28180 msgid ""
28181 " copy-out /home .\n"
28182 "\n"
28183 msgstr ""
28184
28185 #. type: textblock
28186 #: ../fish/guestfish-commands.pod:46
28187 msgid ""
28188 "Wildcards cannot be used in the ordinary command, but you can use them with "
28189 "the help of L</glob> like this:"
28190 msgstr ""
28191
28192 #. type: verbatim
28193 #: ../fish/guestfish-commands.pod:49
28194 #, no-wrap
28195 msgid ""
28196 " glob copy-out /home/* .\n"
28197 "\n"
28198 msgstr ""
28199
28200 #. type: =head2
28201 #: ../fish/guestfish-commands.pod:51
28202 msgid "echo"
28203 msgstr ""
28204
28205 #. type: verbatim
28206 #: ../fish/guestfish-commands.pod:53
28207 #, no-wrap
28208 msgid ""
28209 " echo [params ...]\n"
28210 "\n"
28211 msgstr ""
28212
28213 #. type: textblock
28214 #: ../fish/guestfish-commands.pod:55
28215 msgid "This echos the parameters to the terminal."
28216 msgstr ""
28217
28218 #. type: =head2
28219 #: ../fish/guestfish-commands.pod:57
28220 msgid "edit"
28221 msgstr ""
28222
28223 #. type: =head2
28224 #: ../fish/guestfish-commands.pod:59
28225 msgid "vi"
28226 msgstr ""
28227
28228 #. type: =head2
28229 #: ../fish/guestfish-commands.pod:61
28230 msgid "emacs"
28231 msgstr ""
28232
28233 #. type: verbatim
28234 #: ../fish/guestfish-commands.pod:63
28235 #, no-wrap
28236 msgid ""
28237 " edit filename\n"
28238 "\n"
28239 msgstr ""
28240
28241 #. type: textblock
28242 #: ../fish/guestfish-commands.pod:65
28243 msgid ""
28244 "This is used to edit a file.  It downloads the file, edits it locally using "
28245 "your editor, then uploads the result."
28246 msgstr ""
28247
28248 #. type: textblock
28249 #: ../fish/guestfish-commands.pod:68
28250 msgid ""
28251 "The editor is C<$EDITOR>.  However if you use the alternate commands C<vi> "
28252 "or C<emacs> you will get those corresponding editors."
28253 msgstr ""
28254
28255 #. type: =head2
28256 #: ../fish/guestfish-commands.pod:72
28257 msgid "glob"
28258 msgstr ""
28259
28260 #. type: verbatim
28261 #: ../fish/guestfish-commands.pod:74
28262 #, no-wrap
28263 msgid ""
28264 " glob command args...\n"
28265 "\n"
28266 msgstr ""
28267
28268 #. type: textblock
28269 #: ../fish/guestfish-commands.pod:76
28270 msgid ""
28271 "Expand wildcards in any paths in the args list, and run C<command> "
28272 "repeatedly on each matching path."
28273 msgstr ""
28274
28275 #. type: textblock
28276 #: ../fish/guestfish-commands.pod:79
28277 msgid "See L</WILDCARDS AND GLOBBING>."
28278 msgstr ""
28279
28280 #. type: =head2
28281 #: ../fish/guestfish-commands.pod:81
28282 msgid "hexedit"
28283 msgstr ""
28284
28285 #. type: verbatim
28286 #: ../fish/guestfish-commands.pod:83
28287 #, no-wrap
28288 msgid ""
28289 " hexedit <filename|device>\n"
28290 " hexedit <filename|device> <max>\n"
28291 " hexedit <filename|device> <start> <max>\n"
28292 "\n"
28293 msgstr ""
28294
28295 #. type: textblock
28296 #: ../fish/guestfish-commands.pod:87
28297 msgid ""
28298 "Use hexedit (a hex editor) to edit all or part of a binary file or block "
28299 "device."
28300 msgstr ""
28301
28302 #. type: textblock
28303 #: ../fish/guestfish-commands.pod:90
28304 msgid ""
28305 "This command works by downloading potentially the whole file or device, "
28306 "editing it locally, then uploading it.  If the file or device is large, you "
28307 "have to specify which part you wish to edit by using C<max> and/or C<start> "
28308 "C<max> parameters.  C<start> and C<max> are specified in bytes, with the "
28309 "usual modifiers allowed such as C<1M> (1 megabyte)."
28310 msgstr ""
28311
28312 #. type: textblock
28313 #: ../fish/guestfish-commands.pod:97
28314 msgid "For example to edit the first few sectors of a disk you might do:"
28315 msgstr ""
28316
28317 #. type: verbatim
28318 #: ../fish/guestfish-commands.pod:100
28319 #, no-wrap
28320 msgid ""
28321 " hexedit /dev/sda 1M\n"
28322 "\n"
28323 msgstr ""
28324
28325 #. type: textblock
28326 #: ../fish/guestfish-commands.pod:102
28327 msgid ""
28328 "which would allow you to edit anywhere within the first megabyte of the disk."
28329 msgstr ""
28330
28331 #. type: textblock
28332 #: ../fish/guestfish-commands.pod:105
28333 msgid "To edit the superblock of an ext2 filesystem on C</dev/sda1>, do:"
28334 msgstr ""
28335
28336 #. type: verbatim
28337 #: ../fish/guestfish-commands.pod:107
28338 #, no-wrap
28339 msgid ""
28340 " hexedit /dev/sda1 0x400 0x400\n"
28341 "\n"
28342 msgstr ""
28343
28344 #. type: textblock
28345 #: ../fish/guestfish-commands.pod:109
28346 msgid "(assuming the superblock is in the standard location)."
28347 msgstr ""
28348
28349 #. type: textblock
28350 #: ../fish/guestfish-commands.pod:111
28351 msgid ""
28352 "This command requires the external L<hexedit(1)> program.  You can specify "
28353 "another program to use by setting the C<HEXEDITOR> environment variable."
28354 msgstr ""
28355
28356 #. type: textblock
28357 #: ../fish/guestfish-commands.pod:115
28358 msgid "See also L</hexdump>."
28359 msgstr ""
28360
28361 #. type: =head2
28362 #: ../fish/guestfish-commands.pod:117
28363 msgid "lcd"
28364 msgstr ""
28365
28366 #. type: verbatim
28367 #: ../fish/guestfish-commands.pod:119
28368 #, no-wrap
28369 msgid ""
28370 " lcd directory\n"
28371 "\n"
28372 msgstr ""
28373
28374 #. type: textblock
28375 #: ../fish/guestfish-commands.pod:121
28376 msgid ""
28377 "Change the local directory, ie. the current directory of guestfish itself."
28378 msgstr ""
28379
28380 #. type: textblock
28381 #: ../fish/guestfish-commands.pod:124
28382 msgid "Note that C<!cd> won't do what you might expect."
28383 msgstr ""
28384
28385 #. type: =head2
28386 #: ../fish/guestfish-commands.pod:126
28387 msgid "man"
28388 msgstr ""
28389
28390 #. type: =head2
28391 #: ../fish/guestfish-commands.pod:128
28392 msgid "manual"
28393 msgstr ""
28394
28395 #. type: verbatim
28396 #: ../fish/guestfish-commands.pod:130
28397 #, no-wrap
28398 msgid ""
28399 "  man\n"
28400 "\n"
28401 msgstr ""
28402
28403 #. type: textblock
28404 #: ../fish/guestfish-commands.pod:132
28405 msgid "Opens the manual page for guestfish."
28406 msgstr ""
28407
28408 #. type: =head2
28409 #: ../fish/guestfish-commands.pod:134
28410 msgid "more"
28411 msgstr ""
28412
28413 #. type: =head2
28414 #: ../fish/guestfish-commands.pod:136
28415 msgid "less"
28416 msgstr ""
28417
28418 #. type: verbatim
28419 #: ../fish/guestfish-commands.pod:138
28420 #, no-wrap
28421 msgid ""
28422 " more filename\n"
28423 "\n"
28424 msgstr ""
28425
28426 #. type: verbatim
28427 #: ../fish/guestfish-commands.pod:140
28428 #, no-wrap
28429 msgid ""
28430 " less filename\n"
28431 "\n"
28432 msgstr ""
28433
28434 #. type: textblock
28435 #: ../fish/guestfish-commands.pod:142
28436 msgid "This is used to view a file."
28437 msgstr ""
28438
28439 #. type: textblock
28440 #: ../fish/guestfish-commands.pod:144
28441 msgid ""
28442 "The default viewer is C<$PAGER>.  However if you use the alternate command "
28443 "C<less> you will get the C<less> command specifically."
28444 msgstr ""
28445
28446 #. type: =head2
28447 #: ../fish/guestfish-commands.pod:147
28448 msgid "reopen"
28449 msgstr ""
28450
28451 #. type: verbatim
28452 #: ../fish/guestfish-commands.pod:149
28453 #, no-wrap
28454 msgid ""
28455 "  reopen\n"
28456 "\n"
28457 msgstr ""
28458
28459 #. type: textblock
28460 #: ../fish/guestfish-commands.pod:151
28461 msgid ""
28462 "Close and reopen the libguestfs handle.  It is not necessary to use this "
28463 "normally, because the handle is closed properly when guestfish exits.  "
28464 "However this is occasionally useful for testing."
28465 msgstr ""
28466
28467 #. type: =head2
28468 #: ../fish/guestfish-commands.pod:155
28469 msgid "sparse"
28470 msgstr ""
28471
28472 #. type: verbatim
28473 #: ../fish/guestfish-commands.pod:157
28474 #, no-wrap
28475 msgid ""
28476 " sparse filename size\n"
28477 "\n"
28478 msgstr ""
28479
28480 #. type: textblock
28481 #: ../fish/guestfish-commands.pod:159
28482 msgid ""
28483 "This creates an empty sparse file of the given size, and then adds so it can "
28484 "be further examined."
28485 msgstr ""
28486
28487 #. type: textblock
28488 #: ../fish/guestfish-commands.pod:162
28489 msgid ""
28490 "In all respects it works the same as the L</alloc> command, except that the "
28491 "image file is allocated sparsely, which means that disk blocks are not "
28492 "assigned to the file until they are needed.  Sparse disk files only use "
28493 "space when written to, but they are slower and there is a danger you could "
28494 "run out of real disk space during a write operation."
28495 msgstr ""
28496
28497 #. type: =head2
28498 #: ../fish/guestfish-commands.pod:172
28499 msgid "supported"
28500 msgstr ""
28501
28502 #. type: verbatim
28503 #: ../fish/guestfish-commands.pod:174
28504 #, no-wrap
28505 msgid ""
28506 " supported\n"
28507 "\n"
28508 msgstr ""
28509
28510 #. type: textblock
28511 #: ../fish/guestfish-commands.pod:176
28512 msgid ""
28513 "This command returns a list of the optional groups known to the daemon, and "
28514 "indicates which ones are supported by this build of the libguestfs appliance."
28515 msgstr ""
28516
28517 #. type: textblock
28518 #: ../fish/guestfish-commands.pod:180
28519 msgid "See also L<guestfs(3)/AVAILABILITY>."
28520 msgstr ""
28521
28522 #. type: =head2
28523 #: ../fish/guestfish-commands.pod:182
28524 msgid "time"
28525 msgstr ""
28526
28527 #. type: verbatim
28528 #: ../fish/guestfish-commands.pod:184
28529 #, no-wrap
28530 msgid ""
28531 " time command args...\n"
28532 "\n"
28533 msgstr ""
28534
28535 #. type: textblock
28536 #: ../fish/guestfish-commands.pod:186
28537 msgid ""
28538 "Run the command as usual, but print the elapsed time afterwards.  This can "
28539 "be useful for benchmarking operations."
28540 msgstr ""
28541
28542 #. type: textblock
28543 #: ../test-tool/libguestfs-test-tool.pod:5
28544 msgid "libguestfs-test-tool - End user tests for libguestfs"
28545 msgstr ""
28546
28547 #. type: verbatim
28548 #: ../test-tool/libguestfs-test-tool.pod:9
28549 #, no-wrap
28550 msgid ""
28551 " libguestfs-test-tool [--options]\n"
28552 "\n"
28553 msgstr ""
28554
28555 #. type: textblock
28556 #: ../test-tool/libguestfs-test-tool.pod:13
28557 msgid ""
28558 "libguestfs-test-tool is a test program shipped with libguestfs to end users "
28559 "and developers, to allow them to check basic libguestfs functionality is "
28560 "working.  This is needed because libguestfs occasionally breaks for reasons "
28561 "beyond our control: usually because of changes in the underlying qemu or "
28562 "kernel packages, or the host environment."
28563 msgstr ""
28564
28565 #. type: textblock
28566 #: ../test-tool/libguestfs-test-tool.pod:20
28567 msgid "If you suspect a problem in libguestfs, then just run:"
28568 msgstr ""
28569
28570 #. type: verbatim
28571 #: ../test-tool/libguestfs-test-tool.pod:22
28572 #, no-wrap
28573 msgid ""
28574 " libguestfs-test-tool\n"
28575 "\n"
28576 msgstr ""
28577
28578 #. type: textblock
28579 #: ../test-tool/libguestfs-test-tool.pod:24
28580 msgid "It will print lots of diagnostic messages."
28581 msgstr ""
28582
28583 #. type: textblock
28584 #: ../test-tool/libguestfs-test-tool.pod:26
28585 msgid "If it runs to completion successfully, you will see this near the end:"
28586 msgstr ""
28587
28588 #. type: verbatim
28589 #: ../test-tool/libguestfs-test-tool.pod:28
28590 #, no-wrap
28591 msgid ""
28592 " ===== TEST FINISHED OK =====\n"
28593 "\n"
28594 msgstr ""
28595
28596 #. type: textblock
28597 #: ../test-tool/libguestfs-test-tool.pod:30
28598 msgid "and the test tool will exit with code 0."
28599 msgstr ""
28600
28601 #. type: textblock
28602 #: ../test-tool/libguestfs-test-tool.pod:32
28603 msgid ""
28604 "If it fails (and/or exits with non-zero error code), please paste the "
28605 "B<complete, unedited> output of the test tool into a bug report.  More "
28606 "information about reporting bugs can be found on the L<http://libguestfs.org/"
28607 "> website."
28608 msgstr ""
28609
28610 #. type: =item
28611 #: ../test-tool/libguestfs-test-tool.pod:41
28612 msgid "I<--help>"
28613 msgstr ""
28614
28615 #. type: textblock
28616 #: ../test-tool/libguestfs-test-tool.pod:43
28617 msgid "Display short usage information and exit."
28618 msgstr ""
28619
28620 #. type: =item
28621 #: ../test-tool/libguestfs-test-tool.pod:45
28622 msgid "I<--qemu qemu_binary>"
28623 msgstr ""
28624
28625 #. type: textblock
28626 #: ../test-tool/libguestfs-test-tool.pod:47
28627 msgid ""
28628 "If you have downloaded another qemu binary, point this option at the full "
28629 "path of the binary to try it."
28630 msgstr ""
28631
28632 #. type: =item
28633 #: ../test-tool/libguestfs-test-tool.pod:50
28634 msgid "I<--qemudir qemu_source_dir>"
28635 msgstr ""
28636
28637 #. type: textblock
28638 #: ../test-tool/libguestfs-test-tool.pod:52
28639 msgid ""
28640 "If you have compiled qemu from source, point this option at the source "
28641 "directory to try it."
28642 msgstr ""
28643
28644 #. type: =item
28645 #: ../test-tool/libguestfs-test-tool.pod:55
28646 msgid "I<--timeout N>"
28647 msgstr ""
28648
28649 #. type: textblock
28650 #: ../test-tool/libguestfs-test-tool.pod:57
28651 msgid ""
28652 "Set the launch timeout to C<N> seconds.  The default is 120 seconds which "
28653 "does not usually need to be adjusted unless your machine is very slow."
28654 msgstr ""
28655
28656 #. type: =head1
28657 #: ../test-tool/libguestfs-test-tool.pod:63
28658 msgid "TRYING OUT A DIFFERENT VERSION OF QEMU"
28659 msgstr ""
28660
28661 #. type: textblock
28662 #: ../test-tool/libguestfs-test-tool.pod:65
28663 msgid ""
28664 "If you have compiled another version of qemu from source and would like to "
28665 "try that, then you can use the I<--qemudir> option to point to the qemu "
28666 "source directory."
28667 msgstr ""
28668
28669 #. type: textblock
28670 #: ../test-tool/libguestfs-test-tool.pod:69
28671 msgid ""
28672 "If you have downloaded a qemu binary from somewhere, use the I<--qemu> "
28673 "option to point to the binary."
28674 msgstr ""
28675
28676 #. type: textblock
28677 #: ../test-tool/libguestfs-test-tool.pod:72
28678 msgid ""
28679 "When using an alternate qemu with libguestfs, usually you would need to "
28680 "write a qemu wrapper script (see section I<QEMU WRAPPERS> in L<guestfs(3)"
28681 ">).  libguestfs-test-tool writes a temporary qemu wrapper script when you "
28682 "use either of the I<--qemudir> or I<--qemu> options."
28683 msgstr ""
28684
28685 #. type: textblock
28686 #: ../test-tool/libguestfs-test-tool.pod:79
28687 msgid ""
28688 "libguestfs-test-tool returns I<0> if the tests completed without error, or "
28689 "I<1> if there was an error."
28690 msgstr ""
28691
28692 #. type: textblock
28693 #: ../test-tool/libguestfs-test-tool.pod:84
28694 msgid ""
28695 "For the full list of environment variables which may affect libguestfs, "
28696 "please see the L<guestfs(3)> manual page."
28697 msgstr ""
28698
28699 #. type: textblock
28700 #: ../test-tool/libguestfs-test-tool.pod:89
28701 msgid "L<guestfs(3)>, L<http://libguestfs.org/>, L<http://qemu.org/>."
28702 msgstr ""
28703
28704 #. type: textblock
28705 #: ../fuse/guestmount.pod:5
28706 msgid ""
28707 "guestmount - Mount a guest filesystem on the host using FUSE and libguestfs"
28708 msgstr ""
28709
28710 #. type: verbatim
28711 #: ../fuse/guestmount.pod:9
28712 #, no-wrap
28713 msgid ""
28714 " guestmount [--options] -a disk.img -m device [--ro] mountpoint\n"
28715 "\n"
28716 msgstr ""
28717
28718 #. type: verbatim
28719 #: ../fuse/guestmount.pod:11
28720 #, no-wrap
28721 msgid ""
28722 " guestmount [--options] -a disk.img -i [--ro] mountpoint\n"
28723 "\n"
28724 msgstr ""
28725
28726 #. type: verbatim
28727 #: ../fuse/guestmount.pod:13
28728 #, no-wrap
28729 msgid ""
28730 " guestmount [--options] -d Guest -i [--ro] mountpoint\n"
28731 "\n"
28732 msgstr ""
28733
28734 #. type: textblock
28735 #: ../fuse/guestmount.pod:17
28736 msgid ""
28737 "You must I<not> use C<guestmount> in read-write mode on live virtual "
28738 "machines.  If you do this, you risk disk corruption in the VM."
28739 msgstr ""
28740
28741 #. type: textblock
28742 #: ../fuse/guestmount.pod:22
28743 msgid ""
28744 "The guestmount program can be used to mount virtual machine filesystems and "
28745 "other disk images on the host.  It uses libguestfs for access to the guest "
28746 "filesystem, and FUSE (the \"filesystem in userspace\") to make it appear as "
28747 "a mountable device."
28748 msgstr ""
28749
28750 #. type: textblock
28751 #: ../fuse/guestmount.pod:27
28752 msgid ""
28753 "Along with other options, you have to give at least one device (I<-a> "
28754 "option) or libvirt domain (I<-d> option), and at least one mountpoint (I<-m> "
28755 "option) or use the I<-i> inspection option.  How this works is better "
28756 "explained in the L<guestfish(1)> manual page, or by looking at the examples "
28757 "below."
28758 msgstr ""
28759
28760 #. type: textblock
28761 #: ../fuse/guestmount.pod:33
28762 msgid ""
28763 "FUSE lets you mount filesystems as non-root.  The mountpoint must be owned "
28764 "by you, and the filesystem will not be visible to any other users unless you "
28765 "make certain global configuration changes to C</etc/fuse.conf>.  To unmount "
28766 "the filesystem, use the C<fusermount -u> command."
28767 msgstr ""
28768
28769 #. type: textblock
28770 #: ../fuse/guestmount.pod:41
28771 msgid ""
28772 "For a typical Windows guest which has its main filesystem on the first "
28773 "partition:"
28774 msgstr ""
28775
28776 #. type: verbatim
28777 #: ../fuse/guestmount.pod:44
28778 #, no-wrap
28779 msgid ""
28780 " guestmount -a windows.img -m /dev/sda1 --ro /mnt\n"
28781 "\n"
28782 msgstr ""
28783
28784 #. type: textblock
28785 #: ../fuse/guestmount.pod:46
28786 msgid ""
28787 "For a typical Linux guest which has a /boot filesystem on the first "
28788 "partition, and the root filesystem on a logical volume:"
28789 msgstr ""
28790
28791 #. type: verbatim
28792 #: ../fuse/guestmount.pod:49
28793 #, no-wrap
28794 msgid ""
28795 " guestmount -a linux.img -m /dev/VG/LV -m /dev/sda1:/boot --ro /mnt\n"
28796 "\n"
28797 msgstr ""
28798
28799 #. type: textblock
28800 #: ../fuse/guestmount.pod:51
28801 msgid "To get libguestfs to detect guest mountpoints for you:"
28802 msgstr ""
28803
28804 #. type: verbatim
28805 #: ../fuse/guestmount.pod:53
28806 #, no-wrap
28807 msgid ""
28808 " guestmount -a guest.img -i --ro /mnt\n"
28809 "\n"
28810 msgstr ""
28811
28812 #. type: textblock
28813 #: ../fuse/guestmount.pod:55
28814 msgid "For a libvirt guest called \"Guest\" you could do:"
28815 msgstr ""
28816
28817 #. type: verbatim
28818 #: ../fuse/guestmount.pod:57
28819 #, no-wrap
28820 msgid ""
28821 " guestmount -d Guest -i --ro /mnt\n"
28822 "\n"
28823 msgstr ""
28824
28825 #. type: textblock
28826 #: ../fuse/guestmount.pod:59
28827 msgid ""
28828 "If you don't know what filesystems are contained in a guest or disk image, "
28829 "use L<virt-filesystems(1)> first:"
28830 msgstr ""
28831
28832 #. type: verbatim
28833 #: ../fuse/guestmount.pod:62
28834 #, no-wrap
28835 msgid ""
28836 " virt-filesystems MyGuest\n"
28837 "\n"
28838 msgstr ""
28839
28840 #. type: textblock
28841 #: ../fuse/guestmount.pod:64
28842 msgid ""
28843 "If you want to trace the libguestfs calls but without excessive debugging "
28844 "information, we recommend:"
28845 msgstr ""
28846
28847 #. type: verbatim
28848 #: ../fuse/guestmount.pod:67
28849 #, no-wrap
28850 msgid ""
28851 " guestmount [...] --trace /mnt\n"
28852 "\n"
28853 msgstr ""
28854
28855 #. type: textblock
28856 #: ../fuse/guestmount.pod:69
28857 msgid "If you want to debug the program, we recommend:"
28858 msgstr ""
28859
28860 #. type: verbatim
28861 #: ../fuse/guestmount.pod:71
28862 #, no-wrap
28863 msgid ""
28864 " guestmount [...] --trace --verbose /mnt\n"
28865 "\n"
28866 msgstr ""
28867
28868 #. type: =head1
28869 #: ../fuse/guestmount.pod:73
28870 msgid "NOTES"
28871 msgstr ""
28872
28873 #. type: =head2
28874 #: ../fuse/guestmount.pod:75
28875 msgid "Other users cannot see the filesystem by default"
28876 msgstr ""
28877
28878 #. type: textblock
28879 #: ../fuse/guestmount.pod:77
28880 msgid ""
28881 "If you mount a filesystem as one user (eg. root), then other users will not "
28882 "be able to see it by default.  The fix is to add the FUSE C<allow_other> "
28883 "option when mounting:"
28884 msgstr ""
28885
28886 #. type: verbatim
28887 #: ../fuse/guestmount.pod:81
28888 #, no-wrap
28889 msgid ""
28890 " sudo guestmount [...] -o allow_other /mnt\n"
28891 "\n"
28892 msgstr ""
28893
28894 #. type: =item
28895 #: ../fuse/guestmount.pod:87
28896 msgid "B<-a image> | B<--add image>"
28897 msgstr ""
28898
28899 #. type: textblock
28900 #: ../fuse/guestmount.pod:89
28901 msgid "Add a block device or virtual machine image."
28902 msgstr ""
28903
28904 #. type: =item
28905 #: ../fuse/guestmount.pod:94
28906 msgid "B<-c URI> | B<--connect URI>"
28907 msgstr ""
28908
28909 #. type: =item
28910 #: ../fuse/guestmount.pod:100
28911 msgid "B<-d libvirt-domain> | B<--domain libvirt-domain>"
28912 msgstr ""
28913
28914 #. type: =item
28915 #: ../fuse/guestmount.pod:106
28916 msgid "B<--dir-cache-timeout N>"
28917 msgstr ""
28918
28919 #. type: textblock
28920 #: ../fuse/guestmount.pod:108
28921 msgid ""
28922 "Set the readdir cache timeout to I<N> seconds, the default being 60 "
28923 "seconds.  The readdir cache [actually, there are several semi-independent "
28924 "caches] is populated after a readdir(2) call with the stat and extended "
28925 "attributes of the files in the directory, in anticipation that they will be "
28926 "requested soon after."
28927 msgstr ""
28928
28929 #. type: textblock
28930 #: ../fuse/guestmount.pod:114
28931 msgid ""
28932 "There is also a different attribute cache implemented by FUSE (see the FUSE "
28933 "option I<-o attr_timeout>), but the FUSE cache does not anticipate future "
28934 "requests, only cache existing ones."
28935 msgstr ""
28936
28937 #. type: =item
28938 #: ../fuse/guestmount.pod:125
28939 msgid "B<--format=raw|qcow2|..> | B<--format>"
28940 msgstr ""
28941
28942 #. type: textblock
28943 #: ../fuse/guestmount.pod:132
28944 msgid ""
28945 "If you have untrusted raw-format guest disk images, you should use this "
28946 "option to specify the disk format.  This avoids a possible security problem "
28947 "with malicious guests (CVE-2010-3851).  See also L<guestfs(3)/"
28948 "guestfs_add_drive_opts>."
28949 msgstr ""
28950
28951 #. type: =item
28952 #: ../fuse/guestmount.pod:137
28953 msgid "B<--fuse-help>"
28954 msgstr ""
28955
28956 #. type: textblock
28957 #: ../fuse/guestmount.pod:139
28958 msgid "Display help on special FUSE options (see I<-o> below)."
28959 msgstr ""
28960
28961 #. type: textblock
28962 #: ../fuse/guestmount.pod:143
28963 msgid "Display brief help and exit."
28964 msgstr ""
28965
28966 #. type: =item
28967 #: ../fuse/guestmount.pod:145
28968 msgid "B<-i> | B<--inspector>"
28969 msgstr ""
28970
28971 #. type: textblock
28972 #: ../fuse/guestmount.pod:165
28973 msgid ""
28974 "Mount the named partition or logical volume on the given mountpoint B<in the "
28975 "guest> (this has nothing to do with mountpoints in the host)."
28976 msgstr ""
28977
28978 #. type: textblock
28979 #: ../fuse/guestmount.pod:168
28980 msgid ""
28981 "If the mountpoint is omitted, it defaults to C</>.  You have to mount "
28982 "something on C</>."
28983 msgstr ""
28984
28985 #. type: =item
28986 #: ../fuse/guestmount.pod:181
28987 msgid "B<-n> | B<--no-sync>"
28988 msgstr ""
28989
28990 #. type: textblock
28991 #: ../fuse/guestmount.pod:183
28992 msgid ""
28993 "By default, we attempt to sync the guest disk when the FUSE mountpoint is "
28994 "unmounted.  If you specify this option, then we don't attempt to sync the "
28995 "disk.  See the discussion of autosync in the L<guestfs(3)> manpage."
28996 msgstr ""
28997
28998 #. type: =item
28999 #: ../fuse/guestmount.pod:188
29000 msgid "B<-o option> | B<--option option>"
29001 msgstr ""
29002
29003 #. type: textblock
29004 #: ../fuse/guestmount.pod:190
29005 msgid "Pass extra options to FUSE."
29006 msgstr ""
29007
29008 #. type: textblock
29009 #: ../fuse/guestmount.pod:192
29010 msgid ""
29011 "To get a list of all the extra options supported by FUSE, use the command "
29012 "below.  Note that only the FUSE I<-o> options can be passed, and only some "
29013 "of them are a good idea."
29014 msgstr ""
29015
29016 #. type: verbatim
29017 #: ../fuse/guestmount.pod:196
29018 #, no-wrap
29019 msgid ""
29020 " guestmount --fuse-help\n"
29021 "\n"
29022 msgstr ""
29023
29024 #. type: textblock
29025 #: ../fuse/guestmount.pod:198
29026 msgid "Some potentially useful FUSE options:"
29027 msgstr ""
29028
29029 #. type: =item
29030 #: ../fuse/guestmount.pod:202
29031 msgid "B<-o allow_other>"
29032 msgstr ""
29033
29034 #. type: textblock
29035 #: ../fuse/guestmount.pod:204
29036 msgid "Allow other users to see the filesystem."
29037 msgstr ""
29038
29039 #. type: =item
29040 #: ../fuse/guestmount.pod:206
29041 msgid "B<-o attr_timeout=N>"
29042 msgstr ""
29043
29044 #. type: textblock
29045 #: ../fuse/guestmount.pod:208
29046 msgid "Enable attribute caching by FUSE, and set the timeout to I<N> seconds."
29047 msgstr ""
29048
29049 #. type: =item
29050 #: ../fuse/guestmount.pod:210
29051 msgid "B<-o kernel_cache>"
29052 msgstr ""
29053
29054 #. type: textblock
29055 #: ../fuse/guestmount.pod:212
29056 msgid ""
29057 "Allow the kernel to cache files (reduces the number of reads that have to go "
29058 "through the L<guestfs(3)> API).  This is generally a good idea if you can "
29059 "afford the extra memory usage."
29060 msgstr ""
29061
29062 #. type: =item
29063 #: ../fuse/guestmount.pod:216
29064 msgid "B<-o uid=N> B<-o gid=N>"
29065 msgstr ""
29066
29067 #. type: textblock
29068 #: ../fuse/guestmount.pod:218
29069 msgid ""
29070 "Use these options to map all UIDs and GIDs inside the guest filesystem to "
29071 "the chosen values."
29072 msgstr ""
29073
29074 #. type: =item
29075 #: ../fuse/guestmount.pod:223
29076 msgid "B<-r> | B<--ro>"
29077 msgstr ""
29078
29079 #. type: textblock
29080 #: ../fuse/guestmount.pod:225
29081 msgid ""
29082 "Add devices and mount everything read-only.  Also disallow writes and make "
29083 "the disk appear read-only to FUSE."
29084 msgstr ""
29085
29086 #. type: textblock
29087 #: ../fuse/guestmount.pod:228
29088 msgid ""
29089 "This is highly recommended if you are not going to edit the guest disk.  If "
29090 "the guest is running and this option is I<not> supplied, then there is a "
29091 "strong risk of disk corruption in the guest.  We try to prevent this from "
29092 "happening, but it is not always possible."
29093 msgstr ""
29094
29095 #. type: textblock
29096 #: ../fuse/guestmount.pod:233
29097 msgid "See also L<guestfish(1)/OPENING DISKS FOR READ AND WRITE>."
29098 msgstr ""
29099
29100 #. type: textblock
29101 #: ../fuse/guestmount.pod:237
29102 msgid "Enable SELinux support for the guest."
29103 msgstr ""
29104
29105 #. type: =item
29106 #: ../fuse/guestmount.pod:239
29107 msgid "B<-v> | B<--verbose>"
29108 msgstr ""
29109
29110 #. type: textblock
29111 #: ../fuse/guestmount.pod:241
29112 msgid "Enable verbose messages from underlying libguestfs."
29113 msgstr ""
29114
29115 #. type: =item
29116 #: ../fuse/guestmount.pod:243
29117 msgid "B<-V> | B<--version>"
29118 msgstr ""
29119
29120 #. type: textblock
29121 #: ../fuse/guestmount.pod:245
29122 msgid "Display the program version and exit."
29123 msgstr ""
29124
29125 #. type: =item
29126 #: ../fuse/guestmount.pod:247
29127 msgid "B<-w> | B<--rw>"
29128 msgstr ""
29129
29130 #. type: textblock
29131 #: ../fuse/guestmount.pod:252 ../fuse/guestmount.pod:273
29132 msgid "See L<guestfish(1)/OPENING DISKS FOR READ AND WRITE>."
29133 msgstr ""
29134
29135 #. type: =item
29136 #: ../fuse/guestmount.pod:254
29137 msgid "B<-x> | B<--trace>"
29138 msgstr ""
29139
29140 #. type: textblock
29141 #: ../fuse/guestmount.pod:256
29142 msgid "Trace libguestfs calls and entry into each FUSE function."
29143 msgstr ""
29144
29145 #. type: textblock
29146 #: ../fuse/guestmount.pod:258
29147 msgid "This also stops the daemon from forking into the background."
29148 msgstr ""
29149
29150 #. type: textblock
29151 #: ../fuse/guestmount.pod:279
29152 msgid ""
29153 "L<guestfish(1)>, L<virt-inspector(1)>, L<virt-cat(1)>, L<virt-edit(1)>, "
29154 "L<virt-tar(1)>, L<guestfs(3)>, L<http://libguestfs.org/>, L<http://fuse.sf."
29155 "net/>."
29156 msgstr ""
29157
29158 #. type: textblock
29159 #: ../fuse/guestmount.pod:294
29160 msgid "Copyright (C) 2009-2010 Red Hat Inc.  L<http://libguestfs.org/>"
29161 msgstr ""
29162
29163 #. type: textblock
29164 #: ../tools/virt-edit.pl:34
29165 msgid "virt-edit - Edit a file in a virtual machine"
29166 msgstr ""
29167
29168 #. type: verbatim
29169 #: ../tools/virt-edit.pl:38
29170 #, no-wrap
29171 msgid ""
29172 " virt-edit [--options] domname file\n"
29173 "\n"
29174 msgstr ""
29175
29176 #. type: verbatim
29177 #: ../tools/virt-edit.pl:40
29178 #, no-wrap
29179 msgid ""
29180 " virt-edit [--options] disk.img [disk.img ...] file\n"
29181 "\n"
29182 msgstr ""
29183
29184 #. type: verbatim
29185 #: ../tools/virt-edit.pl:42
29186 #, no-wrap
29187 msgid ""
29188 " virt-edit [domname|disk.img] file -e 'expr'\n"
29189 "\n"
29190 msgstr ""
29191
29192 #. type: textblock
29193 #: ../tools/virt-edit.pl:46
29194 msgid ""
29195 "You must I<not> use C<virt-edit> on live virtual machines.  If you do this, "
29196 "you risk disk corruption in the VM.  C<virt-edit> tries to stop you from "
29197 "doing this, but doesn't catch all cases."
29198 msgstr ""
29199
29200 #. type: textblock
29201 #: ../tools/virt-edit.pl:52
29202 msgid ""
29203 "C<virt-edit> is a command line tool to edit C<file> where C<file> exists in "
29204 "the named virtual machine (or disk image)."
29205 msgstr ""
29206
29207 #. type: textblock
29208 #: ../tools/virt-edit.pl:55
29209 msgid "If you want to just view a file, use L<virt-cat(1)>."
29210 msgstr ""
29211
29212 #. type: textblock
29213 #: ../tools/virt-edit.pl:57
29214 msgid ""
29215 "For more complex cases you should look at the L<guestfish(1)> tool (see L</"
29216 "USING GUESTFISH> below)."
29217 msgstr ""
29218
29219 #. type: textblock
29220 #: ../tools/virt-edit.pl:60
29221 msgid ""
29222 "C<virt-edit> cannot be used to create a new file, nor to edit multiple "
29223 "files.  L<guestfish(1)> can do that and much more."
29224 msgstr ""
29225
29226 #. type: textblock
29227 #: ../tools/virt-edit.pl:65
29228 msgid "Edit the named files interactively:"
29229 msgstr ""
29230
29231 #. type: verbatim
29232 #: ../tools/virt-edit.pl:67
29233 #, no-wrap
29234 msgid ""
29235 " virt-edit mydomain /boot/grub/grub.conf\n"
29236 "\n"
29237 msgstr ""
29238
29239 #. type: verbatim
29240 #: ../tools/virt-edit.pl:69
29241 #, no-wrap
29242 msgid ""
29243 " virt-edit mydomain /etc/passwd\n"
29244 "\n"
29245 msgstr ""
29246
29247 #. type: textblock
29248 #: ../tools/virt-edit.pl:71
29249 msgid "For Windows guests, some Windows paths are understood:"
29250 msgstr ""
29251
29252 #. type: verbatim
29253 #: ../tools/virt-edit.pl:73
29254 #, no-wrap
29255 msgid ""
29256 " virt-edit mywindomain 'c:\\autoexec.bat'\n"
29257 "\n"
29258 msgstr ""
29259
29260 #. type: textblock
29261 #: ../tools/virt-edit.pl:75
29262 msgid ""
29263 "You can also edit files non-interactively (see L</NON-INTERACTIVE EDITING> "
29264 "below).  To change the init default level to 5:"
29265 msgstr ""
29266
29267 #. type: verbatim
29268 #: ../tools/virt-edit.pl:79
29269 #, no-wrap
29270 msgid ""
29271 " virt-edit mydomain /etc/inittab -e 's/^id:.*/id:5:initdefault:/'\n"
29272 "\n"
29273 msgstr ""
29274
29275 #. type: textblock
29276 #: ../tools/virt-edit.pl:91 ../tools/virt-win-reg.pl:106
29277 #: ../tools/virt-list-filesystems.pl:63 ../tools/virt-tar.pl:113
29278 #: ../tools/virt-make-fs.pl:163 ../tools/virt-list-partitions.pl:64
29279 msgid "Display brief help."
29280 msgstr ""
29281
29282 #. type: textblock
29283 #: ../tools/virt-edit.pl:99 ../tools/virt-win-reg.pl:114
29284 #: ../tools/virt-list-filesystems.pl:71 ../tools/virt-tar.pl:121
29285 #: ../tools/virt-make-fs.pl:171 ../tools/virt-list-partitions.pl:72
29286 msgid "Display version number and exit."
29287 msgstr ""
29288
29289 #. type: =item
29290 #: ../tools/virt-edit.pl:105
29291 msgid "B<--backup extension> | B<-b extension>"
29292 msgstr ""
29293
29294 #. type: textblock
29295 #: ../tools/virt-edit.pl:107
29296 msgid ""
29297 "Create a backup of the original file I<in the guest disk image>.  The backup "
29298 "has the original filename with C<extension> added."
29299 msgstr ""
29300
29301 #. type: textblock
29302 #: ../tools/virt-edit.pl:110
29303 msgid ""
29304 "Usually the first character of C<extension> would be a dot C<.> so you would "
29305 "write:"
29306 msgstr ""
29307
29308 #. type: verbatim
29309 #: ../tools/virt-edit.pl:113
29310 #, no-wrap
29311 msgid ""
29312 " virt-edit -b .orig [etc]\n"
29313 "\n"
29314 msgstr ""
29315
29316 #. type: textblock
29317 #: ../tools/virt-edit.pl:115
29318 msgid "By default, no backup file is made."
29319 msgstr ""
29320
29321 #. type: =item
29322 #: ../tools/virt-edit.pl:121 ../tools/virt-win-reg.pl:128
29323 #: ../tools/virt-list-filesystems.pl:77 ../tools/virt-tar.pl:127
29324 #: ../tools/virt-list-partitions.pl:78
29325 msgid "B<--connect URI> | B<-c URI>"
29326 msgstr ""
29327
29328 #. type: textblock
29329 #: ../tools/virt-edit.pl:123 ../tools/virt-win-reg.pl:130
29330 #: ../tools/virt-list-filesystems.pl:79 ../tools/virt-tar.pl:129
29331 #: ../tools/virt-list-partitions.pl:80
29332 msgid ""
29333 "If using libvirt, connect to the given I<URI>.  If omitted, then we connect "
29334 "to the default libvirt hypervisor."
29335 msgstr ""
29336
29337 #. type: textblock
29338 #: ../tools/virt-edit.pl:126 ../tools/virt-win-reg.pl:133
29339 #: ../tools/virt-list-filesystems.pl:82 ../tools/virt-tar.pl:132
29340 #: ../tools/virt-list-partitions.pl:83
29341 msgid ""
29342 "If you specify guest block devices directly, then libvirt is not used at all."
29343 msgstr ""
29344
29345 #. type: =item
29346 #: ../tools/virt-edit.pl:133 ../tools/virt-win-reg.pl:140
29347 #: ../tools/virt-list-filesystems.pl:89 ../tools/virt-tar.pl:139
29348 #: ../tools/virt-list-partitions.pl:90
29349 msgid "B<--format> raw"
29350 msgstr ""
29351
29352 #. type: textblock
29353 #: ../tools/virt-edit.pl:135 ../tools/virt-win-reg.pl:142
29354 #: ../tools/virt-list-filesystems.pl:91 ../tools/virt-tar.pl:141
29355 #: ../tools/virt-list-partitions.pl:92
29356 msgid ""
29357 "Specify the format of disk images given on the command line.  If this is "
29358 "omitted then the format is autodetected from the content of the disk image."
29359 msgstr ""
29360
29361 #. type: textblock
29362 #: ../tools/virt-edit.pl:139 ../tools/virt-win-reg.pl:146
29363 #: ../tools/virt-list-filesystems.pl:95 ../tools/virt-tar.pl:145
29364 #: ../tools/virt-list-partitions.pl:96
29365 msgid ""
29366 "If disk images are requested from libvirt, then this program asks libvirt "
29367 "for this information.  In this case, the value of the format parameter is "
29368 "ignored."
29369 msgstr ""
29370
29371 #. type: textblock
29372 #: ../tools/virt-edit.pl:143 ../tools/virt-win-reg.pl:150
29373 #: ../tools/virt-list-filesystems.pl:99 ../tools/virt-tar.pl:149
29374 #: ../tools/virt-list-partitions.pl:100
29375 msgid ""
29376 "If working with untrusted raw-format guest disk images, you should ensure "
29377 "the format is always specified."
29378 msgstr ""
29379
29380 #. type: =item
29381 #: ../tools/virt-edit.pl:150
29382 msgid "B<--expr EXPR> | B<-e EXPR>"
29383 msgstr ""
29384
29385 #. type: textblock
29386 #: ../tools/virt-edit.pl:152
29387 msgid ""
29388 "Instead of launching the external editor, non-interactively apply the Perl "
29389 "expression C<EXPR> to each line in the file.  See L</NON-INTERACTIVE "
29390 "EDITING> below."
29391 msgstr ""
29392
29393 #. type: textblock
29394 #: ../tools/virt-edit.pl:156
29395 msgid ""
29396 "Be careful to properly quote the expression to prevent it from being altered "
29397 "by the shell."
29398 msgstr ""
29399
29400 #. type: =head1
29401 #: ../tools/virt-edit.pl:280
29402 msgid "NON-INTERACTIVE EDITING"
29403 msgstr ""
29404
29405 #. type: textblock
29406 #: ../tools/virt-edit.pl:282
29407 msgid ""
29408 "C<virt-edit> normally calls out to C<$EDITOR> (or vi) so the system "
29409 "administrator can interactively edit the file."
29410 msgstr ""
29411
29412 #. type: textblock
29413 #: ../tools/virt-edit.pl:285
29414 msgid ""
29415 "There are two ways also to use C<virt-edit> from scripts in order to make "
29416 "automated edits to files.  (Note that although you I<can> use C<virt-edit> "
29417 "like this, it's less error-prone to write scripts directly using the "
29418 "libguestfs API and Augeas for configuration file editing.)"
29419 msgstr ""
29420
29421 #. type: textblock
29422 #: ../tools/virt-edit.pl:291
29423 msgid ""
29424 "The first method is to temporarily set C<$EDITOR> to any script or program "
29425 "you want to run.  The script is invoked as C<$EDITOR tmpfile> and it should "
29426 "update C<tmpfile> in place however it likes."
29427 msgstr ""
29428
29429 #. type: textblock
29430 #: ../tools/virt-edit.pl:295
29431 msgid ""
29432 "The second method is to use the I<-e> parameter of C<virt-edit> to run a "
29433 "short Perl snippet in the style of L<sed(1)>.  For example to replace all "
29434 "instances of C<foo> with C<bar> in a file:"
29435 msgstr ""
29436
29437 #. type: verbatim
29438 #: ../tools/virt-edit.pl:299
29439 #, no-wrap
29440 msgid ""
29441 " virt-edit domname filename -e 's/foo/bar/'\n"
29442 "\n"
29443 msgstr ""
29444
29445 #. type: textblock
29446 #: ../tools/virt-edit.pl:301
29447 msgid ""
29448 "The full power of Perl regular expressions can be used (see L<perlre(1)>).  "
29449 "For example to delete root's password you could do:"
29450 msgstr ""
29451
29452 #. type: verbatim
29453 #: ../tools/virt-edit.pl:304
29454 #, no-wrap
29455 msgid ""
29456 " virt-edit domname /etc/passwd -e 's/^root:.*?:/root::/'\n"
29457 "\n"
29458 msgstr ""
29459
29460 #. type: textblock
29461 #: ../tools/virt-edit.pl:306
29462 msgid ""
29463 "What really happens is that the snippet is evaluated as a Perl expression "
29464 "for each line of the file.  The line, including the final C<\\n>, is passed "
29465 "in C<$_> and the expression should update C<$_> or leave it unchanged."
29466 msgstr ""
29467
29468 #. type: textblock
29469 #: ../tools/virt-edit.pl:311
29470 msgid ""
29471 "To delete a line, set C<$_> to the empty string.  For example, to delete the "
29472 "C<apache> user account from the password file you can do:"
29473 msgstr ""
29474
29475 #. type: verbatim
29476 #: ../tools/virt-edit.pl:314
29477 #, no-wrap
29478 msgid ""
29479 " virt-edit mydomain /etc/passwd -e '$_ = \"\" if /^apache:/'\n"
29480 "\n"
29481 msgstr ""
29482
29483 #. type: textblock
29484 #: ../tools/virt-edit.pl:316
29485 msgid ""
29486 "To insert a line, prepend or append it to C<$_>.  However appending lines to "
29487 "the end of the file is rather difficult this way since there is no concept "
29488 "of \"last line of the file\" - your expression just doesn't get called "
29489 "again.  You might want to use the first method (setting C<$EDITOR>) if you "
29490 "want to do this."
29491 msgstr ""
29492
29493 #. type: textblock
29494 #: ../tools/virt-edit.pl:322
29495 msgid ""
29496 "The variable C<$lineno> contains the current line number.  As is "
29497 "traditional, the first line in the file is number C<1>."
29498 msgstr ""
29499
29500 #. type: textblock
29501 #: ../tools/virt-edit.pl:325
29502 msgid ""
29503 "The return value from the expression is ignored, but the expression may call "
29504 "C<die> in order to abort the whole program, leaving the original file "
29505 "untouched."
29506 msgstr ""
29507
29508 #. type: textblock
29509 #: ../tools/virt-edit.pl:329
29510 msgid ""
29511 "Remember when matching the end of a line that C<$_> may contain the final C<"
29512 "\\n>, or (for DOS files) C<\\r\\n>, or if the file does not end with a "
29513 "newline then neither of these.  Thus to match or substitute some text at the "
29514 "end of a line, use this regular expression:"
29515 msgstr ""
29516
29517 #. type: verbatim
29518 #: ../tools/virt-edit.pl:334
29519 #, no-wrap
29520 msgid ""
29521 " /some text(\\r?\\n)?$/\n"
29522 "\n"
29523 msgstr ""
29524
29525 #. type: textblock
29526 #: ../tools/virt-edit.pl:336
29527 msgid ""
29528 "Alternately, use the perl C<chomp> function, being careful not to chomp C<"
29529 "$_> itself (since that would remove all newlines from the file):"
29530 msgstr ""
29531
29532 #. type: verbatim
29533 #: ../tools/virt-edit.pl:340
29534 #, no-wrap
29535 msgid ""
29536 " my $m = $_; chomp $m; $m =~ /some text$/\n"
29537 "\n"
29538 msgstr ""
29539
29540 #. type: textblock
29541 #: ../tools/virt-edit.pl:344
29542 msgid ""
29543 "C<virt-edit> has a limited ability to understand Windows drive letters and "
29544 "paths (eg. C<E:\\foo\\bar.txt>)."
29545 msgstr ""
29546
29547 #. type: textblock
29548 #: ../tools/virt-edit.pl:347
29549 msgid "If and only if the guest is running Windows then:"
29550 msgstr ""
29551
29552 #. type: textblock
29553 #: ../tools/virt-edit.pl:353
29554 msgid ""
29555 "Drive letter prefixes like C<C:> are resolved against the Windows Registry "
29556 "to the correct filesystem."
29557 msgstr ""
29558
29559 #. type: textblock
29560 #: ../tools/virt-edit.pl:358
29561 msgid ""
29562 "Any backslash (C<\\>) characters in the path are replaced with forward "
29563 "slashes so that libguestfs can process it."
29564 msgstr ""
29565
29566 #. type: textblock
29567 #: ../tools/virt-edit.pl:363
29568 msgid ""
29569 "The path is resolved case insensitively to locate the file that should be "
29570 "edited."
29571 msgstr ""
29572
29573 #. type: textblock
29574 #: ../tools/virt-edit.pl:368
29575 msgid "There are some known shortcomings:"
29576 msgstr ""
29577
29578 #. type: textblock
29579 #: ../tools/virt-edit.pl:374
29580 msgid "Some NTFS symbolic links may not be followed correctly."
29581 msgstr ""
29582
29583 #. type: textblock
29584 #: ../tools/virt-edit.pl:378
29585 msgid "NTFS junction points that cross filesystems are not followed."
29586 msgstr ""
29587
29588 #. type: =head1
29589 #: ../tools/virt-edit.pl:435
29590 msgid "USING GUESTFISH"
29591 msgstr ""
29592
29593 #. type: textblock
29594 #: ../tools/virt-edit.pl:437
29595 msgid ""
29596 "L<guestfish(1)> is a more powerful, lower level tool which you can use when "
29597 "C<virt-edit> doesn't work."
29598 msgstr ""
29599
29600 #. type: textblock
29601 #: ../tools/virt-edit.pl:440
29602 msgid "Using C<virt-edit> is approximately equivalent to doing:"
29603 msgstr ""
29604
29605 #. type: verbatim
29606 #: ../tools/virt-edit.pl:442
29607 #, no-wrap
29608 msgid ""
29609 " guestfish --rw -i -d domname edit /file\n"
29610 "\n"
29611 msgstr ""
29612
29613 #. type: textblock
29614 #: ../tools/virt-edit.pl:444
29615 msgid ""
29616 "where C<domname> is the name of the libvirt guest, and C</file> is the full "
29617 "path to the file."
29618 msgstr ""
29619
29620 #. type: textblock
29621 #: ../tools/virt-edit.pl:447
29622 msgid ""
29623 "The command above uses libguestfs's guest inspection feature and so does not "
29624 "work on guests that libguestfs cannot inspect, or on things like arbitrary "
29625 "disk images that don't contain guests.  To edit a file on a disk image "
29626 "directly, use:"
29627 msgstr ""
29628
29629 #. type: verbatim
29630 #: ../tools/virt-edit.pl:452
29631 #, no-wrap
29632 msgid ""
29633 " guestfish --rw -a disk.img -m /dev/sda1 edit /file\n"
29634 "\n"
29635 msgstr ""
29636
29637 #. type: textblock
29638 #: ../tools/virt-edit.pl:454
29639 msgid ""
29640 "where C<disk.img> is the disk image, C</dev/sda1> is the filesystem within "
29641 "the disk image to edit, and C</file> is the full path to the file."
29642 msgstr ""
29643
29644 #. type: textblock
29645 #: ../tools/virt-edit.pl:458
29646 msgid ""
29647 "C<virt-edit> cannot create new files.  Use the guestfish commands C<touch>, "
29648 "C<write> or C<upload> instead:"
29649 msgstr ""
29650
29651 #. type: verbatim
29652 #: ../tools/virt-edit.pl:461
29653 #, no-wrap
29654 msgid ""
29655 " guestfish --rw -i -d domname touch /newfile\n"
29656 "\n"
29657 msgstr ""
29658
29659 #. type: verbatim
29660 #: ../tools/virt-edit.pl:463
29661 #, no-wrap
29662 msgid ""
29663 " guestfish --rw -i -d domname write /newfile \"new content\"\n"
29664 "\n"
29665 msgstr ""
29666
29667 #. type: verbatim
29668 #: ../tools/virt-edit.pl:465
29669 #, no-wrap
29670 msgid ""
29671 " guestfish --rw -i -d domname upload localfile /newfile\n"
29672 "\n"
29673 msgstr ""
29674
29675 #. type: textblock
29676 #: ../tools/virt-edit.pl:467
29677 msgid ""
29678 "C<virt-edit> cannot edit multiple files, but guestfish can do it like this:"
29679 msgstr ""
29680
29681 #. type: verbatim
29682 #: ../tools/virt-edit.pl:470
29683 #, no-wrap
29684 msgid ""
29685 " guestfish --rw -i -d domname edit /file1 : edit /file2\n"
29686 "\n"
29687 msgstr ""
29688
29689 #. type: =item
29690 #: ../tools/virt-edit.pl:480
29691 msgid "C<EDITOR>"
29692 msgstr ""
29693
29694 #. type: textblock
29695 #: ../tools/virt-edit.pl:482
29696 msgid ""
29697 "If set, this string is used as the editor.  It may contain arguments, eg. C<"
29698 "\"emacs -nw\">"
29699 msgstr ""
29700
29701 #. type: textblock
29702 #: ../tools/virt-edit.pl:485
29703 msgid "If not set, C<vi> is used."
29704 msgstr ""
29705
29706 #. type: =head1
29707 #: ../tools/virt-edit.pl:489 ../tools/virt-win-reg.pl:559
29708 #: ../tools/virt-list-filesystems.pl:182 ../tools/virt-tar.pl:279
29709 #: ../tools/virt-make-fs.pl:532 ../tools/virt-list-partitions.pl:250
29710 msgid "SHELL QUOTING"
29711 msgstr ""
29712
29713 #. type: textblock
29714 #: ../tools/virt-edit.pl:491 ../tools/virt-win-reg.pl:567
29715 #: ../tools/virt-list-filesystems.pl:184 ../tools/virt-tar.pl:281
29716 #: ../tools/virt-make-fs.pl:534 ../tools/virt-list-partitions.pl:252
29717 msgid ""
29718 "Libvirt guest names can contain arbitrary characters, some of which have "
29719 "meaning to the shell such as C<#> and space.  You may need to quote or "
29720 "escape these characters on the command line.  See the shell manual page L<sh"
29721 "(1)> for details."
29722 msgstr ""
29723
29724 #. type: textblock
29725 #: ../tools/virt-edit.pl:498
29726 msgid ""
29727 "L<guestfs(3)>, L<guestfish(1)>, L<virt-cat(1)>, L<virt-copy-in(1)>, L<virt-"
29728 "tar-in(1)>, L<Sys::Guestfs(3)>, L<Sys::Guestfs::Lib(3)>, L<Sys::Virt(3)>, "
29729 "L<http://libguestfs.org/>, L<perl(1)>, L<perlre(1)>."
29730 msgstr ""
29731
29732 #. type: =head1
29733 #: ../tools/virt-edit.pl:510 ../tools/virt-win-reg.pl:598
29734 #: ../tools/virt-list-filesystems.pl:202 ../tools/virt-tar.pl:301
29735 #: ../tools/virt-make-fs.pl:564 ../tools/virt-list-partitions.pl:269
29736 msgid "AUTHOR"
29737 msgstr ""
29738
29739 #. type: textblock
29740 #: ../tools/virt-edit.pl:512 ../tools/virt-win-reg.pl:600
29741 #: ../tools/virt-list-filesystems.pl:204 ../tools/virt-tar.pl:303
29742 #: ../tools/virt-make-fs.pl:566 ../tools/virt-list-partitions.pl:271
29743 msgid "Richard W.M. Jones L<http://people.redhat.com/~rjones/>"
29744 msgstr ""
29745
29746 #. type: textblock
29747 #: ../tools/virt-edit.pl:516
29748 msgid "Copyright (C) 2009-2011 Red Hat Inc."
29749 msgstr ""
29750
29751 #. type: textblock
29752 #: ../tools/virt-win-reg.pl:37
29753 msgid ""
29754 "virt-win-reg - Export and merge Windows Registry entries from a Windows guest"
29755 msgstr ""
29756
29757 #. type: verbatim
29758 #: ../tools/virt-win-reg.pl:41
29759 #, no-wrap
29760 msgid ""
29761 " virt-win-reg domname 'HKLM\\Path\\To\\Subkey'\n"
29762 "\n"
29763 msgstr ""
29764
29765 #. type: verbatim
29766 #: ../tools/virt-win-reg.pl:43
29767 #, no-wrap
29768 msgid ""
29769 " virt-win-reg domname 'HKLM\\Path\\To\\Subkey' name\n"
29770 "\n"
29771 msgstr ""
29772
29773 #. type: verbatim
29774 #: ../tools/virt-win-reg.pl:45
29775 #, no-wrap
29776 msgid ""
29777 " virt-win-reg domname 'HKLM\\Path\\To\\Subkey' @\n"
29778 "\n"
29779 msgstr ""
29780
29781 #. type: verbatim
29782 #: ../tools/virt-win-reg.pl:47
29783 #, no-wrap
29784 msgid ""
29785 " virt-win-reg --merge domname [input.reg ...]\n"
29786 "\n"
29787 msgstr ""
29788
29789 #. type: verbatim
29790 #: ../tools/virt-win-reg.pl:49
29791 #, no-wrap
29792 msgid ""
29793 " virt-win-reg [--options] disk.img ... # instead of domname\n"
29794 "\n"
29795 msgstr ""
29796
29797 #. type: textblock
29798 #: ../tools/virt-win-reg.pl:53
29799 msgid ""
29800 "You must I<not> use C<virt-win-reg> with the I<--merge> option on live "
29801 "virtual machines.  If you do this, you I<will> get irreversible disk "
29802 "corruption in the VM.  C<virt-win-reg> tries to stop you from doing this, "
29803 "but doesn't catch all cases."
29804 msgstr ""
29805
29806 #. type: textblock
29807 #: ../tools/virt-win-reg.pl:58
29808 msgid ""
29809 "Modifying the Windows Registry is an inherently risky operation.  The format "
29810 "is deliberately obscure and undocumented, and Registry changes can leave the "
29811 "system unbootable.  Therefore when using the I<--merge> option, make sure "
29812 "you have a reliable backup first."
29813 msgstr ""
29814
29815 #. type: textblock
29816 #: ../tools/virt-win-reg.pl:65
29817 msgid ""
29818 "This program can export and merge Windows Registry entries from a Windows "
29819 "guest."
29820 msgstr ""
29821
29822 #. type: textblock
29823 #: ../tools/virt-win-reg.pl:68
29824 msgid ""
29825 "The first parameter is the libvirt guest name or the raw disk image of a "
29826 "Windows guest."
29827 msgstr ""
29828
29829 #. type: textblock
29830 #: ../tools/virt-win-reg.pl:71
29831 msgid ""
29832 "If I<--merge> is I<not> specified, then the chosen registry key is displayed/"
29833 "exported (recursively).  For example:"
29834 msgstr ""
29835
29836 #. type: verbatim
29837 #: ../tools/virt-win-reg.pl:74
29838 #, no-wrap
29839 msgid ""
29840 " $ virt-win-reg Windows7 'HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft'\n"
29841 "\n"
29842 msgstr ""
29843
29844 #. type: textblock
29845 #: ../tools/virt-win-reg.pl:76
29846 msgid ""
29847 "You can also display single values from within registry keys, for example:"
29848 msgstr ""
29849
29850 #. type: verbatim
29851 #: ../tools/virt-win-reg.pl:79
29852 #, no-wrap
29853 msgid ""
29854 " $ cvkey='HKLM\\SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion'\n"
29855 " $ virt-win-reg Windows7 $cvkey ProductName\n"
29856 " Windows 7 Enterprise\n"
29857 "\n"
29858 msgstr ""
29859
29860 #. type: textblock
29861 #: ../tools/virt-win-reg.pl:83
29862 msgid ""
29863 "With I<--merge>, you can merge a textual regedit file into the Windows "
29864 "Registry:"
29865 msgstr ""
29866
29867 #. type: verbatim
29868 #: ../tools/virt-win-reg.pl:86
29869 #, no-wrap
29870 msgid ""
29871 " $ virt-win-reg --merge Windows7 changes.reg\n"
29872 "\n"
29873 msgstr ""
29874
29875 #. type: =head1
29876 #: ../tools/virt-win-reg.pl:88 ../tools/virt-tar.pl:45
29877 msgid "NOTE"
29878 msgstr ""
29879
29880 #. type: textblock
29881 #: ../tools/virt-win-reg.pl:90
29882 msgid ""
29883 "This program is only meant for simple access to the registry.  If you want "
29884 "to do complicated things with the registry, we suggest you download the "
29885 "Registry hive files from the guest using L<libguestfs(3)> or L<guestfish(1)> "
29886 "and access them locally, eg. using L<hivex(3)>, L<hivexsh(1)> or "
29887 "L<hivexregedit(1)>."
29888 msgstr ""
29889
29890 #. type: =item
29891 #: ../tools/virt-win-reg.pl:120 ../tools/virt-make-fs.pl:177
29892 msgid "B<--debug>"
29893 msgstr ""
29894
29895 #. type: textblock
29896 #: ../tools/virt-win-reg.pl:122
29897 msgid "Enable debugging messages."
29898 msgstr ""
29899
29900 #. type: =item
29901 #: ../tools/virt-win-reg.pl:157
29902 msgid "B<--merge>"
29903 msgstr ""
29904
29905 #. type: textblock
29906 #: ../tools/virt-win-reg.pl:159
29907 msgid ""
29908 "In merge mode, this merges a textual regedit file into the Windows Registry "
29909 "of the virtual machine.  If this flag is I<not> given then virt-win-reg "
29910 "displays or exports Registry entries instead."
29911 msgstr ""
29912
29913 #. type: textblock
29914 #: ../tools/virt-win-reg.pl:163
29915 msgid ""
29916 "Note that I<--merge> is I<unsafe> to use on live virtual machines, and will "
29917 "result in disk corruption.  However exporting (without this flag)  is always "
29918 "safe."
29919 msgstr ""
29920
29921 #. type: =item
29922 #: ../tools/virt-win-reg.pl:171
29923 msgid "B<--encoding> UTF-16LE|ASCII"
29924 msgstr ""
29925
29926 #. type: textblock
29927 #: ../tools/virt-win-reg.pl:173
29928 msgid ""
29929 "When merging (only), you may need to specify the encoding for strings to be "
29930 "used in the hive file.  This is explained in detail in L<Win::Hivex::Regedit"
29931 "(3)/ENCODING STRINGS>."
29932 msgstr ""
29933
29934 #. type: textblock
29935 #: ../tools/virt-win-reg.pl:177
29936 msgid ""
29937 "The default is to use UTF-16LE, which should work with recent versions of "
29938 "Windows."
29939 msgstr ""
29940
29941 #. type: =head1
29942 #: ../tools/virt-win-reg.pl:402
29943 msgid "SUPPORTED SYSTEMS"
29944 msgstr ""
29945
29946 #. type: textblock
29947 #: ../tools/virt-win-reg.pl:404
29948 msgid ""
29949 "The program currently supports Windows NT-derived guests starting with "
29950 "Windows XP through to at least Windows 7."
29951 msgstr ""
29952
29953 #. type: textblock
29954 #: ../tools/virt-win-reg.pl:407
29955 msgid ""
29956 "Registry support is done for C<HKEY_LOCAL_MACHINE\\SAM>, C<HKEY_LOCAL_MACHINE"
29957 "\\SECURITY>, C<HKEY_LOCAL_MACHINE\\SOFTWARE>, C<HKEY_LOCAL_MACHINE\\SYSTEM> "
29958 "and C<HKEY_USERS\\.DEFAULT>."
29959 msgstr ""
29960
29961 #. type: textblock
29962 #: ../tools/virt-win-reg.pl:411
29963 msgid ""
29964 "You can use C<HKLM> as a shorthand for C<HKEY_LOCAL_MACHINE>, and C<HKU> for "
29965 "C<HKEY_USERS>."
29966 msgstr ""
29967
29968 #. type: textblock
29969 #: ../tools/virt-win-reg.pl:414
29970 msgid ""
29971 "C<HKEY_USERS\\$SID> and C<HKEY_CURRENT_USER> are B<not> supported at this "
29972 "time."
29973 msgstr ""
29974
29975 #. type: =head1
29976 #: ../tools/virt-win-reg.pl:417
29977 msgid "ENCODING"
29978 msgstr ""
29979
29980 #. type: textblock
29981 #: ../tools/virt-win-reg.pl:419
29982 msgid ""
29983 "C<virt-win-reg> expects that regedit files have already been reencoded in "
29984 "the local encoding.  Usually on Linux hosts, this means UTF-8 with Unix-"
29985 "style line endings.  Since Windows regedit files are often in UTF-16LE with "
29986 "Windows-style line endings, you may need to reencode the whole file before "
29987 "or after processing."
29988 msgstr ""
29989
29990 #. type: textblock
29991 #: ../tools/virt-win-reg.pl:425
29992 msgid ""
29993 "To reencode a file from Windows format to Linux (before processing it with "
29994 "the I<--merge> option), you would do something like this:"
29995 msgstr ""
29996
29997 #. type: verbatim
29998 #: ../tools/virt-win-reg.pl:428
29999 #, no-wrap
30000 msgid ""
30001 " iconv -f utf-16le -t utf-8 < win.reg | dos2unix > linux.reg\n"
30002 "\n"
30003 msgstr ""
30004
30005 #. type: textblock
30006 #: ../tools/virt-win-reg.pl:430
30007 msgid ""
30008 "To go in the opposite direction, after exporting and before sending the file "
30009 "to a Windows user, do something like this:"
30010 msgstr ""
30011
30012 #. type: verbatim
30013 #: ../tools/virt-win-reg.pl:433
30014 #, no-wrap
30015 msgid ""
30016 " unix2dos linux.reg | iconv -f utf-8 -t utf-16le > win.reg\n"
30017 "\n"
30018 msgstr ""
30019
30020 #. type: textblock
30021 #: ../tools/virt-win-reg.pl:435
30022 msgid "For more information about encoding, see L<Win::Hivex::Regedit(3)>."
30023 msgstr ""
30024
30025 #. type: textblock
30026 #: ../tools/virt-win-reg.pl:437
30027 msgid ""
30028 "If you are unsure about the current encoding, use the L<file(1)> command.  "
30029 "Recent versions of Windows regedit.exe produce a UTF-16LE file with Windows-"
30030 "style (CRLF) line endings, like this:"
30031 msgstr ""
30032
30033 #. type: verbatim
30034 #: ../tools/virt-win-reg.pl:441
30035 #, no-wrap
30036 msgid ""
30037 " $ file software.reg\n"
30038 " software.reg: Little-endian UTF-16 Unicode text, with very long lines,\n"
30039 " with CRLF line terminators\n"
30040 "\n"
30041 msgstr ""
30042
30043 #. type: textblock
30044 #: ../tools/virt-win-reg.pl:445
30045 msgid "This file would need conversion before you could I<--merge> it."
30046 msgstr ""
30047
30048 #. type: =head1
30049 #: ../tools/virt-win-reg.pl:447
30050 msgid "CurrentControlSet etc."
30051 msgstr ""
30052
30053 #. type: textblock
30054 #: ../tools/virt-win-reg.pl:449
30055 msgid ""
30056 "Registry keys like C<CurrentControlSet> don't really exist in the Windows "
30057 "Registry at the level of the hive file, and therefore you cannot modify "
30058 "these."
30059 msgstr ""
30060
30061 #. type: textblock
30062 #: ../tools/virt-win-reg.pl:453
30063 msgid ""
30064 "C<CurrentControlSet> is usually an alias for C<ControlSet001>.  In some "
30065 "circumstances it might refer to another control set.  The way to find out is "
30066 "to look at the C<HKLM\\SYSTEM\\Select> key:"
30067 msgstr ""
30068
30069 #. type: verbatim
30070 #: ../tools/virt-win-reg.pl:457
30071 #, no-wrap
30072 msgid ""
30073 " # virt-win-reg WindowsGuest 'HKLM\\SYSTEM\\Select'\n"
30074 " [HKEY_LOCAL_MACHINE\\SYSTEM\\Select]\n"
30075 " \"Current\"=dword:00000001\n"
30076 " \"Default\"=dword:00000001\n"
30077 " \"Failed\"=dword:00000000\n"
30078 " \"LastKnownGood\"=dword:00000002\n"
30079 "\n"
30080 msgstr ""
30081
30082 #. type: textblock
30083 #: ../tools/virt-win-reg.pl:464
30084 msgid "\"Current\" is the one which Windows will choose when it boots."
30085 msgstr ""
30086
30087 #. type: textblock
30088 #: ../tools/virt-win-reg.pl:466
30089 msgid ""
30090 "Similarly, other C<Current...> keys in the path may need to be replaced."
30091 msgstr ""
30092
30093 #. type: =head1
30094 #: ../tools/virt-win-reg.pl:469
30095 msgid "WINDOWS TIPS"
30096 msgstr ""
30097
30098 #. type: textblock
30099 #: ../tools/virt-win-reg.pl:471
30100 msgid ""
30101 "Note that some of these tips modify the guest disk image.  The guest I<must> "
30102 "be shut off, else you will get disk corruption."
30103 msgstr ""
30104
30105 #. type: =head2
30106 #: ../tools/virt-win-reg.pl:474
30107 msgid "RUNNING A BATCH SCRIPT WHEN A USER LOGS IN"
30108 msgstr ""
30109
30110 #. type: textblock
30111 #: ../tools/virt-win-reg.pl:476
30112 msgid ""
30113 "Prepare a DOS batch script, VBScript or executable.  Upload this using "
30114 "L<guestfish(1)>.  For this example the script is called C<test.bat> and it "
30115 "is uploaded into C<C:\\>:"
30116 msgstr ""
30117
30118 #. type: verbatim
30119 #: ../tools/virt-win-reg.pl:480
30120 #, no-wrap
30121 msgid ""
30122 " guestfish -i -d WindowsGuest upload test.bat /test.bat\n"
30123 "\n"
30124 msgstr ""
30125
30126 #. type: textblock
30127 #: ../tools/virt-win-reg.pl:482
30128 msgid "Prepare a regedit file containing the registry change:"
30129 msgstr ""
30130
30131 #. type: verbatim
30132 #: ../tools/virt-win-reg.pl:484
30133 #, no-wrap
30134 msgid ""
30135 " cat > test.reg <<'EOF'\n"
30136 " [HKLM\\Software\\Microsoft\\Windows\\CurrentVersion\\RunOnce]\n"
30137 " \"Test\"=\"c:\\\\test.bat\"\n"
30138 " EOF\n"
30139 "\n"
30140 msgstr ""
30141
30142 #. type: textblock
30143 #: ../tools/virt-win-reg.pl:489
30144 msgid ""
30145 "In this example we use the key C<RunOnce> which means that the script will "
30146 "run precisely once when the first user logs in.  If you want it to run every "
30147 "time a user logs in, replace C<RunOnce> with C<Run>."
30148 msgstr ""
30149
30150 #. type: textblock
30151 #: ../tools/virt-win-reg.pl:493
30152 msgid "Now update the registry:"
30153 msgstr ""
30154
30155 #. type: verbatim
30156 #: ../tools/virt-win-reg.pl:495
30157 #, no-wrap
30158 msgid ""
30159 " virt-win-reg --merge WindowsGuest test.reg\n"
30160 "\n"
30161 msgstr ""
30162
30163 #. type: =head2
30164 #: ../tools/virt-win-reg.pl:497
30165 msgid "INSTALLING A SERVICE"
30166 msgstr ""
30167
30168 #. type: textblock
30169 #: ../tools/virt-win-reg.pl:499
30170 msgid ""
30171 "This section assumes you are familiar with Windows services, and you either "
30172 "have a program which handles the Windows Service Control Protocol directly "
30173 "or you want to run any program using a service wrapper like SrvAny or the "
30174 "free RHSrvAny."
30175 msgstr ""
30176
30177 #. type: textblock
30178 #: ../tools/virt-win-reg.pl:504
30179 msgid ""
30180 "First upload the program and optionally the service wrapper.  In this case "
30181 "the test program is called C<test.exe> and we are using the RHSrvAny wrapper:"
30182 msgstr ""
30183
30184 #. type: verbatim
30185 #: ../tools/virt-win-reg.pl:508
30186 #, no-wrap
30187 msgid ""
30188 " guestfish -i -d WindowsGuest <<EOF\n"
30189 "   upload rhsrvany.exe /rhsrvany.exe\n"
30190 "   upload test.exe /test.exe\n"
30191 " EOF\n"
30192 "\n"
30193 msgstr ""
30194
30195 #. type: textblock
30196 #: ../tools/virt-win-reg.pl:513
30197 msgid ""
30198 "Prepare a regedit file containing the registry changes.  In this example, "
30199 "the first registry change is needed for the service itself or the service "
30200 "wrapper (if used).  The second registry change is only needed because I am "
30201 "using the RHSrvAny service wrapper."
30202 msgstr ""
30203
30204 #. type: verbatim
30205 #: ../tools/virt-win-reg.pl:518
30206 #, no-wrap
30207 msgid ""
30208 " cat > service.reg <<'EOF'\n"
30209 " [HKLM\\SYSTEM\\ControlSet001\\services\\RHSrvAny]\n"
30210 " \"Type\"=dword:00000010\n"
30211 " \"Start\"=dword:00000002\n"
30212 " \"ErrorControl\"=dword:00000001\n"
30213 " \"ImagePath\"=\"c:\\\\rhsrvany.exe\"\n"
30214 " \"DisplayName\"=\"RHSrvAny\"\n"
30215 " \"ObjectName\"=\"NetworkService\"\n"
30216 " \n"
30217 msgstr ""
30218
30219 #. type: verbatim
30220 #: ../tools/virt-win-reg.pl:527
30221 #, no-wrap
30222 msgid ""
30223 " [HKLM\\SYSTEM\\ControlSet001\\services\\RHSrvAny\\Parameters]\n"
30224 " \"CommandLine\"=\"c:\\\\test.exe\"\n"
30225 " \"PWD\"=\"c:\\\\Temp\"\n"
30226 " EOF\n"
30227 "\n"
30228 msgstr ""
30229
30230 #. type: textblock
30231 #: ../tools/virt-win-reg.pl:538
30232 msgid ""
30233 "For use of C<ControlSet001> see the section above in this manual page.  You "
30234 "may need to adjust this according to the control set that is in use by the "
30235 "guest."
30236 msgstr ""
30237
30238 #. type: textblock
30239 #: ../tools/virt-win-reg.pl:544
30240 msgid ""
30241 "C<\"ObjectName\"> controls the privileges that the service will have.  An "
30242 "alternative is C<\"ObjectName\"=\"LocalSystem\"> which would be the most "
30243 "privileged account."
30244 msgstr ""
30245
30246 #. type: textblock
30247 #: ../tools/virt-win-reg.pl:550
30248 msgid ""
30249 "For the meaning of the magic numbers, see this Microsoft KB article: "
30250 "L<http://support.microsoft.com/kb/103000>."
30251 msgstr ""
30252
30253 #. type: textblock
30254 #: ../tools/virt-win-reg.pl:555
30255 msgid "Update the registry:"
30256 msgstr ""
30257
30258 #. type: verbatim
30259 #: ../tools/virt-win-reg.pl:557
30260 #, no-wrap
30261 msgid ""
30262 " virt-win-reg --merge WindowsGuest service.reg\n"
30263 "\n"
30264 msgstr ""
30265
30266 #. type: textblock
30267 #: ../tools/virt-win-reg.pl:561
30268 msgid ""
30269 "Be careful when passing parameters containing C<\\> (backslash) in the "
30270 "shell.  Usually you will have to use 'single quotes' or double backslashes "
30271 "(but not both) to protect them from the shell."
30272 msgstr ""
30273
30274 #. type: textblock
30275 #: ../tools/virt-win-reg.pl:565
30276 msgid "Paths and value names are case-insensitive."
30277 msgstr ""
30278
30279 #. type: textblock
30280 #: ../tools/virt-win-reg.pl:574
30281 msgid ""
30282 "L<hivex(3)>, L<hivexsh(1)>, L<hivexregedit(1)>, L<guestfs(3)>, L<guestfish(1)"
30283 ">, L<virt-cat(1)>, L<Sys::Guestfs(3)>, L<Sys::Guestfs::Lib(3)>, L<Win::Hivex"
30284 "(3)>, L<Win::Hivex::Regedit(3)>, L<Sys::Virt(3)>, L<http://libguestfs.org/>."
30285 msgstr ""
30286
30287 #. type: textblock
30288 #: ../tools/virt-win-reg.pl:589 ../tools/virt-make-fs.pl:555
30289 msgid ""
30290 "When reporting bugs, please enable debugging and capture the I<complete> "
30291 "output:"
30292 msgstr ""
30293
30294 #. type: verbatim
30295 #: ../tools/virt-win-reg.pl:592
30296 #, no-wrap
30297 msgid ""
30298 " export LIBGUESTFS_DEBUG=1\n"
30299 " virt-win-reg --debug [... rest ...] > /tmp/virt-win-reg.log 2>&1\n"
30300 "\n"
30301 msgstr ""
30302
30303 #. type: textblock
30304 #: ../tools/virt-win-reg.pl:595
30305 msgid ""
30306 "Attach /tmp/virt-win-reg.log to a new bug report at L<https://bugzilla."
30307 "redhat.com/>"
30308 msgstr ""
30309
30310 #. type: textblock
30311 #: ../tools/virt-win-reg.pl:604 ../tools/virt-make-fs.pl:570
30312 msgid "Copyright (C) 2010 Red Hat Inc."
30313 msgstr ""
30314
30315 #. type: textblock
30316 #: ../tools/virt-list-filesystems.pl:32
30317 msgid ""
30318 "virt-list-filesystems - List filesystems in a virtual machine or disk image"
30319 msgstr ""
30320
30321 #. type: verbatim
30322 #: ../tools/virt-list-filesystems.pl:36
30323 #, no-wrap
30324 msgid ""
30325 " virt-list-filesystems [--options] domname\n"
30326 "\n"
30327 msgstr ""
30328
30329 #. type: verbatim
30330 #: ../tools/virt-list-filesystems.pl:38
30331 #, no-wrap
30332 msgid ""
30333 " virt-list-filesystems [--options] disk.img [disk.img ...]\n"
30334 "\n"
30335 msgstr ""
30336
30337 #. type: textblock
30338 #: ../tools/virt-list-filesystems.pl:42 ../tools/virt-list-partitions.pl:42
30339 msgid ""
30340 "This tool is obsolete.  Use L<virt-filesystems(1)> as a more flexible "
30341 "replacement."
30342 msgstr ""
30343
30344 #. type: textblock
30345 #: ../tools/virt-list-filesystems.pl:45
30346 msgid ""
30347 "C<virt-list-filesystems> is a command line tool to list the filesystems that "
30348 "are contained in a virtual machine or disk image."
30349 msgstr ""
30350
30351 #. type: textblock
30352 #: ../tools/virt-list-filesystems.pl:49
30353 msgid ""
30354 "C<virt-list-filesystems> is just a simple wrapper around L<libguestfs(3)> "
30355 "functionality.  For more complex cases you should look at the L<guestfish(1)"
30356 "> tool."
30357 msgstr ""
30358
30359 #. type: =item
30360 #: ../tools/virt-list-filesystems.pl:106 ../tools/virt-list-partitions.pl:115
30361 msgid "B<-l> | B<--long>"
30362 msgstr ""
30363
30364 #. type: textblock
30365 #: ../tools/virt-list-filesystems.pl:108
30366 msgid ""
30367 "With this option, C<virt-list-filesystems> displays the type of each "
30368 "filesystem too (where \"type\" means C<ext3>, C<xfs> etc.)"
30369 msgstr ""
30370
30371 #. type: =item
30372 #: ../tools/virt-list-filesystems.pl:115
30373 msgid "B<-a> | B<--all>"
30374 msgstr ""
30375
30376 #. type: textblock
30377 #: ../tools/virt-list-filesystems.pl:117
30378 msgid ""
30379 "Normally we only show mountable filesystems.  If this option is given then "
30380 "swap devices are shown too."
30381 msgstr ""
30382
30383 #. type: textblock
30384 #: ../tools/virt-list-filesystems.pl:191
30385 msgid ""
30386 "L<guestfs(3)>, L<guestfish(1)>, L<virt-cat(1)>, L<virt-tar(1)>, L<virt-"
30387 "filesystems(1)>, L<virt-list-partitions(1)>, L<Sys::Guestfs(3)>, L<Sys::"
30388 "Guestfs::Lib(3)>, L<Sys::Virt(3)>, L<http://libguestfs.org/>."
30389 msgstr ""
30390
30391 #. type: textblock
30392 #: ../tools/virt-list-filesystems.pl:208 ../tools/virt-tar.pl:307
30393 msgid "Copyright (C) 2009 Red Hat Inc."
30394 msgstr ""
30395
30396 #. type: textblock
30397 #: ../tools/virt-tar.pl:33
30398 msgid "virt-tar - Extract or upload files to a virtual machine"
30399 msgstr ""
30400
30401 #. type: verbatim
30402 #: ../tools/virt-tar.pl:37
30403 #, no-wrap
30404 msgid ""
30405 " virt-tar [--options] -x domname directory tarball\n"
30406 "\n"
30407 msgstr ""
30408
30409 #. type: verbatim
30410 #: ../tools/virt-tar.pl:39
30411 #, no-wrap
30412 msgid ""
30413 " virt-tar [--options] -u domname tarball directory\n"
30414 "\n"
30415 msgstr ""
30416
30417 #. type: verbatim
30418 #: ../tools/virt-tar.pl:41
30419 #, no-wrap
30420 msgid ""
30421 " virt-tar [--options] disk.img [disk.img ...] -x directory tarball\n"
30422 "\n"
30423 msgstr ""
30424
30425 #. type: verbatim
30426 #: ../tools/virt-tar.pl:43
30427 #, no-wrap
30428 msgid ""
30429 " virt-tar [--options] disk.img [disk.img ...] -u tarball directory\n"
30430 "\n"
30431 msgstr ""
30432
30433 #. type: textblock
30434 #: ../tools/virt-tar.pl:47
30435 msgid ""
30436 "This tool is obsolete.  Use L<virt-copy-in(1)>, L<virt-copy-out(1)>, L<virt-"
30437 "tar-in(1)>, L<virt-tar-out(1)> as replacements."
30438 msgstr ""
30439
30440 #. type: textblock
30441 #: ../tools/virt-tar.pl:52
30442 msgid "Download C</home> from the VM into a local tarball:"
30443 msgstr ""
30444
30445 #. type: verbatim
30446 #: ../tools/virt-tar.pl:54
30447 #, no-wrap
30448 msgid ""
30449 " virt-tar -x domname /home home.tar\n"
30450 "\n"
30451 msgstr ""
30452
30453 #. type: verbatim
30454 #: ../tools/virt-tar.pl:56
30455 #, no-wrap
30456 msgid ""
30457 " virt-tar -zx domname /home home.tar.gz\n"
30458 "\n"
30459 msgstr ""
30460
30461 #. type: textblock
30462 #: ../tools/virt-tar.pl:58
30463 msgid "Upload a local tarball and unpack it inside C</tmp> in the VM:"
30464 msgstr ""
30465
30466 #. type: verbatim
30467 #: ../tools/virt-tar.pl:60
30468 #, no-wrap
30469 msgid ""
30470 " virt-tar -u domname uploadstuff.tar /tmp\n"
30471 "\n"
30472 msgstr ""
30473
30474 #. type: verbatim
30475 #: ../tools/virt-tar.pl:62
30476 #, no-wrap
30477 msgid ""
30478 " virt-tar -zu domname uploadstuff.tar.gz /tmp\n"
30479 "\n"
30480 msgstr ""
30481
30482 #. type: textblock
30483 #: ../tools/virt-tar.pl:66
30484 msgid ""
30485 "You must I<not> use C<virt-tar> with the I<-u> option (upload) on live "
30486 "virtual machines.  If you do this, you risk disk corruption in the VM.  "
30487 "C<virt-tar> tries to stop you from doing this, but doesn't catch all cases."
30488 msgstr ""
30489
30490 #. type: textblock
30491 #: ../tools/virt-tar.pl:71
30492 msgid ""
30493 "You can use I<-x> (extract) on live virtual machines, but you might get "
30494 "inconsistent results or errors if there is filesystem activity inside the "
30495 "VM.  If the live VM is synched and quiescent, then C<virt-tar> will usually "
30496 "work, but the only way to guarantee consistent results is if the virtual "
30497 "machine is shut down."
30498 msgstr ""
30499
30500 #. type: textblock
30501 #: ../tools/virt-tar.pl:79
30502 msgid ""
30503 "C<virt-tar> is a general purpose archive tool for downloading and uploading "
30504 "parts of a guest filesystem.  There are many possibilities: making backups, "
30505 "uploading data files, snooping on guest activity, fixing or customizing "
30506 "guests, etc."
30507 msgstr ""
30508
30509 #. type: textblock
30510 #: ../tools/virt-tar.pl:84
30511 msgid ""
30512 "If you want to just view a single file, use L<virt-cat(1)>.  If you just "
30513 "want to edit a single file, use L<virt-edit(1)>.  For more complex cases you "
30514 "should look at the L<guestfish(1)> tool."
30515 msgstr ""
30516
30517 #. type: textblock
30518 #: ../tools/virt-tar.pl:88
30519 msgid ""
30520 "There are two modes of operation: I<-x> (eXtract) downloads a directory and "
30521 "its contents (recursively) from the virtual machine into a local tarball.  "
30522 "I<-u> uploads from a local tarball, unpacking it into a directory inside the "
30523 "virtual machine.  You cannot use these two options together."
30524 msgstr ""
30525
30526 #. type: textblock
30527 #: ../tools/virt-tar.pl:94
30528 msgid ""
30529 "In addition, you may need to use the I<-z> (gZip) option to enable "
30530 "compression.  When uploading, you have to specify I<-z> if the upload file "
30531 "is compressed because virt-tar won't detect this on its own."
30532 msgstr ""
30533
30534 #. type: textblock
30535 #: ../tools/virt-tar.pl:98
30536 msgid ""
30537 "C<virt-tar> can only handle tar (optionally gzipped) format tarballs.  For "
30538 "example it cannot do PKZip files or bzip2 compression.  If you want that "
30539 "then you'll have to rebuild the tarballs yourself.  (This is a limitation of "
30540 "the L<libguestfs(3)> API)."
30541 msgstr ""
30542
30543 #. type: =item
30544 #: ../tools/virt-tar.pl:156
30545 msgid "B<-x> | B<--extract> | B<--download>"
30546 msgstr ""
30547
30548 #. type: =item
30549 #: ../tools/virt-tar.pl:158
30550 msgid "B<-u> | B<--upload>"
30551 msgstr ""
30552
30553 #. type: textblock
30554 #: ../tools/virt-tar.pl:160
30555 msgid ""
30556 "Use I<-x> to extract (download) a directory from a virtual machine to a "
30557 "local tarball."
30558 msgstr ""
30559
30560 #. type: textblock
30561 #: ../tools/virt-tar.pl:163
30562 msgid ""
30563 "Use I<-u> to upload and unpack from a local tarball into a virtual machine.  "
30564 "Please read the L</WARNING> section above before using this option."
30565 msgstr ""
30566
30567 #. type: textblock
30568 #: ../tools/virt-tar.pl:167
30569 msgid "You must specify exactly one of these options."
30570 msgstr ""
30571
30572 #. type: =item
30573 #: ../tools/virt-tar.pl:173
30574 msgid "B<-z> | B<--gzip>"
30575 msgstr ""
30576
30577 #. type: textblock
30578 #: ../tools/virt-tar.pl:175
30579 msgid "Specify that the input or output tarball is gzip-compressed."
30580 msgstr ""
30581
30582 #. type: textblock
30583 #: ../tools/virt-tar.pl:288
30584 msgid ""
30585 "L<guestfs(3)>, L<guestfish(1)>, L<virt-cat(1)>, L<virt-edit(1)>, L<virt-copy-"
30586 "in(1)>, L<virt-copy-out(1)>, L<virt-tar-in(1)>, L<virt-tar-out(1)>, L<Sys::"
30587 "Guestfs(3)>, L<Sys::Guestfs::Lib(3)>, L<Sys::Virt(3)>, L<http://libguestfs."
30588 "org/>."
30589 msgstr ""
30590
30591 #. type: textblock
30592 #: ../tools/virt-make-fs.pl:37
30593 msgid "virt-make-fs - Make a filesystem from a tar archive or files"
30594 msgstr ""
30595
30596 #. type: verbatim
30597 #: ../tools/virt-make-fs.pl:41
30598 #, no-wrap
30599 msgid ""
30600 " virt-make-fs [--options] input.tar output.img\n"
30601 "\n"
30602 msgstr ""
30603
30604 #. type: verbatim
30605 #: ../tools/virt-make-fs.pl:43
30606 #, no-wrap
30607 msgid ""
30608 " virt-make-fs [--options] input.tar.gz output.img\n"
30609 "\n"
30610 msgstr ""
30611
30612 #. type: verbatim
30613 #: ../tools/virt-make-fs.pl:45
30614 #, no-wrap
30615 msgid ""
30616 " virt-make-fs [--options] directory output.img\n"
30617 "\n"
30618 msgstr ""
30619
30620 #. type: textblock
30621 #: ../tools/virt-make-fs.pl:49
30622 msgid ""
30623 "Virt-make-fs is a command line tool for creating a filesystem from a tar "
30624 "archive or some files in a directory.  It is similar to tools like L<mkisofs"
30625 "(1)>, L<genisoimage(1)> and L<mksquashfs(1)>.  Unlike those tools, it can "
30626 "create common filesystem types like ext2/3 or NTFS, which can be useful if "
30627 "you want to attach these filesystems to existing virtual machines (eg. to "
30628 "import large amounts of read-only data to a VM)."
30629 msgstr ""
30630
30631 #. type: textblock
30632 #: ../tools/virt-make-fs.pl:57
30633 msgid "Basic usage is:"
30634 msgstr ""
30635
30636 #. type: verbatim
30637 #: ../tools/virt-make-fs.pl:59
30638 #, no-wrap
30639 msgid ""
30640 " virt-make-fs input output\n"
30641 "\n"
30642 msgstr ""
30643
30644 #. type: textblock
30645 #: ../tools/virt-make-fs.pl:61
30646 msgid ""
30647 "where C<input> is either a directory containing files that you want to add, "
30648 "or a tar archive (either uncompressed tar or gzip-compressed tar); and "
30649 "C<output> is a disk image.  The input type is detected automatically.  The "
30650 "output disk image defaults to a raw ext2 image unless you specify extra "
30651 "flags (see L</OPTIONS> below)."
30652 msgstr ""
30653
30654 #. type: =head2
30655 #: ../tools/virt-make-fs.pl:67
30656 msgid "EXTRA SPACE"
30657 msgstr ""
30658
30659 #. type: textblock
30660 #: ../tools/virt-make-fs.pl:69
30661 msgid ""
30662 "Unlike formats such as tar and squashfs, a filesystem does not \"just fit\" "
30663 "the files that it contains, but might have extra space.  Depending on how "
30664 "you are going to use the output, you might think this extra space is wasted "
30665 "and want to minimize it, or you might want to leave space so that more files "
30666 "can be added later.  Virt-make-fs defaults to minimizing the extra space, "
30667 "but you can use the I<--size> flag to leave space in the filesystem if you "
30668 "want it."
30669 msgstr ""
30670
30671 #. type: textblock
30672 #: ../tools/virt-make-fs.pl:77
30673 msgid ""
30674 "An alternative way to leave extra space but not make the output image any "
30675 "bigger is to use an alternative disk image format (instead of the default "
30676 "\"raw\" format).  Using I<--format=qcow2> will use the native QEmu/KVM qcow2 "
30677 "image format (check your hypervisor supports this before using it).  This "
30678 "allows you to choose a large I<--size> but the extra space won't actually be "
30679 "allocated in the image until you try to store something in it."
30680 msgstr ""
30681
30682 #. type: textblock
30683 #: ../tools/virt-make-fs.pl:85
30684 msgid ""
30685 "Don't forget that you can also use local commands including L<resize2fs(8)> "
30686 "and L<virt-resize(1)> to resize existing filesystems, or rerun virt-make-fs "
30687 "to build another image from scratch."
30688 msgstr ""
30689
30690 #. type: =head3
30691 #: ../tools/virt-make-fs.pl:89 ../tools/virt-make-fs.pl:123
30692 #: ../tools/virt-make-fs.pl:142
30693 msgid "EXAMPLE"
30694 msgstr ""
30695
30696 #. type: verbatim
30697 #: ../tools/virt-make-fs.pl:91
30698 #, no-wrap
30699 msgid ""
30700 " virt-make-fs --format=qcow2 --size=+200M input output.img\n"
30701 "\n"
30702 msgstr ""
30703
30704 #. type: =head2
30705 #: ../tools/virt-make-fs.pl:93
30706 msgid "FILESYSTEM TYPE"
30707 msgstr ""
30708
30709 #. type: textblock
30710 #: ../tools/virt-make-fs.pl:95
30711 msgid ""
30712 "The default filesystem type is C<ext2>.  Just about any filesystem type that "
30713 "libguestfs supports can be used (but I<not> read-only formats like "
30714 "ISO9660).  Here are some of the more common choices:"
30715 msgstr ""
30716
30717 #. type: =item
30718 #: ../tools/virt-make-fs.pl:101
30719 msgid "I<ext3>"
30720 msgstr ""
30721
30722 #. type: textblock
30723 #: ../tools/virt-make-fs.pl:103
30724 msgid ""
30725 "Note that ext3 filesystems contain a journal, typically 1-32 MB in size.  If "
30726 "you are not going to use the filesystem in a way that requires the journal, "
30727 "then this is just wasted overhead."
30728 msgstr ""
30729
30730 #. type: =item
30731 #: ../tools/virt-make-fs.pl:107
30732 msgid "I<ntfs> or I<vfat>"
30733 msgstr ""
30734
30735 #. type: textblock
30736 #: ../tools/virt-make-fs.pl:109
30737 msgid "Useful if exporting data to a Windows guest."
30738 msgstr ""
30739
30740 #. type: textblock
30741 #: ../tools/virt-make-fs.pl:111
30742 msgid ""
30743 "I<Note for vfat>: The tar archive or local directory must only contain files "
30744 "which are owned by root (ie. UID:GID = 0:0).  The reason is that the tar "
30745 "program running within libguestfs is unable to change the ownership of non-"
30746 "root files, since vfat itself does not support this."
30747 msgstr ""
30748
30749 #. type: =item
30750 #: ../tools/virt-make-fs.pl:116
30751 msgid "I<minix>"
30752 msgstr ""
30753
30754 #. type: textblock
30755 #: ../tools/virt-make-fs.pl:118
30756 msgid ""
30757 "Lower overhead than C<ext2>, but certain limitations on filename length and "
30758 "total filesystem size."
30759 msgstr ""
30760
30761 #. type: verbatim
30762 #: ../tools/virt-make-fs.pl:125
30763 #, no-wrap
30764 msgid ""
30765 " virt-make-fs --type=minix input minixfs.img\n"
30766 "\n"
30767 msgstr ""
30768
30769 #. type: =head2
30770 #: ../tools/virt-make-fs.pl:127
30771 msgid "TO PARTITION OR NOT TO PARTITION"
30772 msgstr ""
30773
30774 #. type: textblock
30775 #: ../tools/virt-make-fs.pl:129
30776 msgid "Optionally virt-make-fs can add a partition table to the output disk."
30777 msgstr ""
30778
30779 #. type: textblock
30780 #: ../tools/virt-make-fs.pl:131
30781 msgid ""
30782 "Adding a partition can make the disk image more compatible with certain "
30783 "virtualized operating systems which don't expect to see a filesystem "
30784 "directly located on a block device (Linux doesn't care and will happily "
30785 "handle both types)."
30786 msgstr ""
30787
30788 #. type: textblock
30789 #: ../tools/virt-make-fs.pl:136
30790 msgid ""
30791 "On the other hand, if you have a partition table then the output image is no "
30792 "longer a straight filesystem.  For example you cannot run L<fsck(8)> "
30793 "directly on a partitioned disk image.  (However libguestfs tools such as "
30794 "L<guestfish(1)> and L<virt-resize(1)> can still be used)."
30795 msgstr ""
30796
30797 #. type: textblock
30798 #: ../tools/virt-make-fs.pl:144
30799 msgid "Add an MBR partition:"
30800 msgstr ""
30801
30802 #. type: verbatim
30803 #: ../tools/virt-make-fs.pl:146
30804 #, no-wrap
30805 msgid ""
30806 " virt-make-fs --partition -- input disk.img\n"
30807 "\n"
30808 msgstr ""
30809
30810 #. type: textblock
30811 #: ../tools/virt-make-fs.pl:148
30812 msgid ""
30813 "If the output disk image could be terabyte-sized or larger, it's better to "
30814 "use an EFI/GPT-compatible partition table:"
30815 msgstr ""
30816
30817 #. type: verbatim
30818 #: ../tools/virt-make-fs.pl:151
30819 #, no-wrap
30820 msgid ""
30821 " virt-make-fs --partition=gpt --size=+4T --format=qcow2 input disk.img\n"
30822 "\n"
30823 msgstr ""
30824
30825 #. type: textblock
30826 #: ../tools/virt-make-fs.pl:179
30827 msgid "Enable debugging information."
30828 msgstr ""
30829
30830 #. type: =item
30831 #: ../tools/virt-make-fs.pl:185
30832 msgid "B<--size=E<lt>NE<gt>>"
30833 msgstr ""
30834
30835 #. type: =item
30836 #: ../tools/virt-make-fs.pl:187
30837 msgid "B<--size=+E<lt>NE<gt>>"
30838 msgstr ""
30839
30840 #. type: =item
30841 #: ../tools/virt-make-fs.pl:189
30842 msgid "B<-s E<lt>NE<gt>>"
30843 msgstr ""
30844
30845 #. type: =item
30846 #: ../tools/virt-make-fs.pl:191
30847 msgid "B<-s +E<lt>NE<gt>>"
30848 msgstr ""
30849
30850 #. type: textblock
30851 #: ../tools/virt-make-fs.pl:193
30852 msgid ""
30853 "Use the I<--size> (or I<-s>) option to choose the size of the output image."
30854 msgstr ""
30855
30856 #. type: textblock
30857 #: ../tools/virt-make-fs.pl:196
30858 msgid ""
30859 "If this option is I<not> given, then the output image will be just large "
30860 "enough to contain all the files, with not much wasted space."
30861 msgstr ""
30862
30863 #. type: textblock
30864 #: ../tools/virt-make-fs.pl:199
30865 msgid ""
30866 "To choose a fixed size output disk, specify an absolute number followed by b/"
30867 "K/M/G/T/P/E to mean bytes, Kilobytes, Megabytes, Gigabytes, Terabytes, "
30868 "Petabytes or Exabytes.  This must be large enough to contain all the input "
30869 "files, else you will get an error."
30870 msgstr ""
30871
30872 #. type: textblock
30873 #: ../tools/virt-make-fs.pl:204
30874 msgid ""
30875 "To leave extra space, specify C<+> (plus sign) and a number followed by b/K/"
30876 "M/G/T/P/E to mean bytes, Kilobytes, Megabytes, Gigabytes, Terabytes, "
30877 "Petabytes or Exabytes.  For example: I<--size=+200M> means enough space for "
30878 "the input files, and (approximately) an extra 200 MB free space."
30879 msgstr ""
30880
30881 #. type: textblock
30882 #: ../tools/virt-make-fs.pl:210
30883 msgid ""
30884 "Note that virt-make-fs estimates free space, and therefore will not produce "
30885 "filesystems containing precisely the free space requested.  (It is much more "
30886 "expensive and time-consuming to produce a filesystem which has precisely the "
30887 "desired free space)."
30888 msgstr ""
30889
30890 #. type: =item
30891 #: ../tools/virt-make-fs.pl:219
30892 msgid "B<--format=E<lt>fmtE<gt>>"
30893 msgstr ""
30894
30895 #. type: =item
30896 #: ../tools/virt-make-fs.pl:221
30897 msgid "B<-F E<lt>fmtE<gt>>"
30898 msgstr ""
30899
30900 #. type: textblock
30901 #: ../tools/virt-make-fs.pl:223
30902 msgid "Choose the output disk image format."
30903 msgstr ""
30904
30905 #. type: textblock
30906 #: ../tools/virt-make-fs.pl:225
30907 msgid "The default is C<raw> (raw disk image)."
30908 msgstr ""
30909
30910 #. type: textblock
30911 #: ../tools/virt-make-fs.pl:227
30912 msgid ""
30913 "For other choices, see the L<qemu-img(1)> manpage.  The only other choice "
30914 "that would really make sense here is C<qcow2>."
30915 msgstr ""
30916
30917 #. type: =item
30918 #: ../tools/virt-make-fs.pl:234
30919 msgid "B<--type=E<lt>fsE<gt>>"
30920 msgstr ""
30921
30922 #. type: =item
30923 #: ../tools/virt-make-fs.pl:236
30924 msgid "B<-t E<lt>fsE<gt>>"
30925 msgstr ""
30926
30927 #. type: textblock
30928 #: ../tools/virt-make-fs.pl:238
30929 msgid "Choose the output filesystem type."
30930 msgstr ""
30931
30932 #. type: textblock
30933 #: ../tools/virt-make-fs.pl:240
30934 msgid "The default is C<ext2>."
30935 msgstr ""
30936
30937 #. type: textblock
30938 #: ../tools/virt-make-fs.pl:242
30939 msgid ""
30940 "Any filesystem which is supported read-write by libguestfs can be used here."
30941 msgstr ""
30942
30943 #. type: =item
30944 #: ../tools/virt-make-fs.pl:249
30945 msgid "B<--partition>"
30946 msgstr ""
30947
30948 #. type: =item
30949 #: ../tools/virt-make-fs.pl:251
30950 msgid "B<--partition=E<lt>parttypeE<gt>>"
30951 msgstr ""
30952
30953 #. type: textblock
30954 #: ../tools/virt-make-fs.pl:253
30955 msgid ""
30956 "If specified, this flag adds an MBR partition table to the output disk image."
30957 msgstr ""
30958
30959 #. type: textblock
30960 #: ../tools/virt-make-fs.pl:256
30961 msgid ""
30962 "You can change the partition table type, eg. I<--partition=gpt> for large "
30963 "disks."
30964 msgstr ""
30965
30966 #. type: textblock
30967 #: ../tools/virt-make-fs.pl:259
30968 msgid ""
30969 "Note that if you just use a lonesome I<--partition>, the Perl option parser "
30970 "might consider the next parameter to be the partition type.  For example:"
30971 msgstr ""
30972
30973 #. type: verbatim
30974 #: ../tools/virt-make-fs.pl:263
30975 #, no-wrap
30976 msgid ""
30977 " virt-make-fs --partition input.tar ...\n"
30978 "\n"
30979 msgstr ""
30980
30981 #. type: textblock
30982 #: ../tools/virt-make-fs.pl:265
30983 msgid ""
30984 "would cause virt-make-fs to think you wanted to use a partition type of "
30985 "C<input.tar> which is completely wrong.  To avoid this, use I<--> (a double "
30986 "dash) between options and the input file argument:"
30987 msgstr ""
30988
30989 #. type: verbatim
30990 #: ../tools/virt-make-fs.pl:269
30991 #, no-wrap
30992 msgid ""
30993 " virt-make-fs --partition -- input.tar ...\n"
30994 "\n"
30995 msgstr ""
30996
30997 #. type: textblock
30998 #: ../tools/virt-make-fs.pl:541
30999 msgid ""
31000 "L<guestfish(1)>, L<virt-resize(1)>, L<virt-tar-in(1)>, L<mkisofs(1)>, "
31001 "L<genisoimage(1)>, L<mksquashfs(1)>, L<mke2fs(8)>, L<resize2fs(8)>, L<guestfs"
31002 "(3)>, L<Sys::Guestfs(3)>, L<http://libguestfs.org/>."
31003 msgstr ""
31004
31005 #. type: verbatim
31006 #: ../tools/virt-make-fs.pl:558
31007 #, no-wrap
31008 msgid ""
31009 " export LIBGUESTFS_DEBUG=1\n"
31010 " virt-make-fs --debug [...] > /tmp/virt-make-fs.log 2>&1\n"
31011 "\n"
31012 msgstr ""
31013
31014 #. type: textblock
31015 #: ../tools/virt-make-fs.pl:561
31016 msgid ""
31017 "Attach /tmp/virt-make-fs.log to a new bug report at L<https://bugzilla."
31018 "redhat.com/>"
31019 msgstr ""
31020
31021 #. type: textblock
31022 #: ../tools/virt-list-partitions.pl:32
31023 msgid ""
31024 "virt-list-partitions - List partitions in a virtual machine or disk image"
31025 msgstr ""
31026
31027 #. type: verbatim
31028 #: ../tools/virt-list-partitions.pl:36
31029 #, no-wrap
31030 msgid ""
31031 " virt-list-partitions [--options] domname\n"
31032 "\n"
31033 msgstr ""
31034
31035 #. type: verbatim
31036 #: ../tools/virt-list-partitions.pl:38
31037 #, no-wrap
31038 msgid ""
31039 " virt-list-partitions [--options] disk.img [disk.img ...]\n"
31040 "\n"
31041 msgstr ""
31042
31043 #. type: textblock
31044 #: ../tools/virt-list-partitions.pl:45
31045 msgid ""
31046 "C<virt-list-partitions> is a command line tool to list the partitions that "
31047 "are contained in a virtual machine or disk image.  It is mainly useful as a "
31048 "first step to using L<virt-resize(1)>."
31049 msgstr ""
31050
31051 #. type: textblock
31052 #: ../tools/virt-list-partitions.pl:50
31053 msgid ""
31054 "C<virt-list-partitions> is just a simple wrapper around L<libguestfs(3)> "
31055 "functionality.  For more complex cases you should look at the L<guestfish(1)"
31056 "> tool."
31057 msgstr ""
31058
31059 #. type: =item
31060 #: ../tools/virt-list-partitions.pl:107
31061 msgid "B<-h> | B<--human-readable>"
31062 msgstr ""
31063
31064 #. type: textblock
31065 #: ../tools/virt-list-partitions.pl:109
31066 msgid "Show sizes in human-readable form (eg. \"1G\")."
31067 msgstr ""
31068
31069 #. type: textblock
31070 #: ../tools/virt-list-partitions.pl:117
31071 msgid ""
31072 "With this option, C<virt-list-partitions> displays the type and size of each "
31073 "partition too (where \"type\" means C<ext3>, C<pv> etc.)"
31074 msgstr ""
31075
31076 #. type: =item
31077 #: ../tools/virt-list-partitions.pl:124
31078 msgid "B<-t> | B<--total>"
31079 msgstr ""
31080
31081 #. type: textblock
31082 #: ../tools/virt-list-partitions.pl:126
31083 msgid ""
31084 "Display the total size of each block device (as a separate row or rows)."
31085 msgstr ""
31086
31087 #. type: textblock
31088 #: ../tools/virt-list-partitions.pl:259
31089 msgid ""
31090 "L<guestfs(3)>, L<guestfish(1)>, L<virt-filesystems(1)>, L<virt-list-"
31091 "filesystems(1)>, L<virt-resize(1)>, L<Sys::Guestfs(3)>, L<Sys::Guestfs::Lib"
31092 "(3)>, L<Sys::Virt(3)>, L<http://libguestfs.org/>."
31093 msgstr ""
31094
31095 #. type: textblock
31096 #: ../tools/virt-list-partitions.pl:275
31097 msgid "Copyright (C) 2009-2010 Red Hat Inc."
31098 msgstr ""