Version 1.11.0.
[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-04-12 20:14+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 pipe 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:1087
858 #: ../src/guestfs.pod:1091 ../src/guestfs.pod:1095 ../src/guestfs.pod:1100
859 #: ../src/guestfs.pod:1108 ../src/guestfs.pod:1127 ../src/guestfs.pod:1135
860 #: ../src/guestfs.pod:1157 ../src/guestfs.pod:1161 ../src/guestfs.pod:1165
861 #: ../src/guestfs.pod:1169 ../src/guestfs.pod:1173 ../src/guestfs.pod:1177
862 #: ../src/guestfs.pod:1659 ../src/guestfs.pod:1664 ../src/guestfs.pod:1668
863 #: ../src/guestfs.pod:1769 ../src/guestfs.pod:1774 ../src/guestfs.pod:1778
864 #: ../src/guestfs.pod:1788 ../src/guestfs.pod:2022 ../src/guestfs.pod:2027
865 #: ../src/guestfs.pod:2033 ../src/guestfs.pod:2041 ../src/guestfs.pod:2395
866 #: ../src/guestfs.pod:2401 ../src/guestfs.pod:2406 ../src/guestfs.pod:2412
867 #: ../src/guestfs.pod:2877 ../src/guestfs.pod:2881 ../src/guestfs.pod:2885
868 #: ../src/guestfs.pod:2889 ../src/guestfs-actions.pod:15
869 #: ../src/guestfs-actions.pod:22 ../src/guestfs-actions.pod:577
870 #: ../src/guestfs-actions.pod:585 ../src/guestfs-actions.pod:592
871 #: ../src/guestfs-actions.pod:599 ../src/guestfs-actions.pod:1600
872 #: ../src/guestfs-actions.pod:1604 ../src/guestfs-actions.pod:1608
873 #: ../src/guestfs-actions.pod:1612 ../src/guestfs-actions.pod:1620
874 #: ../src/guestfs-actions.pod:1624 ../src/guestfs-actions.pod:1628
875 #: ../src/guestfs-actions.pod:1638 ../src/guestfs-actions.pod:1642
876 #: ../src/guestfs-actions.pod:1646 ../src/guestfs-actions.pod:1784
877 #: ../src/guestfs-actions.pod:1788 ../src/guestfs-actions.pod:1793
878 #: ../src/guestfs-actions.pod:1798 ../src/guestfs-actions.pod:1859
879 #: ../src/guestfs-actions.pod:1863 ../src/guestfs-actions.pod:1868
880 #: ../fish/guestfish.pod:443 ../fish/guestfish.pod:447
881 #: ../fish/guestfish.pod:451 ../fish/guestfish.pod:455
882 #: ../fish/guestfish-actions.pod:13 ../fish/guestfish-actions.pod:20
883 #: ../fish/guestfish-actions.pod:380 ../fish/guestfish-actions.pod:388
884 #: ../fish/guestfish-actions.pod:395 ../fish/guestfish-actions.pod:402
885 #: ../fish/guestfish-actions.pod:1072 ../fish/guestfish-actions.pod:1076
886 #: ../fish/guestfish-actions.pod:1080 ../fish/guestfish-actions.pod:1084
887 #: ../fish/guestfish-actions.pod:1092 ../fish/guestfish-actions.pod:1096
888 #: ../fish/guestfish-actions.pod:1100 ../fish/guestfish-actions.pod:1110
889 #: ../fish/guestfish-actions.pod:1114 ../fish/guestfish-actions.pod:1118
890 #: ../fish/guestfish-actions.pod:1208 ../fish/guestfish-actions.pod:1212
891 #: ../fish/guestfish-actions.pod:1217 ../fish/guestfish-actions.pod:1222
892 #: ../fish/guestfish-actions.pod:1264 ../fish/guestfish-actions.pod:1268
893 #: ../fish/guestfish-actions.pod:1273 ../tools/virt-edit.pl:351
894 #: ../tools/virt-edit.pl:356 ../tools/virt-edit.pl:361
895 #: ../tools/virt-edit.pl:372 ../tools/virt-edit.pl:376
896 #: ../tools/virt-win-reg.pl:536 ../tools/virt-win-reg.pl:542
897 #: ../tools/virt-win-reg.pl:548
898 msgid "*"
899 msgstr ""
900
901 #. type: textblock
902 #: ../src/guestfs.pod:390
903 msgid ""
904 "The kernel version that the command runs under will be different from what "
905 "it expects."
906 msgstr ""
907
908 #. type: textblock
909 #: ../src/guestfs.pod:395
910 msgid ""
911 "If the command needs to communicate with daemons, then most likely they "
912 "won't be running."
913 msgstr ""
914
915 #. type: textblock
916 #: ../src/guestfs.pod:400
917 msgid "The command will be running in limited memory."
918 msgstr ""
919
920 #. type: textblock
921 #: ../src/guestfs.pod:404
922 msgid ""
923 "The network may not be available unless you enable it (see L</"
924 "guestfs_set_network>)."
925 msgstr ""
926
927 #. type: textblock
928 #: ../src/guestfs.pod:409
929 msgid "Only supports Linux guests (not Windows, BSD, etc)."
930 msgstr ""
931
932 #. type: textblock
933 #: ../src/guestfs.pod:413
934 msgid ""
935 "Architecture limitations (eg. won't work for a PPC guest on an X86 host)."
936 msgstr ""
937
938 #. type: textblock
939 #: ../src/guestfs.pod:418
940 msgid ""
941 "For SELinux guests, you may need to enable SELinux and load policy first.  "
942 "See L</SELINUX> in this manpage."
943 msgstr ""
944
945 #. type: textblock
946 #: ../src/guestfs.pod:423
947 msgid ""
948 "I<Security:> It is not safe to run commands from untrusted, possibly "
949 "malicious guests.  These commands may attempt to exploit your program by "
950 "sending unexpected output.  They could also try to exploit the Linux kernel "
951 "or qemu provided by the libguestfs appliance.  They could use the network "
952 "provided by the libguestfs appliance to bypass ordinary network partitions "
953 "and firewalls.  They could use the elevated privileges or different SELinux "
954 "context of your program to their advantage."
955 msgstr ""
956
957 #. type: textblock
958 #: ../src/guestfs.pod:432
959 msgid ""
960 "A secure alternative is to use libguestfs to install a \"firstboot\" script "
961 "(a script which runs when the guest next boots normally), and to have this "
962 "script run the commands you want in the normal context of the running guest, "
963 "network security and so on.  For information about other security issues, "
964 "see L</SECURITY>."
965 msgstr ""
966
967 #. type: textblock
968 #: ../src/guestfs.pod:440
969 msgid ""
970 "The two main API calls to run commands are L</guestfs_command> and L</"
971 "guestfs_sh> (there are also variations)."
972 msgstr ""
973
974 #. type: textblock
975 #: ../src/guestfs.pod:443
976 msgid ""
977 "The difference is that L</guestfs_sh> runs commands using the shell, so any "
978 "shell globs, redirections, etc will work."
979 msgstr ""
980
981 #. type: =head2
982 #: ../src/guestfs.pod:446
983 msgid "CONFIGURATION FILES"
984 msgstr "ФАЙЛИ НАЛАШТУВАННЯ"
985
986 #. type: textblock
987 #: ../src/guestfs.pod:448
988 msgid ""
989 "To read and write configuration files in Linux guest filesystems, we "
990 "strongly recommend using Augeas.  For example, Augeas understands how to "
991 "read and write, say, a Linux shadow password file or X.org configuration "
992 "file, and so avoids you having to write that code."
993 msgstr ""
994
995 #. type: textblock
996 #: ../src/guestfs.pod:453
997 msgid ""
998 "The main Augeas calls are bound through the C<guestfs_aug_*> APIs.  We don't "
999 "document Augeas itself here because there is excellent documentation on the "
1000 "L<http://augeas.net/> website."
1001 msgstr ""
1002
1003 #. type: textblock
1004 #: ../src/guestfs.pod:457
1005 msgid ""
1006 "If you don't want to use Augeas (you fool!) then try calling L</"
1007 "guestfs_read_lines> to get the file as a list of lines which you can iterate "
1008 "over."
1009 msgstr ""
1010
1011 #. type: =head2
1012 #: ../src/guestfs.pod:461
1013 msgid "SELINUX"
1014 msgstr "SELINUX"
1015
1016 #. type: textblock
1017 #: ../src/guestfs.pod:463
1018 msgid ""
1019 "We support SELinux guests.  To ensure that labeling happens correctly in "
1020 "SELinux guests, you need to enable SELinux and load the guest's policy:"
1021 msgstr ""
1022
1023 #. type: =item
1024 #: ../src/guestfs.pod:469 ../src/guestfs.pod:1280 ../src/guestfs.pod:1411
1025 #: ../src/guestfs.pod:2440
1026 msgid "1."
1027 msgstr ""
1028
1029 #. type: textblock
1030 #: ../src/guestfs.pod:471
1031 msgid "Before launching, do:"
1032 msgstr ""
1033
1034 #. type: verbatim
1035 #: ../src/guestfs.pod:473
1036 #, no-wrap
1037 msgid ""
1038 " guestfs_set_selinux (g, 1);\n"
1039 "\n"
1040 msgstr ""
1041
1042 #. type: =item
1043 #: ../src/guestfs.pod:475 ../src/guestfs.pod:1284 ../src/guestfs.pod:1415
1044 #: ../src/guestfs.pod:2465
1045 msgid "2."
1046 msgstr ""
1047
1048 #. type: textblock
1049 #: ../src/guestfs.pod:477
1050 msgid ""
1051 "After mounting the guest's filesystem(s), load the policy.  This is best "
1052 "done by running the L<load_policy(8)> command in the guest itself:"
1053 msgstr ""
1054
1055 #. type: verbatim
1056 #: ../src/guestfs.pod:481
1057 #, no-wrap
1058 msgid ""
1059 " guestfs_sh (g, \"/usr/sbin/load_policy\");\n"
1060 "\n"
1061 msgstr ""
1062
1063 #. type: textblock
1064 #: ../src/guestfs.pod:483
1065 msgid ""
1066 "(Older versions of C<load_policy> require you to specify the name of the "
1067 "policy file)."
1068 msgstr ""
1069
1070 #. type: =item
1071 #: ../src/guestfs.pod:486 ../src/guestfs.pod:1421
1072 msgid "3."
1073 msgstr ""
1074
1075 #. type: textblock
1076 #: ../src/guestfs.pod:488
1077 msgid ""
1078 "Optionally, set the security context for the API.  The correct security "
1079 "context to use can only be known by inspecting the guest.  As an example:"
1080 msgstr ""
1081
1082 #. type: verbatim
1083 #: ../src/guestfs.pod:492
1084 #, no-wrap
1085 msgid ""
1086 " guestfs_setcon (g, \"unconfined_u:unconfined_r:unconfined_t:s0\");\n"
1087 "\n"
1088 msgstr ""
1089
1090 #. type: textblock
1091 #: ../src/guestfs.pod:496
1092 msgid "This will work for running commands and editing existing files."
1093 msgstr ""
1094
1095 #. type: textblock
1096 #: ../src/guestfs.pod:498
1097 msgid ""
1098 "When new files are created, you may need to label them explicitly, for "
1099 "example by running the external command C<restorecon pathname>."
1100 msgstr ""
1101
1102 #. type: =head2
1103 #: ../src/guestfs.pod:502
1104 msgid "UMASK"
1105 msgstr ""
1106
1107 #. type: textblock
1108 #: ../src/guestfs.pod:504
1109 msgid ""
1110 "Certain calls are affected by the current file mode creation mask (the "
1111 "\"umask\").  In particular ones which create files or directories, such as "
1112 "L</guestfs_touch>, L</guestfs_mknod> or L</guestfs_mkdir>.  This affects "
1113 "either the default mode that the file is created with or modifies the mode "
1114 "that you supply."
1115 msgstr ""
1116
1117 #. type: textblock
1118 #: ../src/guestfs.pod:510
1119 msgid ""
1120 "The default umask is C<022>, so files are created with modes such as C<0644> "
1121 "and directories with C<0755>."
1122 msgstr ""
1123
1124 #. type: textblock
1125 #: ../src/guestfs.pod:513
1126 msgid ""
1127 "There are two ways to avoid being affected by umask.  Either set umask to 0 "
1128 "(call C<guestfs_umask (g, 0)> early after launching).  Or call L</"
1129 "guestfs_chmod> after creating each file or directory."
1130 msgstr ""
1131
1132 #. type: textblock
1133 #: ../src/guestfs.pod:517
1134 msgid "For more information about umask, see L<umask(2)>."
1135 msgstr ""
1136
1137 #. type: =head1
1138 #: ../src/guestfs.pod:519 ../fish/guestfish.pod:765
1139 msgid "ENCRYPTED DISKS"
1140 msgstr ""
1141
1142 #. type: textblock
1143 #: ../src/guestfs.pod:521
1144 msgid ""
1145 "Libguestfs allows you to access Linux guests which have been encrypted using "
1146 "whole disk encryption that conforms to the Linux Unified Key Setup (LUKS) "
1147 "standard.  This includes nearly all whole disk encryption systems used by "
1148 "modern Linux guests."
1149 msgstr ""
1150
1151 #. type: textblock
1152 #: ../src/guestfs.pod:527
1153 msgid ""
1154 "Use L</guestfs_vfs_type> to identify LUKS-encrypted block devices (it "
1155 "returns the string C<crypto_LUKS>)."
1156 msgstr ""
1157
1158 #. type: textblock
1159 #: ../src/guestfs.pod:530
1160 msgid ""
1161 "Then open these devices by calling L</guestfs_luks_open>.  Obviously you "
1162 "will require the passphrase!"
1163 msgstr ""
1164
1165 #. type: textblock
1166 #: ../src/guestfs.pod:533
1167 msgid ""
1168 "Opening a LUKS device creates a new device mapper device called C</dev/"
1169 "mapper/mapname> (where C<mapname> is the string you supply to L</"
1170 "guestfs_luks_open>).  Reads and writes to this mapper device are decrypted "
1171 "from and encrypted to the underlying block device respectively."
1172 msgstr ""
1173
1174 #. type: textblock
1175 #: ../src/guestfs.pod:539
1176 msgid ""
1177 "LVM volume groups on the device can be made visible by calling L</"
1178 "guestfs_vgscan> followed by L</guestfs_vg_activate_all>.  The logical volume"
1179 "(s) can now be mounted in the usual way."
1180 msgstr ""
1181
1182 #. type: textblock
1183 #: ../src/guestfs.pod:543
1184 msgid ""
1185 "Use the reverse process to close a LUKS device.  Unmount any logical volumes "
1186 "on it, deactivate the volume groups by caling C<guestfs_vg_activate (g, 0, "
1187 "[\"/dev/VG\"])>.  Then close the mapper device by calling L</"
1188 "guestfs_luks_close> on the C</dev/mapper/mapname> device (I<not> the "
1189 "underlying encrypted block device)."
1190 msgstr ""
1191
1192 #. type: =head2
1193 #: ../src/guestfs.pod:550
1194 msgid "INSPECTION"
1195 msgstr "ПЕРЕВІРКА"
1196
1197 #. type: textblock
1198 #: ../src/guestfs.pod:552
1199 msgid ""
1200 "Libguestfs has APIs for inspecting an unknown disk image to find out if it "
1201 "contains operating systems, an install CD or a live CD.  (These APIs used to "
1202 "be in a separate Perl-only library called L<Sys::Guestfs::Lib(3)> but since "
1203 "version 1.5.3 the most frequently used part of this library has been "
1204 "rewritten in C and moved into the core code)."
1205 msgstr ""
1206
1207 #. type: textblock
1208 #: ../src/guestfs.pod:559
1209 msgid ""
1210 "Add all disks belonging to the unknown virtual machine and call L</"
1211 "guestfs_launch> in the usual way."
1212 msgstr ""
1213
1214 #. type: textblock
1215 #: ../src/guestfs.pod:562
1216 msgid ""
1217 "Then call L</guestfs_inspect_os>.  This function uses other libguestfs calls "
1218 "and certain heuristics, and returns a list of operating systems that were "
1219 "found.  An empty list means none were found.  A single element is the root "
1220 "filesystem of the operating system.  For dual- or multi-boot guests, "
1221 "multiple roots can be returned, each one corresponding to a separate "
1222 "operating system.  (Multi-boot virtual machines are extremely rare in the "
1223 "world of virtualization, but since this scenario can happen, we have built "
1224 "libguestfs to deal with it.)"
1225 msgstr ""
1226
1227 #. type: textblock
1228 #: ../src/guestfs.pod:571
1229 msgid ""
1230 "For each root, you can then call various C<guestfs_inspect_get_*> functions "
1231 "to get additional details about that operating system.  For example, call L</"
1232 "guestfs_inspect_get_type> to return the string C<windows> or C<linux> for "
1233 "Windows and Linux-based operating systems respectively."
1234 msgstr ""
1235
1236 #. type: textblock
1237 #: ../src/guestfs.pod:577
1238 msgid ""
1239 "Un*x-like and Linux-based operating systems usually consist of several "
1240 "filesystems which are mounted at boot time (for example, a separate boot "
1241 "partition mounted on C</boot>).  The inspection rules are able to detect how "
1242 "filesystems correspond to mount points.  Call "
1243 "C<guestfs_inspect_get_mountpoints> to get this mapping.  It might return a "
1244 "hash table like this example:"
1245 msgstr ""
1246
1247 #. type: verbatim
1248 #: ../src/guestfs.pod:584
1249 #, no-wrap
1250 msgid ""
1251 " /boot => /dev/sda1\n"
1252 " /     => /dev/vg_guest/lv_root\n"
1253 " /usr  => /dev/vg_guest/lv_usr\n"
1254 "\n"
1255 msgstr ""
1256
1257 #. type: textblock
1258 #: ../src/guestfs.pod:588
1259 msgid ""
1260 "The caller can then make calls to L</guestfs_mount_options> to mount the "
1261 "filesystems as suggested."
1262 msgstr ""
1263
1264 #. type: textblock
1265 #: ../src/guestfs.pod:591
1266 msgid ""
1267 "Be careful to mount filesystems in the right order (eg. C</> before C</"
1268 "usr>).  Sorting the keys of the hash by length, shortest first, should work."
1269 msgstr ""
1270
1271 #. type: textblock
1272 #: ../src/guestfs.pod:595
1273 msgid ""
1274 "Inspection currently only works for some common operating systems.  "
1275 "Contributors are welcome to send patches for other operating systems that we "
1276 "currently cannot detect."
1277 msgstr ""
1278
1279 #. type: textblock
1280 #: ../src/guestfs.pod:599
1281 msgid ""
1282 "Encrypted disks must be opened before inspection.  See L</ENCRYPTED DISKS> "
1283 "for more details.  The L</guestfs_inspect_os> function just ignores any "
1284 "encrypted devices."
1285 msgstr ""
1286
1287 #. type: textblock
1288 #: ../src/guestfs.pod:603
1289 msgid ""
1290 "A note on the implementation: The call L</guestfs_inspect_os> performs "
1291 "inspection and caches the results in the guest handle.  Subsequent calls to "
1292 "C<guestfs_inspect_get_*> return this cached information, but I<do not> re-"
1293 "read the disks.  If you change the content of the guest disks, you can redo "
1294 "inspection by calling L</guestfs_inspect_os> again.  (L</"
1295 "guestfs_inspect_list_applications> works a little differently from the other "
1296 "calls and does read the disks.  See documentation for that function for "
1297 "details)."
1298 msgstr ""
1299
1300 #. type: =head3
1301 #: ../src/guestfs.pod:612
1302 msgid "INSPECTING INSTALL DISKS"
1303 msgstr ""
1304
1305 #. type: textblock
1306 #: ../src/guestfs.pod:614
1307 msgid ""
1308 "Libguestfs (since 1.9.4) can detect some install disks, install CDs, live "
1309 "CDs and more."
1310 msgstr ""
1311
1312 #. type: textblock
1313 #: ../src/guestfs.pod:617
1314 msgid ""
1315 "Call L</guestfs_inspect_get_format> to return the format of the operating "
1316 "system, which currently can be C<installed> (a regular operating system) or "
1317 "C<installer> (some sort of install disk)."
1318 msgstr ""
1319
1320 #. type: textblock
1321 #: ../src/guestfs.pod:621
1322 msgid ""
1323 "Further information is available about the operating system that can be "
1324 "installed using the regular inspection APIs like L</"
1325 "guestfs_inspect_get_product_name>, L</guestfs_inspect_get_major_version> etc."
1326 msgstr ""
1327
1328 #. type: textblock
1329 #: ../src/guestfs.pod:626
1330 msgid ""
1331 "Some additional information specific to installer disks is also available "
1332 "from the L</guestfs_inspect_is_live>, L</guestfs_inspect_is_netinst> and L</"
1333 "guestfs_inspect_is_multipart> calls."
1334 msgstr ""
1335
1336 #. type: =head2
1337 #: ../src/guestfs.pod:631
1338 msgid "SPECIAL CONSIDERATIONS FOR WINDOWS GUESTS"
1339 msgstr ""
1340
1341 #. type: textblock
1342 #: ../src/guestfs.pod:633
1343 msgid ""
1344 "Libguestfs can mount NTFS partitions.  It does this using the L<http://www."
1345 "ntfs-3g.org/> driver."
1346 msgstr ""
1347
1348 #. type: =head3
1349 #: ../src/guestfs.pod:636
1350 msgid "DRIVE LETTERS AND PATHS"
1351 msgstr ""
1352
1353 #. type: textblock
1354 #: ../src/guestfs.pod:638
1355 msgid ""
1356 "DOS and Windows still use drive letters, and the filesystems are always "
1357 "treated as case insensitive by Windows itself, and therefore you might find "
1358 "a Windows configuration file referring to a path like C<c:\\windows"
1359 "\\system32>.  When the filesystem is mounted in libguestfs, that directory "
1360 "might be referred to as C</WINDOWS/System32>."
1361 msgstr ""
1362
1363 #. type: textblock
1364 #: ../src/guestfs.pod:644
1365 msgid ""
1366 "Drive letter mappings can be found using inspection (see L</INSPECTION> and "
1367 "L</guestfs_inspect_get_drive_mappings>)"
1368 msgstr ""
1369
1370 #. type: textblock
1371 #: ../src/guestfs.pod:647
1372 msgid ""
1373 "Dealing with separator characters (backslash vs forward slash) is outside "
1374 "the scope of libguestfs, but usually a simple character replacement will "
1375 "work."
1376 msgstr ""
1377
1378 #. type: textblock
1379 #: ../src/guestfs.pod:651
1380 msgid ""
1381 "To resolve the case insensitivity of paths, call L</"
1382 "guestfs_case_sensitive_path>."
1383 msgstr ""
1384
1385 #. type: =head3
1386 #: ../src/guestfs.pod:654
1387 msgid "ACCESSING THE WINDOWS REGISTRY"
1388 msgstr ""
1389
1390 #. type: textblock
1391 #: ../src/guestfs.pod:656
1392 msgid ""
1393 "Libguestfs also provides some help for decoding Windows Registry \"hive\" "
1394 "files, through the library C<hivex> which is part of the libguestfs project "
1395 "although ships as a separate tarball.  You have to locate and download the "
1396 "hive file(s) yourself, and then pass them to C<hivex> functions.  See also "
1397 "the programs L<hivexml(1)>, L<hivexsh(1)>, L<hivexregedit(1)> and L<virt-win-"
1398 "reg(1)> for more help on this issue."
1399 msgstr ""
1400
1401 #. type: =head3
1402 #: ../src/guestfs.pod:664
1403 msgid "SYMLINKS ON NTFS-3G FILESYSTEMS"
1404 msgstr ""
1405
1406 #. type: textblock
1407 #: ../src/guestfs.pod:666
1408 msgid ""
1409 "Ntfs-3g tries to rewrite \"Junction Points\" and NTFS \"symbolic links\" to "
1410 "provide something which looks like a Linux symlink.  The way it tries to do "
1411 "the rewriting is described here:"
1412 msgstr ""
1413
1414 #. type: textblock
1415 #: ../src/guestfs.pod:670
1416 msgid ""
1417 "L<http://www.tuxera.com/community/ntfs-3g-advanced/junction-points-and-"
1418 "symbolic-links/>"
1419 msgstr ""
1420 "L<http://www.tuxera.com/community/ntfs-3g-advanced/junction-points-and-"
1421 "symbolic-links/>"
1422
1423 #. type: textblock
1424 #: ../src/guestfs.pod:672
1425 msgid ""
1426 "The essential problem is that ntfs-3g simply does not have enough "
1427 "information to do a correct job.  NTFS links can contain drive letters and "
1428 "references to external device GUIDs that ntfs-3g has no way of resolving.  "
1429 "It is almost certainly the case that libguestfs callers should ignore what "
1430 "ntfs-3g does (ie. don't use L</guestfs_readlink> on NTFS volumes)."
1431 msgstr ""
1432
1433 #. type: textblock
1434 #: ../src/guestfs.pod:679
1435 msgid ""
1436 "Instead if you encounter a symbolic link on an ntfs-3g filesystem, use L</"
1437 "guestfs_lgetxattr> to read the C<system.ntfs_reparse_data> extended "
1438 "attribute, and read the raw reparse data from that (you can find the format "
1439 "documented in various places around the web)."
1440 msgstr ""
1441
1442 #. type: =head3
1443 #: ../src/guestfs.pod:684
1444 msgid "EXTENDED ATTRIBUTES ON NTFS-3G FILESYSTEMS"
1445 msgstr ""
1446
1447 #. type: textblock
1448 #: ../src/guestfs.pod:686
1449 msgid ""
1450 "There are other useful extended attributes that can be read from ntfs-3g "
1451 "filesystems (using L</guestfs_getxattr>).  See:"
1452 msgstr ""
1453
1454 #. type: textblock
1455 #: ../src/guestfs.pod:689
1456 msgid ""
1457 "L<http://www.tuxera.com/community/ntfs-3g-advanced/extended-attributes/>"
1458 msgstr ""
1459 "L<http://www.tuxera.com/community/ntfs-3g-advanced/extended-attributes/>"
1460
1461 #. type: =head2
1462 #: ../src/guestfs.pod:691
1463 msgid "USING LIBGUESTFS WITH OTHER PROGRAMMING LANGUAGES"
1464 msgstr ""
1465
1466 #. type: textblock
1467 #: ../src/guestfs.pod:693
1468 msgid ""
1469 "Although we don't want to discourage you from using the C API, we will "
1470 "mention here that the same API is also available in other languages."
1471 msgstr ""
1472
1473 #. type: textblock
1474 #: ../src/guestfs.pod:696
1475 msgid ""
1476 "The API is broadly identical in all supported languages.  This means that "
1477 "the C call C<guestfs_add_drive_ro(g,file)> is C<$g-E<gt>add_drive_ro($file)> "
1478 "in Perl, C<g.add_drive_ro(file)> in Python, and C<g#add_drive_ro file> in "
1479 "OCaml.  In other words, a straightforward, predictable isomorphism between "
1480 "each language."
1481 msgstr ""
1482
1483 #. type: textblock
1484 #: ../src/guestfs.pod:702
1485 msgid ""
1486 "Error messages are automatically transformed into exceptions if the language "
1487 "supports it."
1488 msgstr ""
1489
1490 #. type: textblock
1491 #: ../src/guestfs.pod:705
1492 msgid ""
1493 "We don't try to \"object orientify\" parts of the API in OO languages, "
1494 "although contributors are welcome to write higher level APIs above what we "
1495 "provide in their favourite languages if they wish."
1496 msgstr ""
1497
1498 #. type: =item
1499 #: ../src/guestfs.pod:711
1500 msgid "B<C++>"
1501 msgstr "B<C++>"
1502
1503 #. type: textblock
1504 #: ../src/guestfs.pod:713
1505 msgid ""
1506 "You can use the I<guestfs.h> header file from C++ programs.  The C++ API is "
1507 "identical to the C API.  C++ classes and exceptions are not used."
1508 msgstr ""
1509
1510 #. type: =item
1511 #: ../src/guestfs.pod:717
1512 msgid "B<C#>"
1513 msgstr "B<C#>"
1514
1515 #. type: textblock
1516 #: ../src/guestfs.pod:719
1517 msgid ""
1518 "The C# bindings are highly experimental.  Please read the warnings at the "
1519 "top of C<csharp/Libguestfs.cs>."
1520 msgstr ""
1521
1522 #. type: =item
1523 #: ../src/guestfs.pod:722
1524 msgid "B<Haskell>"
1525 msgstr "B<Haskell>"
1526
1527 #. type: textblock
1528 #: ../src/guestfs.pod:724
1529 msgid ""
1530 "This is the only language binding that is working but incomplete.  Only "
1531 "calls which return simple integers have been bound in Haskell, and we are "
1532 "looking for help to complete this binding."
1533 msgstr ""
1534
1535 #. type: =item
1536 #: ../src/guestfs.pod:728
1537 msgid "B<Java>"
1538 msgstr "B<Java>"
1539
1540 #. type: textblock
1541 #: ../src/guestfs.pod:730
1542 msgid ""
1543 "Full documentation is contained in the Javadoc which is distributed with "
1544 "libguestfs."
1545 msgstr ""
1546
1547 #. type: =item
1548 #: ../src/guestfs.pod:733
1549 msgid "B<OCaml>"
1550 msgstr "B<OCaml>"
1551
1552 #. type: textblock
1553 #: ../src/guestfs.pod:735
1554 msgid "See L<guestfs-ocaml(3)>."
1555 msgstr "Див. L<guestfs-ocaml(3)>."
1556
1557 #. type: =item
1558 #: ../src/guestfs.pod:737
1559 msgid "B<Perl>"
1560 msgstr "B<Perl>"
1561
1562 #. type: textblock
1563 #: ../src/guestfs.pod:739
1564 msgid "See L<guestfs-perl(3)> and L<Sys::Guestfs(3)>."
1565 msgstr "Див. L<guestfs-perl(3)> та L<Sys::Guestfs(3)>."
1566
1567 #. type: =item
1568 #: ../src/guestfs.pod:741
1569 msgid "B<PHP>"
1570 msgstr "B<PHP>"
1571
1572 #. type: textblock
1573 #: ../src/guestfs.pod:743
1574 msgid ""
1575 "For documentation see C<README-PHP> supplied with libguestfs sources or in "
1576 "the php-libguestfs package for your distribution."
1577 msgstr ""
1578
1579 #. type: textblock
1580 #: ../src/guestfs.pod:746
1581 msgid "The PHP binding only works correctly on 64 bit machines."
1582 msgstr ""
1583
1584 #. type: =item
1585 #: ../src/guestfs.pod:748
1586 msgid "B<Python>"
1587 msgstr "B<Python>"
1588
1589 #. type: textblock
1590 #: ../src/guestfs.pod:750
1591 msgid "See L<guestfs-python(3)>."
1592 msgstr "Див. L<guestfs-python(3)>."
1593
1594 #. type: =item
1595 #: ../src/guestfs.pod:752
1596 msgid "B<Ruby>"
1597 msgstr "B<Ruby>"
1598
1599 #. type: textblock
1600 #: ../src/guestfs.pod:754
1601 msgid "See L<guestfs-ruby(3)>."
1602 msgstr "Див. L<guestfs-ruby(3)>."
1603
1604 #. type: =item
1605 #: ../src/guestfs.pod:756
1606 msgid "B<shell scripts>"
1607 msgstr "B<скрипти оболонки>"
1608
1609 #. type: textblock
1610 #: ../src/guestfs.pod:758
1611 msgid "See L<guestfish(1)>."
1612 msgstr "Див. L<guestfish(1)>."
1613
1614 #. type: =head2
1615 #: ../src/guestfs.pod:762
1616 msgid "LIBGUESTFS GOTCHAS"
1617 msgstr ""
1618
1619 #. type: textblock
1620 #: ../src/guestfs.pod:764
1621 msgid ""
1622 "L<http://en.wikipedia.org/wiki/Gotcha_(programming)>: \"A feature of a "
1623 "system [...] that works in the way it is documented but is counterintuitive "
1624 "and almost invites mistakes.\""
1625 msgstr ""
1626
1627 #. type: textblock
1628 #: ../src/guestfs.pod:768
1629 msgid ""
1630 "Since we developed libguestfs and the associated tools, there are several "
1631 "things we would have designed differently, but are now stuck with for "
1632 "backwards compatibility or other reasons.  If there is ever a libguestfs 2.0 "
1633 "release, you can expect these to change.  Beware of them."
1634 msgstr ""
1635
1636 #. type: =item
1637 #: ../src/guestfs.pod:776
1638 msgid "Autosync / forgetting to sync."
1639 msgstr ""
1640
1641 #. type: textblock
1642 #: ../src/guestfs.pod:778
1643 msgid ""
1644 "When modifying a filesystem from C or another language, you B<must> unmount "
1645 "all filesystems and call L</guestfs_sync> explicitly before you close the "
1646 "libguestfs handle.  You can also call:"
1647 msgstr ""
1648
1649 #. type: verbatim
1650 #: ../src/guestfs.pod:782
1651 #, no-wrap
1652 msgid ""
1653 " guestfs_set_autosync (g, 1);\n"
1654 "\n"
1655 msgstr ""
1656
1657 #. type: textblock
1658 #: ../src/guestfs.pod:784
1659 msgid ""
1660 "to have the unmount/sync done automatically for you when the handle 'g' is "
1661 "closed.  (This feature is called \"autosync\", L</guestfs_set_autosync> q.v.)"
1662 msgstr ""
1663
1664 #. type: textblock
1665 #: ../src/guestfs.pod:788
1666 msgid ""
1667 "If you forget to do this, then it is entirely possible that your changes "
1668 "won't be written out, or will be partially written, or (very rarely) that "
1669 "you'll get disk corruption."
1670 msgstr ""
1671
1672 #. type: textblock
1673 #: ../src/guestfs.pod:792
1674 msgid ""
1675 "Note that in L<guestfish(3)> autosync is the default.  So quick and dirty "
1676 "guestfish scripts that forget to sync will work just fine, which can make "
1677 "this very puzzling if you are trying to debug a problem."
1678 msgstr ""
1679
1680 #. type: textblock
1681 #: ../src/guestfs.pod:796
1682 msgid ""
1683 "Update: Autosync is enabled by default for all API users starting from "
1684 "libguestfs 1.5.24."
1685 msgstr ""
1686
1687 #. type: =item
1688 #: ../src/guestfs.pod:799
1689 msgid "Mount option C<-o sync> should not be the default."
1690 msgstr ""
1691
1692 #. type: textblock
1693 #: ../src/guestfs.pod:801
1694 msgid ""
1695 "If you use L</guestfs_mount>, then C<-o sync,noatime> are added implicitly.  "
1696 "However C<-o sync> does not add any reliability benefit, but does have a "
1697 "very large performance impact."
1698 msgstr ""
1699
1700 #. type: textblock
1701 #: ../src/guestfs.pod:805
1702 msgid ""
1703 "The work around is to use L</guestfs_mount_options> and set the mount "
1704 "options that you actually want to use."
1705 msgstr ""
1706
1707 #. type: =item
1708 #: ../src/guestfs.pod:808
1709 msgid "Read-only should be the default."
1710 msgstr ""
1711
1712 #. type: textblock
1713 #: ../src/guestfs.pod:810
1714 msgid ""
1715 "In L<guestfish(3)>, I<--ro> should be the default, and you should have to "
1716 "specify I<--rw> if you want to make changes to the image."
1717 msgstr ""
1718
1719 #. type: textblock
1720 #: ../src/guestfs.pod:813
1721 msgid "This would reduce the potential to corrupt live VM images."
1722 msgstr ""
1723
1724 #. type: textblock
1725 #: ../src/guestfs.pod:815
1726 msgid ""
1727 "Note that many filesystems change the disk when you just mount and unmount, "
1728 "even if you didn't perform any writes.  You need to use L</"
1729 "guestfs_add_drive_ro> to guarantee that the disk is not changed."
1730 msgstr ""
1731
1732 #. type: =item
1733 #: ../src/guestfs.pod:819
1734 msgid "guestfish command line is hard to use."
1735 msgstr ""
1736
1737 #. type: textblock
1738 #: ../src/guestfs.pod:821
1739 msgid ""
1740 "C<guestfish disk.img> doesn't do what people expect (open C<disk.img> for "
1741 "examination).  It tries to run a guestfish command C<disk.img> which doesn't "
1742 "exist, so it fails.  In earlier versions of guestfish the error message was "
1743 "also unintuitive, but we have corrected this since.  Like the Bourne shell, "
1744 "we should have used C<guestfish -c command> to run commands."
1745 msgstr ""
1746
1747 #. type: =item
1748 #: ../src/guestfs.pod:828
1749 msgid "guestfish megabyte modifiers don't work right on all commands"
1750 msgstr ""
1751
1752 #. type: textblock
1753 #: ../src/guestfs.pod:830
1754 msgid ""
1755 "In recent guestfish you can use C<1M> to mean 1 megabyte (and similarly for "
1756 "other modifiers).  What guestfish actually does is to multiply the number "
1757 "part by the modifier part and pass the result to the C API.  However this "
1758 "doesn't work for a few APIs which aren't expecting bytes, but are already "
1759 "expecting some other unit (eg. megabytes)."
1760 msgstr ""
1761
1762 #. type: textblock
1763 #: ../src/guestfs.pod:837
1764 msgid "The most common is L</guestfs_lvcreate>.  The guestfish command:"
1765 msgstr ""
1766
1767 #. type: verbatim
1768 #: ../src/guestfs.pod:839
1769 #, no-wrap
1770 msgid ""
1771 " lvcreate LV VG 100M\n"
1772 "\n"
1773 msgstr ""
1774
1775 #. type: textblock
1776 #: ../src/guestfs.pod:841
1777 msgid ""
1778 "does not do what you might expect.  Instead because L</guestfs_lvcreate> is "
1779 "already expecting megabytes, this tries to create a 100 I<terabyte> (100 "
1780 "megabytes * megabytes) logical volume.  The error message you get from this "
1781 "is also a little obscure."
1782 msgstr ""
1783
1784 #. type: textblock
1785 #: ../src/guestfs.pod:846
1786 msgid ""
1787 "This could be fixed in the generator by specially marking parameters and "
1788 "return values which take bytes or other units."
1789 msgstr ""
1790
1791 #. type: =item
1792 #: ../src/guestfs.pod:849
1793 msgid "Ambiguity between devices and paths"
1794 msgstr ""
1795
1796 #. type: textblock
1797 #: ../src/guestfs.pod:851
1798 msgid ""
1799 "There is a subtle ambiguity in the API between a device name (eg. C</dev/"
1800 "sdb2>) and a similar pathname.  A file might just happen to be called "
1801 "C<sdb2> in the directory C</dev> (consider some non-Unix VM image)."
1802 msgstr ""
1803
1804 #. type: textblock
1805 #: ../src/guestfs.pod:856
1806 msgid ""
1807 "In the current API we usually resolve this ambiguity by having two separate "
1808 "calls, for example L</guestfs_checksum> and L</guestfs_checksum_device>.  "
1809 "Some API calls are ambiguous and (incorrectly) resolve the problem by "
1810 "detecting if the path supplied begins with C</dev/>."
1811 msgstr ""
1812
1813 #. type: textblock
1814 #: ../src/guestfs.pod:862
1815 msgid ""
1816 "To avoid both the ambiguity and the need to duplicate some calls, we could "
1817 "make paths/devices into structured names.  One way to do this would be to "
1818 "use a notation like grub (C<hd(0,0)>), although nobody really likes this "
1819 "aspect of grub.  Another way would be to use a structured type, equivalent "
1820 "to this OCaml type:"
1821 msgstr ""
1822
1823 #. type: verbatim
1824 #: ../src/guestfs.pod:868
1825 #, no-wrap
1826 msgid ""
1827 " type path = Path of string | Device of int | Partition of int * int\n"
1828 "\n"
1829 msgstr ""
1830
1831 #. type: textblock
1832 #: ../src/guestfs.pod:870
1833 msgid "which would allow you to pass arguments like:"
1834 msgstr ""
1835
1836 #. type: verbatim
1837 #: ../src/guestfs.pod:872
1838 #, no-wrap
1839 msgid ""
1840 " Path \"/foo/bar\"\n"
1841 " Device 1            (* /dev/sdb, or perhaps /dev/sda *)\n"
1842 " Partition (1, 2)    (* /dev/sdb2 (or is it /dev/sda2 or /dev/sdb3?) *)\n"
1843 " Path \"/dev/sdb2\"    (* not a device *)\n"
1844 "\n"
1845 msgstr ""
1846
1847 #. type: textblock
1848 #: ../src/guestfs.pod:877
1849 msgid ""
1850 "As you can see there are still problems to resolve even with this "
1851 "representation.  Also consider how it might work in guestfish."
1852 msgstr ""
1853
1854 #. type: =head2
1855 #: ../src/guestfs.pod:882
1856 msgid "PROTOCOL LIMITS"
1857 msgstr ""
1858
1859 #. type: textblock
1860 #: ../src/guestfs.pod:884
1861 msgid ""
1862 "Internally libguestfs uses a message-based protocol to pass API calls and "
1863 "their responses to and from a small \"appliance\" (see L</INTERNALS> for "
1864 "plenty more detail about this).  The maximum message size used by the "
1865 "protocol is slightly less than 4 MB.  For some API calls you may need to be "
1866 "aware of this limit.  The API calls which may be affected are individually "
1867 "documented, with a link back to this section of the documentation."
1868 msgstr ""
1869
1870 #. type: textblock
1871 #: ../src/guestfs.pod:892
1872 msgid ""
1873 "A simple call such as L</guestfs_cat> returns its result (the file data) in "
1874 "a simple string.  Because this string is at some point internally encoded as "
1875 "a message, the maximum size that it can return is slightly under 4 MB.  If "
1876 "the requested file is larger than this then you will get an error."
1877 msgstr ""
1878
1879 #. type: textblock
1880 #: ../src/guestfs.pod:898
1881 msgid ""
1882 "In order to transfer large files into and out of the guest filesystem, you "
1883 "need to use particular calls that support this.  The sections L</UPLOADING> "
1884 "and L</DOWNLOADING> document how to do this."
1885 msgstr ""
1886
1887 #. type: textblock
1888 #: ../src/guestfs.pod:902
1889 msgid ""
1890 "You might also consider mounting the disk image using our FUSE filesystem "
1891 "support (L<guestmount(1)>)."
1892 msgstr ""
1893
1894 #. type: =head2
1895 #: ../src/guestfs.pod:905
1896 msgid "KEYS AND PASSPHRASES"
1897 msgstr ""
1898
1899 #. type: textblock
1900 #: ../src/guestfs.pod:907
1901 msgid ""
1902 "Certain libguestfs calls take a parameter that contains sensitive key "
1903 "material, passed in as a C string."
1904 msgstr ""
1905
1906 #. type: textblock
1907 #: ../src/guestfs.pod:910
1908 msgid ""
1909 "In the future we would hope to change the libguestfs implementation so that "
1910 "keys are L<mlock(2)>-ed into physical RAM, and thus can never end up in "
1911 "swap.  However this is I<not> done at the moment, because of the complexity "
1912 "of such an implementation."
1913 msgstr ""
1914
1915 #. type: textblock
1916 #: ../src/guestfs.pod:915
1917 msgid ""
1918 "Therefore you should be aware that any key parameter you pass to libguestfs "
1919 "might end up being written out to the swap partition.  If this is a concern, "
1920 "scrub the swap partition or don't use libguestfs on encrypted devices."
1921 msgstr ""
1922
1923 #. type: =head2
1924 #: ../src/guestfs.pod:920
1925 msgid "MULTIPLE HANDLES AND MULTIPLE THREADS"
1926 msgstr ""
1927
1928 #. type: textblock
1929 #: ../src/guestfs.pod:922
1930 msgid ""
1931 "All high-level libguestfs actions are synchronous.  If you want to use "
1932 "libguestfs asynchronously then you must create a thread."
1933 msgstr ""
1934
1935 #. type: textblock
1936 #: ../src/guestfs.pod:925
1937 msgid ""
1938 "Only use the handle from a single thread.  Either use the handle exclusively "
1939 "from one thread, or provide your own mutex so that two threads cannot issue "
1940 "calls on the same handle at the same time."
1941 msgstr ""
1942
1943 #. type: textblock
1944 #: ../src/guestfs.pod:929
1945 msgid ""
1946 "See the graphical program guestfs-browser for one possible architecture for "
1947 "multithreaded programs using libvirt and libguestfs."
1948 msgstr ""
1949
1950 #. type: =head2
1951 #: ../src/guestfs.pod:932
1952 msgid "PATH"
1953 msgstr "ШЛЯХ"
1954
1955 #. type: textblock
1956 #: ../src/guestfs.pod:934
1957 msgid ""
1958 "Libguestfs needs a supermin appliance, which it finds by looking along an "
1959 "internal path."
1960 msgstr ""
1961
1962 #. type: textblock
1963 #: ../src/guestfs.pod:937
1964 msgid ""
1965 "By default it looks for these in the directory C<$libdir/guestfs> (eg. C</"
1966 "usr/local/lib/guestfs> or C</usr/lib64/guestfs>)."
1967 msgstr ""
1968
1969 #. type: textblock
1970 #: ../src/guestfs.pod:940
1971 msgid ""
1972 "Use L</guestfs_set_path> or set the environment variable L</LIBGUESTFS_PATH> "
1973 "to change the directories that libguestfs will search in.  The value is a "
1974 "colon-separated list of paths.  The current directory is I<not> searched "
1975 "unless the path contains an empty element or C<.>.  For example "
1976 "C<LIBGUESTFS_PATH=:/usr/lib/guestfs> would search the current directory and "
1977 "then C</usr/lib/guestfs>."
1978 msgstr ""
1979
1980 #. type: =head2
1981 #: ../src/guestfs.pod:947
1982 msgid "QEMU WRAPPERS"
1983 msgstr ""
1984
1985 #. type: textblock
1986 #: ../src/guestfs.pod:949
1987 msgid ""
1988 "If you want to compile your own qemu, run qemu from a non-standard location, "
1989 "or pass extra arguments to qemu, then you can write a shell-script wrapper "
1990 "around qemu."
1991 msgstr ""
1992
1993 #. type: textblock
1994 #: ../src/guestfs.pod:953
1995 msgid ""
1996 "There is one important rule to remember: you I<must C<exec qemu>> as the "
1997 "last command in the shell script (so that qemu replaces the shell and "
1998 "becomes the direct child of the libguestfs-using program).  If you don't do "
1999 "this, then the qemu process won't be cleaned up correctly."
2000 msgstr ""
2001
2002 #. type: textblock
2003 #: ../src/guestfs.pod:958
2004 msgid ""
2005 "Here is an example of a wrapper, where I have built my own copy of qemu from "
2006 "source:"
2007 msgstr ""
2008
2009 #. type: verbatim
2010 #: ../src/guestfs.pod:961
2011 #, no-wrap
2012 msgid ""
2013 " #!/bin/sh -\n"
2014 " qemudir=/home/rjones/d/qemu\n"
2015 " exec $qemudir/x86_64-softmmu/qemu-system-x86_64 -L $qemudir/pc-bios \"$@\"\n"
2016 "\n"
2017 msgstr ""
2018
2019 #. type: textblock
2020 #: ../src/guestfs.pod:965
2021 msgid ""
2022 "Save this script as C</tmp/qemu.wrapper> (or wherever), C<chmod +x>, and "
2023 "then use it by setting the LIBGUESTFS_QEMU environment variable.  For "
2024 "example:"
2025 msgstr ""
2026
2027 #. type: verbatim
2028 #: ../src/guestfs.pod:969
2029 #, no-wrap
2030 msgid ""
2031 " LIBGUESTFS_QEMU=/tmp/qemu.wrapper guestfish\n"
2032 "\n"
2033 msgstr ""
2034
2035 #. type: textblock
2036 #: ../src/guestfs.pod:971
2037 msgid ""
2038 "Note that libguestfs also calls qemu with the -help and -version options in "
2039 "order to determine features."
2040 msgstr ""
2041
2042 #. type: =head2
2043 #: ../src/guestfs.pod:974
2044 msgid "ATTACHING TO RUNNING DAEMONS"
2045 msgstr ""
2046
2047 #. type: textblock
2048 #: ../src/guestfs.pod:976
2049 msgid ""
2050 "I<Note (1):> This is B<highly experimental> and has a tendency to eat "
2051 "babies.  Use with caution."
2052 msgstr ""
2053
2054 #. type: textblock
2055 #: ../src/guestfs.pod:979
2056 msgid ""
2057 "I<Note (2):> This section explains how to attach to a running daemon from a "
2058 "low level perspective.  For most users, simply using virt tools such as "
2059 "L<guestfish(1)> with the I<--live> option will \"just work\"."
2060 msgstr ""
2061
2062 #. type: =head3
2063 #: ../src/guestfs.pod:983
2064 msgid "Using guestfs_set_attach_method"
2065 msgstr ""
2066
2067 #. type: textblock
2068 #: ../src/guestfs.pod:985
2069 msgid ""
2070 "By calling L</guestfs_set_attach_method> you can change how the library "
2071 "connects to the C<guestfsd> daemon in L</guestfs_launch> (read L</"
2072 "ARCHITECTURE> for some background)."
2073 msgstr ""
2074
2075 #. type: textblock
2076 #: ../src/guestfs.pod:989
2077 msgid ""
2078 "The normal attach method is C<appliance>, where a small appliance is created "
2079 "containing the daemon, and then the library connects to this."
2080 msgstr ""
2081
2082 #. type: textblock
2083 #: ../src/guestfs.pod:992
2084 msgid ""
2085 "Setting attach method to C<unix:I<path>> (where I<path> is the path of a "
2086 "Unix domain socket) causes L</guestfs_launch> to connect to an existing "
2087 "daemon over the Unix domain socket."
2088 msgstr ""
2089
2090 #. type: textblock
2091 #: ../src/guestfs.pod:996
2092 msgid ""
2093 "The normal use for this is to connect to a running virtual machine that "
2094 "contains a C<guestfsd> daemon, and send commands so you can read and write "
2095 "files inside the live virtual machine."
2096 msgstr ""
2097
2098 #. type: =head3
2099 #: ../src/guestfs.pod:1000
2100 msgid "Using guestfs_add_domain with live flag"
2101 msgstr ""
2102
2103 #. type: textblock
2104 #: ../src/guestfs.pod:1002
2105 msgid ""
2106 "L</guestfs_add_domain> provides some help for getting the correct attach "
2107 "method.  If you pass the C<live> option to this function, then (if the "
2108 "virtual machine is running) it will examine the libvirt XML looking for a "
2109 "virtio-serial channel to connect to:"
2110 msgstr ""
2111
2112 #. type: verbatim
2113 #: ../src/guestfs.pod:1008
2114 #, no-wrap
2115 msgid ""
2116 " <domain>\n"
2117 "   ...\n"
2118 "   <devices>\n"
2119 "     ...\n"
2120 "     <channel type='unix'>\n"
2121 "       <source mode='bind' path='/path/to/socket'/>\n"
2122 "       <target type='virtio' name='org.libguestfs.channel.0'/>\n"
2123 "     </channel>\n"
2124 "     ...\n"
2125 "   </devices>\n"
2126 " </domain>\n"
2127 "\n"
2128 msgstr ""
2129
2130 #. type: textblock
2131 #: ../src/guestfs.pod:1020
2132 msgid ""
2133 "L</guestfs_add_domain> extracts C</path/to/socket> and sets the attach "
2134 "method to C<unix:/path/to/socket>."
2135 msgstr ""
2136
2137 #. type: textblock
2138 #: ../src/guestfs.pod:1023
2139 msgid ""
2140 "Some of the libguestfs tools (including guestfish) support a I<--live> "
2141 "option which is passed through to L</guestfs_add_domain> thus allowing you "
2142 "to attach to and modify live virtual machines."
2143 msgstr ""
2144
2145 #. type: textblock
2146 #: ../src/guestfs.pod:1027
2147 msgid ""
2148 "The virtual machine needs to have been set up beforehand so that it has the "
2149 "virtio-serial channel and so that guestfsd is running inside it."
2150 msgstr ""
2151
2152 #. type: =head2
2153 #: ../src/guestfs.pod:1031
2154 msgid "ABI GUARANTEE"
2155 msgstr ""
2156
2157 #. type: textblock
2158 #: ../src/guestfs.pod:1033
2159 msgid ""
2160 "We guarantee the libguestfs ABI (binary interface), for public, high-level "
2161 "actions as outlined in this section.  Although we will deprecate some "
2162 "actions, for example if they get replaced by newer calls, we will keep the "
2163 "old actions forever.  This allows you the developer to program in confidence "
2164 "against the libguestfs API."
2165 msgstr ""
2166
2167 #. type: =head2
2168 #: ../src/guestfs.pod:1039
2169 msgid "BLOCK DEVICE NAMING"
2170 msgstr ""
2171
2172 #. type: textblock
2173 #: ../src/guestfs.pod:1041
2174 msgid ""
2175 "In the kernel there is now quite a profusion of schemata for naming block "
2176 "devices (in this context, by I<block device> I mean a physical or virtual "
2177 "hard drive).  The original Linux IDE driver used names starting with C</dev/"
2178 "hd*>.  SCSI devices have historically used a different naming scheme, C</dev/"
2179 "sd*>.  When the Linux kernel I<libata> driver became a popular replacement "
2180 "for the old IDE driver (particularly for SATA devices) those devices also "
2181 "used the C</dev/sd*> scheme.  Additionally we now have virtual machines with "
2182 "paravirtualized drivers.  This has created several different naming systems, "
2183 "such as C</dev/vd*> for virtio disks and C</dev/xvd*> for Xen PV disks."
2184 msgstr ""
2185
2186 #. type: textblock
2187 #: ../src/guestfs.pod:1053
2188 msgid ""
2189 "As discussed above, libguestfs uses a qemu appliance running an embedded "
2190 "Linux kernel to access block devices.  We can run a variety of appliances "
2191 "based on a variety of Linux kernels."
2192 msgstr ""
2193
2194 #. type: textblock
2195 #: ../src/guestfs.pod:1057
2196 msgid ""
2197 "This causes a problem for libguestfs because many API calls use device or "
2198 "partition names.  Working scripts and the recipe (example) scripts that we "
2199 "make available over the internet could fail if the naming scheme changes."
2200 msgstr ""
2201
2202 #. type: textblock
2203 #: ../src/guestfs.pod:1062
2204 msgid ""
2205 "Therefore libguestfs defines C</dev/sd*> as the I<standard naming scheme>.  "
2206 "Internally C</dev/sd*> names are translated, if necessary, to other names as "
2207 "required.  For example, under RHEL 5 which uses the C</dev/hd*> scheme, any "
2208 "device parameter C</dev/sda2> is translated to C</dev/hda2> transparently."
2209 msgstr ""
2210
2211 #. type: textblock
2212 #: ../src/guestfs.pod:1068
2213 msgid ""
2214 "Note that this I<only> applies to parameters.  The L</guestfs_list_devices>, "
2215 "L</guestfs_list_partitions> and similar calls return the true names of the "
2216 "devices and partitions as known to the appliance."
2217 msgstr ""
2218
2219 #. type: =head3
2220 #: ../src/guestfs.pod:1073
2221 msgid "ALGORITHM FOR BLOCK DEVICE NAME TRANSLATION"
2222 msgstr ""
2223
2224 #. type: textblock
2225 #: ../src/guestfs.pod:1075
2226 msgid ""
2227 "Usually this translation is transparent.  However in some (very rare)  cases "
2228 "you may need to know the exact algorithm.  Such cases include where you use "
2229 "L</guestfs_config> to add a mixture of virtio and IDE devices to the qemu-"
2230 "based appliance, so have a mixture of C</dev/sd*> and C</dev/vd*> devices."
2231 msgstr ""
2232
2233 #. type: textblock
2234 #: ../src/guestfs.pod:1081
2235 msgid ""
2236 "The algorithm is applied only to I<parameters> which are known to be either "
2237 "device or partition names.  Return values from functions such as L</"
2238 "guestfs_list_devices> are never changed."
2239 msgstr ""
2240
2241 #. type: textblock
2242 #: ../src/guestfs.pod:1089
2243 msgid "Is the string a parameter which is a device or partition name?"
2244 msgstr ""
2245
2246 #. type: textblock
2247 #: ../src/guestfs.pod:1093
2248 msgid "Does the string begin with C</dev/sd>?"
2249 msgstr ""
2250
2251 #. type: textblock
2252 #: ../src/guestfs.pod:1097
2253 msgid ""
2254 "Does the named device exist? If so, we use that device.  However if I<not> "
2255 "then we continue with this algorithm."
2256 msgstr ""
2257
2258 #. type: textblock
2259 #: ../src/guestfs.pod:1102
2260 msgid "Replace initial C</dev/sd> string with C</dev/hd>."
2261 msgstr ""
2262
2263 #. type: textblock
2264 #: ../src/guestfs.pod:1104
2265 msgid "For example, change C</dev/sda2> to C</dev/hda2>."
2266 msgstr ""
2267
2268 #. type: textblock
2269 #: ../src/guestfs.pod:1106
2270 msgid "If that named device exists, use it.  If not, continue."
2271 msgstr ""
2272
2273 #. type: textblock
2274 #: ../src/guestfs.pod:1110
2275 msgid "Replace initial C</dev/sd> string with C</dev/vd>."
2276 msgstr ""
2277
2278 #. type: textblock
2279 #: ../src/guestfs.pod:1112
2280 msgid "If that named device exists, use it.  If not, return an error."
2281 msgstr ""
2282
2283 #. type: =head3
2284 #: ../src/guestfs.pod:1116
2285 msgid "PORTABILITY CONCERNS WITH BLOCK DEVICE NAMING"
2286 msgstr ""
2287
2288 #. type: textblock
2289 #: ../src/guestfs.pod:1118
2290 msgid ""
2291 "Although the standard naming scheme and automatic translation is useful for "
2292 "simple programs and guestfish scripts, for larger programs it is best not to "
2293 "rely on this mechanism."
2294 msgstr ""
2295
2296 #. type: textblock
2297 #: ../src/guestfs.pod:1122
2298 msgid ""
2299 "Where possible for maximum future portability programs using libguestfs "
2300 "should use these future-proof techniques:"
2301 msgstr ""
2302
2303 #. type: textblock
2304 #: ../src/guestfs.pod:1129
2305 msgid ""
2306 "Use L</guestfs_list_devices> or L</guestfs_list_partitions> to list actual "
2307 "device names, and then use those names directly."
2308 msgstr ""
2309
2310 #. type: textblock
2311 #: ../src/guestfs.pod:1132
2312 msgid ""
2313 "Since those device names exist by definition, they will never be translated."
2314 msgstr ""
2315
2316 #. type: textblock
2317 #: ../src/guestfs.pod:1137
2318 msgid ""
2319 "Use higher level ways to identify filesystems, such as LVM names, UUIDs and "
2320 "filesystem labels."
2321 msgstr ""
2322
2323 #. type: =head1
2324 #: ../src/guestfs.pod:1142
2325 msgid "SECURITY"
2326 msgstr "БЕЗПЕКА"
2327
2328 #. type: textblock
2329 #: ../src/guestfs.pod:1144
2330 msgid ""
2331 "This section discusses security implications of using libguestfs, "
2332 "particularly with untrusted or malicious guests or disk images."
2333 msgstr ""
2334
2335 #. type: =head2
2336 #: ../src/guestfs.pod:1147
2337 msgid "GENERAL SECURITY CONSIDERATIONS"
2338 msgstr ""
2339
2340 #. type: textblock
2341 #: ../src/guestfs.pod:1149
2342 msgid ""
2343 "Be careful with any files or data that you download from a guest (by "
2344 "\"download\" we mean not just the L</guestfs_download> command but any "
2345 "command that reads files, filenames, directories or anything else from a "
2346 "disk image).  An attacker could manipulate the data to fool your program "
2347 "into doing the wrong thing.  Consider cases such as:"
2348 msgstr ""
2349
2350 #. type: textblock
2351 #: ../src/guestfs.pod:1159
2352 msgid "the data (file etc) not being present"
2353 msgstr ""
2354
2355 #. type: textblock
2356 #: ../src/guestfs.pod:1163
2357 msgid "being present but empty"
2358 msgstr ""
2359
2360 #. type: textblock
2361 #: ../src/guestfs.pod:1167
2362 msgid "being much larger than normal"
2363 msgstr ""
2364
2365 #. type: textblock
2366 #: ../src/guestfs.pod:1171
2367 msgid "containing arbitrary 8 bit data"
2368 msgstr ""
2369
2370 #. type: textblock
2371 #: ../src/guestfs.pod:1175
2372 msgid "being in an unexpected character encoding"
2373 msgstr ""
2374
2375 #. type: textblock
2376 #: ../src/guestfs.pod:1179
2377 msgid "containing homoglyphs."
2378 msgstr ""
2379
2380 #. type: =head2
2381 #: ../src/guestfs.pod:1183
2382 msgid "SECURITY OF MOUNTING FILESYSTEMS"
2383 msgstr ""
2384
2385 #. type: textblock
2386 #: ../src/guestfs.pod:1185
2387 msgid ""
2388 "When you mount a filesystem under Linux, mistakes in the kernel filesystem "
2389 "(VFS) module can sometimes be escalated into exploits by deliberately "
2390 "creating a malicious, malformed filesystem.  These exploits are very severe "
2391 "for two reasons.  Firstly there are very many filesystem drivers in the "
2392 "kernel, and many of them are infrequently used and not much developer "
2393 "attention has been paid to the code.  Linux userspace helps potential "
2394 "crackers by detecting the filesystem type and automatically choosing the "
2395 "right VFS driver, even if that filesystem type is obscure or unexpected for "
2396 "the administrator.  Secondly, a kernel-level exploit is like a local root "
2397 "exploit (worse in some ways), giving immediate and total access to the "
2398 "system right down to the hardware level."
2399 msgstr ""
2400
2401 #. type: textblock
2402 #: ../src/guestfs.pod:1198
2403 msgid ""
2404 "That explains why you should never mount a filesystem from an untrusted "
2405 "guest on your host kernel.  How about libguestfs? We run a Linux kernel "
2406 "inside a qemu virtual machine, usually running as a non-root user.  The "
2407 "attacker would need to write a filesystem which first exploited the kernel, "
2408 "and then exploited either qemu virtualization (eg. a faulty qemu driver) or "
2409 "the libguestfs protocol, and finally to be as serious as the host kernel "
2410 "exploit it would need to escalate its privileges to root.  This multi-step "
2411 "escalation, performed by a static piece of data, is thought to be extremely "
2412 "hard to do, although we never say 'never' about security issues."
2413 msgstr ""
2414
2415 #. type: textblock
2416 #: ../src/guestfs.pod:1209
2417 msgid ""
2418 "In any case callers can reduce the attack surface by forcing the filesystem "
2419 "type when mounting (use L</guestfs_mount_vfs>)."
2420 msgstr ""
2421
2422 #. type: =head2
2423 #: ../src/guestfs.pod:1212
2424 msgid "PROTOCOL SECURITY"
2425 msgstr ""
2426
2427 #. type: textblock
2428 #: ../src/guestfs.pod:1214
2429 msgid ""
2430 "The protocol is designed to be secure, being based on RFC 4506 (XDR)  with a "
2431 "defined upper message size.  However a program that uses libguestfs must "
2432 "also take care - for example you can write a program that downloads a binary "
2433 "from a disk image and executes it locally, and no amount of protocol "
2434 "security will save you from the consequences."
2435 msgstr ""
2436
2437 #. type: =head2
2438 #: ../src/guestfs.pod:1220
2439 msgid "INSPECTION SECURITY"
2440 msgstr ""
2441
2442 #. type: textblock
2443 #: ../src/guestfs.pod:1222
2444 msgid ""
2445 "Parts of the inspection API (see L</INSPECTION>) return untrusted strings "
2446 "directly from the guest, and these could contain any 8 bit data.  Callers "
2447 "should be careful to escape these before printing them to a structured file "
2448 "(for example, use HTML escaping if creating a web page)."
2449 msgstr ""
2450
2451 #. type: textblock
2452 #: ../src/guestfs.pod:1228
2453 msgid ""
2454 "Guest configuration may be altered in unusual ways by the administrator of "
2455 "the virtual machine, and may not reflect reality (particularly for untrusted "
2456 "or actively malicious guests).  For example we parse the hostname from "
2457 "configuration files like C</etc/sysconfig/network> that we find in the "
2458 "guest, but the guest administrator can easily manipulate these files to "
2459 "provide the wrong hostname."
2460 msgstr ""
2461
2462 #. type: textblock
2463 #: ../src/guestfs.pod:1236
2464 msgid ""
2465 "The inspection API parses guest configuration using two external libraries: "
2466 "Augeas (Linux configuration) and hivex (Windows Registry).  Both are "
2467 "designed to be robust in the face of malicious data, although denial of "
2468 "service attacks are still possible, for example with oversized configuration "
2469 "files."
2470 msgstr ""
2471
2472 #. type: =head2
2473 #: ../src/guestfs.pod:1242
2474 msgid "RUNNING UNTRUSTED GUEST COMMANDS"
2475 msgstr ""
2476
2477 #. type: textblock
2478 #: ../src/guestfs.pod:1244
2479 msgid ""
2480 "Be very cautious about running commands from the guest.  By running a "
2481 "command in the guest, you are giving CPU time to a binary that you do not "
2482 "control, under the same user account as the library, albeit wrapped in qemu "
2483 "virtualization.  More information and alternatives can be found in the "
2484 "section L</RUNNING COMMANDS>."
2485 msgstr ""
2486
2487 #. type: =head2
2488 #: ../src/guestfs.pod:1250
2489 msgid "CVE-2010-3851"
2490 msgstr "CVE-2010-3851"
2491
2492 #. type: textblock
2493 #: ../src/guestfs.pod:1252
2494 msgid "https://bugzilla.redhat.com/642934"
2495 msgstr "https://bugzilla.redhat.com/642934"
2496
2497 #. type: textblock
2498 #: ../src/guestfs.pod:1254
2499 msgid ""
2500 "This security bug concerns the automatic disk format detection that qemu "
2501 "does on disk images."
2502 msgstr ""
2503
2504 #. type: textblock
2505 #: ../src/guestfs.pod:1257
2506 msgid ""
2507 "A raw disk image is just the raw bytes, there is no header.  Other disk "
2508 "images like qcow2 contain a special header.  Qemu deals with this by looking "
2509 "for one of the known headers, and if none is found then assuming the disk "
2510 "image must be raw."
2511 msgstr ""
2512
2513 #. type: textblock
2514 #: ../src/guestfs.pod:1262
2515 msgid ""
2516 "This allows a guest which has been given a raw disk image to write some "
2517 "other header.  At next boot (or when the disk image is accessed by "
2518 "libguestfs) qemu would do autodetection and think the disk image format was, "
2519 "say, qcow2 based on the header written by the guest."
2520 msgstr ""
2521
2522 #. type: textblock
2523 #: ../src/guestfs.pod:1267
2524 msgid ""
2525 "This in itself would not be a problem, but qcow2 offers many features, one "
2526 "of which is to allow a disk image to refer to another image (called the "
2527 "\"backing disk\").  It does this by placing the path to the backing disk "
2528 "into the qcow2 header.  This path is not validated and could point to any "
2529 "host file (eg. \"/etc/passwd\").  The backing disk is then exposed through "
2530 "\"holes\" in the qcow2 disk image, which of course is completely under the "
2531 "control of the attacker."
2532 msgstr ""
2533
2534 #. type: textblock
2535 #: ../src/guestfs.pod:1275
2536 msgid ""
2537 "In libguestfs this is rather hard to exploit except under two circumstances:"
2538 msgstr ""
2539
2540 #. type: textblock
2541 #: ../src/guestfs.pod:1282
2542 msgid "You have enabled the network or have opened the disk in write mode."
2543 msgstr ""
2544
2545 #. type: textblock
2546 #: ../src/guestfs.pod:1286
2547 msgid ""
2548 "You are also running untrusted code from the guest (see L</RUNNING "
2549 "COMMANDS>)."
2550 msgstr ""
2551
2552 #. type: textblock
2553 #: ../src/guestfs.pod:1291
2554 msgid ""
2555 "The way to avoid this is to specify the expected disk format when adding "
2556 "disks (the optional C<format> option to L</guestfs_add_drive_opts>).  You "
2557 "should always do this if the disk is raw format, and it's a good idea for "
2558 "other cases too."
2559 msgstr ""
2560
2561 #. type: textblock
2562 #: ../src/guestfs.pod:1296
2563 msgid ""
2564 "For disks added from libvirt using calls like L</guestfs_add_domain>, the "
2565 "format is fetched from libvirt and passed through."
2566 msgstr ""
2567
2568 #. type: textblock
2569 #: ../src/guestfs.pod:1299
2570 msgid ""
2571 "For libguestfs tools, use the I<--format> command line parameter as "
2572 "appropriate."
2573 msgstr ""
2574
2575 #. type: =head1
2576 #: ../src/guestfs.pod:1302
2577 msgid "CONNECTION MANAGEMENT"
2578 msgstr ""
2579
2580 #. type: =head2
2581 #: ../src/guestfs.pod:1304
2582 msgid "guestfs_h *"
2583 msgstr ""
2584
2585 #. type: textblock
2586 #: ../src/guestfs.pod:1306
2587 msgid ""
2588 "C<guestfs_h> is the opaque type representing a connection handle.  Create a "
2589 "handle by calling L</guestfs_create>.  Call L</guestfs_close> to free the "
2590 "handle and release all resources used."
2591 msgstr ""
2592
2593 #. type: textblock
2594 #: ../src/guestfs.pod:1310
2595 msgid ""
2596 "For information on using multiple handles and threads, see the section L</"
2597 "MULTIPLE HANDLES AND MULTIPLE THREADS> below."
2598 msgstr ""
2599
2600 #. type: =head2
2601 #: ../src/guestfs.pod:1313
2602 msgid "guestfs_create"
2603 msgstr ""
2604
2605 #. type: verbatim
2606 #: ../src/guestfs.pod:1315
2607 #, no-wrap
2608 msgid ""
2609 " guestfs_h *guestfs_create (void);\n"
2610 "\n"
2611 msgstr ""
2612
2613 #. type: textblock
2614 #: ../src/guestfs.pod:1317
2615 msgid "Create a connection handle."
2616 msgstr ""
2617
2618 #. type: textblock
2619 #: ../src/guestfs.pod:1319
2620 msgid ""
2621 "You have to call L</guestfs_add_drive_opts> (or one of the equivalent calls) "
2622 "on the handle at least once."
2623 msgstr ""
2624
2625 #. type: textblock
2626 #: ../src/guestfs.pod:1322
2627 msgid ""
2628 "This function returns a non-NULL pointer to a handle on success or NULL on "
2629 "error."
2630 msgstr ""
2631
2632 #. type: textblock
2633 #: ../src/guestfs.pod:1325
2634 msgid "After configuring the handle, you have to call L</guestfs_launch>."
2635 msgstr ""
2636
2637 #. type: textblock
2638 #: ../src/guestfs.pod:1327
2639 msgid ""
2640 "You may also want to configure error handling for the handle.  See L</ERROR "
2641 "HANDLING> section below."
2642 msgstr ""
2643
2644 #. type: =head2
2645 #: ../src/guestfs.pod:1330
2646 msgid "guestfs_close"
2647 msgstr ""
2648
2649 #. type: verbatim
2650 #: ../src/guestfs.pod:1332
2651 #, no-wrap
2652 msgid ""
2653 " void guestfs_close (guestfs_h *g);\n"
2654 "\n"
2655 msgstr ""
2656
2657 #. type: textblock
2658 #: ../src/guestfs.pod:1334
2659 msgid "This closes the connection handle and frees up all resources used."
2660 msgstr ""
2661
2662 #. type: =head1
2663 #: ../src/guestfs.pod:1336
2664 msgid "ERROR HANDLING"
2665 msgstr "ОБРОБКА ПОМИЛОК"
2666
2667 #. type: textblock
2668 #: ../src/guestfs.pod:1338
2669 msgid ""
2670 "API functions can return errors.  For example, almost all functions that "
2671 "return C<int> will return C<-1> to indicate an error."
2672 msgstr ""
2673
2674 #. type: textblock
2675 #: ../src/guestfs.pod:1341
2676 msgid ""
2677 "Additional information is available for errors: an error message string and "
2678 "optionally an error number (errno) if the thing that failed was a system "
2679 "call."
2680 msgstr ""
2681
2682 #. type: textblock
2683 #: ../src/guestfs.pod:1345
2684 msgid ""
2685 "You can get at the additional information about the last error on the handle "
2686 "by calling L</guestfs_last_error>, L</guestfs_last_errno>, and/or by setting "
2687 "up an error handler with L</guestfs_set_error_handler>."
2688 msgstr ""
2689
2690 #. type: textblock
2691 #: ../src/guestfs.pod:1350
2692 msgid ""
2693 "When the handle is created, a default error handler is installed which "
2694 "prints the error message string to C<stderr>.  For small short-running "
2695 "command line programs it is sufficient to do:"
2696 msgstr ""
2697
2698 #. type: verbatim
2699 #: ../src/guestfs.pod:1354
2700 #, no-wrap
2701 msgid ""
2702 " if (guestfs_launch (g) == -1)\n"
2703 "   exit (EXIT_FAILURE);\n"
2704 "\n"
2705 msgstr ""
2706
2707 #. type: textblock
2708 #: ../src/guestfs.pod:1357
2709 msgid ""
2710 "since the default error handler will ensure that an error message has been "
2711 "printed to C<stderr> before the program exits."
2712 msgstr ""
2713
2714 #. type: textblock
2715 #: ../src/guestfs.pod:1360
2716 msgid ""
2717 "For other programs the caller will almost certainly want to install an "
2718 "alternate error handler or do error handling in-line like this:"
2719 msgstr ""
2720
2721 #. type: verbatim
2722 #: ../src/guestfs.pod:1363
2723 #, no-wrap
2724 msgid ""
2725 " g = guestfs_create ();\n"
2726 " \n"
2727 msgstr ""
2728
2729 #. type: verbatim
2730 #: ../src/guestfs.pod:1365
2731 #, no-wrap
2732 msgid ""
2733 " /* This disables the default behaviour of printing errors\n"
2734 "    on stderr. */\n"
2735 " guestfs_set_error_handler (g, NULL, NULL);\n"
2736 " \n"
2737 msgstr ""
2738
2739 #. type: verbatim
2740 #: ../src/guestfs.pod:1369
2741 #, no-wrap
2742 msgid ""
2743 " if (guestfs_launch (g) == -1) {\n"
2744 "   /* Examine the error message and print it etc. */\n"
2745 "   char *msg = guestfs_last_error (g);\n"
2746 "   int errnum = guestfs_last_errno (g);\n"
2747 "   fprintf (stderr, \"%s\\n\", msg);\n"
2748 "   /* ... */\n"
2749 "  }\n"
2750 "\n"
2751 msgstr ""
2752
2753 #. type: textblock
2754 #: ../src/guestfs.pod:1377
2755 msgid ""
2756 "Out of memory errors are handled differently.  The default action is to call "
2757 "L<abort(3)>.  If this is undesirable, then you can set a handler using L</"
2758 "guestfs_set_out_of_memory_handler>."
2759 msgstr ""
2760
2761 #. type: textblock
2762 #: ../src/guestfs.pod:1381
2763 msgid ""
2764 "L</guestfs_create> returns C<NULL> if the handle cannot be created, and "
2765 "because there is no handle if this happens there is no way to get additional "
2766 "error information.  However L</guestfs_create> is supposed to be a "
2767 "lightweight operation which can only fail because of insufficient memory (it "
2768 "returns NULL in this case)."
2769 msgstr ""
2770
2771 #. type: =head2
2772 #: ../src/guestfs.pod:1387
2773 msgid "guestfs_last_error"
2774 msgstr ""
2775
2776 #. type: verbatim
2777 #: ../src/guestfs.pod:1389
2778 #, no-wrap
2779 msgid ""
2780 " const char *guestfs_last_error (guestfs_h *g);\n"
2781 "\n"
2782 msgstr ""
2783
2784 #. type: textblock
2785 #: ../src/guestfs.pod:1391
2786 msgid ""
2787 "This returns the last error message that happened on C<g>.  If there has not "
2788 "been an error since the handle was created, then this returns C<NULL>."
2789 msgstr ""
2790
2791 #. type: textblock
2792 #: ../src/guestfs.pod:1395
2793 msgid ""
2794 "The lifetime of the returned string is until the next error occurs, or L</"
2795 "guestfs_close> is called."
2796 msgstr ""
2797
2798 #. type: =head2
2799 #: ../src/guestfs.pod:1398
2800 msgid "guestfs_last_errno"
2801 msgstr ""
2802
2803 #. type: verbatim
2804 #: ../src/guestfs.pod:1400
2805 #, no-wrap
2806 msgid ""
2807 " int guestfs_last_errno (guestfs_h *g);\n"
2808 "\n"
2809 msgstr ""
2810
2811 #. type: textblock
2812 #: ../src/guestfs.pod:1402
2813 msgid "This returns the last error number (errno) that happened on C<g>."
2814 msgstr ""
2815
2816 #. type: textblock
2817 #: ../src/guestfs.pod:1404
2818 msgid "If successful, an errno integer not equal to zero is returned."
2819 msgstr ""
2820
2821 #. type: textblock
2822 #: ../src/guestfs.pod:1406
2823 msgid ""
2824 "If no error, this returns 0.  This call can return 0 in three situations:"
2825 msgstr ""
2826
2827 #. type: textblock
2828 #: ../src/guestfs.pod:1413
2829 msgid "There has not been any error on the handle."
2830 msgstr ""
2831
2832 #. type: textblock
2833 #: ../src/guestfs.pod:1417
2834 msgid ""
2835 "There has been an error but the errno was meaningless.  This corresponds to "
2836 "the case where the error did not come from a failed system call, but for "
2837 "some other reason."
2838 msgstr ""
2839
2840 #. type: textblock
2841 #: ../src/guestfs.pod:1423
2842 msgid ""
2843 "There was an error from a failed system call, but for some reason the errno "
2844 "was not captured and returned.  This usually indicates a bug in libguestfs."
2845 msgstr ""
2846
2847 #. type: textblock
2848 #: ../src/guestfs.pod:1429
2849 msgid ""
2850 "Libguestfs tries to convert the errno from inside the applicance into a "
2851 "corresponding errno for the caller (not entirely trivial: the appliance "
2852 "might be running a completely different operating system from the library "
2853 "and error numbers are not standardized across Un*xen).  If this could not be "
2854 "done, then the error is translated to C<EINVAL>.  In practice this should "
2855 "only happen in very rare circumstances."
2856 msgstr ""
2857
2858 #. type: =head2
2859 #: ../src/guestfs.pod:1437
2860 msgid "guestfs_set_error_handler"
2861 msgstr ""
2862
2863 #. type: verbatim
2864 #: ../src/guestfs.pod:1439
2865 #, no-wrap
2866 msgid ""
2867 " typedef void (*guestfs_error_handler_cb) (guestfs_h *g,\n"
2868 "                                           void *opaque,\n"
2869 "                                           const char *msg);\n"
2870 " void guestfs_set_error_handler (guestfs_h *g,\n"
2871 "                                 guestfs_error_handler_cb cb,\n"
2872 "                                 void *opaque);\n"
2873 "\n"
2874 msgstr ""
2875
2876 #. type: textblock
2877 #: ../src/guestfs.pod:1446
2878 msgid ""
2879 "The callback C<cb> will be called if there is an error.  The parameters "
2880 "passed to the callback are an opaque data pointer and the error message "
2881 "string."
2882 msgstr ""
2883
2884 #. type: textblock
2885 #: ../src/guestfs.pod:1450
2886 msgid ""
2887 "C<errno> is not passed to the callback.  To get that the callback must call "
2888 "L</guestfs_last_errno>."
2889 msgstr ""
2890
2891 #. type: textblock
2892 #: ../src/guestfs.pod:1453
2893 msgid ""
2894 "Note that the message string C<msg> is freed as soon as the callback "
2895 "function returns, so if you want to stash it somewhere you must make your "
2896 "own copy."
2897 msgstr ""
2898
2899 #. type: textblock
2900 #: ../src/guestfs.pod:1457
2901 msgid "The default handler prints messages on C<stderr>."
2902 msgstr ""
2903
2904 #. type: textblock
2905 #: ../src/guestfs.pod:1459
2906 msgid "If you set C<cb> to C<NULL> then I<no> handler is called."
2907 msgstr ""
2908
2909 #. type: =head2
2910 #: ../src/guestfs.pod:1461
2911 msgid "guestfs_get_error_handler"
2912 msgstr ""
2913
2914 #. type: verbatim
2915 #: ../src/guestfs.pod:1463
2916 #, no-wrap
2917 msgid ""
2918 " guestfs_error_handler_cb guestfs_get_error_handler (guestfs_h *g,\n"
2919 "                                                     void **opaque_rtn);\n"
2920 "\n"
2921 msgstr ""
2922
2923 #. type: textblock
2924 #: ../src/guestfs.pod:1466
2925 msgid "Returns the current error handler callback."
2926 msgstr ""
2927
2928 #. type: =head2
2929 #: ../src/guestfs.pod:1468
2930 msgid "guestfs_set_out_of_memory_handler"
2931 msgstr ""
2932
2933 #. type: verbatim
2934 #: ../src/guestfs.pod:1470
2935 #, no-wrap
2936 msgid ""
2937 " typedef void (*guestfs_abort_cb) (void);\n"
2938 " int guestfs_set_out_of_memory_handler (guestfs_h *g,\n"
2939 "                                        guestfs_abort_cb);\n"
2940 "\n"
2941 msgstr ""
2942
2943 #. type: textblock
2944 #: ../src/guestfs.pod:1474
2945 msgid ""
2946 "The callback C<cb> will be called if there is an out of memory situation.  "
2947 "I<Note this callback must not return>."
2948 msgstr ""
2949
2950 #. type: textblock
2951 #: ../src/guestfs.pod:1477
2952 msgid "The default is to call L<abort(3)>."
2953 msgstr ""
2954
2955 #. type: textblock
2956 #: ../src/guestfs.pod:1479
2957 msgid ""
2958 "You cannot set C<cb> to C<NULL>.  You can't ignore out of memory situations."
2959 msgstr ""
2960
2961 #. type: =head2
2962 #: ../src/guestfs.pod:1482
2963 msgid "guestfs_get_out_of_memory_handler"
2964 msgstr ""
2965
2966 #. type: verbatim
2967 #: ../src/guestfs.pod:1484
2968 #, no-wrap
2969 msgid ""
2970 " guestfs_abort_fn guestfs_get_out_of_memory_handler (guestfs_h *g);\n"
2971 "\n"
2972 msgstr ""
2973
2974 #. type: textblock
2975 #: ../src/guestfs.pod:1486
2976 msgid "This returns the current out of memory handler."
2977 msgstr ""
2978
2979 #. type: =head1
2980 #: ../src/guestfs.pod:1488
2981 msgid "API CALLS"
2982 msgstr ""
2983
2984 #. type: textblock
2985 #: ../src/guestfs.pod:1490 ../fish/guestfish.pod:1008
2986 msgid "@ACTIONS@"
2987 msgstr "@ACTIONS@"
2988
2989 #. type: =head1
2990 #: ../src/guestfs.pod:1492
2991 msgid "STRUCTURES"
2992 msgstr "СТРУКТУРИ"
2993
2994 #. type: textblock
2995 #: ../src/guestfs.pod:1494
2996 msgid "@STRUCTS@"
2997 msgstr "@STRUCTS@"
2998
2999 #. type: =head1
3000 #: ../src/guestfs.pod:1496
3001 msgid "AVAILABILITY"
3002 msgstr ""
3003
3004 #. type: =head2
3005 #: ../src/guestfs.pod:1498
3006 msgid "GROUPS OF FUNCTIONALITY IN THE APPLIANCE"
3007 msgstr ""
3008
3009 #. type: textblock
3010 #: ../src/guestfs.pod:1500
3011 msgid ""
3012 "Using L</guestfs_available> you can test availability of the following "
3013 "groups of functions.  This test queries the appliance to see if the "
3014 "appliance you are currently using supports the functionality."
3015 msgstr ""
3016
3017 #. type: textblock
3018 #: ../src/guestfs.pod:1505
3019 msgid "@AVAILABILITY@"
3020 msgstr ""
3021
3022 #. type: =head2
3023 #: ../src/guestfs.pod:1507
3024 msgid "GUESTFISH supported COMMAND"
3025 msgstr ""
3026
3027 #. type: textblock
3028 #: ../src/guestfs.pod:1509
3029 msgid ""
3030 "In L<guestfish(3)> there is a handy interactive command C<supported> which "
3031 "prints out the available groups and whether they are supported by this build "
3032 "of libguestfs.  Note however that you have to do C<run> first."
3033 msgstr ""
3034
3035 #. type: =head2
3036 #: ../src/guestfs.pod:1514
3037 msgid "SINGLE CALLS AT COMPILE TIME"
3038 msgstr ""
3039
3040 #. type: textblock
3041 #: ../src/guestfs.pod:1516
3042 msgid ""
3043 "Since version 1.5.8, C<E<lt>guestfs.hE<gt>> defines symbols for each C API "
3044 "function, such as:"
3045 msgstr ""
3046
3047 #. type: verbatim
3048 #: ../src/guestfs.pod:1519
3049 #, no-wrap
3050 msgid ""
3051 " #define LIBGUESTFS_HAVE_DD 1\n"
3052 "\n"
3053 msgstr ""
3054
3055 #. type: textblock
3056 #: ../src/guestfs.pod:1521
3057 msgid "if L</guestfs_dd> is available."
3058 msgstr ""
3059
3060 #. type: textblock
3061 #: ../src/guestfs.pod:1523
3062 msgid ""
3063 "Before version 1.5.8, if you needed to test whether a single libguestfs "
3064 "function is available at compile time, we recommended using build tools such "
3065 "as autoconf or cmake.  For example in autotools you could use:"
3066 msgstr ""
3067
3068 #. type: verbatim
3069 #: ../src/guestfs.pod:1528
3070 #, no-wrap
3071 msgid ""
3072 " AC_CHECK_LIB([guestfs],[guestfs_create])\n"
3073 " AC_CHECK_FUNCS([guestfs_dd])\n"
3074 "\n"
3075 msgstr ""
3076
3077 #. type: textblock
3078 #: ../src/guestfs.pod:1531
3079 msgid ""
3080 "which would result in C<HAVE_GUESTFS_DD> being either defined or not defined "
3081 "in your program."
3082 msgstr ""
3083
3084 #. type: =head2
3085 #: ../src/guestfs.pod:1534
3086 msgid "SINGLE CALLS AT RUN TIME"
3087 msgstr ""
3088
3089 #. type: textblock
3090 #: ../src/guestfs.pod:1536
3091 msgid ""
3092 "Testing at compile time doesn't guarantee that a function really exists in "
3093 "the library.  The reason is that you might be dynamically linked against a "
3094 "previous I<libguestfs.so> (dynamic library)  which doesn't have the call.  "
3095 "This situation unfortunately results in a segmentation fault, which is a "
3096 "shortcoming of the C dynamic linking system itself."
3097 msgstr ""
3098
3099 #. type: textblock
3100 #: ../src/guestfs.pod:1543
3101 msgid ""
3102 "You can use L<dlopen(3)> to test if a function is available at run time, as "
3103 "in this example program (note that you still need the compile time check as "
3104 "well):"
3105 msgstr ""
3106
3107 #. type: verbatim
3108 #: ../src/guestfs.pod:1547
3109 #, no-wrap
3110 msgid ""
3111 " #include <stdio.h>\n"
3112 " #include <stdlib.h>\n"
3113 " #include <unistd.h>\n"
3114 " #include <dlfcn.h>\n"
3115 " #include <guestfs.h>\n"
3116 " \n"
3117 msgstr ""
3118
3119 #. type: verbatim
3120 #: ../src/guestfs.pod:1553
3121 #, no-wrap
3122 msgid ""
3123 " main ()\n"
3124 " {\n"
3125 " #ifdef LIBGUESTFS_HAVE_DD\n"
3126 "   void *dl;\n"
3127 "   int has_function;\n"
3128 " \n"
3129 msgstr ""
3130
3131 #. type: verbatim
3132 #: ../src/guestfs.pod:1559
3133 #, no-wrap
3134 msgid ""
3135 "   /* Test if the function guestfs_dd is really available. */\n"
3136 "   dl = dlopen (NULL, RTLD_LAZY);\n"
3137 "   if (!dl) {\n"
3138 "     fprintf (stderr, \"dlopen: %s\\n\", dlerror ());\n"
3139 "     exit (EXIT_FAILURE);\n"
3140 "   }\n"
3141 "   has_function = dlsym (dl, \"guestfs_dd\") != NULL;\n"
3142 "   dlclose (dl);\n"
3143 " \n"
3144 msgstr ""
3145
3146 #. type: verbatim
3147 #: ../src/guestfs.pod:1568
3148 #, no-wrap
3149 msgid ""
3150 "   if (!has_function)\n"
3151 "     printf (\"this libguestfs.so does NOT have guestfs_dd function\\n\");\n"
3152 "   else {\n"
3153 "     printf (\"this libguestfs.so has guestfs_dd function\\n\");\n"
3154 "     /* Now it's safe to call\n"
3155 "     guestfs_dd (g, \"foo\", \"bar\");\n"
3156 "     */\n"
3157 "   }\n"
3158 " #else\n"
3159 "   printf (\"guestfs_dd function was not found at compile time\\n\");\n"
3160 " #endif\n"
3161 "  }\n"
3162 "\n"
3163 msgstr ""
3164
3165 #. type: textblock
3166 #: ../src/guestfs.pod:1581
3167 msgid ""
3168 "You may think the above is an awful lot of hassle, and it is.  There are "
3169 "other ways outside of the C linking system to ensure that this kind of "
3170 "incompatibility never arises, such as using package versioning:"
3171 msgstr ""
3172
3173 #. type: verbatim
3174 #: ../src/guestfs.pod:1586
3175 #, no-wrap
3176 msgid ""
3177 " Requires: libguestfs >= 1.0.80\n"
3178 "\n"
3179 msgstr ""
3180
3181 #. type: =head1
3182 #: ../src/guestfs.pod:1588
3183 msgid "CALLS WITH OPTIONAL ARGUMENTS"
3184 msgstr ""
3185
3186 #. type: textblock
3187 #: ../src/guestfs.pod:1590
3188 msgid ""
3189 "A recent feature of the API is the introduction of calls which take optional "
3190 "arguments.  In C these are declared 3 ways.  The main way is as a call which "
3191 "takes variable arguments (ie. C<...>), as in this example:"
3192 msgstr ""
3193
3194 #. type: verbatim
3195 #: ../src/guestfs.pod:1595
3196 #, no-wrap
3197 msgid ""
3198 " int guestfs_add_drive_opts (guestfs_h *g, const char *filename, ...);\n"
3199 "\n"
3200 msgstr ""
3201
3202 #. type: textblock
3203 #: ../src/guestfs.pod:1597
3204 msgid ""
3205 "Call this with a list of optional arguments, terminated by C<-1>.  So to "
3206 "call with no optional arguments specified:"
3207 msgstr ""
3208
3209 #. type: verbatim
3210 #: ../src/guestfs.pod:1600
3211 #, no-wrap
3212 msgid ""
3213 " guestfs_add_drive_opts (g, filename, -1);\n"
3214 "\n"
3215 msgstr ""
3216
3217 #. type: textblock
3218 #: ../src/guestfs.pod:1602
3219 msgid "With a single optional argument:"
3220 msgstr ""
3221
3222 #. type: verbatim
3223 #: ../src/guestfs.pod:1604
3224 #, no-wrap
3225 msgid ""
3226 " guestfs_add_drive_opts (g, filename,\n"
3227 "                         GUESTFS_ADD_DRIVE_OPTS_FORMAT, \"qcow2\",\n"
3228 "                         -1);\n"
3229 "\n"
3230 msgstr ""
3231
3232 #. type: textblock
3233 #: ../src/guestfs.pod:1608
3234 msgid "With two:"
3235 msgstr ""
3236
3237 #. type: verbatim
3238 #: ../src/guestfs.pod:1610
3239 #, no-wrap
3240 msgid ""
3241 " guestfs_add_drive_opts (g, filename,\n"
3242 "                         GUESTFS_ADD_DRIVE_OPTS_FORMAT, \"qcow2\",\n"
3243 "                         GUESTFS_ADD_DRIVE_OPTS_READONLY, 1,\n"
3244 "                         -1);\n"
3245 "\n"
3246 msgstr ""
3247
3248 #. type: textblock
3249 #: ../src/guestfs.pod:1615
3250 msgid ""
3251 "and so forth.  Don't forget the terminating C<-1> otherwise Bad Things will "
3252 "happen!"
3253 msgstr ""
3254
3255 #. type: =head2
3256 #: ../src/guestfs.pod:1618
3257 msgid "USING va_list FOR OPTIONAL ARGUMENTS"
3258 msgstr ""
3259
3260 #. type: textblock
3261 #: ../src/guestfs.pod:1620
3262 msgid ""
3263 "The second variant has the same name with the suffix C<_va>, which works the "
3264 "same way but takes a C<va_list>.  See the C manual for details.  For the "
3265 "example function, this is declared:"
3266 msgstr ""
3267
3268 #. type: verbatim
3269 #: ../src/guestfs.pod:1624
3270 #, no-wrap
3271 msgid ""
3272 " int guestfs_add_drive_opts_va (guestfs_h *g, const char *filename,\n"
3273 "                                va_list args);\n"
3274 "\n"
3275 msgstr ""
3276
3277 #. type: =head2
3278 #: ../src/guestfs.pod:1627
3279 msgid "CONSTRUCTING OPTIONAL ARGUMENTS"
3280 msgstr ""
3281
3282 #. type: textblock
3283 #: ../src/guestfs.pod:1629
3284 msgid ""
3285 "The third variant is useful where you need to construct these calls.  You "
3286 "pass in a structure where you fill in the optional fields.  The structure "
3287 "has a bitmask as the first element which you must set to indicate which "
3288 "fields you have filled in.  For our example function the structure and call "
3289 "are declared:"
3290 msgstr ""
3291
3292 #. type: verbatim
3293 #: ../src/guestfs.pod:1635
3294 #, no-wrap
3295 msgid ""
3296 " struct guestfs_add_drive_opts_argv {\n"
3297 "   uint64_t bitmask;\n"
3298 "   int readonly;\n"
3299 "   const char *format;\n"
3300 "   /* ... */\n"
3301 " };\n"
3302 " int guestfs_add_drive_opts_argv (guestfs_h *g, const char *filename,\n"
3303 "              const struct guestfs_add_drive_opts_argv *optargs);\n"
3304 "\n"
3305 msgstr ""
3306
3307 #. type: textblock
3308 #: ../src/guestfs.pod:1644
3309 msgid "You could call it like this:"
3310 msgstr ""
3311
3312 #. type: verbatim
3313 #: ../src/guestfs.pod:1646
3314 #, no-wrap
3315 msgid ""
3316 " struct guestfs_add_drive_opts_argv optargs = {\n"
3317 "   .bitmask = GUESTFS_ADD_DRIVE_OPTS_READONLY_BITMASK |\n"
3318 "              GUESTFS_ADD_DRIVE_OPTS_FORMAT_BITMASK,\n"
3319 "   .readonly = 1,\n"
3320 "   .format = \"qcow2\"\n"
3321 " };\n"
3322 " \n"
3323 msgstr ""
3324
3325 #. type: verbatim
3326 #: ../src/guestfs.pod:1653
3327 #, no-wrap
3328 msgid ""
3329 " guestfs_add_drive_opts_argv (g, filename, &optargs);\n"
3330 "\n"
3331 msgstr ""
3332
3333 #. type: textblock
3334 #: ../src/guestfs.pod:1655 ../src/guestfs-actions.pod:11
3335 #: ../src/guestfs-actions.pod:1855 ../fish/guestfish-actions.pod:9
3336 #: ../fish/guestfish-actions.pod:1260 ../tools/virt-win-reg.pl:532
3337 msgid "Notes:"
3338 msgstr "Нотатки:"
3339
3340 #. type: textblock
3341 #: ../src/guestfs.pod:1661
3342 msgid "The C<_BITMASK> suffix on each option name when specifying the bitmask."
3343 msgstr ""
3344
3345 #. type: textblock
3346 #: ../src/guestfs.pod:1666
3347 msgid "You do not need to fill in all fields of the structure."
3348 msgstr ""
3349
3350 #. type: textblock
3351 #: ../src/guestfs.pod:1670
3352 msgid ""
3353 "There must be a one-to-one correspondence between fields of the structure "
3354 "that are filled in, and bits set in the bitmask."
3355 msgstr ""
3356
3357 #. type: =head2
3358 #: ../src/guestfs.pod:1675
3359 msgid "OPTIONAL ARGUMENTS IN OTHER LANGUAGES"
3360 msgstr ""
3361
3362 #. type: textblock
3363 #: ../src/guestfs.pod:1677
3364 msgid ""
3365 "In other languages, optional arguments are expressed in the way that is "
3366 "natural for that language.  We refer you to the language-specific "
3367 "documentation for more details on that."
3368 msgstr ""
3369
3370 #. type: textblock
3371 #: ../src/guestfs.pod:1681
3372 msgid "For guestfish, see L<guestfish(1)/OPTIONAL ARGUMENTS>."
3373 msgstr ""
3374
3375 #. type: =head2
3376 #: ../src/guestfs.pod:1683
3377 msgid "SETTING CALLBACKS TO HANDLE EVENTS"
3378 msgstr ""
3379
3380 #. type: textblock
3381 #: ../src/guestfs.pod:1685
3382 msgid ""
3383 "B<Note:> This section documents the generic event mechanism introduced in "
3384 "libguestfs 1.10, which you should use in new code if possible.  The old "
3385 "functions C<guestfs_set_log_message_callback>, "
3386 "C<guestfs_set_subprocess_quit_callback>, "
3387 "C<guestfs_set_launch_done_callback>, C<guestfs_set_close_callback> and "
3388 "C<guestfs_set_progress_callback> are no longer documented in this manual "
3389 "page."
3390 msgstr ""
3391
3392 #. type: textblock
3393 #: ../src/guestfs.pod:1693
3394 msgid ""
3395 "Handles generate events when certain things happen, such as log messages "
3396 "being generated, progress messages during long-running operations, or the "
3397 "handle being closed.  The API calls described below let you register a "
3398 "callback to be called when events happen.  You can register multiple "
3399 "callbacks (for the same, different or overlapping sets of events), and "
3400 "individually remove callbacks.  If callbacks are not removed, then they "
3401 "remain in force until the handle is closed."
3402 msgstr ""
3403
3404 #. type: textblock
3405 #: ../src/guestfs.pod:1701
3406 msgid ""
3407 "In the current implementation, events are only generated synchronously: that "
3408 "means that events (and hence callbacks) can only happen while you are in the "
3409 "middle of making another libguestfs call.  The callback is called in the "
3410 "same thread."
3411 msgstr ""
3412
3413 #. type: textblock
3414 #: ../src/guestfs.pod:1706
3415 msgid ""
3416 "Events may contain a payload, usually nothing (void), an array of 64 bit "
3417 "unsigned integers, or a message buffer.  Payloads are discussed later on."
3418 msgstr ""
3419
3420 #. type: =head3
3421 #: ../src/guestfs.pod:1710
3422 msgid "CLASSES OF EVENTS"
3423 msgstr ""
3424
3425 #. type: =item
3426 #: ../src/guestfs.pod:1714
3427 msgid "GUESTFS_EVENT_CLOSE (payload type: void)"
3428 msgstr ""
3429
3430 #. type: textblock
3431 #: ../src/guestfs.pod:1717
3432 msgid ""
3433 "The callback function will be called while the handle is being closed "
3434 "(synchronously from L</guestfs_close>)."
3435 msgstr ""
3436
3437 #. type: textblock
3438 #: ../src/guestfs.pod:1720
3439 msgid ""
3440 "Note that libguestfs installs an L<atexit(3)> handler to try to clean up "
3441 "handles that are open when the program exits.  This means that this callback "
3442 "might be called indirectly from L<exit(3)>, which can cause unexpected "
3443 "problems in higher-level languages (eg. if your HLL interpreter has already "
3444 "been cleaned up by the time this is called, and if your callback then jumps "
3445 "into some HLL function)."
3446 msgstr ""
3447
3448 #. type: textblock
3449 #: ../src/guestfs.pod:1727
3450 msgid ""
3451 "If no callback is registered: the handle is closed without any callback "
3452 "being invoked."
3453 msgstr ""
3454
3455 #. type: =item
3456 #: ../src/guestfs.pod:1730
3457 msgid "GUESTFS_EVENT_SUBPROCESS_QUIT (payload type: void)"
3458 msgstr ""
3459
3460 #. type: textblock
3461 #: ../src/guestfs.pod:1733
3462 msgid ""
3463 "The callback function will be called when the child process quits, either "
3464 "asynchronously or if killed by L</guestfs_kill_subprocess>.  (This "
3465 "corresponds to a transition from any state to the CONFIG state)."
3466 msgstr ""
3467
3468 #. type: textblock
3469 #: ../src/guestfs.pod:1737 ../src/guestfs.pod:1746
3470 msgid "If no callback is registered: the event is ignored."
3471 msgstr ""
3472
3473 #. type: =item
3474 #: ../src/guestfs.pod:1739
3475 msgid "GUESTFS_EVENT_LAUNCH_DONE (payload type: void)"
3476 msgstr ""
3477
3478 #. type: textblock
3479 #: ../src/guestfs.pod:1742
3480 msgid ""
3481 "The callback function will be called when the child process becomes ready "
3482 "first time after it has been launched.  (This corresponds to a transition "
3483 "from LAUNCHING to the READY state)."
3484 msgstr ""
3485
3486 #. type: =item
3487 #: ../src/guestfs.pod:1748
3488 msgid "GUESTFS_EVENT_PROGRESS (payload type: array of 4 x uint64_t)"
3489 msgstr ""
3490
3491 #. type: textblock
3492 #: ../src/guestfs.pod:1751
3493 msgid ""
3494 "Some long-running operations can generate progress messages.  If this "
3495 "callback is registered, then it will be called each time a progress message "
3496 "is generated (usually two seconds after the operation started, and three "
3497 "times per second thereafter until it completes, although the frequency may "
3498 "change in future versions)."
3499 msgstr ""
3500
3501 #. type: textblock
3502 #: ../src/guestfs.pod:1757
3503 msgid ""
3504 "The callback receives in the payload four unsigned 64 bit numbers which are "
3505 "(in order): C<proc_nr>, C<serial>, C<position>, C<total>."
3506 msgstr ""
3507
3508 #. type: textblock
3509 #: ../src/guestfs.pod:1760
3510 msgid ""
3511 "The units of C<total> are not defined, although for some operations C<total> "
3512 "may relate in some way to the amount of data to be transferred (eg. in bytes "
3513 "or megabytes), and C<position> may be the portion which has been transferred."
3514 msgstr ""
3515
3516 #. type: textblock
3517 #: ../src/guestfs.pod:1765
3518 msgid "The only defined and stable parts of the API are:"
3519 msgstr ""
3520
3521 #. type: textblock
3522 #: ../src/guestfs.pod:1771
3523 msgid ""
3524 "The callback can display to the user some type of progress bar or indicator "
3525 "which shows the ratio of C<position>:C<total>."
3526 msgstr ""
3527
3528 #. type: textblock
3529 #: ../src/guestfs.pod:1776
3530 msgid "0 E<lt>= C<position> E<lt>= C<total>"
3531 msgstr ""
3532
3533 #. type: textblock
3534 #: ../src/guestfs.pod:1780
3535 msgid ""
3536 "If any progress notification is sent during a call, then a final progress "
3537 "notification is always sent when C<position> = C<total> (I<unless> the call "
3538 "fails with an error)."
3539 msgstr ""
3540
3541 #. type: textblock
3542 #: ../src/guestfs.pod:1784
3543 msgid ""
3544 "This is to simplify caller code, so callers can easily set the progress "
3545 "indicator to \"100%\" at the end of the operation, without requiring special "
3546 "code to detect this case."
3547 msgstr ""
3548
3549 #. type: textblock
3550 #: ../src/guestfs.pod:1790
3551 msgid ""
3552 "For some calls we are unable to estimate the progress of the call, but we "
3553 "can still generate progress messages to indicate activity.  This is known as "
3554 "\"pulse mode\", and is directly supported by certain progress bar "
3555 "implementations (eg. GtkProgressBar)."
3556 msgstr ""
3557
3558 #. type: textblock
3559 #: ../src/guestfs.pod:1795
3560 msgid ""
3561 "For these calls, zero or more progress messages are generated with "
3562 "C<position = 0> and C<total = 1>, followed by a final message with "
3563 "C<position = total = 1>."
3564 msgstr ""
3565
3566 #. type: textblock
3567 #: ../src/guestfs.pod:1799
3568 msgid ""
3569 "As noted above, if the call fails with an error then the final message may "
3570 "not be generated."
3571 msgstr ""
3572
3573 #. type: textblock
3574 #: ../src/guestfs.pod:1804
3575 msgid ""
3576 "The callback also receives the procedure number (C<proc_nr>) and serial "
3577 "number (C<serial>) of the call.  These are only useful for debugging "
3578 "protocol issues, and the callback can normally ignore them.  The callback "
3579 "may want to print these numbers in error messages or debugging messages."
3580 msgstr ""
3581
3582 #. type: textblock
3583 #: ../src/guestfs.pod:1810
3584 msgid "If no callback is registered: progress messages are discarded."
3585 msgstr ""
3586
3587 #. type: =item
3588 #: ../src/guestfs.pod:1812
3589 msgid "GUESTFS_EVENT_APPLIANCE (payload type: message buffer)"
3590 msgstr ""
3591
3592 #. type: textblock
3593 #: ../src/guestfs.pod:1815
3594 msgid ""
3595 "The callback function is called whenever a log message is generated by qemu, "
3596 "the appliance kernel, guestfsd (daemon), or utility programs."
3597 msgstr ""
3598
3599 #. type: textblock
3600 #: ../src/guestfs.pod:1818
3601 msgid ""
3602 "If the verbose flag (L</guestfs_set_verbose>) is set before launch (L</"
3603 "guestfs_launch>) then additional debug messages are generated."
3604 msgstr ""
3605
3606 #. type: textblock
3607 #: ../src/guestfs.pod:1821 ../src/guestfs.pod:1835
3608 msgid ""
3609 "If no callback is registered: the messages are discarded unless the verbose "
3610 "flag is set in which case they are sent to stderr.  You can override the "
3611 "printing of verbose messages to stderr by setting up a callback."
3612 msgstr ""
3613
3614 #. type: =item
3615 #: ../src/guestfs.pod:1826
3616 msgid "GUESTFS_EVENT_LIBRARY (payload type: message buffer)"
3617 msgstr ""
3618
3619 #. type: textblock
3620 #: ../src/guestfs.pod:1829
3621 msgid ""
3622 "The callback function is called whenever a log message is generated by the "
3623 "library part of libguestfs."
3624 msgstr ""
3625
3626 #. type: textblock
3627 #: ../src/guestfs.pod:1832
3628 msgid ""
3629 "If the verbose flag (L</guestfs_set_verbose>) is set then additional debug "
3630 "messages are generated."
3631 msgstr ""
3632
3633 #. type: =item
3634 #: ../src/guestfs.pod:1840
3635 msgid "GUESTFS_EVENT_TRACE (payload type: message buffer)"
3636 msgstr ""
3637
3638 #. type: textblock
3639 #: ../src/guestfs.pod:1843
3640 msgid ""
3641 "The callback function is called whenever a trace message is generated.  This "
3642 "only applies if the trace flag (L</guestfs_set_trace>) is set."
3643 msgstr ""
3644
3645 #. type: textblock
3646 #: ../src/guestfs.pod:1846
3647 msgid ""
3648 "If no callback is registered: the messages are sent to stderr.  You can "
3649 "override the printing of trace messages to stderr by setting up a callback."
3650 msgstr ""
3651
3652 #. type: =head3
3653 #: ../src/guestfs.pod:1852
3654 msgid "guestfs_set_event_callback"
3655 msgstr ""
3656
3657 #. type: verbatim
3658 #: ../src/guestfs.pod:1854
3659 #, no-wrap
3660 msgid ""
3661 " int guestfs_set_event_callback (guestfs_h *g,\n"
3662 "                                 guestfs_event_callback cb,\n"
3663 "                                 uint64_t event_bitmask,\n"
3664 "                                 int flags,\n"
3665 "                                 void *opaque);\n"
3666 "\n"
3667 msgstr ""
3668
3669 #. type: textblock
3670 #: ../src/guestfs.pod:1860
3671 msgid ""
3672 "This function registers a callback (C<cb>) for all event classes in the "
3673 "C<event_bitmask>."
3674 msgstr ""
3675
3676 #. type: textblock
3677 #: ../src/guestfs.pod:1863
3678 msgid ""
3679 "For example, to register for all log message events, you could call this "
3680 "function with the bitmask C<GUESTFS_EVENT_APPLIANCE|GUESTFS_EVENT_LIBRARY>.  "
3681 "To register a single callback for all possible classes of events, use "
3682 "C<GUESTFS_EVENT_ALL>."
3683 msgstr ""
3684
3685 #. type: textblock
3686 #: ../src/guestfs.pod:1869
3687 msgid "C<flags> should always be passed as 0."
3688 msgstr ""
3689
3690 #. type: textblock
3691 #: ../src/guestfs.pod:1871
3692 msgid ""
3693 "C<opaque> is an opaque pointer which is passed to the callback.  You can use "
3694 "it for any purpose."
3695 msgstr ""
3696
3697 #. type: textblock
3698 #: ../src/guestfs.pod:1874
3699 msgid ""
3700 "The return value is the event handle (an integer) which you can use to "
3701 "delete the callback (see below)."
3702 msgstr ""
3703
3704 #. type: textblock
3705 #: ../src/guestfs.pod:1877
3706 msgid ""
3707 "If there is an error, this function returns C<-1>, and sets the error in the "
3708 "handle in the usual way (see L</guestfs_last_error> etc.)"
3709 msgstr ""
3710
3711 #. type: textblock
3712 #: ../src/guestfs.pod:1880
3713 msgid ""
3714 "Callbacks remain in effect until they are deleted, or until the handle is "
3715 "closed."
3716 msgstr ""
3717
3718 #. type: textblock
3719 #: ../src/guestfs.pod:1883
3720 msgid ""
3721 "In the case where multiple callbacks are registered for a particular event "
3722 "class, all of the callbacks are called.  The order in which multiple "
3723 "callbacks are called is not defined."
3724 msgstr ""
3725
3726 #. type: =head3
3727 #: ../src/guestfs.pod:1887
3728 msgid "guestfs_delete_event_callback"
3729 msgstr ""
3730
3731 #. type: verbatim
3732 #: ../src/guestfs.pod:1889
3733 #, no-wrap
3734 msgid ""
3735 " void guestfs_delete_event_callback (guestfs_h *g, int event_handle);\n"
3736 "\n"
3737 msgstr ""
3738
3739 #. type: textblock
3740 #: ../src/guestfs.pod:1891
3741 msgid ""
3742 "Delete a callback that was previously registered.  C<event_handle> should be "
3743 "the integer that was returned by a previous call to "
3744 "C<guestfs_set_event_callback> on the same handle."
3745 msgstr ""
3746
3747 #. type: =head3
3748 #: ../src/guestfs.pod:1895
3749 msgid "guestfs_event_callback"
3750 msgstr ""
3751
3752 #. type: verbatim
3753 #: ../src/guestfs.pod:1897
3754 #, no-wrap
3755 msgid ""
3756 " typedef void (*guestfs_event_callback) (\n"
3757 "                  guestfs_h *g,\n"
3758 "                  void *opaque,\n"
3759 "                  uint64_t event,\n"
3760 "                  int event_handle,\n"
3761 "                  int flags,\n"
3762 "                  const char *buf, size_t buf_len,\n"
3763 "                  const uint64_t *array, size_t array_len);\n"
3764 "\n"
3765 msgstr ""
3766
3767 #. type: textblock
3768 #: ../src/guestfs.pod:1906
3769 msgid ""
3770 "This is the type of the event callback function that you have to provide."
3771 msgstr ""
3772
3773 #. type: textblock
3774 #: ../src/guestfs.pod:1909
3775 msgid ""
3776 "The basic parameters are: the handle (C<g>), the opaque user pointer "
3777 "(C<opaque>), the event class (eg. C<GUESTFS_EVENT_PROGRESS>), the event "
3778 "handle, and C<flags> which in the current API you should ignore."
3779 msgstr ""
3780
3781 #. type: textblock
3782 #: ../src/guestfs.pod:1913
3783 msgid ""
3784 "The remaining parameters contain the event payload (if any).  Each event may "
3785 "contain a payload, which usually relates to the event class, but for future "
3786 "proofing your code should be written to handle any payload for any event "
3787 "class."
3788 msgstr ""
3789
3790 #. type: textblock
3791 #: ../src/guestfs.pod:1918
3792 msgid ""
3793 "C<buf> and C<buf_len> contain a message buffer (if C<buf_len == 0>, then "
3794 "there is no message buffer).  Note that this message buffer can contain "
3795 "arbitrary 8 bit data, including NUL bytes."
3796 msgstr ""
3797
3798 #. type: textblock
3799 #: ../src/guestfs.pod:1922
3800 msgid ""
3801 "C<array> and C<array_len> is an array of 64 bit unsigned integers.  At the "
3802 "moment this is only used for progress messages."
3803 msgstr ""
3804
3805 #. type: =head3
3806 #: ../src/guestfs.pod:1925
3807 msgid "EXAMPLE: CAPTURING LOG MESSAGES"
3808 msgstr ""
3809
3810 #. type: textblock
3811 #: ../src/guestfs.pod:1927
3812 msgid ""
3813 "One motivation for the generic event API was to allow GUI programs to "
3814 "capture debug and other messages.  In libguestfs E<le> 1.8 these were sent "
3815 "unconditionally to C<stderr>."
3816 msgstr ""
3817
3818 #. type: textblock
3819 #: ../src/guestfs.pod:1931
3820 msgid ""
3821 "Events associated with log messages are: C<GUESTFS_EVENT_LIBRARY>, "
3822 "C<GUESTFS_EVENT_APPLIANCE> and C<GUESTFS_EVENT_TRACE>.  (Note that error "
3823 "messages are not events; you must capture error messages separately)."
3824 msgstr ""
3825
3826 #. type: textblock
3827 #: ../src/guestfs.pod:1936
3828 msgid ""
3829 "Programs have to set up a callback to capture the classes of events of "
3830 "interest:"
3831 msgstr ""
3832
3833 #. type: verbatim
3834 #: ../src/guestfs.pod:1939
3835 #, no-wrap
3836 msgid ""
3837 " int eh =\n"
3838 "   guestfs_set_event_callback\n"
3839 "     (g, message_callback,\n"
3840 "      GUESTFS_EVENT_LIBRARY|GUESTFS_EVENT_APPLIANCE|\n"
3841 "      GUESTFS_EVENT_TRACE,\n"
3842 "      0, NULL) == -1)\n"
3843 " if (eh == -1) {\n"
3844 "   // handle error in the usual way\n"
3845 " }\n"
3846 "\n"
3847 msgstr ""
3848
3849 #. type: textblock
3850 #: ../src/guestfs.pod:1949
3851 msgid ""
3852 "The callback can then direct messages to the appropriate place.  In this "
3853 "example, messages are directed to syslog:"
3854 msgstr ""
3855
3856 #. type: verbatim
3857 #: ../src/guestfs.pod:1952
3858 #, no-wrap
3859 msgid ""
3860 " static void\n"
3861 " message_callback (\n"
3862 "         guestfs_h *g,\n"
3863 "         void *opaque,\n"
3864 "         uint64_t event,\n"
3865 "         int event_handle,\n"
3866 "         int flags,\n"
3867 "         const char *buf, size_t buf_len,\n"
3868 "         const uint64_t *array, size_t array_len)\n"
3869 " {\n"
3870 "   const int priority = LOG_USER|LOG_INFO;\n"
3871 "   if (buf_len > 0)\n"
3872 "     syslog (priority, \"event 0x%lx: %s\", event, buf);\n"
3873 " }\n"
3874 "\n"
3875 msgstr ""
3876
3877 #. type: =head1
3878 #: ../src/guestfs.pod:1967
3879 msgid "PRIVATE DATA AREA"
3880 msgstr ""
3881
3882 #. type: textblock
3883 #: ../src/guestfs.pod:1969
3884 msgid ""
3885 "You can attach named pieces of private data to the libguestfs handle, fetch "
3886 "them by name, and walk over them, for the lifetime of the handle.  This is "
3887 "called the private data area and is only available from the C API."
3888 msgstr ""
3889
3890 #. type: textblock
3891 #: ../src/guestfs.pod:1974
3892 msgid "To attach a named piece of data, use the following call:"
3893 msgstr ""
3894
3895 #. type: verbatim
3896 #: ../src/guestfs.pod:1976
3897 #, no-wrap
3898 msgid ""
3899 " void guestfs_set_private (guestfs_h *g, const char *key, void *data);\n"
3900 "\n"
3901 msgstr ""
3902
3903 #. type: textblock
3904 #: ../src/guestfs.pod:1978
3905 msgid ""
3906 "C<key> is the name to associate with this data, and C<data> is an arbitrary "
3907 "pointer (which can be C<NULL>).  Any previous item with the same name is "
3908 "overwritten."
3909 msgstr ""
3910
3911 #. type: textblock
3912 #: ../src/guestfs.pod:1982
3913 msgid ""
3914 "You can use any C<key> you want, but names beginning with an underscore "
3915 "character are reserved for internal libguestfs purposes (for implementing "
3916 "language bindings).  It is recommended to prefix the name with some unique "
3917 "string to avoid collisions with other users."
3918 msgstr ""
3919
3920 #. type: textblock
3921 #: ../src/guestfs.pod:1987
3922 msgid "To retrieve the pointer, use:"
3923 msgstr ""
3924
3925 #. type: verbatim
3926 #: ../src/guestfs.pod:1989
3927 #, no-wrap
3928 msgid ""
3929 " void *guestfs_get_private (guestfs_h *g, const char *key);\n"
3930 "\n"
3931 msgstr ""
3932
3933 #. type: textblock
3934 #: ../src/guestfs.pod:1991
3935 msgid ""
3936 "This function returns C<NULL> if either no data is found associated with "
3937 "C<key>, or if the user previously set the C<key>'s C<data> pointer to "
3938 "C<NULL>."
3939 msgstr ""
3940
3941 #. type: textblock
3942 #: ../src/guestfs.pod:1995
3943 msgid ""
3944 "Libguestfs does not try to look at or interpret the C<data> pointer in any "
3945 "way.  As far as libguestfs is concerned, it need not be a valid pointer at "
3946 "all.  In particular, libguestfs does I<not> try to free the data when the "
3947 "handle is closed.  If the data must be freed, then the caller must either "
3948 "free it before calling L</guestfs_close> or must set up a close callback to "
3949 "do it (see L</GUESTFS_EVENT_CLOSE>)."
3950 msgstr ""
3951
3952 #. type: textblock
3953 #: ../src/guestfs.pod:2002
3954 msgid "To walk over all entries, use these two functions:"
3955 msgstr ""
3956
3957 #. type: verbatim
3958 #: ../src/guestfs.pod:2004
3959 #, no-wrap
3960 msgid ""
3961 " void *guestfs_first_private (guestfs_h *g, const char **key_rtn);\n"
3962 "\n"
3963 msgstr ""
3964
3965 #. type: verbatim
3966 #: ../src/guestfs.pod:2006
3967 #, no-wrap
3968 msgid ""
3969 " void *guestfs_next_private (guestfs_h *g, const char **key_rtn);\n"
3970 "\n"
3971 msgstr ""
3972
3973 #. type: textblock
3974 #: ../src/guestfs.pod:2008
3975 msgid ""
3976 "C<guestfs_first_private> returns the first key, pointer pair (\"first\" does "
3977 "not have any particular meaning -- keys are not returned in any defined "
3978 "order).  A pointer to the key is returned in C<*key_rtn> and the "
3979 "corresponding data pointer is returned from the function.  C<NULL> is "
3980 "returned if there are no keys stored in the handle."
3981 msgstr ""
3982
3983 #. type: textblock
3984 #: ../src/guestfs.pod:2014
3985 msgid ""
3986 "C<guestfs_next_private> returns the next key, pointer pair.  The return "
3987 "value of this function is also C<NULL> is there are no further entries to "
3988 "return."
3989 msgstr ""
3990
3991 #. type: textblock
3992 #: ../src/guestfs.pod:2018
3993 msgid "Notes about walking over entries:"
3994 msgstr ""
3995
3996 #. type: textblock
3997 #: ../src/guestfs.pod:2024
3998 msgid ""
3999 "You must not call C<guestfs_set_private> while walking over the entries."
4000 msgstr ""
4001
4002 #. type: textblock
4003 #: ../src/guestfs.pod:2029
4004 msgid ""
4005 "The handle maintains an internal iterator which is reset when you call "
4006 "C<guestfs_first_private>.  This internal iterator is invalidated when you "
4007 "call C<guestfs_set_private>."
4008 msgstr ""
4009
4010 #. type: textblock
4011 #: ../src/guestfs.pod:2035
4012 msgid "If you have set the data pointer associated with a key to C<NULL>, ie:"
4013 msgstr ""
4014
4015 #. type: verbatim
4016 #: ../src/guestfs.pod:2037
4017 #, no-wrap
4018 msgid ""
4019 " guestfs_set_private (g, key, NULL);\n"
4020 "\n"
4021 msgstr ""
4022
4023 #. type: textblock
4024 #: ../src/guestfs.pod:2039
4025 msgid "then that C<key> is not returned when walking."
4026 msgstr ""
4027
4028 #. type: textblock
4029 #: ../src/guestfs.pod:2043
4030 msgid ""
4031 "C<*key_rtn> is only valid until the next call to C<guestfs_first_private>, "
4032 "C<guestfs_next_private> or C<guestfs_set_private>."
4033 msgstr ""
4034
4035 #. type: textblock
4036 #: ../src/guestfs.pod:2049
4037 msgid ""
4038 "The following example code shows how to print all keys and data pointers "
4039 "that are associated with the handle C<g>:"
4040 msgstr ""
4041
4042 #. type: verbatim
4043 #: ../src/guestfs.pod:2052
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 "     printf (\"key = %s, data = %p\\n\", key, data);\n"
4051 "     data = guestfs_next_private (g, &key);\n"
4052 "   }\n"
4053 "\n"
4054 msgstr ""
4055
4056 #. type: textblock
4057 #: ../src/guestfs.pod:2060
4058 msgid ""
4059 "More commonly you are only interested in keys that begin with an application-"
4060 "specific prefix C<foo_>.  Modify the loop like so:"
4061 msgstr ""
4062
4063 #. type: verbatim
4064 #: ../src/guestfs.pod:2063
4065 #, no-wrap
4066 msgid ""
4067 " const char *key;\n"
4068 " void *data = guestfs_first_private (g, &key);\n"
4069 " while (data != NULL)\n"
4070 "   {\n"
4071 "     if (strncmp (key, \"foo_\", strlen (\"foo_\")) == 0)\n"
4072 "       printf (\"key = %s, data = %p\\n\", key, data);\n"
4073 "     data = guestfs_next_private (g, &key);\n"
4074 "   }\n"
4075 "\n"
4076 msgstr ""
4077
4078 #. type: textblock
4079 #: ../src/guestfs.pod:2072
4080 msgid ""
4081 "If you need to modify keys while walking, then you have to jump back to the "
4082 "beginning of the loop.  For example, to delete all keys prefixed with "
4083 "C<foo_>:"
4084 msgstr ""
4085
4086 #. type: verbatim
4087 #: ../src/guestfs.pod:2076
4088 #, no-wrap
4089 msgid ""
4090 "  const char *key;\n"
4091 "  void *data;\n"
4092 " again:\n"
4093 "  data = guestfs_first_private (g, &key);\n"
4094 "  while (data != NULL)\n"
4095 "    {\n"
4096 "      if (strncmp (key, \"foo_\", strlen (\"foo_\")) == 0)\n"
4097 "        {\n"
4098 "          guestfs_set_private (g, key, NULL);\n"
4099 "          /* note that 'key' pointer is now invalid, and so is\n"
4100 "             the internal iterator */\n"
4101 "          goto again;\n"
4102 "        }\n"
4103 "      data = guestfs_next_private (g, &key);\n"
4104 "    }\n"
4105 "\n"
4106 msgstr ""
4107
4108 #. type: textblock
4109 #: ../src/guestfs.pod:2092
4110 msgid ""
4111 "Note that the above loop is guaranteed to terminate because the keys are "
4112 "being deleted, but other manipulations of keys within the loop might not "
4113 "terminate unless you also maintain an indication of which keys have been "
4114 "visited."
4115 msgstr ""
4116
4117 #. type: =end
4118 #: ../src/guestfs.pod:2097 ../src/guestfs.pod:2102
4119 msgid "html"
4120 msgstr "html"
4121
4122 #. type: textblock
4123 #: ../src/guestfs.pod:2099
4124 msgid ""
4125 "<!-- old anchor for the next section --> <a name="
4126 "\"state_machine_and_low_level_event_api\"/>"
4127 msgstr ""
4128 "<!-- old anchor for the next section --> <a name="
4129 "\"state_machine_and_low_level_event_api\"/>"
4130
4131 #. type: =head1
4132 #: ../src/guestfs.pod:2104
4133 msgid "ARCHITECTURE"
4134 msgstr "АРХІТЕКТУРА"
4135
4136 #. type: textblock
4137 #: ../src/guestfs.pod:2106
4138 msgid ""
4139 "Internally, libguestfs is implemented by running an appliance (a special "
4140 "type of small virtual machine) using L<qemu(1)>.  Qemu runs as a child "
4141 "process of the main program."
4142 msgstr ""
4143
4144 #. type: verbatim
4145 #: ../src/guestfs.pod:2110
4146 #, no-wrap
4147 msgid ""
4148 "  ___________________\n"
4149 " /                   \\\n"
4150 " | main program      |\n"
4151 " |                   |\n"
4152 " |                   |           child process / appliance\n"
4153 " |                   |           __________________________\n"
4154 " |                   |          / qemu                     \\\n"
4155 " +-------------------+   RPC    |      +-----------------+ |\n"
4156 " | libguestfs     <--------------------> guestfsd        | |\n"
4157 " |                   |          |      +-----------------+ |\n"
4158 " \\___________________/          |      | Linux kernel    | |\n"
4159 "                                |      +--^--------------+ |\n"
4160 "                                \\_________|________________/\n"
4161 "                                          |\n"
4162 "                                   _______v______\n"
4163 "                                  /              \\\n"
4164 "                                  | Device or    |\n"
4165 "                                  | disk image   |\n"
4166 "                                  \\______________/\n"
4167 "\n"
4168 msgstr ""
4169
4170 #. type: textblock
4171 #: ../src/guestfs.pod:2130
4172 msgid ""
4173 "The library, linked to the main program, creates the child process and hence "
4174 "the appliance in the L</guestfs_launch> function."
4175 msgstr ""
4176
4177 #. type: textblock
4178 #: ../src/guestfs.pod:2133
4179 msgid ""
4180 "Inside the appliance is a Linux kernel and a complete stack of userspace "
4181 "tools (such as LVM and ext2 programs) and a small controlling daemon called "
4182 "L</guestfsd>.  The library talks to L</guestfsd> using remote procedure "
4183 "calls (RPC).  There is a mostly one-to-one correspondence between libguestfs "
4184 "API calls and RPC calls to the daemon.  Lastly the disk image(s) are "
4185 "attached to the qemu process which translates device access by the "
4186 "appliance's Linux kernel into accesses to the image."
4187 msgstr ""
4188
4189 #. type: textblock
4190 #: ../src/guestfs.pod:2142
4191 msgid ""
4192 "A common misunderstanding is that the appliance \"is\" the virtual machine.  "
4193 "Although the disk image you are attached to might also be used by some "
4194 "virtual machine, libguestfs doesn't know or care about this.  (But you will "
4195 "care if both libguestfs's qemu process and your virtual machine are trying "
4196 "to update the disk image at the same time, since these usually results in "
4197 "massive disk corruption)."
4198 msgstr ""
4199
4200 #. type: =head1
4201 #: ../src/guestfs.pod:2149
4202 msgid "STATE MACHINE"
4203 msgstr "СКІНЧЕННИЙ АВТОМАТ"
4204
4205 #. type: textblock
4206 #: ../src/guestfs.pod:2151
4207 msgid "libguestfs uses a state machine to model the child process:"
4208 msgstr ""
4209
4210 #. type: verbatim
4211 #: ../src/guestfs.pod:2153
4212 #, no-wrap
4213 msgid ""
4214 "                         |\n"
4215 "                    guestfs_create\n"
4216 "                         |\n"
4217 "                         |\n"
4218 "                     ____V_____\n"
4219 "                    /          \\\n"
4220 "                    |  CONFIG  |\n"
4221 "                    \\__________/\n"
4222 "                     ^ ^   ^  \\\n"
4223 "                    /  |    \\  \\ guestfs_launch\n"
4224 "                   /   |    _\\__V______\n"
4225 "                  /    |   /           \\\n"
4226 "                 /     |   | LAUNCHING |\n"
4227 "                /      |   \\___________/\n"
4228 "               /       |       /\n"
4229 "              /        |  guestfs_launch\n"
4230 "             /         |     /\n"
4231 "    ______  /        __|____V\n"
4232 "   /      \\ ------> /        \\\n"
4233 "   | BUSY |         | READY  |\n"
4234 "   \\______/ <------ \\________/\n"
4235 "\n"
4236 msgstr ""
4237
4238 #. type: textblock
4239 #: ../src/guestfs.pod:2175
4240 msgid ""
4241 "The normal transitions are (1) CONFIG (when the handle is created, but there "
4242 "is no child process), (2) LAUNCHING (when the child process is booting up), "
4243 "(3) alternating between READY and BUSY as commands are issued to, and "
4244 "carried out by, the child process."
4245 msgstr ""
4246
4247 #. type: textblock
4248 #: ../src/guestfs.pod:2180
4249 msgid ""
4250 "The guest may be killed by L</guestfs_kill_subprocess>, or may die "
4251 "asynchronously at any time (eg. due to some internal error), and that causes "
4252 "the state to transition back to CONFIG."
4253 msgstr ""
4254
4255 #. type: textblock
4256 #: ../src/guestfs.pod:2184
4257 msgid ""
4258 "Configuration commands for qemu such as L</guestfs_add_drive> can only be "
4259 "issued when in the CONFIG state."
4260 msgstr ""
4261
4262 #. type: textblock
4263 #: ../src/guestfs.pod:2187
4264 msgid ""
4265 "The API offers one call that goes from CONFIG through LAUNCHING to READY.  "
4266 "L</guestfs_launch> blocks until the child process is READY to accept "
4267 "commands (or until some failure or timeout).  L</guestfs_launch> internally "
4268 "moves the state from CONFIG to LAUNCHING while it is running."
4269 msgstr ""
4270
4271 #. type: textblock
4272 #: ../src/guestfs.pod:2193
4273 msgid ""
4274 "API actions such as L</guestfs_mount> can only be issued when in the READY "
4275 "state.  These API calls block waiting for the command to be carried out (ie. "
4276 "the state to transition to BUSY and then back to READY).  There are no non-"
4277 "blocking versions, and no way to issue more than one command per handle at "
4278 "the same time."
4279 msgstr ""
4280
4281 #. type: textblock
4282 #: ../src/guestfs.pod:2199
4283 msgid ""
4284 "Finally, the child process sends asynchronous messages back to the main "
4285 "program, such as kernel log messages.  You can register a callback to "
4286 "receive these messages."
4287 msgstr ""
4288
4289 #. type: =head1
4290 #: ../src/guestfs.pod:2203
4291 msgid "INTERNALS"
4292 msgstr ""
4293
4294 #. type: =head2
4295 #: ../src/guestfs.pod:2205
4296 msgid "COMMUNICATION PROTOCOL"
4297 msgstr ""
4298
4299 #. type: textblock
4300 #: ../src/guestfs.pod:2207
4301 msgid ""
4302 "Don't rely on using this protocol directly.  This section documents how it "
4303 "currently works, but it may change at any time."
4304 msgstr ""
4305
4306 #. type: textblock
4307 #: ../src/guestfs.pod:2210
4308 msgid ""
4309 "The protocol used to talk between the library and the daemon running inside "
4310 "the qemu virtual machine is a simple RPC mechanism built on top of XDR (RFC "
4311 "1014, RFC 1832, RFC 4506)."
4312 msgstr ""
4313
4314 #. type: textblock
4315 #: ../src/guestfs.pod:2214
4316 msgid ""
4317 "The detailed format of structures is in C<src/guestfs_protocol.x> (note: "
4318 "this file is automatically generated)."
4319 msgstr ""
4320
4321 #. type: textblock
4322 #: ../src/guestfs.pod:2217
4323 msgid ""
4324 "There are two broad cases, ordinary functions that don't have any C<FileIn> "
4325 "and C<FileOut> parameters, which are handled with very simple request/reply "
4326 "messages.  Then there are functions that have any C<FileIn> or C<FileOut> "
4327 "parameters, which use the same request and reply messages, but they may also "
4328 "be followed by files sent using a chunked encoding."
4329 msgstr ""
4330
4331 #. type: =head3
4332 #: ../src/guestfs.pod:2224
4333 msgid "ORDINARY FUNCTIONS (NO FILEIN/FILEOUT PARAMS)"
4334 msgstr ""
4335
4336 #. type: textblock
4337 #: ../src/guestfs.pod:2226
4338 msgid "For ordinary functions, the request message is:"
4339 msgstr ""
4340
4341 #. type: verbatim
4342 #: ../src/guestfs.pod:2228
4343 #, no-wrap
4344 msgid ""
4345 " total length (header + arguments,\n"
4346 "      but not including the length word itself)\n"
4347 " struct guestfs_message_header (encoded as XDR)\n"
4348 " struct guestfs_<foo>_args (encoded as XDR)\n"
4349 "\n"
4350 msgstr ""
4351
4352 #. type: textblock
4353 #: ../src/guestfs.pod:2233
4354 msgid ""
4355 "The total length field allows the daemon to allocate a fixed size buffer "
4356 "into which it slurps the rest of the message.  As a result, the total length "
4357 "is limited to C<GUESTFS_MESSAGE_MAX> bytes (currently 4MB), which means the "
4358 "effective size of any request is limited to somewhere under this size."
4359 msgstr ""
4360
4361 #. type: textblock
4362 #: ../src/guestfs.pod:2239
4363 msgid ""
4364 "Note also that many functions don't take any arguments, in which case the "
4365 "C<guestfs_I<foo>_args> is completely omitted."
4366 msgstr ""
4367
4368 #. type: textblock
4369 #: ../src/guestfs.pod:2242
4370 msgid ""
4371 "The header contains the procedure number (C<guestfs_proc>) which is how the "
4372 "receiver knows what type of args structure to expect, or none at all."
4373 msgstr ""
4374
4375 #. type: textblock
4376 #: ../src/guestfs.pod:2246
4377 msgid ""
4378 "For functions that take optional arguments, the optional arguments are "
4379 "encoded in the C<guestfs_I<foo>_args> structure in the same way as ordinary "
4380 "arguments.  A bitmask in the header indicates which optional arguments are "
4381 "meaningful.  The bitmask is also checked to see if it contains bits set "
4382 "which the daemon does not know about (eg. if more optional arguments were "
4383 "added in a later version of the library), and this causes the call to be "
4384 "rejected."
4385 msgstr ""
4386
4387 #. type: textblock
4388 #: ../src/guestfs.pod:2254
4389 msgid "The reply message for ordinary functions is:"
4390 msgstr ""
4391
4392 #. type: verbatim
4393 #: ../src/guestfs.pod:2256
4394 #, no-wrap
4395 msgid ""
4396 " total length (header + ret,\n"
4397 "      but not including the length word itself)\n"
4398 " struct guestfs_message_header (encoded as XDR)\n"
4399 " struct guestfs_<foo>_ret (encoded as XDR)\n"
4400 "\n"
4401 msgstr ""
4402
4403 #. type: textblock
4404 #: ../src/guestfs.pod:2261
4405 msgid ""
4406 "As above the C<guestfs_I<foo>_ret> structure may be completely omitted for "
4407 "functions that return no formal return values."
4408 msgstr ""
4409
4410 #. type: textblock
4411 #: ../src/guestfs.pod:2264
4412 msgid ""
4413 "As above the total length of the reply is limited to C<GUESTFS_MESSAGE_MAX>."
4414 msgstr ""
4415
4416 #. type: textblock
4417 #: ../src/guestfs.pod:2267
4418 msgid ""
4419 "In the case of an error, a flag is set in the header, and the reply message "
4420 "is slightly changed:"
4421 msgstr ""
4422
4423 #. type: verbatim
4424 #: ../src/guestfs.pod:2270
4425 #, no-wrap
4426 msgid ""
4427 " total length (header + error,\n"
4428 "      but not including the length word itself)\n"
4429 " struct guestfs_message_header (encoded as XDR)\n"
4430 " struct guestfs_message_error (encoded as XDR)\n"
4431 "\n"
4432 msgstr ""
4433
4434 #. type: textblock
4435 #: ../src/guestfs.pod:2275
4436 msgid ""
4437 "The C<guestfs_message_error> structure contains the error message as a "
4438 "string."
4439 msgstr ""
4440
4441 #. type: =head3
4442 #: ../src/guestfs.pod:2278
4443 msgid "FUNCTIONS THAT HAVE FILEIN PARAMETERS"
4444 msgstr ""
4445
4446 #. type: textblock
4447 #: ../src/guestfs.pod:2280
4448 msgid ""
4449 "A C<FileIn> parameter indicates that we transfer a file I<into> the guest.  "
4450 "The normal request message is sent (see above).  However this is followed by "
4451 "a sequence of file chunks."
4452 msgstr ""
4453
4454 #. type: verbatim
4455 #: ../src/guestfs.pod:2284
4456 #, no-wrap
4457 msgid ""
4458 " total length (header + arguments,\n"
4459 "      but not including the length word itself,\n"
4460 "      and not including the chunks)\n"
4461 " struct guestfs_message_header (encoded as XDR)\n"
4462 " struct guestfs_<foo>_args (encoded as XDR)\n"
4463 " sequence of chunks for FileIn param #0\n"
4464 " sequence of chunks for FileIn param #1 etc.\n"
4465 "\n"
4466 msgstr ""
4467
4468 #. type: textblock
4469 #: ../src/guestfs.pod:2292
4470 msgid "The \"sequence of chunks\" is:"
4471 msgstr ""
4472
4473 #. type: verbatim
4474 #: ../src/guestfs.pod:2294
4475 #, no-wrap
4476 msgid ""
4477 " length of chunk (not including length word itself)\n"
4478 " struct guestfs_chunk (encoded as XDR)\n"
4479 " length of chunk\n"
4480 " struct guestfs_chunk (encoded as XDR)\n"
4481 "   ...\n"
4482 " length of chunk\n"
4483 " struct guestfs_chunk (with data.data_len == 0)\n"
4484 "\n"
4485 msgstr ""
4486
4487 #. type: textblock
4488 #: ../src/guestfs.pod:2302
4489 msgid ""
4490 "The final chunk has the C<data_len> field set to zero.  Additionally a flag "
4491 "is set in the final chunk to indicate either successful completion or early "
4492 "cancellation."
4493 msgstr ""
4494
4495 #. type: textblock
4496 #: ../src/guestfs.pod:2306
4497 msgid ""
4498 "At time of writing there are no functions that have more than one FileIn "
4499 "parameter.  However this is (theoretically) supported, by sending the "
4500 "sequence of chunks for each FileIn parameter one after another (from left to "
4501 "right)."
4502 msgstr ""
4503
4504 #. type: textblock
4505 #: ../src/guestfs.pod:2311
4506 msgid ""
4507 "Both the library (sender) I<and> the daemon (receiver) may cancel the "
4508 "transfer.  The library does this by sending a chunk with a special flag set "
4509 "to indicate cancellation.  When the daemon sees this, it cancels the whole "
4510 "RPC, does I<not> send any reply, and goes back to reading the next request."
4511 msgstr ""
4512
4513 #. type: textblock
4514 #: ../src/guestfs.pod:2317
4515 msgid ""
4516 "The daemon may also cancel.  It does this by writing a special word "
4517 "C<GUESTFS_CANCEL_FLAG> to the socket.  The library listens for this during "
4518 "the transfer, and if it gets it, it will cancel the transfer (it sends a "
4519 "cancel chunk).  The special word is chosen so that even if cancellation "
4520 "happens right at the end of the transfer (after the library has finished "
4521 "writing and has started listening for the reply), the \"spurious\" cancel "
4522 "flag will not be confused with the reply message."
4523 msgstr ""
4524
4525 #. type: textblock
4526 #: ../src/guestfs.pod:2326
4527 msgid ""
4528 "This protocol allows the transfer of arbitrary sized files (no 32 bit "
4529 "limit), and also files where the size is not known in advance (eg. from "
4530 "pipes or sockets).  However the chunks are rather small "
4531 "(C<GUESTFS_MAX_CHUNK_SIZE>), so that neither the library nor the daemon need "
4532 "to keep much in memory."
4533 msgstr ""
4534
4535 #. type: =head3
4536 #: ../src/guestfs.pod:2332
4537 msgid "FUNCTIONS THAT HAVE FILEOUT PARAMETERS"
4538 msgstr ""
4539
4540 #. type: textblock
4541 #: ../src/guestfs.pod:2334
4542 msgid ""
4543 "The protocol for FileOut parameters is exactly the same as for FileIn "
4544 "parameters, but with the roles of daemon and library reversed."
4545 msgstr ""
4546
4547 #. type: verbatim
4548 #: ../src/guestfs.pod:2337
4549 #, no-wrap
4550 msgid ""
4551 " total length (header + ret,\n"
4552 "      but not including the length word itself,\n"
4553 "      and not including the chunks)\n"
4554 " struct guestfs_message_header (encoded as XDR)\n"
4555 " struct guestfs_<foo>_ret (encoded as XDR)\n"
4556 " sequence of chunks for FileOut param #0\n"
4557 " sequence of chunks for FileOut param #1 etc.\n"
4558 "\n"
4559 msgstr ""
4560
4561 #. type: =head3
4562 #: ../src/guestfs.pod:2345
4563 msgid "INITIAL MESSAGE"
4564 msgstr ""
4565
4566 #. type: textblock
4567 #: ../src/guestfs.pod:2347
4568 msgid ""
4569 "When the daemon launches it sends an initial word (C<GUESTFS_LAUNCH_FLAG>) "
4570 "which indicates that the guest and daemon is alive.  This is what L</"
4571 "guestfs_launch> waits for."
4572 msgstr ""
4573
4574 #. type: =head3
4575 #: ../src/guestfs.pod:2351
4576 msgid "PROGRESS NOTIFICATION MESSAGES"
4577 msgstr ""
4578
4579 #. type: textblock
4580 #: ../src/guestfs.pod:2353
4581 msgid ""
4582 "The daemon may send progress notification messages at any time.  These are "
4583 "distinguished by the normal length word being replaced by "
4584 "C<GUESTFS_PROGRESS_FLAG>, followed by a fixed size progress message."
4585 msgstr ""
4586
4587 #. type: textblock
4588 #: ../src/guestfs.pod:2357
4589 msgid ""
4590 "The library turns them into progress callbacks (see L</"
4591 "GUESTFS_EVENT_PROGRESS>) if there is a callback registered, or discards them "
4592 "if not."
4593 msgstr ""
4594
4595 #. type: textblock
4596 #: ../src/guestfs.pod:2361
4597 msgid ""
4598 "The daemon self-limits the frequency of progress messages it sends (see "
4599 "C<daemon/proto.c:notify_progress>).  Not all calls generate progress "
4600 "messages."
4601 msgstr ""
4602
4603 #. type: =head1
4604 #: ../src/guestfs.pod:2365
4605 msgid "LIBGUESTFS VERSION NUMBERS"
4606 msgstr ""
4607
4608 #. type: textblock
4609 #: ../src/guestfs.pod:2367
4610 msgid ""
4611 "Since April 2010, libguestfs has started to make separate development and "
4612 "stable releases, along with corresponding branches in our git repository.  "
4613 "These separate releases can be identified by version number:"
4614 msgstr ""
4615
4616 #. type: verbatim
4617 #: ../src/guestfs.pod:2372
4618 #, no-wrap
4619 msgid ""
4620 "                 even numbers for stable: 1.2.x, 1.4.x, ...\n"
4621 "       .-------- odd numbers for development: 1.3.x, 1.5.x, ...\n"
4622 "       |\n"
4623 "       v\n"
4624 " 1  .  3  .  5\n"
4625 " ^           ^\n"
4626 " |           |\n"
4627 " |           `-------- sub-version\n"
4628 " |\n"
4629 " `------ always '1' because we don't change the ABI\n"
4630 "\n"
4631 msgstr ""
4632
4633 #. type: textblock
4634 #: ../src/guestfs.pod:2383
4635 msgid "Thus \"1.3.5\" is the 5th update to the development branch \"1.3\"."
4636 msgstr ""
4637
4638 #. type: textblock
4639 #: ../src/guestfs.pod:2385
4640 msgid ""
4641 "As time passes we cherry pick fixes from the development branch and backport "
4642 "those into the stable branch, the effect being that the stable branch should "
4643 "get more stable and less buggy over time.  So the stable releases are ideal "
4644 "for people who don't need new features but would just like the software to "
4645 "work."
4646 msgstr ""
4647
4648 #. type: textblock
4649 #: ../src/guestfs.pod:2391
4650 msgid "Our criteria for backporting changes are:"
4651 msgstr ""
4652
4653 #. type: textblock
4654 #: ../src/guestfs.pod:2397
4655 msgid ""
4656 "Documentation changes which don't affect any code are backported unless the "
4657 "documentation refers to a future feature which is not in stable."
4658 msgstr ""
4659
4660 #. type: textblock
4661 #: ../src/guestfs.pod:2403
4662 msgid ""
4663 "Bug fixes which are not controversial, fix obvious problems, and have been "
4664 "well tested are backported."
4665 msgstr ""
4666
4667 #. type: textblock
4668 #: ../src/guestfs.pod:2408
4669 msgid ""
4670 "Simple rearrangements of code which shouldn't affect how it works get "
4671 "backported.  This is so that the code in the two branches doesn't get too "
4672 "far out of step, allowing us to backport future fixes more easily."
4673 msgstr ""
4674
4675 #. type: textblock
4676 #: ../src/guestfs.pod:2414
4677 msgid ""
4678 "We I<don't> backport new features, new APIs, new tools etc, except in one "
4679 "exceptional case: the new feature is required in order to implement an "
4680 "important bug fix."
4681 msgstr ""
4682
4683 #. type: textblock
4684 #: ../src/guestfs.pod:2420
4685 msgid ""
4686 "A new stable branch starts when we think the new features in development are "
4687 "substantial and compelling enough over the current stable branch to warrant "
4688 "it.  When that happens we create new stable and development versions 1.N.0 "
4689 "and 1.(N+1).0 [N is even].  The new dot-oh release won't necessarily be so "
4690 "stable at this point, but by backporting fixes from development, that branch "
4691 "will stabilize over time."
4692 msgstr ""
4693
4694 #. type: =head1
4695 #: ../src/guestfs.pod:2428
4696 msgid "EXTENDING LIBGUESTFS"
4697 msgstr ""
4698
4699 #. type: =head2
4700 #: ../src/guestfs.pod:2430
4701 msgid "ADDING A NEW API ACTION"
4702 msgstr ""
4703
4704 #. type: textblock
4705 #: ../src/guestfs.pod:2432
4706 msgid ""
4707 "Large amounts of boilerplate code in libguestfs (RPC, bindings, "
4708 "documentation) are generated, and this makes it easy to extend the "
4709 "libguestfs API."
4710 msgstr ""
4711
4712 #. type: textblock
4713 #: ../src/guestfs.pod:2436
4714 msgid "To add a new API action there are two changes:"
4715 msgstr ""
4716
4717 #. type: textblock
4718 #: ../src/guestfs.pod:2442
4719 msgid ""
4720 "You need to add a description of the call (name, parameters, return type, "
4721 "tests, documentation) to C<generator/generator_actions.ml>."
4722 msgstr ""
4723
4724 #. type: textblock
4725 #: ../src/guestfs.pod:2445
4726 msgid ""
4727 "There are two sorts of API action, depending on whether the call goes "
4728 "through to the daemon in the appliance, or is serviced entirely by the "
4729 "library (see L</ARCHITECTURE> above).  L</guestfs_sync> is an example of the "
4730 "former, since the sync is done in the appliance.  L</guestfs_set_trace> is "
4731 "an example of the latter, since a trace flag is maintained in the handle and "
4732 "all tracing is done on the library side."
4733 msgstr ""
4734
4735 #. type: textblock
4736 #: ../src/guestfs.pod:2453
4737 msgid ""
4738 "Most new actions are of the first type, and get added to the "
4739 "C<daemon_functions> list.  Each function has a unique procedure number used "
4740 "in the RPC protocol which is assigned to that action when we publish "
4741 "libguestfs and cannot be reused.  Take the latest procedure number and "
4742 "increment it."
4743 msgstr ""
4744
4745 #. type: textblock
4746 #: ../src/guestfs.pod:2459
4747 msgid ""
4748 "For library-only actions of the second type, add to the "
4749 "C<non_daemon_functions> list.  Since these functions are serviced by the "
4750 "library and do not travel over the RPC mechanism to the daemon, these "
4751 "functions do not need a procedure number, and so the procedure number is set "
4752 "to C<-1>."
4753 msgstr ""
4754
4755 #. type: textblock
4756 #: ../src/guestfs.pod:2467
4757 msgid "Implement the action (in C):"
4758 msgstr ""
4759
4760 #. type: textblock
4761 #: ../src/guestfs.pod:2469
4762 msgid ""
4763 "For daemon actions, implement the function C<do_E<lt>nameE<gt>> in the "
4764 "C<daemon/> directory."
4765 msgstr ""
4766
4767 #. type: textblock
4768 #: ../src/guestfs.pod:2472
4769 msgid ""
4770 "For library actions, implement the function C<guestfs__E<lt>nameE<gt>> "
4771 "(note: double underscore) in the C<src/> directory."
4772 msgstr ""
4773
4774 #. type: textblock
4775 #: ../src/guestfs.pod:2475
4776 msgid "In either case, use another function as an example of what to do."
4777 msgstr ""
4778
4779 #. type: textblock
4780 #: ../src/guestfs.pod:2479
4781 msgid "After making these changes, use C<make> to compile."
4782 msgstr ""
4783
4784 #. type: textblock
4785 #: ../src/guestfs.pod:2481
4786 msgid ""
4787 "Note that you don't need to implement the RPC, language bindings, manual "
4788 "pages or anything else.  It's all automatically generated from the OCaml "
4789 "description."
4790 msgstr ""
4791
4792 #. type: =head2
4793 #: ../src/guestfs.pod:2485
4794 msgid "ADDING TESTS FOR AN API ACTION"
4795 msgstr ""
4796
4797 #. type: textblock
4798 #: ../src/guestfs.pod:2487
4799 msgid ""
4800 "You can supply zero or as many tests as you want per API call.  The tests "
4801 "can either be added as part of the API description (C<generator/"
4802 "generator_actions.ml>), or in some rarer cases you may want to drop a script "
4803 "into C<regressions/>.  Note that adding a script to C<regressions/> is "
4804 "slower, so if possible use the first method."
4805 msgstr ""
4806
4807 #. type: textblock
4808 #: ../src/guestfs.pod:2493
4809 msgid ""
4810 "The following describes the test environment used when you add an API test "
4811 "in C<generator_actions.ml>."
4812 msgstr ""
4813
4814 #. type: textblock
4815 #: ../src/guestfs.pod:2496
4816 msgid "The test environment has 4 block devices:"
4817 msgstr ""
4818
4819 #. type: =item
4820 #: ../src/guestfs.pod:2500
4821 msgid "C</dev/sda> 500MB"
4822 msgstr ""
4823
4824 #. type: textblock
4825 #: ../src/guestfs.pod:2502
4826 msgid "General block device for testing."
4827 msgstr ""
4828
4829 #. type: =item
4830 #: ../src/guestfs.pod:2504
4831 msgid "C</dev/sdb> 50MB"
4832 msgstr ""
4833
4834 #. type: textblock
4835 #: ../src/guestfs.pod:2506
4836 msgid ""
4837 "C</dev/sdb1> is an ext2 filesystem used for testing filesystem write "
4838 "operations."
4839 msgstr ""
4840
4841 #. type: =item
4842 #: ../src/guestfs.pod:2509
4843 msgid "C</dev/sdc> 10MB"
4844 msgstr ""
4845
4846 #. type: textblock
4847 #: ../src/guestfs.pod:2511
4848 msgid "Used in a few tests where two block devices are needed."
4849 msgstr ""
4850
4851 #. type: =item
4852 #: ../src/guestfs.pod:2513
4853 msgid "C</dev/sdd>"
4854 msgstr "C</dev/sdd>"
4855
4856 #. type: textblock
4857 #: ../src/guestfs.pod:2515
4858 msgid "ISO with fixed content (see C<images/test.iso>)."
4859 msgstr ""
4860
4861 #. type: textblock
4862 #: ../src/guestfs.pod:2519
4863 msgid ""
4864 "To be able to run the tests in a reasonable amount of time, the libguestfs "
4865 "appliance and block devices are reused between tests.  So don't try testing "
4866 "L</guestfs_kill_subprocess> :-x"
4867 msgstr ""
4868
4869 #. type: textblock
4870 #: ../src/guestfs.pod:2523
4871 msgid ""
4872 "Each test starts with an initial scenario, selected using one of the "
4873 "C<Init*> expressions, described in C<generator/generator_types.ml>.  These "
4874 "initialize the disks mentioned above in a particular way as documented in "
4875 "C<generator_types.ml>.  You should not assume anything about the previous "
4876 "contents of other disks that are not initialized."
4877 msgstr ""
4878
4879 #. type: textblock
4880 #: ../src/guestfs.pod:2529
4881 msgid ""
4882 "You can add a prerequisite clause to any individual test.  This is a run-"
4883 "time check, which, if it fails, causes the test to be skipped.  Useful if "
4884 "testing a command which might not work on all variations of libguestfs "
4885 "builds.  A test that has prerequisite of C<Always> means to run "
4886 "unconditionally."
4887 msgstr ""
4888
4889 #. type: textblock
4890 #: ../src/guestfs.pod:2535
4891 msgid ""
4892 "In addition, packagers can skip individual tests by setting environment "
4893 "variables before running C<make check>."
4894 msgstr ""
4895
4896 #. type: verbatim
4897 #: ../src/guestfs.pod:2538
4898 #, no-wrap
4899 msgid ""
4900 " SKIP_TEST_<CMD>_<NUM>=1\n"
4901 "\n"
4902 msgstr ""
4903
4904 #. type: textblock
4905 #: ../src/guestfs.pod:2540
4906 msgid "eg: C<SKIP_TEST_COMMAND_3=1> skips test #3 of L</guestfs_command>."
4907 msgstr ""
4908
4909 #. type: textblock
4910 #: ../src/guestfs.pod:2542
4911 msgid "or:"
4912 msgstr "або:"
4913
4914 #. type: verbatim
4915 #: ../src/guestfs.pod:2544
4916 #, no-wrap
4917 msgid ""
4918 " SKIP_TEST_<CMD>=1\n"
4919 "\n"
4920 msgstr ""
4921
4922 #. type: textblock
4923 #: ../src/guestfs.pod:2546
4924 msgid "eg: C<SKIP_TEST_ZEROFREE=1> skips all L</guestfs_zerofree> tests."
4925 msgstr ""
4926
4927 #. type: textblock
4928 #: ../src/guestfs.pod:2548
4929 msgid "Packagers can run only certain tests by setting for example:"
4930 msgstr ""
4931
4932 #. type: verbatim
4933 #: ../src/guestfs.pod:2550
4934 #, no-wrap
4935 msgid ""
4936 " TEST_ONLY=\"vfs_type zerofree\"\n"
4937 "\n"
4938 msgstr ""
4939
4940 #. type: textblock
4941 #: ../src/guestfs.pod:2552
4942 msgid ""
4943 "See C<capitests/tests.c> for more details of how these environment variables "
4944 "work."
4945 msgstr ""
4946
4947 #. type: =head2
4948 #: ../src/guestfs.pod:2555
4949 msgid "DEBUGGING NEW API ACTIONS"
4950 msgstr ""
4951
4952 #. type: textblock
4953 #: ../src/guestfs.pod:2557
4954 msgid "Test new actions work before submitting them."
4955 msgstr ""
4956
4957 #. type: textblock
4958 #: ../src/guestfs.pod:2559
4959 msgid "You can use guestfish to try out new commands."
4960 msgstr ""
4961
4962 #. type: textblock
4963 #: ../src/guestfs.pod:2561
4964 msgid ""
4965 "Debugging the daemon is a problem because it runs inside a minimal "
4966 "environment.  However you can fprintf messages in the daemon to stderr, and "
4967 "they will show up if you use C<guestfish -v>."
4968 msgstr ""
4969
4970 #. type: =head2
4971 #: ../src/guestfs.pod:2565
4972 msgid "FORMATTING CODE AND OTHER CONVENTIONS"
4973 msgstr ""
4974
4975 #. type: textblock
4976 #: ../src/guestfs.pod:2567
4977 msgid ""
4978 "Our C source code generally adheres to some basic code-formatting "
4979 "conventions.  The existing code base is not totally consistent on this "
4980 "front, but we do prefer that contributed code be formatted similarly.  In "
4981 "short, use spaces-not-TABs for indentation, use 2 spaces for each "
4982 "indentation level, and other than that, follow the K&R style."
4983 msgstr ""
4984
4985 #. type: textblock
4986 #: ../src/guestfs.pod:2573
4987 msgid ""
4988 "If you use Emacs, add the following to one of one of your start-up files (e."
4989 "g., ~/.emacs), to help ensure that you get indentation right:"
4990 msgstr ""
4991
4992 #. type: verbatim
4993 #: ../src/guestfs.pod:2576
4994 #, no-wrap
4995 msgid ""
4996 " ;;; In libguestfs, indent with spaces everywhere (not TABs).\n"
4997 " ;;; Exceptions: Makefile and ChangeLog modes.\n"
4998 " (add-hook 'find-file-hook\n"
4999 "     '(lambda () (if (and buffer-file-name\n"
5000 "                          (string-match \"/libguestfs\\\\>\"\n"
5001 "                              (buffer-file-name))\n"
5002 "                          (not (string-equal mode-name \"Change Log\"))\n"
5003 "                          (not (string-equal mode-name \"Makefile\")))\n"
5004 "                     (setq indent-tabs-mode nil))))\n"
5005 " \n"
5006 msgstr ""
5007
5008 #. type: verbatim
5009 #: ../src/guestfs.pod:2586
5010 #, no-wrap
5011 msgid ""
5012 " ;;; When editing C sources in libguestfs, use this style.\n"
5013 " (defun libguestfs-c-mode ()\n"
5014 "   \"C mode with adjusted defaults for use with libguestfs.\"\n"
5015 "   (interactive)\n"
5016 "   (c-set-style \"K&R\")\n"
5017 "   (setq c-indent-level 2)\n"
5018 "   (setq c-basic-offset 2))\n"
5019 " (add-hook 'c-mode-hook\n"
5020 "           '(lambda () (if (string-match \"/libguestfs\\\\>\"\n"
5021 "                               (buffer-file-name))\n"
5022 "                           (libguestfs-c-mode))))\n"
5023 "\n"
5024 msgstr ""
5025
5026 #. type: textblock
5027 #: ../src/guestfs.pod:2598
5028 msgid "Enable warnings when compiling (and fix any problems this finds):"
5029 msgstr ""
5030
5031 #. type: verbatim
5032 #: ../src/guestfs.pod:2601
5033 #, no-wrap
5034 msgid ""
5035 " ./configure --enable-gcc-warnings\n"
5036 "\n"
5037 msgstr ""
5038
5039 #. type: textblock
5040 #: ../src/guestfs.pod:2603
5041 msgid "Useful targets are:"
5042 msgstr ""
5043
5044 #. type: verbatim
5045 #: ../src/guestfs.pod:2605
5046 #, no-wrap
5047 msgid ""
5048 " make syntax-check  # checks the syntax of the C code\n"
5049 " make check         # runs the test suite\n"
5050 "\n"
5051 msgstr ""
5052
5053 #. type: =head2
5054 #: ../src/guestfs.pod:2608
5055 msgid "DAEMON CUSTOM PRINTF FORMATTERS"
5056 msgstr ""
5057
5058 #. type: textblock
5059 #: ../src/guestfs.pod:2610
5060 msgid ""
5061 "In the daemon code we have created custom printf formatters C<%Q> and C<%R>, "
5062 "which are used to do shell quoting."
5063 msgstr ""
5064
5065 #. type: =item
5066 #: ../src/guestfs.pod:2615
5067 msgid "%Q"
5068 msgstr "%Q"
5069
5070 #. type: textblock
5071 #: ../src/guestfs.pod:2617
5072 msgid ""
5073 "Simple shell quoted string.  Any spaces or other shell characters are "
5074 "escaped for you."
5075 msgstr ""
5076
5077 #. type: =item
5078 #: ../src/guestfs.pod:2620
5079 msgid "%R"
5080 msgstr "%R"
5081
5082 #. type: textblock
5083 #: ../src/guestfs.pod:2622
5084 msgid ""
5085 "Same as C<%Q> except the string is treated as a path which is prefixed by "
5086 "the sysroot."
5087 msgstr ""
5088
5089 #. type: textblock
5090 #: ../src/guestfs.pod:2627 ../fish/guestfish.pod:240 ../fish/guestfish.pod:613
5091 msgid "For example:"
5092 msgstr "Приклад:"
5093
5094 #. type: verbatim
5095 #: ../src/guestfs.pod:2629
5096 #, no-wrap
5097 msgid ""
5098 " asprintf (&cmd, \"cat %R\", path);\n"
5099 "\n"
5100 msgstr ""
5101
5102 #. type: textblock
5103 #: ../src/guestfs.pod:2631
5104 msgid "would produce C<cat /sysroot/some\\ path\\ with\\ spaces>"
5105 msgstr ""
5106
5107 #. type: textblock
5108 #: ../src/guestfs.pod:2633
5109 msgid ""
5110 "I<Note:> Do I<not> use these when you are passing parameters to the C<command"
5111 "{,r,v,rv}()> functions.  These parameters do NOT need to be quoted because "
5112 "they are not passed via the shell (instead, straight to exec).  You probably "
5113 "want to use the C<sysroot_path()> function however."
5114 msgstr ""
5115
5116 #. type: =head2
5117 #: ../src/guestfs.pod:2639
5118 msgid "SUBMITTING YOUR NEW API ACTIONS"
5119 msgstr ""
5120
5121 #. type: textblock
5122 #: ../src/guestfs.pod:2641
5123 msgid ""
5124 "Submit patches to the mailing list: L<http://www.redhat.com/mailman/listinfo/"
5125 "libguestfs> and CC to L<rjones@redhat.com>."
5126 msgstr ""
5127
5128 #. type: =head2
5129 #: ../src/guestfs.pod:2645
5130 msgid "INTERNATIONALIZATION (I18N) SUPPORT"
5131 msgstr ""
5132
5133 #. type: textblock
5134 #: ../src/guestfs.pod:2647
5135 msgid "We support i18n (gettext anyhow) in the library."
5136 msgstr ""
5137
5138 #. type: textblock
5139 #: ../src/guestfs.pod:2649
5140 msgid ""
5141 "However many messages come from the daemon, and we don't translate those at "
5142 "the moment.  One reason is that the appliance generally has all locale files "
5143 "removed from it, because they take up a lot of space.  So we'd have to readd "
5144 "some of those, as well as copying our PO files into the appliance."
5145 msgstr ""
5146
5147 #. type: textblock
5148 #: ../src/guestfs.pod:2655
5149 msgid ""
5150 "Debugging messages are never translated, since they are intended for the "
5151 "programmers."
5152 msgstr ""
5153
5154 #. type: =head2
5155 #: ../src/guestfs.pod:2658
5156 msgid "SOURCE CODE SUBDIRECTORIES"
5157 msgstr ""
5158
5159 #. type: =item
5160 #: ../src/guestfs.pod:2662 ../src/guestfs-actions.pod:5806
5161 #: ../fish/guestfish-actions.pod:3900
5162 msgid "C<appliance>"
5163 msgstr "C<appliance>"
5164
5165 #. type: textblock
5166 #: ../src/guestfs.pod:2664
5167 msgid "The libguestfs appliance, build scripts and so on."
5168 msgstr ""
5169
5170 #. type: =item
5171 #: ../src/guestfs.pod:2666
5172 msgid "C<capitests>"
5173 msgstr "C<capitests>"
5174
5175 #. type: textblock
5176 #: ../src/guestfs.pod:2668
5177 msgid "Automated tests of the C API."
5178 msgstr ""
5179
5180 #. type: =item
5181 #: ../src/guestfs.pod:2670
5182 msgid "C<cat>"
5183 msgstr "C<cat>"
5184
5185 #. type: textblock
5186 #: ../src/guestfs.pod:2672
5187 msgid ""
5188 "The L<virt-cat(1)>, L<virt-filesystems(1)> and L<virt-ls(1)> commands and "
5189 "documentation."
5190 msgstr ""
5191
5192 #. type: =item
5193 #: ../src/guestfs.pod:2675
5194 msgid "C<contrib>"
5195 msgstr "C<contrib>"
5196
5197 #. type: textblock
5198 #: ../src/guestfs.pod:2677
5199 msgid "Outside contributions, experimental parts."
5200 msgstr ""
5201
5202 #. type: =item
5203 #: ../src/guestfs.pod:2679
5204 msgid "C<daemon>"
5205 msgstr "C<daemon>"
5206
5207 #. type: textblock
5208 #: ../src/guestfs.pod:2681
5209 msgid ""
5210 "The daemon that runs inside the libguestfs appliance and carries out actions."
5211 msgstr ""
5212
5213 #. type: =item
5214 #: ../src/guestfs.pod:2684
5215 msgid "C<df>"
5216 msgstr "C<df>"
5217
5218 #. type: textblock
5219 #: ../src/guestfs.pod:2686
5220 msgid "L<virt-df(1)> command and documentation."
5221 msgstr ""
5222
5223 #. type: =item
5224 #: ../src/guestfs.pod:2688
5225 msgid "C<examples>"
5226 msgstr "C<examples>"
5227
5228 #. type: textblock
5229 #: ../src/guestfs.pod:2690
5230 msgid "C API example code."
5231 msgstr "Код прикладів використання програмного інтерфейсу мовою C."
5232
5233 #. type: =item
5234 #: ../src/guestfs.pod:2692
5235 msgid "C<fish>"
5236 msgstr "C<fish>"
5237
5238 #. type: textblock
5239 #: ../src/guestfs.pod:2694
5240 msgid ""
5241 "L<guestfish(1)>, the command-line shell, and various shell scripts built on "
5242 "top such as L<virt-copy-in(1)>, L<virt-copy-out(1)>, L<virt-tar-in(1)>, "
5243 "L<virt-tar-out(1)>."
5244 msgstr ""
5245
5246 #. type: =item
5247 #: ../src/guestfs.pod:2698
5248 msgid "C<fuse>"
5249 msgstr "C<fuse>"
5250
5251 #. type: textblock
5252 #: ../src/guestfs.pod:2700
5253 msgid ""
5254 "L<guestmount(1)>, FUSE (userspace filesystem) built on top of libguestfs."
5255 msgstr ""
5256
5257 #. type: =item
5258 #: ../src/guestfs.pod:2702
5259 msgid "C<generator>"
5260 msgstr "C<generator>"
5261
5262 #. type: textblock
5263 #: ../src/guestfs.pod:2704
5264 msgid ""
5265 "The crucially important generator, used to automatically generate large "
5266 "amounts of boilerplate C code for things like RPC and bindings."
5267 msgstr ""
5268
5269 #. type: =item
5270 #: ../src/guestfs.pod:2707
5271 msgid "C<images>"
5272 msgstr "C<images>"
5273
5274 #. type: textblock
5275 #: ../src/guestfs.pod:2709
5276 msgid "Files used by the test suite."
5277 msgstr ""
5278
5279 #. type: textblock
5280 #: ../src/guestfs.pod:2711
5281 msgid "Some \"phony\" guest images which we test against."
5282 msgstr ""
5283
5284 #. type: =item
5285 #: ../src/guestfs.pod:2713
5286 msgid "C<inspector>"
5287 msgstr "C<inspector>"
5288
5289 #. type: textblock
5290 #: ../src/guestfs.pod:2715
5291 msgid "L<virt-inspector(1)>, the virtual machine image inspector."
5292 msgstr ""
5293
5294 #. type: =item
5295 #: ../src/guestfs.pod:2717
5296 msgid "C<logo>"
5297 msgstr "C<logo>"
5298
5299 #. type: textblock
5300 #: ../src/guestfs.pod:2719
5301 msgid "Logo used on the website.  The fish is called Arthur by the way."
5302 msgstr ""
5303
5304 #. type: =item
5305 #: ../src/guestfs.pod:2721
5306 msgid "C<m4>"
5307 msgstr "C<m4>"
5308
5309 #. type: textblock
5310 #: ../src/guestfs.pod:2723
5311 msgid "M4 macros used by autoconf."
5312 msgstr ""
5313
5314 #. type: =item
5315 #: ../src/guestfs.pod:2725
5316 msgid "C<po>"
5317 msgstr "C<po>"
5318
5319 #. type: textblock
5320 #: ../src/guestfs.pod:2727
5321 msgid "Translations of simple gettext strings."
5322 msgstr "Переклади простих рядків gettext."
5323
5324 #. type: =item
5325 #: ../src/guestfs.pod:2729
5326 msgid "C<po-docs>"
5327 msgstr "C<po-docs>"
5328
5329 #. type: textblock
5330 #: ../src/guestfs.pod:2731
5331 msgid ""
5332 "The build infrastructure and PO files for translations of manpages and POD "
5333 "files.  Eventually this will be combined with the C<po> directory, but that "
5334 "is rather complicated."
5335 msgstr ""
5336
5337 #. type: =item
5338 #: ../src/guestfs.pod:2735
5339 msgid "C<regressions>"
5340 msgstr "C<regressions>"
5341
5342 #. type: textblock
5343 #: ../src/guestfs.pod:2737
5344 msgid "Regression tests."
5345 msgstr "Тести на регресії."
5346
5347 #. type: =item
5348 #: ../src/guestfs.pod:2739
5349 msgid "C<rescue>"
5350 msgstr "C<rescue>"
5351
5352 #. type: textblock
5353 #: ../src/guestfs.pod:2741
5354 msgid "L<virt-rescue(1)> command and documentation."
5355 msgstr ""
5356
5357 #. type: =item
5358 #: ../src/guestfs.pod:2743
5359 msgid "C<src>"
5360 msgstr "C<src>"
5361
5362 #. type: textblock
5363 #: ../src/guestfs.pod:2745
5364 msgid "Source code to the C library."
5365 msgstr ""
5366
5367 #. type: =item
5368 #: ../src/guestfs.pod:2747
5369 msgid "C<tools>"
5370 msgstr "C<tools>"
5371
5372 #. type: textblock
5373 #: ../src/guestfs.pod:2749
5374 msgid "Command line tools written in Perl (L<virt-resize(1)> and many others)."
5375 msgstr ""
5376
5377 #. type: =item
5378 #: ../src/guestfs.pod:2751
5379 msgid "C<test-tool>"
5380 msgstr "C<test-tool>"
5381
5382 #. type: textblock
5383 #: ../src/guestfs.pod:2753
5384 msgid ""
5385 "Test tool for end users to test if their qemu/kernel combination will work "
5386 "with libguestfs."
5387 msgstr ""
5388
5389 #. type: =item
5390 #: ../src/guestfs.pod:2756
5391 msgid "C<csharp>"
5392 msgstr "C<csharp>"
5393
5394 #. type: =item
5395 #: ../src/guestfs.pod:2758
5396 msgid "C<haskell>"
5397 msgstr "C<haskell>"
5398
5399 #. type: =item
5400 #: ../src/guestfs.pod:2760
5401 msgid "C<java>"
5402 msgstr "C<java>"
5403
5404 #. type: =item
5405 #: ../src/guestfs.pod:2762
5406 msgid "C<ocaml>"
5407 msgstr "C<ocaml>"
5408
5409 #. type: =item
5410 #: ../src/guestfs.pod:2764
5411 msgid "C<php>"
5412 msgstr "C<php>"
5413
5414 #. type: =item
5415 #: ../src/guestfs.pod:2766
5416 msgid "C<perl>"
5417 msgstr "C<perl>"
5418
5419 #. type: =item
5420 #: ../src/guestfs.pod:2768
5421 msgid "C<python>"
5422 msgstr "C<python>"
5423
5424 #. type: =item
5425 #: ../src/guestfs.pod:2770
5426 msgid "C<ruby>"
5427 msgstr "C<ruby>"
5428
5429 #. type: textblock
5430 #: ../src/guestfs.pod:2772
5431 msgid "Language bindings."
5432 msgstr "Прив’язки до мов програмування."
5433
5434 #. type: =head1
5435 #: ../src/guestfs.pod:2776 ../fish/guestfish.pod:1015
5436 #: ../test-tool/libguestfs-test-tool.pod:82 ../tools/virt-edit.pl:476
5437 msgid "ENVIRONMENT VARIABLES"
5438 msgstr "ЗМІННІ СЕРЕДОВИЩА"
5439
5440 #. type: =item
5441 #: ../src/guestfs.pod:2780 ../fish/guestfish.pod:1041
5442 msgid "LIBGUESTFS_APPEND"
5443 msgstr ""
5444
5445 #. type: textblock
5446 #: ../src/guestfs.pod:2782 ../fish/guestfish.pod:1043
5447 msgid "Pass additional options to the guest kernel."
5448 msgstr ""
5449
5450 #. type: =item
5451 #: ../src/guestfs.pod:2784 ../fish/guestfish.pod:1045
5452 msgid "LIBGUESTFS_DEBUG"
5453 msgstr ""
5454
5455 #. type: textblock
5456 #: ../src/guestfs.pod:2786
5457 msgid ""
5458 "Set C<LIBGUESTFS_DEBUG=1> to enable verbose messages.  This has the same "
5459 "effect as calling C<guestfs_set_verbose (g, 1)>."
5460 msgstr ""
5461
5462 #. type: =item
5463 #: ../src/guestfs.pod:2789 ../fish/guestfish.pod:1050
5464 msgid "LIBGUESTFS_MEMSIZE"
5465 msgstr ""
5466
5467 #. type: textblock
5468 #: ../src/guestfs.pod:2791 ../fish/guestfish.pod:1052
5469 msgid ""
5470 "Set the memory allocated to the qemu process, in megabytes.  For example:"
5471 msgstr ""
5472
5473 #. type: verbatim
5474 #: ../src/guestfs.pod:2794 ../fish/guestfish.pod:1055
5475 #, no-wrap
5476 msgid ""
5477 " LIBGUESTFS_MEMSIZE=700\n"
5478 "\n"
5479 msgstr ""
5480
5481 #. type: =item
5482 #: ../src/guestfs.pod:2796 ../fish/guestfish.pod:1057
5483 msgid "LIBGUESTFS_PATH"
5484 msgstr ""
5485
5486 #. type: textblock
5487 #: ../src/guestfs.pod:2798
5488 msgid ""
5489 "Set the path that libguestfs uses to search for a supermin appliance.  See "
5490 "the discussion of paths in section L</PATH> above."
5491 msgstr ""
5492
5493 #. type: =item
5494 #: ../src/guestfs.pod:2801 ../fish/guestfish.pod:1062
5495 msgid "LIBGUESTFS_QEMU"
5496 msgstr ""
5497
5498 #. type: textblock
5499 #: ../src/guestfs.pod:2803 ../fish/guestfish.pod:1064
5500 msgid ""
5501 "Set the default qemu binary that libguestfs uses.  If not set, then the qemu "
5502 "which was found at compile time by the configure script is used."
5503 msgstr ""
5504
5505 #. type: textblock
5506 #: ../src/guestfs.pod:2807
5507 msgid "See also L</QEMU WRAPPERS> above."
5508 msgstr ""
5509
5510 #. type: =item
5511 #: ../src/guestfs.pod:2809 ../fish/guestfish.pod:1068
5512 msgid "LIBGUESTFS_TRACE"
5513 msgstr ""
5514
5515 #. type: textblock
5516 #: ../src/guestfs.pod:2811
5517 msgid ""
5518 "Set C<LIBGUESTFS_TRACE=1> to enable command traces.  This has the same "
5519 "effect as calling C<guestfs_set_trace (g, 1)>."
5520 msgstr ""
5521
5522 #. type: =item
5523 #: ../src/guestfs.pod:2814 ../fish/guestfish.pod:1077
5524 msgid "TMPDIR"
5525 msgstr ""
5526
5527 #. type: textblock
5528 #: ../src/guestfs.pod:2816 ../fish/guestfish.pod:1079
5529 msgid ""
5530 "Location of temporary directory, defaults to C</tmp> except for the cached "
5531 "supermin appliance which defaults to C</var/tmp>."
5532 msgstr ""
5533
5534 #. type: textblock
5535 #: ../src/guestfs.pod:2819 ../fish/guestfish.pod:1082
5536 msgid ""
5537 "If libguestfs was compiled to use the supermin appliance then the real "
5538 "appliance is cached in this directory, shared between all handles belonging "
5539 "to the same EUID.  You can use C<$TMPDIR> to configure another directory to "
5540 "use in case C</var/tmp> is not large enough."
5541 msgstr ""
5542
5543 #. type: =head1
5544 #: ../src/guestfs.pod:2827 ../fish/guestfish.pod:1149
5545 #: ../test-tool/libguestfs-test-tool.pod:87 ../fuse/guestmount.pod:267
5546 #: ../tools/virt-edit.pl:496 ../tools/virt-win-reg.pl:572
5547 #: ../tools/virt-list-filesystems.pl:189 ../tools/virt-tar.pl:286
5548 #: ../tools/virt-make-fs.pl:539 ../tools/virt-list-partitions.pl:257
5549 msgid "SEE ALSO"
5550 msgstr "ТАКОЖ ПЕРЕГЛЯНЬТЕ"
5551
5552 #. type: textblock
5553 #: ../src/guestfs.pod:2829
5554 msgid ""
5555 "L<guestfs-examples(3)>, L<guestfs-ocaml(3)>, L<guestfs-python(3)>, L<guestfs-"
5556 "ruby(3)>, L<guestfish(1)>, L<guestmount(1)>, L<virt-cat(1)>, L<virt-copy-in"
5557 "(1)>, L<virt-copy-out(1)>, L<virt-df(1)>, L<virt-edit(1)>, L<virt-filesystems"
5558 "(1)>, L<virt-inspector(1)>, L<virt-list-filesystems(1)>, L<virt-list-"
5559 "partitions(1)>, L<virt-ls(1)>, L<virt-make-fs(1)>, L<virt-rescue(1)>, L<virt-"
5560 "tar(1)>, L<virt-tar-in(1)>, L<virt-tar-out(1)>, L<virt-win-reg(1)>, L<qemu(1)"
5561 ">, L<febootstrap(1)>, L<hivex(3)>, L<http://libguestfs.org/>."
5562 msgstr ""
5563
5564 #. type: textblock
5565 #: ../src/guestfs.pod:2856
5566 msgid ""
5567 "Tools with a similar purpose: L<fdisk(8)>, L<parted(8)>, L<kpartx(8)>, L<lvm"
5568 "(8)>, L<disktype(1)>."
5569 msgstr ""
5570
5571 #. type: =head1
5572 #: ../src/guestfs.pod:2863 ../tools/virt-win-reg.pl:587
5573 #: ../tools/virt-make-fs.pl:553
5574 msgid "BUGS"
5575 msgstr "ВАДИ"
5576
5577 #. type: textblock
5578 #: ../src/guestfs.pod:2865
5579 msgid "To get a list of bugs against libguestfs use this link:"
5580 msgstr ""
5581 "Щоб переглянути список відомих вад у libguestfs, скористайтеся таким "
5582 "посиланням:"
5583
5584 #. type: textblock
5585 #: ../src/guestfs.pod:2867
5586 msgid ""
5587 "L<https://bugzilla.redhat.com/buglist.cgi?"
5588 "component=libguestfs&product=Virtualization+Tools>"
5589 msgstr ""
5590 "L<https://bugzilla.redhat.com/buglist.cgi?"
5591 "component=libguestfs&product=Virtualization+Tools>"
5592
5593 #. type: textblock
5594 #: ../src/guestfs.pod:2869
5595 msgid "To report a new bug against libguestfs use this link:"
5596 msgstr "Для звітування щодо вад у libguestfs скористайтеся цим посиланням:"
5597
5598 #. type: textblock
5599 #: ../src/guestfs.pod:2871
5600 msgid ""
5601 "L<https://bugzilla.redhat.com/enter_bug.cgi?"
5602 "component=libguestfs&product=Virtualization+Tools>"
5603 msgstr ""
5604 "L<https://bugzilla.redhat.com/enter_bug.cgi?"
5605 "component=libguestfs&product=Virtualization+Tools>"
5606
5607 #. type: textblock
5608 #: ../src/guestfs.pod:2873
5609 msgid "When reporting a bug, please check:"
5610 msgstr ""
5611
5612 #. type: textblock
5613 #: ../src/guestfs.pod:2879
5614 msgid "That the bug hasn't been reported already."
5615 msgstr ""
5616
5617 #. type: textblock
5618 #: ../src/guestfs.pod:2883
5619 msgid "That you are testing a recent version."
5620 msgstr ""
5621
5622 #. type: textblock
5623 #: ../src/guestfs.pod:2887
5624 msgid "Describe the bug accurately, and give a way to reproduce it."
5625 msgstr ""
5626
5627 #. type: textblock
5628 #: ../src/guestfs.pod:2891
5629 msgid ""
5630 "Run libguestfs-test-tool and paste the B<complete, unedited> output into the "
5631 "bug report."
5632 msgstr ""
5633
5634 #. type: =head1
5635 #: ../src/guestfs.pod:2896 ../fish/guestfish.pod:1172
5636 #: ../test-tool/libguestfs-test-tool.pod:93 ../fuse/guestmount.pod:278
5637 msgid "AUTHORS"
5638 msgstr "АВТОРИ"
5639
5640 #. type: textblock
5641 #: ../src/guestfs.pod:2898 ../fish/guestfish.pod:1174
5642 #: ../test-tool/libguestfs-test-tool.pod:95 ../fuse/guestmount.pod:280
5643 msgid "Richard W.M. Jones (C<rjones at redhat dot com>)"
5644 msgstr ""
5645
5646 #. type: =head1
5647 #: ../src/guestfs.pod:2900 ../fish/guestfish.pod:1176
5648 #: ../test-tool/libguestfs-test-tool.pod:97 ../fuse/guestmount.pod:282
5649 #: ../tools/virt-edit.pl:514 ../tools/virt-win-reg.pl:602
5650 #: ../tools/virt-list-filesystems.pl:206 ../tools/virt-tar.pl:305
5651 #: ../tools/virt-make-fs.pl:568 ../tools/virt-list-partitions.pl:273
5652 msgid "COPYRIGHT"
5653 msgstr "АВТОРСЬКІ ПРАВА"
5654
5655 #. type: textblock
5656 #: ../src/guestfs.pod:2902 ../fish/guestfish.pod:1178
5657 #: ../test-tool/libguestfs-test-tool.pod:99
5658 msgid "Copyright (C) 2009-2011 Red Hat Inc.  L<http://libguestfs.org/>"
5659 msgstr ""
5660
5661 #. type: textblock
5662 #: ../src/guestfs.pod:2905
5663 msgid ""
5664 "This library is free software; you can redistribute it and/or modify it "
5665 "under the terms of the GNU Lesser General Public License as published by the "
5666 "Free Software Foundation; either version 2 of the License, or (at your "
5667 "option) any later version."
5668 msgstr ""
5669
5670 #. type: textblock
5671 #: ../src/guestfs.pod:2910
5672 msgid ""
5673 "This library is distributed in the hope that it will be useful, but WITHOUT "
5674 "ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or "
5675 "FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public License "
5676 "for more details."
5677 msgstr ""
5678
5679 #. type: textblock
5680 #: ../src/guestfs.pod:2915
5681 msgid ""
5682 "You should have received a copy of the GNU Lesser General Public License "
5683 "along with this library; if not, write to the Free Software Foundation, "
5684 "Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA"
5685 msgstr ""
5686
5687 #. type: =head2
5688 #: ../src/guestfs-actions.pod:1
5689 msgid "guestfs_add_cdrom"
5690 msgstr ""
5691
5692 #. type: verbatim
5693 #: ../src/guestfs-actions.pod:3
5694 #, no-wrap
5695 msgid ""
5696 " int\n"
5697 " guestfs_add_cdrom (guestfs_h *g,\n"
5698 "                    const char *filename);\n"
5699 "\n"
5700 msgstr ""
5701
5702 #. type: textblock
5703 #: ../src/guestfs-actions.pod:7 ../fish/guestfish-actions.pod:5
5704 msgid "This function adds a virtual CD-ROM disk image to the guest."
5705 msgstr ""
5706
5707 #. type: textblock
5708 #: ../src/guestfs-actions.pod:9 ../fish/guestfish-actions.pod:7
5709 msgid "This is equivalent to the qemu parameter C<-cdrom filename>."
5710 msgstr ""
5711
5712 #. type: textblock
5713 #: ../src/guestfs-actions.pod:17
5714 msgid ""
5715 "This call checks for the existence of C<filename>.  This stops you from "
5716 "specifying other types of drive which are supported by qemu such as C<nbd:> "
5717 "and C<http:> URLs.  To specify those, use the general C<guestfs_config> call "
5718 "instead."
5719 msgstr ""
5720
5721 #. type: textblock
5722 #: ../src/guestfs-actions.pod:24
5723 msgid ""
5724 "If you just want to add an ISO file (often you use this as an efficient way "
5725 "to transfer large files into the guest), then you should probably use "
5726 "C<guestfs_add_drive_ro> instead."
5727 msgstr ""
5728
5729 #. type: textblock
5730 #: ../src/guestfs-actions.pod:30 ../src/guestfs-actions.pod:134
5731 #: ../src/guestfs-actions.pod:195 ../src/guestfs-actions.pod:232
5732 #: ../src/guestfs-actions.pod:246 ../src/guestfs-actions.pod:267
5733 #: ../src/guestfs-actions.pod:287 ../src/guestfs-actions.pod:301
5734 #: ../src/guestfs-actions.pod:416 ../src/guestfs-actions.pod:436
5735 #: ../src/guestfs-actions.pod:450 ../src/guestfs-actions.pod:495
5736 #: ../src/guestfs-actions.pod:523 ../src/guestfs-actions.pod:541
5737 #: ../src/guestfs-actions.pod:608 ../src/guestfs-actions.pod:641
5738 #: ../src/guestfs-actions.pod:655 ../src/guestfs-actions.pod:670
5739 #: ../src/guestfs-actions.pod:769 ../src/guestfs-actions.pod:787
5740 #: ../src/guestfs-actions.pod:801 ../src/guestfs-actions.pod:815
5741 #: ../src/guestfs-actions.pod:976 ../src/guestfs-actions.pod:996
5742 #: ../src/guestfs-actions.pod:1014 ../src/guestfs-actions.pod:1098
5743 #: ../src/guestfs-actions.pod:1116 ../src/guestfs-actions.pod:1135
5744 #: ../src/guestfs-actions.pod:1149 ../src/guestfs-actions.pod:1169
5745 #: ../src/guestfs-actions.pod:1239 ../src/guestfs-actions.pod:1270
5746 #: ../src/guestfs-actions.pod:1295 ../src/guestfs-actions.pod:1337
5747 #: ../src/guestfs-actions.pod:1443 ../src/guestfs-actions.pod:1477
5748 #: ../src/guestfs-actions.pod:1695 ../src/guestfs-actions.pod:1717
5749 #: ../src/guestfs-actions.pod:1804 ../src/guestfs-actions.pod:2266
5750 #: ../src/guestfs-actions.pod:2410 ../src/guestfs-actions.pod:2471
5751 #: ../src/guestfs-actions.pod:2506 ../src/guestfs-actions.pod:3451
5752 #: ../src/guestfs-actions.pod:3466 ../src/guestfs-actions.pod:3491
5753 #: ../src/guestfs-actions.pod:3646 ../src/guestfs-actions.pod:3660
5754 #: ../src/guestfs-actions.pod:3673 ../src/guestfs-actions.pod:3687
5755 #: ../src/guestfs-actions.pod:3702 ../src/guestfs-actions.pod:3738
5756 #: ../src/guestfs-actions.pod:3810 ../src/guestfs-actions.pod:3830
5757 #: ../src/guestfs-actions.pod:3847 ../src/guestfs-actions.pod:3870
5758 #: ../src/guestfs-actions.pod:3893 ../src/guestfs-actions.pod:3925
5759 #: ../src/guestfs-actions.pod:3944 ../src/guestfs-actions.pod:3963
5760 #: ../src/guestfs-actions.pod:3998 ../src/guestfs-actions.pod:4010
5761 #: ../src/guestfs-actions.pod:4046 ../src/guestfs-actions.pod:4062
5762 #: ../src/guestfs-actions.pod:4075 ../src/guestfs-actions.pod:4090
5763 #: ../src/guestfs-actions.pod:4107 ../src/guestfs-actions.pod:4200
5764 #: ../src/guestfs-actions.pod:4220 ../src/guestfs-actions.pod:4233
5765 #: ../src/guestfs-actions.pod:4284 ../src/guestfs-actions.pod:4302
5766 #: ../src/guestfs-actions.pod:4320 ../src/guestfs-actions.pod:4336
5767 #: ../src/guestfs-actions.pod:4350 ../src/guestfs-actions.pod:4364
5768 #: ../src/guestfs-actions.pod:4381 ../src/guestfs-actions.pod:4396
5769 #: ../src/guestfs-actions.pod:4416 ../src/guestfs-actions.pod:4474
5770 #: ../src/guestfs-actions.pod:4547 ../src/guestfs-actions.pod:4578
5771 #: ../src/guestfs-actions.pod:4597 ../src/guestfs-actions.pod:4616
5772 #: ../src/guestfs-actions.pod:4628 ../src/guestfs-actions.pod:4645
5773 #: ../src/guestfs-actions.pod:4658 ../src/guestfs-actions.pod:4673
5774 #: ../src/guestfs-actions.pod:4688 ../src/guestfs-actions.pod:4723
5775 #: ../src/guestfs-actions.pod:4738 ../src/guestfs-actions.pod:4758
5776 #: ../src/guestfs-actions.pod:4772 ../src/guestfs-actions.pod:4789
5777 #: ../src/guestfs-actions.pod:4838 ../src/guestfs-actions.pod:4875
5778 #: ../src/guestfs-actions.pod:4889 ../src/guestfs-actions.pod:4917
5779 #: ../src/guestfs-actions.pod:4934 ../src/guestfs-actions.pod:4952
5780 #: ../src/guestfs-actions.pod:5086 ../src/guestfs-actions.pod:5143
5781 #: ../src/guestfs-actions.pod:5165 ../src/guestfs-actions.pod:5183
5782 #: ../src/guestfs-actions.pod:5215 ../src/guestfs-actions.pod:5281
5783 #: ../src/guestfs-actions.pod:5298 ../src/guestfs-actions.pod:5311
5784 #: ../src/guestfs-actions.pod:5325 ../src/guestfs-actions.pod:5614
5785 #: ../src/guestfs-actions.pod:5633 ../src/guestfs-actions.pod:5652
5786 #: ../src/guestfs-actions.pod:5664 ../src/guestfs-actions.pod:5676
5787 #: ../src/guestfs-actions.pod:5690 ../src/guestfs-actions.pod:5702
5788 #: ../src/guestfs-actions.pod:5716 ../src/guestfs-actions.pod:5732
5789 #: ../src/guestfs-actions.pod:5753 ../src/guestfs-actions.pod:5772
5790 #: ../src/guestfs-actions.pod:5791 ../src/guestfs-actions.pod:5821
5791 #: ../src/guestfs-actions.pod:5837 ../src/guestfs-actions.pod:5860
5792 #: ../src/guestfs-actions.pod:5878 ../src/guestfs-actions.pod:5897
5793 #: ../src/guestfs-actions.pod:5918 ../src/guestfs-actions.pod:5937
5794 #: ../src/guestfs-actions.pod:5954 ../src/guestfs-actions.pod:5982
5795 #: ../src/guestfs-actions.pod:6006 ../src/guestfs-actions.pod:6025
5796 #: ../src/guestfs-actions.pod:6049 ../src/guestfs-actions.pod:6068
5797 #: ../src/guestfs-actions.pod:6083 ../src/guestfs-actions.pod:6102
5798 #: ../src/guestfs-actions.pod:6139 ../src/guestfs-actions.pod:6162
5799 #: ../src/guestfs-actions.pod:6188 ../src/guestfs-actions.pod:6296
5800 #: ../src/guestfs-actions.pod:6417 ../src/guestfs-actions.pod:6429
5801 #: ../src/guestfs-actions.pod:6442 ../src/guestfs-actions.pod:6455
5802 #: ../src/guestfs-actions.pod:6477 ../src/guestfs-actions.pod:6490
5803 #: ../src/guestfs-actions.pod:6503 ../src/guestfs-actions.pod:6516
5804 #: ../src/guestfs-actions.pod:6531 ../src/guestfs-actions.pod:6590
5805 #: ../src/guestfs-actions.pod:6607 ../src/guestfs-actions.pod:6623
5806 #: ../src/guestfs-actions.pod:6639 ../src/guestfs-actions.pod:6656
5807 #: ../src/guestfs-actions.pod:6669 ../src/guestfs-actions.pod:6689
5808 #: ../src/guestfs-actions.pod:6725 ../src/guestfs-actions.pod:6739
5809 #: ../src/guestfs-actions.pod:6780 ../src/guestfs-actions.pod:6793
5810 #: ../src/guestfs-actions.pod:6811 ../src/guestfs-actions.pod:6845
5811 #: ../src/guestfs-actions.pod:6881 ../src/guestfs-actions.pod:7000
5812 #: ../src/guestfs-actions.pod:7018 ../src/guestfs-actions.pod:7032
5813 #: ../src/guestfs-actions.pod:7087 ../src/guestfs-actions.pod:7100
5814 #: ../src/guestfs-actions.pod:7145 ../src/guestfs-actions.pod:7178
5815 #: ../src/guestfs-actions.pod:7232 ../src/guestfs-actions.pod:7258
5816 #: ../src/guestfs-actions.pod:7324 ../src/guestfs-actions.pod:7343
5817 #: ../src/guestfs-actions.pod:7372
5818 msgid "This function returns 0 on success or -1 on error."
5819 msgstr ""
5820
5821 #. type: textblock
5822 #: ../src/guestfs-actions.pod:32 ../src/guestfs-actions.pod:248
5823 #: ../src/guestfs-actions.pod:269 ../fish/guestfish-actions.pod:28
5824 #: ../fish/guestfish-actions.pod:158 ../fish/guestfish-actions.pod:172
5825 msgid ""
5826 "This function is deprecated.  In new code, use the C<add_drive_opts> call "
5827 "instead."
5828 msgstr ""
5829
5830 #. type: textblock
5831 #: ../src/guestfs-actions.pod:35 ../src/guestfs-actions.pod:251
5832 #: ../src/guestfs-actions.pod:272 ../src/guestfs-actions.pod:1448
5833 #: ../src/guestfs-actions.pod:1944 ../src/guestfs-actions.pod:1965
5834 #: ../src/guestfs-actions.pod:4421 ../src/guestfs-actions.pod:7266
5835 #: ../src/guestfs-actions.pod:7435 ../fish/guestfish-actions.pod:31
5836 #: ../fish/guestfish-actions.pod:161 ../fish/guestfish-actions.pod:175
5837 #: ../fish/guestfish-actions.pod:956 ../fish/guestfish-actions.pod:1319
5838 #: ../fish/guestfish-actions.pod:1333 ../fish/guestfish-actions.pod:3000
5839 #: ../fish/guestfish-actions.pod:4858 ../fish/guestfish-actions.pod:4955
5840 msgid ""
5841 "Deprecated functions will not be removed from the API, but the fact that "
5842 "they are deprecated indicates that there are problems with correct use of "
5843 "these functions."
5844 msgstr ""
5845
5846 #. type: textblock
5847 #: ../src/guestfs-actions.pod:39 ../src/guestfs-actions.pod:136
5848 #: ../src/guestfs-actions.pod:1100 ../src/guestfs-actions.pod:1916
5849 #: ../src/guestfs-actions.pod:2014 ../src/guestfs-actions.pod:2117
5850 #: ../src/guestfs-actions.pod:3453 ../src/guestfs-actions.pod:3473
5851 #: ../src/guestfs-actions.pod:4725 ../src/guestfs-actions.pod:5839
5852 #: ../src/guestfs-actions.pod:5956 ../src/guestfs-actions.pod:6070
5853 #: ../src/guestfs-actions.pod:6533 ../src/guestfs-actions.pod:6658
5854 #: ../src/guestfs-actions.pod:7180
5855 msgid "(Added in 0.3)"
5856 msgstr ""
5857
5858 #. type: =head2
5859 #: ../src/guestfs-actions.pod:41
5860 msgid "guestfs_add_domain"
5861 msgstr ""
5862
5863 #. type: verbatim
5864 #: ../src/guestfs-actions.pod:43
5865 #, no-wrap
5866 msgid ""
5867 " int\n"
5868 " guestfs_add_domain (guestfs_h *g,\n"
5869 "                     const char *dom,\n"
5870 "                     ...);\n"
5871 "\n"
5872 msgstr ""
5873
5874 #. type: textblock
5875 #: ../src/guestfs-actions.pod:48 ../src/guestfs-actions.pod:145
5876 #: ../src/guestfs-actions.pod:4435
5877 msgid ""
5878 "You may supply a list of optional arguments to this call.  Use zero or more "
5879 "of the following pairs of parameters, and terminate the list with C<-1> on "
5880 "its own.  See L</CALLS WITH OPTIONAL ARGUMENTS>."
5881 msgstr ""
5882
5883 #. type: verbatim
5884 #: ../src/guestfs-actions.pod:53
5885 #, no-wrap
5886 msgid ""
5887 " GUESTFS_ADD_DOMAIN_LIBVIRTURI, const char *libvirturi,\n"
5888 " GUESTFS_ADD_DOMAIN_READONLY, int readonly,\n"
5889 " GUESTFS_ADD_DOMAIN_IFACE, const char *iface,\n"
5890 " GUESTFS_ADD_DOMAIN_LIVE, int live,\n"
5891 "\n"
5892 msgstr ""
5893
5894 #. type: textblock
5895 #: ../src/guestfs-actions.pod:58
5896 msgid ""
5897 "This function adds the disk(s) attached to the named libvirt domain C<dom>.  "
5898 "It works by connecting to libvirt, requesting the domain and domain XML from "
5899 "libvirt, parsing it for disks, and calling C<guestfs_add_drive_opts> on each "
5900 "one."
5901 msgstr ""
5902
5903 #. type: textblock
5904 #: ../src/guestfs-actions.pod:63 ../fish/guestfish-actions.pod:46
5905 msgid ""
5906 "The number of disks added is returned.  This operation is atomic: if an "
5907 "error is returned, then no disks are added."
5908 msgstr ""
5909
5910 #. type: textblock
5911 #: ../src/guestfs-actions.pod:66 ../fish/guestfish-actions.pod:49
5912 msgid ""
5913 "This function does some minimal checks to make sure the libvirt domain is "
5914 "not running (unless C<readonly> is true).  In a future version we will try "
5915 "to acquire the libvirt lock on each disk."
5916 msgstr ""
5917
5918 #. type: textblock
5919 #: ../src/guestfs-actions.pod:70 ../fish/guestfish-actions.pod:53
5920 msgid ""
5921 "Disks must be accessible locally.  This often means that adding disks from a "
5922 "remote libvirt connection (see L<http://libvirt.org/remote.html>)  will fail "
5923 "unless those disks are accessible via the same device path locally too."
5924 msgstr ""
5925
5926 #. type: textblock
5927 #: ../src/guestfs-actions.pod:75 ../fish/guestfish-actions.pod:58
5928 msgid ""
5929 "The optional C<libvirturi> parameter sets the libvirt URI (see L<http://"
5930 "libvirt.org/uri.html>).  If this is not set then we connect to the default "
5931 "libvirt URI (or one set through an environment variable, see the libvirt "
5932 "documentation for full details)."
5933 msgstr ""
5934
5935 #. type: textblock
5936 #: ../src/guestfs-actions.pod:81 ../fish/guestfish-actions.pod:64
5937 msgid ""
5938 "The optional C<live> flag controls whether this call will try to connect to "
5939 "a running virtual machine C<guestfsd> process if it sees a suitable "
5940 "E<lt>channelE<gt> element in the libvirt XML definition.  The default (if "
5941 "the flag is omitted) is never to try.  See L<guestfs(3)/ATTACHING TO RUNNING "
5942 "DAEMONS> for more information."
5943 msgstr ""
5944
5945 #. type: textblock
5946 #: ../src/guestfs-actions.pod:88
5947 msgid ""
5948 "The other optional parameters are passed directly through to "
5949 "C<guestfs_add_drive_opts>."
5950 msgstr ""
5951
5952 #. type: textblock
5953 #: ../src/guestfs-actions.pod:91 ../src/guestfs-actions.pod:344
5954 #: ../src/guestfs-actions.pod:509 ../src/guestfs-actions.pod:687
5955 #: ../src/guestfs-actions.pod:718 ../src/guestfs-actions.pod:736
5956 #: ../src/guestfs-actions.pod:755 ../src/guestfs-actions.pod:1315
5957 #: ../src/guestfs-actions.pod:1674 ../src/guestfs-actions.pod:1877
5958 #: ../src/guestfs-actions.pod:1986 ../src/guestfs-actions.pod:2026
5959 #: ../src/guestfs-actions.pod:2081 ../src/guestfs-actions.pod:2104
5960 #: ../src/guestfs-actions.pod:2397 ../src/guestfs-actions.pod:2772
5961 #: ../src/guestfs-actions.pod:2793 ../src/guestfs-actions.pod:4861
5962 #: ../src/guestfs-actions.pod:4989 ../src/guestfs-actions.pod:5395
5963 #: ../src/guestfs-actions.pod:5421 ../src/guestfs-actions.pod:6766
5964 #: ../src/guestfs-actions.pod:7191 ../src/guestfs-actions.pod:7204
5965 #: ../src/guestfs-actions.pod:7217
5966 msgid "On error this function returns -1."
5967 msgstr ""
5968
5969 #. type: textblock
5970 #: ../src/guestfs-actions.pod:93
5971 msgid "(Added in 1.7.4)"
5972 msgstr ""
5973
5974 #. type: =head2
5975 #: ../src/guestfs-actions.pod:95
5976 msgid "guestfs_add_domain_va"
5977 msgstr ""
5978
5979 #. type: verbatim
5980 #: ../src/guestfs-actions.pod:97
5981 #, no-wrap
5982 msgid ""
5983 " int\n"
5984 " guestfs_add_domain_va (guestfs_h *g,\n"
5985 "                        const char *dom,\n"
5986 "                        va_list args);\n"
5987 "\n"
5988 msgstr ""
5989
5990 #. type: textblock
5991 #: ../src/guestfs-actions.pod:102
5992 msgid "This is the \"va_list variant\" of L</guestfs_add_domain>."
5993 msgstr ""
5994
5995 #. type: textblock
5996 #: ../src/guestfs-actions.pod:104 ../src/guestfs-actions.pod:115
5997 #: ../src/guestfs-actions.pod:208 ../src/guestfs-actions.pod:219
5998 #: ../src/guestfs-actions.pod:4488 ../src/guestfs-actions.pod:4500
5999 msgid "See L</CALLS WITH OPTIONAL ARGUMENTS>."
6000 msgstr ""
6001
6002 #. type: =head2
6003 #: ../src/guestfs-actions.pod:106
6004 msgid "guestfs_add_domain_argv"
6005 msgstr ""
6006
6007 #. type: verbatim
6008 #: ../src/guestfs-actions.pod:108
6009 #, no-wrap
6010 msgid ""
6011 " int\n"
6012 " guestfs_add_domain_argv (guestfs_h *g,\n"
6013 "                          const char *dom,\n"
6014 "                          const struct guestfs_add_domain_argv *optargs);\n"
6015 "\n"
6016 msgstr ""
6017
6018 #. type: textblock
6019 #: ../src/guestfs-actions.pod:113
6020 msgid "This is the \"argv variant\" of L</guestfs_add_domain>."
6021 msgstr ""
6022
6023 #. type: =head2
6024 #: ../src/guestfs-actions.pod:117
6025 msgid "guestfs_add_drive"
6026 msgstr ""
6027
6028 #. type: verbatim
6029 #: ../src/guestfs-actions.pod:119
6030 #, no-wrap
6031 msgid ""
6032 " int\n"
6033 " guestfs_add_drive (guestfs_h *g,\n"
6034 "                    const char *filename);\n"
6035 "\n"
6036 msgstr ""
6037
6038 #. type: textblock
6039 #: ../src/guestfs-actions.pod:123
6040 msgid ""
6041 "This function is the equivalent of calling C<guestfs_add_drive_opts> with no "
6042 "optional parameters, so the disk is added writable, with the format being "
6043 "detected automatically."
6044 msgstr ""
6045
6046 #. type: textblock
6047 #: ../src/guestfs-actions.pod:127
6048 msgid ""
6049 "Automatic detection of the format opens you up to a potential security hole "
6050 "when dealing with untrusted raw-format images.  See CVE-2010-3851 and "
6051 "RHBZ#642934.  Specifying the format closes this security hole.  Therefore "
6052 "you should think about replacing calls to this function with calls to "
6053 "C<guestfs_add_drive_opts>, and specifying the format."
6054 msgstr ""
6055
6056 #. type: =head2
6057 #: ../src/guestfs-actions.pod:138
6058 msgid "guestfs_add_drive_opts"
6059 msgstr ""
6060
6061 #. type: verbatim
6062 #: ../src/guestfs-actions.pod:140
6063 #, no-wrap
6064 msgid ""
6065 " int\n"
6066 " guestfs_add_drive_opts (guestfs_h *g,\n"
6067 "                         const char *filename,\n"
6068 "                         ...);\n"
6069 "\n"
6070 msgstr ""
6071
6072 #. type: verbatim
6073 #: ../src/guestfs-actions.pod:150
6074 #, no-wrap
6075 msgid ""
6076 " GUESTFS_ADD_DRIVE_OPTS_READONLY, int readonly,\n"
6077 " GUESTFS_ADD_DRIVE_OPTS_FORMAT, const char *format,\n"
6078 " GUESTFS_ADD_DRIVE_OPTS_IFACE, const char *iface,\n"
6079 "\n"
6080 msgstr ""
6081
6082 #. type: textblock
6083 #: ../src/guestfs-actions.pod:154 ../fish/guestfish-actions.pod:97
6084 msgid ""
6085 "This function adds a virtual machine disk image C<filename> to libguestfs.  "
6086 "The first time you call this function, the disk appears as C</dev/sda>, the "
6087 "second time as C</dev/sdb>, and so on."
6088 msgstr ""
6089
6090 #. type: textblock
6091 #: ../src/guestfs-actions.pod:159 ../fish/guestfish-actions.pod:102
6092 msgid ""
6093 "You don't necessarily need to be root when using libguestfs.  However you "
6094 "obviously do need sufficient permissions to access the filename for whatever "
6095 "operations you want to perform (ie. read access if you just want to read the "
6096 "image or write access if you want to modify the image)."
6097 msgstr ""
6098
6099 #. type: textblock
6100 #: ../src/guestfs-actions.pod:165 ../fish/guestfish-actions.pod:108
6101 msgid "This call checks that C<filename> exists."
6102 msgstr ""
6103
6104 #. type: textblock
6105 #: ../src/guestfs-actions.pod:167 ../src/guestfs-actions.pod:4446
6106 #: ../fish/guestfish-actions.pod:110 ../fish/guestfish-actions.pod:3011
6107 msgid "The optional arguments are:"
6108 msgstr ""
6109
6110 #. type: =item
6111 #: ../src/guestfs-actions.pod:171 ../fish/guestfish-actions.pod:114
6112 msgid "C<readonly>"
6113 msgstr "C<readonly>"
6114
6115 #. type: textblock
6116 #: ../src/guestfs-actions.pod:173 ../fish/guestfish-actions.pod:116
6117 msgid ""
6118 "If true then the image is treated as read-only.  Writes are still allowed, "
6119 "but they are stored in a temporary snapshot overlay which is discarded at "
6120 "the end.  The disk that you add is not modified."
6121 msgstr ""
6122
6123 #. type: =item
6124 #: ../src/guestfs-actions.pod:177 ../fish/guestfish-actions.pod:120
6125 msgid "C<format>"
6126 msgstr "C<format>"
6127
6128 #. type: textblock
6129 #: ../src/guestfs-actions.pod:179
6130 msgid ""
6131 "This forces the image format.  If you omit this (or use C<guestfs_add_drive> "
6132 "or C<guestfs_add_drive_ro>) then the format is automatically detected.  "
6133 "Possible formats include C<raw> and C<qcow2>."
6134 msgstr ""
6135
6136 #. type: textblock
6137 #: ../src/guestfs-actions.pod:183 ../fish/guestfish-actions.pod:126
6138 msgid ""
6139 "Automatic detection of the format opens you up to a potential security hole "
6140 "when dealing with untrusted raw-format images.  See CVE-2010-3851 and "
6141 "RHBZ#642934.  Specifying the format closes this security hole."
6142 msgstr ""
6143
6144 #. type: =item
6145 #: ../src/guestfs-actions.pod:188 ../fish/guestfish-actions.pod:131
6146 msgid "C<iface>"
6147 msgstr "C<iface>"
6148
6149 #. type: textblock
6150 #: ../src/guestfs-actions.pod:190
6151 msgid ""
6152 "This rarely-used option lets you emulate the behaviour of the deprecated "
6153 "C<guestfs_add_drive_with_if> call (q.v.)"
6154 msgstr ""
6155
6156 #. type: textblock
6157 #: ../src/guestfs-actions.pod:197
6158 msgid "(Added in 1.5.23)"
6159 msgstr ""
6160
6161 #. type: =head2
6162 #: ../src/guestfs-actions.pod:199
6163 msgid "guestfs_add_drive_opts_va"
6164 msgstr ""
6165
6166 #. type: verbatim
6167 #: ../src/guestfs-actions.pod:201
6168 #, no-wrap
6169 msgid ""
6170 " int\n"
6171 " guestfs_add_drive_opts_va (guestfs_h *g,\n"
6172 "                            const char *filename,\n"
6173 "                            va_list args);\n"
6174 "\n"
6175 msgstr ""
6176
6177 #. type: textblock
6178 #: ../src/guestfs-actions.pod:206
6179 msgid "This is the \"va_list variant\" of L</guestfs_add_drive_opts>."
6180 msgstr ""
6181
6182 #. type: =head2
6183 #: ../src/guestfs-actions.pod:210
6184 msgid "guestfs_add_drive_opts_argv"
6185 msgstr ""
6186
6187 #. type: verbatim
6188 #: ../src/guestfs-actions.pod:212
6189 #, no-wrap
6190 msgid ""
6191 " int\n"
6192 " guestfs_add_drive_opts_argv (guestfs_h *g,\n"
6193 "                              const char *filename,\n"
6194 "                              const struct guestfs_add_drive_opts_argv *optargs);\n"
6195 "\n"
6196 msgstr ""
6197
6198 #. type: textblock
6199 #: ../src/guestfs-actions.pod:217
6200 msgid "This is the \"argv variant\" of L</guestfs_add_drive_opts>."
6201 msgstr ""
6202
6203 #. type: =head2
6204 #: ../src/guestfs-actions.pod:221
6205 msgid "guestfs_add_drive_ro"
6206 msgstr ""
6207
6208 #. type: verbatim
6209 #: ../src/guestfs-actions.pod:223
6210 #, no-wrap
6211 msgid ""
6212 " int\n"
6213 " guestfs_add_drive_ro (guestfs_h *g,\n"
6214 "                       const char *filename);\n"
6215 "\n"
6216 msgstr ""
6217
6218 #. type: textblock
6219 #: ../src/guestfs-actions.pod:227
6220 msgid ""
6221 "This function is the equivalent of calling C<guestfs_add_drive_opts> with "
6222 "the optional parameter C<GUESTFS_ADD_DRIVE_OPTS_READONLY> set to 1, so the "
6223 "disk is added read-only, with the format being detected automatically."
6224 msgstr ""
6225
6226 #. type: textblock
6227 #: ../src/guestfs-actions.pod:234
6228 msgid "(Added in 1.0.38)"
6229 msgstr ""
6230
6231 #. type: =head2
6232 #: ../src/guestfs-actions.pod:236
6233 msgid "guestfs_add_drive_ro_with_if"
6234 msgstr ""
6235
6236 #. type: verbatim
6237 #: ../src/guestfs-actions.pod:238
6238 #, no-wrap
6239 msgid ""
6240 " int\n"
6241 " guestfs_add_drive_ro_with_if (guestfs_h *g,\n"
6242 "                               const char *filename,\n"
6243 "                               const char *iface);\n"
6244 "\n"
6245 msgstr ""
6246
6247 #. type: textblock
6248 #: ../src/guestfs-actions.pod:243
6249 msgid ""
6250 "This is the same as C<guestfs_add_drive_ro> but it allows you to specify the "
6251 "QEMU interface emulation to use at run time."
6252 msgstr ""
6253
6254 #. type: textblock
6255 #: ../src/guestfs-actions.pod:255 ../src/guestfs-actions.pod:276
6256 #: ../src/guestfs-actions.pod:2356
6257 msgid "(Added in 1.0.84)"
6258 msgstr ""
6259
6260 #. type: =head2
6261 #: ../src/guestfs-actions.pod:257
6262 msgid "guestfs_add_drive_with_if"
6263 msgstr ""
6264
6265 #. type: verbatim
6266 #: ../src/guestfs-actions.pod:259
6267 #, no-wrap
6268 msgid ""
6269 " int\n"
6270 " guestfs_add_drive_with_if (guestfs_h *g,\n"
6271 "                            const char *filename,\n"
6272 "                            const char *iface);\n"
6273 "\n"
6274 msgstr ""
6275
6276 #. type: textblock
6277 #: ../src/guestfs-actions.pod:264
6278 msgid ""
6279 "This is the same as C<guestfs_add_drive> but it allows you to specify the "
6280 "QEMU interface emulation to use at run time."
6281 msgstr ""
6282
6283 #. type: =head2
6284 #: ../src/guestfs-actions.pod:278
6285 msgid "guestfs_aug_clear"
6286 msgstr ""
6287
6288 #. type: verbatim
6289 #: ../src/guestfs-actions.pod:280
6290 #, no-wrap
6291 msgid ""
6292 " int\n"
6293 " guestfs_aug_clear (guestfs_h *g,\n"
6294 "                    const char *augpath);\n"
6295 "\n"
6296 msgstr ""
6297
6298 #. type: textblock
6299 #: ../src/guestfs-actions.pod:284 ../fish/guestfish-actions.pod:183
6300 msgid ""
6301 "Set the value associated with C<path> to C<NULL>.  This is the same as the "
6302 "L<augtool(1)> C<clear> command."
6303 msgstr ""
6304
6305 #. type: textblock
6306 #: ../src/guestfs-actions.pod:289 ../src/guestfs-actions.pod:2106
6307 msgid "(Added in 1.3.4)"
6308 msgstr ""
6309
6310 #. type: =head2
6311 #: ../src/guestfs-actions.pod:291
6312 msgid "guestfs_aug_close"
6313 msgstr ""
6314
6315 #. type: verbatim
6316 #: ../src/guestfs-actions.pod:293
6317 #, no-wrap
6318 msgid ""
6319 " int\n"
6320 " guestfs_aug_close (guestfs_h *g);\n"
6321 "\n"
6322 msgstr ""
6323
6324 #. type: textblock
6325 #: ../src/guestfs-actions.pod:296
6326 msgid ""
6327 "Close the current Augeas handle and free up any resources used by it.  After "
6328 "calling this, you have to call C<guestfs_aug_init> again before you can use "
6329 "any other Augeas functions."
6330 msgstr ""
6331
6332 #. type: textblock
6333 #: ../src/guestfs-actions.pod:303 ../src/guestfs-actions.pod:328
6334 #: ../src/guestfs-actions.pod:346 ../src/guestfs-actions.pod:360
6335 #: ../src/guestfs-actions.pod:418 ../src/guestfs-actions.pod:438
6336 #: ../src/guestfs-actions.pod:452 ../src/guestfs-actions.pod:483
6337 #: ../src/guestfs-actions.pod:497 ../src/guestfs-actions.pod:511
6338 #: ../src/guestfs-actions.pod:525 ../src/guestfs-actions.pod:543
6339 #: ../src/guestfs-actions.pod:5472
6340 msgid "(Added in 0.7)"
6341 msgstr ""
6342
6343 #. type: =head2
6344 #: ../src/guestfs-actions.pod:305
6345 msgid "guestfs_aug_defnode"
6346 msgstr ""
6347
6348 #. type: verbatim
6349 #: ../src/guestfs-actions.pod:307
6350 #, no-wrap
6351 msgid ""
6352 " struct guestfs_int_bool *\n"
6353 " guestfs_aug_defnode (guestfs_h *g,\n"
6354 "                      const char *name,\n"
6355 "                      const char *expr,\n"
6356 "                      const char *val);\n"
6357 "\n"
6358 msgstr ""
6359
6360 #. type: textblock
6361 #: ../src/guestfs-actions.pod:313 ../fish/guestfish-actions.pod:199
6362 msgid ""
6363 "Defines a variable C<name> whose value is the result of evaluating C<expr>."
6364 msgstr ""
6365
6366 #. type: textblock
6367 #: ../src/guestfs-actions.pod:316
6368 msgid ""
6369 "If C<expr> evaluates to an empty nodeset, a node is created, equivalent to "
6370 "calling C<guestfs_aug_set> C<expr>, C<value>.  C<name> will be the nodeset "
6371 "containing that single node."
6372 msgstr ""
6373
6374 #. type: textblock
6375 #: ../src/guestfs-actions.pod:320 ../fish/guestfish-actions.pod:206
6376 msgid ""
6377 "On success this returns a pair containing the number of nodes in the "
6378 "nodeset, and a boolean flag if a node was created."
6379 msgstr ""
6380
6381 #. type: textblock
6382 #: ../src/guestfs-actions.pod:324
6383 msgid ""
6384 "This function returns a C<struct guestfs_int_bool *>, or NULL if there was "
6385 "an error.  I<The caller must call C<guestfs_free_int_bool> after use>."
6386 msgstr ""
6387
6388 #. type: =head2
6389 #: ../src/guestfs-actions.pod:330
6390 msgid "guestfs_aug_defvar"
6391 msgstr ""
6392
6393 #. type: verbatim
6394 #: ../src/guestfs-actions.pod:332
6395 #, no-wrap
6396 msgid ""
6397 " int\n"
6398 " guestfs_aug_defvar (guestfs_h *g,\n"
6399 "                     const char *name,\n"
6400 "                     const char *expr);\n"
6401 "\n"
6402 msgstr ""
6403
6404 #. type: textblock
6405 #: ../src/guestfs-actions.pod:337 ../fish/guestfish-actions.pod:214
6406 msgid ""
6407 "Defines an Augeas variable C<name> whose value is the result of evaluating "
6408 "C<expr>.  If C<expr> is NULL, then C<name> is undefined."
6409 msgstr ""
6410
6411 #. type: textblock
6412 #: ../src/guestfs-actions.pod:341 ../fish/guestfish-actions.pod:218
6413 msgid ""
6414 "On success this returns the number of nodes in C<expr>, or C<0> if C<expr> "
6415 "evaluates to something which is not a nodeset."
6416 msgstr ""
6417
6418 #. type: =head2
6419 #: ../src/guestfs-actions.pod:348
6420 msgid "guestfs_aug_get"
6421 msgstr ""
6422
6423 #. type: verbatim
6424 #: ../src/guestfs-actions.pod:350
6425 #, no-wrap
6426 msgid ""
6427 " char *\n"
6428 " guestfs_aug_get (guestfs_h *g,\n"
6429 "                  const char *augpath);\n"
6430 "\n"
6431 msgstr ""
6432
6433 #. type: textblock
6434 #: ../src/guestfs-actions.pod:354 ../fish/guestfish-actions.pod:225
6435 msgid ""
6436 "Look up the value associated with C<path>.  If C<path> matches exactly one "
6437 "node, the C<value> is returned."
6438 msgstr ""
6439
6440 #. type: textblock
6441 #: ../src/guestfs-actions.pod:357 ../src/guestfs-actions.pod:857
6442 #: ../src/guestfs-actions.pod:875 ../src/guestfs-actions.pod:935
6443 #: ../src/guestfs-actions.pod:951 ../src/guestfs-actions.pod:1054
6444 #: ../src/guestfs-actions.pod:1184 ../src/guestfs-actions.pod:1201
6445 #: ../src/guestfs-actions.pod:1220 ../src/guestfs-actions.pod:1354
6446 #: ../src/guestfs-actions.pod:1545 ../src/guestfs-actions.pod:1657
6447 #: ../src/guestfs-actions.pod:1820 ../src/guestfs-actions.pod:1837
6448 #: ../src/guestfs-actions.pod:1904 ../src/guestfs-actions.pod:1938
6449 #: ../src/guestfs-actions.pod:1959 ../src/guestfs-actions.pod:2129
6450 #: ../src/guestfs-actions.pod:2321 ../src/guestfs-actions.pod:2528
6451 #: ../src/guestfs-actions.pod:2613 ../src/guestfs-actions.pod:2724
6452 #: ../src/guestfs-actions.pod:2744 ../src/guestfs-actions.pod:2864
6453 #: ../src/guestfs-actions.pod:2895 ../src/guestfs-actions.pod:2919
6454 #: ../src/guestfs-actions.pod:2956 ../src/guestfs-actions.pod:3016
6455 #: ../src/guestfs-actions.pod:3039 ../src/guestfs-actions.pod:3060
6456 #: ../src/guestfs-actions.pod:3632 ../src/guestfs-actions.pod:3982
6457 #: ../src/guestfs-actions.pod:4152 ../src/guestfs-actions.pod:4262
6458 #: ../src/guestfs-actions.pod:5007 ../src/guestfs-actions.pod:5200
6459 #: ../src/guestfs-actions.pod:5370 ../src/guestfs-actions.pod:5548
6460 #: ../src/guestfs-actions.pod:5597 ../src/guestfs-actions.pod:6209
6461 #: ../src/guestfs-actions.pod:6225 ../src/guestfs-actions.pod:6242
6462 #: ../src/guestfs-actions.pod:6266 ../src/guestfs-actions.pod:6940
6463 #: ../src/guestfs-actions.pod:6959 ../src/guestfs-actions.pod:6977
6464 #: ../src/guestfs-actions.pod:7157 ../src/guestfs-actions.pod:7429
6465 msgid ""
6466 "This function returns a string, or NULL on error.  I<The caller must free "
6467 "the returned string after use>."
6468 msgstr ""
6469
6470 #. type: =head2
6471 #: ../src/guestfs-actions.pod:362
6472 msgid "guestfs_aug_init"
6473 msgstr ""
6474
6475 #. type: verbatim
6476 #: ../src/guestfs-actions.pod:364
6477 #, no-wrap
6478 msgid ""
6479 " int\n"
6480 " guestfs_aug_init (guestfs_h *g,\n"
6481 "                   const char *root,\n"
6482 "                   int flags);\n"
6483 "\n"
6484 msgstr ""
6485
6486 #. type: textblock
6487 #: ../src/guestfs-actions.pod:369 ../fish/guestfish-actions.pod:232
6488 msgid ""
6489 "Create a new Augeas handle for editing configuration files.  If there was "
6490 "any previous Augeas handle associated with this guestfs session, then it is "
6491 "closed."
6492 msgstr ""
6493
6494 #. type: textblock
6495 #: ../src/guestfs-actions.pod:373
6496 msgid "You must call this before using any other C<guestfs_aug_*> commands."
6497 msgstr ""
6498
6499 #. type: textblock
6500 #: ../src/guestfs-actions.pod:376 ../fish/guestfish-actions.pod:239
6501 msgid ""
6502 "C<root> is the filesystem root.  C<root> must not be NULL, use C</> instead."
6503 msgstr ""
6504
6505 #. type: textblock
6506 #: ../src/guestfs-actions.pod:379 ../fish/guestfish-actions.pod:242
6507 msgid ""
6508 "The flags are the same as the flags defined in E<lt>augeas.hE<gt>, the "
6509 "logical I<or> of the following integers:"
6510 msgstr ""
6511
6512 #. type: =item
6513 #: ../src/guestfs-actions.pod:385 ../fish/guestfish-actions.pod:248
6514 msgid "C<AUG_SAVE_BACKUP> = 1"
6515 msgstr "C<AUG_SAVE_BACKUP> = 1"
6516
6517 #. type: textblock
6518 #: ../src/guestfs-actions.pod:387 ../fish/guestfish-actions.pod:250
6519 msgid "Keep the original file with a C<.augsave> extension."
6520 msgstr ""
6521
6522 #. type: =item
6523 #: ../src/guestfs-actions.pod:389 ../fish/guestfish-actions.pod:252
6524 msgid "C<AUG_SAVE_NEWFILE> = 2"
6525 msgstr "C<AUG_SAVE_NEWFILE> = 2"
6526
6527 #. type: textblock
6528 #: ../src/guestfs-actions.pod:391 ../fish/guestfish-actions.pod:254
6529 msgid ""
6530 "Save changes into a file with extension C<.augnew>, and do not overwrite "
6531 "original.  Overrides C<AUG_SAVE_BACKUP>."
6532 msgstr ""
6533
6534 #. type: =item
6535 #: ../src/guestfs-actions.pod:394 ../fish/guestfish-actions.pod:257
6536 msgid "C<AUG_TYPE_CHECK> = 4"
6537 msgstr "C<AUG_TYPE_CHECK> = 4"
6538
6539 #. type: textblock
6540 #: ../src/guestfs-actions.pod:396 ../fish/guestfish-actions.pod:259
6541 msgid "Typecheck lenses (can be expensive)."
6542 msgstr ""
6543
6544 #. type: =item
6545 #: ../src/guestfs-actions.pod:398 ../fish/guestfish-actions.pod:261
6546 msgid "C<AUG_NO_STDINC> = 8"
6547 msgstr "C<AUG_NO_STDINC> = 8"
6548
6549 #. type: textblock
6550 #: ../src/guestfs-actions.pod:400 ../fish/guestfish-actions.pod:263
6551 msgid "Do not use standard load path for modules."
6552 msgstr ""
6553
6554 #. type: =item
6555 #: ../src/guestfs-actions.pod:402 ../fish/guestfish-actions.pod:265
6556 msgid "C<AUG_SAVE_NOOP> = 16"
6557 msgstr "C<AUG_SAVE_NOOP> = 16"
6558
6559 #. type: textblock
6560 #: ../src/guestfs-actions.pod:404 ../fish/guestfish-actions.pod:267
6561 msgid "Make save a no-op, just record what would have been changed."
6562 msgstr ""
6563
6564 #. type: =item
6565 #: ../src/guestfs-actions.pod:406 ../fish/guestfish-actions.pod:269
6566 msgid "C<AUG_NO_LOAD> = 32"
6567 msgstr "C<AUG_NO_LOAD> = 32"
6568
6569 #. type: textblock
6570 #: ../src/guestfs-actions.pod:408
6571 msgid "Do not load the tree in C<guestfs_aug_init>."
6572 msgstr ""
6573
6574 #. type: textblock
6575 #: ../src/guestfs-actions.pod:412
6576 msgid "To close the handle, you can call C<guestfs_aug_close>."
6577 msgstr ""
6578
6579 #. type: textblock
6580 #: ../src/guestfs-actions.pod:414 ../fish/guestfish-actions.pod:277
6581 msgid "To find out more about Augeas, see L<http://augeas.net/>."
6582 msgstr ""
6583
6584 #. type: =head2
6585 #: ../src/guestfs-actions.pod:420
6586 msgid "guestfs_aug_insert"
6587 msgstr ""
6588
6589 #. type: verbatim
6590 #: ../src/guestfs-actions.pod:422
6591 #, no-wrap
6592 msgid ""
6593 " int\n"
6594 " guestfs_aug_insert (guestfs_h *g,\n"
6595 "                     const char *augpath,\n"
6596 "                     const char *label,\n"
6597 "                     int before);\n"
6598 "\n"
6599 msgstr ""
6600
6601 #. type: textblock
6602 #: ../src/guestfs-actions.pod:428 ../fish/guestfish-actions.pod:283
6603 msgid ""
6604 "Create a new sibling C<label> for C<path>, inserting it into the tree before "
6605 "or after C<path> (depending on the boolean flag C<before>)."
6606 msgstr ""
6607
6608 #. type: textblock
6609 #: ../src/guestfs-actions.pod:432 ../fish/guestfish-actions.pod:287
6610 msgid ""
6611 "C<path> must match exactly one existing node in the tree, and C<label> must "
6612 "be a label, ie. not contain C</>, C<*> or end with a bracketed index C<[N]>."
6613 msgstr ""
6614
6615 #. type: =head2
6616 #: ../src/guestfs-actions.pod:440
6617 msgid "guestfs_aug_load"
6618 msgstr ""
6619
6620 #. type: verbatim
6621 #: ../src/guestfs-actions.pod:442
6622 #, no-wrap
6623 msgid ""
6624 " int\n"
6625 " guestfs_aug_load (guestfs_h *g);\n"
6626 "\n"
6627 msgstr ""
6628
6629 #. type: textblock
6630 #: ../src/guestfs-actions.pod:445 ../fish/guestfish-actions.pod:295
6631 msgid "Load files into the tree."
6632 msgstr "Завантажити файли до ієрархії."
6633
6634 #. type: textblock
6635 #: ../src/guestfs-actions.pod:447 ../fish/guestfish-actions.pod:297
6636 msgid "See C<aug_load> in the Augeas documentation for the full gory details."
6637 msgstr ""
6638
6639 #. type: =head2
6640 #: ../src/guestfs-actions.pod:454
6641 msgid "guestfs_aug_ls"
6642 msgstr ""
6643
6644 #. type: verbatim
6645 #: ../src/guestfs-actions.pod:456
6646 #, no-wrap
6647 msgid ""
6648 " char **\n"
6649 " guestfs_aug_ls (guestfs_h *g,\n"
6650 "                 const char *augpath);\n"
6651 "\n"
6652 msgstr ""
6653
6654 #. type: textblock
6655 #: ../src/guestfs-actions.pod:460
6656 msgid ""
6657 "This is just a shortcut for listing C<guestfs_aug_match> C<path/*> and "
6658 "sorting the resulting nodes into alphabetical order."
6659 msgstr ""
6660
6661 #. type: textblock
6662 #: ../src/guestfs-actions.pod:463 ../src/guestfs-actions.pod:479
6663 #: ../src/guestfs-actions.pod:625 ../src/guestfs-actions.pod:1073
6664 #: ../src/guestfs-actions.pod:1369 ../src/guestfs-actions.pod:1388
6665 #: ../src/guestfs-actions.pod:1491 ../src/guestfs-actions.pod:1510
6666 #: ../src/guestfs-actions.pod:1759 ../src/guestfs-actions.pod:2201
6667 #: ../src/guestfs-actions.pod:2217 ../src/guestfs-actions.pod:2236
6668 #: ../src/guestfs-actions.pod:2279 ../src/guestfs-actions.pod:2303
6669 #: ../src/guestfs-actions.pod:2374 ../src/guestfs-actions.pod:2423
6670 #: ../src/guestfs-actions.pod:2682 ../src/guestfs-actions.pod:2973
6671 #: ../src/guestfs-actions.pod:3262 ../src/guestfs-actions.pod:3552
6672 #: ../src/guestfs-actions.pod:3614 ../src/guestfs-actions.pod:3719
6673 #: ../src/guestfs-actions.pod:4124 ../src/guestfs-actions.pod:4822
6674 #: ../src/guestfs-actions.pod:5342 ../src/guestfs-actions.pod:5468
6675 #: ../src/guestfs-actions.pod:5582 ../src/guestfs-actions.pod:6282
6676 #: ../src/guestfs-actions.pod:6343 ../src/guestfs-actions.pod:6398
6677 #: ../src/guestfs-actions.pod:6544 ../src/guestfs-actions.pod:6568
6678 #: ../src/guestfs-actions.pod:7050 ../src/guestfs-actions.pod:7070
6679 #: ../src/guestfs-actions.pod:7117 ../src/guestfs-actions.pod:7282
6680 #: ../src/guestfs-actions.pod:7301 ../src/guestfs-actions.pod:7386
6681 #: ../src/guestfs-actions.pod:7405 ../src/guestfs-actions.pod:7451
6682 #: ../src/guestfs-actions.pod:7470
6683 msgid ""
6684 "This function returns a NULL-terminated array of strings (like L<environ(3)"
6685 ">), or NULL if there was an error.  I<The caller must free the strings and "
6686 "the array after use>."
6687 msgstr ""
6688
6689 #. type: textblock
6690 #: ../src/guestfs-actions.pod:467 ../src/guestfs-actions.pod:998
6691 #: ../src/guestfs-actions.pod:1016 ../src/guestfs-actions.pod:1426
6692 #: ../src/guestfs-actions.pod:3340 ../src/guestfs-actions.pod:3371
6693 #: ../src/guestfs-actions.pod:3965 ../src/guestfs-actions.pod:4015
6694 #: ../src/guestfs-actions.pod:4202 ../src/guestfs-actions.pod:4235
6695 #: ../src/guestfs-actions.pod:4398 ../src/guestfs-actions.pod:4826
6696 #: ../src/guestfs-actions.pod:5283 ../src/guestfs-actions.pod:5678
6697 #: ../src/guestfs-actions.pod:5692 ../src/guestfs-actions.pod:5704
6698 #: ../src/guestfs-actions.pod:6144 ../src/guestfs-actions.pod:6782
6699 #: ../src/guestfs-actions.pod:6795 ../src/guestfs-actions.pod:7034
6700 #: ../src/guestfs-actions.pod:7270
6701 msgid "(Added in 0.8)"
6702 msgstr ""
6703
6704 #. type: =head2
6705 #: ../src/guestfs-actions.pod:469
6706 msgid "guestfs_aug_match"
6707 msgstr ""
6708
6709 #. type: verbatim
6710 #: ../src/guestfs-actions.pod:471
6711 #, no-wrap
6712 msgid ""
6713 " char **\n"
6714 " guestfs_aug_match (guestfs_h *g,\n"
6715 "                    const char *augpath);\n"
6716 "\n"
6717 msgstr ""
6718
6719 #. type: textblock
6720 #: ../src/guestfs-actions.pod:475 ../fish/guestfish-actions.pod:311
6721 msgid ""
6722 "Returns a list of paths which match the path expression C<path>.  The "
6723 "returned paths are sufficiently qualified so that they match exactly one "
6724 "node in the current tree."
6725 msgstr ""
6726
6727 #. type: =head2
6728 #: ../src/guestfs-actions.pod:485
6729 msgid "guestfs_aug_mv"
6730 msgstr ""
6731
6732 #. type: verbatim
6733 #: ../src/guestfs-actions.pod:487
6734 #, no-wrap
6735 msgid ""
6736 " int\n"
6737 " guestfs_aug_mv (guestfs_h *g,\n"
6738 "                 const char *src,\n"
6739 "                 const char *dest);\n"
6740 "\n"
6741 msgstr ""
6742
6743 #. type: textblock
6744 #: ../src/guestfs-actions.pod:492 ../fish/guestfish-actions.pod:319
6745 msgid ""
6746 "Move the node C<src> to C<dest>.  C<src> must match exactly one node.  "
6747 "C<dest> is overwritten if it exists."
6748 msgstr ""
6749
6750 #. type: =head2
6751 #: ../src/guestfs-actions.pod:499
6752 msgid "guestfs_aug_rm"
6753 msgstr ""
6754
6755 #. type: verbatim
6756 #: ../src/guestfs-actions.pod:501
6757 #, no-wrap
6758 msgid ""
6759 " int\n"
6760 " guestfs_aug_rm (guestfs_h *g,\n"
6761 "                 const char *augpath);\n"
6762 "\n"
6763 msgstr ""
6764
6765 #. type: textblock
6766 #: ../src/guestfs-actions.pod:505 ../fish/guestfish-actions.pod:326
6767 msgid "Remove C<path> and all of its children."
6768 msgstr ""
6769
6770 #. type: textblock
6771 #: ../src/guestfs-actions.pod:507 ../fish/guestfish-actions.pod:328
6772 msgid "On success this returns the number of entries which were removed."
6773 msgstr ""
6774
6775 #. type: =head2
6776 #: ../src/guestfs-actions.pod:513
6777 msgid "guestfs_aug_save"
6778 msgstr ""
6779
6780 #. type: verbatim
6781 #: ../src/guestfs-actions.pod:515
6782 #, no-wrap
6783 msgid ""
6784 " int\n"
6785 " guestfs_aug_save (guestfs_h *g);\n"
6786 "\n"
6787 msgstr ""
6788
6789 #. type: textblock
6790 #: ../src/guestfs-actions.pod:518 ../fish/guestfish-actions.pod:334
6791 msgid "This writes all pending changes to disk."
6792 msgstr ""
6793
6794 #. type: textblock
6795 #: ../src/guestfs-actions.pod:520
6796 msgid ""
6797 "The flags which were passed to C<guestfs_aug_init> affect exactly how files "
6798 "are saved."
6799 msgstr ""
6800
6801 #. type: =head2
6802 #: ../src/guestfs-actions.pod:527
6803 msgid "guestfs_aug_set"
6804 msgstr ""
6805
6806 #. type: verbatim
6807 #: ../src/guestfs-actions.pod:529
6808 #, no-wrap
6809 msgid ""
6810 " int\n"
6811 " guestfs_aug_set (guestfs_h *g,\n"
6812 "                  const char *augpath,\n"
6813 "                  const char *val);\n"
6814 "\n"
6815 msgstr ""
6816
6817 #. type: textblock
6818 #: ../src/guestfs-actions.pod:534 ../fish/guestfish-actions.pod:343
6819 msgid "Set the value associated with C<path> to C<val>."
6820 msgstr ""
6821
6822 #. type: textblock
6823 #: ../src/guestfs-actions.pod:536
6824 msgid ""
6825 "In the Augeas API, it is possible to clear a node by setting the value to "
6826 "NULL.  Due to an oversight in the libguestfs API you cannot do that with "
6827 "this call.  Instead you must use the C<guestfs_aug_clear> call."
6828 msgstr ""
6829
6830 #. type: =head2
6831 #: ../src/guestfs-actions.pod:545
6832 msgid "guestfs_available"
6833 msgstr ""
6834
6835 #. type: verbatim
6836 #: ../src/guestfs-actions.pod:547
6837 #, no-wrap
6838 msgid ""
6839 " int\n"
6840 " guestfs_available (guestfs_h *g,\n"
6841 "                    char *const *groups);\n"
6842 "\n"
6843 msgstr ""
6844
6845 #. type: textblock
6846 #: ../src/guestfs-actions.pod:551 ../fish/guestfish-actions.pod:354
6847 msgid ""
6848 "This command is used to check the availability of some groups of "
6849 "functionality in the appliance, which not all builds of the libguestfs "
6850 "appliance will be able to provide."
6851 msgstr ""
6852
6853 #. type: textblock
6854 #: ../src/guestfs-actions.pod:555
6855 msgid ""
6856 "The libguestfs groups, and the functions that those groups correspond to, "
6857 "are listed in L<guestfs(3)/AVAILABILITY>.  You can also fetch this list at "
6858 "runtime by calling C<guestfs_available_all_groups>."
6859 msgstr ""
6860
6861 #. type: textblock
6862 #: ../src/guestfs-actions.pod:560 ../fish/guestfish-actions.pod:363
6863 msgid ""
6864 "The argument C<groups> is a list of group names, eg: C<[\"inotify\", \"augeas"
6865 "\"]> would check for the availability of the Linux inotify functions and "
6866 "Augeas (configuration file editing) functions."
6867 msgstr ""
6868
6869 #. type: textblock
6870 #: ../src/guestfs-actions.pod:565 ../fish/guestfish-actions.pod:368
6871 msgid "The command returns no error if I<all> requested groups are available."
6872 msgstr ""
6873
6874 #. type: textblock
6875 #: ../src/guestfs-actions.pod:567 ../fish/guestfish-actions.pod:370
6876 msgid ""
6877 "It fails with an error if one or more of the requested groups is unavailable "
6878 "in the appliance."
6879 msgstr ""
6880
6881 #. type: textblock
6882 #: ../src/guestfs-actions.pod:570 ../fish/guestfish-actions.pod:373
6883 msgid ""
6884 "If an unknown group name is included in the list of groups then an error is "
6885 "always returned."
6886 msgstr ""
6887
6888 #. type: textblock
6889 #: ../src/guestfs-actions.pod:573 ../fish/guestfish-actions.pod:376
6890 msgid "I<Notes:>"
6891 msgstr "I<Нотатки:>"
6892
6893 #. type: textblock
6894 #: ../src/guestfs-actions.pod:579
6895 msgid "You must call C<guestfs_launch> before calling this function."
6896 msgstr ""
6897
6898 #. type: textblock
6899 #: ../src/guestfs-actions.pod:581 ../fish/guestfish-actions.pod:384
6900 msgid ""
6901 "The reason is because we don't know what groups are supported by the "
6902 "appliance/daemon until it is running and can be queried."
6903 msgstr ""
6904
6905 #. type: textblock
6906 #: ../src/guestfs-actions.pod:587 ../fish/guestfish-actions.pod:390
6907 msgid ""
6908 "If a group of functions is available, this does not necessarily mean that "
6909 "they will work.  You still have to check for errors when calling individual "
6910 "API functions even if they are available."
6911 msgstr ""
6912
6913 #. type: textblock
6914 #: ../src/guestfs-actions.pod:594 ../fish/guestfish-actions.pod:397
6915 msgid ""
6916 "It is usually the job of distro packagers to build complete functionality "
6917 "into the libguestfs appliance.  Upstream libguestfs, if built from source "
6918 "with all requirements satisfied, will support everything."
6919 msgstr ""
6920
6921 #. type: textblock
6922 #: ../src/guestfs-actions.pod:601
6923 msgid ""
6924 "This call was added in version C<1.0.80>.  In previous versions of "
6925 "libguestfs all you could do would be to speculatively execute a command to "
6926 "find out if the daemon implemented it.  See also C<guestfs_version>."
6927 msgstr ""
6928
6929 #. type: textblock
6930 #: ../src/guestfs-actions.pod:610 ../src/guestfs-actions.pod:1171
6931 msgid "(Added in 1.0.80)"
6932 msgstr ""
6933
6934 #. type: =head2
6935 #: ../src/guestfs-actions.pod:612
6936 msgid "guestfs_available_all_groups"
6937 msgstr ""
6938
6939 #. type: verbatim
6940 #: ../src/guestfs-actions.pod:614
6941 #, no-wrap
6942 msgid ""
6943 " char **\n"
6944 " guestfs_available_all_groups (guestfs_h *g);\n"
6945 "\n"
6946 msgstr ""
6947
6948 #. type: textblock
6949 #: ../src/guestfs-actions.pod:617
6950 msgid ""
6951 "This command returns a list of all optional groups that this daemon knows "
6952 "about.  Note this returns both supported and unsupported groups.  To find "
6953 "out which ones the daemon can actually support you have to call "
6954 "C<guestfs_available> on each member of the returned list."
6955 msgstr ""
6956
6957 #. type: textblock
6958 #: ../src/guestfs-actions.pod:623
6959 msgid "See also C<guestfs_available> and L<guestfs(3)/AVAILABILITY>."
6960 msgstr ""
6961
6962 #. type: textblock
6963 #: ../src/guestfs-actions.pod:629
6964 msgid "(Added in 1.3.15)"
6965 msgstr ""
6966
6967 #. type: =head2
6968 #: ../src/guestfs-actions.pod:631
6969 msgid "guestfs_base64_in"
6970 msgstr ""
6971
6972 #. type: verbatim
6973 #: ../src/guestfs-actions.pod:633
6974 #, no-wrap
6975 msgid ""
6976 " int\n"
6977 " guestfs_base64_in (guestfs_h *g,\n"
6978 "                    const char *base64file,\n"
6979 "                    const char *filename);\n"
6980 "\n"
6981 msgstr ""
6982
6983 #. type: textblock
6984 #: ../src/guestfs-actions.pod:638 ../fish/guestfish-actions.pod:427
6985 msgid ""
6986 "This command uploads base64-encoded data from C<base64file> to C<filename>."
6987 msgstr ""
6988
6989 #. type: textblock
6990 #: ../src/guestfs-actions.pod:643 ../src/guestfs-actions.pod:657
6991 msgid "(Added in 1.3.5)"
6992 msgstr ""
6993
6994 #. type: =head2
6995 #: ../src/guestfs-actions.pod:645
6996 msgid "guestfs_base64_out"
6997 msgstr ""
6998
6999 #. type: verbatim
7000 #: ../src/guestfs-actions.pod:647
7001 #, no-wrap
7002 msgid ""
7003 " int\n"
7004 " guestfs_base64_out (guestfs_h *g,\n"
7005 "                     const char *filename,\n"
7006 "                     const char *base64file);\n"
7007 "\n"
7008 msgstr ""
7009
7010 #. type: textblock
7011 #: ../src/guestfs-actions.pod:652 ../fish/guestfish-actions.pod:436
7012 msgid ""
7013 "This command downloads the contents of C<filename>, writing it out to local "
7014 "file C<base64file> encoded as base64."
7015 msgstr ""
7016
7017 #. type: =head2
7018 #: ../src/guestfs-actions.pod:659
7019 msgid "guestfs_blockdev_flushbufs"
7020 msgstr ""
7021
7022 #. type: verbatim
7023 #: ../src/guestfs-actions.pod:661
7024 #, no-wrap
7025 msgid ""
7026 " int\n"
7027 " guestfs_blockdev_flushbufs (guestfs_h *g,\n"
7028 "                             const char *device);\n"
7029 "\n"
7030 msgstr ""
7031
7032 #. type: textblock
7033 #: ../src/guestfs-actions.pod:665 ../fish/guestfish-actions.pod:445
7034 msgid ""
7035 "This tells the kernel to flush internal buffers associated with C<device>."
7036 msgstr ""
7037
7038 #. type: textblock
7039 #: ../src/guestfs-actions.pod:668 ../src/guestfs-actions.pod:685
7040 #: ../src/guestfs-actions.pod:700 ../src/guestfs-actions.pod:716
7041 #: ../src/guestfs-actions.pod:734 ../src/guestfs-actions.pod:753
7042 #: ../src/guestfs-actions.pod:767 ../src/guestfs-actions.pod:785
7043 #: ../src/guestfs-actions.pod:799 ../src/guestfs-actions.pod:813
7044 #: ../fish/guestfish-actions.pod:448 ../fish/guestfish-actions.pod:459
7045 #: ../fish/guestfish-actions.pod:468 ../fish/guestfish-actions.pod:478
7046 #: ../fish/guestfish-actions.pod:490 ../fish/guestfish-actions.pod:503
7047 #: ../fish/guestfish-actions.pod:511 ../fish/guestfish-actions.pod:522
7048 #: ../fish/guestfish-actions.pod:530 ../fish/guestfish-actions.pod:538
7049 msgid "This uses the L<blockdev(8)> command."
7050 msgstr ""
7051
7052 #. type: textblock
7053 #: ../src/guestfs-actions.pod:672 ../src/guestfs-actions.pod:689
7054 #: ../src/guestfs-actions.pod:704 ../src/guestfs-actions.pod:720
7055 #: ../src/guestfs-actions.pod:738 ../src/guestfs-actions.pod:757
7056 #: ../src/guestfs-actions.pod:771 ../src/guestfs-actions.pod:789
7057 #: ../src/guestfs-actions.pod:803 ../src/guestfs-actions.pod:817
7058 msgid "(Added in 0.9.3)"
7059 msgstr ""
7060
7061 #. type: =head2
7062 #: ../src/guestfs-actions.pod:674
7063 msgid "guestfs_blockdev_getbsz"
7064 msgstr ""
7065
7066 #. type: verbatim
7067 #: ../src/guestfs-actions.pod:676
7068 #, no-wrap
7069 msgid ""
7070 " int\n"
7071 " guestfs_blockdev_getbsz (guestfs_h *g,\n"
7072 "                          const char *device);\n"
7073 "\n"
7074 msgstr ""
7075
7076 #. type: textblock
7077 #: ../src/guestfs-actions.pod:680 ../fish/guestfish-actions.pod:454
7078 msgid "This returns the block size of a device."
7079 msgstr ""
7080
7081 #. type: textblock
7082 #: ../src/guestfs-actions.pod:682 ../src/guestfs-actions.pod:782
7083 #: ../fish/guestfish-actions.pod:456 ../fish/guestfish-actions.pod:519
7084 msgid ""
7085 "(Note this is different from both I<size in blocks> and I<filesystem block "
7086 "size>)."
7087 msgstr ""
7088
7089 #. type: =head2
7090 #: ../src/guestfs-actions.pod:691
7091 msgid "guestfs_blockdev_getro"
7092 msgstr ""
7093
7094 #. type: verbatim
7095 #: ../src/guestfs-actions.pod:693
7096 #, no-wrap
7097 msgid ""
7098 " int\n"
7099 " guestfs_blockdev_getro (guestfs_h *g,\n"
7100 "                         const char *device);\n"
7101 "\n"
7102 msgstr ""
7103
7104 #. type: textblock
7105 #: ../src/guestfs-actions.pod:697 ../fish/guestfish-actions.pod:465
7106 msgid ""
7107 "Returns a boolean indicating if the block device is read-only (true if read-"
7108 "only, false if not)."
7109 msgstr ""
7110
7111 #. type: textblock
7112 #: ../src/guestfs-actions.pod:702 ../src/guestfs-actions.pod:1409
7113 #: ../src/guestfs-actions.pod:1424 ../src/guestfs-actions.pod:1914
7114 #: ../src/guestfs-actions.pod:1925 ../src/guestfs-actions.pod:1997
7115 #: ../src/guestfs-actions.pod:2052 ../src/guestfs-actions.pod:2067
7116 #: ../src/guestfs-actions.pod:2092 ../src/guestfs-actions.pod:2115
7117 #: ../src/guestfs-actions.pod:3080 ../src/guestfs-actions.pod:3097
7118 #: ../src/guestfs-actions.pod:3116 ../src/guestfs-actions.pod:3279
7119 #: ../src/guestfs-actions.pod:3293 ../src/guestfs-actions.pod:3308
7120 #: ../src/guestfs-actions.pod:3322 ../src/guestfs-actions.pod:3338
7121 #: ../src/guestfs-actions.pod:3353 ../src/guestfs-actions.pod:3369
7122 #: ../src/guestfs-actions.pod:3383 ../src/guestfs-actions.pod:3396
7123 #: ../src/guestfs-actions.pod:3410 ../src/guestfs-actions.pod:3425
7124 #: ../src/guestfs-actions.pod:3440 ../src/guestfs-actions.pod:4971
7125 msgid "This function returns a C truth value on success or -1 on error."
7126 msgstr ""
7127
7128 #. type: =head2
7129 #: ../src/guestfs-actions.pod:706
7130 msgid "guestfs_blockdev_getsize64"
7131 msgstr ""
7132
7133 #. type: verbatim
7134 #: ../src/guestfs-actions.pod:708
7135 #, no-wrap
7136 msgid ""
7137 " int64_t\n"
7138 " guestfs_blockdev_getsize64 (guestfs_h *g,\n"
7139 "                             const char *device);\n"
7140 "\n"
7141 msgstr ""
7142
7143 #. type: textblock
7144 #: ../src/guestfs-actions.pod:712 ../fish/guestfish-actions.pod:474
7145 msgid "This returns the size of the device in bytes."
7146 msgstr ""
7147
7148 #. type: textblock
7149 #: ../src/guestfs-actions.pod:714
7150 msgid "See also C<guestfs_blockdev_getsz>."
7151 msgstr ""
7152
7153 #. type: =head2
7154 #: ../src/guestfs-actions.pod:722
7155 msgid "guestfs_blockdev_getss"
7156 msgstr ""
7157
7158 #. type: verbatim
7159 #: ../src/guestfs-actions.pod:724
7160 #, no-wrap
7161 msgid ""
7162 " int\n"
7163 " guestfs_blockdev_getss (guestfs_h *g,\n"
7164 "                         const char *device);\n"
7165 "\n"
7166 msgstr ""
7167
7168 #. type: textblock
7169 #: ../src/guestfs-actions.pod:728 ../fish/guestfish-actions.pod:484
7170 msgid ""
7171 "This returns the size of sectors on a block device.  Usually 512, but can be "
7172 "larger for modern devices."
7173 msgstr ""
7174
7175 #. type: textblock
7176 #: ../src/guestfs-actions.pod:731
7177 msgid ""
7178 "(Note, this is not the size in sectors, use C<guestfs_blockdev_getsz> for "
7179 "that)."
7180 msgstr ""
7181
7182 #. type: =head2
7183 #: ../src/guestfs-actions.pod:740
7184 msgid "guestfs_blockdev_getsz"
7185 msgstr ""
7186
7187 #. type: verbatim
7188 #: ../src/guestfs-actions.pod:742
7189 #, no-wrap
7190 msgid ""
7191 " int64_t\n"
7192 " guestfs_blockdev_getsz (guestfs_h *g,\n"
7193 "                         const char *device);\n"
7194 "\n"
7195 msgstr ""
7196
7197 #. type: textblock
7198 #: ../src/guestfs-actions.pod:746 ../fish/guestfish-actions.pod:496
7199 msgid ""
7200 "This returns the size of the device in units of 512-byte sectors (even if "
7201 "the sectorsize isn't 512 bytes ... weird)."
7202 msgstr ""
7203
7204 #. type: textblock
7205 #: ../src/guestfs-actions.pod:749
7206 msgid ""
7207 "See also C<guestfs_blockdev_getss> for the real sector size of the device, "
7208 "and C<guestfs_blockdev_getsize64> for the more useful I<size in bytes>."
7209 msgstr ""
7210
7211 #. type: =head2
7212 #: ../src/guestfs-actions.pod:759
7213 msgid "guestfs_blockdev_rereadpt"
7214 msgstr ""
7215
7216 #. type: verbatim
7217 #: ../src/guestfs-actions.pod:761
7218 #, no-wrap
7219 msgid ""
7220 " int\n"
7221 " guestfs_blockdev_rereadpt (guestfs_h *g,\n"
7222 "                            const char *device);\n"
7223 "\n"
7224 msgstr ""
7225
7226 #. type: textblock
7227 #: ../src/guestfs-actions.pod:765 ../fish/guestfish-actions.pod:509
7228 msgid "Reread the partition table on C<device>."
7229 msgstr ""
7230
7231 #. type: =head2
7232 #: ../src/guestfs-actions.pod:773
7233 msgid "guestfs_blockdev_setbsz"
7234 msgstr ""
7235
7236 #. type: verbatim
7237 #: ../src/guestfs-actions.pod:775
7238 #, no-wrap
7239 msgid ""
7240 " int\n"
7241 " guestfs_blockdev_setbsz (guestfs_h *g,\n"
7242 "                          const char *device,\n"
7243 "                          int blocksize);\n"
7244 "\n"
7245 msgstr ""
7246
7247 #. type: textblock
7248 #: ../src/guestfs-actions.pod:780 ../fish/guestfish-actions.pod:517
7249 msgid "This sets the block size of a device."
7250 msgstr ""
7251
7252 #. type: =head2
7253 #: ../src/guestfs-actions.pod:791
7254 msgid "guestfs_blockdev_setro"
7255 msgstr ""
7256
7257 #. type: verbatim
7258 #: ../src/guestfs-actions.pod:793
7259 #, no-wrap
7260 msgid ""
7261 " int\n"
7262 " guestfs_blockdev_setro (guestfs_h *g,\n"
7263 "                         const char *device);\n"
7264 "\n"
7265 msgstr ""
7266
7267 #. type: textblock
7268 #: ../src/guestfs-actions.pod:797 ../fish/guestfish-actions.pod:528
7269 msgid "Sets the block device named C<device> to read-only."
7270 msgstr ""
7271
7272 #. type: =head2
7273 #: ../src/guestfs-actions.pod:805
7274 msgid "guestfs_blockdev_setrw"
7275 msgstr ""
7276
7277 #. type: verbatim
7278 #: ../src/guestfs-actions.pod:807
7279 #, no-wrap
7280 msgid ""
7281 " int\n"
7282 " guestfs_blockdev_setrw (guestfs_h *g,\n"
7283 "                         const char *device);\n"
7284 "\n"
7285 msgstr ""
7286
7287 #. type: textblock
7288 #: ../src/guestfs-actions.pod:811 ../fish/guestfish-actions.pod:536
7289 msgid "Sets the block device named C<device> to read-write."
7290 msgstr ""
7291
7292 #. type: =head2
7293 #: ../src/guestfs-actions.pod:819
7294 msgid "guestfs_case_sensitive_path"
7295 msgstr ""
7296
7297 #. type: verbatim
7298 #: ../src/guestfs-actions.pod:821
7299 #, no-wrap
7300 msgid ""
7301 " char *\n"
7302 " guestfs_case_sensitive_path (guestfs_h *g,\n"
7303 "                              const char *path);\n"
7304 "\n"
7305 msgstr ""
7306
7307 #. type: textblock
7308 #: ../src/guestfs-actions.pod:825 ../fish/guestfish-actions.pod:544
7309 msgid ""
7310 "This can be used to resolve case insensitive paths on a filesystem which is "
7311 "case sensitive.  The use case is to resolve paths which you have read from "
7312 "Windows configuration files or the Windows Registry, to the true path."
7313 msgstr ""
7314
7315 #. type: textblock
7316 #: ../src/guestfs-actions.pod:830 ../fish/guestfish-actions.pod:549
7317 msgid ""
7318 "The command handles a peculiarity of the Linux ntfs-3g filesystem driver "
7319 "(and probably others), which is that although the underlying filesystem is "
7320 "case-insensitive, the driver exports the filesystem to Linux as case-"
7321 "sensitive."
7322 msgstr ""
7323
7324 #. type: textblock
7325 #: ../src/guestfs-actions.pod:835 ../fish/guestfish-actions.pod:554
7326 msgid ""
7327 "One consequence of this is that special directories such as C<c:\\windows> "
7328 "may appear as C</WINDOWS> or C</windows> (or other things) depending on the "
7329 "precise details of how they were created.  In Windows itself this would not "
7330 "be a problem."
7331 msgstr ""
7332
7333 #. type: textblock
7334 #: ../src/guestfs-actions.pod:841 ../fish/guestfish-actions.pod:560
7335 msgid ""
7336 "Bug or feature? You decide: L<http://www.tuxera.com/community/ntfs-3g-faq/"
7337 "#posixfilenames1>"
7338 msgstr ""
7339
7340 #. type: textblock
7341 #: ../src/guestfs-actions.pod:844 ../fish/guestfish-actions.pod:563
7342 msgid ""
7343 "This function resolves the true case of each element in the path and returns "
7344 "the case-sensitive path."
7345 msgstr ""
7346
7347 #. type: textblock
7348 #: ../src/guestfs-actions.pod:847
7349 msgid ""
7350 "Thus C<guestfs_case_sensitive_path> (\"/Windows/System32\")  might return C<"
7351 "\"/WINDOWS/system32\"> (the exact return value would depend on details of "
7352 "how the directories were originally created under Windows)."
7353 msgstr ""
7354
7355 #. type: textblock
7356 #: ../src/guestfs-actions.pod:852 ../fish/guestfish-actions.pod:571
7357 msgid "I<Note>: This function does not handle drive names, backslashes etc."
7358 msgstr ""
7359
7360 #. type: textblock
7361 #: ../src/guestfs-actions.pod:855
7362 msgid "See also C<guestfs_realpath>."
7363 msgstr ""
7364
7365 #. type: textblock
7366 #: ../src/guestfs-actions.pod:860 ../src/guestfs-actions.pod:6962
7367 msgid "(Added in 1.0.75)"
7368 msgstr ""
7369
7370 #. type: =head2
7371 #: ../src/guestfs-actions.pod:862
7372 msgid "guestfs_cat"
7373 msgstr ""
7374
7375 #. type: verbatim
7376 #: ../src/guestfs-actions.pod:864
7377 #, no-wrap
7378 msgid ""
7379 " char *\n"
7380 " guestfs_cat (guestfs_h *g,\n"
7381 "              const char *path);\n"
7382 "\n"
7383 msgstr ""
7384
7385 #. type: textblock
7386 #: ../src/guestfs-actions.pod:868 ../src/guestfs-actions.pod:5458
7387 #: ../fish/guestfish-actions.pod:580 ../fish/guestfish-actions.pod:3659
7388 msgid "Return the contents of the file named C<path>."
7389 msgstr ""
7390
7391 #. type: textblock
7392 #: ../src/guestfs-actions.pod:870
7393 msgid ""
7394 "Note that this function cannot correctly handle binary files (specifically, "
7395 "files containing C<\\0> character which is treated as end of string).  For "
7396 "those you need to use the C<guestfs_read_file> or C<guestfs_download> "
7397 "functions which have a more complex interface."
7398 msgstr ""
7399
7400 #. type: textblock
7401 #: ../src/guestfs-actions.pod:878 ../src/guestfs-actions.pod:1057
7402 #: ../src/guestfs-actions.pod:1077 ../src/guestfs-actions.pod:1373
7403 #: ../src/guestfs-actions.pod:1392 ../src/guestfs-actions.pod:1495
7404 #: ../src/guestfs-actions.pod:1514 ../src/guestfs-actions.pod:1763
7405 #: ../src/guestfs-actions.pod:2221 ../src/guestfs-actions.pod:2240
7406 #: ../src/guestfs-actions.pod:2283 ../src/guestfs-actions.pod:2307
7407 #: ../src/guestfs-actions.pod:2324 ../src/guestfs-actions.pod:2353
7408 #: ../src/guestfs-actions.pod:5240 ../src/guestfs-actions.pod:5266
7409 #: ../src/guestfs-actions.pod:5397 ../src/guestfs-actions.pod:5423
7410 #: ../src/guestfs-actions.pod:5447 ../src/guestfs-actions.pod:6347
7411 #: ../src/guestfs-actions.pod:6402 ../src/guestfs-actions.pod:6548
7412 #: ../src/guestfs-actions.pod:6572 ../src/guestfs-actions.pod:7234
7413 #: ../src/guestfs-actions.pod:7260 ../src/guestfs-actions.pod:7286
7414 #: ../src/guestfs-actions.pod:7305 ../src/guestfs-actions.pod:7390
7415 #: ../src/guestfs-actions.pod:7409 ../src/guestfs-actions.pod:7455
7416 #: ../src/guestfs-actions.pod:7474 ../fish/guestfish-actions.pod:587
7417 #: ../fish/guestfish-actions.pod:722 ../fish/guestfish-actions.pod:734
7418 #: ../fish/guestfish-actions.pod:910 ../fish/guestfish-actions.pod:920
7419 #: ../fish/guestfish-actions.pod:987 ../fish/guestfish-actions.pod:997
7420 #: ../fish/guestfish-actions.pod:1192 ../fish/guestfish-actions.pod:1493
7421 #: ../fish/guestfish-actions.pod:1503 ../fish/guestfish-actions.pod:1531
7422 #: ../fish/guestfish-actions.pod:1546 ../fish/guestfish-actions.pod:1556
7423 #: ../fish/guestfish-actions.pod:1575 ../fish/guestfish-actions.pod:3529
7424 #: ../fish/guestfish-actions.pod:3544 ../fish/guestfish-actions.pod:3620
7425 #: ../fish/guestfish-actions.pod:3637 ../fish/guestfish-actions.pod:3652
7426 #: ../fish/guestfish-actions.pod:4278 ../fish/guestfish-actions.pod:4324
7427 #: ../fish/guestfish-actions.pod:4409 ../fish/guestfish-actions.pod:4424
7428 #: ../fish/guestfish-actions.pod:4834 ../fish/guestfish-actions.pod:4852
7429 #: ../fish/guestfish-actions.pod:4869 ../fish/guestfish-actions.pod:4879
7430 #: ../fish/guestfish-actions.pod:4927 ../fish/guestfish-actions.pod:4937
7431 #: ../fish/guestfish-actions.pod:4966 ../fish/guestfish-actions.pod:4976
7432 msgid ""
7433 "Because of the message protocol, there is a transfer limit of somewhere "
7434 "between 2MB and 4MB.  See L<guestfs(3)/PROTOCOL LIMITS>."
7435 msgstr ""
7436
7437 #. type: textblock
7438 #: ../src/guestfs-actions.pod:881 ../src/guestfs-actions.pod:3556
7439 #: ../src/guestfs-actions.pod:3618 ../src/guestfs-actions.pod:3635
7440 #: ../src/guestfs-actions.pod:3723 ../src/guestfs-actions.pod:4128
7441 #: ../src/guestfs-actions.pod:4142 ../src/guestfs-actions.pod:5346
7442 #: ../src/guestfs-actions.pod:5360 ../src/guestfs-actions.pod:7121
7443 #: ../src/guestfs-actions.pod:7135
7444 msgid "(Added in 0.4)"
7445 msgstr ""
7446
7447 #. type: =head2
7448 #: ../src/guestfs-actions.pod:883
7449 msgid "guestfs_checksum"
7450 msgstr ""
7451
7452 #. type: verbatim
7453 #: ../src/guestfs-actions.pod:885
7454 #, no-wrap
7455 msgid ""
7456 " char *\n"
7457 " guestfs_checksum (guestfs_h *g,\n"
7458 "                   const char *csumtype,\n"
7459 "                   const char *path);\n"
7460 "\n"
7461 msgstr ""
7462
7463 #. type: textblock
7464 #: ../src/guestfs-actions.pod:890 ../fish/guestfish-actions.pod:594
7465 msgid ""
7466 "This call computes the MD5, SHAx or CRC checksum of the file named C<path>."
7467 msgstr ""
7468
7469 #. type: textblock
7470 #: ../src/guestfs-actions.pod:893 ../fish/guestfish-actions.pod:597
7471 msgid ""
7472 "The type of checksum to compute is given by the C<csumtype> parameter which "
7473 "must have one of the following values:"
7474 msgstr ""
7475
7476 #. type: =item
7477 #: ../src/guestfs-actions.pod:898 ../fish/guestfish-actions.pod:602
7478 msgid "C<crc>"
7479 msgstr "C<crc>"
7480
7481 #. type: textblock
7482 #: ../src/guestfs-actions.pod:900 ../fish/guestfish-actions.pod:604
7483 msgid ""
7484 "Compute the cyclic redundancy check (CRC) specified by POSIX for the "
7485 "C<cksum> command."
7486 msgstr ""
7487
7488 #. type: =item
7489 #: ../src/guestfs-actions.pod:903 ../fish/guestfish-actions.pod:607
7490 msgid "C<md5>"
7491 msgstr "C<md5>"
7492
7493 #. type: textblock
7494 #: ../src/guestfs-actions.pod:905 ../fish/guestfish-actions.pod:609
7495 msgid "Compute the MD5 hash (using the C<md5sum> program)."
7496 msgstr ""
7497
7498 #. type: =item
7499 #: ../src/guestfs-actions.pod:907 ../fish/guestfish-actions.pod:611
7500 msgid "C<sha1>"
7501 msgstr "C<sha1>"
7502
7503 #. type: textblock
7504 #: ../src/guestfs-actions.pod:909 ../fish/guestfish-actions.pod:613
7505 msgid "Compute the SHA1 hash (using the C<sha1sum> program)."
7506 msgstr ""
7507
7508 #. type: =item
7509 #: ../src/guestfs-actions.pod:911 ../fish/guestfish-actions.pod:615
7510 msgid "C<sha224>"
7511 msgstr "C<sha224>"
7512
7513 #. type: textblock
7514 #: ../src/guestfs-actions.pod:913 ../fish/guestfish-actions.pod:617
7515 msgid "Compute the SHA224 hash (using the C<sha224sum> program)."
7516 msgstr ""
7517
7518 #. type: =item
7519 #: ../src/guestfs-actions.pod:915 ../fish/guestfish-actions.pod:619
7520 msgid "C<sha256>"
7521 msgstr "C<sha256>"
7522
7523 #. type: textblock
7524 #: ../src/guestfs-actions.pod:917 ../fish/guestfish-actions.pod:621
7525 msgid "Compute the SHA256 hash (using the C<sha256sum> program)."
7526 msgstr ""
7527
7528 #. type: =item
7529 #: ../src/guestfs-actions.pod:919 ../fish/guestfish-actions.pod:623
7530 msgid "C<sha384>"
7531 msgstr "C<sha384>"
7532
7533 #. type: textblock
7534 #: ../src/guestfs-actions.pod:921 ../fish/guestfish-actions.pod:625
7535 msgid "Compute the SHA384 hash (using the C<sha384sum> program)."
7536 msgstr ""
7537
7538 #. type: =item
7539 #: ../src/guestfs-actions.pod:923 ../fish/guestfish-actions.pod:627
7540 msgid "C<sha512>"
7541 msgstr "C<sha512>"
7542
7543 #. type: textblock
7544 #: ../src/guestfs-actions.pod:925 ../fish/guestfish-actions.pod:629
7545 msgid "Compute the SHA512 hash (using the C<sha512sum> program)."
7546 msgstr ""
7547
7548 #. type: textblock
7549 #: ../src/guestfs-actions.pod:929 ../fish/guestfish-actions.pod:633
7550 msgid "The checksum is returned as a printable string."
7551 msgstr ""
7552
7553 #. type: textblock
7554 #: ../src/guestfs-actions.pod:931
7555 msgid "To get the checksum for a device, use C<guestfs_checksum_device>."
7556 msgstr ""
7557
7558 #. type: textblock
7559 #: ../src/guestfs-actions.pod:933
7560 msgid "To get the checksums for many files, use C<guestfs_checksums_out>."
7561 msgstr ""
7562
7563 #. type: textblock
7564 #: ../src/guestfs-actions.pod:938 ../src/guestfs-actions.pod:1246
7565 #: ../src/guestfs-actions.pod:2083 ../src/guestfs-actions.pod:3295
7566 #: ../src/guestfs-actions.pod:3324 ../src/guestfs-actions.pod:3385
7567 #: ../src/guestfs-actions.pod:3412 ../src/guestfs-actions.pod:6818
7568 msgid "(Added in 1.0.2)"
7569 msgstr ""
7570
7571 #. type: =head2
7572 #: ../src/guestfs-actions.pod:940
7573 msgid "guestfs_checksum_device"
7574 msgstr ""
7575
7576 #. type: verbatim
7577 #: ../src/guestfs-actions.pod:942
7578 #, no-wrap
7579 msgid ""
7580 " char *\n"
7581 " guestfs_checksum_device (guestfs_h *g,\n"
7582 "                          const char *csumtype,\n"
7583 "                          const char *device);\n"
7584 "\n"
7585 msgstr ""
7586
7587 #. type: textblock
7588 #: ../src/guestfs-actions.pod:947
7589 msgid ""
7590 "This call computes the MD5, SHAx or CRC checksum of the contents of the "
7591 "device named C<device>.  For the types of checksums supported see the "
7592 "C<guestfs_checksum> command."
7593 msgstr ""
7594
7595 #. type: textblock
7596 #: ../src/guestfs-actions.pod:954 ../src/guestfs-actions.pod:4877
7597 #: ../src/guestfs-actions.pod:4936 ../src/guestfs-actions.pod:4973
7598 #: ../src/guestfs-actions.pod:4991 ../src/guestfs-actions.pod:5167
7599 #: ../src/guestfs-actions.pod:6727 ../src/guestfs-actions.pod:6741
7600 #: ../src/guestfs-actions.pod:7147
7601 msgid "(Added in 1.3.2)"
7602 msgstr ""
7603
7604 #. type: =head2
7605 #: ../src/guestfs-actions.pod:956
7606 msgid "guestfs_checksums_out"
7607 msgstr ""
7608
7609 #. type: verbatim
7610 #: ../src/guestfs-actions.pod:958
7611 #, no-wrap
7612 msgid ""
7613 " int\n"
7614 " guestfs_checksums_out (guestfs_h *g,\n"
7615 "                        const char *csumtype,\n"
7616 "                        const char *directory,\n"
7617 "                        const char *sumsfile);\n"
7618 "\n"
7619 msgstr ""
7620
7621 #. type: textblock
7622 #: ../src/guestfs-actions.pod:964 ../fish/guestfish-actions.pod:651
7623 msgid ""
7624 "This command computes the checksums of all regular files in C<directory> and "
7625 "then emits a list of those checksums to the local output file C<sumsfile>."
7626 msgstr ""
7627
7628 #. type: textblock
7629 #: ../src/guestfs-actions.pod:968 ../fish/guestfish-actions.pod:655
7630 msgid ""
7631 "This can be used for verifying the integrity of a virtual machine.  However "
7632 "to be properly secure you should pay attention to the output of the checksum "
7633 "command (it uses the ones from GNU coreutils).  In particular when the "
7634 "filename is not printable, coreutils uses a special backslash syntax.  For "
7635 "more information, see the GNU coreutils info file."
7636 msgstr ""
7637
7638 #. type: textblock
7639 #: ../src/guestfs-actions.pod:978
7640 msgid "(Added in 1.3.7)"
7641 msgstr ""
7642
7643 #. type: =head2
7644 #: ../src/guestfs-actions.pod:980
7645 msgid "guestfs_chmod"
7646 msgstr ""
7647
7648 #. type: verbatim
7649 #: ../src/guestfs-actions.pod:982
7650 #, no-wrap
7651 msgid ""
7652 " int\n"
7653 " guestfs_chmod (guestfs_h *g,\n"
7654 "                int mode,\n"
7655 "                const char *path);\n"
7656 "\n"
7657 msgstr ""
7658
7659 #. type: textblock
7660 #: ../src/guestfs-actions.pod:987 ../fish/guestfish-actions.pod:669
7661 msgid ""
7662 "Change the mode (permissions) of C<path> to C<mode>.  Only numeric modes are "
7663 "supported."
7664 msgstr ""
7665
7666 #. type: textblock
7667 #: ../src/guestfs-actions.pod:990 ../fish/guestfish-actions.pod:672
7668 msgid ""
7669 "I<Note>: When using this command from guestfish, C<mode> by default would be "
7670 "decimal, unless you prefix it with C<0> to get octal, ie. use C<0700> not "
7671 "C<700>."
7672 msgstr ""
7673
7674 #. type: textblock
7675 #: ../src/guestfs-actions.pod:994 ../src/guestfs-actions.pod:4379
7676 #: ../src/guestfs-actions.pod:4576 ../src/guestfs-actions.pod:4595
7677 #: ../src/guestfs-actions.pod:4614 ../fish/guestfish-actions.pod:676
7678 #: ../fish/guestfish-actions.pod:2975 ../fish/guestfish-actions.pod:3104
7679 #: ../fish/guestfish-actions.pod:3114 ../fish/guestfish-actions.pod:3124
7680 msgid "The mode actually set is affected by the umask."
7681 msgstr ""
7682
7683 #. type: =head2
7684 #: ../src/guestfs-actions.pod:1000
7685 msgid "guestfs_chown"
7686 msgstr ""
7687
7688 #. type: verbatim
7689 #: ../src/guestfs-actions.pod:1002
7690 #, no-wrap
7691 msgid ""
7692 " int\n"
7693 " guestfs_chown (guestfs_h *g,\n"
7694 "                int owner,\n"
7695 "                int group,\n"
7696 "                const char *path);\n"
7697 "\n"
7698 msgstr ""
7699
7700 #. type: textblock
7701 #: ../src/guestfs-actions.pod:1008 ../fish/guestfish-actions.pod:682
7702 msgid "Change the file owner to C<owner> and group to C<group>."
7703 msgstr ""
7704
7705 #. type: textblock
7706 #: ../src/guestfs-actions.pod:1010 ../src/guestfs-actions.pod:3487
7707 #: ../fish/guestfish-actions.pod:684 ../fish/guestfish-actions.pod:2433
7708 msgid ""
7709 "Only numeric uid and gid are supported.  If you want to use names, you will "
7710 "need to locate and parse the password file yourself (Augeas support makes "
7711 "this relatively easy)."
7712 msgstr ""
7713
7714 #. type: =head2
7715 #: ../src/guestfs-actions.pod:1018
7716 msgid "guestfs_command"
7717 msgstr ""
7718
7719 #. type: verbatim
7720 #: ../src/guestfs-actions.pod:1020
7721 #, no-wrap
7722 msgid ""
7723 " char *\n"
7724 " guestfs_command (guestfs_h *g,\n"
7725 "                  char *const *arguments);\n"
7726 "\n"
7727 msgstr ""
7728
7729 #. type: textblock
7730 #: ../src/guestfs-actions.pod:1024 ../fish/guestfish-actions.pod:692
7731 msgid ""
7732 "This call runs a command from the guest filesystem.  The filesystem must be "
7733 "mounted, and must contain a compatible operating system (ie. something "
7734 "Linux, with the same or compatible processor architecture)."
7735 msgstr ""
7736
7737 #. type: textblock
7738 #: ../src/guestfs-actions.pod:1029
7739 msgid ""
7740 "The single parameter is an argv-style list of arguments.  The first element "
7741 "is the name of the program to run.  Subsequent elements are parameters.  The "
7742 "list must be non-empty (ie. must contain a program name).  Note that the "
7743 "command runs directly, and is I<not> invoked via the shell (see "
7744 "C<guestfs_sh>)."
7745 msgstr ""
7746
7747 #. type: textblock
7748 #: ../src/guestfs-actions.pod:1036 ../fish/guestfish-actions.pod:704
7749 msgid "The return value is anything printed to I<stdout> by the command."
7750 msgstr ""
7751
7752 #. type: textblock
7753 #: ../src/guestfs-actions.pod:1039 ../fish/guestfish-actions.pod:707
7754 msgid ""
7755 "If the command returns a non-zero exit status, then this function returns an "
7756 "error message.  The error message string is the content of I<stderr> from "
7757 "the command."
7758 msgstr ""
7759
7760 #. type: textblock
7761 #: ../src/guestfs-actions.pod:1043 ../fish/guestfish-actions.pod:711
7762 msgid ""
7763 "The C<$PATH> environment variable will contain at least C</usr/bin> and C</"
7764 "bin>.  If you require a program from another location, you should provide "
7765 "the full path in the first parameter."
7766 msgstr ""
7767
7768 #. type: textblock
7769 #: ../src/guestfs-actions.pod:1048 ../fish/guestfish-actions.pod:716
7770 msgid ""
7771 "Shared libraries and data files required by the program must be available on "
7772 "filesystems which are mounted in the correct places.  It is the caller's "
7773 "responsibility to ensure all filesystems that are needed are mounted at the "
7774 "right locations."
7775 msgstr ""
7776
7777 #. type: textblock
7778 #: ../src/guestfs-actions.pod:1060 ../src/guestfs-actions.pod:1080
7779 #: ../src/guestfs-actions.pod:1548
7780 msgid "(Added in 0.9.1)"
7781 msgstr ""
7782
7783 #. type: =head2
7784 #: ../src/guestfs-actions.pod:1062
7785 msgid "guestfs_command_lines"
7786 msgstr ""
7787
7788 #. type: verbatim
7789 #: ../src/guestfs-actions.pod:1064
7790 #, no-wrap
7791 msgid ""
7792 " char **\n"
7793 " guestfs_command_lines (guestfs_h *g,\n"
7794 "                        char *const *arguments);\n"
7795 "\n"
7796 msgstr ""
7797
7798 #. type: textblock
7799 #: ../src/guestfs-actions.pod:1068
7800 msgid ""
7801 "This is the same as C<guestfs_command>, but splits the result into a list of "
7802 "lines."
7803 msgstr ""
7804
7805 #. type: textblock
7806 #: ../src/guestfs-actions.pod:1071
7807 msgid "See also: C<guestfs_sh_lines>"
7808 msgstr ""
7809
7810 #. type: =head2
7811 #: ../src/guestfs-actions.pod:1082
7812 msgid "guestfs_config"
7813 msgstr ""
7814
7815 #. type: verbatim
7816 #: ../src/guestfs-actions.pod:1084
7817 #, no-wrap
7818 msgid ""
7819 " int\n"
7820 " guestfs_config (guestfs_h *g,\n"
7821 "                 const char *qemuparam,\n"
7822 "                 const char *qemuvalue);\n"
7823 "\n"
7824 msgstr ""
7825
7826 #. type: textblock
7827 #: ../src/guestfs-actions.pod:1089 ../fish/guestfish-actions.pod:741
7828 msgid ""
7829 "This can be used to add arbitrary qemu command line parameters of the form "
7830 "C<-param value>.  Actually it's not quite arbitrary - we prevent you from "
7831 "setting some parameters which would interfere with parameters that we use."
7832 msgstr ""
7833
7834 #. type: textblock
7835 #: ../src/guestfs-actions.pod:1094 ../fish/guestfish-actions.pod:746
7836 msgid "The first character of C<param> string must be a C<-> (dash)."
7837 msgstr ""
7838
7839 #. type: textblock
7840 #: ../src/guestfs-actions.pod:1096 ../fish/guestfish-actions.pod:748
7841 msgid "C<value> can be NULL."
7842 msgstr ""
7843
7844 #. type: =head2
7845 #: ../src/guestfs-actions.pod:1102
7846 msgid "guestfs_copy_size"
7847 msgstr ""
7848
7849 #. type: verbatim
7850 #: ../src/guestfs-actions.pod:1104
7851 #, no-wrap
7852 msgid ""
7853 " int\n"
7854 " guestfs_copy_size (guestfs_h *g,\n"
7855 "                    const char *src,\n"
7856 "                    const char *dest,\n"
7857 "                    int64_t size);\n"
7858 "\n"
7859 msgstr ""
7860
7861 #. type: textblock
7862 #: ../src/guestfs-actions.pod:1110 ../fish/guestfish-actions.pod:754
7863 msgid ""
7864 "This command copies exactly C<size> bytes from one source device or file "
7865 "C<src> to another destination device or file C<dest>."
7866 msgstr ""
7867
7868 #. type: textblock
7869 #: ../src/guestfs-actions.pod:1113 ../fish/guestfish-actions.pod:757
7870 msgid ""
7871 "Note this will fail if the source is too short or if the destination is not "
7872 "large enough."
7873 msgstr ""
7874
7875 #. type: textblock
7876 #: ../src/guestfs-actions.pod:1118 ../src/guestfs-actions.pod:1241
7877 #: ../src/guestfs-actions.pod:1272 ../src/guestfs-actions.pod:1317
7878 #: ../src/guestfs-actions.pod:1697 ../src/guestfs-actions.pod:1719
7879 #: ../src/guestfs-actions.pod:3468 ../src/guestfs-actions.pod:6813
7880 #: ../src/guestfs-actions.pod:6847 ../src/guestfs-actions.pod:7326
7881 #: ../src/guestfs-actions.pod:7345
7882 msgid ""
7883 "This long-running command can generate progress notification messages so "
7884 "that the caller can display a progress bar or indicator.  To receive these "
7885 "messages, the caller must register a progress event callback.  See L<guestfs"
7886 "(3)/GUESTFS_EVENT_PROGRESS>."
7887 msgstr ""
7888
7889 #. type: textblock
7890 #: ../src/guestfs-actions.pod:1123 ../src/guestfs-actions.pod:4155
7891 #: ../src/guestfs-actions.pod:5373 ../src/guestfs-actions.pod:7054
7892 #: ../src/guestfs-actions.pod:7074 ../src/guestfs-actions.pod:7160
7893 msgid "(Added in 1.0.87)"
7894 msgstr ""
7895
7896 #. type: =head2
7897 #: ../src/guestfs-actions.pod:1125
7898 msgid "guestfs_cp"
7899 msgstr ""
7900
7901 #. type: verbatim
7902 #: ../src/guestfs-actions.pod:1127
7903 #, no-wrap
7904 msgid ""
7905 " int\n"
7906 " guestfs_cp (guestfs_h *g,\n"
7907 "             const char *src,\n"
7908 "             const char *dest);\n"
7909 "\n"
7910 msgstr ""
7911
7912 #. type: textblock
7913 #: ../src/guestfs-actions.pod:1132 ../fish/guestfish-actions.pod:764
7914 msgid ""
7915 "This copies a file from C<src> to C<dest> where C<dest> is either a "
7916 "destination filename or destination directory."
7917 msgstr ""
7918
7919 #. type: textblock
7920 #: ../src/guestfs-actions.pod:1137 ../src/guestfs-actions.pod:1151
7921 #: ../src/guestfs-actions.pod:1223 ../src/guestfs-actions.pod:1297
7922 #: ../src/guestfs-actions.pod:1411 ../src/guestfs-actions.pod:4840
7923 #: ../src/guestfs-actions.pod:5217
7924 msgid "(Added in 1.0.18)"
7925 msgstr ""
7926
7927 #. type: =head2
7928 #: ../src/guestfs-actions.pod:1139
7929 msgid "guestfs_cp_a"
7930 msgstr ""
7931
7932 #. type: verbatim
7933 #: ../src/guestfs-actions.pod:1141
7934 #, no-wrap
7935 msgid ""
7936 " int\n"
7937 " guestfs_cp_a (guestfs_h *g,\n"
7938 "               const char *src,\n"
7939 "               const char *dest);\n"
7940 "\n"
7941 msgstr ""
7942
7943 #. type: textblock
7944 #: ../src/guestfs-actions.pod:1146 ../fish/guestfish-actions.pod:771
7945 msgid ""
7946 "This copies a file or directory from C<src> to C<dest> recursively using the "
7947 "C<cp -a> command."
7948 msgstr ""
7949
7950 #. type: =head2
7951 #: ../src/guestfs-actions.pod:1153
7952 msgid "guestfs_dd"
7953 msgstr ""
7954
7955 #. type: verbatim
7956 #: ../src/guestfs-actions.pod:1155
7957 #, no-wrap
7958 msgid ""
7959 " int\n"
7960 " guestfs_dd (guestfs_h *g,\n"
7961 "             const char *src,\n"
7962 "             const char *dest);\n"
7963 "\n"
7964 msgstr ""
7965
7966 #. type: textblock
7967 #: ../src/guestfs-actions.pod:1160 ../fish/guestfish-actions.pod:778
7968 msgid ""
7969 "This command copies from one source device or file C<src> to another "
7970 "destination device or file C<dest>.  Normally you would use this to copy to "
7971 "or from a device or partition, for example to duplicate a filesystem."
7972 msgstr ""
7973
7974 #. type: textblock
7975 #: ../src/guestfs-actions.pod:1165
7976 msgid ""
7977 "If the destination is a device, it must be as large or larger than the "
7978 "source file or device, otherwise the copy will fail.  This command cannot do "
7979 "partial copies (see C<guestfs_copy_size>)."
7980 msgstr ""
7981
7982 #. type: =head2
7983 #: ../src/guestfs-actions.pod:1173
7984 msgid "guestfs_df"
7985 msgstr ""
7986
7987 #. type: verbatim
7988 #: ../src/guestfs-actions.pod:1175
7989 #, no-wrap
7990 msgid ""
7991 " char *\n"
7992 " guestfs_df (guestfs_h *g);\n"
7993 "\n"
7994 msgstr ""
7995
7996 #. type: textblock
7997 #: ../src/guestfs-actions.pod:1178 ../fish/guestfish-actions.pod:791
7998 msgid "This command runs the C<df> command to report disk space used."
7999 msgstr ""
8000
8001 #. type: textblock
8002 #: ../src/guestfs-actions.pod:1180 ../src/guestfs-actions.pod:1197
8003 msgid ""
8004 "This command is mostly useful for interactive sessions.  It is I<not> "
8005 "intended that you try to parse the output string.  Use C<guestfs_statvfs> "
8006 "from programs."
8007 msgstr ""
8008
8009 #. type: textblock
8010 #: ../src/guestfs-actions.pod:1187 ../src/guestfs-actions.pod:1204
8011 #: ../src/guestfs-actions.pod:1322 ../src/guestfs-actions.pod:2286
8012 #: ../src/guestfs-actions.pod:2310 ../src/guestfs-actions.pod:2378
8013 #: ../src/guestfs-actions.pod:4265 ../src/guestfs-actions.pod:4740
8014 #: ../src/guestfs-actions.pod:6551 ../src/guestfs-actions.pod:6575
8015 #: ../src/guestfs-actions.pod:7193 ../src/guestfs-actions.pod:7206
8016 #: ../src/guestfs-actions.pod:7219
8017 msgid "(Added in 1.0.54)"
8018 msgstr ""
8019
8020 #. type: =head2
8021 #: ../src/guestfs-actions.pod:1189
8022 msgid "guestfs_df_h"
8023 msgstr ""
8024
8025 #. type: verbatim
8026 #: ../src/guestfs-actions.pod:1191
8027 #, no-wrap
8028 msgid ""
8029 " char *\n"
8030 " guestfs_df_h (guestfs_h *g);\n"
8031 "\n"
8032 msgstr ""
8033
8034 #. type: textblock
8035 #: ../src/guestfs-actions.pod:1194 ../fish/guestfish-actions.pod:801
8036 msgid ""
8037 "This command runs the C<df -h> command to report disk space used in human-"
8038 "readable format."
8039 msgstr ""
8040
8041 #. type: =head2
8042 #: ../src/guestfs-actions.pod:1206
8043 msgid "guestfs_dmesg"
8044 msgstr ""
8045
8046 #. type: verbatim
8047 #: ../src/guestfs-actions.pod:1208
8048 #, no-wrap
8049 msgid ""
8050 " char *\n"
8051 " guestfs_dmesg (guestfs_h *g);\n"
8052 "\n"
8053 msgstr ""
8054
8055 #. type: textblock
8056 #: ../src/guestfs-actions.pod:1211 ../fish/guestfish-actions.pod:812
8057 msgid ""
8058 "This returns the kernel messages (C<dmesg> output) from the guest kernel.  "
8059 "This is sometimes useful for extended debugging of problems."
8060 msgstr ""
8061
8062 #. type: textblock
8063 #: ../src/guestfs-actions.pod:1215
8064 msgid ""
8065 "Another way to get the same information is to enable verbose messages with "
8066 "C<guestfs_set_verbose> or by setting the environment variable "
8067 "C<LIBGUESTFS_DEBUG=1> before running the program."
8068 msgstr ""
8069
8070 #. type: =head2
8071 #: ../src/guestfs-actions.pod:1225
8072 msgid "guestfs_download"
8073 msgstr ""
8074
8075 #. type: verbatim
8076 #: ../src/guestfs-actions.pod:1227
8077 #, no-wrap
8078 msgid ""
8079 " int\n"
8080 " guestfs_download (guestfs_h *g,\n"
8081 "                   const char *remotefilename,\n"
8082 "                   const char *filename);\n"
8083 "\n"
8084 msgstr ""
8085
8086 #. type: textblock
8087 #: ../src/guestfs-actions.pod:1232 ../src/guestfs-actions.pod:1257
8088 #: ../fish/guestfish-actions.pod:825 ../fish/guestfish-actions.pod:838
8089 msgid ""
8090 "Download file C<remotefilename> and save it as C<filename> on the local "
8091 "machine."
8092 msgstr ""
8093
8094 #. type: textblock
8095 #: ../src/guestfs-actions.pod:1235 ../src/guestfs-actions.pod:6807
8096 #: ../fish/guestfish-actions.pod:828 ../fish/guestfish-actions.pod:4582
8097 msgid "C<filename> can also be a named pipe."
8098 msgstr ""
8099
8100 #. type: textblock
8101 #: ../src/guestfs-actions.pod:1237
8102 msgid "See also C<guestfs_upload>, C<guestfs_cat>."
8103 msgstr ""
8104
8105 #. type: =head2
8106 #: ../src/guestfs-actions.pod:1248
8107 msgid "guestfs_download_offset"
8108 msgstr ""
8109
8110 #. type: verbatim
8111 #: ../src/guestfs-actions.pod:1250
8112 #, no-wrap
8113 msgid ""
8114 " int\n"
8115 " guestfs_download_offset (guestfs_h *g,\n"
8116 "                          const char *remotefilename,\n"
8117 "                          const char *filename,\n"
8118 "                          int64_t offset,\n"
8119 "                          int64_t size);\n"
8120 "\n"
8121 msgstr ""
8122
8123 #. type: textblock
8124 #: ../src/guestfs-actions.pod:1260 ../fish/guestfish-actions.pod:841
8125 msgid ""
8126 "C<remotefilename> is read for C<size> bytes starting at C<offset> (this "
8127 "region must be within the file or device)."
8128 msgstr ""
8129
8130 #. type: textblock
8131 #: ../src/guestfs-actions.pod:1263
8132 msgid ""
8133 "Note that there is no limit on the amount of data that can be downloaded "
8134 "with this call, unlike with C<guestfs_pread>, and this call always reads the "
8135 "full amount unless an error occurs."
8136 msgstr ""
8137
8138 #. type: textblock
8139 #: ../src/guestfs-actions.pod:1268
8140 msgid "See also C<guestfs_download>, C<guestfs_pread>."
8141 msgstr ""
8142
8143 #. type: textblock
8144 #: ../src/guestfs-actions.pod:1277 ../src/guestfs-actions.pod:6852
8145 msgid "(Added in 1.5.17)"
8146 msgstr ""
8147
8148 #. type: =head2
8149 #: ../src/guestfs-actions.pod:1279
8150 msgid "guestfs_drop_caches"
8151 msgstr ""
8152
8153 #. type: verbatim
8154 #: ../src/guestfs-actions.pod:1281
8155 #, no-wrap
8156 msgid ""
8157 " int\n"
8158 " guestfs_drop_caches (guestfs_h *g,\n"
8159 "                      int whattodrop);\n"
8160 "\n"
8161 msgstr ""
8162
8163 #. type: textblock
8164 #: ../src/guestfs-actions.pod:1285 ../fish/guestfish-actions.pod:857
8165 msgid ""
8166 "This instructs the guest kernel to drop its page cache, and/or dentries and "
8167 "inode caches.  The parameter C<whattodrop> tells the kernel what precisely "
8168 "to drop, see L<http://linux-mm.org/Drop_Caches>"
8169 msgstr ""
8170
8171 #. type: textblock
8172 #: ../src/guestfs-actions.pod:1290 ../fish/guestfish-actions.pod:862
8173 msgid "Setting C<whattodrop> to 3 should drop everything."
8174 msgstr ""
8175
8176 #. type: textblock
8177 #: ../src/guestfs-actions.pod:1292 ../fish/guestfish-actions.pod:864
8178 msgid ""
8179 "This automatically calls L<sync(2)> before the operation, so that the "
8180 "maximum guest memory is freed."
8181 msgstr ""
8182
8183 #. type: =head2
8184 #: ../src/guestfs-actions.pod:1299
8185 msgid "guestfs_du"
8186 msgstr ""
8187
8188 #. type: verbatim
8189 #: ../src/guestfs-actions.pod:1301
8190 #, no-wrap
8191 msgid ""
8192 " int64_t\n"
8193 " guestfs_du (guestfs_h *g,\n"
8194 "             const char *path);\n"
8195 "\n"
8196 msgstr ""
8197
8198 #. type: textblock
8199 #: ../src/guestfs-actions.pod:1305 ../fish/guestfish-actions.pod:871
8200 msgid ""
8201 "This command runs the C<du -s> command to estimate file space usage for "
8202 "C<path>."
8203 msgstr ""
8204
8205 #. type: textblock
8206 #: ../src/guestfs-actions.pod:1308 ../fish/guestfish-actions.pod:874
8207 msgid ""
8208 "C<path> can be a file or a directory.  If C<path> is a directory then the "
8209 "estimate includes the contents of the directory and all subdirectories "
8210 "(recursively)."
8211 msgstr ""
8212
8213 #. type: textblock
8214 #: ../src/guestfs-actions.pod:1312 ../fish/guestfish-actions.pod:878
8215 msgid ""
8216 "The result is the estimated size in I<kilobytes> (ie. units of 1024 bytes)."
8217 msgstr ""
8218
8219 #. type: =head2
8220 #: ../src/guestfs-actions.pod:1324
8221 msgid "guestfs_e2fsck_f"
8222 msgstr ""
8223
8224 #. type: verbatim
8225 #: ../src/guestfs-actions.pod:1326
8226 #, no-wrap
8227 msgid ""
8228 " int\n"
8229 " guestfs_e2fsck_f (guestfs_h *g,\n"
8230 "                   const char *device);\n"
8231 "\n"
8232 msgstr ""
8233
8234 #. type: textblock
8235 #: ../src/guestfs-actions.pod:1330 ../fish/guestfish-actions.pod:885
8236 msgid ""
8237 "This runs C<e2fsck -p -f device>, ie. runs the ext2/ext3 filesystem checker "
8238 "on C<device>, noninteractively (C<-p>), even if the filesystem appears to be "
8239 "clean (C<-f>)."
8240 msgstr ""
8241
8242 #. type: textblock
8243 #: ../src/guestfs-actions.pod:1334
8244 msgid ""
8245 "This command is only needed because of C<guestfs_resize2fs> (q.v.).  "
8246 "Normally you should use C<guestfs_fsck>."
8247 msgstr ""
8248
8249 #. type: textblock
8250 #: ../src/guestfs-actions.pod:1339
8251 msgid "(Added in 1.0.29)"
8252 msgstr ""
8253
8254 #. type: =head2
8255 #: ../src/guestfs-actions.pod:1341
8256 msgid "guestfs_echo_daemon"
8257 msgstr ""
8258
8259 #. type: verbatim
8260 #: ../src/guestfs-actions.pod:1343
8261 #, no-wrap
8262 msgid ""
8263 " char *\n"
8264 " guestfs_echo_daemon (guestfs_h *g,\n"
8265 "                      char *const *words);\n"
8266 "\n"
8267 msgstr ""
8268
8269 #. type: textblock
8270 #: ../src/guestfs-actions.pod:1347 ../fish/guestfish-actions.pod:896
8271 msgid ""
8272 "This command concatenates the list of C<words> passed with single spaces "
8273 "between them and returns the resulting string."
8274 msgstr ""
8275
8276 #. type: textblock
8277 #: ../src/guestfs-actions.pod:1350 ../fish/guestfish-actions.pod:899
8278 msgid "You can use this command to test the connection through to the daemon."
8279 msgstr ""
8280
8281 #. type: textblock
8282 #: ../src/guestfs-actions.pod:1352
8283 msgid "See also C<guestfs_ping_daemon>."
8284 msgstr ""
8285
8286 #. type: textblock
8287 #: ../src/guestfs-actions.pod:1357 ../src/guestfs-actions.pod:2094
8288 #: ../src/guestfs-actions.pod:6051
8289 msgid "(Added in 1.0.69)"
8290 msgstr ""
8291
8292 #. type: =head2
8293 #: ../src/guestfs-actions.pod:1359
8294 msgid "guestfs_egrep"
8295 msgstr ""
8296
8297 #. type: verbatim
8298 #: ../src/guestfs-actions.pod:1361
8299 #, no-wrap
8300 msgid ""
8301 " char **\n"
8302 " guestfs_egrep (guestfs_h *g,\n"
8303 "                const char *regex,\n"
8304 "                const char *path);\n"
8305 "\n"
8306 msgstr ""
8307
8308 #. type: textblock
8309 #: ../src/guestfs-actions.pod:1366 ../fish/guestfish-actions.pod:907
8310 msgid ""
8311 "This calls the external C<egrep> program and returns the matching lines."
8312 msgstr ""
8313
8314 #. type: textblock
8315 #: ../src/guestfs-actions.pod:1376 ../src/guestfs-actions.pod:1395
8316 #: ../src/guestfs-actions.pod:1452 ../src/guestfs-actions.pod:1498
8317 #: ../src/guestfs-actions.pod:1517 ../src/guestfs-actions.pod:2224
8318 #: ../src/guestfs-actions.pod:2243 ../src/guestfs-actions.pod:2399
8319 #: ../src/guestfs-actions.pod:2412 ../src/guestfs-actions.pod:2427
8320 #: ../src/guestfs-actions.pod:2473 ../src/guestfs-actions.pod:2495
8321 #: ../src/guestfs-actions.pod:2508 ../src/guestfs-actions.pod:3648
8322 #: ../src/guestfs-actions.pod:3662 ../src/guestfs-actions.pod:3675
8323 #: ../src/guestfs-actions.pod:3689 ../src/guestfs-actions.pod:4675
8324 #: ../src/guestfs-actions.pod:5551 ../src/guestfs-actions.pod:5600
8325 #: ../src/guestfs-actions.pod:6419 ../src/guestfs-actions.pod:6431
8326 #: ../src/guestfs-actions.pod:6444 ../src/guestfs-actions.pod:6457
8327 #: ../src/guestfs-actions.pod:6479 ../src/guestfs-actions.pod:6492
8328 #: ../src/guestfs-actions.pod:6505 ../src/guestfs-actions.pod:6518
8329 #: ../src/guestfs-actions.pod:7289 ../src/guestfs-actions.pod:7308
8330 #: ../src/guestfs-actions.pod:7393 ../src/guestfs-actions.pod:7412
8331 #: ../src/guestfs-actions.pod:7458 ../src/guestfs-actions.pod:7477
8332 msgid "(Added in 1.0.66)"
8333 msgstr ""
8334
8335 #. type: =head2
8336 #: ../src/guestfs-actions.pod:1378
8337 msgid "guestfs_egrepi"
8338 msgstr ""
8339
8340 #. type: verbatim
8341 #: ../src/guestfs-actions.pod:1380
8342 #, no-wrap
8343 msgid ""
8344 " char **\n"
8345 " guestfs_egrepi (guestfs_h *g,\n"
8346 "                 const char *regex,\n"
8347 "                 const char *path);\n"
8348 "\n"
8349 msgstr ""
8350
8351 #. type: textblock
8352 #: ../src/guestfs-actions.pod:1385 ../fish/guestfish-actions.pod:917
8353 msgid ""
8354 "This calls the external C<egrep -i> program and returns the matching lines."
8355 msgstr ""
8356
8357 #. type: =head2
8358 #: ../src/guestfs-actions.pod:1397
8359 msgid "guestfs_equal"
8360 msgstr ""
8361
8362 #. type: verbatim
8363 #: ../src/guestfs-actions.pod:1399
8364 #, no-wrap
8365 msgid ""
8366 " int\n"
8367 " guestfs_equal (guestfs_h *g,\n"
8368 "                const char *file1,\n"
8369 "                const char *file2);\n"
8370 "\n"
8371 msgstr ""
8372
8373 #. type: textblock
8374 #: ../src/guestfs-actions.pod:1404 ../fish/guestfish-actions.pod:927
8375 msgid ""
8376 "This compares the two files C<file1> and C<file2> and returns true if their "
8377 "content is exactly equal, or false otherwise."
8378 msgstr ""
8379
8380 #. type: textblock
8381 #: ../src/guestfs-actions.pod:1407 ../fish/guestfish-actions.pod:930
8382 msgid "The external L<cmp(1)> program is used for the comparison."
8383 msgstr ""
8384
8385 #. type: =head2
8386 #: ../src/guestfs-actions.pod:1413
8387 msgid "guestfs_exists"
8388 msgstr ""
8389
8390 #. type: verbatim
8391 #: ../src/guestfs-actions.pod:1415
8392 #, no-wrap
8393 msgid ""
8394 " int\n"
8395 " guestfs_exists (guestfs_h *g,\n"
8396 "                 const char *path);\n"
8397 "\n"
8398 msgstr ""
8399
8400 #. type: textblock
8401 #: ../src/guestfs-actions.pod:1419 ../fish/guestfish-actions.pod:936
8402 msgid ""
8403 "This returns C<true> if and only if there is a file, directory (or anything) "
8404 "with the given C<path> name."
8405 msgstr ""
8406
8407 #. type: textblock
8408 #: ../src/guestfs-actions.pod:1422
8409 msgid "See also C<guestfs_is_file>, C<guestfs_is_dir>, C<guestfs_stat>."
8410 msgstr ""
8411
8412 #. type: =head2
8413 #: ../src/guestfs-actions.pod:1428
8414 msgid "guestfs_fallocate"
8415 msgstr ""
8416
8417 #. type: verbatim
8418 #: ../src/guestfs-actions.pod:1430
8419 #, no-wrap
8420 msgid ""
8421 " int\n"
8422 " guestfs_fallocate (guestfs_h *g,\n"
8423 "                    const char *path,\n"
8424 "                    int len);\n"
8425 "\n"
8426 msgstr ""
8427
8428 #. type: textblock
8429 #: ../src/guestfs-actions.pod:1435 ../src/guestfs-actions.pod:1461
8430 #: ../fish/guestfish-actions.pod:945 ../fish/guestfish-actions.pod:964
8431 msgid ""
8432 "This command preallocates a file (containing zero bytes) named C<path> of "
8433 "size C<len> bytes.  If the file exists already, it is overwritten."
8434 msgstr ""
8435
8436 #. type: textblock
8437 #: ../src/guestfs-actions.pod:1439 ../fish/guestfish-actions.pod:949
8438 msgid ""
8439 "Do not confuse this with the guestfish-specific C<alloc> command which "
8440 "allocates a file in the host and attaches it as a device."
8441 msgstr ""
8442
8443 #. type: textblock
8444 #: ../src/guestfs-actions.pod:1445 ../fish/guestfish-actions.pod:953
8445 msgid ""
8446 "This function is deprecated.  In new code, use the C<fallocate64> call "
8447 "instead."
8448 msgstr ""
8449
8450 #. type: =head2
8451 #: ../src/guestfs-actions.pod:1454
8452 msgid "guestfs_fallocate64"
8453 msgstr ""
8454
8455 #. type: verbatim
8456 #: ../src/guestfs-actions.pod:1456
8457 #, no-wrap
8458 msgid ""
8459 " int\n"
8460 " guestfs_fallocate64 (guestfs_h *g,\n"
8461 "                      const char *path,\n"
8462 "                      int64_t len);\n"
8463 "\n"
8464 msgstr ""
8465
8466 #. type: textblock
8467 #: ../src/guestfs-actions.pod:1465
8468 msgid ""
8469 "Note that this call allocates disk blocks for the file.  To create a sparse "
8470 "file use C<guestfs_truncate_size> instead."
8471 msgstr ""
8472
8473 #. type: textblock
8474 #: ../src/guestfs-actions.pod:1468
8475 msgid ""
8476 "The deprecated call C<guestfs_fallocate> does the same, but owing to an "
8477 "oversight it only allowed 30 bit lengths to be specified, effectively "
8478 "limiting the maximum size of files created through that call to 1GB."
8479 msgstr ""
8480
8481 #. type: textblock
8482 #: ../src/guestfs-actions.pod:1473 ../fish/guestfish-actions.pod:976
8483 msgid ""
8484 "Do not confuse this with the guestfish-specific C<alloc> and C<sparse> "
8485 "commands which create a file in the host and attach it as a device."
8486 msgstr ""
8487
8488 #. type: textblock
8489 #: ../src/guestfs-actions.pod:1479
8490 msgid "(Added in 1.3.17)"
8491 msgstr ""
8492
8493 #. type: =head2
8494 #: ../src/guestfs-actions.pod:1481
8495 msgid "guestfs_fgrep"
8496 msgstr ""
8497
8498 #. type: verbatim
8499 #: ../src/guestfs-actions.pod:1483
8500 #, no-wrap
8501 msgid ""
8502 " char **\n"
8503 " guestfs_fgrep (guestfs_h *g,\n"
8504 "                const char *pattern,\n"
8505 "                const char *path);\n"
8506 "\n"
8507 msgstr ""
8508
8509 #. type: textblock
8510 #: ../src/guestfs-actions.pod:1488 ../fish/guestfish-actions.pod:984
8511 msgid ""
8512 "This calls the external C<fgrep> program and returns the matching lines."
8513 msgstr ""
8514
8515 #. type: =head2
8516 #: ../src/guestfs-actions.pod:1500
8517 msgid "guestfs_fgrepi"
8518 msgstr ""
8519
8520 #. type: verbatim
8521 #: ../src/guestfs-actions.pod:1502
8522 #, no-wrap
8523 msgid ""
8524 " char **\n"
8525 " guestfs_fgrepi (guestfs_h *g,\n"
8526 "                 const char *pattern,\n"
8527 "                 const char *path);\n"
8528 "\n"
8529 msgstr ""
8530
8531 #. type: textblock
8532 #: ../src/guestfs-actions.pod:1507 ../fish/guestfish-actions.pod:994
8533 msgid ""
8534 "This calls the external C<fgrep -i> program and returns the matching lines."
8535 msgstr ""
8536
8537 #. type: =head2
8538 #: ../src/guestfs-actions.pod:1519
8539 msgid "guestfs_file"
8540 msgstr ""
8541
8542 #. type: verbatim
8543 #: ../src/guestfs-actions.pod:1521
8544 #, no-wrap
8545 msgid ""
8546 " char *\n"
8547 " guestfs_file (guestfs_h *g,\n"
8548 "               const char *path);\n"
8549 "\n"
8550 msgstr ""
8551
8552 #. type: textblock
8553 #: ../src/guestfs-actions.pod:1525 ../fish/guestfish-actions.pod:1004
8554 msgid ""
8555 "This call uses the standard L<file(1)> command to determine the type or "
8556 "contents of the file."
8557 msgstr ""
8558
8559 #. type: textblock
8560 #: ../src/guestfs-actions.pod:1528 ../fish/guestfish-actions.pod:1007
8561 msgid ""
8562 "This call will also transparently look inside various types of compressed "
8563 "file."
8564 msgstr ""
8565
8566 #. type: textblock
8567 #: ../src/guestfs-actions.pod:1531 ../fish/guestfish-actions.pod:1010
8568 msgid ""
8569 "The exact command which runs is C<file -zb path>.  Note in particular that "
8570 "the filename is not prepended to the output (the C<-b> option)."
8571 msgstr ""
8572
8573 #. type: textblock
8574 #: ../src/guestfs-actions.pod:1535
8575 msgid ""
8576 "This command can also be used on C</dev/> devices (and partitions, LV "
8577 "names).  You can for example use this to determine if a device contains a "
8578 "filesystem, although it's usually better to use C<guestfs_vfs_type>."
8579 msgstr ""
8580
8581 #. type: textblock
8582 #: ../src/guestfs-actions.pod:1540 ../fish/guestfish-actions.pod:1019
8583 msgid ""
8584 "If the C<path> does not begin with C</dev/> then this command only works for "
8585 "the content of regular files.  For other file types (directory, symbolic "
8586 "link etc) it will just return the string C<directory> etc."
8587 msgstr ""
8588
8589 #. type: =head2
8590 #: ../src/guestfs-actions.pod:1550
8591 msgid "guestfs_file_architecture"
8592 msgstr ""
8593
8594 #. type: verbatim
8595 #: ../src/guestfs-actions.pod:1552
8596 #, no-wrap
8597 msgid ""
8598 " char *\n"
8599 " guestfs_file_architecture (guestfs_h *g,\n"
8600 "                            const char *filename);\n"
8601 "\n"
8602 msgstr ""
8603
8604 #. type: textblock
8605 #: ../src/guestfs-actions.pod:1556 ../fish/guestfish-actions.pod:1028
8606 msgid ""
8607 "This detects the architecture of the binary C<filename>, and returns it if "
8608 "known."
8609 msgstr ""
8610
8611 #. type: textblock
8612 #: ../src/guestfs-actions.pod:1559 ../fish/guestfish-actions.pod:1031
8613 msgid "Currently defined architectures are:"
8614 msgstr ""
8615
8616 #. type: =item
8617 #: ../src/guestfs-actions.pod:1563 ../fish/guestfish-actions.pod:1035
8618 msgid "\"i386\""
8619 msgstr "\"i386\""
8620
8621 #. type: textblock
8622 #: ../src/guestfs-actions.pod:1565 ../fish/guestfish-actions.pod:1037
8623 msgid ""
8624 "This string is returned for all 32 bit i386, i486, i586, i686 binaries "
8625 "irrespective of the precise processor requirements of the binary."
8626 msgstr ""
8627
8628 #. type: =item
8629 #: ../src/guestfs-actions.pod:1568 ../fish/guestfish-actions.pod:1040
8630 msgid "\"x86_64\""
8631 msgstr "\"x86_64\""
8632
8633 #. type: textblock
8634 #: ../src/guestfs-actions.pod:1570 ../fish/guestfish-actions.pod:1042
8635 msgid "64 bit x86-64."
8636 msgstr ""
8637
8638 #. type: =item
8639 #: ../src/guestfs-actions.pod:1572 ../fish/guestfish-actions.pod:1044
8640 msgid "\"sparc\""
8641 msgstr ""
8642
8643 #. type: textblock
8644 #: ../src/guestfs-actions.pod:1574 ../fish/guestfish-actions.pod:1046
8645 msgid "32 bit SPARC."
8646 msgstr ""
8647
8648 #. type: =item
8649 #: ../src/guestfs-actions.pod:1576 ../fish/guestfish-actions.pod:1048
8650 msgid "\"sparc64\""
8651 msgstr ""
8652
8653 #. type: textblock
8654 #: ../src/guestfs-actions.pod:1578 ../fish/guestfish-actions.pod:1050
8655 msgid "64 bit SPARC V9 and above."
8656 msgstr ""
8657
8658 #. type: =item
8659 #: ../src/guestfs-actions.pod:1580 ../fish/guestfish-actions.pod:1052
8660 msgid "\"ia64\""
8661 msgstr "\"ia64\""
8662
8663 #. type: textblock
8664 #: ../src/guestfs-actions.pod:1582 ../fish/guestfish-actions.pod:1054
8665 msgid "Intel Itanium."
8666 msgstr "Intel Itanium."
8667
8668 #. type: =item
8669 #: ../src/guestfs-actions.pod:1584 ../fish/guestfish-actions.pod:1056
8670 msgid "\"ppc\""
8671 msgstr ""
8672
8673 #. type: textblock
8674 #: ../src/guestfs-actions.pod:1586 ../fish/guestfish-actions.pod:1058
8675 msgid "32 bit Power PC."
8676 msgstr ""
8677
8678 #. type: =item
8679 #: ../src/guestfs-actions.pod:1588 ../fish/guestfish-actions.pod:1060
8680 msgid "\"ppc64\""
8681 msgstr ""
8682
8683 #. type: textblock
8684 #: ../src/guestfs-actions.pod:1590 ../fish/guestfish-actions.pod:1062
8685 msgid "64 bit Power PC."
8686 msgstr ""
8687
8688 #. type: textblock
8689 #: ../src/guestfs-actions.pod:1594 ../fish/guestfish-actions.pod:1066
8690 msgid "Libguestfs may return other architecture strings in future."
8691 msgstr ""
8692
8693 #. type: textblock
8694 #: ../src/guestfs-actions.pod:1596 ../fish/guestfish-actions.pod:1068
8695 msgid "The function works on at least the following types of files:"
8696 msgstr ""
8697
8698 #. type: textblock
8699 #: ../src/guestfs-actions.pod:1602 ../fish/guestfish-actions.pod:1074
8700 msgid "many types of Un*x and Linux binary"
8701 msgstr ""
8702
8703 #. type: textblock
8704 #: ../src/guestfs-actions.pod:1606 ../fish/guestfish-actions.pod:1078
8705 msgid "many types of Un*x and Linux shared library"
8706 msgstr ""
8707
8708 #. type: textblock
8709 #: ../src/guestfs-actions.pod:1610 ../fish/guestfish-actions.pod:1082
8710 msgid "Windows Win32 and Win64 binaries"
8711 msgstr ""
8712
8713 #. type: textblock
8714 #: ../src/guestfs-actions.pod:1614 ../fish/guestfish-actions.pod:1086
8715 msgid "Windows Win32 and Win64 DLLs"
8716 msgstr ""
8717
8718 #. type: textblock
8719 #: ../src/guestfs-actions.pod:1616 ../fish/guestfish-actions.pod:1088
8720 msgid "Win32 binaries and DLLs return C<i386>."
8721 msgstr ""
8722
8723 #. type: textblock
8724 #: ../src/guestfs-actions.pod:1618 ../fish/guestfish-actions.pod:1090
8725 msgid "Win64 binaries and DLLs return C<x86_64>."
8726 msgstr ""
8727
8728 #. type: textblock
8729 #: ../src/guestfs-actions.pod:1622 ../fish/guestfish-actions.pod:1094
8730 msgid "Linux kernel modules"
8731 msgstr ""
8732
8733 #. type: textblock
8734 #: ../src/guestfs-actions.pod:1626 ../fish/guestfish-actions.pod:1098
8735 msgid "Linux new-style initrd images"
8736 msgstr ""
8737
8738 #. type: textblock
8739 #: ../src/guestfs-actions.pod:1630 ../fish/guestfish-actions.pod:1102
8740 msgid "some non-x86 Linux vmlinuz kernels"
8741 msgstr ""
8742
8743 #. type: textblock
8744 #: ../src/guestfs-actions.pod:1634 ../fish/guestfish-actions.pod:1106
8745 msgid "What it can't do currently:"
8746 msgstr ""
8747
8748 #. type: textblock
8749 #: ../src/guestfs-actions.pod:1640 ../fish/guestfish-actions.pod:1112
8750 msgid "static libraries (libfoo.a)"
8751 msgstr ""
8752
8753 #. type: textblock
8754 #: ../src/guestfs-actions.pod:1644 ../fish/guestfish-actions.pod:1116
8755 msgid "Linux old-style initrd as compressed ext2 filesystem (RHEL 3)"
8756 msgstr ""
8757
8758 #. type: textblock
8759 #: ../src/guestfs-actions.pod:1648 ../fish/guestfish-actions.pod:1120
8760 msgid "x86 Linux vmlinuz kernels"
8761 msgstr ""
8762
8763 #. type: textblock
8764 #: ../src/guestfs-actions.pod:1650 ../fish/guestfish-actions.pod:1122
8765 msgid ""
8766 "x86 vmlinuz images (bzImage format) consist of a mix of 16-, 32- and "
8767 "compressed code, and are horribly hard to unpack.  If you want to find the "
8768 "architecture of a kernel, use the architecture of the associated initrd or "
8769 "kernel module(s) instead."
8770 msgstr ""
8771
8772 #. type: textblock
8773 #: ../src/guestfs-actions.pod:1660 ../src/guestfs-actions.pod:1823
8774 #: ../src/guestfs-actions.pod:1840 ../src/guestfs-actions.pod:2531
8775 #: ../src/guestfs-actions.pod:2616 ../src/guestfs-actions.pod:2686
8776 #: ../src/guestfs-actions.pod:2774 ../src/guestfs-actions.pod:2795
8777 #: ../src/guestfs-actions.pod:2838 ../src/guestfs-actions.pod:2922
8778 #: ../src/guestfs-actions.pod:3019 ../src/guestfs-actions.pod:3266
8779 #: ../src/guestfs-actions.pod:3398
8780 msgid "(Added in 1.5.3)"
8781 msgstr ""
8782
8783 #. type: =head2
8784 #: ../src/guestfs-actions.pod:1662
8785 msgid "guestfs_filesize"
8786 msgstr ""
8787
8788 #. type: verbatim
8789 #: ../src/guestfs-actions.pod:1664
8790 #, no-wrap
8791 msgid ""
8792 " int64_t\n"
8793 " guestfs_filesize (guestfs_h *g,\n"
8794 "                   const char *file);\n"
8795 "\n"
8796 msgstr ""
8797
8798 #. type: textblock
8799 #: ../src/guestfs-actions.pod:1668 ../fish/guestfish-actions.pod:1133
8800 msgid "This command returns the size of C<file> in bytes."
8801 msgstr ""
8802
8803 #. type: textblock
8804 #: ../src/guestfs-actions.pod:1670
8805 msgid ""
8806 "To get other stats about a file, use C<guestfs_stat>, C<guestfs_lstat>, "
8807 "C<guestfs_is_dir>, C<guestfs_is_file> etc.  To get the size of block "
8808 "devices, use C<guestfs_blockdev_getsize64>."
8809 msgstr ""
8810
8811 #. type: textblock
8812 #: ../src/guestfs-actions.pod:1676
8813 msgid "(Added in 1.0.82)"
8814 msgstr ""
8815
8816 #. type: =head2
8817 #: ../src/guestfs-actions.pod:1678
8818 msgid "guestfs_fill"
8819 msgstr ""
8820
8821 #. type: verbatim
8822 #: ../src/guestfs-actions.pod:1680
8823 #, no-wrap
8824 msgid ""
8825 " int\n"
8826 " guestfs_fill (guestfs_h *g,\n"
8827 "               int c,\n"
8828 "               int len,\n"
8829 "               const char *path);\n"
8830 "\n"
8831 msgstr ""
8832
8833 #. type: textblock
8834 #: ../src/guestfs-actions.pod:1686 ../fish/guestfish-actions.pod:1143
8835 msgid ""
8836 "This command creates a new file called C<path>.  The initial content of the "
8837 "file is C<len> octets of C<c>, where C<c> must be a number in the range C<"
8838 "[0..255]>."
8839 msgstr ""
8840
8841 #. type: textblock
8842 #: ../src/guestfs-actions.pod:1690
8843 msgid ""
8844 "To fill a file with zero bytes (sparsely), it is much more efficient to use "
8845 "C<guestfs_truncate_size>.  To create a file with a pattern of repeating "
8846 "bytes use C<guestfs_fill_pattern>."
8847 msgstr ""
8848
8849 #. type: textblock
8850 #: ../src/guestfs-actions.pod:1702
8851 msgid "(Added in 1.0.79)"
8852 msgstr ""
8853
8854 #. type: =head2
8855 #: ../src/guestfs-actions.pod:1704
8856 msgid "guestfs_fill_pattern"
8857 msgstr ""
8858
8859 #. type: verbatim
8860 #: ../src/guestfs-actions.pod:1706
8861 #, no-wrap
8862 msgid ""
8863 " int\n"
8864 " guestfs_fill_pattern (guestfs_h *g,\n"
8865 "                       const char *pattern,\n"
8866 "                       int len,\n"
8867 "                       const char *path);\n"
8868 "\n"
8869 msgstr ""
8870
8871 #. type: textblock
8872 #: ../src/guestfs-actions.pod:1712
8873 msgid ""
8874 "This function is like C<guestfs_fill> except that it creates a new file of "
8875 "length C<len> containing the repeating pattern of bytes in C<pattern>.  The "
8876 "pattern is truncated if necessary to ensure the length of the file is "
8877 "exactly C<len> bytes."
8878 msgstr ""
8879
8880 #. type: textblock
8881 #: ../src/guestfs-actions.pod:1724
8882 msgid "(Added in 1.3.12)"
8883 msgstr ""
8884
8885 #. type: =head2
8886 #: ../src/guestfs-actions.pod:1726
8887 msgid "guestfs_find"
8888 msgstr ""
8889
8890 #. type: verbatim
8891 #: ../src/guestfs-actions.pod:1728
8892 #, no-wrap
8893 msgid ""
8894 " char **\n"
8895 " guestfs_find (guestfs_h *g,\n"
8896 "               const char *directory);\n"
8897 "\n"
8898 msgstr ""
8899
8900 #. type: textblock
8901 #: ../src/guestfs-actions.pod:1732 ../fish/guestfish-actions.pod:1165
8902 msgid ""
8903 "This command lists out all files and directories, recursively, starting at "
8904 "C<directory>.  It is essentially equivalent to running the shell command "
8905 "C<find directory -print> but some post-processing happens on the output, "
8906 "described below."
8907 msgstr ""
8908
8909 #. type: textblock
8910 #: ../src/guestfs-actions.pod:1737 ../fish/guestfish-actions.pod:1170
8911 msgid ""
8912 "This returns a list of strings I<without any prefix>.  Thus if the directory "
8913 "structure was:"
8914 msgstr ""
8915
8916 #. type: verbatim
8917 #: ../src/guestfs-actions.pod:1740 ../fish/guestfish-actions.pod:1173
8918 #, no-wrap
8919 msgid ""
8920 " /tmp/a\n"
8921 " /tmp/b\n"
8922 " /tmp/c/d\n"
8923 "\n"
8924 msgstr ""
8925
8926 #. type: textblock
8927 #: ../src/guestfs-actions.pod:1744
8928 msgid ""
8929 "then the returned list from C<guestfs_find> C</tmp> would be 4 elements:"
8930 msgstr ""
8931
8932 #. type: verbatim
8933 #: ../src/guestfs-actions.pod:1747 ../fish/guestfish-actions.pod:1180
8934 #, no-wrap
8935 msgid ""
8936 " a\n"
8937 " b\n"
8938 " c\n"
8939 " c/d\n"
8940 "\n"
8941 msgstr ""
8942
8943 #. type: textblock
8944 #: ../src/guestfs-actions.pod:1752 ../fish/guestfish-actions.pod:1185
8945 msgid "If C<directory> is not a directory, then this command returns an error."
8946 msgstr ""
8947
8948 #. type: textblock
8949 #: ../src/guestfs-actions.pod:1755 ../fish/guestfish-actions.pod:1188
8950 msgid "The returned list is sorted."
8951 msgstr ""
8952
8953 #. type: textblock
8954 #: ../src/guestfs-actions.pod:1757
8955 msgid "See also C<guestfs_find0>."
8956 msgstr ""
8957
8958 #. type: textblock
8959 #: ../src/guestfs-actions.pod:1766 ../src/guestfs-actions.pod:4092
8960 #: ../src/guestfs-actions.pod:5635
8961 msgid "(Added in 1.0.27)"
8962 msgstr ""
8963
8964 #. type: =head2
8965 #: ../src/guestfs-actions.pod:1768
8966 msgid "guestfs_find0"
8967 msgstr ""
8968
8969 #. type: verbatim
8970 #: ../src/guestfs-actions.pod:1770
8971 #, no-wrap
8972 msgid ""
8973 " int\n"
8974 " guestfs_find0 (guestfs_h *g,\n"
8975 "                const char *directory,\n"
8976 "                const char *files);\n"
8977 "\n"
8978 msgstr ""
8979
8980 #. type: textblock
8981 #: ../src/guestfs-actions.pod:1775 ../fish/guestfish-actions.pod:1199
8982 msgid ""
8983 "This command lists out all files and directories, recursively, starting at "
8984 "C<directory>, placing the resulting list in the external file called "
8985 "C<files>."
8986 msgstr ""
8987
8988 #. type: textblock
8989 #: ../src/guestfs-actions.pod:1779
8990 msgid ""
8991 "This command works the same way as C<guestfs_find> with the following "
8992 "exceptions:"
8993 msgstr ""
8994
8995 #. type: textblock
8996 #: ../src/guestfs-actions.pod:1786 ../fish/guestfish-actions.pod:1210
8997 msgid "The resulting list is written to an external file."
8998 msgstr ""
8999
9000 #. type: textblock
9001 #: ../src/guestfs-actions.pod:1790 ../fish/guestfish-actions.pod:1214
9002 msgid ""
9003 "Items (filenames) in the result are separated by C<\\0> characters.  See "
9004 "L<find(1)> option I<-print0>."
9005 msgstr ""
9006
9007 #. type: textblock
9008 #: ../src/guestfs-actions.pod:1795 ../fish/guestfish-actions.pod:1219
9009 msgid "This command is not limited in the number of names that it can return."
9010 msgstr ""
9011
9012 #. type: textblock
9013 #: ../src/guestfs-actions.pod:1800 ../fish/guestfish-actions.pod:1224
9014 msgid "The result list is not sorted."
9015 msgstr ""
9016
9017 #. type: textblock
9018 #: ../src/guestfs-actions.pod:1806
9019 msgid "(Added in 1.0.74)"
9020 msgstr ""
9021
9022 #. type: =head2
9023 #: ../src/guestfs-actions.pod:1808
9024 msgid "guestfs_findfs_label"
9025 msgstr ""
9026
9027 #. type: verbatim
9028 #: ../src/guestfs-actions.pod:1810
9029 #, no-wrap
9030 msgid ""
9031 " char *\n"
9032 " guestfs_findfs_label (guestfs_h *g,\n"
9033 "                       const char *label);\n"
9034 "\n"
9035 msgstr ""
9036
9037 #. type: textblock
9038 #: ../src/guestfs-actions.pod:1814 ../fish/guestfish-actions.pod:1234
9039 msgid ""
9040 "This command searches the filesystems and returns the one which has the "
9041 "given label.  An error is returned if no such filesystem can be found."
9042 msgstr ""
9043
9044 #. type: textblock
9045 #: ../src/guestfs-actions.pod:1818
9046 msgid "To find the label of a filesystem, use C<guestfs_vfs_label>."
9047 msgstr ""
9048
9049 #. type: =head2
9050 #: ../src/guestfs-actions.pod:1825
9051 msgid "guestfs_findfs_uuid"
9052 msgstr ""
9053
9054 #. type: verbatim
9055 #: ../src/guestfs-actions.pod:1827
9056 #, no-wrap
9057 msgid ""
9058 " char *\n"
9059 " guestfs_findfs_uuid (guestfs_h *g,\n"
9060 "                      const char *uuid);\n"
9061 "\n"
9062 msgstr ""
9063
9064 #. type: textblock
9065 #: ../src/guestfs-actions.pod:1831 ../fish/guestfish-actions.pod:1244
9066 msgid ""
9067 "This command searches the filesystems and returns the one which has the "
9068 "given UUID.  An error is returned if no such filesystem can be found."
9069 msgstr ""
9070
9071 #. type: textblock
9072 #: ../src/guestfs-actions.pod:1835
9073 msgid "To find the UUID of a filesystem, use C<guestfs_vfs_uuid>."
9074 msgstr ""
9075
9076 #. type: =head2
9077 #: ../src/guestfs-actions.pod:1842
9078 msgid "guestfs_fsck"
9079 msgstr ""
9080
9081 #. type: verbatim
9082 #: ../src/guestfs-actions.pod:1844
9083 #, no-wrap
9084 msgid ""
9085 " int\n"
9086 " guestfs_fsck (guestfs_h *g,\n"
9087 "               const char *fstype,\n"
9088 "               const char *device);\n"
9089 "\n"
9090 msgstr ""
9091
9092 #. type: textblock
9093 #: ../src/guestfs-actions.pod:1849 ../fish/guestfish-actions.pod:1254
9094 msgid ""
9095 "This runs the filesystem checker (fsck) on C<device> which should have "
9096 "filesystem type C<fstype>."
9097 msgstr ""
9098
9099 #. type: textblock
9100 #: ../src/guestfs-actions.pod:1852 ../fish/guestfish-actions.pod:1257
9101 msgid ""
9102 "The returned integer is the status.  See L<fsck(8)> for the list of status "
9103 "codes from C<fsck>."
9104 msgstr ""
9105
9106 #. type: textblock
9107 #: ../src/guestfs-actions.pod:1861 ../fish/guestfish-actions.pod:1266
9108 msgid "Multiple status codes can be summed together."
9109 msgstr ""
9110
9111 #. type: textblock
9112 #: ../src/guestfs-actions.pod:1865 ../fish/guestfish-actions.pod:1270
9113 msgid ""
9114 "A non-zero return code can mean \"success\", for example if errors have been "
9115 "corrected on the filesystem."
9116 msgstr ""
9117
9118 #. type: textblock
9119 #: ../src/guestfs-actions.pod:1870 ../fish/guestfish-actions.pod:1275
9120 msgid "Checking or repairing NTFS volumes is not supported (by linux-ntfs)."
9121 msgstr ""
9122
9123 #. type: textblock
9124 #: ../src/guestfs-actions.pod:1875 ../fish/guestfish-actions.pod:1280
9125 msgid ""
9126 "This command is entirely equivalent to running C<fsck -a -t fstype device>."
9127 msgstr ""
9128
9129 #. type: textblock
9130 #: ../src/guestfs-actions.pod:1879 ../src/guestfs-actions.pod:7331
9131 msgid "(Added in 1.0.16)"
9132 msgstr ""
9133
9134 #. type: =head2
9135 #: ../src/guestfs-actions.pod:1881
9136 msgid "guestfs_get_append"
9137 msgstr ""
9138
9139 #. type: verbatim
9140 #: ../src/guestfs-actions.pod:1883
9141 #, no-wrap
9142 msgid ""
9143 " const char *\n"
9144 " guestfs_get_append (guestfs_h *g);\n"
9145 "\n"
9146 msgstr ""
9147
9148 #. type: textblock
9149 #: ../src/guestfs-actions.pod:1886 ../fish/guestfish-actions.pod:1286
9150 msgid ""
9151 "Return the additional kernel options which are added to the guest kernel "
9152 "command line."
9153 msgstr ""
9154
9155 #. type: textblock
9156 #: ../src/guestfs-actions.pod:1889 ../fish/guestfish-actions.pod:1289
9157 msgid "If C<NULL> then no options are added."
9158 msgstr ""
9159
9160 #. type: textblock
9161 #: ../src/guestfs-actions.pod:1891
9162 msgid ""
9163 "This function returns a string which may be NULL.  There is no way to return "
9164 "an error from this function.  The string is owned by the guest handle and "
9165 "must I<not> be freed."
9166 msgstr ""
9167
9168 #. type: textblock
9169 #: ../src/guestfs-actions.pod:1895 ../src/guestfs-actions.pod:5313
9170 #: ../src/guestfs-actions.pod:5793 ../src/guestfs-actions.pod:6193
9171 #: ../src/guestfs-actions.pod:6212 ../src/guestfs-actions.pod:6228
9172 #: ../src/guestfs-actions.pod:6245 ../src/guestfs-actions.pod:7002
9173 #: ../src/guestfs-actions.pod:7020 ../src/guestfs-actions.pod:7374
9174 msgid "(Added in 1.0.26)"
9175 msgstr ""
9176
9177 #. type: =head2
9178 #: ../src/guestfs-actions.pod:1897
9179 msgid "guestfs_get_attach_method"
9180 msgstr ""
9181
9182 #. type: verbatim
9183 #: ../src/guestfs-actions.pod:1899
9184 #, no-wrap
9185 msgid ""
9186 " char *\n"
9187 " guestfs_get_attach_method (guestfs_h *g);\n"
9188 "\n"
9189 msgstr ""
9190
9191 #. type: textblock
9192 #: ../src/guestfs-actions.pod:1902
9193 msgid "Return the current attach method.  See C<guestfs_set_attach_method>."
9194 msgstr ""
9195
9196 #. type: =head2
9197 #: ../src/guestfs-actions.pod:1907
9198 msgid "guestfs_get_autosync"
9199 msgstr ""
9200
9201 #. type: verbatim
9202 #: ../src/guestfs-actions.pod:1909
9203 #, no-wrap
9204 msgid ""
9205 " int\n"
9206 " guestfs_get_autosync (guestfs_h *g);\n"
9207 "\n"
9208 msgstr ""
9209
9210 #. type: textblock
9211 #: ../src/guestfs-actions.pod:1912 ../fish/guestfish-actions.pod:1301
9212 msgid "Get the autosync flag."
9213 msgstr ""
9214
9215 #. type: =head2
9216 #: ../src/guestfs-actions.pod:1918
9217 msgid "guestfs_get_direct"
9218 msgstr ""
9219
9220 #. type: verbatim
9221 #: ../src/guestfs-actions.pod:1920
9222 #, no-wrap
9223 msgid ""
9224 " int\n"
9225 " guestfs_get_direct (guestfs_h *g);\n"
9226 "\n"
9227 msgstr ""
9228
9229 #. type: textblock
9230 #: ../src/guestfs-actions.pod:1923 ../fish/guestfish-actions.pod:1307
9231 msgid "Return the direct appliance mode flag."
9232 msgstr ""
9233
9234 #. type: textblock
9235 #: ../src/guestfs-actions.pod:1927 ../src/guestfs-actions.pod:5862
9236 msgid "(Added in 1.0.72)"
9237 msgstr ""
9238
9239 #. type: =head2
9240 #: ../src/guestfs-actions.pod:1929
9241 msgid "guestfs_get_e2label"
9242 msgstr ""
9243
9244 #. type: verbatim
9245 #: ../src/guestfs-actions.pod:1931
9246 #, no-wrap
9247 msgid ""
9248 " char *\n"
9249 " guestfs_get_e2label (guestfs_h *g,\n"
9250 "                      const char *device);\n"
9251 "\n"
9252 msgstr ""
9253
9254 #. type: textblock
9255 #: ../src/guestfs-actions.pod:1935 ../fish/guestfish-actions.pod:1313
9256 msgid ""
9257 "This returns the ext2/3/4 filesystem label of the filesystem on C<device>."
9258 msgstr ""
9259
9260 #. type: textblock
9261 #: ../src/guestfs-actions.pod:1941 ../fish/guestfish-actions.pod:1316
9262 msgid ""
9263 "This function is deprecated.  In new code, use the C<vfs_label> call instead."
9264 msgstr ""
9265
9266 #. type: textblock
9267 #: ../src/guestfs-actions.pod:1948 ../src/guestfs-actions.pod:1969
9268 #: ../src/guestfs-actions.pod:5880 ../src/guestfs-actions.pod:5899
9269 msgid "(Added in 1.0.15)"
9270 msgstr ""
9271
9272 #. type: =head2
9273 #: ../src/guestfs-actions.pod:1950
9274 msgid "guestfs_get_e2uuid"
9275 msgstr ""
9276
9277 #. type: verbatim
9278 #: ../src/guestfs-actions.pod:1952
9279 #, no-wrap
9280 msgid ""
9281 " char *\n"
9282 " guestfs_get_e2uuid (guestfs_h *g,\n"
9283 "                     const char *device);\n"
9284 "\n"
9285 msgstr ""
9286
9287 #. type: textblock
9288 #: ../src/guestfs-actions.pod:1956 ../fish/guestfish-actions.pod:1327
9289 msgid ""
9290 "This returns the ext2/3/4 filesystem UUID of the filesystem on C<device>."
9291 msgstr ""
9292
9293 #. type: textblock
9294 #: ../src/guestfs-actions.pod:1962 ../fish/guestfish-actions.pod:1330
9295 msgid ""
9296 "This function is deprecated.  In new code, use the C<vfs_uuid> call instead."
9297 msgstr ""
9298
9299 #. type: =head2
9300 #: ../src/guestfs-actions.pod:1971
9301 msgid "guestfs_get_memsize"
9302 msgstr ""
9303
9304 #. type: verbatim
9305 #: ../src/guestfs-actions.pod:1973
9306 #, no-wrap
9307 msgid ""
9308 " int\n"
9309 " guestfs_get_memsize (guestfs_h *g);\n"
9310 "\n"
9311 msgstr ""
9312
9313 #. type: textblock
9314 #: ../src/guestfs-actions.pod:1976 ../fish/guestfish-actions.pod:1341
9315 msgid ""
9316 "This gets the memory size in megabytes allocated to the qemu subprocess."
9317 msgstr ""
9318
9319 #. type: textblock
9320 #: ../src/guestfs-actions.pod:1979
9321 msgid ""
9322 "If C<guestfs_set_memsize> was not called on this handle, and if "
9323 "C<LIBGUESTFS_MEMSIZE> was not set, then this returns the compiled-in default "
9324 "value for memsize."
9325 msgstr ""
9326
9327 #. type: textblock
9328 #: ../src/guestfs-actions.pod:1983 ../src/guestfs-actions.pod:2064
9329 #: ../src/guestfs-actions.pod:5915 ../src/guestfs-actions.pod:6022
9330 #: ../fish/guestfish-actions.pod:1348 ../fish/guestfish-actions.pod:1399
9331 #: ../fish/guestfish-actions.pod:3985 ../fish/guestfish-actions.pod:4072
9332 msgid ""
9333 "For more information on the architecture of libguestfs, see L<guestfs(3)>."
9334 msgstr ""
9335
9336 #. type: textblock
9337 #: ../src/guestfs-actions.pod:1988 ../src/guestfs-actions.pod:4383
9338 #: ../src/guestfs-actions.pod:4580 ../src/guestfs-actions.pod:4599
9339 #: ../src/guestfs-actions.pod:4618 ../src/guestfs-actions.pod:4630
9340 #: ../src/guestfs-actions.pod:4647 ../src/guestfs-actions.pod:4660
9341 #: ../src/guestfs-actions.pod:5538 ../src/guestfs-actions.pod:5920
9342 #: ../src/guestfs-actions.pod:6167 ../src/guestfs-actions.pod:6768
9343 msgid "(Added in 1.0.55)"
9344 msgstr ""
9345
9346 #. type: =head2
9347 #: ../src/guestfs-actions.pod:1990
9348 msgid "guestfs_get_network"
9349 msgstr ""
9350
9351 #. type: verbatim
9352 #: ../src/guestfs-actions.pod:1992
9353 #, no-wrap
9354 msgid ""
9355 " int\n"
9356 " guestfs_get_network (guestfs_h *g);\n"
9357 "\n"
9358 msgstr ""
9359
9360 #. type: textblock
9361 #: ../src/guestfs-actions.pod:1995 ../fish/guestfish-actions.pod:1355
9362 msgid "This returns the enable network flag."
9363 msgstr ""
9364
9365 #. type: textblock
9366 #: ../src/guestfs-actions.pod:1999 ../src/guestfs-actions.pod:5939
9367 msgid "(Added in 1.5.4)"
9368 msgstr ""
9369
9370 #. type: =head2
9371 #: ../src/guestfs-actions.pod:2001
9372 msgid "guestfs_get_path"
9373 msgstr ""
9374
9375 #. type: verbatim
9376 #: ../src/guestfs-actions.pod:2003
9377 #, no-wrap
9378 msgid ""
9379 " const char *\n"
9380 " guestfs_get_path (guestfs_h *g);\n"
9381 "\n"
9382 msgstr ""
9383
9384 #. type: textblock
9385 #: ../src/guestfs-actions.pod:2006 ../fish/guestfish-actions.pod:1361
9386 msgid "Return the current search path."
9387 msgstr ""
9388
9389 #. type: textblock
9390 #: ../src/guestfs-actions.pod:2008 ../fish/guestfish-actions.pod:1363
9391 msgid ""
9392 "This is always non-NULL.  If it wasn't set already, then this will return "
9393 "the default path."
9394 msgstr ""
9395
9396 #. type: textblock
9397 #: ../src/guestfs-actions.pod:2011 ../src/guestfs-actions.pod:2040
9398 msgid ""
9399 "This function returns a string, or NULL on error.  The string is owned by "
9400 "the guest handle and must I<not> be freed."
9401 msgstr ""
9402
9403 #. type: =head2
9404 #: ../src/guestfs-actions.pod:2016
9405 msgid "guestfs_get_pid"
9406 msgstr ""
9407
9408 #. type: verbatim
9409 #: ../src/guestfs-actions.pod:2018
9410 #, no-wrap
9411 msgid ""
9412 " int\n"
9413 " guestfs_get_pid (guestfs_h *g);\n"
9414 "\n"
9415 msgstr ""
9416
9417 #. type: textblock
9418 #: ../src/guestfs-actions.pod:2021 ../fish/guestfish-actions.pod:1372
9419 msgid ""
9420 "Return the process ID of the qemu subprocess.  If there is no qemu "
9421 "subprocess, then this will return an error."
9422 msgstr ""
9423
9424 #. type: textblock
9425 #: ../src/guestfs-actions.pod:2024 ../fish/guestfish-actions.pod:1375
9426 msgid "This is an internal call used for debugging and testing."
9427 msgstr ""
9428
9429 #. type: textblock
9430 #: ../src/guestfs-actions.pod:2028
9431 msgid "(Added in 1.0.56)"
9432 msgstr ""
9433
9434 #. type: =head2
9435 #: ../src/guestfs-actions.pod:2030
9436 msgid "guestfs_get_qemu"
9437 msgstr ""
9438
9439 #. type: verbatim
9440 #: ../src/guestfs-actions.pod:2032
9441 #, no-wrap
9442 msgid ""
9443 " const char *\n"
9444 " guestfs_get_qemu (guestfs_h *g);\n"
9445 "\n"
9446 msgstr ""
9447
9448 #. type: textblock
9449 #: ../src/guestfs-actions.pod:2035 ../fish/guestfish-actions.pod:1381
9450 msgid "Return the current qemu binary."
9451 msgstr ""
9452
9453 #. type: textblock
9454 #: ../src/guestfs-actions.pod:2037 ../fish/guestfish-actions.pod:1383
9455 msgid ""
9456 "This is always non-NULL.  If it wasn't set already, then this will return "
9457 "the default qemu binary name."
9458 msgstr ""
9459
9460 #. type: textblock
9461 #: ../src/guestfs-actions.pod:2043 ../src/guestfs-actions.pod:5984
9462 msgid "(Added in 1.0.6)"
9463 msgstr ""
9464
9465 #. type: =head2
9466 #: ../src/guestfs-actions.pod:2045
9467 msgid "guestfs_get_recovery_proc"
9468 msgstr ""
9469
9470 #. type: verbatim
9471 #: ../src/guestfs-actions.pod:2047
9472 #, no-wrap
9473 msgid ""
9474 " int\n"
9475 " guestfs_get_recovery_proc (guestfs_h *g);\n"
9476 "\n"
9477 msgstr ""
9478
9479 #. type: textblock
9480 #: ../src/guestfs-actions.pod:2050 ../fish/guestfish-actions.pod:1390
9481 msgid "Return the recovery process enabled flag."
9482 msgstr ""
9483
9484 #. type: textblock
9485 #: ../src/guestfs-actions.pod:2054 ../src/guestfs-actions.pod:3493
9486 #: ../src/guestfs-actions.pod:3790 ../src/guestfs-actions.pod:4190
9487 #: ../src/guestfs-actions.pod:4222 ../src/guestfs-actions.pod:5243
9488 #: ../src/guestfs-actions.pod:5586 ../src/guestfs-actions.pod:6008
9489 #: ../src/guestfs-actions.pod:6671 ../src/guestfs-actions.pod:6691
9490 #: ../src/guestfs-actions.pod:6883
9491 msgid "(Added in 1.0.77)"
9492 msgstr ""
9493
9494 #. type: =head2
9495 #: ../src/guestfs-actions.pod:2056
9496 msgid "guestfs_get_selinux"
9497 msgstr ""
9498
9499 #. type: verbatim
9500 #: ../src/guestfs-actions.pod:2058
9501 #, no-wrap
9502 msgid ""
9503 " int\n"
9504 " guestfs_get_selinux (guestfs_h *g);\n"
9505 "\n"
9506 msgstr ""
9507
9508 #. type: textblock
9509 #: ../src/guestfs-actions.pod:2061
9510 msgid ""
9511 "This returns the current setting of the selinux flag which is passed to the "
9512 "appliance at boot time.  See C<guestfs_set_selinux>."
9513 msgstr ""
9514
9515 #. type: textblock
9516 #: ../src/guestfs-actions.pod:2069 ../src/guestfs-actions.pod:2132
9517 #: ../src/guestfs-actions.pod:6027 ../src/guestfs-actions.pod:6085
9518 msgid "(Added in 1.0.67)"
9519 msgstr ""
9520
9521 #. type: =head2
9522 #: ../src/guestfs-actions.pod:2071
9523 msgid "guestfs_get_state"
9524 msgstr ""
9525
9526 #. type: verbatim
9527 #: ../src/guestfs-actions.pod:2073
9528 #, no-wrap
9529 msgid ""
9530 " int\n"
9531 " guestfs_get_state (guestfs_h *g);\n"
9532 "\n"
9533 msgstr ""
9534
9535 #. type: textblock
9536 #: ../src/guestfs-actions.pod:2076 ../fish/guestfish-actions.pod:1406
9537 msgid ""
9538 "This returns the current state as an opaque integer.  This is only useful "
9539 "for printing debug and internal error messages."
9540 msgstr ""
9541
9542 #. type: textblock
9543 #: ../src/guestfs-actions.pod:2079 ../src/guestfs-actions.pod:3291
9544 #: ../src/guestfs-actions.pod:3320 ../src/guestfs-actions.pod:3381
9545 #: ../src/guestfs-actions.pod:3408 ../fish/guestfish-actions.pod:1409
9546 #: ../fish/guestfish-actions.pod:2315 ../fish/guestfish-actions.pod:2333
9547 #: ../fish/guestfish-actions.pod:2371 ../fish/guestfish-actions.pod:2387
9548 msgid "For more information on states, see L<guestfs(3)>."
9549 msgstr ""
9550
9551 #. type: =head2
9552 #: ../src/guestfs-actions.pod:2085
9553 msgid "guestfs_get_trace"
9554 msgstr ""
9555
9556 #. type: verbatim
9557 #: ../src/guestfs-actions.pod:2087
9558 #, no-wrap
9559 msgid ""
9560 " int\n"
9561 " guestfs_get_trace (guestfs_h *g);\n"
9562 "\n"
9563 msgstr ""
9564
9565 #. type: textblock
9566 #: ../src/guestfs-actions.pod:2090 ../fish/guestfish-actions.pod:1415
9567 msgid "Return the command trace flag."
9568 msgstr ""
9569
9570 #. type: =head2
9571 #: ../src/guestfs-actions.pod:2096
9572 msgid "guestfs_get_umask"
9573 msgstr ""
9574
9575 #. type: verbatim
9576 #: ../src/guestfs-actions.pod:2098
9577 #, no-wrap
9578 msgid ""
9579 " int\n"
9580 " guestfs_get_umask (guestfs_h *g);\n"
9581 "\n"
9582 msgstr ""
9583
9584 #. type: textblock
9585 #: ../src/guestfs-actions.pod:2101
9586 msgid ""
9587 "Return the current umask.  By default the umask is C<022> unless it has been "
9588 "set by calling C<guestfs_umask>."
9589 msgstr ""
9590
9591 #. type: =head2
9592 #: ../src/guestfs-actions.pod:2108
9593 msgid "guestfs_get_verbose"
9594 msgstr ""
9595
9596 #. type: verbatim
9597 #: ../src/guestfs-actions.pod:2110
9598 #, no-wrap
9599 msgid ""
9600 " int\n"
9601 " guestfs_get_verbose (guestfs_h *g);\n"
9602 "\n"
9603 msgstr ""
9604
9605 #. type: textblock
9606 #: ../src/guestfs-actions.pod:2113 ../fish/guestfish-actions.pod:1428
9607 msgid "This returns the verbose messages flag."
9608 msgstr ""
9609
9610 #. type: =head2
9611 #: ../src/guestfs-actions.pod:2119
9612 msgid "guestfs_getcon"
9613 msgstr ""
9614
9615 #. type: verbatim
9616 #: ../src/guestfs-actions.pod:2121
9617 #, no-wrap
9618 msgid ""
9619 " char *\n"
9620 " guestfs_getcon (guestfs_h *g);\n"
9621 "\n"
9622 msgstr ""
9623
9624 #. type: textblock
9625 #: ../src/guestfs-actions.pod:2124 ../fish/guestfish-actions.pod:1434
9626 msgid "This gets the SELinux security context of the daemon."
9627 msgstr ""
9628
9629 #. type: textblock
9630 #: ../src/guestfs-actions.pod:2126
9631 msgid ""
9632 "See the documentation about SELINUX in L<guestfs(3)>, and C<guestfs_setcon>"
9633 msgstr ""
9634
9635 #. type: =head2
9636 #: ../src/guestfs-actions.pod:2134
9637 msgid "guestfs_getxattr"
9638 msgstr ""
9639
9640 #. type: verbatim
9641 #: ../src/guestfs-actions.pod:2136
9642 #, no-wrap
9643 msgid ""
9644 " char *\n"
9645 " guestfs_getxattr (guestfs_h *g,\n"
9646 "                   const char *path,\n"
9647 "                   const char *name,\n"
9648 "                   size_t *size_r);\n"
9649 "\n"
9650 msgstr ""
9651
9652 #. type: textblock
9653 #: ../src/guestfs-actions.pod:2142
9654 msgid ""
9655 "Get a single extended attribute from file C<path> named C<name>.  This call "
9656 "follows symlinks.  If you want to lookup an extended attribute for the "
9657 "symlink itself, use C<guestfs_lgetxattr>."
9658 msgstr ""
9659
9660 #. type: textblock
9661 #: ../src/guestfs-actions.pod:2146 ../src/guestfs-actions.pod:3507
9662 msgid ""
9663 "Normally it is better to get all extended attributes from a file in one go "
9664 "by calling C<guestfs_getxattrs>.  However some Linux filesystem "
9665 "implementations are buggy and do not provide a way to list out attributes.  "
9666 "For these filesystems (notably ntfs-3g)  you have to know the names of the "
9667 "extended attributes you want in advance and call this function."
9668 msgstr ""
9669
9670 #. type: textblock
9671 #: ../src/guestfs-actions.pod:2153 ../src/guestfs-actions.pod:3514
9672 #: ../fish/guestfish-actions.pod:1454 ../fish/guestfish-actions.pod:2452
9673 msgid ""
9674 "Extended attribute values are blobs of binary data.  If there is no extended "
9675 "attribute named C<name>, this returns an error."
9676 msgstr ""
9677
9678 #. type: textblock
9679 #: ../src/guestfs-actions.pod:2156
9680 msgid "See also: C<guestfs_getxattrs>, C<guestfs_lgetxattr>, L<attr(5)>."
9681 msgstr ""
9682
9683 #. type: textblock
9684 #: ../src/guestfs-actions.pod:2158 ../src/guestfs-actions.pod:2349
9685 #: ../src/guestfs-actions.pod:3519 ../src/guestfs-actions.pod:5236
9686 #: ../src/guestfs-actions.pod:5262 ../src/guestfs-actions.pod:5443
9687 msgid ""
9688 "This function returns a buffer, or NULL on error.  The size of the returned "
9689 "buffer is written to C<*size_r>.  I<The caller must free the returned buffer "
9690 "after use>."
9691 msgstr ""
9692
9693 #. type: textblock
9694 #: ../src/guestfs-actions.pod:2162 ../src/guestfs-actions.pod:3523
9695 msgid "(Added in 1.7.24)"
9696 msgstr ""
9697
9698 #. type: =head2
9699 #: ../src/guestfs-actions.pod:2164
9700 msgid "guestfs_getxattrs"
9701 msgstr ""
9702
9703 #. type: verbatim
9704 #: ../src/guestfs-actions.pod:2166
9705 #, no-wrap
9706 msgid ""
9707 " struct guestfs_xattr_list *\n"
9708 " guestfs_getxattrs (guestfs_h *g,\n"
9709 "                    const char *path);\n"
9710 "\n"
9711 msgstr ""
9712
9713 #. type: textblock
9714 #: ../src/guestfs-actions.pod:2170 ../fish/guestfish-actions.pod:1463
9715 msgid ""
9716 "This call lists the extended attributes of the file or directory C<path>."
9717 msgstr ""
9718
9719 #. type: textblock
9720 #: ../src/guestfs-actions.pod:2173 ../fish/guestfish-actions.pod:1466
9721 msgid ""
9722 "At the system call level, this is a combination of the L<listxattr(2)> and "
9723 "L<getxattr(2)> calls."
9724 msgstr ""
9725
9726 #. type: textblock
9727 #: ../src/guestfs-actions.pod:2176
9728 msgid "See also: C<guestfs_lgetxattrs>, L<attr(5)>."
9729 msgstr ""
9730
9731 #. type: textblock
9732 #: ../src/guestfs-actions.pod:2178 ../src/guestfs-actions.pod:3535
9733 #: ../src/guestfs-actions.pod:4186
9734 msgid ""
9735 "This function returns a C<struct guestfs_xattr_list *>, or NULL if there was "
9736 "an error.  I<The caller must call C<guestfs_free_xattr_list> after use>."
9737 msgstr ""
9738
9739 #. type: textblock
9740 #: ../src/guestfs-actions.pod:2182 ../src/guestfs-actions.pod:3539
9741 #: ../src/guestfs-actions.pod:3704 ../src/guestfs-actions.pod:3740
9742 #: ../src/guestfs-actions.pod:5616 ../src/guestfs-actions.pod:6104
9743 #: ../src/guestfs-actions.pod:7439
9744 msgid "(Added in 1.0.59)"
9745 msgstr ""
9746
9747 #. type: =head2
9748 #: ../src/guestfs-actions.pod:2184
9749 msgid "guestfs_glob_expand"
9750 msgstr ""
9751
9752 #. type: verbatim
9753 #: ../src/guestfs-actions.pod:2186
9754 #, no-wrap
9755 msgid ""
9756 " char **\n"
9757 " guestfs_glob_expand (guestfs_h *g,\n"
9758 "                      const char *pattern);\n"
9759 "\n"
9760 msgstr ""
9761
9762 #. type: textblock
9763 #: ../src/guestfs-actions.pod:2190 ../fish/guestfish-actions.pod:1475
9764 msgid ""
9765 "This command searches for all the pathnames matching C<pattern> according to "
9766 "the wildcard expansion rules used by the shell."
9767 msgstr ""
9768
9769 #. type: textblock
9770 #: ../src/guestfs-actions.pod:2194 ../fish/guestfish-actions.pod:1479
9771 msgid ""
9772 "If no paths match, then this returns an empty list (note: not an error)."
9773 msgstr ""
9774
9775 #. type: textblock
9776 #: ../src/guestfs-actions.pod:2197 ../fish/guestfish-actions.pod:1482
9777 msgid ""
9778 "It is just a wrapper around the C L<glob(3)> function with flags C<GLOB_MARK|"
9779 "GLOB_BRACE>.  See that manual page for more details."
9780 msgstr ""
9781
9782 #. type: textblock
9783 #: ../src/guestfs-actions.pod:2205 ../src/guestfs-actions.pod:6269
9784 #: ../src/guestfs-actions.pod:6286
9785 msgid "(Added in 1.0.50)"
9786 msgstr ""
9787
9788 #. type: =head2
9789 #: ../src/guestfs-actions.pod:2207
9790 msgid "guestfs_grep"
9791 msgstr ""
9792
9793 #. type: verbatim
9794 #: ../src/guestfs-actions.pod:2209
9795 #, no-wrap
9796 msgid ""
9797 " char **\n"
9798 " guestfs_grep (guestfs_h *g,\n"
9799 "               const char *regex,\n"
9800 "               const char *path);\n"
9801 "\n"
9802 msgstr ""
9803
9804 #. type: textblock
9805 #: ../src/guestfs-actions.pod:2214 ../fish/guestfish-actions.pod:1490
9806 msgid "This calls the external C<grep> program and returns the matching lines."
9807 msgstr ""
9808
9809 #. type: =head2
9810 #: ../src/guestfs-actions.pod:2226
9811 msgid "guestfs_grepi"
9812 msgstr ""
9813
9814 #. type: verbatim
9815 #: ../src/guestfs-actions.pod:2228
9816 #, no-wrap
9817 msgid ""
9818 " char **\n"
9819 " guestfs_grepi (guestfs_h *g,\n"
9820 "                const char *regex,\n"
9821 "                const char *path);\n"
9822 "\n"
9823 msgstr ""
9824
9825 #. type: textblock
9826 #: ../src/guestfs-actions.pod:2233 ../fish/guestfish-actions.pod:1500
9827 msgid ""
9828 "This calls the external C<grep -i> program and returns the matching lines."
9829 msgstr ""
9830
9831 #. type: =head2
9832 #: ../src/guestfs-actions.pod:2245
9833 msgid "guestfs_grub_install"
9834 msgstr ""
9835
9836 #. type: verbatim
9837 #: ../src/guestfs-actions.pod:2247
9838 #, no-wrap
9839 msgid ""
9840 " int\n"
9841 " guestfs_grub_install (guestfs_h *g,\n"
9842 "                       const char *root,\n"
9843 "                       const char *device);\n"
9844 "\n"
9845 msgstr ""
9846
9847 #. type: textblock
9848 #: ../src/guestfs-actions.pod:2252 ../fish/guestfish-actions.pod:1510
9849 msgid ""
9850 "This command installs GRUB (the Grand Unified Bootloader) on C<device>, with "
9851 "the root directory being C<root>."
9852 msgstr ""
9853
9854 #. type: textblock
9855 #: ../src/guestfs-actions.pod:2255 ../fish/guestfish-actions.pod:1513
9856 msgid ""
9857 "Note: If grub-install reports the error \"No suitable drive was found in the "
9858 "generated device map.\" it may be that you need to create a C</boot/grub/"
9859 "device.map> file first that contains the mapping between grub device names "
9860 "and Linux device names.  It is usually sufficient to create a file "
9861 "containing:"
9862 msgstr ""
9863
9864 #. type: verbatim
9865 #: ../src/guestfs-actions.pod:2262 ../fish/guestfish-actions.pod:1520
9866 #, no-wrap
9867 msgid ""
9868 " (hd0) /dev/vda\n"
9869 "\n"
9870 msgstr ""
9871
9872 #. type: textblock
9873 #: ../src/guestfs-actions.pod:2264 ../fish/guestfish-actions.pod:1522
9874 msgid "replacing C</dev/vda> with the name of the installation device."
9875 msgstr ""
9876
9877 #. type: textblock
9878 #: ../src/guestfs-actions.pod:2268
9879 msgid "(Added in 1.0.17)"
9880 msgstr ""
9881
9882 #. type: =head2
9883 #: ../src/guestfs-actions.pod:2270
9884 msgid "guestfs_head"
9885 msgstr ""
9886
9887 #. type: verbatim
9888 #: ../src/guestfs-actions.pod:2272
9889 #, no-wrap
9890 msgid ""
9891 " char **\n"
9892 " guestfs_head (guestfs_h *g,\n"
9893 "               const char *path);\n"
9894 "\n"
9895 msgstr ""
9896
9897 #. type: textblock
9898 #: ../src/guestfs-actions.pod:2276 ../fish/guestfish-actions.pod:1528
9899 msgid ""
9900 "This command returns up to the first 10 lines of a file as a list of strings."
9901 msgstr ""
9902
9903 #. type: =head2
9904 #: ../src/guestfs-actions.pod:2288
9905 msgid "guestfs_head_n"
9906 msgstr ""
9907
9908 #. type: verbatim
9909 #: ../src/guestfs-actions.pod:2290
9910 #, no-wrap
9911 msgid ""
9912 " char **\n"
9913 " guestfs_head_n (guestfs_h *g,\n"
9914 "                 int nrlines,\n"
9915 "                 const char *path);\n"
9916 "\n"
9917 msgstr ""
9918
9919 #. type: textblock
9920 #: ../src/guestfs-actions.pod:2295 ../fish/guestfish-actions.pod:1538
9921 msgid ""
9922 "If the parameter C<nrlines> is a positive number, this returns the first "
9923 "C<nrlines> lines of the file C<path>."
9924 msgstr ""
9925
9926 #. type: textblock
9927 #: ../src/guestfs-actions.pod:2298 ../fish/guestfish-actions.pod:1541
9928 msgid ""
9929 "If the parameter C<nrlines> is a negative number, this returns lines from "
9930 "the file C<path>, excluding the last C<nrlines> lines."
9931 msgstr ""
9932
9933 #. type: textblock
9934 #: ../src/guestfs-actions.pod:2301 ../src/guestfs-actions.pod:6566
9935 #: ../fish/guestfish-actions.pod:1544 ../fish/guestfish-actions.pod:4422
9936 msgid "If the parameter C<nrlines> is zero, this returns an empty list."
9937 msgstr ""
9938
9939 #. type: =head2
9940 #: ../src/guestfs-actions.pod:2312
9941 msgid "guestfs_hexdump"
9942 msgstr ""
9943
9944 #. type: verbatim
9945 #: ../src/guestfs-actions.pod:2314
9946 #, no-wrap
9947 msgid ""
9948 " char *\n"
9949 " guestfs_hexdump (guestfs_h *g,\n"
9950 "                  const char *path);\n"
9951 "\n"
9952 msgstr ""
9953
9954 #. type: textblock
9955 #: ../src/guestfs-actions.pod:2318 ../fish/guestfish-actions.pod:1553
9956 msgid ""
9957 "This runs C<hexdump -C> on the given C<path>.  The result is the human-"
9958 "readable, canonical hex dump of the file."
9959 msgstr ""
9960
9961 #. type: textblock
9962 #: ../src/guestfs-actions.pod:2327 ../src/guestfs-actions.pod:6350
9963 #: ../src/guestfs-actions.pod:6405
9964 msgid "(Added in 1.0.22)"
9965 msgstr ""
9966
9967 #. type: =head2
9968 #: ../src/guestfs-actions.pod:2329
9969 msgid "guestfs_initrd_cat"
9970 msgstr ""
9971
9972 #. type: verbatim
9973 #: ../src/guestfs-actions.pod:2331
9974 #, no-wrap
9975 msgid ""
9976 " char *\n"
9977 " guestfs_initrd_cat (guestfs_h *g,\n"
9978 "                     const char *initrdpath,\n"
9979 "                     const char *filename,\n"
9980 "                     size_t *size_r);\n"
9981 "\n"
9982 msgstr ""
9983
9984 #. type: textblock
9985 #: ../src/guestfs-actions.pod:2337 ../fish/guestfish-actions.pod:1563
9986 msgid ""
9987 "This command unpacks the file C<filename> from the initrd file called "
9988 "C<initrdpath>.  The filename must be given I<without> the initial C</> "
9989 "character."
9990 msgstr ""
9991
9992 #. type: textblock
9993 #: ../src/guestfs-actions.pod:2341 ../fish/guestfish-actions.pod:1567
9994 msgid ""
9995 "For example, in guestfish you could use the following command to examine the "
9996 "boot script (usually called C</init>)  contained in a Linux initrd or "
9997 "initramfs image:"
9998 msgstr ""
9999
10000 #. type: verbatim
10001 #: ../src/guestfs-actions.pod:2345 ../fish/guestfish-actions.pod:1571
10002 #, no-wrap
10003 msgid ""
10004 " initrd-cat /boot/initrd-<version>.img init\n"
10005 "\n"
10006 msgstr ""
10007
10008 #. type: textblock
10009 #: ../src/guestfs-actions.pod:2347
10010 msgid "See also C<guestfs_initrd_list>."
10011 msgstr ""
10012
10013 #. type: =head2
10014 #: ../src/guestfs-actions.pod:2358
10015 msgid "guestfs_initrd_list"
10016 msgstr ""
10017
10018 #. type: verbatim
10019 #: ../src/guestfs-actions.pod:2360
10020 #, no-wrap
10021 msgid ""
10022 " char **\n"
10023 " guestfs_initrd_list (guestfs_h *g,\n"
10024 "                      const char *path);\n"
10025 "\n"
10026 msgstr ""
10027
10028 #. type: textblock
10029 #: ../src/guestfs-actions.pod:2364 ../fish/guestfish-actions.pod:1582
10030 msgid "This command lists out files contained in an initrd."
10031 msgstr ""
10032
10033 #. type: textblock
10034 #: ../src/guestfs-actions.pod:2366 ../fish/guestfish-actions.pod:1584
10035 msgid ""
10036 "The files are listed without any initial C</> character.  The files are "
10037 "listed in the order they appear (not necessarily alphabetical).  Directory "
10038 "names are listed as separate items."
10039 msgstr ""
10040
10041 #. type: textblock
10042 #: ../src/guestfs-actions.pod:2370 ../fish/guestfish-actions.pod:1588
10043 msgid ""
10044 "Old Linux kernels (2.4 and earlier) used a compressed ext2 filesystem as "
10045 "initrd.  We I<only> support the newer initramfs format (compressed cpio "
10046 "files)."
10047 msgstr ""
10048
10049 #. type: =head2
10050 #: ../src/guestfs-actions.pod:2380
10051 msgid "guestfs_inotify_add_watch"
10052 msgstr ""
10053
10054 #. type: verbatim
10055 #: ../src/guestfs-actions.pod:2382
10056 #, no-wrap
10057 msgid ""
10058 " int64_t\n"
10059 " guestfs_inotify_add_watch (guestfs_h *g,\n"
10060 "                            const char *path,\n"
10061 "                            int mask);\n"
10062 "\n"
10063 msgstr ""
10064
10065 #. type: textblock
10066 #: ../src/guestfs-actions.pod:2387 ../fish/guestfish-actions.pod:1596
10067 msgid "Watch C<path> for the events listed in C<mask>."
10068 msgstr ""
10069
10070 #. type: textblock
10071 #: ../src/guestfs-actions.pod:2389 ../fish/guestfish-actions.pod:1598
10072 msgid ""
10073 "Note that if C<path> is a directory then events within that directory are "
10074 "watched, but this does I<not> happen recursively (in subdirectories)."
10075 msgstr ""
10076
10077 #. type: textblock
10078 #: ../src/guestfs-actions.pod:2393 ../fish/guestfish-actions.pod:1602
10079 msgid ""
10080 "Note for non-C or non-Linux callers: the inotify events are defined by the "
10081 "Linux kernel ABI and are listed in C</usr/include/sys/inotify.h>."
10082 msgstr ""
10083
10084 #. type: =head2
10085 #: ../src/guestfs-actions.pod:2401
10086 msgid "guestfs_inotify_close"
10087 msgstr ""
10088
10089 #. type: verbatim
10090 #: ../src/guestfs-actions.pod:2403
10091 #, no-wrap
10092 msgid ""
10093 " int\n"
10094 " guestfs_inotify_close (guestfs_h *g);\n"
10095 "\n"
10096 msgstr ""
10097
10098 #. type: textblock
10099 #: ../src/guestfs-actions.pod:2406 ../fish/guestfish-actions.pod:1610
10100 msgid ""
10101 "This closes the inotify handle which was previously opened by inotify_init.  "
10102 "It removes all watches, throws away any pending events, and deallocates all "
10103 "resources."
10104 msgstr ""
10105
10106 #. type: =head2
10107 #: ../src/guestfs-actions.pod:2414
10108 msgid "guestfs_inotify_files"
10109 msgstr ""
10110
10111 #. type: verbatim
10112 #: ../src/guestfs-actions.pod:2416
10113 #, no-wrap
10114 msgid ""
10115 " char **\n"
10116 " guestfs_inotify_files (guestfs_h *g);\n"
10117 "\n"
10118 msgstr ""
10119
10120 #. type: textblock
10121 #: ../src/guestfs-actions.pod:2419
10122 msgid ""
10123 "This function is a helpful wrapper around C<guestfs_inotify_read> which just "
10124 "returns a list of pathnames of objects that were touched.  The returned "
10125 "pathnames are sorted and deduplicated."
10126 msgstr ""
10127
10128 #. type: =head2
10129 #: ../src/guestfs-actions.pod:2429
10130 msgid "guestfs_inotify_init"
10131 msgstr ""
10132
10133 #. type: verbatim
10134 #: ../src/guestfs-actions.pod:2431
10135 #, no-wrap
10136 msgid ""
10137 " int\n"
10138 " guestfs_inotify_init (guestfs_h *g,\n"
10139 "                       int maxevents);\n"
10140 "\n"
10141 msgstr ""
10142
10143 #. type: textblock
10144 #: ../src/guestfs-actions.pod:2435 ../fish/guestfish-actions.pod:1626
10145 msgid ""
10146 "This command creates a new inotify handle.  The inotify subsystem can be "
10147 "used to notify events which happen to objects in the guest filesystem."
10148 msgstr ""
10149
10150 #. type: textblock
10151 #: ../src/guestfs-actions.pod:2439
10152 msgid ""
10153 "C<maxevents> is the maximum number of events which will be queued up between "
10154 "calls to C<guestfs_inotify_read> or C<guestfs_inotify_files>.  If this is "
10155 "passed as C<0>, then the kernel (or previously set)  default is used.  For "
10156 "Linux 2.6.29 the default was 16384 events.  Beyond this limit, the kernel "
10157 "throws away events, but records the fact that it threw them away by setting "
10158 "a flag C<IN_Q_OVERFLOW> in the returned structure list (see "
10159 "C<guestfs_inotify_read>)."
10160 msgstr ""
10161
10162 #. type: textblock
10163 #: ../src/guestfs-actions.pod:2449
10164 msgid ""
10165 "Before any events are generated, you have to add some watches to the "
10166 "internal watch list.  See: C<guestfs_inotify_add_watch>, "
10167 "C<guestfs_inotify_rm_watch> and C<guestfs_inotify_watch_all>."
10168 msgstr ""
10169
10170 #. type: textblock
10171 #: ../src/guestfs-actions.pod:2455
10172 msgid ""
10173 "Queued up events should be read periodically by calling "
10174 "C<guestfs_inotify_read> (or C<guestfs_inotify_files> which is just a helpful "
10175 "wrapper around C<guestfs_inotify_read>).  If you don't read the events out "
10176 "often enough then you risk the internal queue overflowing."
10177 msgstr ""
10178
10179 #. type: textblock
10180 #: ../src/guestfs-actions.pod:2462
10181 msgid ""
10182 "The handle should be closed after use by calling C<guestfs_inotify_close>.  "
10183 "This also removes any watches automatically."
10184 msgstr ""
10185
10186 #. type: textblock
10187 #: ../src/guestfs-actions.pod:2466 ../fish/guestfish-actions.pod:1657
10188 msgid ""
10189 "See also L<inotify(7)> for an overview of the inotify interface as exposed "
10190 "by the Linux kernel, which is roughly what we expose via libguestfs.  Note "
10191 "that there is one global inotify handle per libguestfs instance."
10192 msgstr ""
10193
10194 #. type: =head2
10195 #: ../src/guestfs-actions.pod:2475
10196 msgid "guestfs_inotify_read"
10197 msgstr ""
10198
10199 #. type: verbatim
10200 #: ../src/guestfs-actions.pod:2477
10201 #, no-wrap
10202 msgid ""
10203 " struct guestfs_inotify_event_list *\n"
10204 " guestfs_inotify_read (guestfs_h *g);\n"
10205 "\n"
10206 msgstr ""
10207
10208 #. type: textblock
10209 #: ../src/guestfs-actions.pod:2480 ../fish/guestfish-actions.pod:1666
10210 msgid ""
10211 "Return the complete queue of events that have happened since the previous "
10212 "read call."
10213 msgstr ""
10214
10215 #. type: textblock
10216 #: ../src/guestfs-actions.pod:2483 ../fish/guestfish-actions.pod:1669
10217 msgid "If no events have happened, this returns an empty list."
10218 msgstr ""
10219
10220 #. type: textblock
10221 #: ../src/guestfs-actions.pod:2485 ../fish/guestfish-actions.pod:1671
10222 msgid ""
10223 "I<Note>: In order to make sure that all events have been read, you must call "
10224 "this function repeatedly until it returns an empty list.  The reason is that "
10225 "the call will read events up to the maximum appliance-to-host message size "
10226 "and leave remaining events in the queue."
10227 msgstr ""
10228
10229 #. type: textblock
10230 #: ../src/guestfs-actions.pod:2491
10231 msgid ""
10232 "This function returns a C<struct guestfs_inotify_event_list *>, or NULL if "
10233 "there was an error.  I<The caller must call "
10234 "C<guestfs_free_inotify_event_list> after use>."
10235 msgstr ""
10236
10237 #. type: =head2
10238 #: ../src/guestfs-actions.pod:2497
10239 msgid "guestfs_inotify_rm_watch"
10240 msgstr ""
10241
10242 #. type: verbatim
10243 #: ../src/guestfs-actions.pod:2499
10244 #, no-wrap
10245 msgid ""
10246 " int\n"
10247 " guestfs_inotify_rm_watch (guestfs_h *g,\n"
10248 "                           int wd);\n"
10249 "\n"
10250 msgstr ""
10251
10252 #. type: textblock
10253 #: ../src/guestfs-actions.pod:2503
10254 msgid ""
10255 "Remove a previously defined inotify watch.  See C<guestfs_inotify_add_watch>."
10256 msgstr ""
10257
10258 #. type: =head2
10259 #: ../src/guestfs-actions.pod:2510
10260 msgid "guestfs_inspect_get_arch"
10261 msgstr ""
10262
10263 #. type: verbatim
10264 #: ../src/guestfs-actions.pod:2512
10265 #, no-wrap
10266 msgid ""
10267 " char *\n"
10268 " guestfs_inspect_get_arch (guestfs_h *g,\n"
10269 "                           const char *root);\n"
10270 "\n"
10271 msgstr ""
10272
10273 #. type: textblock
10274 #: ../src/guestfs-actions.pod:2516 ../src/guestfs-actions.pod:2539
10275 #: ../src/guestfs-actions.pod:2624 ../src/guestfs-actions.pod:2668
10276 #: ../src/guestfs-actions.pod:2694 ../src/guestfs-actions.pod:2733
10277 #: ../src/guestfs-actions.pod:2755 ../src/guestfs-actions.pod:2782
10278 #: ../src/guestfs-actions.pod:2803 ../src/guestfs-actions.pod:2846
10279 #: ../src/guestfs-actions.pod:2875 ../src/guestfs-actions.pod:2906
10280 #: ../src/guestfs-actions.pod:2930 ../src/guestfs-actions.pod:2985
10281 #: ../src/guestfs-actions.pod:3027 ../src/guestfs-actions.pod:3048
10282 #: ../src/guestfs-actions.pod:3071 ../src/guestfs-actions.pod:3088
10283 #: ../src/guestfs-actions.pod:3105 ../src/guestfs-actions.pod:3124
10284 msgid ""
10285 "This function should only be called with a root device string as returned by "
10286 "C<guestfs_inspect_os>."
10287 msgstr ""
10288
10289 #. type: textblock
10290 #: ../src/guestfs-actions.pod:2519
10291 msgid ""
10292 "This returns the architecture of the inspected operating system.  The "
10293 "possible return values are listed under C<guestfs_file_architecture>."
10294 msgstr ""
10295
10296 #. type: textblock
10297 #: ../src/guestfs-actions.pod:2523 ../fish/guestfish-actions.pod:1695
10298 msgid ""
10299 "If the architecture could not be determined, then the string C<unknown> is "
10300 "returned."
10301 msgstr ""
10302
10303 #. type: textblock
10304 #: ../src/guestfs-actions.pod:2526 ../src/guestfs-actions.pod:2611
10305 #: ../src/guestfs-actions.pod:2722 ../src/guestfs-actions.pod:2742
10306 #: ../src/guestfs-actions.pod:2770 ../src/guestfs-actions.pod:2862
10307 #: ../src/guestfs-actions.pod:2893 ../src/guestfs-actions.pod:2917
10308 #: ../src/guestfs-actions.pod:2971 ../src/guestfs-actions.pod:3014
10309 #: ../src/guestfs-actions.pod:3037 ../src/guestfs-actions.pod:3058
10310 #: ../src/guestfs-actions.pod:3078 ../src/guestfs-actions.pod:3095
10311 #: ../src/guestfs-actions.pod:3114 ../src/guestfs-actions.pod:3217
10312 #: ../src/guestfs-actions.pod:3258 ../fish/guestfish-actions.pod:1698
10313 #: ../fish/guestfish-actions.pod:1776 ../fish/guestfish-actions.pod:1864
10314 #: ../fish/guestfish-actions.pod:1879 ../fish/guestfish-actions.pod:1900
10315 #: ../fish/guestfish-actions.pod:1970 ../fish/guestfish-actions.pod:1994
10316 #: ../fish/guestfish-actions.pod:2011 ../fish/guestfish-actions.pod:2054
10317 #: ../fish/guestfish-actions.pod:2089 ../fish/guestfish-actions.pod:2105
10318 #: ../fish/guestfish-actions.pod:2121 ../fish/guestfish-actions.pod:2134
10319 #: ../fish/guestfish-actions.pod:2147 ../fish/guestfish-actions.pod:2162
10320 #: ../fish/guestfish-actions.pod:2261 ../fish/guestfish-actions.pod:2295
10321 msgid "Please read L<guestfs(3)/INSPECTION> for more details."
10322 msgstr ""
10323
10324 #. type: =head2
10325 #: ../src/guestfs-actions.pod:2533
10326 msgid "guestfs_inspect_get_distro"
10327 msgstr ""
10328
10329 #. type: verbatim
10330 #: ../src/guestfs-actions.pod:2535
10331 #, no-wrap
10332 msgid ""
10333 " char *\n"
10334 " guestfs_inspect_get_distro (guestfs_h *g,\n"
10335 "                             const char *root);\n"
10336 "\n"
10337 msgstr ""
10338
10339 #. type: textblock
10340 #: ../src/guestfs-actions.pod:2542 ../fish/guestfish-actions.pod:1707
10341 msgid ""
10342 "This returns the distro (distribution) of the inspected operating system."
10343 msgstr ""
10344
10345 #. type: textblock
10346 #: ../src/guestfs-actions.pod:2545 ../fish/guestfish-actions.pod:1710
10347 msgid "Currently defined distros are:"
10348 msgstr ""
10349
10350 #. type: =item
10351 #: ../src/guestfs-actions.pod:2549 ../fish/guestfish-actions.pod:1714
10352 msgid "\"archlinux\""
10353 msgstr "\"archlinux\""
10354
10355 #. type: textblock
10356 #: ../src/guestfs-actions.pod:2551 ../fish/guestfish-actions.pod:1716
10357 msgid "Arch Linux."
10358 msgstr "Arch Linux."
10359
10360 #. type: =item
10361 #: ../src/guestfs-actions.pod:2553 ../fish/guestfish-actions.pod:1718
10362 msgid "\"debian\""
10363 msgstr "\"debian\""
10364
10365 #. type: textblock
10366 #: ../src/guestfs-actions.pod:2555 ../fish/guestfish-actions.pod:1720
10367 msgid "Debian."
10368 msgstr "Debian."
10369
10370 #. type: =item
10371 #: ../src/guestfs-actions.pod:2557 ../fish/guestfish-actions.pod:1722
10372 msgid "\"fedora\""
10373 msgstr "\"fedora\""
10374
10375 #. type: textblock
10376 #: ../src/guestfs-actions.pod:2559 ../fish/guestfish-actions.pod:1724
10377 msgid "Fedora."
10378 msgstr "Fedora."
10379
10380 #. type: =item
10381 #: ../src/guestfs-actions.pod:2561 ../fish/guestfish-actions.pod:1726
10382 msgid "\"gentoo\""
10383 msgstr "\"gentoo\""
10384
10385 #. type: textblock
10386 #: ../src/guestfs-actions.pod:2563 ../fish/guestfish-actions.pod:1728
10387 msgid "Gentoo."
10388 msgstr "Gentoo."
10389
10390 #. type: =item
10391 #: ../src/guestfs-actions.pod:2565 ../fish/guestfish-actions.pod:1730
10392 msgid "\"linuxmint\""
10393 msgstr "\"linuxmint\""
10394
10395 #. type: textblock
10396 #: ../src/guestfs-actions.pod:2567 ../fish/guestfish-actions.pod:1732
10397 msgid "Linux Mint."
10398 msgstr "Linux Mint."
10399
10400 #. type: =item
10401 #: ../src/guestfs-actions.pod:2569 ../fish/guestfish-actions.pod:1734
10402 msgid "\"mandriva\""
10403 msgstr "\"mandriva\""
10404
10405 #. type: textblock
10406 #: ../src/guestfs-actions.pod:2571 ../fish/guestfish-actions.pod:1736
10407 msgid "Mandriva."
10408 msgstr "Mandriva."
10409
10410 #. type: =item
10411 #: ../src/guestfs-actions.pod:2573 ../fish/guestfish-actions.pod:1738
10412 msgid "\"meego\""
10413 msgstr "\"meego\""
10414
10415 #. type: textblock
10416 #: ../src/guestfs-actions.pod:2575 ../fish/guestfish-actions.pod:1740
10417 msgid "MeeGo."
10418 msgstr "MeeGo."
10419
10420 #. type: =item
10421 #: ../src/guestfs-actions.pod:2577 ../fish/guestfish-actions.pod:1742
10422 msgid "\"pardus\""
10423 msgstr "\"pardus\""
10424
10425 #. type: textblock
10426 #: ../src/guestfs-actions.pod:2579 ../fish/guestfish-actions.pod:1744
10427 msgid "Pardus."
10428 msgstr "Pardus."
10429
10430 #. type: =item
10431 #: ../src/guestfs-actions.pod:2581 ../fish/guestfish-actions.pod:1746
10432 msgid "\"redhat-based\""
10433 msgstr "\"redhat-based\""
10434
10435 #. type: textblock
10436 #: ../src/guestfs-actions.pod:2583 ../fish/guestfish-actions.pod:1748
10437 msgid "Some Red Hat-derived distro."
10438 msgstr "Дистрибутив, що походить від Red Hat."
10439
10440 #. type: =item
10441 #: ../src/guestfs-actions.pod:2585 ../fish/guestfish-actions.pod:1750
10442 msgid "\"rhel\""
10443 msgstr "\"rhel\""
10444
10445 #. type: textblock
10446 #: ../src/guestfs-actions.pod:2587 ../fish/guestfish-actions.pod:1752
10447 msgid "Red Hat Enterprise Linux and some derivatives."
10448 msgstr "Red Hat Enterprise Linux та деякі з похідних дистрибутивів."
10449
10450 #. type: =item
10451 #: ../src/guestfs-actions.pod:2589 ../fish/guestfish-actions.pod:1754
10452 msgid "\"slackware\""
10453 msgstr ""
10454
10455 #. type: textblock
10456 #: ../src/guestfs-actions.pod:2591 ../fish/guestfish-actions.pod:1756
10457 msgid "Slackware."
10458 msgstr ""
10459
10460 #. type: =item
10461 #: ../src/guestfs-actions.pod:2593 ../fish/guestfish-actions.pod:1758
10462 msgid "\"ubuntu\""
10463 msgstr "\"ubuntu\""
10464
10465 #. type: textblock
10466 #: ../src/guestfs-actions.pod:2595 ../fish/guestfish-actions.pod:1760
10467 msgid "Ubuntu."
10468 msgstr "Ubuntu."
10469
10470 #. type: =item
10471 #: ../src/guestfs-actions.pod:2597 ../src/guestfs-actions.pod:2713
10472 #: ../src/guestfs-actions.pod:3005 ../fish/guestfish-actions.pod:1762
10473 #: ../fish/guestfish-actions.pod:1855 ../fish/guestfish-actions.pod:2080
10474 msgid "\"unknown\""
10475 msgstr "\"unknown\""
10476
10477 #. type: textblock
10478 #: ../src/guestfs-actions.pod:2599 ../fish/guestfish-actions.pod:1764
10479 msgid "The distro could not be determined."
10480 msgstr "Дистрибутив, тип якого не вдалося визначити."
10481
10482 #. type: =item
10483 #: ../src/guestfs-actions.pod:2601 ../src/guestfs-actions.pod:2997
10484 #: ../fish/guestfish-actions.pod:1766 ../fish/guestfish-actions.pod:2072
10485 msgid "\"windows\""
10486 msgstr "\"windows\""
10487
10488 #. type: textblock
10489 #: ../src/guestfs-actions.pod:2603 ../fish/guestfish-actions.pod:1768
10490 msgid ""
10491 "Windows does not have distributions.  This string is returned if the OS type "
10492 "is Windows."
10493 msgstr ""
10494
10495 #. type: textblock
10496 #: ../src/guestfs-actions.pod:2608 ../src/guestfs-actions.pod:2719
10497 #: ../src/guestfs-actions.pod:3011 ../fish/guestfish-actions.pod:1773
10498 #: ../fish/guestfish-actions.pod:1861 ../fish/guestfish-actions.pod:2086
10499 msgid ""
10500 "Future versions of libguestfs may return other strings here.  The caller "
10501 "should be prepared to handle any string."
10502 msgstr ""
10503
10504 #. type: =head2
10505 #: ../src/guestfs-actions.pod:2618
10506 msgid "guestfs_inspect_get_drive_mappings"
10507 msgstr ""
10508
10509 #. type: verbatim
10510 #: ../src/guestfs-actions.pod:2620
10511 #, no-wrap
10512 msgid ""
10513 " char **\n"
10514 " guestfs_inspect_get_drive_mappings (guestfs_h *g,\n"
10515 "                                     const char *root);\n"
10516 "\n"
10517 msgstr ""
10518
10519 #. type: textblock
10520 #: ../src/guestfs-actions.pod:2627 ../fish/guestfish-actions.pod:1785
10521 msgid ""
10522 "This call is useful for Windows which uses a primitive system of assigning "
10523 "drive letters (like \"C:\") to partitions.  This inspection API examines the "
10524 "Windows Registry to find out how disks/partitions are mapped to drive "
10525 "letters, and returns a hash table as in the example below:"
10526 msgstr ""
10527
10528 #. type: verbatim
10529 #: ../src/guestfs-actions.pod:2633 ../fish/guestfish-actions.pod:1791
10530 #, no-wrap
10531 msgid ""
10532 " C      =>     /dev/vda2\n"
10533 " E      =>     /dev/vdb1\n"
10534 " F      =>     /dev/vdc1\n"
10535 "\n"
10536 msgstr ""
10537
10538 #. type: textblock
10539 #: ../src/guestfs-actions.pod:2637 ../fish/guestfish-actions.pod:1795
10540 msgid ""
10541 "Note that keys are drive letters.  For Windows, the key is case insensitive "
10542 "and just contains the drive letter, without the customary colon separator "
10543 "character."
10544 msgstr ""
10545
10546 #. type: textblock
10547 #: ../src/guestfs-actions.pod:2641 ../fish/guestfish-actions.pod:1799
10548 msgid ""
10549 "In future we may support other operating systems that also used drive "
10550 "letters, but the keys for those might not be case insensitive and might be "
10551 "longer than 1 character.  For example in OS-9, hard drives were named C<h0>, "
10552 "C<h1> etc."
10553 msgstr ""
10554
10555 #. type: textblock
10556 #: ../src/guestfs-actions.pod:2646 ../fish/guestfish-actions.pod:1804
10557 msgid ""
10558 "For Windows guests, currently only hard drive mappings are returned.  "
10559 "Removable disks (eg. DVD-ROMs) are ignored."
10560 msgstr ""
10561
10562 #. type: textblock
10563 #: ../src/guestfs-actions.pod:2649 ../fish/guestfish-actions.pod:1807
10564 msgid ""
10565 "For guests that do not use drive mappings, or if the drive mappings could "
10566 "not be determined, this returns an empty hash table."
10567 msgstr ""
10568
10569 #. type: textblock
10570 #: ../src/guestfs-actions.pod:2652
10571 msgid ""
10572 "Please read L<guestfs(3)/INSPECTION> for more details.  See also "
10573 "C<guestfs_inspect_get_mountpoints>, C<guestfs_inspect_get_filesystems>."
10574 msgstr ""
10575
10576 #. type: textblock
10577 #: ../src/guestfs-actions.pod:2656 ../src/guestfs-actions.pod:2832
10578 #: ../src/guestfs-actions.pod:3592 ../src/guestfs-actions.pod:4802
10579 #: ../src/guestfs-actions.pod:6707
10580 msgid ""
10581 "This function returns a NULL-terminated array of strings, or NULL if there "
10582 "was an error.  The array of strings will always have length C<2n+1>, where "
10583 "C<n> keys and values alternate, followed by the trailing NULL entry.  I<The "
10584 "caller must free the strings and the array after use>."
10585 msgstr ""
10586
10587 #. type: =head2
10588 #: ../src/guestfs-actions.pod:2662
10589 msgid "guestfs_inspect_get_filesystems"
10590 msgstr ""
10591
10592 #. type: verbatim
10593 #: ../src/guestfs-actions.pod:2664
10594 #, no-wrap
10595 msgid ""
10596 " char **\n"
10597 " guestfs_inspect_get_filesystems (guestfs_h *g,\n"
10598 "                                  const char *root);\n"
10599 "\n"
10600 msgstr ""
10601
10602 #. type: textblock
10603 #: ../src/guestfs-actions.pod:2671 ../fish/guestfish-actions.pod:1821
10604 msgid ""
10605 "This returns a list of all the filesystems that we think are associated with "
10606 "this operating system.  This includes the root filesystem, other ordinary "
10607 "filesystems, and non-mounted devices like swap partitions."
10608 msgstr ""
10609
10610 #. type: textblock
10611 #: ../src/guestfs-actions.pod:2676 ../fish/guestfish-actions.pod:1826
10612 msgid ""
10613 "In the case of a multi-boot virtual machine, it is possible for a filesystem "
10614 "to be shared between operating systems."
10615 msgstr ""
10616
10617 #. type: textblock
10618 #: ../src/guestfs-actions.pod:2679
10619 msgid ""
10620 "Please read L<guestfs(3)/INSPECTION> for more details.  See also "
10621 "C<guestfs_inspect_get_mountpoints>."
10622 msgstr ""
10623
10624 #. type: =head2
10625 #: ../src/guestfs-actions.pod:2688
10626 msgid "guestfs_inspect_get_format"
10627 msgstr ""
10628
10629 #. type: verbatim
10630 #: ../src/guestfs-actions.pod:2690
10631 #, no-wrap
10632 msgid ""
10633 " char *\n"
10634 " guestfs_inspect_get_format (guestfs_h *g,\n"
10635 "                             const char *root);\n"
10636 "\n"
10637 msgstr ""
10638
10639 #. type: textblock
10640 #: ../src/guestfs-actions.pod:2697 ../fish/guestfish-actions.pod:1839
10641 msgid ""
10642 "This returns the format of the inspected operating system.  You can use it "
10643 "to detect install images, live CDs and similar."
10644 msgstr ""
10645
10646 #. type: textblock
10647 #: ../src/guestfs-actions.pod:2700 ../fish/guestfish-actions.pod:1842
10648 msgid "Currently defined formats are:"
10649 msgstr ""
10650
10651 #. type: =item
10652 #: ../src/guestfs-actions.pod:2704 ../fish/guestfish-actions.pod:1846
10653 msgid "\"installed\""
10654 msgstr "\"installed\""
10655
10656 #. type: textblock
10657 #: ../src/guestfs-actions.pod:2706 ../fish/guestfish-actions.pod:1848
10658 msgid "This is an installed operating system."
10659 msgstr "Це встановлена операційна система."
10660
10661 #. type: =item
10662 #: ../src/guestfs-actions.pod:2708 ../fish/guestfish-actions.pod:1850
10663 msgid "\"installer\""
10664 msgstr ""
10665
10666 #. type: textblock
10667 #: ../src/guestfs-actions.pod:2710 ../fish/guestfish-actions.pod:1852
10668 msgid ""
10669 "The disk image being inspected is not an installed operating system, but a "
10670 "I<bootable> install disk, live CD, or similar."
10671 msgstr ""
10672
10673 #. type: textblock
10674 #: ../src/guestfs-actions.pod:2715 ../fish/guestfish-actions.pod:1857
10675 msgid "The format of this disk image is not known."
10676 msgstr ""
10677
10678 #. type: =head2
10679 #: ../src/guestfs-actions.pod:2727
10680 msgid "guestfs_inspect_get_hostname"
10681 msgstr ""
10682
10683 #. type: verbatim
10684 #: ../src/guestfs-actions.pod:2729
10685 #, no-wrap
10686 msgid ""
10687 " char *\n"
10688 " guestfs_inspect_get_hostname (guestfs_h *g,\n"
10689 "                               const char *root);\n"
10690 "\n"
10691 msgstr ""
10692
10693 #. type: textblock
10694 #: ../src/guestfs-actions.pod:2736 ../fish/guestfish-actions.pod:1873
10695 msgid ""
10696 "This function returns the hostname of the operating system as found by "
10697 "inspection of the guest's configuration files."
10698 msgstr ""
10699
10700 #. type: textblock
10701 #: ../src/guestfs-actions.pod:2739 ../fish/guestfish-actions.pod:1876
10702 msgid ""
10703 "If the hostname could not be determined, then the string C<unknown> is "
10704 "returned."
10705 msgstr ""
10706
10707 #. type: textblock
10708 #: ../src/guestfs-actions.pod:2747
10709 msgid "(Added in 1.7.9)"
10710 msgstr ""
10711
10712 #. type: =head2
10713 #: ../src/guestfs-actions.pod:2749
10714 msgid "guestfs_inspect_get_major_version"
10715 msgstr ""
10716
10717 #. type: verbatim
10718 #: ../src/guestfs-actions.pod:2751
10719 #, no-wrap
10720 msgid ""
10721 " int\n"
10722 " guestfs_inspect_get_major_version (guestfs_h *g,\n"
10723 "                                    const char *root);\n"
10724 "\n"
10725 msgstr ""
10726
10727 #. type: textblock
10728 #: ../src/guestfs-actions.pod:2758 ../fish/guestfish-actions.pod:1888
10729 msgid ""
10730 "This returns the major version number of the inspected operating system."
10731 msgstr ""
10732
10733 #. type: textblock
10734 #: ../src/guestfs-actions.pod:2761 ../fish/guestfish-actions.pod:1891
10735 msgid ""
10736 "Windows uses a consistent versioning scheme which is I<not> reflected in the "
10737 "popular public names used by the operating system.  Notably the operating "
10738 "system known as \"Windows 7\" is really version 6.1 (ie. major = 6, minor = "
10739 "1).  You can find out the real versions corresponding to releases of Windows "
10740 "by consulting Wikipedia or MSDN."
10741 msgstr ""
10742
10743 #. type: textblock
10744 #: ../src/guestfs-actions.pod:2768 ../src/guestfs-actions.pod:2788
10745 #: ../fish/guestfish-actions.pod:1898 ../fish/guestfish-actions.pod:1912
10746 msgid "If the version could not be determined, then C<0> is returned."
10747 msgstr ""
10748
10749 #. type: =head2
10750 #: ../src/guestfs-actions.pod:2776
10751 msgid "guestfs_inspect_get_minor_version"
10752 msgstr ""
10753
10754 #. type: verbatim
10755 #: ../src/guestfs-actions.pod:2778
10756 #, no-wrap
10757 msgid ""
10758 " int\n"
10759 " guestfs_inspect_get_minor_version (guestfs_h *g,\n"
10760 "                                    const char *root);\n"
10761 "\n"
10762 msgstr ""
10763
10764 #. type: textblock
10765 #: ../src/guestfs-actions.pod:2785 ../fish/guestfish-actions.pod:1909
10766 msgid ""
10767 "This returns the minor version number of the inspected operating system."
10768 msgstr ""
10769
10770 #. type: textblock
10771 #: ../src/guestfs-actions.pod:2790
10772 msgid ""
10773 "Please read L<guestfs(3)/INSPECTION> for more details.  See also "
10774 "C<guestfs_inspect_get_major_version>."
10775 msgstr ""
10776
10777 #. type: =head2
10778 #: ../src/guestfs-actions.pod:2797
10779 msgid "guestfs_inspect_get_mountpoints"
10780 msgstr ""
10781
10782 #. type: verbatim
10783 #: ../src/guestfs-actions.pod:2799
10784 #, no-wrap
10785 msgid ""
10786 " char **\n"
10787 " guestfs_inspect_get_mountpoints (guestfs_h *g,\n"
10788 "                                  const char *root);\n"
10789 "\n"
10790 msgstr ""
10791
10792 #. type: textblock
10793 #: ../src/guestfs-actions.pod:2806 ../fish/guestfish-actions.pod:1924
10794 msgid ""
10795 "This returns a hash of where we think the filesystems associated with this "
10796 "operating system should be mounted.  Callers should note that this is at "
10797 "best an educated guess made by reading configuration files such as C</etc/"
10798 "fstab>.  I<In particular note> that this may return filesystems which are "
10799 "non-existent or not mountable and callers should be prepared to handle or "
10800 "ignore failures if they try to mount them."
10801 msgstr ""
10802
10803 #. type: textblock
10804 #: ../src/guestfs-actions.pod:2815 ../fish/guestfish-actions.pod:1933
10805 msgid ""
10806 "Each element in the returned hashtable has a key which is the path of the "
10807 "mountpoint (eg. C</boot>) and a value which is the filesystem that would be "
10808 "mounted there (eg. C</dev/sda1>)."
10809 msgstr ""
10810
10811 #. type: textblock
10812 #: ../src/guestfs-actions.pod:2820 ../fish/guestfish-actions.pod:1938
10813 msgid ""
10814 "Non-mounted devices such as swap devices are I<not> returned in this list."
10815 msgstr ""
10816
10817 #. type: textblock
10818 #: ../src/guestfs-actions.pod:2823
10819 msgid ""
10820 "For operating systems like Windows which still use drive letters, this call "
10821 "will only return an entry for the first drive \"mounted on\" C</>.  For "
10822 "information about the mapping of drive letters to partitions, see "
10823 "C<guestfs_inspect_get_drive_mappings>."
10824 msgstr ""
10825
10826 #. type: textblock
10827 #: ../src/guestfs-actions.pod:2829
10828 msgid ""
10829 "Please read L<guestfs(3)/INSPECTION> for more details.  See also "
10830 "C<guestfs_inspect_get_filesystems>."
10831 msgstr ""
10832
10833 #. type: =head2
10834 #: ../src/guestfs-actions.pod:2840
10835 msgid "guestfs_inspect_get_package_format"
10836 msgstr ""
10837
10838 #. type: verbatim
10839 #: ../src/guestfs-actions.pod:2842
10840 #, no-wrap
10841 msgid ""
10842 " char *\n"
10843 " guestfs_inspect_get_package_format (guestfs_h *g,\n"
10844 "                                     const char *root);\n"
10845 "\n"
10846 msgstr ""
10847
10848 #. type: textblock
10849 #: ../src/guestfs-actions.pod:2849
10850 msgid ""
10851 "This function and C<guestfs_inspect_get_package_management> return the "
10852 "package format and package management tool used by the inspected operating "
10853 "system.  For example for Fedora these functions would return C<rpm> (package "
10854 "format) and C<yum> (package management)."
10855 msgstr ""
10856
10857 #. type: textblock
10858 #: ../src/guestfs-actions.pod:2855 ../fish/guestfish-actions.pod:1963
10859 msgid ""
10860 "This returns the string C<unknown> if we could not determine the package "
10861 "format I<or> if the operating system does not have a real packaging system "
10862 "(eg. Windows)."
10863 msgstr ""
10864
10865 #. type: textblock
10866 #: ../src/guestfs-actions.pod:2859 ../fish/guestfish-actions.pod:1967
10867 msgid ""
10868 "Possible strings include: C<rpm>, C<deb>, C<ebuild>, C<pisi>, C<pacman>.  "
10869 "Future versions of libguestfs may return other strings."
10870 msgstr ""
10871
10872 #. type: textblock
10873 #: ../src/guestfs-actions.pod:2867 ../src/guestfs-actions.pod:2898
10874 msgid "(Added in 1.7.5)"
10875 msgstr ""
10876
10877 #. type: =head2
10878 #: ../src/guestfs-actions.pod:2869
10879 msgid "guestfs_inspect_get_package_management"
10880 msgstr ""
10881
10882 #. type: verbatim
10883 #: ../src/guestfs-actions.pod:2871
10884 #, no-wrap
10885 msgid ""
10886 " char *\n"
10887 " guestfs_inspect_get_package_management (guestfs_h *g,\n"
10888 "                                         const char *root);\n"
10889 "\n"
10890 msgstr ""
10891
10892 #. type: textblock
10893 #: ../src/guestfs-actions.pod:2878
10894 msgid ""
10895 "C<guestfs_inspect_get_package_format> and this function return the package "
10896 "format and package management tool used by the inspected operating system.  "
10897 "For example for Fedora these functions would return C<rpm> (package format) "
10898 "and C<yum> (package management)."
10899 msgstr ""
10900
10901 #. type: textblock
10902 #: ../src/guestfs-actions.pod:2884 ../fish/guestfish-actions.pod:1985
10903 msgid ""
10904 "This returns the string C<unknown> if we could not determine the package "
10905 "management tool I<or> if the operating system does not have a real packaging "
10906 "system (eg. Windows)."
10907 msgstr ""
10908
10909 #. type: textblock
10910 #: ../src/guestfs-actions.pod:2888 ../fish/guestfish-actions.pod:1989
10911 msgid ""
10912 "Possible strings include: C<yum>, C<up2date>, C<apt> (for all Debian "
10913 "derivatives), C<portage>, C<pisi>, C<pacman>, C<urpmi>.  Future versions of "
10914 "libguestfs may return other strings."
10915 msgstr ""
10916
10917 #. type: =head2
10918 #: ../src/guestfs-actions.pod:2900
10919 msgid "guestfs_inspect_get_product_name"
10920 msgstr ""
10921
10922 #. type: verbatim
10923 #: ../src/guestfs-actions.pod:2902
10924 #, no-wrap
10925 msgid ""
10926 " char *\n"
10927 " guestfs_inspect_get_product_name (guestfs_h *g,\n"
10928 "                                   const char *root);\n"
10929 "\n"
10930 msgstr ""
10931
10932 #. type: textblock
10933 #: ../src/guestfs-actions.pod:2909 ../fish/guestfish-actions.pod:2003
10934 msgid ""
10935 "This returns the product name of the inspected operating system.  The "
10936 "product name is generally some freeform string which can be displayed to the "
10937 "user, but should not be parsed by programs."
10938 msgstr ""
10939
10940 #. type: textblock
10941 #: ../src/guestfs-actions.pod:2914 ../fish/guestfish-actions.pod:2008
10942 msgid ""
10943 "If the product name could not be determined, then the string C<unknown> is "
10944 "returned."
10945 msgstr ""
10946
10947 #. type: =head2
10948 #: ../src/guestfs-actions.pod:2924
10949 msgid "guestfs_inspect_get_product_variant"
10950 msgstr ""
10951
10952 #. type: verbatim
10953 #: ../src/guestfs-actions.pod:2926
10954 #, no-wrap
10955 msgid ""
10956 " char *\n"
10957 " guestfs_inspect_get_product_variant (guestfs_h *g,\n"
10958 "                                      const char *root);\n"
10959 "\n"
10960 msgstr ""
10961
10962 #. type: textblock
10963 #: ../src/guestfs-actions.pod:2933 ../fish/guestfish-actions.pod:2020
10964 #, fuzzy
10965 #| msgid "This is an installed operating system."
10966 msgid "This returns the product variant of the inspected operating system."
10967 msgstr "Це встановлена операційна система."
10968
10969 #. type: textblock
10970 #: ../src/guestfs-actions.pod:2936 ../fish/guestfish-actions.pod:2023
10971 msgid ""
10972 "For Windows guests, this returns the contents of the Registry key C<HKLM"
10973 "\\Software\\Microsoft\\Windows NT\\CurrentVersion> C<InstallationType> which "
10974 "is usually a string such as C<Client> or C<Server> (other values are "
10975 "possible).  This can be used to distinguish consumer and enterprise versions "
10976 "of Windows that have the same version number (for example, Windows 7 and "
10977 "Windows 2008 Server are both version 6.1, but the former is C<Client> and "
10978 "the latter is C<Server>)."
10979 msgstr ""
10980
10981 #. type: textblock
10982 #: ../src/guestfs-actions.pod:2945 ../fish/guestfish-actions.pod:2032
10983 msgid ""
10984 "For enterprise Linux guests, in future we intend this to return the product "
10985 "variant such as C<Desktop>, C<Server> and so on.  But this is not "
10986 "implemented at present."
10987 msgstr ""
10988
10989 #. type: textblock
10990 #: ../src/guestfs-actions.pod:2949 ../fish/guestfish-actions.pod:2036
10991 msgid ""
10992 "If the product variant could not be determined, then the string C<unknown> "
10993 "is returned."
10994 msgstr ""
10995
10996 #. type: textblock
10997 #: ../src/guestfs-actions.pod:2952
10998 msgid ""
10999 "Please read L<guestfs(3)/INSPECTION> for more details.  See also "
11000 "C<guestfs_inspect_get_product_name>, C<guestfs_inspect_get_major_version>."
11001 msgstr ""
11002
11003 #. type: =head2
11004 #: ../src/guestfs-actions.pod:2959
11005 msgid "guestfs_inspect_get_roots"
11006 msgstr ""
11007
11008 #. type: verbatim
11009 #: ../src/guestfs-actions.pod:2961
11010 #, no-wrap
11011 msgid ""
11012 " char **\n"
11013 " guestfs_inspect_get_roots (guestfs_h *g);\n"
11014 "\n"
11015 msgstr ""
11016
11017 #. type: textblock
11018 #: ../src/guestfs-actions.pod:2964
11019 msgid ""
11020 "This function is a convenient way to get the list of root devices, as "
11021 "returned from a previous call to C<guestfs_inspect_os>, but without redoing "
11022 "the whole inspection process."
11023 msgstr ""
11024
11025 #. type: textblock
11026 #: ../src/guestfs-actions.pod:2968
11027 msgid ""
11028 "This returns an empty list if either no root devices were found or the "
11029 "caller has not called C<guestfs_inspect_os>."
11030 msgstr ""
11031
11032 #. type: textblock
11033 #: ../src/guestfs-actions.pod:2977
11034 msgid "(Added in 1.7.3)"
11035 msgstr ""
11036
11037 #. type: =head2
11038 #: ../src/guestfs-actions.pod:2979
11039 msgid "guestfs_inspect_get_type"
11040 msgstr ""
11041
11042 #. type: verbatim
11043 #: ../src/guestfs-actions.pod:2981
11044 #, no-wrap
11045 msgid ""
11046 " char *\n"
11047 " guestfs_inspect_get_type (guestfs_h *g,\n"
11048 "                           const char *root);\n"
11049 "\n"
11050 msgstr ""
11051
11052 #. type: textblock
11053 #: ../src/guestfs-actions.pod:2988 ../fish/guestfish-actions.pod:2063
11054 msgid ""
11055 "This returns the type of the inspected operating system.  Currently defined "
11056 "types are:"
11057 msgstr ""
11058
11059 #. type: =item
11060 #: ../src/guestfs-actions.pod:2993 ../fish/guestfish-actions.pod:2068
11061 msgid "\"linux\""
11062 msgstr "\"linux\""
11063
11064 #. type: textblock
11065 #: ../src/guestfs-actions.pod:2995 ../fish/guestfish-actions.pod:2070
11066 msgid "Any Linux-based operating system."
11067 msgstr ""
11068
11069 #. type: textblock
11070 #: ../src/guestfs-actions.pod:2999 ../fish/guestfish-actions.pod:2074
11071 msgid "Any Microsoft Windows operating system."
11072 msgstr ""
11073
11074 #. type: =item
11075 #: ../src/guestfs-actions.pod:3001 ../fish/guestfish-actions.pod:2076
11076 msgid "\"freebsd\""
11077 msgstr "\"freebsd\""
11078
11079 #. type: textblock
11080 #: ../src/guestfs-actions.pod:3003 ../fish/guestfish-actions.pod:2078
11081 msgid "FreeBSD."
11082 msgstr "FreeBSD."
11083
11084 #. type: textblock
11085 #: ../src/guestfs-actions.pod:3007 ../fish/guestfish-actions.pod:2082
11086 msgid "The operating system type could not be determined."
11087 msgstr ""
11088
11089 #. type: =head2
11090 #: ../src/guestfs-actions.pod:3021
11091 msgid "guestfs_inspect_get_windows_current_control_set"
11092 msgstr ""
11093
11094 #. type: verbatim
11095 #: ../src/guestfs-actions.pod:3023
11096 #, no-wrap
11097 msgid ""
11098 " char *\n"
11099 " guestfs_inspect_get_windows_current_control_set (guestfs_h *g,\n"
11100 "                                                  const char *root);\n"
11101 "\n"
11102 msgstr ""
11103
11104 #. type: textblock
11105 #: ../src/guestfs-actions.pod:3030 ../fish/guestfish-actions.pod:2098
11106 msgid ""
11107 "This returns the Windows CurrentControlSet of the inspected guest.  The "
11108 "CurrentControlSet is a registry key name such as C<ControlSet001>."
11109 msgstr ""
11110
11111 #. type: textblock
11112 #: ../src/guestfs-actions.pod:3033 ../fish/guestfish-actions.pod:2101
11113 msgid ""
11114 "This call assumes that the guest is Windows and that the Registry could be "
11115 "examined by inspection.  If this is not the case then an error is returned."
11116 msgstr ""
11117
11118 #. type: =head2
11119 #: ../src/guestfs-actions.pod:3042
11120 msgid "guestfs_inspect_get_windows_systemroot"
11121 msgstr ""
11122
11123 #. type: verbatim
11124 #: ../src/guestfs-actions.pod:3044
11125 #, no-wrap
11126 msgid ""
11127 " char *\n"
11128 " guestfs_inspect_get_windows_systemroot (guestfs_h *g,\n"
11129 "                                         const char *root);\n"
11130 "\n"
11131 msgstr ""
11132
11133 #. type: textblock
11134 #: ../src/guestfs-actions.pod:3051 ../fish/guestfish-actions.pod:2114
11135 msgid ""
11136 "This returns the Windows systemroot of the inspected guest.  The systemroot "
11137 "is a directory path such as C</WINDOWS>."
11138 msgstr ""
11139
11140 #. type: textblock
11141 #: ../src/guestfs-actions.pod:3054 ../fish/guestfish-actions.pod:2117
11142 msgid ""
11143 "This call assumes that the guest is Windows and that the systemroot could be "
11144 "determined by inspection.  If this is not the case then an error is returned."
11145 msgstr ""
11146
11147 #. type: textblock
11148 #: ../src/guestfs-actions.pod:3063
11149 msgid "(Added in 1.5.25)"
11150 msgstr ""
11151
11152 #. type: =head2
11153 #: ../src/guestfs-actions.pod:3065
11154 msgid "guestfs_inspect_is_live"
11155 msgstr ""
11156
11157 #. type: verbatim
11158 #: ../src/guestfs-actions.pod:3067
11159 #, no-wrap
11160 msgid ""
11161 " int\n"
11162 " guestfs_inspect_is_live (guestfs_h *g,\n"
11163 "                          const char *root);\n"
11164 "\n"
11165 msgstr ""
11166
11167 #. type: textblock
11168 #: ../src/guestfs-actions.pod:3074
11169 msgid ""
11170 "If C<guestfs_inspect_get_format> returns C<installer> (this is an install "
11171 "disk), then this returns true if a live image was detected on the disk."
11172 msgstr ""
11173
11174 #. type: =head2
11175 #: ../src/guestfs-actions.pod:3082
11176 msgid "guestfs_inspect_is_multipart"
11177 msgstr ""
11178
11179 #. type: verbatim
11180 #: ../src/guestfs-actions.pod:3084
11181 #, no-wrap
11182 msgid ""
11183 " int\n"
11184 " guestfs_inspect_is_multipart (guestfs_h *g,\n"
11185 "                               const char *root);\n"
11186 "\n"
11187 msgstr ""
11188
11189 #. type: textblock
11190 #: ../src/guestfs-actions.pod:3091
11191 msgid ""
11192 "If C<guestfs_inspect_get_format> returns C<installer> (this is an install "
11193 "disk), then this returns true if the disk is part of a set."
11194 msgstr ""
11195
11196 #. type: =head2
11197 #: ../src/guestfs-actions.pod:3099
11198 msgid "guestfs_inspect_is_netinst"
11199 msgstr ""
11200
11201 #. type: verbatim
11202 #: ../src/guestfs-actions.pod:3101
11203 #, no-wrap
11204 msgid ""
11205 " int\n"
11206 " guestfs_inspect_is_netinst (guestfs_h *g,\n"
11207 "                             const char *root);\n"
11208 "\n"
11209 msgstr ""
11210
11211 #. type: textblock
11212 #: ../src/guestfs-actions.pod:3108
11213 msgid ""
11214 "If C<guestfs_inspect_get_format> returns C<installer> (this is an install "
11215 "disk), then this returns true if the disk is a network installer, ie. not a "
11216 "self-contained install CD but one which is likely to require network access "
11217 "to complete the install."
11218 msgstr ""
11219
11220 #. type: =head2
11221 #: ../src/guestfs-actions.pod:3118
11222 msgid "guestfs_inspect_list_applications"
11223 msgstr ""
11224
11225 #. type: verbatim
11226 #: ../src/guestfs-actions.pod:3120
11227 #, no-wrap
11228 msgid ""
11229 " struct guestfs_application_list *\n"
11230 " guestfs_inspect_list_applications (guestfs_h *g,\n"
11231 "                                    const char *root);\n"
11232 "\n"
11233 msgstr ""
11234
11235 #. type: textblock
11236 #: ../src/guestfs-actions.pod:3127 ../fish/guestfish-actions.pod:2171
11237 msgid "Return the list of applications installed in the operating system."
11238 msgstr ""
11239
11240 #. type: textblock
11241 #: ../src/guestfs-actions.pod:3129
11242 msgid ""
11243 "I<Note:> This call works differently from other parts of the inspection "
11244 "API.  You have to call C<guestfs_inspect_os>, then "
11245 "C<guestfs_inspect_get_mountpoints>, then mount up the disks, before calling "
11246 "this.  Listing applications is a significantly more difficult operation "
11247 "which requires access to the full filesystem.  Also note that unlike the "
11248 "other C<guestfs_inspect_get_*> calls which are just returning data cached in "
11249 "the libguestfs handle, this call actually reads parts of the mounted "
11250 "filesystems during the call."
11251 msgstr ""
11252
11253 #. type: textblock
11254 #: ../src/guestfs-actions.pod:3139 ../fish/guestfish-actions.pod:2183
11255 msgid ""
11256 "This returns an empty list if the inspection code was not able to determine "
11257 "the list of applications."
11258 msgstr ""
11259
11260 #. type: textblock
11261 #: ../src/guestfs-actions.pod:3142 ../fish/guestfish-actions.pod:2186
11262 msgid "The application structure contains the following fields:"
11263 msgstr ""
11264
11265 #. type: =item
11266 #: ../src/guestfs-actions.pod:3146 ../fish/guestfish-actions.pod:2190
11267 msgid "C<app_name>"
11268 msgstr "C<app_name>"
11269
11270 #. type: textblock
11271 #: ../src/guestfs-actions.pod:3148 ../fish/guestfish-actions.pod:2192
11272 msgid ""
11273 "The name of the application.  For Red Hat-derived and Debian-derived Linux "
11274 "guests, this is the package name."
11275 msgstr ""
11276
11277 #. type: =item
11278 #: ../src/guestfs-actions.pod:3151 ../fish/guestfish-actions.pod:2195
11279 msgid "C<app_display_name>"
11280 msgstr "C<app_display_name>"
11281
11282 #. type: textblock
11283 #: ../src/guestfs-actions.pod:3153 ../fish/guestfish-actions.pod:2197
11284 msgid ""
11285 "The display name of the application, sometimes localized to the install "
11286 "language of the guest operating system."
11287 msgstr ""
11288
11289 #. type: textblock
11290 #: ../src/guestfs-actions.pod:3156 ../fish/guestfish-actions.pod:2200
11291 msgid ""
11292 "If unavailable this is returned as an empty string C<\"\">.  Callers needing "
11293 "to display something can use C<app_name> instead."
11294 msgstr ""
11295
11296 #. type: =item
11297 #: ../src/guestfs-actions.pod:3159 ../fish/guestfish-actions.pod:2203
11298 msgid "C<app_epoch>"
11299 msgstr "C<app_epoch>"
11300
11301 #. type: textblock
11302 #: ../src/guestfs-actions.pod:3161 ../fish/guestfish-actions.pod:2205
11303 msgid ""
11304 "For package managers which use epochs, this contains the epoch of the "
11305 "package (an integer).  If unavailable, this is returned as C<0>."
11306 msgstr ""
11307
11308 #. type: =item
11309 #: ../src/guestfs-actions.pod:3164 ../fish/guestfish-actions.pod:2208
11310 msgid "C<app_version>"
11311 msgstr "C<app_version>"
11312
11313 #. type: textblock
11314 #: ../src/guestfs-actions.pod:3166 ../fish/guestfish-actions.pod:2210
11315 msgid ""
11316 "The version string of the application or package.  If unavailable this is "
11317 "returned as an empty string C<\"\">."
11318 msgstr ""
11319
11320 #. type: =item
11321 #: ../src/guestfs-actions.pod:3169 ../fish/guestfish-actions.pod:2213
11322 msgid "C<app_release>"
11323 msgstr "C<app_release>"
11324
11325 #. type: textblock
11326 #: ../src/guestfs-actions.pod:3171 ../fish/guestfish-actions.pod:2215
11327 msgid ""
11328 "The release string of the application or package, for package managers that "
11329 "use this.  If unavailable this is returned as an empty string C<\"\">."
11330 msgstr ""
11331
11332 #. type: =item
11333 #: ../src/guestfs-actions.pod:3175 ../fish/guestfish-actions.pod:2219
11334 msgid "C<app_install_path>"
11335 msgstr "C<app_install_path>"
11336
11337 #. type: textblock
11338 #: ../src/guestfs-actions.pod:3177 ../fish/guestfish-actions.pod:2221
11339 msgid ""
11340 "The installation path of the application (on operating systems such as "
11341 "Windows which use installation paths).  This path is in the format used by "
11342 "the guest operating system, it is not a libguestfs path."
11343 msgstr ""
11344
11345 #. type: textblock
11346 #: ../src/guestfs-actions.pod:3182 ../fish/guestfish-actions.pod:2226
11347 msgid "If unavailable this is returned as an empty string C<\"\">."
11348 msgstr ""
11349
11350 #. type: =item
11351 #: ../src/guestfs-actions.pod:3184 ../fish/guestfish-actions.pod:2228
11352 msgid "C<app_trans_path>"
11353 msgstr "C<app_trans_path>"
11354
11355 #. type: textblock
11356 #: ../src/guestfs-actions.pod:3186 ../fish/guestfish-actions.pod:2230
11357 msgid ""
11358 "The install path translated into a libguestfs path.  If unavailable this is "
11359 "returned as an empty string C<\"\">."
11360 msgstr ""
11361
11362 #. type: =item
11363 #: ../src/guestfs-actions.pod:3189 ../fish/guestfish-actions.pod:2233
11364 msgid "C<app_publisher>"
11365 msgstr "C<app_publisher>"
11366
11367 #. type: textblock
11368 #: ../src/guestfs-actions.pod:3191 ../fish/guestfish-actions.pod:2235
11369 msgid ""
11370 "The name of the publisher of the application, for package managers that use "
11371 "this.  If unavailable this is returned as an empty string C<\"\">."
11372 msgstr ""
11373
11374 #. type: =item
11375 #: ../src/guestfs-actions.pod:3195 ../fish/guestfish-actions.pod:2239
11376 msgid "C<app_url>"
11377 msgstr "C<app_url>"
11378
11379 #. type: textblock
11380 #: ../src/guestfs-actions.pod:3197 ../fish/guestfish-actions.pod:2241
11381 msgid ""
11382 "The URL (eg. upstream URL) of the application.  If unavailable this is "
11383 "returned as an empty string C<\"\">."
11384 msgstr ""
11385
11386 #. type: =item
11387 #: ../src/guestfs-actions.pod:3200 ../fish/guestfish-actions.pod:2244
11388 msgid "C<app_source_package>"
11389 msgstr ""
11390
11391 #. type: textblock
11392 #: ../src/guestfs-actions.pod:3202 ../fish/guestfish-actions.pod:2246
11393 msgid ""
11394 "For packaging systems which support this, the name of the source package.  "
11395 "If unavailable this is returned as an empty string C<\"\">."
11396 msgstr ""
11397
11398 #. type: =item
11399 #: ../src/guestfs-actions.pod:3205 ../fish/guestfish-actions.pod:2249
11400 msgid "C<app_summary>"
11401 msgstr ""
11402
11403 #. type: textblock
11404 #: ../src/guestfs-actions.pod:3207 ../fish/guestfish-actions.pod:2251
11405 msgid ""
11406 "A short (usually one line) description of the application or package.  If "
11407 "unavailable this is returned as an empty string C<\"\">."
11408 msgstr ""
11409
11410 #. type: =item
11411 #: ../src/guestfs-actions.pod:3210 ../fish/guestfish-actions.pod:2254
11412 msgid "C<app_description>"
11413 msgstr ""
11414
11415 #. type: textblock
11416 #: ../src/guestfs-actions.pod:3212 ../fish/guestfish-actions.pod:2256
11417 msgid ""
11418 "A longer description of the application or package.  If unavailable this is "
11419 "returned as an empty string C<\"\">."
11420 msgstr ""
11421
11422 #. type: textblock
11423 #: ../src/guestfs-actions.pod:3219
11424 msgid ""
11425 "This function returns a C<struct guestfs_application_list *>, or NULL if "
11426 "there was an error.  I<The caller must call C<guestfs_free_application_list> "
11427 "after use>."
11428 msgstr ""
11429
11430 #. type: textblock
11431 #: ../src/guestfs-actions.pod:3223
11432 msgid "(Added in 1.7.8)"
11433 msgstr ""
11434
11435 #. type: =head2
11436 #: ../src/guestfs-actions.pod:3225
11437 msgid "guestfs_inspect_os"
11438 msgstr ""
11439
11440 #. type: verbatim
11441 #: ../src/guestfs-actions.pod:3227
11442 #, no-wrap
11443 msgid ""
11444 " char **\n"
11445 " guestfs_inspect_os (guestfs_h *g);\n"
11446 "\n"
11447 msgstr ""
11448
11449 #. type: textblock
11450 #: ../src/guestfs-actions.pod:3230 ../fish/guestfish-actions.pod:2267
11451 msgid ""
11452 "This function uses other libguestfs functions and certain heuristics to "
11453 "inspect the disk(s) (usually disks belonging to a virtual machine), looking "
11454 "for operating systems."
11455 msgstr ""
11456
11457 #. type: textblock
11458 #: ../src/guestfs-actions.pod:3234 ../fish/guestfish-actions.pod:2271
11459 msgid "The list returned is empty if no operating systems were found."
11460 msgstr ""
11461
11462 #. type: textblock
11463 #: ../src/guestfs-actions.pod:3236 ../fish/guestfish-actions.pod:2273
11464 msgid ""
11465 "If one operating system was found, then this returns a list with a single "
11466 "element, which is the name of the root filesystem of this operating system.  "
11467 "It is also possible for this function to return a list containing more than "
11468 "one element, indicating a dual-boot or multi-boot virtual machine, with each "
11469 "element being the root filesystem of one of the operating systems."
11470 msgstr ""
11471
11472 #. type: textblock
11473 #: ../src/guestfs-actions.pod:3243
11474 msgid ""
11475 "You can pass the root string(s) returned to other C<guestfs_inspect_get_*> "
11476 "functions in order to query further information about each operating system, "
11477 "such as the name and version."
11478 msgstr ""
11479
11480 #. type: textblock
11481 #: ../src/guestfs-actions.pod:3248
11482 msgid ""
11483 "This function uses other libguestfs features such as C<guestfs_mount_ro> and "
11484 "C<guestfs_umount_all> in order to mount and unmount filesystems and look at "
11485 "the contents.  This should be called with no disks currently mounted.  The "
11486 "function may also use Augeas, so any existing Augeas handle will be closed."
11487 msgstr ""
11488
11489 #. type: textblock
11490 #: ../src/guestfs-actions.pod:3254 ../fish/guestfish-actions.pod:2291
11491 msgid ""
11492 "This function cannot decrypt encrypted disks.  The caller must do that first "
11493 "(supplying the necessary keys) if the disk is encrypted."
11494 msgstr ""
11495
11496 #. type: textblock
11497 #: ../src/guestfs-actions.pod:3260 ../src/guestfs-actions.pod:3550
11498 #: ../src/guestfs-actions.pod:3612
11499 msgid "See also C<guestfs_list_filesystems>."
11500 msgstr ""
11501
11502 #. type: =head2
11503 #: ../src/guestfs-actions.pod:3268
11504 msgid "guestfs_is_blockdev"
11505 msgstr ""
11506
11507 #. type: verbatim
11508 #: ../src/guestfs-actions.pod:3270
11509 #, no-wrap
11510 msgid ""
11511 " int\n"
11512 " guestfs_is_blockdev (guestfs_h *g,\n"
11513 "                      const char *path);\n"
11514 "\n"
11515 msgstr ""
11516
11517 #. type: textblock
11518 #: ../src/guestfs-actions.pod:3274 ../fish/guestfish-actions.pod:2303
11519 msgid ""
11520 "This returns C<true> if and only if there is a block device with the given "
11521 "C<path> name."
11522 msgstr ""
11523
11524 #. type: textblock
11525 #: ../src/guestfs-actions.pod:3277 ../src/guestfs-actions.pod:3306
11526 #: ../src/guestfs-actions.pod:3336 ../src/guestfs-actions.pod:3351
11527 #: ../src/guestfs-actions.pod:3367 ../src/guestfs-actions.pod:3423
11528 #: ../src/guestfs-actions.pod:3438
11529 msgid "See also C<guestfs_stat>."
11530 msgstr ""
11531
11532 #. type: textblock
11533 #: ../src/guestfs-actions.pod:3281 ../src/guestfs-actions.pod:3310
11534 #: ../src/guestfs-actions.pod:3355 ../src/guestfs-actions.pod:3427
11535 #: ../src/guestfs-actions.pod:3442
11536 msgid "(Added in 1.5.10)"
11537 msgstr ""
11538
11539 #. type: =head2
11540 #: ../src/guestfs-actions.pod:3283
11541 msgid "guestfs_is_busy"
11542 msgstr ""
11543
11544 #. type: verbatim
11545 #: ../src/guestfs-actions.pod:3285
11546 #, no-wrap
11547 msgid ""
11548 " int\n"
11549 " guestfs_is_busy (guestfs_h *g);\n"
11550 "\n"
11551 msgstr ""
11552
11553 #. type: textblock
11554 #: ../src/guestfs-actions.pod:3288 ../fish/guestfish-actions.pod:2312
11555 msgid ""
11556 "This returns true iff this handle is busy processing a command (in the "
11557 "C<BUSY> state)."
11558 msgstr ""
11559
11560 #. type: =head2
11561 #: ../src/guestfs-actions.pod:3297
11562 msgid "guestfs_is_chardev"
11563 msgstr ""
11564
11565 #. type: verbatim
11566 #: ../src/guestfs-actions.pod:3299
11567 #, no-wrap
11568 msgid ""
11569 " int\n"
11570 " guestfs_is_chardev (guestfs_h *g,\n"
11571 "                     const char *path);\n"
11572 "\n"
11573 msgstr ""
11574
11575 #. type: textblock
11576 #: ../src/guestfs-actions.pod:3303 ../fish/guestfish-actions.pod:2321
11577 msgid ""
11578 "This returns C<true> if and only if there is a character device with the "
11579 "given C<path> name."
11580 msgstr ""
11581
11582 #. type: =head2
11583 #: ../src/guestfs-actions.pod:3312
11584 msgid "guestfs_is_config"
11585 msgstr ""
11586
11587 #. type: verbatim
11588 #: ../src/guestfs-actions.pod:3314
11589 #, no-wrap
11590 msgid ""
11591 " int\n"
11592 " guestfs_is_config (guestfs_h *g);\n"
11593 "\n"
11594 msgstr ""
11595
11596 #. type: textblock
11597 #: ../src/guestfs-actions.pod:3317 ../fish/guestfish-actions.pod:2330
11598 msgid ""
11599 "This returns true iff this handle is being configured (in the C<CONFIG> "
11600 "state)."
11601 msgstr ""
11602
11603 #. type: =head2
11604 #: ../src/guestfs-actions.pod:3326
11605 msgid "guestfs_is_dir"
11606 msgstr ""
11607
11608 #. type: verbatim
11609 #: ../src/guestfs-actions.pod:3328
11610 #, no-wrap
11611 msgid ""
11612 " int\n"
11613 " guestfs_is_dir (guestfs_h *g,\n"
11614 "                 const char *path);\n"
11615 "\n"
11616 msgstr ""
11617
11618 #. type: textblock
11619 #: ../src/guestfs-actions.pod:3332 ../fish/guestfish-actions.pod:2339
11620 msgid ""
11621 "This returns C<true> if and only if there is a directory with the given "
11622 "C<path> name.  Note that it returns false for other objects like files."
11623 msgstr ""
11624
11625 #. type: =head2
11626 #: ../src/guestfs-actions.pod:3342
11627 msgid "guestfs_is_fifo"
11628 msgstr ""
11629
11630 #. type: verbatim
11631 #: ../src/guestfs-actions.pod:3344
11632 #, no-wrap
11633 msgid ""
11634 " int\n"
11635 " guestfs_is_fifo (guestfs_h *g,\n"
11636 "                  const char *path);\n"
11637 "\n"
11638 msgstr ""
11639
11640 #. type: textblock
11641 #: ../src/guestfs-actions.pod:3348 ../fish/guestfish-actions.pod:2349
11642 msgid ""
11643 "This returns C<true> if and only if there is a FIFO (named pipe)  with the "
11644 "given C<path> name."
11645 msgstr ""
11646
11647 #. type: =head2
11648 #: ../src/guestfs-actions.pod:3357
11649 msgid "guestfs_is_file"
11650 msgstr ""
11651
11652 #. type: verbatim
11653 #: ../src/guestfs-actions.pod:3359
11654 #, no-wrap
11655 msgid ""
11656 " int\n"
11657 " guestfs_is_file (guestfs_h *g,\n"
11658 "                  const char *path);\n"
11659 "\n"
11660 msgstr ""
11661
11662 #. type: textblock
11663 #: ../src/guestfs-actions.pod:3363 ../fish/guestfish-actions.pod:2358
11664 msgid ""
11665 "This returns C<true> if and only if there is a regular file with the given "
11666 "C<path> name.  Note that it returns false for other objects like directories."
11667 msgstr ""
11668
11669 #. type: =head2
11670 #: ../src/guestfs-actions.pod:3373
11671 msgid "guestfs_is_launching"
11672 msgstr ""
11673
11674 #. type: verbatim
11675 #: ../src/guestfs-actions.pod:3375
11676 #, no-wrap
11677 msgid ""
11678 " int\n"
11679 " guestfs_is_launching (guestfs_h *g);\n"
11680 "\n"
11681 msgstr ""
11682
11683 #. type: textblock
11684 #: ../src/guestfs-actions.pod:3378 ../fish/guestfish-actions.pod:2368
11685 msgid ""
11686 "This returns true iff this handle is launching the subprocess (in the "
11687 "C<LAUNCHING> state)."
11688 msgstr ""
11689
11690 #. type: =head2
11691 #: ../src/guestfs-actions.pod:3387
11692 msgid "guestfs_is_lv"
11693 msgstr ""
11694
11695 #. type: verbatim
11696 #: ../src/guestfs-actions.pod:3389
11697 #, no-wrap
11698 msgid ""
11699 " int\n"
11700 " guestfs_is_lv (guestfs_h *g,\n"
11701 "                const char *device);\n"
11702 "\n"
11703 msgstr ""
11704
11705 #. type: textblock
11706 #: ../src/guestfs-actions.pod:3393 ../fish/guestfish-actions.pod:2377
11707 msgid ""
11708 "This command tests whether C<device> is a logical volume, and returns true "
11709 "iff this is the case."
11710 msgstr ""
11711
11712 #. type: =head2
11713 #: ../src/guestfs-actions.pod:3400
11714 msgid "guestfs_is_ready"
11715 msgstr ""
11716
11717 #. type: verbatim
11718 #: ../src/guestfs-actions.pod:3402
11719 #, no-wrap
11720 msgid ""
11721 " int\n"
11722 " guestfs_is_ready (guestfs_h *g);\n"
11723 "\n"
11724 msgstr ""
11725
11726 #. type: textblock
11727 #: ../src/guestfs-actions.pod:3405 ../fish/guestfish-actions.pod:2384
11728 msgid ""
11729 "This returns true iff this handle is ready to accept commands (in the "
11730 "C<READY> state)."
11731 msgstr ""
11732
11733 #. type: =head2
11734 #: ../src/guestfs-actions.pod:3414
11735 msgid "guestfs_is_socket"
11736 msgstr ""
11737
11738 #. type: verbatim
11739 #: ../src/guestfs-actions.pod:3416
11740 #, no-wrap
11741 msgid ""
11742 " int\n"
11743 " guestfs_is_socket (guestfs_h *g,\n"
11744 "                    const char *path);\n"
11745 "\n"
11746 msgstr ""
11747
11748 #. type: textblock
11749 #: ../src/guestfs-actions.pod:3420 ../fish/guestfish-actions.pod:2393
11750 msgid ""
11751 "This returns C<true> if and only if there is a Unix domain socket with the "
11752 "given C<path> name."
11753 msgstr ""
11754
11755 #. type: =head2
11756 #: ../src/guestfs-actions.pod:3429
11757 msgid "guestfs_is_symlink"
11758 msgstr ""
11759
11760 #. type: verbatim
11761 #: ../src/guestfs-actions.pod:3431
11762 #, no-wrap
11763 msgid ""
11764 " int\n"
11765 " guestfs_is_symlink (guestfs_h *g,\n"
11766 "                     const char *path);\n"
11767 "\n"
11768 msgstr ""
11769
11770 #. type: textblock
11771 #: ../src/guestfs-actions.pod:3435 ../fish/guestfish-actions.pod:2402
11772 msgid ""
11773 "This returns C<true> if and only if there is a symbolic link with the given "
11774 "C<path> name."
11775 msgstr ""
11776
11777 #. type: =head2
11778 #: ../src/guestfs-actions.pod:3444
11779 msgid "guestfs_kill_subprocess"
11780 msgstr ""
11781
11782 #. type: verbatim
11783 #: ../src/guestfs-actions.pod:3446
11784 #, no-wrap
11785 msgid ""
11786 " int\n"
11787 " guestfs_kill_subprocess (guestfs_h *g);\n"
11788 "\n"
11789 msgstr ""
11790
11791 #. type: textblock
11792 #: ../src/guestfs-actions.pod:3449 ../fish/guestfish-actions.pod:2411
11793 msgid "This kills the qemu subprocess.  You should never need to call this."
11794 msgstr ""
11795
11796 #. type: =head2
11797 #: ../src/guestfs-actions.pod:3455
11798 msgid "guestfs_launch"
11799 msgstr ""
11800
11801 #. type: verbatim
11802 #: ../src/guestfs-actions.pod:3457
11803 #, no-wrap
11804 msgid ""
11805 " int\n"
11806 " guestfs_launch (guestfs_h *g);\n"
11807 "\n"
11808 msgstr ""
11809
11810 #. type: textblock
11811 #: ../src/guestfs-actions.pod:3460 ../fish/guestfish-actions.pod:2419
11812 msgid ""
11813 "Internally libguestfs is implemented by running a virtual machine using "
11814 "L<qemu(1)>."
11815 msgstr ""
11816
11817 #. type: textblock
11818 #: ../src/guestfs-actions.pod:3463 ../fish/guestfish-actions.pod:2422
11819 msgid ""
11820 "You should call this after configuring the handle (eg. adding drives) but "
11821 "before performing any actions."
11822 msgstr ""
11823
11824 #. type: =head2
11825 #: ../src/guestfs-actions.pod:3475
11826 msgid "guestfs_lchown"
11827 msgstr ""
11828
11829 #. type: verbatim
11830 #: ../src/guestfs-actions.pod:3477
11831 #, no-wrap
11832 msgid ""
11833 " int\n"
11834 " guestfs_lchown (guestfs_h *g,\n"
11835 "                 int owner,\n"
11836 "                 int group,\n"
11837 "                 const char *path);\n"
11838 "\n"
11839 msgstr ""
11840
11841 #. type: textblock
11842 #: ../src/guestfs-actions.pod:3483
11843 msgid ""
11844 "Change the file owner to C<owner> and group to C<group>.  This is like "
11845 "C<guestfs_chown> but if C<path> is a symlink then the link itself is "
11846 "changed, not the target."
11847 msgstr ""
11848
11849 #. type: =head2
11850 #: ../src/guestfs-actions.pod:3495
11851 msgid "guestfs_lgetxattr"
11852 msgstr ""
11853
11854 #. type: verbatim
11855 #: ../src/guestfs-actions.pod:3497
11856 #, no-wrap
11857 msgid ""
11858 " char *\n"
11859 " guestfs_lgetxattr (guestfs_h *g,\n"
11860 "                    const char *path,\n"
11861 "                    const char *name,\n"
11862 "                    size_t *size_r);\n"
11863 "\n"
11864 msgstr ""
11865
11866 #. type: textblock
11867 #: ../src/guestfs-actions.pod:3503 ../fish/guestfish-actions.pod:2441
11868 msgid ""
11869 "Get a single extended attribute from file C<path> named C<name>.  If C<path> "
11870 "is a symlink, then this call returns an extended attribute from the symlink."
11871 msgstr ""
11872
11873 #. type: textblock
11874 #: ../src/guestfs-actions.pod:3517
11875 msgid "See also: C<guestfs_lgetxattrs>, C<guestfs_getxattr>, L<attr(5)>."
11876 msgstr ""
11877
11878 #. type: =head2
11879 #: ../src/guestfs-actions.pod:3525
11880 msgid "guestfs_lgetxattrs"
11881 msgstr ""
11882
11883 #. type: verbatim
11884 #: ../src/guestfs-actions.pod:3527
11885 #, no-wrap
11886 msgid ""
11887 " struct guestfs_xattr_list *\n"
11888 " guestfs_lgetxattrs (guestfs_h *g,\n"
11889 "                     const char *path);\n"
11890 "\n"
11891 msgstr ""
11892
11893 #. type: textblock
11894 #: ../src/guestfs-actions.pod:3531
11895 msgid ""
11896 "This is the same as C<guestfs_getxattrs>, but if C<path> is a symbolic link, "
11897 "then it returns the extended attributes of the link itself."
11898 msgstr ""
11899
11900 #. type: =head2
11901 #: ../src/guestfs-actions.pod:3541
11902 msgid "guestfs_list_devices"
11903 msgstr ""
11904
11905 #. type: verbatim
11906 #: ../src/guestfs-actions.pod:3543
11907 #, no-wrap
11908 msgid ""
11909 " char **\n"
11910 " guestfs_list_devices (guestfs_h *g);\n"
11911 "\n"
11912 msgstr ""
11913
11914 #. type: textblock
11915 #: ../src/guestfs-actions.pod:3546 ../fish/guestfish-actions.pod:2469
11916 msgid "List all the block devices."
11917 msgstr ""
11918
11919 #. type: textblock
11920 #: ../src/guestfs-actions.pod:3548 ../fish/guestfish-actions.pod:2471
11921 msgid "The full block device names are returned, eg. C</dev/sda>."
11922 msgstr ""
11923
11924 #. type: =head2
11925 #: ../src/guestfs-actions.pod:3558
11926 msgid "guestfs_list_filesystems"
11927 msgstr ""
11928
11929 #. type: verbatim
11930 #: ../src/guestfs-actions.pod:3560
11931 #, no-wrap
11932 msgid ""
11933 " char **\n"
11934 " guestfs_list_filesystems (guestfs_h *g);\n"
11935 "\n"
11936 msgstr ""
11937
11938 #. type: textblock
11939 #: ../src/guestfs-actions.pod:3563 ../fish/guestfish-actions.pod:2479
11940 msgid ""
11941 "This inspection command looks for filesystems on partitions, block devices "
11942 "and logical volumes, returning a list of devices containing filesystems and "
11943 "their type."
11944 msgstr ""
11945
11946 #. type: textblock
11947 #: ../src/guestfs-actions.pod:3567 ../fish/guestfish-actions.pod:2483
11948 msgid ""
11949 "The return value is a hash, where the keys are the devices containing "
11950 "filesystems, and the values are the filesystem types.  For example:"
11951 msgstr ""
11952
11953 #. type: verbatim
11954 #: ../src/guestfs-actions.pod:3571 ../fish/guestfish-actions.pod:2487
11955 #, no-wrap
11956 msgid ""
11957 " \"/dev/sda1\" => \"ntfs\"\n"
11958 " \"/dev/sda2\" => \"ext2\"\n"
11959 " \"/dev/vg_guest/lv_root\" => \"ext4\"\n"
11960 " \"/dev/vg_guest/lv_swap\" => \"swap\"\n"
11961 "\n"
11962 msgstr ""
11963
11964 #. type: textblock
11965 #: ../src/guestfs-actions.pod:3576 ../fish/guestfish-actions.pod:2492
11966 msgid ""
11967 "The value can have the special value \"unknown\", meaning the content of the "
11968 "device is undetermined or empty.  \"swap\" means a Linux swap partition."
11969 msgstr ""
11970
11971 #. type: textblock
11972 #: ../src/guestfs-actions.pod:3580
11973 msgid ""
11974 "This command runs other libguestfs commands, which might include "
11975 "C<guestfs_mount> and C<guestfs_umount>, and therefore you should use this "
11976 "soon after launch and only when nothing is mounted."
11977 msgstr ""
11978
11979 #. type: textblock
11980 #: ../src/guestfs-actions.pod:3584
11981 msgid ""
11982 "Not all of the filesystems returned will be mountable.  In particular, swap "
11983 "partitions are returned in the list.  Also this command does not check that "
11984 "each filesystem found is valid and mountable, and some filesystems might be "
11985 "mountable but require special options.  Filesystems may not all belong to a "
11986 "single logical operating system (use C<guestfs_inspect_os> to look for OSes)."
11987 msgstr ""
11988
11989 #. type: textblock
11990 #: ../src/guestfs-actions.pod:3598 ../src/guestfs-actions.pod:5203
11991 msgid "(Added in 1.5.15)"
11992 msgstr ""
11993
11994 #. type: =head2
11995 #: ../src/guestfs-actions.pod:3600
11996 msgid "guestfs_list_partitions"
11997 msgstr ""
11998
11999 #. type: verbatim
12000 #: ../src/guestfs-actions.pod:3602
12001 #, no-wrap
12002 msgid ""
12003 " char **\n"
12004 " guestfs_list_partitions (guestfs_h *g);\n"
12005 "\n"
12006 msgstr ""
12007
12008 #. type: textblock
12009 #: ../src/guestfs-actions.pod:3605 ../fish/guestfish-actions.pod:2512
12010 msgid "List all the partitions detected on all block devices."
12011 msgstr ""
12012
12013 #. type: textblock
12014 #: ../src/guestfs-actions.pod:3607 ../fish/guestfish-actions.pod:2514
12015 msgid "The full partition device names are returned, eg. C</dev/sda1>"
12016 msgstr ""
12017
12018 #. type: textblock
12019 #: ../src/guestfs-actions.pod:3609
12020 msgid ""
12021 "This does not return logical volumes.  For that you will need to call "
12022 "C<guestfs_lvs>."
12023 msgstr ""
12024
12025 #. type: =head2
12026 #: ../src/guestfs-actions.pod:3620
12027 msgid "guestfs_ll"
12028 msgstr ""
12029
12030 #. type: verbatim
12031 #: ../src/guestfs-actions.pod:3622
12032 #, no-wrap
12033 msgid ""
12034 " char *\n"
12035 " guestfs_ll (guestfs_h *g,\n"
12036 "             const char *directory);\n"
12037 "\n"
12038 msgstr ""
12039
12040 #. type: textblock
12041 #: ../src/guestfs-actions.pod:3626 ../fish/guestfish-actions.pod:2525
12042 msgid ""
12043 "List the files in C<directory> (relative to the root directory, there is no "
12044 "cwd) in the format of 'ls -la'."
12045 msgstr ""
12046
12047 #. type: textblock
12048 #: ../src/guestfs-actions.pod:3629 ../fish/guestfish-actions.pod:2528
12049 msgid ""
12050 "This command is mostly useful for interactive sessions.  It is I<not> "
12051 "intended that you try to parse the output string."
12052 msgstr ""
12053
12054 #. type: =head2
12055 #: ../src/guestfs-actions.pod:3637
12056 msgid "guestfs_ln"
12057 msgstr ""
12058
12059 #. type: verbatim
12060 #: ../src/guestfs-actions.pod:3639
12061 #, no-wrap
12062 msgid ""
12063 " int\n"
12064 " guestfs_ln (guestfs_h *g,\n"
12065 "             const char *target,\n"
12066 "             const char *linkname);\n"
12067 "\n"
12068 msgstr ""
12069
12070 #. type: textblock
12071 #: ../src/guestfs-actions.pod:3644 ../fish/guestfish-actions.pod:2535
12072 msgid "This command creates a hard link using the C<ln> command."
12073 msgstr ""
12074
12075 #. type: =head2
12076 #: ../src/guestfs-actions.pod:3650
12077 msgid "guestfs_ln_f"
12078 msgstr ""
12079
12080 #. type: verbatim
12081 #: ../src/guestfs-actions.pod:3652
12082 #, no-wrap
12083 msgid ""
12084 " int\n"
12085 " guestfs_ln_f (guestfs_h *g,\n"
12086 "               const char *target,\n"
12087 "               const char *linkname);\n"
12088 "\n"
12089 msgstr ""
12090
12091 #. type: textblock
12092 #: ../src/guestfs-actions.pod:3657 ../fish/guestfish-actions.pod:2541
12093 msgid ""
12094 "This command creates a hard link using the C<ln -f> command.  The C<-f> "
12095 "option removes the link (C<linkname>) if it exists already."
12096 msgstr ""
12097
12098 #. type: =head2
12099 #: ../src/guestfs-actions.pod:3664
12100 msgid "guestfs_ln_s"
12101 msgstr ""
12102
12103 #. type: verbatim
12104 #: ../src/guestfs-actions.pod:3666
12105 #, no-wrap
12106 msgid ""
12107 " int\n"
12108 " guestfs_ln_s (guestfs_h *g,\n"
12109 "               const char *target,\n"
12110 "               const char *linkname);\n"
12111 "\n"
12112 msgstr ""
12113
12114 #. type: textblock
12115 #: ../src/guestfs-actions.pod:3671 ../fish/guestfish-actions.pod:2548
12116 msgid "This command creates a symbolic link using the C<ln -s> command."
12117 msgstr ""
12118
12119 #. type: =head2
12120 #: ../src/guestfs-actions.pod:3677
12121 msgid "guestfs_ln_sf"
12122 msgstr ""
12123
12124 #. type: verbatim
12125 #: ../src/guestfs-actions.pod:3679
12126 #, no-wrap
12127 msgid ""
12128 " int\n"
12129 " guestfs_ln_sf (guestfs_h *g,\n"
12130 "                const char *target,\n"
12131 "                const char *linkname);\n"
12132 "\n"
12133 msgstr ""
12134
12135 #. type: textblock
12136 #: ../src/guestfs-actions.pod:3684 ../fish/guestfish-actions.pod:2554
12137 msgid ""
12138 "This command creates a symbolic link using the C<ln -sf> command, The C<-f> "
12139 "option removes the link (C<linkname>) if it exists already."
12140 msgstr ""
12141
12142 #. type: =head2
12143 #: ../src/guestfs-actions.pod:3691
12144 msgid "guestfs_lremovexattr"
12145 msgstr ""
12146
12147 #. type: verbatim
12148 #: ../src/guestfs-actions.pod:3693
12149 #, no-wrap
12150 msgid ""
12151 " int\n"
12152 " guestfs_lremovexattr (guestfs_h *g,\n"
12153 "                       const char *xattr,\n"
12154 "                       const char *path);\n"
12155 "\n"
12156 msgstr ""
12157
12158 #. type: textblock
12159 #: ../src/guestfs-actions.pod:3698
12160 msgid ""
12161 "This is the same as C<guestfs_removexattr>, but if C<path> is a symbolic "
12162 "link, then it removes an extended attribute of the link itself."
12163 msgstr ""
12164
12165 #. type: =head2
12166 #: ../src/guestfs-actions.pod:3706
12167 msgid "guestfs_ls"
12168 msgstr ""
12169
12170 #. type: verbatim
12171 #: ../src/guestfs-actions.pod:3708
12172 #, no-wrap
12173 msgid ""
12174 " char **\n"
12175 " guestfs_ls (guestfs_h *g,\n"
12176 "             const char *directory);\n"
12177 "\n"
12178 msgstr ""
12179
12180 #. type: textblock
12181 #: ../src/guestfs-actions.pod:3712 ../fish/guestfish-actions.pod:2569
12182 msgid ""
12183 "List the files in C<directory> (relative to the root directory, there is no "
12184 "cwd).  The '.' and '..' entries are not returned, but hidden files are shown."
12185 msgstr ""
12186
12187 #. type: textblock
12188 #: ../src/guestfs-actions.pod:3716
12189 msgid ""
12190 "This command is mostly useful for interactive sessions.  Programs should "
12191 "probably use C<guestfs_readdir> instead."
12192 msgstr ""
12193
12194 #. type: =head2
12195 #: ../src/guestfs-actions.pod:3725
12196 msgid "guestfs_lsetxattr"
12197 msgstr ""
12198
12199 #. type: verbatim
12200 #: ../src/guestfs-actions.pod:3727
12201 #, no-wrap
12202 msgid ""
12203 " int\n"
12204 " guestfs_lsetxattr (guestfs_h *g,\n"
12205 "                    const char *xattr,\n"
12206 "                    const char *val,\n"
12207 "                    int vallen,\n"
12208 "                    const char *path);\n"
12209 "\n"
12210 msgstr ""
12211
12212 #. type: textblock
12213 #: ../src/guestfs-actions.pod:3734
12214 msgid ""
12215 "This is the same as C<guestfs_setxattr>, but if C<path> is a symbolic link, "
12216 "then it sets an extended attribute of the link itself."
12217 msgstr ""
12218
12219 #. type: =head2
12220 #: ../src/guestfs-actions.pod:3742
12221 msgid "guestfs_lstat"
12222 msgstr ""
12223
12224 #. type: verbatim
12225 #: ../src/guestfs-actions.pod:3744
12226 #, no-wrap
12227 msgid ""
12228 " struct guestfs_stat *\n"
12229 " guestfs_lstat (guestfs_h *g,\n"
12230 "                const char *path);\n"
12231 "\n"
12232 msgstr ""
12233
12234 #. type: textblock
12235 #: ../src/guestfs-actions.pod:3748 ../src/guestfs-actions.pod:6306
12236 #: ../fish/guestfish-actions.pod:2588 ../fish/guestfish-actions.pod:4257
12237 msgid "Returns file information for the given C<path>."
12238 msgstr ""
12239
12240 #. type: textblock
12241 #: ../src/guestfs-actions.pod:3750
12242 msgid ""
12243 "This is the same as C<guestfs_stat> except that if C<path> is a symbolic "
12244 "link, then the link is stat-ed, not the file it refers to."
12245 msgstr ""
12246
12247 #. type: textblock
12248 #: ../src/guestfs-actions.pod:3754 ../fish/guestfish-actions.pod:2594
12249 msgid "This is the same as the C<lstat(2)> system call."
12250 msgstr ""
12251
12252 #. type: textblock
12253 #: ../src/guestfs-actions.pod:3756 ../src/guestfs-actions.pod:6310
12254 msgid ""
12255 "This function returns a C<struct guestfs_stat *>, or NULL if there was an "
12256 "error.  I<The caller must call C<guestfs_free_stat> after use>."
12257 msgstr ""
12258
12259 #. type: textblock
12260 #: ../src/guestfs-actions.pod:3760 ../src/guestfs-actions.pod:6314
12261 #: ../src/guestfs-actions.pod:6332 ../src/guestfs-actions.pod:6713
12262 msgid "(Added in 0.9.2)"
12263 msgstr ""
12264
12265 #. type: =head2
12266 #: ../src/guestfs-actions.pod:3762
12267 msgid "guestfs_lstatlist"
12268 msgstr ""
12269
12270 #. type: verbatim
12271 #: ../src/guestfs-actions.pod:3764
12272 #, no-wrap
12273 msgid ""
12274 " struct guestfs_stat_list *\n"
12275 " guestfs_lstatlist (guestfs_h *g,\n"
12276 "                    const char *path,\n"
12277 "                    char *const *names);\n"
12278 "\n"
12279 msgstr ""
12280
12281 #. type: textblock
12282 #: ../src/guestfs-actions.pod:3769
12283 msgid ""
12284 "This call allows you to perform the C<guestfs_lstat> operation on multiple "
12285 "files, where all files are in the directory C<path>.  C<names> is the list "
12286 "of files from this directory."
12287 msgstr ""
12288
12289 #. type: textblock
12290 #: ../src/guestfs-actions.pod:3773 ../fish/guestfish-actions.pod:2604
12291 msgid ""
12292 "On return you get a list of stat structs, with a one-to-one correspondence "
12293 "to the C<names> list.  If any name did not exist or could not be lstat'd, "
12294 "then the C<ino> field of that structure is set to C<-1>."
12295 msgstr ""
12296
12297 #. type: textblock
12298 #: ../src/guestfs-actions.pod:3778
12299 msgid ""
12300 "This call is intended for programs that want to efficiently list a directory "
12301 "contents without making many round-trips.  See also C<guestfs_lxattrlist> "
12302 "for a similarly efficient call for getting extended attributes.  Very long "
12303 "directory listings might cause the protocol message size to be exceeded, "
12304 "causing this call to fail.  The caller must split up such requests into "
12305 "smaller groups of names."
12306 msgstr ""
12307
12308 #. type: textblock
12309 #: ../src/guestfs-actions.pod:3786
12310 msgid ""
12311 "This function returns a C<struct guestfs_stat_list *>, or NULL if there was "
12312 "an error.  I<The caller must call C<guestfs_free_stat_list> after use>."
12313 msgstr ""
12314
12315 #. type: =head2
12316 #: ../src/guestfs-actions.pod:3792
12317 msgid "guestfs_luks_add_key"
12318 msgstr ""
12319
12320 #. type: verbatim
12321 #: ../src/guestfs-actions.pod:3794
12322 #, no-wrap
12323 msgid ""
12324 " int\n"
12325 " guestfs_luks_add_key (guestfs_h *g,\n"
12326 "                       const char *device,\n"
12327 "                       const char *key,\n"
12328 "                       const char *newkey,\n"
12329 "                       int keyslot);\n"
12330 "\n"
12331 msgstr ""
12332
12333 #. type: textblock
12334 #: ../src/guestfs-actions.pod:3801 ../fish/guestfish-actions.pod:2621
12335 msgid ""
12336 "This command adds a new key on LUKS device C<device>.  C<key> is any "
12337 "existing key, and is used to access the device.  C<newkey> is the new key to "
12338 "add.  C<keyslot> is the key slot that will be replaced."
12339 msgstr ""
12340
12341 #. type: textblock
12342 #: ../src/guestfs-actions.pod:3806
12343 msgid ""
12344 "Note that if C<keyslot> already contains a key, then this command will "
12345 "fail.  You have to use C<guestfs_luks_kill_slot> first to remove that key."
12346 msgstr ""
12347
12348 #. type: textblock
12349 #: ../src/guestfs-actions.pod:3812 ../src/guestfs-actions.pod:3852
12350 #: ../src/guestfs-actions.pod:3875 ../src/guestfs-actions.pod:3895
12351 #: ../src/guestfs-actions.pod:3927 ../src/guestfs-actions.pod:3946
12352 msgid ""
12353 "This function takes a key or passphrase parameter which could contain "
12354 "sensitive material.  Read the section L</KEYS AND PASSPHRASES> for more "
12355 "information."
12356 msgstr ""
12357
12358 #. type: textblock
12359 #: ../src/guestfs-actions.pod:3816 ../src/guestfs-actions.pod:3856
12360 #: ../src/guestfs-actions.pod:3879 ../src/guestfs-actions.pod:3899
12361 msgid "(Added in 1.5.2)"
12362 msgstr ""
12363
12364 #. type: =head2
12365 #: ../src/guestfs-actions.pod:3818
12366 msgid "guestfs_luks_close"
12367 msgstr ""
12368
12369 #. type: verbatim
12370 #: ../src/guestfs-actions.pod:3820
12371 #, no-wrap
12372 msgid ""
12373 " int\n"
12374 " guestfs_luks_close (guestfs_h *g,\n"
12375 "                     const char *device);\n"
12376 "\n"
12377 msgstr ""
12378
12379 #. type: textblock
12380 #: ../src/guestfs-actions.pod:3824
12381 msgid ""
12382 "This closes a LUKS device that was created earlier by C<guestfs_luks_open> "
12383 "or C<guestfs_luks_open_ro>.  The C<device> parameter must be the name of the "
12384 "LUKS mapping device (ie. C</dev/mapper/mapname>) and I<not> the name of the "
12385 "underlying block device."
12386 msgstr ""
12387
12388 #. type: textblock
12389 #: ../src/guestfs-actions.pod:3832 ../src/guestfs-actions.pod:3931
12390 #: ../src/guestfs-actions.pod:3950 ../src/guestfs-actions.pod:4000
12391 #: ../src/guestfs-actions.pod:4048
12392 msgid "(Added in 1.5.1)"
12393 msgstr ""
12394
12395 #. type: =head2
12396 #: ../src/guestfs-actions.pod:3834
12397 msgid "guestfs_luks_format"
12398 msgstr ""
12399
12400 #. type: verbatim
12401 #: ../src/guestfs-actions.pod:3836
12402 #, no-wrap
12403 msgid ""
12404 " int\n"
12405 " guestfs_luks_format (guestfs_h *g,\n"
12406 "                      const char *device,\n"
12407 "                      const char *key,\n"
12408 "                      int keyslot);\n"
12409 "\n"
12410 msgstr ""
12411
12412 #. type: textblock
12413 #: ../src/guestfs-actions.pod:3842 ../fish/guestfish-actions.pod:2647
12414 msgid ""
12415 "This command erases existing data on C<device> and formats the device as a "
12416 "LUKS encrypted device.  C<key> is the initial key, which is added to key "
12417 "slot C<slot>.  (LUKS supports 8 key slots, numbered 0-7)."
12418 msgstr ""
12419
12420 #. type: textblock
12421 #: ../src/guestfs-actions.pod:3849 ../src/guestfs-actions.pod:3872
12422 #: ../src/guestfs-actions.pod:4012 ../src/guestfs-actions.pod:4954
12423 #: ../src/guestfs-actions.pod:5734 ../src/guestfs-actions.pod:6141
12424 #: ../src/guestfs-actions.pod:6164 ../src/guestfs-actions.pod:6190
12425 #: ../src/guestfs-actions.pod:7350 ../fish/guestfish-actions.pod:2655
12426 #: ../fish/guestfish-actions.pod:2668 ../fish/guestfish-actions.pod:2752
12427 #: ../fish/guestfish-actions.pod:3326 ../fish/guestfish-actions.pod:3846
12428 #: ../fish/guestfish-actions.pod:4156 ../fish/guestfish-actions.pod:4172
12429 #: ../fish/guestfish-actions.pod:4187 ../fish/guestfish-actions.pod:4902
12430 msgid ""
12431 "B<This command is dangerous.  Without careful use you can easily destroy all "
12432 "your data>."
12433 msgstr ""
12434
12435 #. type: =head2
12436 #: ../src/guestfs-actions.pod:3858
12437 msgid "guestfs_luks_format_cipher"
12438 msgstr ""
12439
12440 #. type: verbatim
12441 #: ../src/guestfs-actions.pod:3860
12442 #, no-wrap
12443 msgid ""
12444 " int\n"
12445 " guestfs_luks_format_cipher (guestfs_h *g,\n"
12446 "                             const char *device,\n"
12447 "                             const char *key,\n"
12448 "                             int keyslot,\n"
12449 "                             const char *cipher);\n"
12450 "\n"
12451 msgstr ""
12452
12453 #. type: textblock
12454 #: ../src/guestfs-actions.pod:3867
12455 msgid ""
12456 "This command is the same as C<guestfs_luks_format> but it also allows you to "
12457 "set the C<cipher> used."
12458 msgstr ""
12459
12460 #. type: =head2
12461 #: ../src/guestfs-actions.pod:3881
12462 msgid "guestfs_luks_kill_slot"
12463 msgstr ""
12464
12465 #. type: verbatim
12466 #: ../src/guestfs-actions.pod:3883
12467 #, no-wrap
12468 msgid ""
12469 " int\n"
12470 " guestfs_luks_kill_slot (guestfs_h *g,\n"
12471 "                         const char *device,\n"
12472 "                         const char *key,\n"
12473 "                         int keyslot);\n"
12474 "\n"
12475 msgstr ""
12476
12477 #. type: textblock
12478 #: ../src/guestfs-actions.pod:3889 ../fish/guestfish-actions.pod:2675
12479 msgid ""
12480 "This command deletes the key in key slot C<keyslot> from the encrypted LUKS "
12481 "device C<device>.  C<key> must be one of the I<other> keys."
12482 msgstr ""
12483
12484 #. type: =head2
12485 #: ../src/guestfs-actions.pod:3901
12486 msgid "guestfs_luks_open"
12487 msgstr ""
12488
12489 #. type: verbatim
12490 #: ../src/guestfs-actions.pod:3903
12491 #, no-wrap
12492 msgid ""
12493 " int\n"
12494 " guestfs_luks_open (guestfs_h *g,\n"
12495 "                    const char *device,\n"
12496 "                    const char *key,\n"
12497 "                    const char *mapname);\n"
12498 "\n"
12499 msgstr ""
12500
12501 #. type: textblock
12502 #: ../src/guestfs-actions.pod:3909 ../fish/guestfish-actions.pod:2686
12503 msgid ""
12504 "This command opens a block device which has been encrypted according to the "
12505 "Linux Unified Key Setup (LUKS) standard."
12506 msgstr ""
12507
12508 #. type: textblock
12509 #: ../src/guestfs-actions.pod:3912 ../fish/guestfish-actions.pod:2689
12510 msgid "C<device> is the encrypted block device or partition."
12511 msgstr ""
12512
12513 #. type: textblock
12514 #: ../src/guestfs-actions.pod:3914 ../fish/guestfish-actions.pod:2691
12515 msgid ""
12516 "The caller must supply one of the keys associated with the LUKS block "
12517 "device, in the C<key> parameter."
12518 msgstr ""
12519
12520 #. type: textblock
12521 #: ../src/guestfs-actions.pod:3917 ../fish/guestfish-actions.pod:2694
12522 msgid ""
12523 "This creates a new block device called C</dev/mapper/mapname>.  Reads and "
12524 "writes to this block device are decrypted from and encrypted to the "
12525 "underlying C<device> respectively."
12526 msgstr ""
12527
12528 #. type: textblock
12529 #: ../src/guestfs-actions.pod:3921
12530 msgid ""
12531 "If this block device contains LVM volume groups, then calling "
12532 "C<guestfs_vgscan> followed by C<guestfs_vg_activate_all> will make them "
12533 "visible."
12534 msgstr ""
12535
12536 #. type: =head2
12537 #: ../src/guestfs-actions.pod:3933
12538 msgid "guestfs_luks_open_ro"
12539 msgstr ""
12540
12541 #. type: verbatim
12542 #: ../src/guestfs-actions.pod:3935
12543 #, no-wrap
12544 msgid ""
12545 " int\n"
12546 " guestfs_luks_open_ro (guestfs_h *g,\n"
12547 "                       const char *device,\n"
12548 "                       const char *key,\n"
12549 "                       const char *mapname);\n"
12550 "\n"
12551 msgstr ""
12552
12553 #. type: textblock
12554 #: ../src/guestfs-actions.pod:3941
12555 msgid ""
12556 "This is the same as C<guestfs_luks_open> except that a read-only mapping is "
12557 "created."
12558 msgstr ""
12559
12560 #. type: =head2
12561 #: ../src/guestfs-actions.pod:3952
12562 msgid "guestfs_lvcreate"
12563 msgstr ""
12564
12565 #. type: verbatim
12566 #: ../src/guestfs-actions.pod:3954
12567 #, no-wrap
12568 msgid ""
12569 " int\n"
12570 " guestfs_lvcreate (guestfs_h *g,\n"
12571 "                   const char *logvol,\n"
12572 "                   const char *volgroup,\n"
12573 "                   int mbytes);\n"
12574 "\n"
12575 msgstr ""
12576
12577 #. type: textblock
12578 #: ../src/guestfs-actions.pod:3960 ../fish/guestfish-actions.pod:2719
12579 msgid ""
12580 "This creates an LVM logical volume called C<logvol> on the volume group "
12581 "C<volgroup>, with C<size> megabytes."
12582 msgstr ""
12583
12584 #. type: =head2
12585 #: ../src/guestfs-actions.pod:3967
12586 msgid "guestfs_lvm_canonical_lv_name"
12587 msgstr ""
12588
12589 #. type: verbatim
12590 #: ../src/guestfs-actions.pod:3969
12591 #, no-wrap
12592 msgid ""
12593 " char *\n"
12594 " guestfs_lvm_canonical_lv_name (guestfs_h *g,\n"
12595 "                                const char *lvname);\n"
12596 "\n"
12597 msgstr ""
12598
12599 #. type: textblock
12600 #: ../src/guestfs-actions.pod:3973 ../fish/guestfish-actions.pod:2726
12601 msgid ""
12602 "This converts alternative naming schemes for LVs that you might find to the "
12603 "canonical name.  For example, C</dev/mapper/VG-LV> is converted to C</dev/VG/"
12604 "LV>."
12605 msgstr ""
12606
12607 #. type: textblock
12608 #: ../src/guestfs-actions.pod:3977 ../fish/guestfish-actions.pod:2730
12609 msgid ""
12610 "This command returns an error if the C<lvname> parameter does not refer to a "
12611 "logical volume."
12612 msgstr ""
12613
12614 #. type: textblock
12615 #: ../src/guestfs-actions.pod:3980
12616 msgid "See also C<guestfs_is_lv>."
12617 msgstr ""
12618
12619 #. type: textblock
12620 #: ../src/guestfs-actions.pod:3985
12621 msgid "(Added in 1.5.24)"
12622 msgstr ""
12623
12624 #. type: =head2
12625 #: ../src/guestfs-actions.pod:3987
12626 msgid "guestfs_lvm_clear_filter"
12627 msgstr ""
12628
12629 #. type: verbatim
12630 #: ../src/guestfs-actions.pod:3989
12631 #, no-wrap
12632 msgid ""
12633 " int\n"
12634 " guestfs_lvm_clear_filter (guestfs_h *g);\n"
12635 "\n"
12636 msgstr ""
12637
12638 #. type: textblock
12639 #: ../src/guestfs-actions.pod:3992
12640 msgid ""
12641 "This undoes the effect of C<guestfs_lvm_set_filter>.  LVM will be able to "
12642 "see every block device."
12643 msgstr ""
12644
12645 #. type: textblock
12646 #: ../src/guestfs-actions.pod:3995 ../src/guestfs-actions.pod:4037
12647 #: ../fish/guestfish-actions.pod:2742 ../fish/guestfish-actions.pod:2773
12648 msgid ""
12649 "This command also clears the LVM cache and performs a volume group scan."
12650 msgstr ""
12651
12652 #. type: =head2
12653 #: ../src/guestfs-actions.pod:4002
12654 msgid "guestfs_lvm_remove_all"
12655 msgstr ""
12656
12657 #. type: verbatim
12658 #: ../src/guestfs-actions.pod:4004
12659 #, no-wrap
12660 msgid ""
12661 " int\n"
12662 " guestfs_lvm_remove_all (guestfs_h *g);\n"
12663 "\n"
12664 msgstr ""
12665
12666 #. type: textblock
12667 #: ../src/guestfs-actions.pod:4007 ../fish/guestfish-actions.pod:2749
12668 msgid ""
12669 "This command removes all LVM logical volumes, volume groups and physical "
12670 "volumes."
12671 msgstr ""
12672
12673 #. type: =head2
12674 #: ../src/guestfs-actions.pod:4017
12675 msgid "guestfs_lvm_set_filter"
12676 msgstr ""
12677
12678 #. type: verbatim
12679 #: ../src/guestfs-actions.pod:4019
12680 #, no-wrap
12681 msgid ""
12682 " int\n"
12683 " guestfs_lvm_set_filter (guestfs_h *g,\n"
12684 "                         char *const *devices);\n"
12685 "\n"
12686 msgstr ""
12687
12688 #. type: textblock
12689 #: ../src/guestfs-actions.pod:4023 ../fish/guestfish-actions.pod:2759
12690 msgid ""
12691 "This sets the LVM device filter so that LVM will only be able to \"see\" the "
12692 "block devices in the list C<devices>, and will ignore all other attached "
12693 "block devices."
12694 msgstr ""
12695
12696 #. type: textblock
12697 #: ../src/guestfs-actions.pod:4027 ../fish/guestfish-actions.pod:2763
12698 msgid ""
12699 "Where disk image(s) contain duplicate PVs or VGs, this command is useful to "
12700 "get LVM to ignore the duplicates, otherwise LVM can get confused.  Note also "
12701 "there are two types of duplication possible: either cloned PVs/VGs which "
12702 "have identical UUIDs; or VGs that are not cloned but just happen to have the "
12703 "same name.  In normal operation you cannot create this situation, but you "
12704 "can do it outside LVM, eg.  by cloning disk images or by bit twiddling "
12705 "inside the LVM metadata."
12706 msgstr ""
12707
12708 #. type: textblock
12709 #: ../src/guestfs-actions.pod:4040 ../fish/guestfish-actions.pod:2776
12710 msgid "You can filter whole block devices or individual partitions."
12711 msgstr ""
12712
12713 #. type: textblock
12714 #: ../src/guestfs-actions.pod:4042 ../fish/guestfish-actions.pod:2778
12715 msgid ""
12716 "You cannot use this if any VG is currently in use (eg.  contains a mounted "
12717 "filesystem), even if you are not filtering out that VG."
12718 msgstr ""
12719
12720 #. type: =head2
12721 #: ../src/guestfs-actions.pod:4050
12722 msgid "guestfs_lvremove"
12723 msgstr ""
12724
12725 #. type: verbatim
12726 #: ../src/guestfs-actions.pod:4052
12727 #, no-wrap
12728 msgid ""
12729 " int\n"
12730 " guestfs_lvremove (guestfs_h *g,\n"
12731 "                   const char *device);\n"
12732 "\n"
12733 msgstr ""
12734
12735 #. type: textblock
12736 #: ../src/guestfs-actions.pod:4056 ../fish/guestfish-actions.pod:2786
12737 msgid ""
12738 "Remove an LVM logical volume C<device>, where C<device> is the path to the "
12739 "LV, such as C</dev/VG/LV>."
12740 msgstr ""
12741
12742 #. type: textblock
12743 #: ../src/guestfs-actions.pod:4059 ../fish/guestfish-actions.pod:2789
12744 msgid ""
12745 "You can also remove all LVs in a volume group by specifying the VG name, C</"
12746 "dev/VG>."
12747 msgstr ""
12748
12749 #. type: textblock
12750 #: ../src/guestfs-actions.pod:4064 ../src/guestfs-actions.pod:5300
12751 #: ../src/guestfs-actions.pod:7089
12752 msgid "(Added in 1.0.13)"
12753 msgstr ""
12754
12755 #. type: =head2
12756 #: ../src/guestfs-actions.pod:4066
12757 msgid "guestfs_lvrename"
12758 msgstr ""
12759
12760 #. type: verbatim
12761 #: ../src/guestfs-actions.pod:4068
12762 #, no-wrap
12763 msgid ""
12764 " int\n"
12765 " guestfs_lvrename (guestfs_h *g,\n"
12766 "                   const char *logvol,\n"
12767 "                   const char *newlogvol);\n"
12768 "\n"
12769 msgstr ""
12770
12771 #. type: textblock
12772 #: ../src/guestfs-actions.pod:4073 ../fish/guestfish-actions.pod:2796
12773 msgid "Rename a logical volume C<logvol> with the new name C<newlogvol>."
12774 msgstr ""
12775
12776 #. type: textblock
12777 #: ../src/guestfs-actions.pod:4077 ../src/guestfs-actions.pod:7102
12778 msgid "(Added in 1.0.83)"
12779 msgstr ""
12780
12781 #. type: =head2
12782 #: ../src/guestfs-actions.pod:4079
12783 msgid "guestfs_lvresize"
12784 msgstr ""
12785
12786 #. type: verbatim
12787 #: ../src/guestfs-actions.pod:4081
12788 #, no-wrap
12789 msgid ""
12790 " int\n"
12791 " guestfs_lvresize (guestfs_h *g,\n"
12792 "                   const char *device,\n"
12793 "                   int mbytes);\n"
12794 "\n"
12795 msgstr ""
12796
12797 #. type: textblock
12798 #: ../src/guestfs-actions.pod:4086 ../fish/guestfish-actions.pod:2802
12799 msgid ""
12800 "This resizes (expands or shrinks) an existing LVM logical volume to "
12801 "C<mbytes>.  When reducing, data in the reduced part is lost."
12802 msgstr ""
12803
12804 #. type: =head2
12805 #: ../src/guestfs-actions.pod:4094
12806 msgid "guestfs_lvresize_free"
12807 msgstr ""
12808
12809 #. type: verbatim
12810 #: ../src/guestfs-actions.pod:4096
12811 #, no-wrap
12812 msgid ""
12813 " int\n"
12814 " guestfs_lvresize_free (guestfs_h *g,\n"
12815 "                        const char *lv,\n"
12816 "                        int percent);\n"
12817 "\n"
12818 msgstr ""
12819
12820 #. type: textblock
12821 #: ../src/guestfs-actions.pod:4101 ../fish/guestfish-actions.pod:2810
12822 msgid ""
12823 "This expands an existing logical volume C<lv> so that it fills C<pc>% of the "
12824 "remaining free space in the volume group.  Commonly you would call this with "
12825 "pc = 100 which expands the logical volume as much as possible, using all "
12826 "remaining free space in the volume group."
12827 msgstr ""
12828
12829 #. type: textblock
12830 #: ../src/guestfs-actions.pod:4109
12831 msgid "(Added in 1.3.3)"
12832 msgstr ""
12833
12834 #. type: =head2
12835 #: ../src/guestfs-actions.pod:4111
12836 msgid "guestfs_lvs"
12837 msgstr ""
12838
12839 #. type: verbatim
12840 #: ../src/guestfs-actions.pod:4113
12841 #, no-wrap
12842 msgid ""
12843 " char **\n"
12844 " guestfs_lvs (guestfs_h *g);\n"
12845 "\n"
12846 msgstr ""
12847
12848 #. type: textblock
12849 #: ../src/guestfs-actions.pod:4116 ../fish/guestfish-actions.pod:2820
12850 msgid ""
12851 "List all the logical volumes detected.  This is the equivalent of the L<lvs"
12852 "(8)> command."
12853 msgstr ""
12854
12855 #. type: textblock
12856 #: ../src/guestfs-actions.pod:4119 ../fish/guestfish-actions.pod:2823
12857 msgid ""
12858 "This returns a list of the logical volume device names (eg. C</dev/"
12859 "VolGroup00/LogVol00>)."
12860 msgstr ""
12861
12862 #. type: textblock
12863 #: ../src/guestfs-actions.pod:4122
12864 msgid "See also C<guestfs_lvs_full>, C<guestfs_list_filesystems>."
12865 msgstr ""
12866
12867 #. type: =head2
12868 #: ../src/guestfs-actions.pod:4130
12869 msgid "guestfs_lvs_full"
12870 msgstr ""
12871
12872 #. type: verbatim
12873 #: ../src/guestfs-actions.pod:4132
12874 #, no-wrap
12875 msgid ""
12876 " struct guestfs_lvm_lv_list *\n"
12877 " guestfs_lvs_full (guestfs_h *g);\n"
12878 "\n"
12879 msgstr ""
12880
12881 #. type: textblock
12882 #: ../src/guestfs-actions.pod:4135 ../fish/guestfish-actions.pod:2832
12883 msgid ""
12884 "List all the logical volumes detected.  This is the equivalent of the L<lvs"
12885 "(8)> command.  The \"full\" version includes all fields."
12886 msgstr ""
12887
12888 #. type: textblock
12889 #: ../src/guestfs-actions.pod:4138
12890 msgid ""
12891 "This function returns a C<struct guestfs_lvm_lv_list *>, or NULL if there "
12892 "was an error.  I<The caller must call C<guestfs_free_lvm_lv_list> after use>."
12893 msgstr ""
12894
12895 #. type: =head2
12896 #: ../src/guestfs-actions.pod:4144
12897 msgid "guestfs_lvuuid"
12898 msgstr ""
12899
12900 #. type: verbatim
12901 #: ../src/guestfs-actions.pod:4146
12902 #, no-wrap
12903 msgid ""
12904 " char *\n"
12905 " guestfs_lvuuid (guestfs_h *g,\n"
12906 "                 const char *device);\n"
12907 "\n"
12908 msgstr ""
12909
12910 #. type: textblock
12911 #: ../src/guestfs-actions.pod:4150 ../fish/guestfish-actions.pod:2839
12912 msgid "This command returns the UUID of the LVM LV C<device>."
12913 msgstr ""
12914
12915 #. type: =head2
12916 #: ../src/guestfs-actions.pod:4157
12917 msgid "guestfs_lxattrlist"
12918 msgstr ""
12919
12920 #. type: verbatim
12921 #: ../src/guestfs-actions.pod:4159
12922 #, no-wrap
12923 msgid ""
12924 " struct guestfs_xattr_list *\n"
12925 " guestfs_lxattrlist (guestfs_h *g,\n"
12926 "                     const char *path,\n"
12927 "                     char *const *names);\n"
12928 "\n"
12929 msgstr ""
12930
12931 #. type: textblock
12932 #: ../src/guestfs-actions.pod:4164 ../fish/guestfish-actions.pod:2845
12933 msgid ""
12934 "This call allows you to get the extended attributes of multiple files, where "
12935 "all files are in the directory C<path>.  C<names> is the list of files from "
12936 "this directory."
12937 msgstr ""
12938
12939 #. type: textblock
12940 #: ../src/guestfs-actions.pod:4168 ../fish/guestfish-actions.pod:2849
12941 msgid ""
12942 "On return you get a flat list of xattr structs which must be interpreted "
12943 "sequentially.  The first xattr struct always has a zero-length C<attrname>.  "
12944 "C<attrval> in this struct is zero-length to indicate there was an error "
12945 "doing C<lgetxattr> for this file, I<or> is a C string which is a decimal "
12946 "number (the number of following attributes for this file, which could be C<"
12947 "\"0\">).  Then after the first xattr struct are the zero or more attributes "
12948 "for the first named file.  This repeats for the second and subsequent files."
12949 msgstr ""
12950
12951 #. type: textblock
12952 #: ../src/guestfs-actions.pod:4178
12953 msgid ""
12954 "This call is intended for programs that want to efficiently list a directory "
12955 "contents without making many round-trips.  See also C<guestfs_lstatlist> for "
12956 "a similarly efficient call for getting standard stats.  Very long directory "
12957 "listings might cause the protocol message size to be exceeded, causing this "
12958 "call to fail.  The caller must split up such requests into smaller groups of "
12959 "names."
12960 msgstr ""
12961
12962 #. type: =head2
12963 #: ../src/guestfs-actions.pod:4192
12964 msgid "guestfs_mkdir"
12965 msgstr ""
12966
12967 #. type: verbatim
12968 #: ../src/guestfs-actions.pod:4194
12969 #, no-wrap
12970 msgid ""
12971 " int\n"
12972 " guestfs_mkdir (guestfs_h *g,\n"
12973 "                const char *path);\n"
12974 "\n"
12975 msgstr ""
12976
12977 #. type: textblock
12978 #: ../src/guestfs-actions.pod:4198 ../fish/guestfish-actions.pod:2871
12979 msgid "Create a directory named C<path>."
12980 msgstr ""
12981
12982 #. type: =head2
12983 #: ../src/guestfs-actions.pod:4204
12984 msgid "guestfs_mkdir_mode"
12985 msgstr ""
12986
12987 #. type: verbatim
12988 #: ../src/guestfs-actions.pod:4206
12989 #, no-wrap
12990 msgid ""
12991 " int\n"
12992 " guestfs_mkdir_mode (guestfs_h *g,\n"
12993 "                     const char *path,\n"
12994 "                     int mode);\n"
12995 "\n"
12996 msgstr ""
12997
12998 #. type: textblock
12999 #: ../src/guestfs-actions.pod:4211 ../fish/guestfish-actions.pod:2877
13000 msgid ""
13001 "This command creates a directory, setting the initial permissions of the "
13002 "directory to C<mode>."
13003 msgstr ""
13004
13005 #. type: textblock
13006 #: ../src/guestfs-actions.pod:4214 ../fish/guestfish-actions.pod:2880
13007 msgid ""
13008 "For common Linux filesystems, the actual mode which is set will be C<mode & "
13009 "~umask & 01777>.  Non-native-Linux filesystems may interpret the mode in "
13010 "other ways."
13011 msgstr ""
13012
13013 #. type: textblock
13014 #: ../src/guestfs-actions.pod:4218
13015 msgid "See also C<guestfs_mkdir>, C<guestfs_umask>"
13016 msgstr ""
13017
13018 #. type: =head2
13019 #: ../src/guestfs-actions.pod:4224
13020 msgid "guestfs_mkdir_p"
13021 msgstr ""
13022
13023 #. type: verbatim
13024 #: ../src/guestfs-actions.pod:4226
13025 #, no-wrap
13026 msgid ""
13027 " int\n"
13028 " guestfs_mkdir_p (guestfs_h *g,\n"
13029 "                  const char *path);\n"
13030 "\n"
13031 msgstr ""
13032
13033 #. type: textblock
13034 #: ../src/guestfs-actions.pod:4230 ../fish/guestfish-actions.pod:2890
13035 msgid ""
13036 "Create a directory named C<path>, creating any parent directories as "
13037 "necessary.  This is like the C<mkdir -p> shell command."
13038 msgstr ""
13039
13040 #. type: =head2
13041 #: ../src/guestfs-actions.pod:4237
13042 msgid "guestfs_mkdtemp"
13043 msgstr ""
13044
13045 #. type: verbatim
13046 #: ../src/guestfs-actions.pod:4239
13047 #, no-wrap
13048 msgid ""
13049 " char *\n"
13050 " guestfs_mkdtemp (guestfs_h *g,\n"
13051 "                  const char *template);\n"
13052 "\n"
13053 msgstr ""
13054
13055 #. type: textblock
13056 #: ../src/guestfs-actions.pod:4243 ../fish/guestfish-actions.pod:2897
13057 msgid ""
13058 "This command creates a temporary directory.  The C<template> parameter "
13059 "should be a full pathname for the temporary directory name with the final "
13060 "six characters being \"XXXXXX\"."
13061 msgstr ""
13062
13063 #. type: textblock
13064 #: ../src/guestfs-actions.pod:4248 ../fish/guestfish-actions.pod:2902
13065 msgid ""
13066 "For example: \"/tmp/myprogXXXXXX\" or \"/Temp/myprogXXXXXX\", the second one "
13067 "being suitable for Windows filesystems."
13068 msgstr ""
13069
13070 #. type: textblock
13071 #: ../src/guestfs-actions.pod:4251 ../fish/guestfish-actions.pod:2905
13072 msgid "The name of the temporary directory that was created is returned."
13073 msgstr ""
13074
13075 #. type: textblock
13076 #: ../src/guestfs-actions.pod:4254 ../fish/guestfish-actions.pod:2908
13077 msgid "The temporary directory is created with mode 0700 and is owned by root."
13078 msgstr ""
13079
13080 #. type: textblock
13081 #: ../src/guestfs-actions.pod:4257 ../fish/guestfish-actions.pod:2911
13082 msgid ""
13083 "The caller is responsible for deleting the temporary directory and its "
13084 "contents after use."
13085 msgstr ""
13086
13087 #. type: textblock
13088 #: ../src/guestfs-actions.pod:4260 ../fish/guestfish-actions.pod:2914
13089 msgid "See also: L<mkdtemp(3)>"
13090 msgstr ""
13091
13092 #. type: =head2
13093 #: ../src/guestfs-actions.pod:4267
13094 msgid "guestfs_mke2fs_J"
13095 msgstr ""
13096
13097 #. type: verbatim
13098 #: ../src/guestfs-actions.pod:4269
13099 #, no-wrap
13100 msgid ""
13101 " int\n"
13102 " guestfs_mke2fs_J (guestfs_h *g,\n"
13103 "                   const char *fstype,\n"
13104 "                   int blocksize,\n"
13105 "                   const char *device,\n"
13106 "                   const char *journal);\n"
13107 "\n"
13108 msgstr ""
13109
13110 #. type: textblock
13111 #: ../src/guestfs-actions.pod:4276 ../fish/guestfish-actions.pod:2920
13112 msgid ""
13113 "This creates an ext2/3/4 filesystem on C<device> with an external journal on "
13114 "C<journal>.  It is equivalent to the command:"
13115 msgstr ""
13116
13117 #. type: verbatim
13118 #: ../src/guestfs-actions.pod:4280 ../fish/guestfish-actions.pod:2924
13119 #, no-wrap
13120 msgid ""
13121 " mke2fs -t fstype -b blocksize -J device=<journal> <device>\n"
13122 "\n"
13123 msgstr ""
13124
13125 #. type: textblock
13126 #: ../src/guestfs-actions.pod:4282
13127 msgid "See also C<guestfs_mke2journal>."
13128 msgstr ""
13129
13130 #. type: textblock
13131 #: ../src/guestfs-actions.pod:4286 ../src/guestfs-actions.pod:4304
13132 #: ../src/guestfs-actions.pod:4322 ../src/guestfs-actions.pod:4338
13133 #: ../src/guestfs-actions.pod:4352 ../src/guestfs-actions.pod:4366
13134 #: ../src/guestfs-actions.pod:4425 ../src/guestfs-actions.pod:4690
13135 msgid "(Added in 1.0.68)"
13136 msgstr ""
13137
13138 #. type: =head2
13139 #: ../src/guestfs-actions.pod:4288
13140 msgid "guestfs_mke2fs_JL"
13141 msgstr ""
13142
13143 #. type: verbatim
13144 #: ../src/guestfs-actions.pod:4290
13145 #, no-wrap
13146 msgid ""
13147 " int\n"
13148 " guestfs_mke2fs_JL (guestfs_h *g,\n"
13149 "                    const char *fstype,\n"
13150 "                    int blocksize,\n"
13151 "                    const char *device,\n"
13152 "                    const char *label);\n"
13153 "\n"
13154 msgstr ""
13155
13156 #. type: textblock
13157 #: ../src/guestfs-actions.pod:4297 ../fish/guestfish-actions.pod:2932
13158 msgid ""
13159 "This creates an ext2/3/4 filesystem on C<device> with an external journal on "
13160 "the journal labeled C<label>."
13161 msgstr ""
13162
13163 #. type: textblock
13164 #: ../src/guestfs-actions.pod:4300
13165 msgid "See also C<guestfs_mke2journal_L>."
13166 msgstr ""
13167
13168 #. type: =head2
13169 #: ../src/guestfs-actions.pod:4306
13170 msgid "guestfs_mke2fs_JU"
13171 msgstr ""
13172
13173 #. type: verbatim
13174 #: ../src/guestfs-actions.pod:4308
13175 #, no-wrap
13176 msgid ""
13177 " int\n"
13178 " guestfs_mke2fs_JU (guestfs_h *g,\n"
13179 "                    const char *fstype,\n"
13180 "                    int blocksize,\n"
13181 "                    const char *device,\n"
13182 "                    const char *uuid);\n"
13183 "\n"
13184 msgstr ""
13185
13186 #. type: textblock
13187 #: ../src/guestfs-actions.pod:4315 ../fish/guestfish-actions.pod:2941
13188 msgid ""
13189 "This creates an ext2/3/4 filesystem on C<device> with an external journal on "
13190 "the journal with UUID C<uuid>."
13191 msgstr ""
13192
13193 #. type: textblock
13194 #: ../src/guestfs-actions.pod:4318
13195 msgid "See also C<guestfs_mke2journal_U>."
13196 msgstr ""
13197
13198 #. type: =head2
13199 #: ../src/guestfs-actions.pod:4324
13200 msgid "guestfs_mke2journal"
13201 msgstr ""
13202
13203 #. type: verbatim
13204 #: ../src/guestfs-actions.pod:4326
13205 #, no-wrap
13206 msgid ""
13207 " int\n"
13208 " guestfs_mke2journal (guestfs_h *g,\n"
13209 "                      int blocksize,\n"
13210 "                      const char *device);\n"
13211 "\n"
13212 msgstr ""
13213
13214 #. type: textblock
13215 #: ../src/guestfs-actions.pod:4331 ../fish/guestfish-actions.pod:2950
13216 msgid ""
13217 "This creates an ext2 external journal on C<device>.  It is equivalent to the "
13218 "command:"
13219 msgstr ""
13220
13221 #. type: verbatim
13222 #: ../src/guestfs-actions.pod:4334 ../fish/guestfish-actions.pod:2953
13223 #, no-wrap
13224 msgid ""
13225 " mke2fs -O journal_dev -b blocksize device\n"
13226 "\n"
13227 msgstr ""
13228
13229 #. type: =head2
13230 #: ../src/guestfs-actions.pod:4340
13231 msgid "guestfs_mke2journal_L"
13232 msgstr ""
13233
13234 #. type: verbatim
13235 #: ../src/guestfs-actions.pod:4342
13236 #, no-wrap
13237 msgid ""
13238 " int\n"
13239 " guestfs_mke2journal_L (guestfs_h *g,\n"
13240 "                        int blocksize,\n"
13241 "                        const char *label,\n"
13242 "                        const char *device);\n"
13243 "\n"
13244 msgstr ""
13245
13246 #. type: textblock
13247 #: ../src/guestfs-actions.pod:4348 ../fish/guestfish-actions.pod:2959
13248 msgid "This creates an ext2 external journal on C<device> with label C<label>."
13249 msgstr ""
13250
13251 #. type: =head2
13252 #: ../src/guestfs-actions.pod:4354
13253 msgid "guestfs_mke2journal_U"
13254 msgstr ""
13255
13256 #. type: verbatim
13257 #: ../src/guestfs-actions.pod:4356
13258 #, no-wrap
13259 msgid ""
13260 " int\n"
13261 " guestfs_mke2journal_U (guestfs_h *g,\n"
13262 "                        int blocksize,\n"
13263 "                        const char *uuid,\n"
13264 "                        const char *device);\n"
13265 "\n"
13266 msgstr ""
13267
13268 #. type: textblock
13269 #: ../src/guestfs-actions.pod:4362 ../fish/guestfish-actions.pod:2965
13270 msgid "This creates an ext2 external journal on C<device> with UUID C<uuid>."
13271 msgstr ""
13272
13273 #. type: =head2
13274 #: ../src/guestfs-actions.pod:4368
13275 msgid "guestfs_mkfifo"
13276 msgstr ""
13277
13278 #. type: verbatim
13279 #: ../src/guestfs-actions.pod:4370
13280 #, no-wrap
13281 msgid ""
13282 " int\n"
13283 " guestfs_mkfifo (guestfs_h *g,\n"
13284 "                 int mode,\n"
13285 "                 const char *path);\n"
13286 "\n"
13287 msgstr ""
13288
13289 #. type: textblock
13290 #: ../src/guestfs-actions.pod:4375
13291 msgid ""
13292 "This call creates a FIFO (named pipe) called C<path> with mode C<mode>.  It "
13293 "is just a convenient wrapper around C<guestfs_mknod>."
13294 msgstr ""
13295
13296 #. type: =head2
13297 #: ../src/guestfs-actions.pod:4385
13298 msgid "guestfs_mkfs"
13299 msgstr ""
13300
13301 #. type: verbatim
13302 #: ../src/guestfs-actions.pod:4387
13303 #, no-wrap
13304 msgid ""
13305 " int\n"
13306 " guestfs_mkfs (guestfs_h *g,\n"
13307 "               const char *fstype,\n"
13308 "               const char *device);\n"
13309 "\n"
13310 msgstr ""
13311
13312 #. type: textblock
13313 #: ../src/guestfs-actions.pod:4392 ../fish/guestfish-actions.pod:2981
13314 msgid ""
13315 "This creates a filesystem on C<device> (usually a partition or LVM logical "
13316 "volume).  The filesystem type is C<fstype>, for example C<ext3>."
13317 msgstr ""
13318
13319 #. type: =head2
13320 #: ../src/guestfs-actions.pod:4400
13321 msgid "guestfs_mkfs_b"
13322 msgstr ""
13323
13324 #. type: verbatim
13325 #: ../src/guestfs-actions.pod:4402
13326 #, no-wrap
13327 msgid ""
13328 " int\n"
13329 " guestfs_mkfs_b (guestfs_h *g,\n"
13330 "                 const char *fstype,\n"
13331 "                 int blocksize,\n"
13332 "                 const char *device);\n"
13333 "\n"
13334 msgstr ""
13335
13336 #. type: textblock
13337 #: ../src/guestfs-actions.pod:4408
13338 msgid ""
13339 "This call is similar to C<guestfs_mkfs>, but it allows you to control the "
13340 "block size of the resulting filesystem.  Supported block sizes depend on the "
13341 "filesystem type, but typically they are C<1024>, C<2048> or C<4096> only."
13342 msgstr ""
13343
13344 #. type: textblock
13345 #: ../src/guestfs-actions.pod:4413 ../src/guestfs-actions.pod:4456
13346 #: ../fish/guestfish-actions.pod:2994 ../fish/guestfish-actions.pod:3021
13347 msgid ""
13348 "For VFAT and NTFS the C<blocksize> parameter is treated as the requested "
13349 "cluster size."
13350 msgstr ""
13351
13352 #. type: textblock
13353 #: ../src/guestfs-actions.pod:4418 ../fish/guestfish-actions.pod:2997
13354 msgid ""
13355 "This function is deprecated.  In new code, use the C<mkfs_opts> call instead."
13356 msgstr ""
13357
13358 #. type: =head2
13359 #: ../src/guestfs-actions.pod:4427
13360 msgid "guestfs_mkfs_opts"
13361 msgstr ""
13362
13363 #. type: verbatim
13364 #: ../src/guestfs-actions.pod:4429
13365 #, no-wrap
13366 msgid ""
13367 " int\n"
13368 " guestfs_mkfs_opts (guestfs_h *g,\n"
13369 "                    const char *fstype,\n"
13370 "                    const char *device,\n"
13371 "                    ...);\n"
13372 "\n"
13373 msgstr ""
13374
13375 #. type: verbatim
13376 #: ../src/guestfs-actions.pod:4440
13377 #, no-wrap
13378 msgid ""
13379 " GUESTFS_MKFS_OPTS_BLOCKSIZE, int blocksize,\n"
13380 " GUESTFS_MKFS_OPTS_FEATURES, const char *features,\n"
13381 "\n"
13382 msgstr ""
13383
13384 #. type: textblock
13385 #: ../src/guestfs-actions.pod:4443 ../fish/guestfish-actions.pod:3008
13386 msgid ""
13387 "This function creates a filesystem on C<device>.  The filesystem type is "
13388 "C<fstype>, for example C<ext3>."
13389 msgstr ""
13390
13391 #. type: =item
13392 #: ../src/guestfs-actions.pod:4450 ../fish/guestfish-actions.pod:3015
13393 msgid "C<blocksize>"
13394 msgstr ""
13395
13396 #. type: textblock
13397 #: ../src/guestfs-actions.pod:4452 ../fish/guestfish-actions.pod:3017
13398 msgid ""
13399 "The filesystem block size.  Supported block sizes depend on the filesystem "
13400 "type, but typically they are C<1024>, C<2048> or C<4096> for Linux ext2/3 "
13401 "filesystems."
13402 msgstr ""
13403
13404 #. type: textblock
13405 #: ../src/guestfs-actions.pod:4459 ../fish/guestfish-actions.pod:3024
13406 msgid "For UFS block sizes, please see L<mkfs.ufs(8)>."
13407 msgstr ""
13408
13409 #. type: =item
13410 #: ../src/guestfs-actions.pod:4461 ../fish/guestfish-actions.pod:3026
13411 msgid "C<features>"
13412 msgstr ""
13413
13414 #. type: textblock
13415 #: ../src/guestfs-actions.pod:4463 ../fish/guestfish-actions.pod:3028
13416 msgid "This passes the C<-O> parameter to the external mkfs program."
13417 msgstr ""
13418
13419 #. type: textblock
13420 #: ../src/guestfs-actions.pod:4465 ../fish/guestfish-actions.pod:3030
13421 msgid ""
13422 "For certain filesystem types, this allows extra filesystem features to be "
13423 "selected.  See L<mke2fs(8)> and L<mkfs.ufs(8)> for more details."
13424 msgstr ""
13425
13426 #. type: textblock
13427 #: ../src/guestfs-actions.pod:4469 ../fish/guestfish-actions.pod:3034
13428 msgid ""
13429 "You cannot use this optional parameter with the C<gfs> or C<gfs2> filesystem "
13430 "type."
13431 msgstr ""
13432
13433 #. type: textblock
13434 #: ../src/guestfs-actions.pod:4476
13435 msgid "(Added in 1.7.19)"
13436 msgstr ""
13437
13438 #. type: =head2
13439 #: ../src/guestfs-actions.pod:4478
13440 msgid "guestfs_mkfs_opts_va"
13441 msgstr ""
13442
13443 #. type: verbatim
13444 #: ../src/guestfs-actions.pod:4480
13445 #, no-wrap
13446 msgid ""
13447 " int\n"
13448 " guestfs_mkfs_opts_va (guestfs_h *g,\n"
13449 "                       const char *fstype,\n"
13450 "                       const char *device,\n"
13451 "                       va_list args);\n"
13452 "\n"
13453 msgstr ""
13454
13455 #. type: textblock
13456 #: ../src/guestfs-actions.pod:4486
13457 msgid "This is the \"va_list variant\" of L</guestfs_mkfs_opts>."
13458 msgstr ""
13459
13460 #. type: =head2
13461 #: ../src/guestfs-actions.pod:4490
13462 msgid "guestfs_mkfs_opts_argv"
13463 msgstr ""
13464
13465 #. type: verbatim
13466 #: ../src/guestfs-actions.pod:4492
13467 #, no-wrap
13468 msgid ""
13469 " int\n"
13470 " guestfs_mkfs_opts_argv (guestfs_h *g,\n"
13471 "                         const char *fstype,\n"
13472 "                         const char *device,\n"
13473 "                         const struct guestfs_mkfs_opts_argv *optargs);\n"
13474 "\n"
13475 msgstr ""
13476
13477 #. type: textblock
13478 #: ../src/guestfs-actions.pod:4498
13479 msgid "This is the \"argv variant\" of L</guestfs_mkfs_opts>."
13480 msgstr ""
13481
13482 #. type: =head2
13483 #: ../src/guestfs-actions.pod:4502
13484 msgid "guestfs_mkmountpoint"
13485 msgstr ""
13486
13487 #. type: verbatim
13488 #: ../src/guestfs-actions.pod:4504
13489 #, no-wrap
13490 msgid ""
13491 " int\n"
13492 " guestfs_mkmountpoint (guestfs_h *g,\n"
13493 "                       const char *exemptpath);\n"
13494 "\n"
13495 msgstr ""
13496
13497 #. type: textblock
13498 #: ../src/guestfs-actions.pod:4508
13499 msgid ""
13500 "C<guestfs_mkmountpoint> and C<guestfs_rmmountpoint> are specialized calls "
13501 "that can be used to create extra mountpoints before mounting the first "
13502 "filesystem."
13503 msgstr ""
13504
13505 #. type: textblock
13506 #: ../src/guestfs-actions.pod:4512 ../fish/guestfish-actions.pod:3049
13507 msgid ""
13508 "These calls are I<only> necessary in some very limited circumstances, mainly "
13509 "the case where you want to mount a mix of unrelated and/or read-only "
13510 "filesystems together."
13511 msgstr ""
13512
13513 #. type: textblock
13514 #: ../src/guestfs-actions.pod:4516 ../fish/guestfish-actions.pod:3053
13515 msgid ""
13516 "For example, live CDs often contain a \"Russian doll\" nest of filesystems, "
13517 "an ISO outer layer, with a squashfs image inside, with an ext2/3 image "
13518 "inside that.  You can unpack this as follows in guestfish:"
13519 msgstr ""
13520
13521 #. type: verbatim
13522 #: ../src/guestfs-actions.pod:4521 ../fish/guestfish-actions.pod:3058
13523 #, no-wrap
13524 msgid ""
13525 " add-ro Fedora-11-i686-Live.iso\n"
13526 " run\n"
13527 " mkmountpoint /cd\n"
13528 " mkmountpoint /sqsh\n"
13529 " mkmountpoint /ext3fs\n"
13530 " mount /dev/sda /cd\n"
13531 " mount-loop /cd/LiveOS/squashfs.img /sqsh\n"
13532 " mount-loop /sqsh/LiveOS/ext3fs.img /ext3fs\n"
13533 "\n"
13534 msgstr ""
13535
13536 #. type: textblock
13537 #: ../src/guestfs-actions.pod:4530 ../fish/guestfish-actions.pod:3067
13538 msgid "The inner filesystem is now unpacked under the /ext3fs mountpoint."
13539 msgstr ""
13540
13541 #. type: textblock
13542 #: ../src/guestfs-actions.pod:4532
13543 msgid ""
13544 "C<guestfs_mkmountpoint> is not compatible with C<guestfs_umount_all>.  You "
13545 "may get unexpected errors if you try to mix these calls.  It is safest to "
13546 "manually unmount filesystems and remove mountpoints after use."
13547 msgstr ""
13548
13549 #. type: textblock
13550 #: ../src/guestfs-actions.pod:4536
13551 msgid ""
13552 "C<guestfs_umount_all> unmounts filesystems by sorting the paths longest "
13553 "first, so for this to work for manual mountpoints, you must ensure that the "
13554 "innermost mountpoints have the longest pathnames, as in the example code "
13555 "above."
13556 msgstr ""
13557
13558 #. type: textblock
13559 #: ../src/guestfs-actions.pod:4541 ../fish/guestfish-actions.pod:3078
13560 msgid ""
13561 "For more details see L<https://bugzilla.redhat.com/show_bug.cgi?id=599503>"
13562 msgstr ""
13563
13564 #. type: textblock
13565 #: ../src/guestfs-actions.pod:4543
13566 msgid ""
13567 "Autosync [see C<guestfs_set_autosync>, this is set by default on handles] "
13568 "can cause C<guestfs_umount_all> to be called when the handle is closed which "
13569 "can also trigger these issues."
13570 msgstr ""
13571
13572 #. type: textblock
13573 #: ../src/guestfs-actions.pod:4549 ../src/guestfs-actions.pod:4808
13574 #: ../src/guestfs-actions.pod:5718
13575 msgid "(Added in 1.0.62)"
13576 msgstr ""
13577
13578 #. type: =head2
13579 #: ../src/guestfs-actions.pod:4551
13580 msgid "guestfs_mknod"
13581 msgstr ""
13582
13583 #. type: verbatim
13584 #: ../src/guestfs-actions.pod:4553
13585 #, no-wrap
13586 msgid ""
13587 " int\n"
13588 " guestfs_mknod (guestfs_h *g,\n"
13589 "                int mode,\n"
13590 "                int devmajor,\n"
13591 "                int devminor,\n"
13592 "                const char *path);\n"
13593 "\n"
13594 msgstr ""
13595
13596 #. type: textblock
13597 #: ../src/guestfs-actions.pod:4560 ../fish/guestfish-actions.pod:3088
13598 msgid ""
13599 "This call creates block or character special devices, or named pipes (FIFOs)."
13600 msgstr ""
13601
13602 #. type: textblock
13603 #: ../src/guestfs-actions.pod:4563 ../fish/guestfish-actions.pod:3091
13604 msgid ""
13605 "The C<mode> parameter should be the mode, using the standard constants.  "
13606 "C<devmajor> and C<devminor> are the device major and minor numbers, only "
13607 "used when creating block and character special devices."
13608 msgstr ""
13609
13610 #. type: textblock
13611 #: ../src/guestfs-actions.pod:4568
13612 msgid ""
13613 "Note that, just like L<mknod(2)>, the mode must be bitwise OR'd with "
13614 "S_IFBLK, S_IFCHR, S_IFIFO or S_IFSOCK (otherwise this call just creates a "
13615 "regular file).  These constants are available in the standard Linux header "
13616 "files, or you can use C<guestfs_mknod_b>, C<guestfs_mknod_c> or "
13617 "C<guestfs_mkfifo> which are wrappers around this command which bitwise OR in "
13618 "the appropriate constant for you."
13619 msgstr ""
13620
13621 #. type: =head2
13622 #: ../src/guestfs-actions.pod:4582
13623 msgid "guestfs_mknod_b"
13624 msgstr ""
13625
13626 #. type: verbatim
13627 #: ../src/guestfs-actions.pod:4584
13628 #, no-wrap
13629 msgid ""
13630 " int\n"
13631 " guestfs_mknod_b (guestfs_h *g,\n"
13632 "                  int mode,\n"
13633 "                  int devmajor,\n"
13634 "                  int devminor,\n"
13635 "                  const char *path);\n"
13636 "\n"
13637 msgstr ""
13638
13639 #. type: textblock
13640 #: ../src/guestfs-actions.pod:4591
13641 msgid ""
13642 "This call creates a block device node called C<path> with mode C<mode> and "
13643 "device major/minor C<devmajor> and C<devminor>.  It is just a convenient "
13644 "wrapper around C<guestfs_mknod>."
13645 msgstr ""
13646
13647 #. type: =head2
13648 #: ../src/guestfs-actions.pod:4601
13649 msgid "guestfs_mknod_c"
13650 msgstr ""
13651
13652 #. type: verbatim
13653 #: ../src/guestfs-actions.pod:4603
13654 #, no-wrap
13655 msgid ""
13656 " int\n"
13657 " guestfs_mknod_c (guestfs_h *g,\n"
13658 "                  int mode,\n"
13659 "                  int devmajor,\n"
13660 "                  int devminor,\n"
13661 "                  const char *path);\n"
13662 "\n"
13663 msgstr ""
13664
13665 #. type: textblock
13666 #: ../src/guestfs-actions.pod:4610
13667 msgid ""
13668 "This call creates a char device node called C<path> with mode C<mode> and "
13669 "device major/minor C<devmajor> and C<devminor>.  It is just a convenient "
13670 "wrapper around C<guestfs_mknod>."
13671 msgstr ""
13672
13673 #. type: =head2
13674 #: ../src/guestfs-actions.pod:4620
13675 msgid "guestfs_mkswap"
13676 msgstr ""
13677
13678 #. type: verbatim
13679 #: ../src/guestfs-actions.pod:4622
13680 #, no-wrap
13681 msgid ""
13682 " int\n"
13683 " guestfs_mkswap (guestfs_h *g,\n"
13684 "                 const char *device);\n"
13685 "\n"
13686 msgstr ""
13687
13688 #. type: textblock
13689 #: ../src/guestfs-actions.pod:4626 ../fish/guestfish-actions.pod:3130
13690 msgid "Create a swap partition on C<device>."
13691 msgstr ""
13692
13693 #. type: =head2
13694 #: ../src/guestfs-actions.pod:4632
13695 msgid "guestfs_mkswap_L"
13696 msgstr ""
13697
13698 #. type: verbatim
13699 #: ../src/guestfs-actions.pod:4634
13700 #, no-wrap
13701 msgid ""
13702 " int\n"
13703 " guestfs_mkswap_L (guestfs_h *g,\n"
13704 "                   const char *label,\n"
13705 "                   const char *device);\n"
13706 "\n"
13707 msgstr ""
13708
13709 #. type: textblock
13710 #: ../src/guestfs-actions.pod:4639 ../fish/guestfish-actions.pod:3136
13711 msgid "Create a swap partition on C<device> with label C<label>."
13712 msgstr ""
13713
13714 #. type: textblock
13715 #: ../src/guestfs-actions.pod:4641 ../fish/guestfish-actions.pod:3138
13716 msgid ""
13717 "Note that you cannot attach a swap label to a block device (eg. C</dev/"
13718 "sda>), just to a partition.  This appears to be a limitation of the kernel "
13719 "or swap tools."
13720 msgstr ""
13721
13722 #. type: =head2
13723 #: ../src/guestfs-actions.pod:4649
13724 msgid "guestfs_mkswap_U"
13725 msgstr ""
13726
13727 #. type: verbatim
13728 #: ../src/guestfs-actions.pod:4651
13729 #, no-wrap
13730 msgid ""
13731 " int\n"
13732 " guestfs_mkswap_U (guestfs_h *g,\n"
13733 "                   const char *uuid,\n"
13734 "                   const char *device);\n"
13735 "\n"
13736 msgstr ""
13737
13738 #. type: textblock
13739 #: ../src/guestfs-actions.pod:4656 ../fish/guestfish-actions.pod:3146
13740 msgid "Create a swap partition on C<device> with UUID C<uuid>."
13741 msgstr ""
13742
13743 #. type: =head2
13744 #: ../src/guestfs-actions.pod:4662
13745 msgid "guestfs_mkswap_file"
13746 msgstr ""
13747
13748 #. type: verbatim
13749 #: ../src/guestfs-actions.pod:4664
13750 #, no-wrap
13751 msgid ""
13752 " int\n"
13753 " guestfs_mkswap_file (guestfs_h *g,\n"
13754 "                      const char *path);\n"
13755 "\n"
13756 msgstr ""
13757
13758 #. type: textblock
13759 #: ../src/guestfs-actions.pod:4668 ../fish/guestfish-actions.pod:3152
13760 msgid "Create a swap file."
13761 msgstr ""
13762
13763 #. type: textblock
13764 #: ../src/guestfs-actions.pod:4670
13765 msgid ""
13766 "This command just writes a swap file signature to an existing file.  To "
13767 "create the file itself, use something like C<guestfs_fallocate>."
13768 msgstr ""
13769
13770 #. type: =head2
13771 #: ../src/guestfs-actions.pod:4677
13772 msgid "guestfs_modprobe"
13773 msgstr ""
13774
13775 #. type: verbatim
13776 #: ../src/guestfs-actions.pod:4679
13777 #, no-wrap
13778 msgid ""
13779 " int\n"
13780 " guestfs_modprobe (guestfs_h *g,\n"
13781 "                   const char *modulename);\n"
13782 "\n"
13783 msgstr ""
13784
13785 #. type: textblock
13786 #: ../src/guestfs-actions.pod:4683 ../fish/guestfish-actions.pod:3161
13787 msgid "This loads a kernel module in the appliance."
13788 msgstr ""
13789
13790 #. type: textblock
13791 #: ../src/guestfs-actions.pod:4685 ../fish/guestfish-actions.pod:3163
13792 msgid ""
13793 "The kernel module must have been whitelisted when libguestfs was built (see "
13794 "C<appliance/kmod.whitelist.in> in the source)."
13795 msgstr ""
13796
13797 #. type: =head2
13798 #: ../src/guestfs-actions.pod:4692
13799 msgid "guestfs_mount"
13800 msgstr ""
13801
13802 #. type: verbatim
13803 #: ../src/guestfs-actions.pod:4694
13804 #, no-wrap
13805 msgid ""
13806 " int\n"
13807 " guestfs_mount (guestfs_h *g,\n"
13808 "                const char *device,\n"
13809 "                const char *mountpoint);\n"
13810 "\n"
13811 msgstr ""
13812
13813 #. type: textblock
13814 #: ../src/guestfs-actions.pod:4699 ../fish/guestfish-actions.pod:3170
13815 msgid ""
13816 "Mount a guest disk at a position in the filesystem.  Block devices are named "
13817 "C</dev/sda>, C</dev/sdb> and so on, as they were added to the guest.  If "
13818 "those block devices contain partitions, they will have the usual names (eg. "
13819 "C</dev/sda1>).  Also LVM C</dev/VG/LV>-style names can be used."
13820 msgstr ""
13821
13822 #. type: textblock
13823 #: ../src/guestfs-actions.pod:4705 ../fish/guestfish-actions.pod:3176
13824 msgid ""
13825 "The rules are the same as for L<mount(2)>: A filesystem must first be "
13826 "mounted on C</> before others can be mounted.  Other filesystems can only be "
13827 "mounted on directories which already exist."
13828 msgstr ""
13829
13830 #. type: textblock
13831 #: ../src/guestfs-actions.pod:4710 ../fish/guestfish-actions.pod:3181
13832 msgid ""
13833 "The mounted filesystem is writable, if we have sufficient permissions on the "
13834 "underlying device."
13835 msgstr ""
13836
13837 #. type: textblock
13838 #: ../src/guestfs-actions.pod:4713
13839 msgid ""
13840 "B<Important note:> When you use this call, the filesystem options C<sync> "
13841 "and C<noatime> are set implicitly.  This was originally done because we "
13842 "thought it would improve reliability, but it turns out that I<-o sync> has a "
13843 "very large negative performance impact and negligible effect on "
13844 "reliability.  Therefore we recommend that you avoid using C<guestfs_mount> "
13845 "in any code that needs performance, and instead use C<guestfs_mount_options> "
13846 "(use an empty string for the first parameter if you don't want any options)."
13847 msgstr ""
13848
13849 #. type: =head2
13850 #: ../src/guestfs-actions.pod:4727
13851 msgid "guestfs_mount_loop"
13852 msgstr ""
13853
13854 #. type: verbatim
13855 #: ../src/guestfs-actions.pod:4729
13856 #, no-wrap
13857 msgid ""
13858 " int\n"
13859 " guestfs_mount_loop (guestfs_h *g,\n"
13860 "                     const char *file,\n"
13861 "                     const char *mountpoint);\n"
13862 "\n"
13863 msgstr ""
13864
13865 #. type: textblock
13866 #: ../src/guestfs-actions.pod:4734 ../fish/guestfish-actions.pod:3198
13867 msgid ""
13868 "This command lets you mount C<file> (a filesystem image in a file) on a "
13869 "mount point.  It is entirely equivalent to the command C<mount -o loop file "
13870 "mountpoint>."
13871 msgstr ""
13872
13873 #. type: =head2
13874 #: ../src/guestfs-actions.pod:4742
13875 msgid "guestfs_mount_options"
13876 msgstr ""
13877
13878 #. type: verbatim
13879 #: ../src/guestfs-actions.pod:4744
13880 #, no-wrap
13881 msgid ""
13882 " int\n"
13883 " guestfs_mount_options (guestfs_h *g,\n"
13884 "                        const char *options,\n"
13885 "                        const char *device,\n"
13886 "                        const char *mountpoint);\n"
13887 "\n"
13888 msgstr ""
13889
13890 #. type: textblock
13891 #: ../src/guestfs-actions.pod:4750
13892 msgid ""
13893 "This is the same as the C<guestfs_mount> command, but it allows you to set "
13894 "the mount options as for the L<mount(8)> I<-o> flag."
13895 msgstr ""
13896
13897 #. type: textblock
13898 #: ../src/guestfs-actions.pod:4754 ../fish/guestfish-actions.pod:3210
13899 msgid ""
13900 "If the C<options> parameter is an empty string, then no options are passed "
13901 "(all options default to whatever the filesystem uses)."
13902 msgstr ""
13903
13904 #. type: textblock
13905 #: ../src/guestfs-actions.pod:4760 ../src/guestfs-actions.pod:4774
13906 #: ../src/guestfs-actions.pod:4791
13907 msgid "(Added in 1.0.10)"
13908 msgstr ""
13909
13910 #. type: =head2
13911 #: ../src/guestfs-actions.pod:4762
13912 msgid "guestfs_mount_ro"
13913 msgstr ""
13914
13915 #. type: verbatim
13916 #: ../src/guestfs-actions.pod:4764
13917 #, no-wrap
13918 msgid ""
13919 " int\n"
13920 " guestfs_mount_ro (guestfs_h *g,\n"
13921 "                   const char *device,\n"
13922 "                   const char *mountpoint);\n"
13923 "\n"
13924 msgstr ""
13925
13926 #. type: textblock
13927 #: ../src/guestfs-actions.pod:4769
13928 msgid ""
13929 "This is the same as the C<guestfs_mount> command, but it mounts the "
13930 "filesystem with the read-only (I<-o ro>) flag."
13931 msgstr ""
13932
13933 #. type: =head2
13934 #: ../src/guestfs-actions.pod:4776
13935 msgid "guestfs_mount_vfs"
13936 msgstr ""
13937
13938 #. type: verbatim
13939 #: ../src/guestfs-actions.pod:4778
13940 #, no-wrap
13941 msgid ""
13942 " int\n"
13943 " guestfs_mount_vfs (guestfs_h *g,\n"
13944 "                    const char *options,\n"
13945 "                    const char *vfstype,\n"
13946 "                    const char *device,\n"
13947 "                    const char *mountpoint);\n"
13948 "\n"
13949 msgstr ""
13950
13951 #. type: textblock
13952 #: ../src/guestfs-actions.pod:4785
13953 msgid ""
13954 "This is the same as the C<guestfs_mount> command, but it allows you to set "
13955 "both the mount options and the vfstype as for the L<mount(8)> I<-o> and I<-"
13956 "t> flags."
13957 msgstr ""
13958
13959 #. type: =head2
13960 #: ../src/guestfs-actions.pod:4793
13961 msgid "guestfs_mountpoints"
13962 msgstr ""
13963
13964 #. type: verbatim
13965 #: ../src/guestfs-actions.pod:4795
13966 #, no-wrap
13967 msgid ""
13968 " char **\n"
13969 " guestfs_mountpoints (guestfs_h *g);\n"
13970 "\n"
13971 msgstr ""
13972
13973 #. type: textblock
13974 #: ../src/guestfs-actions.pod:4798
13975 msgid ""
13976 "This call is similar to C<guestfs_mounts>.  That call returns a list of "
13977 "devices.  This one returns a hash table (map) of device name to directory "
13978 "where the device is mounted."
13979 msgstr ""
13980
13981 #. type: =head2
13982 #: ../src/guestfs-actions.pod:4810
13983 msgid "guestfs_mounts"
13984 msgstr ""
13985
13986 #. type: verbatim
13987 #: ../src/guestfs-actions.pod:4812
13988 #, no-wrap
13989 msgid ""
13990 " char **\n"
13991 " guestfs_mounts (guestfs_h *g);\n"
13992 "\n"
13993 msgstr ""
13994
13995 #. type: textblock
13996 #: ../src/guestfs-actions.pod:4815 ../fish/guestfish-actions.pod:3241
13997 msgid ""
13998 "This returns the list of currently mounted filesystems.  It returns the list "
13999 "of devices (eg. C</dev/sda1>, C</dev/VG/LV>)."
14000 msgstr ""
14001
14002 #. type: textblock
14003 #: ../src/guestfs-actions.pod:4818 ../fish/guestfish-actions.pod:3244
14004 msgid "Some internal mounts are not shown."
14005 msgstr ""
14006
14007 #. type: textblock
14008 #: ../src/guestfs-actions.pod:4820
14009 msgid "See also: C<guestfs_mountpoints>"
14010 msgstr ""
14011
14012 #. type: =head2
14013 #: ../src/guestfs-actions.pod:4828
14014 msgid "guestfs_mv"
14015 msgstr ""
14016
14017 #. type: verbatim
14018 #: ../src/guestfs-actions.pod:4830
14019 #, no-wrap
14020 msgid ""
14021 " int\n"
14022 " guestfs_mv (guestfs_h *g,\n"
14023 "             const char *src,\n"
14024 "             const char *dest);\n"
14025 "\n"
14026 msgstr ""
14027
14028 #. type: textblock
14029 #: ../src/guestfs-actions.pod:4835 ../fish/guestfish-actions.pod:3252
14030 msgid ""
14031 "This moves a file from C<src> to C<dest> where C<dest> is either a "
14032 "destination filename or destination directory."
14033 msgstr ""
14034
14035 #. type: =head2
14036 #: ../src/guestfs-actions.pod:4842
14037 msgid "guestfs_ntfs_3g_probe"
14038 msgstr ""
14039
14040 #. type: verbatim
14041 #: ../src/guestfs-actions.pod:4844
14042 #, no-wrap
14043 msgid ""
14044 " int\n"
14045 " guestfs_ntfs_3g_probe (guestfs_h *g,\n"
14046 "                        int rw,\n"
14047 "                        const char *device);\n"
14048 "\n"
14049 msgstr ""
14050
14051 #. type: textblock
14052 #: ../src/guestfs-actions.pod:4849 ../fish/guestfish-actions.pod:3259
14053 msgid ""
14054 "This command runs the L<ntfs-3g.probe(8)> command which probes an NTFS "
14055 "C<device> for mountability.  (Not all NTFS volumes can be mounted read-"
14056 "write, and some cannot be mounted at all)."
14057 msgstr ""
14058
14059 #. type: textblock
14060 #: ../src/guestfs-actions.pod:4853 ../fish/guestfish-actions.pod:3263
14061 msgid ""
14062 "C<rw> is a boolean flag.  Set it to true if you want to test if the volume "
14063 "can be mounted read-write.  Set it to false if you want to test if the "
14064 "volume can be mounted read-only."
14065 msgstr ""
14066
14067 #. type: textblock
14068 #: ../src/guestfs-actions.pod:4857 ../fish/guestfish-actions.pod:3267
14069 msgid ""
14070 "The return value is an integer which C<0> if the operation would succeed, or "
14071 "some non-zero value documented in the L<ntfs-3g.probe(8)> manual page."
14072 msgstr ""
14073
14074 #. type: textblock
14075 #: ../src/guestfs-actions.pod:4863
14076 msgid "(Added in 1.0.43)"
14077 msgstr ""
14078
14079 #. type: =head2
14080 #: ../src/guestfs-actions.pod:4865
14081 msgid "guestfs_ntfsresize"
14082 msgstr ""
14083
14084 #. type: verbatim
14085 #: ../src/guestfs-actions.pod:4867
14086 #, no-wrap
14087 msgid ""
14088 " int\n"
14089 " guestfs_ntfsresize (guestfs_h *g,\n"
14090 "                     const char *device);\n"
14091 "\n"
14092 msgstr ""
14093
14094 #. type: textblock
14095 #: ../src/guestfs-actions.pod:4871 ../fish/guestfish-actions.pod:3275
14096 msgid ""
14097 "This command resizes an NTFS filesystem, expanding or shrinking it to the "
14098 "size of the underlying device.  See also L<ntfsresize(8)>."
14099 msgstr ""
14100
14101 #. type: =head2
14102 #: ../src/guestfs-actions.pod:4879
14103 msgid "guestfs_ntfsresize_size"
14104 msgstr ""
14105
14106 #. type: verbatim
14107 #: ../src/guestfs-actions.pod:4881
14108 #, no-wrap
14109 msgid ""
14110 " int\n"
14111 " guestfs_ntfsresize_size (guestfs_h *g,\n"
14112 "                          const char *device,\n"
14113 "                          int64_t size);\n"
14114 "\n"
14115 msgstr ""
14116
14117 #. type: textblock
14118 #: ../src/guestfs-actions.pod:4886
14119 msgid ""
14120 "This command is the same as C<guestfs_ntfsresize> except that it allows you "
14121 "to specify the new size (in bytes) explicitly."
14122 msgstr ""
14123
14124 #. type: textblock
14125 #: ../src/guestfs-actions.pod:4891 ../src/guestfs-actions.pod:5327
14126 #: ../src/guestfs-actions.pod:5400 ../src/guestfs-actions.pod:5666
14127 #: ../src/guestfs-actions.pod:7237
14128 msgid "(Added in 1.3.14)"
14129 msgstr ""
14130
14131 #. type: =head2
14132 #: ../src/guestfs-actions.pod:4893
14133 msgid "guestfs_part_add"
14134 msgstr ""
14135
14136 #. type: verbatim
14137 #: ../src/guestfs-actions.pod:4895
14138 #, no-wrap
14139 msgid ""
14140 " int\n"
14141 " guestfs_part_add (guestfs_h *g,\n"
14142 "                   const char *device,\n"
14143 "                   const char *prlogex,\n"
14144 "                   int64_t startsect,\n"
14145 "                   int64_t endsect);\n"
14146 "\n"
14147 msgstr ""
14148
14149 #. type: textblock
14150 #: ../src/guestfs-actions.pod:4902
14151 msgid ""
14152 "This command adds a partition to C<device>.  If there is no partition table "
14153 "on the device, call C<guestfs_part_init> first."
14154 msgstr ""
14155
14156 #. type: textblock
14157 #: ../src/guestfs-actions.pod:4905 ../fish/guestfish-actions.pod:3293
14158 msgid ""
14159 "The C<prlogex> parameter is the type of partition.  Normally you should pass "
14160 "C<p> or C<primary> here, but MBR partition tables also support C<l> (or "
14161 "C<logical>) and C<e> (or C<extended>) partition types."
14162 msgstr ""
14163
14164 #. type: textblock
14165 #: ../src/guestfs-actions.pod:4910 ../fish/guestfish-actions.pod:3298
14166 msgid ""
14167 "C<startsect> and C<endsect> are the start and end of the partition in "
14168 "I<sectors>.  C<endsect> may be negative, which means it counts backwards "
14169 "from the end of the disk (C<-1> is the last sector)."
14170 msgstr ""
14171
14172 #. type: textblock
14173 #: ../src/guestfs-actions.pod:4914
14174 msgid ""
14175 "Creating a partition which covers the whole disk is not so easy.  Use "
14176 "C<guestfs_part_disk> to do that."
14177 msgstr ""
14178
14179 #. type: textblock
14180 #: ../src/guestfs-actions.pod:4919 ../src/guestfs-actions.pod:4957
14181 #: ../src/guestfs-actions.pod:5010 ../src/guestfs-actions.pod:5088
14182 #: ../src/guestfs-actions.pod:5126 ../src/guestfs-actions.pod:5145
14183 #: ../src/guestfs-actions.pod:5185
14184 msgid "(Added in 1.0.78)"
14185 msgstr ""
14186
14187 #. type: =head2
14188 #: ../src/guestfs-actions.pod:4921
14189 msgid "guestfs_part_del"
14190 msgstr ""
14191
14192 #. type: verbatim
14193 #: ../src/guestfs-actions.pod:4923
14194 #, no-wrap
14195 msgid ""
14196 " int\n"
14197 " guestfs_part_del (guestfs_h *g,\n"
14198 "                   const char *device,\n"
14199 "                   int partnum);\n"
14200 "\n"
14201 msgstr ""
14202
14203 #. type: textblock
14204 #: ../src/guestfs-actions.pod:4928 ../fish/guestfish-actions.pod:3309
14205 msgid "This command deletes the partition numbered C<partnum> on C<device>."
14206 msgstr ""
14207
14208 #. type: textblock
14209 #: ../src/guestfs-actions.pod:4930 ../fish/guestfish-actions.pod:3311
14210 msgid ""
14211 "Note that in the case of MBR partitioning, deleting an extended partition "
14212 "also deletes any logical partitions it contains."
14213 msgstr ""
14214
14215 #. type: =head2
14216 #: ../src/guestfs-actions.pod:4938
14217 msgid "guestfs_part_disk"
14218 msgstr ""
14219
14220 #. type: verbatim
14221 #: ../src/guestfs-actions.pod:4940
14222 #, no-wrap
14223 msgid ""
14224 " int\n"
14225 " guestfs_part_disk (guestfs_h *g,\n"
14226 "                    const char *device,\n"
14227 "                    const char *parttype);\n"
14228 "\n"
14229 msgstr ""
14230
14231 #. type: textblock
14232 #: ../src/guestfs-actions.pod:4945
14233 msgid ""
14234 "This command is simply a combination of C<guestfs_part_init> followed by "
14235 "C<guestfs_part_add> to create a single primary partition covering the whole "
14236 "disk."
14237 msgstr ""
14238
14239 #. type: textblock
14240 #: ../src/guestfs-actions.pod:4949
14241 msgid ""
14242 "C<parttype> is the partition table type, usually C<mbr> or C<gpt>, but other "
14243 "possible values are described in C<guestfs_part_init>."
14244 msgstr ""
14245
14246 #. type: =head2
14247 #: ../src/guestfs-actions.pod:4959
14248 msgid "guestfs_part_get_bootable"
14249 msgstr ""
14250
14251 #. type: verbatim
14252 #: ../src/guestfs-actions.pod:4961
14253 #, no-wrap
14254 msgid ""
14255 " int\n"
14256 " guestfs_part_get_bootable (guestfs_h *g,\n"
14257 "                            const char *device,\n"
14258 "                            int partnum);\n"
14259 "\n"
14260 msgstr ""
14261
14262 #. type: textblock
14263 #: ../src/guestfs-actions.pod:4966 ../fish/guestfish-actions.pod:3333
14264 msgid ""
14265 "This command returns true if the partition C<partnum> on C<device> has the "
14266 "bootable flag set."
14267 msgstr ""
14268
14269 #. type: textblock
14270 #: ../src/guestfs-actions.pod:4969
14271 msgid "See also C<guestfs_part_set_bootable>."
14272 msgstr ""
14273
14274 #. type: =head2
14275 #: ../src/guestfs-actions.pod:4975
14276 msgid "guestfs_part_get_mbr_id"
14277 msgstr ""
14278
14279 #. type: verbatim
14280 #: ../src/guestfs-actions.pod:4977
14281 #, no-wrap
14282 msgid ""
14283 " int\n"
14284 " guestfs_part_get_mbr_id (guestfs_h *g,\n"
14285 "                          const char *device,\n"
14286 "                          int partnum);\n"
14287 "\n"
14288 msgstr ""
14289
14290 #. type: textblock
14291 #: ../src/guestfs-actions.pod:4982 ../fish/guestfish-actions.pod:3342
14292 msgid ""
14293 "Returns the MBR type byte (also known as the ID byte) from the numbered "
14294 "partition C<partnum>."
14295 msgstr ""
14296
14297 #. type: textblock
14298 #: ../src/guestfs-actions.pod:4985 ../src/guestfs-actions.pod:5161
14299 msgid ""
14300 "Note that only MBR (old DOS-style) partitions have type bytes.  You will get "
14301 "undefined results for other partition table types (see "
14302 "C<guestfs_part_get_parttype>)."
14303 msgstr ""
14304
14305 #. type: =head2
14306 #: ../src/guestfs-actions.pod:4993
14307 msgid "guestfs_part_get_parttype"
14308 msgstr ""
14309
14310 #. type: verbatim
14311 #: ../src/guestfs-actions.pod:4995
14312 #, no-wrap
14313 msgid ""
14314 " char *\n"
14315 " guestfs_part_get_parttype (guestfs_h *g,\n"
14316 "                            const char *device);\n"
14317 "\n"
14318 msgstr ""
14319
14320 #. type: textblock
14321 #: ../src/guestfs-actions.pod:4999 ../fish/guestfish-actions.pod:3353
14322 msgid ""
14323 "This command examines the partition table on C<device> and returns the "
14324 "partition table type (format) being used."
14325 msgstr ""
14326
14327 #. type: textblock
14328 #: ../src/guestfs-actions.pod:5002
14329 msgid ""
14330 "Common return values include: C<msdos> (a DOS/Windows style MBR partition "
14331 "table), C<gpt> (a GPT/EFI-style partition table).  Other values are "
14332 "possible, although unusual.  See C<guestfs_part_init> for a full list."
14333 msgstr ""
14334
14335 #. type: =head2
14336 #: ../src/guestfs-actions.pod:5012
14337 msgid "guestfs_part_init"
14338 msgstr ""
14339
14340 #. type: verbatim
14341 #: ../src/guestfs-actions.pod:5014
14342 #, no-wrap
14343 msgid ""
14344 " int\n"
14345 " guestfs_part_init (guestfs_h *g,\n"
14346 "                    const char *device,\n"
14347 "                    const char *parttype);\n"
14348 "\n"
14349 msgstr ""
14350
14351 #. type: textblock
14352 #: ../src/guestfs-actions.pod:5019 ../fish/guestfish-actions.pod:3365
14353 msgid ""
14354 "This creates an empty partition table on C<device> of one of the partition "
14355 "types listed below.  Usually C<parttype> should be either C<msdos> or C<gpt> "
14356 "(for large disks)."
14357 msgstr ""
14358
14359 #. type: textblock
14360 #: ../src/guestfs-actions.pod:5023
14361 msgid ""
14362 "Initially there are no partitions.  Following this, you should call "
14363 "C<guestfs_part_add> for each partition required."
14364 msgstr ""
14365
14366 #. type: textblock
14367 #: ../src/guestfs-actions.pod:5026 ../fish/guestfish-actions.pod:3372
14368 msgid "Possible values for C<parttype> are:"
14369 msgstr ""
14370
14371 #. type: =item
14372 #: ../src/guestfs-actions.pod:5030 ../fish/guestfish-actions.pod:3376
14373 msgid "B<efi> | B<gpt>"
14374 msgstr ""
14375
14376 #. type: textblock
14377 #: ../src/guestfs-actions.pod:5032 ../fish/guestfish-actions.pod:3378
14378 msgid "Intel EFI / GPT partition table."
14379 msgstr ""
14380
14381 #. type: textblock
14382 #: ../src/guestfs-actions.pod:5034 ../fish/guestfish-actions.pod:3380
14383 msgid ""
14384 "This is recommended for >= 2 TB partitions that will be accessed from Linux "
14385 "and Intel-based Mac OS X.  It also has limited backwards compatibility with "
14386 "the C<mbr> format."
14387 msgstr ""
14388
14389 #. type: =item
14390 #: ../src/guestfs-actions.pod:5038 ../fish/guestfish-actions.pod:3384
14391 msgid "B<mbr> | B<msdos>"
14392 msgstr ""
14393
14394 #. type: textblock
14395 #: ../src/guestfs-actions.pod:5040 ../fish/guestfish-actions.pod:3386
14396 msgid ""
14397 "The standard PC \"Master Boot Record\" (MBR) format used by MS-DOS and "
14398 "Windows.  This partition type will B<only> work for device sizes up to 2 "
14399 "TB.  For large disks we recommend using C<gpt>."
14400 msgstr ""
14401
14402 #. type: textblock
14403 #: ../src/guestfs-actions.pod:5047 ../fish/guestfish-actions.pod:3393
14404 msgid ""
14405 "Other partition table types that may work but are not supported include:"
14406 msgstr ""
14407
14408 #. type: =item
14409 #: ../src/guestfs-actions.pod:5052 ../fish/guestfish-actions.pod:3398
14410 msgid "B<aix>"
14411 msgstr ""
14412
14413 #. type: textblock
14414 #: ../src/guestfs-actions.pod:5054 ../fish/guestfish-actions.pod:3400
14415 msgid "AIX disk labels."
14416 msgstr ""
14417
14418 #. type: =item
14419 #: ../src/guestfs-actions.pod:5056 ../fish/guestfish-actions.pod:3402
14420 msgid "B<amiga> | B<rdb>"
14421 msgstr ""
14422
14423 #. type: textblock
14424 #: ../src/guestfs-actions.pod:5058 ../fish/guestfish-actions.pod:3404
14425 msgid "Amiga \"Rigid Disk Block\" format."
14426 msgstr ""
14427
14428 #. type: =item
14429 #: ../src/guestfs-actions.pod:5060 ../fish/guestfish-actions.pod:3406
14430 msgid "B<bsd>"
14431 msgstr ""
14432
14433 #. type: textblock
14434 #: ../src/guestfs-actions.pod:5062 ../fish/guestfish-actions.pod:3408
14435 msgid "BSD disk labels."
14436 msgstr ""
14437
14438 #. type: =item
14439 #: ../src/guestfs-actions.pod:5064 ../fish/guestfish-actions.pod:3410
14440 msgid "B<dasd>"
14441 msgstr ""
14442
14443 #. type: textblock
14444 #: ../src/guestfs-actions.pod:5066 ../fish/guestfish-actions.pod:3412
14445 msgid "DASD, used on IBM mainframes."
14446 msgstr ""
14447
14448 #. type: =item
14449 #: ../src/guestfs-actions.pod:5068 ../fish/guestfish-actions.pod:3414
14450 msgid "B<dvh>"
14451 msgstr ""
14452
14453 #. type: textblock
14454 #: ../src/guestfs-actions.pod:5070 ../fish/guestfish-actions.pod:3416
14455 msgid "MIPS/SGI volumes."
14456 msgstr ""
14457
14458 #. type: =item
14459 #: ../src/guestfs-actions.pod:5072 ../fish/guestfish-actions.pod:3418
14460 msgid "B<mac>"
14461 msgstr ""
14462
14463 #. type: textblock
14464 #: ../src/guestfs-actions.pod:5074 ../fish/guestfish-actions.pod:3420
14465 msgid "Old Mac partition format.  Modern Macs use C<gpt>."
14466 msgstr ""
14467
14468 #. type: =item
14469 #: ../src/guestfs-actions.pod:5076 ../fish/guestfish-actions.pod:3422
14470 msgid "B<pc98>"
14471 msgstr ""
14472
14473 #. type: textblock
14474 #: ../src/guestfs-actions.pod:5078 ../fish/guestfish-actions.pod:3424
14475 msgid "NEC PC-98 format, common in Japan apparently."
14476 msgstr ""
14477
14478 #. type: =item
14479 #: ../src/guestfs-actions.pod:5080 ../fish/guestfish-actions.pod:3426
14480 msgid "B<sun>"
14481 msgstr ""
14482
14483 #. type: textblock
14484 #: ../src/guestfs-actions.pod:5082 ../fish/guestfish-actions.pod:3428
14485 msgid "Sun disk labels."
14486 msgstr ""
14487
14488 #. type: =head2
14489 #: ../src/guestfs-actions.pod:5090
14490 msgid "guestfs_part_list"
14491 msgstr ""
14492
14493 #. type: verbatim
14494 #: ../src/guestfs-actions.pod:5092
14495 #, no-wrap
14496 msgid ""
14497 " struct guestfs_partition_list *\n"
14498 " guestfs_part_list (guestfs_h *g,\n"
14499 "                    const char *device);\n"
14500 "\n"
14501 msgstr ""
14502
14503 #. type: textblock
14504 #: ../src/guestfs-actions.pod:5096 ../fish/guestfish-actions.pod:3436
14505 msgid ""
14506 "This command parses the partition table on C<device> and returns the list of "
14507 "partitions found."
14508 msgstr ""
14509
14510 #. type: textblock
14511 #: ../src/guestfs-actions.pod:5099 ../fish/guestfish-actions.pod:3439
14512 msgid "The fields in the returned structure are:"
14513 msgstr ""
14514
14515 #. type: =item
14516 #: ../src/guestfs-actions.pod:5103 ../fish/guestfish-actions.pod:3443
14517 msgid "B<part_num>"
14518 msgstr ""
14519
14520 #. type: textblock
14521 #: ../src/guestfs-actions.pod:5105 ../fish/guestfish-actions.pod:3445
14522 msgid "Partition number, counting from 1."
14523 msgstr ""
14524
14525 #. type: =item
14526 #: ../src/guestfs-actions.pod:5107 ../fish/guestfish-actions.pod:3447
14527 msgid "B<part_start>"
14528 msgstr ""
14529
14530 #. type: textblock
14531 #: ../src/guestfs-actions.pod:5109
14532 msgid ""
14533 "Start of the partition I<in bytes>.  To get sectors you have to divide by "
14534 "the device's sector size, see C<guestfs_blockdev_getss>."
14535 msgstr ""
14536
14537 #. type: =item
14538 #: ../src/guestfs-actions.pod:5112 ../fish/guestfish-actions.pod:3452
14539 msgid "B<part_end>"
14540 msgstr ""
14541
14542 #. type: textblock
14543 #: ../src/guestfs-actions.pod:5114 ../fish/guestfish-actions.pod:3454
14544 msgid "End of the partition in bytes."
14545 msgstr ""
14546
14547 #. type: =item
14548 #: ../src/guestfs-actions.pod:5116 ../fish/guestfish-actions.pod:3456
14549 msgid "B<part_size>"
14550 msgstr ""
14551
14552 #. type: textblock
14553 #: ../src/guestfs-actions.pod:5118 ../fish/guestfish-actions.pod:3458
14554 msgid "Size of the partition in bytes."
14555 msgstr ""
14556
14557 #. type: textblock
14558 #: ../src/guestfs-actions.pod:5122
14559 msgid ""
14560 "This function returns a C<struct guestfs_partition_list *>, or NULL if there "
14561 "was an error.  I<The caller must call C<guestfs_free_partition_list> after "
14562 "use>."
14563 msgstr ""
14564
14565 #. type: =head2
14566 #: ../src/guestfs-actions.pod:5128
14567 msgid "guestfs_part_set_bootable"
14568 msgstr ""
14569
14570 #. type: verbatim
14571 #: ../src/guestfs-actions.pod:5130
14572 #, no-wrap
14573 msgid ""
14574 " int\n"
14575 " guestfs_part_set_bootable (guestfs_h *g,\n"
14576 "                            const char *device,\n"
14577 "                            int partnum,\n"
14578 "                            int bootable);\n"
14579 "\n"
14580 msgstr ""
14581
14582 #. type: textblock
14583 #: ../src/guestfs-actions.pod:5136 ../fish/guestfish-actions.pod:3466
14584 msgid ""
14585 "This sets the bootable flag on partition numbered C<partnum> on device "
14586 "C<device>.  Note that partitions are numbered from 1."
14587 msgstr ""
14588
14589 #. type: textblock
14590 #: ../src/guestfs-actions.pod:5139 ../fish/guestfish-actions.pod:3469
14591 msgid ""
14592 "The bootable flag is used by some operating systems (notably Windows) to "
14593 "determine which partition to boot from.  It is by no means universally "
14594 "recognized."
14595 msgstr ""
14596
14597 #. type: =head2
14598 #: ../src/guestfs-actions.pod:5147
14599 msgid "guestfs_part_set_mbr_id"
14600 msgstr ""
14601
14602 #. type: verbatim
14603 #: ../src/guestfs-actions.pod:5149
14604 #, no-wrap
14605 msgid ""
14606 " int\n"
14607 " guestfs_part_set_mbr_id (guestfs_h *g,\n"
14608 "                          const char *device,\n"
14609 "                          int partnum,\n"
14610 "                          int idbyte);\n"
14611 "\n"
14612 msgstr ""
14613
14614 #. type: textblock
14615 #: ../src/guestfs-actions.pod:5155 ../fish/guestfish-actions.pod:3477
14616 msgid ""
14617 "Sets the MBR type byte (also known as the ID byte) of the numbered partition "
14618 "C<partnum> to C<idbyte>.  Note that the type bytes quoted in most "
14619 "documentation are in fact hexadecimal numbers, but usually documented "
14620 "without any leading \"0x\" which might be confusing."
14621 msgstr ""
14622
14623 #. type: =head2
14624 #: ../src/guestfs-actions.pod:5169
14625 msgid "guestfs_part_set_name"
14626 msgstr ""
14627
14628 #. type: verbatim
14629 #: ../src/guestfs-actions.pod:5171
14630 #, no-wrap
14631 msgid ""
14632 " int\n"
14633 " guestfs_part_set_name (guestfs_h *g,\n"
14634 "                        const char *device,\n"
14635 "                        int partnum,\n"
14636 "                        const char *name);\n"
14637 "\n"
14638 msgstr ""
14639
14640 #. type: textblock
14641 #: ../src/guestfs-actions.pod:5177 ../fish/guestfish-actions.pod:3491
14642 msgid ""
14643 "This sets the partition name on partition numbered C<partnum> on device "
14644 "C<device>.  Note that partitions are numbered from 1."
14645 msgstr ""
14646
14647 #. type: textblock
14648 #: ../src/guestfs-actions.pod:5180 ../fish/guestfish-actions.pod:3494
14649 msgid ""
14650 "The partition name can only be set on certain types of partition table.  "
14651 "This works on C<gpt> but not on C<mbr> partitions."
14652 msgstr ""
14653
14654 #. type: =head2
14655 #: ../src/guestfs-actions.pod:5187
14656 msgid "guestfs_part_to_dev"
14657 msgstr ""
14658
14659 #. type: verbatim
14660 #: ../src/guestfs-actions.pod:5189
14661 #, no-wrap
14662 msgid ""
14663 " char *\n"
14664 " guestfs_part_to_dev (guestfs_h *g,\n"
14665 "                      const char *partition);\n"
14666 "\n"
14667 msgstr ""
14668
14669 #. type: textblock
14670 #: ../src/guestfs-actions.pod:5193 ../fish/guestfish-actions.pod:3501
14671 msgid ""
14672 "This function takes a partition name (eg. \"/dev/sdb1\") and removes the "
14673 "partition number, returning the device name (eg. \"/dev/sdb\")."
14674 msgstr ""
14675
14676 #. type: textblock
14677 #: ../src/guestfs-actions.pod:5197
14678 msgid ""
14679 "The named partition must exist, for example as a string returned from "
14680 "C<guestfs_list_partitions>."
14681 msgstr ""
14682
14683 #. type: =head2
14684 #: ../src/guestfs-actions.pod:5205
14685 msgid "guestfs_ping_daemon"
14686 msgstr ""
14687
14688 #. type: verbatim
14689 #: ../src/guestfs-actions.pod:5207
14690 #, no-wrap
14691 msgid ""
14692 " int\n"
14693 " guestfs_ping_daemon (guestfs_h *g);\n"
14694 "\n"
14695 msgstr ""
14696
14697 #. type: textblock
14698 #: ../src/guestfs-actions.pod:5210 ../fish/guestfish-actions.pod:3512
14699 msgid ""
14700 "This is a test probe into the guestfs daemon running inside the qemu "
14701 "subprocess.  Calling this function checks that the daemon responds to the "
14702 "ping message, without affecting the daemon or attached block device(s) in "
14703 "any other way."
14704 msgstr ""
14705
14706 #. type: =head2
14707 #: ../src/guestfs-actions.pod:5219
14708 msgid "guestfs_pread"
14709 msgstr ""
14710
14711 #. type: verbatim
14712 #: ../src/guestfs-actions.pod:5221
14713 #, no-wrap
14714 msgid ""
14715 " char *\n"
14716 " guestfs_pread (guestfs_h *g,\n"
14717 "                const char *path,\n"
14718 "                int count,\n"
14719 "                int64_t offset,\n"
14720 "                size_t *size_r);\n"
14721 "\n"
14722 msgstr ""
14723
14724 #. type: textblock
14725 #: ../src/guestfs-actions.pod:5228 ../fish/guestfish-actions.pod:3521
14726 msgid ""
14727 "This command lets you read part of a file.  It reads C<count> bytes of the "
14728 "file, starting at C<offset>, from file C<path>."
14729 msgstr ""
14730
14731 #. type: textblock
14732 #: ../src/guestfs-actions.pod:5231 ../src/guestfs-actions.pod:5257
14733 #: ../fish/guestfish-actions.pod:3524 ../fish/guestfish-actions.pod:3539
14734 msgid ""
14735 "This may read fewer bytes than requested.  For further details see the "
14736 "L<pread(2)> system call."
14737 msgstr ""
14738
14739 #. type: textblock
14740 #: ../src/guestfs-actions.pod:5234
14741 msgid "See also C<guestfs_pwrite>, C<guestfs_pread_device>."
14742 msgstr ""
14743
14744 #. type: =head2
14745 #: ../src/guestfs-actions.pod:5245
14746 msgid "guestfs_pread_device"
14747 msgstr ""
14748
14749 #. type: verbatim
14750 #: ../src/guestfs-actions.pod:5247
14751 #, no-wrap
14752 msgid ""
14753 " char *\n"
14754 " guestfs_pread_device (guestfs_h *g,\n"
14755 "                       const char *device,\n"
14756 "                       int count,\n"
14757 "                       int64_t offset,\n"
14758 "                       size_t *size_r);\n"
14759 "\n"
14760 msgstr ""
14761
14762 #. type: textblock
14763 #: ../src/guestfs-actions.pod:5254 ../fish/guestfish-actions.pod:3536
14764 msgid ""
14765 "This command lets you read part of a file.  It reads C<count> bytes of "
14766 "C<device>, starting at C<offset>."
14767 msgstr ""
14768
14769 #. type: textblock
14770 #: ../src/guestfs-actions.pod:5260
14771 msgid "See also C<guestfs_pread>."
14772 msgstr ""
14773
14774 #. type: textblock
14775 #: ../src/guestfs-actions.pod:5269
14776 msgid "(Added in 1.5.21)"
14777 msgstr ""
14778
14779 #. type: =head2
14780 #: ../src/guestfs-actions.pod:5271
14781 msgid "guestfs_pvcreate"
14782 msgstr ""
14783
14784 #. type: verbatim
14785 #: ../src/guestfs-actions.pod:5273
14786 #, no-wrap
14787 msgid ""
14788 " int\n"
14789 " guestfs_pvcreate (guestfs_h *g,\n"
14790 "                   const char *device);\n"
14791 "\n"
14792 msgstr ""
14793
14794 #. type: textblock
14795 #: ../src/guestfs-actions.pod:5277 ../fish/guestfish-actions.pod:3551
14796 msgid ""
14797 "This creates an LVM physical volume on the named C<device>, where C<device> "
14798 "should usually be a partition name such as C</dev/sda1>."
14799 msgstr ""
14800
14801 #. type: =head2
14802 #: ../src/guestfs-actions.pod:5285
14803 msgid "guestfs_pvremove"
14804 msgstr ""
14805
14806 #. type: verbatim
14807 #: ../src/guestfs-actions.pod:5287
14808 #, no-wrap
14809 msgid ""
14810 " int\n"
14811 " guestfs_pvremove (guestfs_h *g,\n"
14812 "                   const char *device);\n"
14813 "\n"
14814 msgstr ""
14815
14816 #. type: textblock
14817 #: ../src/guestfs-actions.pod:5291 ../fish/guestfish-actions.pod:3559
14818 msgid ""
14819 "This wipes a physical volume C<device> so that LVM will no longer recognise "
14820 "it."
14821 msgstr ""
14822
14823 #. type: textblock
14824 #: ../src/guestfs-actions.pod:5294 ../fish/guestfish-actions.pod:3562
14825 msgid ""
14826 "The implementation uses the C<pvremove> command which refuses to wipe "
14827 "physical volumes that contain any volume groups, so you have to remove those "
14828 "first."
14829 msgstr ""
14830
14831 #. type: =head2
14832 #: ../src/guestfs-actions.pod:5302
14833 msgid "guestfs_pvresize"
14834 msgstr ""
14835
14836 #. type: verbatim
14837 #: ../src/guestfs-actions.pod:5304
14838 #, no-wrap
14839 msgid ""
14840 " int\n"
14841 " guestfs_pvresize (guestfs_h *g,\n"
14842 "                   const char *device);\n"
14843 "\n"
14844 msgstr ""
14845
14846 #. type: textblock
14847 #: ../src/guestfs-actions.pod:5308 ../fish/guestfish-actions.pod:3570
14848 msgid ""
14849 "This resizes (expands or shrinks) an existing LVM physical volume to match "
14850 "the new size of the underlying device."
14851 msgstr ""
14852
14853 #. type: =head2
14854 #: ../src/guestfs-actions.pod:5315
14855 msgid "guestfs_pvresize_size"
14856 msgstr ""
14857
14858 #. type: verbatim
14859 #: ../src/guestfs-actions.pod:5317
14860 #, no-wrap
14861 msgid ""
14862 " int\n"
14863 " guestfs_pvresize_size (guestfs_h *g,\n"
14864 "                        const char *device,\n"
14865 "                        int64_t size);\n"
14866 "\n"
14867 msgstr ""
14868
14869 #. type: textblock
14870 #: ../src/guestfs-actions.pod:5322
14871 msgid ""
14872 "This command is the same as C<guestfs_pvresize> except that it allows you to "
14873 "specify the new size (in bytes) explicitly."
14874 msgstr ""
14875
14876 #. type: =head2
14877 #: ../src/guestfs-actions.pod:5329
14878 msgid "guestfs_pvs"
14879 msgstr ""
14880
14881 #. type: verbatim
14882 #: ../src/guestfs-actions.pod:5331
14883 #, no-wrap
14884 msgid ""
14885 " char **\n"
14886 " guestfs_pvs (guestfs_h *g);\n"
14887 "\n"
14888 msgstr ""
14889
14890 #. type: textblock
14891 #: ../src/guestfs-actions.pod:5334 ../fish/guestfish-actions.pod:3584
14892 msgid ""
14893 "List all the physical volumes detected.  This is the equivalent of the L<pvs"
14894 "(8)> command."
14895 msgstr ""
14896
14897 #. type: textblock
14898 #: ../src/guestfs-actions.pod:5337 ../fish/guestfish-actions.pod:3587
14899 msgid ""
14900 "This returns a list of just the device names that contain PVs (eg. C</dev/"
14901 "sda2>)."
14902 msgstr ""
14903
14904 #. type: textblock
14905 #: ../src/guestfs-actions.pod:5340
14906 msgid "See also C<guestfs_pvs_full>."
14907 msgstr ""
14908
14909 #. type: =head2
14910 #: ../src/guestfs-actions.pod:5348
14911 msgid "guestfs_pvs_full"
14912 msgstr ""
14913
14914 #. type: verbatim
14915 #: ../src/guestfs-actions.pod:5350
14916 #, no-wrap
14917 msgid ""
14918 " struct guestfs_lvm_pv_list *\n"
14919 " guestfs_pvs_full (guestfs_h *g);\n"
14920 "\n"
14921 msgstr ""
14922
14923 #. type: textblock
14924 #: ../src/guestfs-actions.pod:5353 ../fish/guestfish-actions.pod:3596
14925 msgid ""
14926 "List all the physical volumes detected.  This is the equivalent of the L<pvs"
14927 "(8)> command.  The \"full\" version includes all fields."
14928 msgstr ""
14929
14930 #. type: textblock
14931 #: ../src/guestfs-actions.pod:5356
14932 msgid ""
14933 "This function returns a C<struct guestfs_lvm_pv_list *>, or NULL if there "
14934 "was an error.  I<The caller must call C<guestfs_free_lvm_pv_list> after use>."
14935 msgstr ""
14936
14937 #. type: =head2
14938 #: ../src/guestfs-actions.pod:5362
14939 msgid "guestfs_pvuuid"
14940 msgstr ""
14941
14942 #. type: verbatim
14943 #: ../src/guestfs-actions.pod:5364
14944 #, no-wrap
14945 msgid ""
14946 " char *\n"
14947 " guestfs_pvuuid (guestfs_h *g,\n"
14948 "                 const char *device);\n"
14949 "\n"
14950 msgstr ""
14951
14952 #. type: textblock
14953 #: ../src/guestfs-actions.pod:5368 ../fish/guestfish-actions.pod:3603
14954 msgid "This command returns the UUID of the LVM PV C<device>."
14955 msgstr ""
14956
14957 #. type: =head2
14958 #: ../src/guestfs-actions.pod:5375
14959 msgid "guestfs_pwrite"
14960 msgstr ""
14961
14962 #. type: verbatim
14963 #: ../src/guestfs-actions.pod:5377
14964 #, no-wrap
14965 msgid ""
14966 " int\n"
14967 " guestfs_pwrite (guestfs_h *g,\n"
14968 "                 const char *path,\n"
14969 "                 const char *content,\n"
14970 "                 size_t content_size,\n"
14971 "                 int64_t offset);\n"
14972 "\n"
14973 msgstr ""
14974
14975 #. type: textblock
14976 #: ../src/guestfs-actions.pod:5384 ../fish/guestfish-actions.pod:3609
14977 msgid ""
14978 "This command writes to part of a file.  It writes the data buffer C<content> "
14979 "to the file C<path> starting at offset C<offset>."
14980 msgstr ""
14981
14982 #. type: textblock
14983 #: ../src/guestfs-actions.pod:5387 ../fish/guestfish-actions.pod:3612
14984 msgid ""
14985 "This command implements the L<pwrite(2)> system call, and like that system "
14986 "call it may not write the full data requested.  The return value is the "
14987 "number of bytes that were actually written to the file.  This could even be "
14988 "0, although short writes are unlikely for regular files in ordinary "
14989 "circumstances."
14990 msgstr ""
14991
14992 #. type: textblock
14993 #: ../src/guestfs-actions.pod:5393
14994 msgid "See also C<guestfs_pread>, C<guestfs_pwrite_device>."
14995 msgstr ""
14996
14997 #. type: =head2
14998 #: ../src/guestfs-actions.pod:5402
14999 msgid "guestfs_pwrite_device"
15000 msgstr ""
15001
15002 #. type: verbatim
15003 #: ../src/guestfs-actions.pod:5404
15004 #, no-wrap
15005 msgid ""
15006 " int\n"
15007 " guestfs_pwrite_device (guestfs_h *g,\n"
15008 "                        const char *device,\n"
15009 "                        const char *content,\n"
15010 "                        size_t content_size,\n"
15011 "                        int64_t offset);\n"
15012 "\n"
15013 msgstr ""
15014
15015 #. type: textblock
15016 #: ../src/guestfs-actions.pod:5411 ../fish/guestfish-actions.pod:3627
15017 msgid ""
15018 "This command writes to part of a device.  It writes the data buffer "
15019 "C<content> to C<device> starting at offset C<offset>."
15020 msgstr ""
15021
15022 #. type: textblock
15023 #: ../src/guestfs-actions.pod:5414 ../fish/guestfish-actions.pod:3630
15024 msgid ""
15025 "This command implements the L<pwrite(2)> system call, and like that system "
15026 "call it may not write the full data requested (although short writes to disk "
15027 "devices and partitions are probably impossible with standard Linux kernels)."
15028 msgstr ""
15029
15030 #. type: textblock
15031 #: ../src/guestfs-actions.pod:5419
15032 msgid "See also C<guestfs_pwrite>."
15033 msgstr ""
15034
15035 #. type: textblock
15036 #: ../src/guestfs-actions.pod:5426
15037 msgid "(Added in 1.5.20)"
15038 msgstr ""
15039
15040 #. type: =head2
15041 #: ../src/guestfs-actions.pod:5428
15042 msgid "guestfs_read_file"
15043 msgstr ""
15044
15045 #. type: verbatim
15046 #: ../src/guestfs-actions.pod:5430
15047 #, no-wrap
15048 msgid ""
15049 " char *\n"
15050 " guestfs_read_file (guestfs_h *g,\n"
15051 "                    const char *path,\n"
15052 "                    size_t *size_r);\n"
15053 "\n"
15054 msgstr ""
15055
15056 #. type: textblock
15057 #: ../src/guestfs-actions.pod:5435 ../fish/guestfish-actions.pod:3644
15058 msgid "This calls returns the contents of the file C<path> as a buffer."
15059 msgstr ""
15060
15061 #. type: textblock
15062 #: ../src/guestfs-actions.pod:5438
15063 msgid ""
15064 "Unlike C<guestfs_cat>, this function can correctly handle files that contain "
15065 "embedded ASCII NUL characters.  However unlike C<guestfs_download>, this "
15066 "function is limited in the total size of file that can be handled."
15067 msgstr ""
15068
15069 #. type: textblock
15070 #: ../src/guestfs-actions.pod:5450
15071 msgid "(Added in 1.0.63)"
15072 msgstr ""
15073
15074 #. type: =head2
15075 #: ../src/guestfs-actions.pod:5452
15076 msgid "guestfs_read_lines"
15077 msgstr ""
15078
15079 #. type: verbatim
15080 #: ../src/guestfs-actions.pod:5454
15081 #, no-wrap
15082 msgid ""
15083 " char **\n"
15084 " guestfs_read_lines (guestfs_h *g,\n"
15085 "                     const char *path);\n"
15086 "\n"
15087 msgstr ""
15088
15089 #. type: textblock
15090 #: ../src/guestfs-actions.pod:5460 ../fish/guestfish-actions.pod:3661
15091 msgid ""
15092 "The file contents are returned as a list of lines.  Trailing C<LF> and "
15093 "C<CRLF> character sequences are I<not> returned."
15094 msgstr ""
15095
15096 #. type: textblock
15097 #: ../src/guestfs-actions.pod:5463
15098 msgid ""
15099 "Note that this function cannot correctly handle binary files (specifically, "
15100 "files containing C<\\0> character which is treated as end of line).  For "
15101 "those you need to use the C<guestfs_read_file> function which has a more "
15102 "complex interface."
15103 msgstr ""
15104
15105 #. type: =head2
15106 #: ../src/guestfs-actions.pod:5474
15107 msgid "guestfs_readdir"
15108 msgstr ""
15109
15110 #. type: verbatim
15111 #: ../src/guestfs-actions.pod:5476
15112 #, no-wrap
15113 msgid ""
15114 " struct guestfs_dirent_list *\n"
15115 " guestfs_readdir (guestfs_h *g,\n"
15116 "                  const char *dir);\n"
15117 "\n"
15118 msgstr ""
15119
15120 #. type: textblock
15121 #: ../src/guestfs-actions.pod:5480 ../fish/guestfish-actions.pod:3673
15122 msgid "This returns the list of directory entries in directory C<dir>."
15123 msgstr ""
15124
15125 #. type: textblock
15126 #: ../src/guestfs-actions.pod:5482 ../fish/guestfish-actions.pod:3675
15127 msgid ""
15128 "All entries in the directory are returned, including C<.> and C<..>.  The "
15129 "entries are I<not> sorted, but returned in the same order as the underlying "
15130 "filesystem."
15131 msgstr ""
15132
15133 #. type: textblock
15134 #: ../src/guestfs-actions.pod:5486 ../fish/guestfish-actions.pod:3679
15135 msgid ""
15136 "Also this call returns basic file type information about each file.  The "
15137 "C<ftyp> field will contain one of the following characters:"
15138 msgstr ""
15139
15140 #. type: =item
15141 #: ../src/guestfs-actions.pod:5491 ../fish/guestfish-actions.pod:3684
15142 msgid "'b'"
15143 msgstr ""
15144
15145 #. type: textblock
15146 #: ../src/guestfs-actions.pod:5493 ../fish/guestfish-actions.pod:3686
15147 msgid "Block special"
15148 msgstr ""
15149
15150 #. type: =item
15151 #: ../src/guestfs-actions.pod:5495 ../fish/guestfish-actions.pod:3688
15152 msgid "'c'"
15153 msgstr ""
15154
15155 #. type: textblock
15156 #: ../src/guestfs-actions.pod:5497 ../fish/guestfish-actions.pod:3690
15157 msgid "Char special"
15158 msgstr ""
15159
15160 #. type: =item
15161 #: ../src/guestfs-actions.pod:5499 ../fish/guestfish-actions.pod:3692
15162 msgid "'d'"
15163 msgstr ""
15164
15165 #. type: textblock
15166 #: ../src/guestfs-actions.pod:5501 ../fish/guestfish-actions.pod:3694
15167 msgid "Directory"
15168 msgstr ""
15169
15170 #. type: =item
15171 #: ../src/guestfs-actions.pod:5503 ../fish/guestfish-actions.pod:3696
15172 msgid "'f'"
15173 msgstr ""
15174
15175 #. type: textblock
15176 #: ../src/guestfs-actions.pod:5505 ../fish/guestfish-actions.pod:3698
15177 msgid "FIFO (named pipe)"
15178 msgstr ""
15179
15180 #. type: =item
15181 #: ../src/guestfs-actions.pod:5507 ../fish/guestfish-actions.pod:3700
15182 msgid "'l'"
15183 msgstr ""
15184
15185 #. type: textblock
15186 #: ../src/guestfs-actions.pod:5509 ../fish/guestfish-actions.pod:3702
15187 msgid "Symbolic link"
15188 msgstr ""
15189
15190 #. type: =item
15191 #: ../src/guestfs-actions.pod:5511 ../fish/guestfish-actions.pod:3704
15192 msgid "'r'"
15193 msgstr ""
15194
15195 #. type: textblock
15196 #: ../src/guestfs-actions.pod:5513 ../fish/guestfish-actions.pod:3706
15197 msgid "Regular file"
15198 msgstr ""
15199
15200 #. type: =item
15201 #: ../src/guestfs-actions.pod:5515 ../fish/guestfish-actions.pod:3708
15202 msgid "'s'"
15203 msgstr ""
15204
15205 #. type: textblock
15206 #: ../src/guestfs-actions.pod:5517 ../fish/guestfish-actions.pod:3710
15207 msgid "Socket"
15208 msgstr ""
15209
15210 #. type: =item
15211 #: ../src/guestfs-actions.pod:5519 ../fish/guestfish-actions.pod:3712
15212 msgid "'u'"
15213 msgstr ""
15214
15215 #. type: textblock
15216 #: ../src/guestfs-actions.pod:5521 ../fish/guestfish-actions.pod:3714
15217 msgid "Unknown file type"
15218 msgstr ""
15219
15220 #. type: =item
15221 #: ../src/guestfs-actions.pod:5523 ../fish/guestfish-actions.pod:3716
15222 msgid "'?'"
15223 msgstr ""
15224
15225 #. type: textblock
15226 #: ../src/guestfs-actions.pod:5525 ../fish/guestfish-actions.pod:3718
15227 msgid ""
15228 "The L<readdir(3)> call returned a C<d_type> field with an unexpected value"
15229 msgstr ""
15230
15231 #. type: textblock
15232 #: ../src/guestfs-actions.pod:5530
15233 msgid ""
15234 "This function is primarily intended for use by programs.  To get a simple "
15235 "list of names, use C<guestfs_ls>.  To get a printable directory for human "
15236 "consumption, use C<guestfs_ll>."
15237 msgstr ""
15238
15239 #. type: textblock
15240 #: ../src/guestfs-actions.pod:5534
15241 msgid ""
15242 "This function returns a C<struct guestfs_dirent_list *>, or NULL if there "
15243 "was an error.  I<The caller must call C<guestfs_free_dirent_list> after use>."
15244 msgstr ""
15245
15246 #. type: =head2
15247 #: ../src/guestfs-actions.pod:5540
15248 msgid "guestfs_readlink"
15249 msgstr ""
15250
15251 #. type: verbatim
15252 #: ../src/guestfs-actions.pod:5542
15253 #, no-wrap
15254 msgid ""
15255 " char *\n"
15256 " guestfs_readlink (guestfs_h *g,\n"
15257 "                   const char *path);\n"
15258 "\n"
15259 msgstr ""
15260
15261 #. type: textblock
15262 #: ../src/guestfs-actions.pod:5546 ../fish/guestfish-actions.pod:3731
15263 msgid "This command reads the target of a symbolic link."
15264 msgstr ""
15265
15266 #. type: =head2
15267 #: ../src/guestfs-actions.pod:5553
15268 msgid "guestfs_readlinklist"
15269 msgstr ""
15270
15271 #. type: verbatim
15272 #: ../src/guestfs-actions.pod:5555
15273 #, no-wrap
15274 msgid ""
15275 " char **\n"
15276 " guestfs_readlinklist (guestfs_h *g,\n"
15277 "                       const char *path,\n"
15278 "                       char *const *names);\n"
15279 "\n"
15280 msgstr ""
15281
15282 #. type: textblock
15283 #: ../src/guestfs-actions.pod:5560 ../fish/guestfish-actions.pod:3737
15284 msgid ""
15285 "This call allows you to do a C<readlink> operation on multiple files, where "
15286 "all files are in the directory C<path>.  C<names> is the list of files from "
15287 "this directory."
15288 msgstr ""
15289
15290 #. type: textblock
15291 #: ../src/guestfs-actions.pod:5564 ../fish/guestfish-actions.pod:3741
15292 msgid ""
15293 "On return you get a list of strings, with a one-to-one correspondence to the "
15294 "C<names> list.  Each string is the value of the symbolic link."
15295 msgstr ""
15296
15297 #. type: textblock
15298 #: ../src/guestfs-actions.pod:5568 ../fish/guestfish-actions.pod:3745
15299 msgid ""
15300 "If the C<readlink(2)> operation fails on any name, then the corresponding "
15301 "result string is the empty string C<\"\">.  However the whole operation is "
15302 "completed even if there were C<readlink(2)> errors, and so you can call this "
15303 "function with names where you don't know if they are symbolic links already "
15304 "(albeit slightly less efficient)."
15305 msgstr ""
15306
15307 #. type: textblock
15308 #: ../src/guestfs-actions.pod:5575 ../fish/guestfish-actions.pod:3752
15309 msgid ""
15310 "This call is intended for programs that want to efficiently list a directory "
15311 "contents without making many round-trips.  Very long directory listings "
15312 "might cause the protocol message size to be exceeded, causing this call to "
15313 "fail.  The caller must split up such requests into smaller groups of names."
15314 msgstr ""
15315
15316 #. type: =head2
15317 #: ../src/guestfs-actions.pod:5588
15318 msgid "guestfs_realpath"
15319 msgstr ""
15320
15321 #. type: verbatim
15322 #: ../src/guestfs-actions.pod:5590
15323 #, no-wrap
15324 msgid ""
15325 " char *\n"
15326 " guestfs_realpath (guestfs_h *g,\n"
15327 "                   const char *path);\n"
15328 "\n"
15329 msgstr ""
15330
15331 #. type: textblock
15332 #: ../src/guestfs-actions.pod:5594 ../fish/guestfish-actions.pod:3763
15333 msgid ""
15334 "Return the canonicalized absolute pathname of C<path>.  The returned path "
15335 "has no C<.>, C<..> or symbolic link path elements."
15336 msgstr ""
15337
15338 #. type: =head2
15339 #: ../src/guestfs-actions.pod:5602
15340 msgid "guestfs_removexattr"
15341 msgstr ""
15342
15343 #. type: verbatim
15344 #: ../src/guestfs-actions.pod:5604
15345 #, no-wrap
15346 msgid ""
15347 " int\n"
15348 " guestfs_removexattr (guestfs_h *g,\n"
15349 "                      const char *xattr,\n"
15350 "                      const char *path);\n"
15351 "\n"
15352 msgstr ""
15353
15354 #. type: textblock
15355 #: ../src/guestfs-actions.pod:5609 ../fish/guestfish-actions.pod:3770
15356 msgid ""
15357 "This call removes the extended attribute named C<xattr> of the file C<path>."
15358 msgstr ""
15359
15360 #. type: textblock
15361 #: ../src/guestfs-actions.pod:5612
15362 msgid "See also: C<guestfs_lremovexattr>, L<attr(5)>."
15363 msgstr ""
15364
15365 #. type: =head2
15366 #: ../src/guestfs-actions.pod:5618
15367 msgid "guestfs_resize2fs"
15368 msgstr ""
15369
15370 #. type: verbatim
15371 #: ../src/guestfs-actions.pod:5620
15372 #, no-wrap
15373 msgid ""
15374 " int\n"
15375 " guestfs_resize2fs (guestfs_h *g,\n"
15376 "                    const char *device);\n"
15377 "\n"
15378 msgstr ""
15379
15380 #. type: textblock
15381 #: ../src/guestfs-actions.pod:5624 ../fish/guestfish-actions.pod:3779
15382 msgid ""
15383 "This resizes an ext2, ext3 or ext4 filesystem to match the size of the "
15384 "underlying device."
15385 msgstr ""
15386
15387 #. type: textblock
15388 #: ../src/guestfs-actions.pod:5627
15389 msgid ""
15390 "I<Note:> It is sometimes required that you run C<guestfs_e2fsck_f> on the "
15391 "C<device> before calling this command.  For unknown reasons C<resize2fs> "
15392 "sometimes gives an error about this and sometimes not.  In any case, it is "
15393 "always safe to call C<guestfs_e2fsck_f> before calling this function."
15394 msgstr ""
15395
15396 #. type: =head2
15397 #: ../src/guestfs-actions.pod:5637
15398 msgid "guestfs_resize2fs_M"
15399 msgstr ""
15400
15401 #. type: verbatim
15402 #: ../src/guestfs-actions.pod:5639
15403 #, no-wrap
15404 msgid ""
15405 " int\n"
15406 " guestfs_resize2fs_M (guestfs_h *g,\n"
15407 "                      const char *device);\n"
15408 "\n"
15409 msgstr ""
15410
15411 #. type: textblock
15412 #: ../src/guestfs-actions.pod:5643
15413 msgid ""
15414 "This command is the same as C<guestfs_resize2fs>, but the filesystem is "
15415 "resized to its minimum size.  This works like the C<-M> option to the "
15416 "C<resize2fs> command."
15417 msgstr ""
15418
15419 #. type: textblock
15420 #: ../src/guestfs-actions.pod:5647
15421 msgid ""
15422 "To get the resulting size of the filesystem you should call "
15423 "C<guestfs_tune2fs_l> and read the C<Block size> and C<Block count> values.  "
15424 "These two numbers, multiplied together, give the resulting size of the "
15425 "minimal filesystem in bytes."
15426 msgstr ""
15427
15428 #. type: =head2
15429 #: ../src/guestfs-actions.pod:5654
15430 msgid "guestfs_resize2fs_size"
15431 msgstr ""
15432
15433 #. type: verbatim
15434 #: ../src/guestfs-actions.pod:5656
15435 #, no-wrap
15436 msgid ""
15437 " int\n"
15438 " guestfs_resize2fs_size (guestfs_h *g,\n"
15439 "                         const char *device,\n"
15440 "                         int64_t size);\n"
15441 "\n"
15442 msgstr ""
15443
15444 #. type: textblock
15445 #: ../src/guestfs-actions.pod:5661
15446 msgid ""
15447 "This command is the same as C<guestfs_resize2fs> except that it allows you "
15448 "to specify the new size (in bytes) explicitly."
15449 msgstr ""
15450
15451 #. type: =head2
15452 #: ../src/guestfs-actions.pod:5668
15453 msgid "guestfs_rm"
15454 msgstr ""
15455
15456 #. type: verbatim
15457 #: ../src/guestfs-actions.pod:5670
15458 #, no-wrap
15459 msgid ""
15460 " int\n"
15461 " guestfs_rm (guestfs_h *g,\n"
15462 "             const char *path);\n"
15463 "\n"
15464 msgstr ""
15465
15466 #. type: textblock
15467 #: ../src/guestfs-actions.pod:5674 ../fish/guestfish-actions.pod:3812
15468 msgid "Remove the single file C<path>."
15469 msgstr ""
15470
15471 #. type: =head2
15472 #: ../src/guestfs-actions.pod:5680
15473 msgid "guestfs_rm_rf"
15474 msgstr ""
15475
15476 #. type: verbatim
15477 #: ../src/guestfs-actions.pod:5682
15478 #, no-wrap
15479 msgid ""
15480 " int\n"
15481 " guestfs_rm_rf (guestfs_h *g,\n"
15482 "                const char *path);\n"
15483 "\n"
15484 msgstr ""
15485
15486 #. type: textblock
15487 #: ../src/guestfs-actions.pod:5686 ../fish/guestfish-actions.pod:3818
15488 msgid ""
15489 "Remove the file or directory C<path>, recursively removing the contents if "
15490 "its a directory.  This is like the C<rm -rf> shell command."
15491 msgstr ""
15492
15493 #. type: =head2
15494 #: ../src/guestfs-actions.pod:5694
15495 msgid "guestfs_rmdir"
15496 msgstr ""
15497
15498 #. type: verbatim
15499 #: ../src/guestfs-actions.pod:5696
15500 #, no-wrap
15501 msgid ""
15502 " int\n"
15503 " guestfs_rmdir (guestfs_h *g,\n"
15504 "                const char *path);\n"
15505 "\n"
15506 msgstr ""
15507
15508 #. type: textblock
15509 #: ../src/guestfs-actions.pod:5700 ../fish/guestfish-actions.pod:3826
15510 msgid "Remove the single directory C<path>."
15511 msgstr ""
15512
15513 #. type: =head2
15514 #: ../src/guestfs-actions.pod:5706
15515 msgid "guestfs_rmmountpoint"
15516 msgstr ""
15517
15518 #. type: verbatim
15519 #: ../src/guestfs-actions.pod:5708
15520 #, no-wrap
15521 msgid ""
15522 " int\n"
15523 " guestfs_rmmountpoint (guestfs_h *g,\n"
15524 "                       const char *exemptpath);\n"
15525 "\n"
15526 msgstr ""
15527
15528 #. type: textblock
15529 #: ../src/guestfs-actions.pod:5712
15530 msgid ""
15531 "This calls removes a mountpoint that was previously created with "
15532 "C<guestfs_mkmountpoint>.  See C<guestfs_mkmountpoint> for full details."
15533 msgstr ""
15534
15535 #. type: =head2
15536 #: ../src/guestfs-actions.pod:5720
15537 msgid "guestfs_scrub_device"
15538 msgstr ""
15539
15540 #. type: verbatim
15541 #: ../src/guestfs-actions.pod:5722
15542 #, no-wrap
15543 msgid ""
15544 " int\n"
15545 " guestfs_scrub_device (guestfs_h *g,\n"
15546 "                       const char *device);\n"
15547 "\n"
15548 msgstr ""
15549
15550 #. type: textblock
15551 #: ../src/guestfs-actions.pod:5726 ../fish/guestfish-actions.pod:3840
15552 msgid ""
15553 "This command writes patterns over C<device> to make data retrieval more "
15554 "difficult."
15555 msgstr ""
15556
15557 #. type: textblock
15558 #: ../src/guestfs-actions.pod:5729 ../src/guestfs-actions.pod:5750
15559 #: ../src/guestfs-actions.pod:5769 ../fish/guestfish-actions.pod:3843
15560 #: ../fish/guestfish-actions.pod:3858 ../fish/guestfish-actions.pod:3871
15561 msgid ""
15562 "It is an interface to the L<scrub(1)> program.  See that manual page for "
15563 "more details."
15564 msgstr ""
15565
15566 #. type: textblock
15567 #: ../src/guestfs-actions.pod:5737 ../src/guestfs-actions.pod:5755
15568 #: ../src/guestfs-actions.pod:5774
15569 msgid "(Added in 1.0.52)"
15570 msgstr ""
15571
15572 #. type: =head2
15573 #: ../src/guestfs-actions.pod:5739
15574 msgid "guestfs_scrub_file"
15575 msgstr ""
15576
15577 #. type: verbatim
15578 #: ../src/guestfs-actions.pod:5741
15579 #, no-wrap
15580 msgid ""
15581 " int\n"
15582 " guestfs_scrub_file (guestfs_h *g,\n"
15583 "                     const char *file);\n"
15584 "\n"
15585 msgstr ""
15586
15587 #. type: textblock
15588 #: ../src/guestfs-actions.pod:5745 ../fish/guestfish-actions.pod:3853
15589 msgid ""
15590 "This command writes patterns over a file to make data retrieval more "
15591 "difficult."
15592 msgstr ""
15593
15594 #. type: textblock
15595 #: ../src/guestfs-actions.pod:5748 ../fish/guestfish-actions.pod:3856
15596 msgid "The file is I<removed> after scrubbing."
15597 msgstr ""
15598
15599 #. type: =head2
15600 #: ../src/guestfs-actions.pod:5757
15601 msgid "guestfs_scrub_freespace"
15602 msgstr ""
15603
15604 #. type: verbatim
15605 #: ../src/guestfs-actions.pod:5759
15606 #, no-wrap
15607 msgid ""
15608 " int\n"
15609 " guestfs_scrub_freespace (guestfs_h *g,\n"
15610 "                          const char *dir);\n"
15611 "\n"
15612 msgstr ""
15613
15614 #. type: textblock
15615 #: ../src/guestfs-actions.pod:5763
15616 msgid ""
15617 "This command creates the directory C<dir> and then fills it with files until "
15618 "the filesystem is full, and scrubs the files as for C<guestfs_scrub_file>, "
15619 "and deletes them.  The intention is to scrub any free space on the partition "
15620 "containing C<dir>."
15621 msgstr ""
15622
15623 #. type: =head2
15624 #: ../src/guestfs-actions.pod:5776
15625 msgid "guestfs_set_append"
15626 msgstr ""
15627
15628 #. type: verbatim
15629 #: ../src/guestfs-actions.pod:5778
15630 #, no-wrap
15631 msgid ""
15632 " int\n"
15633 " guestfs_set_append (guestfs_h *g,\n"
15634 "                     const char *append);\n"
15635 "\n"
15636 msgstr ""
15637
15638 #. type: textblock
15639 #: ../src/guestfs-actions.pod:5782 ../fish/guestfish-actions.pod:3880
15640 msgid ""
15641 "This function is used to add additional options to the guest kernel command "
15642 "line."
15643 msgstr ""
15644
15645 #. type: textblock
15646 #: ../src/guestfs-actions.pod:5785 ../fish/guestfish-actions.pod:3883
15647 msgid ""
15648 "The default is C<NULL> unless overridden by setting C<LIBGUESTFS_APPEND> "
15649 "environment variable."
15650 msgstr ""
15651
15652 #. type: textblock
15653 #: ../src/guestfs-actions.pod:5788 ../fish/guestfish-actions.pod:3886
15654 msgid ""
15655 "Setting C<append> to C<NULL> means I<no> additional options are passed "
15656 "(libguestfs always adds a few of its own)."
15657 msgstr ""
15658
15659 #. type: =head2
15660 #: ../src/guestfs-actions.pod:5795
15661 msgid "guestfs_set_attach_method"
15662 msgstr ""
15663
15664 #. type: verbatim
15665 #: ../src/guestfs-actions.pod:5797
15666 #, no-wrap
15667 msgid ""
15668 " int\n"
15669 " guestfs_set_attach_method (guestfs_h *g,\n"
15670 "                            const char *attachmethod);\n"
15671 "\n"
15672 msgstr ""
15673
15674 #. type: textblock
15675 #: ../src/guestfs-actions.pod:5801 ../fish/guestfish-actions.pod:3895
15676 msgid ""
15677 "Set the method that libguestfs uses to connect to the back end guestfsd "
15678 "daemon.  Possible methods are:"
15679 msgstr ""
15680
15681 #. type: textblock
15682 #: ../src/guestfs-actions.pod:5808 ../fish/guestfish-actions.pod:3902
15683 msgid ""
15684 "Launch an appliance and connect to it.  This is the ordinary method and the "
15685 "default."
15686 msgstr ""
15687
15688 #. type: =item
15689 #: ../src/guestfs-actions.pod:5811 ../fish/guestfish-actions.pod:3905
15690 msgid "C<unix:I<path>>"
15691 msgstr ""
15692
15693 #. type: textblock
15694 #: ../src/guestfs-actions.pod:5813 ../fish/guestfish-actions.pod:3907
15695 msgid "Connect to the Unix domain socket I<path>."
15696 msgstr ""
15697
15698 #. type: textblock
15699 #: ../src/guestfs-actions.pod:5815 ../fish/guestfish-actions.pod:3909
15700 msgid ""
15701 "This method lets you connect to an existing daemon or (using virtio-serial) "
15702 "to a live guest.  For more information, see L<guestfs(3)/ATTACHING TO "
15703 "RUNNING DAEMONS>."
15704 msgstr ""
15705
15706 #. type: =head2
15707 #: ../src/guestfs-actions.pod:5823
15708 msgid "guestfs_set_autosync"
15709 msgstr ""
15710
15711 #. type: verbatim
15712 #: ../src/guestfs-actions.pod:5825
15713 #, no-wrap
15714 msgid ""
15715 " int\n"
15716 " guestfs_set_autosync (guestfs_h *g,\n"
15717 "                       int autosync);\n"
15718 "\n"
15719 msgstr ""
15720
15721 #. type: textblock
15722 #: ../src/guestfs-actions.pod:5829 ../fish/guestfish-actions.pod:3921
15723 msgid ""
15724 "If C<autosync> is true, this enables autosync.  Libguestfs will make a best "
15725 "effort attempt to make filesystems consistent and synchronized when the "
15726 "handle is closed (also if the program exits without closing handles)."
15727 msgstr ""
15728
15729 #. type: textblock
15730 #: ../src/guestfs-actions.pod:5834 ../fish/guestfish-actions.pod:3926
15731 msgid ""
15732 "This is enabled by default (since libguestfs 1.5.24, previously it was "
15733 "disabled by default)."
15734 msgstr ""
15735
15736 #. type: =head2
15737 #: ../src/guestfs-actions.pod:5841
15738 msgid "guestfs_set_direct"
15739 msgstr ""
15740
15741 #. type: verbatim
15742 #: ../src/guestfs-actions.pod:5843
15743 #, no-wrap
15744 msgid ""
15745 " int\n"
15746 " guestfs_set_direct (guestfs_h *g,\n"
15747 "                     int direct);\n"
15748 "\n"
15749 msgstr ""
15750
15751 #. type: textblock
15752 #: ../src/guestfs-actions.pod:5847 ../fish/guestfish-actions.pod:3935
15753 msgid ""
15754 "If the direct appliance mode flag is enabled, then stdin and stdout are "
15755 "passed directly through to the appliance once it is launched."
15756 msgstr ""
15757
15758 #. type: textblock
15759 #: ../src/guestfs-actions.pod:5851
15760 msgid ""
15761 "One consequence of this is that log messages aren't caught by the library "
15762 "and handled by C<guestfs_set_log_message_callback>, but go straight to "
15763 "stdout."
15764 msgstr ""
15765
15766 #. type: textblock
15767 #: ../src/guestfs-actions.pod:5855 ../fish/guestfish-actions.pod:3943
15768 msgid "You probably don't want to use this unless you know what you are doing."
15769 msgstr ""
15770
15771 #. type: textblock
15772 #: ../src/guestfs-actions.pod:5858 ../fish/guestfish-actions.pod:3946
15773 msgid "The default is disabled."
15774 msgstr ""
15775
15776 #. type: =head2
15777 #: ../src/guestfs-actions.pod:5864
15778 msgid "guestfs_set_e2label"
15779 msgstr ""
15780
15781 #. type: verbatim
15782 #: ../src/guestfs-actions.pod:5866
15783 #, no-wrap
15784 msgid ""
15785 " int\n"
15786 " guestfs_set_e2label (guestfs_h *g,\n"
15787 "                      const char *device,\n"
15788 "                      const char *label);\n"
15789 "\n"
15790 msgstr ""
15791
15792 #. type: textblock
15793 #: ../src/guestfs-actions.pod:5871 ../fish/guestfish-actions.pod:3952
15794 msgid ""
15795 "This sets the ext2/3/4 filesystem label of the filesystem on C<device> to "
15796 "C<label>.  Filesystem labels are limited to 16 characters."
15797 msgstr ""
15798
15799 #. type: textblock
15800 #: ../src/guestfs-actions.pod:5875
15801 msgid ""
15802 "You can use either C<guestfs_tune2fs_l> or C<guestfs_get_e2label> to return "
15803 "the existing label on a filesystem."
15804 msgstr ""
15805
15806 #. type: =head2
15807 #: ../src/guestfs-actions.pod:5882
15808 msgid "guestfs_set_e2uuid"
15809 msgstr ""
15810
15811 #. type: verbatim
15812 #: ../src/guestfs-actions.pod:5884
15813 #, no-wrap
15814 msgid ""
15815 " int\n"
15816 " guestfs_set_e2uuid (guestfs_h *g,\n"
15817 "                     const char *device,\n"
15818 "                     const char *uuid);\n"
15819 "\n"
15820 msgstr ""
15821
15822 #. type: textblock
15823 #: ../src/guestfs-actions.pod:5889 ../fish/guestfish-actions.pod:3963
15824 msgid ""
15825 "This sets the ext2/3/4 filesystem UUID of the filesystem on C<device> to "
15826 "C<uuid>.  The format of the UUID and alternatives such as C<clear>, "
15827 "C<random> and C<time> are described in the L<tune2fs(8)> manpage."
15828 msgstr ""
15829
15830 #. type: textblock
15831 #: ../src/guestfs-actions.pod:5894
15832 msgid ""
15833 "You can use either C<guestfs_tune2fs_l> or C<guestfs_get_e2uuid> to return "
15834 "the existing UUID of a filesystem."
15835 msgstr ""
15836
15837 #. type: =head2
15838 #: ../src/guestfs-actions.pod:5901
15839 msgid "guestfs_set_memsize"
15840 msgstr ""
15841
15842 #. type: verbatim
15843 #: ../src/guestfs-actions.pod:5903
15844 #, no-wrap
15845 msgid ""
15846 " int\n"
15847 " guestfs_set_memsize (guestfs_h *g,\n"
15848 "                      int memsize);\n"
15849 "\n"
15850 msgstr ""
15851
15852 #. type: textblock
15853 #: ../src/guestfs-actions.pod:5907
15854 msgid ""
15855 "This sets the memory size in megabytes allocated to the qemu subprocess.  "
15856 "This only has any effect if called before C<guestfs_launch>."
15857 msgstr ""
15858
15859 #. type: textblock
15860 #: ../src/guestfs-actions.pod:5911 ../fish/guestfish-actions.pod:3981
15861 msgid ""
15862 "You can also change this by setting the environment variable "
15863 "C<LIBGUESTFS_MEMSIZE> before the handle is created."
15864 msgstr ""
15865
15866 #. type: =head2
15867 #: ../src/guestfs-actions.pod:5922
15868 msgid "guestfs_set_network"
15869 msgstr ""
15870
15871 #. type: verbatim
15872 #: ../src/guestfs-actions.pod:5924
15873 #, no-wrap
15874 msgid ""
15875 " int\n"
15876 " guestfs_set_network (guestfs_h *g,\n"
15877 "                      int network);\n"
15878 "\n"
15879 msgstr ""
15880
15881 #. type: textblock
15882 #: ../src/guestfs-actions.pod:5928 ../fish/guestfish-actions.pod:3994
15883 msgid ""
15884 "If C<network> is true, then the network is enabled in the libguestfs "
15885 "appliance.  The default is false."
15886 msgstr ""
15887
15888 #. type: textblock
15889 #: ../src/guestfs-actions.pod:5931 ../fish/guestfish-actions.pod:3997
15890 msgid ""
15891 "This affects whether commands are able to access the network (see L<guestfs"
15892 "(3)/RUNNING COMMANDS>)."
15893 msgstr ""
15894
15895 #. type: textblock
15896 #: ../src/guestfs-actions.pod:5934
15897 msgid ""
15898 "You must call this before calling C<guestfs_launch>, otherwise it has no "
15899 "effect."
15900 msgstr ""
15901
15902 #. type: =head2
15903 #: ../src/guestfs-actions.pod:5941
15904 msgid "guestfs_set_path"
15905 msgstr ""
15906
15907 #. type: verbatim
15908 #: ../src/guestfs-actions.pod:5943
15909 #, no-wrap
15910 msgid ""
15911 " int\n"
15912 " guestfs_set_path (guestfs_h *g,\n"
15913 "                   const char *searchpath);\n"
15914 "\n"
15915 msgstr ""
15916
15917 #. type: textblock
15918 #: ../src/guestfs-actions.pod:5947 ../fish/guestfish-actions.pod:4009
15919 msgid "Set the path that libguestfs searches for kernel and initrd.img."
15920 msgstr ""
15921
15922 #. type: textblock
15923 #: ../src/guestfs-actions.pod:5949 ../fish/guestfish-actions.pod:4011
15924 msgid ""
15925 "The default is C<$libdir/guestfs> unless overridden by setting "
15926 "C<LIBGUESTFS_PATH> environment variable."
15927 msgstr ""
15928
15929 #. type: textblock
15930 #: ../src/guestfs-actions.pod:5952 ../fish/guestfish-actions.pod:4014
15931 msgid "Setting C<path> to C<NULL> restores the default path."
15932 msgstr ""
15933
15934 #. type: =head2
15935 #: ../src/guestfs-actions.pod:5958
15936 msgid "guestfs_set_qemu"
15937 msgstr ""
15938
15939 #. type: verbatim
15940 #: ../src/guestfs-actions.pod:5960
15941 #, no-wrap
15942 msgid ""
15943 " int\n"
15944 " guestfs_set_qemu (guestfs_h *g,\n"
15945 "                   const char *qemu);\n"
15946 "\n"
15947 msgstr ""
15948
15949 #. type: textblock
15950 #: ../src/guestfs-actions.pod:5964 ../fish/guestfish-actions.pod:4022
15951 msgid "Set the qemu binary that we will use."
15952 msgstr ""
15953
15954 #. type: textblock
15955 #: ../src/guestfs-actions.pod:5966 ../fish/guestfish-actions.pod:4024
15956 msgid ""
15957 "The default is chosen when the library was compiled by the configure script."
15958 msgstr ""
15959
15960 #. type: textblock
15961 #: ../src/guestfs-actions.pod:5969 ../fish/guestfish-actions.pod:4027
15962 msgid ""
15963 "You can also override this by setting the C<LIBGUESTFS_QEMU> environment "
15964 "variable."
15965 msgstr ""
15966
15967 #. type: textblock
15968 #: ../src/guestfs-actions.pod:5972 ../fish/guestfish-actions.pod:4030
15969 msgid "Setting C<qemu> to C<NULL> restores the default qemu binary."
15970 msgstr ""
15971
15972 #. type: textblock
15973 #: ../src/guestfs-actions.pod:5974 ../fish/guestfish-actions.pod:4032
15974 msgid ""
15975 "Note that you should call this function as early as possible after creating "
15976 "the handle.  This is because some pre-launch operations depend on testing "
15977 "qemu features (by running C<qemu -help>).  If the qemu binary changes, we "
15978 "don't retest features, and so you might see inconsistent results.  Using the "
15979 "environment variable C<LIBGUESTFS_QEMU> is safest of all since that picks "
15980 "the qemu binary at the same time as the handle is created."
15981 msgstr ""
15982
15983 #. type: =head2
15984 #: ../src/guestfs-actions.pod:5986
15985 msgid "guestfs_set_recovery_proc"
15986 msgstr ""
15987
15988 #. type: verbatim
15989 #: ../src/guestfs-actions.pod:5988
15990 #, no-wrap
15991 msgid ""
15992 " int\n"
15993 " guestfs_set_recovery_proc (guestfs_h *g,\n"
15994 "                            int recoveryproc);\n"
15995 "\n"
15996 msgstr ""
15997
15998 #. type: textblock
15999 #: ../src/guestfs-actions.pod:5992
16000 msgid ""
16001 "If this is called with the parameter C<false> then C<guestfs_launch> does "
16002 "not create a recovery process.  The purpose of the recovery process is to "
16003 "stop runaway qemu processes in the case where the main program aborts "
16004 "abruptly."
16005 msgstr ""
16006
16007 #. type: textblock
16008 #: ../src/guestfs-actions.pod:5997
16009 msgid ""
16010 "This only has any effect if called before C<guestfs_launch>, and the default "
16011 "is true."
16012 msgstr ""
16013
16014 #. type: textblock
16015 #: ../src/guestfs-actions.pod:6000 ../fish/guestfish-actions.pod:4054
16016 msgid ""
16017 "About the only time when you would want to disable this is if the main "
16018 "process will fork itself into the background (\"daemonize\" itself).  In "
16019 "this case the recovery process thinks that the main program has disappeared "
16020 "and so kills qemu, which is not very helpful."
16021 msgstr ""
16022
16023 #. type: =head2
16024 #: ../src/guestfs-actions.pod:6010
16025 msgid "guestfs_set_selinux"
16026 msgstr ""
16027
16028 #. type: verbatim
16029 #: ../src/guestfs-actions.pod:6012
16030 #, no-wrap
16031 msgid ""
16032 " int\n"
16033 " guestfs_set_selinux (guestfs_h *g,\n"
16034 "                      int selinux);\n"
16035 "\n"
16036 msgstr ""
16037
16038 #. type: textblock
16039 #: ../src/guestfs-actions.pod:6016 ../fish/guestfish-actions.pod:4066
16040 msgid ""
16041 "This sets the selinux flag that is passed to the appliance at boot time.  "
16042 "The default is C<selinux=0> (disabled)."
16043 msgstr ""
16044
16045 #. type: textblock
16046 #: ../src/guestfs-actions.pod:6019 ../fish/guestfish-actions.pod:4069
16047 msgid ""
16048 "Note that if SELinux is enabled, it is always in Permissive mode "
16049 "(C<enforcing=0>)."
16050 msgstr ""
16051
16052 #. type: =head2
16053 #: ../src/guestfs-actions.pod:6029
16054 msgid "guestfs_set_trace"
16055 msgstr ""
16056
16057 #. type: verbatim
16058 #: ../src/guestfs-actions.pod:6031
16059 #, no-wrap
16060 msgid ""
16061 " int\n"
16062 " guestfs_set_trace (guestfs_h *g,\n"
16063 "                    int trace);\n"
16064 "\n"
16065 msgstr ""
16066
16067 #. type: textblock
16068 #: ../src/guestfs-actions.pod:6035 ../fish/guestfish-actions.pod:4081
16069 msgid ""
16070 "If the command trace flag is set to 1, then libguestfs calls, parameters and "
16071 "return values are traced."
16072 msgstr ""
16073
16074 #. type: textblock
16075 #: ../src/guestfs-actions.pod:6038 ../fish/guestfish-actions.pod:4084
16076 msgid ""
16077 "If you want to trace C API calls into libguestfs (and other libraries) then "
16078 "possibly a better way is to use the external ltrace(1) command."
16079 msgstr ""
16080
16081 #. type: textblock
16082 #: ../src/guestfs-actions.pod:6042 ../fish/guestfish-actions.pod:4088
16083 msgid ""
16084 "Command traces are disabled unless the environment variable "
16085 "C<LIBGUESTFS_TRACE> is defined and set to C<1>."
16086 msgstr ""
16087
16088 #. type: textblock
16089 #: ../src/guestfs-actions.pod:6045
16090 msgid ""
16091 "Trace messages are normally sent to C<stderr>, unless you register a "
16092 "callback to send them somewhere else (see C<guestfs_set_event_callback>)."
16093 msgstr ""
16094
16095 #. type: =head2
16096 #: ../src/guestfs-actions.pod:6053
16097 msgid "guestfs_set_verbose"
16098 msgstr ""
16099
16100 #. type: verbatim
16101 #: ../src/guestfs-actions.pod:6055
16102 #, no-wrap
16103 msgid ""
16104 " int\n"
16105 " guestfs_set_verbose (guestfs_h *g,\n"
16106 "                      int verbose);\n"
16107 "\n"
16108 msgstr ""
16109
16110 #. type: textblock
16111 #: ../src/guestfs-actions.pod:6059 ../fish/guestfish-actions.pod:4101
16112 msgid "If C<verbose> is true, this turns on verbose messages."
16113 msgstr ""
16114
16115 #. type: textblock
16116 #: ../src/guestfs-actions.pod:6061 ../fish/guestfish-actions.pod:4103
16117 msgid ""
16118 "Verbose messages are disabled unless the environment variable "
16119 "C<LIBGUESTFS_DEBUG> is defined and set to C<1>."
16120 msgstr ""
16121
16122 #. type: textblock
16123 #: ../src/guestfs-actions.pod:6064
16124 msgid ""
16125 "Verbose messages are normally sent to C<stderr>, unless you register a "
16126 "callback to send them somewhere else (see C<guestfs_set_event_callback>)."
16127 msgstr ""
16128
16129 #. type: =head2
16130 #: ../src/guestfs-actions.pod:6072
16131 msgid "guestfs_setcon"
16132 msgstr ""
16133
16134 #. type: verbatim
16135 #: ../src/guestfs-actions.pod:6074
16136 #, no-wrap
16137 msgid ""
16138 " int\n"
16139 " guestfs_setcon (guestfs_h *g,\n"
16140 "                 const char *context);\n"
16141 "\n"
16142 msgstr ""
16143
16144 #. type: textblock
16145 #: ../src/guestfs-actions.pod:6078 ../fish/guestfish-actions.pod:4114
16146 msgid ""
16147 "This sets the SELinux security context of the daemon to the string "
16148 "C<context>."
16149 msgstr ""
16150
16151 #. type: textblock
16152 #: ../src/guestfs-actions.pod:6081 ../fish/guestfish-actions.pod:4117
16153 msgid "See the documentation about SELINUX in L<guestfs(3)>."
16154 msgstr ""
16155
16156 #. type: =head2
16157 #: ../src/guestfs-actions.pod:6087
16158 msgid "guestfs_setxattr"
16159 msgstr ""
16160
16161 #. type: verbatim
16162 #: ../src/guestfs-actions.pod:6089
16163 #, no-wrap
16164 msgid ""
16165 " int\n"
16166 " guestfs_setxattr (guestfs_h *g,\n"
16167 "                   const char *xattr,\n"
16168 "                   const char *val,\n"
16169 "                   int vallen,\n"
16170 "                   const char *path);\n"
16171 "\n"
16172 msgstr ""
16173
16174 #. type: textblock
16175 #: ../src/guestfs-actions.pod:6096 ../fish/guestfish-actions.pod:4123
16176 msgid ""
16177 "This call sets the extended attribute named C<xattr> of the file C<path> to "
16178 "the value C<val> (of length C<vallen>).  The value is arbitrary 8 bit data."
16179 msgstr ""
16180
16181 #. type: textblock
16182 #: ../src/guestfs-actions.pod:6100
16183 msgid "See also: C<guestfs_lsetxattr>, L<attr(5)>."
16184 msgstr ""
16185
16186 #. type: =head2
16187 #: ../src/guestfs-actions.pod:6106
16188 msgid "guestfs_sfdisk"
16189 msgstr ""
16190
16191 #. type: verbatim
16192 #: ../src/guestfs-actions.pod:6108
16193 #, no-wrap
16194 msgid ""
16195 " int\n"
16196 " guestfs_sfdisk (guestfs_h *g,\n"
16197 "                 const char *device,\n"
16198 "                 int cyls,\n"
16199 "                 int heads,\n"
16200 "                 int sectors,\n"
16201 "                 char *const *lines);\n"
16202 "\n"
16203 msgstr ""
16204
16205 #. type: textblock
16206 #: ../src/guestfs-actions.pod:6116 ../fish/guestfish-actions.pod:4133
16207 msgid ""
16208 "This is a direct interface to the L<sfdisk(8)> program for creating "
16209 "partitions on block devices."
16210 msgstr ""
16211
16212 #. type: textblock
16213 #: ../src/guestfs-actions.pod:6119 ../fish/guestfish-actions.pod:4136
16214 msgid "C<device> should be a block device, for example C</dev/sda>."
16215 msgstr ""
16216
16217 #. type: textblock
16218 #: ../src/guestfs-actions.pod:6121 ../fish/guestfish-actions.pod:4138
16219 msgid ""
16220 "C<cyls>, C<heads> and C<sectors> are the number of cylinders, heads and "
16221 "sectors on the device, which are passed directly to sfdisk as the I<-C>, I<-"
16222 "H> and I<-S> parameters.  If you pass C<0> for any of these, then the "
16223 "corresponding parameter is omitted.  Usually for 'large' disks, you can just "
16224 "pass C<0> for these, but for small (floppy-sized) disks, sfdisk (or rather, "
16225 "the kernel) cannot work out the right geometry and you will need to tell it."
16226 msgstr ""
16227
16228 #. type: textblock
16229 #: ../src/guestfs-actions.pod:6129 ../fish/guestfish-actions.pod:4146
16230 msgid ""
16231 "C<lines> is a list of lines that we feed to C<sfdisk>.  For more information "
16232 "refer to the L<sfdisk(8)> manpage."
16233 msgstr ""
16234
16235 #. type: textblock
16236 #: ../src/guestfs-actions.pod:6132 ../fish/guestfish-actions.pod:4149
16237 msgid ""
16238 "To create a single partition occupying the whole disk, you would pass "
16239 "C<lines> as a single element list, when the single element being the string "
16240 "C<,> (comma)."
16241 msgstr ""
16242
16243 #. type: textblock
16244 #: ../src/guestfs-actions.pod:6136
16245 msgid ""
16246 "See also: C<guestfs_sfdisk_l>, C<guestfs_sfdisk_N>, C<guestfs_part_init>"
16247 msgstr ""
16248
16249 #. type: =head2
16250 #: ../src/guestfs-actions.pod:6146
16251 msgid "guestfs_sfdiskM"
16252 msgstr ""
16253
16254 #. type: verbatim
16255 #: ../src/guestfs-actions.pod:6148
16256 #, no-wrap
16257 msgid ""
16258 " int\n"
16259 " guestfs_sfdiskM (guestfs_h *g,\n"
16260 "                  const char *device,\n"
16261 "                  char *const *lines);\n"
16262 "\n"
16263 msgstr ""
16264
16265 #. type: textblock
16266 #: ../src/guestfs-actions.pod:6153
16267 msgid ""
16268 "This is a simplified interface to the C<guestfs_sfdisk> command, where "
16269 "partition sizes are specified in megabytes only (rounded to the nearest "
16270 "cylinder) and you don't need to specify the cyls, heads and sectors "
16271 "parameters which were rarely if ever used anyway."
16272 msgstr ""
16273
16274 #. type: textblock
16275 #: ../src/guestfs-actions.pod:6159
16276 msgid ""
16277 "See also: C<guestfs_sfdisk>, the L<sfdisk(8)> manpage and "
16278 "C<guestfs_part_disk>"
16279 msgstr ""
16280
16281 #. type: =head2
16282 #: ../src/guestfs-actions.pod:6169
16283 msgid "guestfs_sfdisk_N"
16284 msgstr ""
16285
16286 #. type: verbatim
16287 #: ../src/guestfs-actions.pod:6171
16288 #, no-wrap
16289 msgid ""
16290 " int\n"
16291 " guestfs_sfdisk_N (guestfs_h *g,\n"
16292 "                   const char *device,\n"
16293 "                   int partnum,\n"
16294 "                   int cyls,\n"
16295 "                   int heads,\n"
16296 "                   int sectors,\n"
16297 "                   const char *line);\n"
16298 "\n"
16299 msgstr ""
16300
16301 #. type: textblock
16302 #: ../src/guestfs-actions.pod:6180 ../fish/guestfish-actions.pod:4179
16303 msgid ""
16304 "This runs L<sfdisk(8)> option to modify just the single partition C<n> "
16305 "(note: C<n> counts from 1)."
16306 msgstr ""
16307
16308 #. type: textblock
16309 #: ../src/guestfs-actions.pod:6183
16310 msgid ""
16311 "For other parameters, see C<guestfs_sfdisk>.  You should usually pass C<0> "
16312 "for the cyls/heads/sectors parameters."
16313 msgstr ""
16314
16315 #. type: textblock
16316 #: ../src/guestfs-actions.pod:6186
16317 msgid "See also: C<guestfs_part_add>"
16318 msgstr ""
16319
16320 #. type: =head2
16321 #: ../src/guestfs-actions.pod:6195
16322 msgid "guestfs_sfdisk_disk_geometry"
16323 msgstr ""
16324
16325 #. type: verbatim
16326 #: ../src/guestfs-actions.pod:6197
16327 #, no-wrap
16328 msgid ""
16329 " char *\n"
16330 " guestfs_sfdisk_disk_geometry (guestfs_h *g,\n"
16331 "                               const char *device);\n"
16332 "\n"
16333 msgstr ""
16334
16335 #. type: textblock
16336 #: ../src/guestfs-actions.pod:6201
16337 msgid ""
16338 "This displays the disk geometry of C<device> read from the partition table.  "
16339 "Especially in the case where the underlying block device has been resized, "
16340 "this can be different from the kernel's idea of the geometry (see "
16341 "C<guestfs_sfdisk_kernel_geometry>)."
16342 msgstr ""
16343
16344 #. type: textblock
16345 #: ../src/guestfs-actions.pod:6206 ../src/guestfs-actions.pod:6222
16346 #: ../fish/guestfish-actions.pod:4199 ../fish/guestfish-actions.pod:4208
16347 msgid "The result is in human-readable format, and not designed to be parsed."
16348 msgstr ""
16349
16350 #. type: =head2
16351 #: ../src/guestfs-actions.pod:6214
16352 msgid "guestfs_sfdisk_kernel_geometry"
16353 msgstr ""
16354
16355 #. type: verbatim
16356 #: ../src/guestfs-actions.pod:6216
16357 #, no-wrap
16358 msgid ""
16359 " char *\n"
16360 " guestfs_sfdisk_kernel_geometry (guestfs_h *g,\n"
16361 "                                 const char *device);\n"
16362 "\n"
16363 msgstr ""
16364
16365 #. type: textblock
16366 #: ../src/guestfs-actions.pod:6220 ../fish/guestfish-actions.pod:4206
16367 msgid "This displays the kernel's idea of the geometry of C<device>."
16368 msgstr ""
16369
16370 #. type: =head2
16371 #: ../src/guestfs-actions.pod:6230
16372 msgid "guestfs_sfdisk_l"
16373 msgstr ""
16374
16375 #. type: verbatim
16376 #: ../src/guestfs-actions.pod:6232
16377 #, no-wrap
16378 msgid ""
16379 " char *\n"
16380 " guestfs_sfdisk_l (guestfs_h *g,\n"
16381 "                   const char *device);\n"
16382 "\n"
16383 msgstr ""
16384
16385 #. type: textblock
16386 #: ../src/guestfs-actions.pod:6236 ../fish/guestfish-actions.pod:4215
16387 msgid ""
16388 "This displays the partition table on C<device>, in the human-readable output "
16389 "of the L<sfdisk(8)> command.  It is not intended to be parsed."
16390 msgstr ""
16391
16392 #. type: textblock
16393 #: ../src/guestfs-actions.pod:6240
16394 msgid "See also: C<guestfs_part_list>"
16395 msgstr ""
16396
16397 #. type: =head2
16398 #: ../src/guestfs-actions.pod:6247
16399 msgid "guestfs_sh"
16400 msgstr ""
16401
16402 #. type: verbatim
16403 #: ../src/guestfs-actions.pod:6249
16404 #, no-wrap
16405 msgid ""
16406 " char *\n"
16407 " guestfs_sh (guestfs_h *g,\n"
16408 "             const char *command);\n"
16409 "\n"
16410 msgstr ""
16411
16412 #. type: textblock
16413 #: ../src/guestfs-actions.pod:6253 ../fish/guestfish-actions.pod:4225
16414 msgid ""
16415 "This call runs a command from the guest filesystem via the guest's C</bin/"
16416 "sh>."
16417 msgstr ""
16418
16419 #. type: textblock
16420 #: ../src/guestfs-actions.pod:6256
16421 msgid "This is like C<guestfs_command>, but passes the command to:"
16422 msgstr ""
16423
16424 #. type: verbatim
16425 #: ../src/guestfs-actions.pod:6258 ../fish/guestfish-actions.pod:4230
16426 #, no-wrap
16427 msgid ""
16428 " /bin/sh -c \"command\"\n"
16429 "\n"
16430 msgstr ""
16431
16432 #. type: textblock
16433 #: ../src/guestfs-actions.pod:6260 ../fish/guestfish-actions.pod:4232
16434 msgid ""
16435 "Depending on the guest's shell, this usually results in wildcards being "
16436 "expanded, shell expressions being interpolated and so on."
16437 msgstr ""
16438
16439 #. type: textblock
16440 #: ../src/guestfs-actions.pod:6264
16441 msgid "All the provisos about C<guestfs_command> apply to this call."
16442 msgstr ""
16443
16444 #. type: =head2
16445 #: ../src/guestfs-actions.pod:6271
16446 msgid "guestfs_sh_lines"
16447 msgstr ""
16448
16449 #. type: verbatim
16450 #: ../src/guestfs-actions.pod:6273
16451 #, no-wrap
16452 msgid ""
16453 " char **\n"
16454 " guestfs_sh_lines (guestfs_h *g,\n"
16455 "                   const char *command);\n"
16456 "\n"
16457 msgstr ""
16458
16459 #. type: textblock
16460 #: ../src/guestfs-actions.pod:6277
16461 msgid ""
16462 "This is the same as C<guestfs_sh>, but splits the result into a list of "
16463 "lines."
16464 msgstr ""
16465
16466 #. type: textblock
16467 #: ../src/guestfs-actions.pod:6280
16468 msgid "See also: C<guestfs_command_lines>"
16469 msgstr ""
16470
16471 #. type: =head2
16472 #: ../src/guestfs-actions.pod:6288
16473 msgid "guestfs_sleep"
16474 msgstr ""
16475
16476 #. type: verbatim
16477 #: ../src/guestfs-actions.pod:6290
16478 #, no-wrap
16479 msgid ""
16480 " int\n"
16481 " guestfs_sleep (guestfs_h *g,\n"
16482 "                int secs);\n"
16483 "\n"
16484 msgstr ""
16485
16486 #. type: textblock
16487 #: ../src/guestfs-actions.pod:6294 ../fish/guestfish-actions.pod:4251
16488 msgid "Sleep for C<secs> seconds."
16489 msgstr ""
16490
16491 #. type: textblock
16492 #: ../src/guestfs-actions.pod:6298
16493 msgid "(Added in 1.0.41)"
16494 msgstr ""
16495
16496 #. type: =head2
16497 #: ../src/guestfs-actions.pod:6300 ../src/guestfs-structs.pod:109
16498 msgid "guestfs_stat"
16499 msgstr ""
16500
16501 #. type: verbatim
16502 #: ../src/guestfs-actions.pod:6302
16503 #, no-wrap
16504 msgid ""
16505 " struct guestfs_stat *\n"
16506 " guestfs_stat (guestfs_h *g,\n"
16507 "               const char *path);\n"
16508 "\n"
16509 msgstr ""
16510
16511 #. type: textblock
16512 #: ../src/guestfs-actions.pod:6308 ../fish/guestfish-actions.pod:4259
16513 msgid "This is the same as the C<stat(2)> system call."
16514 msgstr ""
16515
16516 #. type: =head2
16517 #: ../src/guestfs-actions.pod:6316 ../src/guestfs-structs.pod:135
16518 msgid "guestfs_statvfs"
16519 msgstr ""
16520
16521 #. type: verbatim
16522 #: ../src/guestfs-actions.pod:6318
16523 #, no-wrap
16524 msgid ""
16525 " struct guestfs_statvfs *\n"
16526 " guestfs_statvfs (guestfs_h *g,\n"
16527 "                  const char *path);\n"
16528 "\n"
16529 msgstr ""
16530
16531 #. type: textblock
16532 #: ../src/guestfs-actions.pod:6322 ../fish/guestfish-actions.pod:4265
16533 msgid ""
16534 "Returns file system statistics for any mounted file system.  C<path> should "
16535 "be a file or directory in the mounted file system (typically it is the mount "
16536 "point itself, but it doesn't need to be)."
16537 msgstr ""
16538
16539 #. type: textblock
16540 #: ../src/guestfs-actions.pod:6326 ../fish/guestfish-actions.pod:4269
16541 msgid "This is the same as the C<statvfs(2)> system call."
16542 msgstr ""
16543
16544 #. type: textblock
16545 #: ../src/guestfs-actions.pod:6328
16546 msgid ""
16547 "This function returns a C<struct guestfs_statvfs *>, or NULL if there was an "
16548 "error.  I<The caller must call C<guestfs_free_statvfs> after use>."
16549 msgstr ""
16550
16551 #. type: =head2
16552 #: ../src/guestfs-actions.pod:6334
16553 msgid "guestfs_strings"
16554 msgstr ""
16555
16556 #. type: verbatim
16557 #: ../src/guestfs-actions.pod:6336
16558 #, no-wrap
16559 msgid ""
16560 " char **\n"
16561 " guestfs_strings (guestfs_h *g,\n"
16562 "                  const char *path);\n"
16563 "\n"
16564 msgstr ""
16565
16566 #. type: textblock
16567 #: ../src/guestfs-actions.pod:6340 ../fish/guestfish-actions.pod:4275
16568 msgid ""
16569 "This runs the L<strings(1)> command on a file and returns the list of "
16570 "printable strings found."
16571 msgstr ""
16572
16573 #. type: =head2
16574 #: ../src/guestfs-actions.pod:6352
16575 msgid "guestfs_strings_e"
16576 msgstr ""
16577
16578 #. type: verbatim
16579 #: ../src/guestfs-actions.pod:6354
16580 #, no-wrap
16581 msgid ""
16582 " char **\n"
16583 " guestfs_strings_e (guestfs_h *g,\n"
16584 "                    const char *encoding,\n"
16585 "                    const char *path);\n"
16586 "\n"
16587 msgstr ""
16588
16589 #. type: textblock
16590 #: ../src/guestfs-actions.pod:6359
16591 msgid ""
16592 "This is like the C<guestfs_strings> command, but allows you to specify the "
16593 "encoding of strings that are looked for in the source file C<path>."
16594 msgstr ""
16595
16596 #. type: textblock
16597 #: ../src/guestfs-actions.pod:6363 ../fish/guestfish-actions.pod:4289
16598 msgid "Allowed encodings are:"
16599 msgstr ""
16600
16601 #. type: =item
16602 #: ../src/guestfs-actions.pod:6367 ../fish/guestfish-actions.pod:4293
16603 msgid "s"
16604 msgstr ""
16605
16606 #. type: textblock
16607 #: ../src/guestfs-actions.pod:6369
16608 msgid ""
16609 "Single 7-bit-byte characters like ASCII and the ASCII-compatible parts of "
16610 "ISO-8859-X (this is what C<guestfs_strings> uses)."
16611 msgstr ""
16612
16613 #. type: =item
16614 #: ../src/guestfs-actions.pod:6372 ../fish/guestfish-actions.pod:4298
16615 msgid "S"
16616 msgstr ""
16617
16618 #. type: textblock
16619 #: ../src/guestfs-actions.pod:6374 ../fish/guestfish-actions.pod:4300
16620 msgid "Single 8-bit-byte characters."
16621 msgstr ""
16622
16623 #. type: =item
16624 #: ../src/guestfs-actions.pod:6376 ../fish/guestfish-actions.pod:4302
16625 msgid "b"
16626 msgstr ""
16627
16628 #. type: textblock
16629 #: ../src/guestfs-actions.pod:6378 ../fish/guestfish-actions.pod:4304
16630 msgid "16-bit big endian strings such as those encoded in UTF-16BE or UCS-2BE."
16631 msgstr ""
16632
16633 #. type: =item
16634 #: ../src/guestfs-actions.pod:6381 ../fish/guestfish-actions.pod:4307
16635 msgid "l (lower case letter L)"
16636 msgstr ""
16637
16638 #. type: textblock
16639 #: ../src/guestfs-actions.pod:6383 ../fish/guestfish-actions.pod:4309
16640 msgid ""
16641 "16-bit little endian such as UTF-16LE and UCS-2LE.  This is useful for "
16642 "examining binaries in Windows guests."
16643 msgstr ""
16644
16645 #. type: =item
16646 #: ../src/guestfs-actions.pod:6386 ../fish/guestfish-actions.pod:4312
16647 msgid "B"
16648 msgstr ""
16649
16650 #. type: textblock
16651 #: ../src/guestfs-actions.pod:6388 ../fish/guestfish-actions.pod:4314
16652 msgid "32-bit big endian such as UCS-4BE."
16653 msgstr ""
16654
16655 #. type: =item
16656 #: ../src/guestfs-actions.pod:6390 ../fish/guestfish-actions.pod:4316
16657 msgid "L"
16658 msgstr ""
16659
16660 #. type: textblock
16661 #: ../src/guestfs-actions.pod:6392 ../fish/guestfish-actions.pod:4318
16662 msgid "32-bit little endian such as UCS-4LE."
16663 msgstr ""
16664
16665 #. type: textblock
16666 #: ../src/guestfs-actions.pod:6396 ../fish/guestfish-actions.pod:4322
16667 msgid "The returned strings are transcoded to UTF-8."
16668 msgstr ""
16669
16670 #. type: =head2
16671 #: ../src/guestfs-actions.pod:6407
16672 msgid "guestfs_swapoff_device"
16673 msgstr ""
16674
16675 #. type: verbatim
16676 #: ../src/guestfs-actions.pod:6409
16677 #, no-wrap
16678 msgid ""
16679 " int\n"
16680 " guestfs_swapoff_device (guestfs_h *g,\n"
16681 "                         const char *device);\n"
16682 "\n"
16683 msgstr ""
16684
16685 #. type: textblock
16686 #: ../src/guestfs-actions.pod:6413
16687 msgid ""
16688 "This command disables the libguestfs appliance swap device or partition "
16689 "named C<device>.  See C<guestfs_swapon_device>."
16690 msgstr ""
16691
16692 #. type: =head2
16693 #: ../src/guestfs-actions.pod:6421
16694 msgid "guestfs_swapoff_file"
16695 msgstr ""
16696
16697 #. type: verbatim
16698 #: ../src/guestfs-actions.pod:6423
16699 #, no-wrap
16700 msgid ""
16701 " int\n"
16702 " guestfs_swapoff_file (guestfs_h *g,\n"
16703 "                       const char *file);\n"
16704 "\n"
16705 msgstr ""
16706
16707 #. type: textblock
16708 #: ../src/guestfs-actions.pod:6427 ../fish/guestfish-actions.pod:4339
16709 msgid "This command disables the libguestfs appliance swap on file."
16710 msgstr ""
16711
16712 #. type: =head2
16713 #: ../src/guestfs-actions.pod:6433
16714 msgid "guestfs_swapoff_label"
16715 msgstr ""
16716
16717 #. type: verbatim
16718 #: ../src/guestfs-actions.pod:6435
16719 #, no-wrap
16720 msgid ""
16721 " int\n"
16722 " guestfs_swapoff_label (guestfs_h *g,\n"
16723 "                        const char *label);\n"
16724 "\n"
16725 msgstr ""
16726
16727 #. type: textblock
16728 #: ../src/guestfs-actions.pod:6439 ../fish/guestfish-actions.pod:4345
16729 msgid ""
16730 "This command disables the libguestfs appliance swap on labeled swap "
16731 "partition."
16732 msgstr ""
16733
16734 #. type: =head2
16735 #: ../src/guestfs-actions.pod:6446
16736 msgid "guestfs_swapoff_uuid"
16737 msgstr ""
16738
16739 #. type: verbatim
16740 #: ../src/guestfs-actions.pod:6448
16741 #, no-wrap
16742 msgid ""
16743 " int\n"
16744 " guestfs_swapoff_uuid (guestfs_h *g,\n"
16745 "                       const char *uuid);\n"
16746 "\n"
16747 msgstr ""
16748
16749 #. type: textblock
16750 #: ../src/guestfs-actions.pod:6452 ../fish/guestfish-actions.pod:4352
16751 msgid ""
16752 "This command disables the libguestfs appliance swap partition with the given "
16753 "UUID."
16754 msgstr ""
16755
16756 #. type: =head2
16757 #: ../src/guestfs-actions.pod:6459
16758 msgid "guestfs_swapon_device"
16759 msgstr ""
16760
16761 #. type: verbatim
16762 #: ../src/guestfs-actions.pod:6461
16763 #, no-wrap
16764 msgid ""
16765 " int\n"
16766 " guestfs_swapon_device (guestfs_h *g,\n"
16767 "                        const char *device);\n"
16768 "\n"
16769 msgstr ""
16770
16771 #. type: textblock
16772 #: ../src/guestfs-actions.pod:6465
16773 msgid ""
16774 "This command enables the libguestfs appliance to use the swap device or "
16775 "partition named C<device>.  The increased memory is made available for all "
16776 "commands, for example those run using C<guestfs_command> or C<guestfs_sh>."
16777 msgstr ""
16778
16779 #. type: textblock
16780 #: ../src/guestfs-actions.pod:6470 ../fish/guestfish-actions.pod:4364
16781 msgid ""
16782 "Note that you should not swap to existing guest swap partitions unless you "
16783 "know what you are doing.  They may contain hibernation information, or other "
16784 "information that the guest doesn't want you to trash.  You also risk leaking "
16785 "information about the host to the guest this way.  Instead, attach a new "
16786 "host device to the guest and swap on that."
16787 msgstr ""
16788
16789 #. type: =head2
16790 #: ../src/guestfs-actions.pod:6481
16791 msgid "guestfs_swapon_file"
16792 msgstr ""
16793
16794 #. type: verbatim
16795 #: ../src/guestfs-actions.pod:6483
16796 #, no-wrap
16797 msgid ""
16798 " int\n"
16799 " guestfs_swapon_file (guestfs_h *g,\n"
16800 "                      const char *file);\n"
16801 "\n"
16802 msgstr ""
16803
16804 #. type: textblock
16805 #: ../src/guestfs-actions.pod:6487
16806 msgid ""
16807 "This command enables swap to a file.  See C<guestfs_swapon_device> for other "
16808 "notes."
16809 msgstr ""
16810
16811 #. type: =head2
16812 #: ../src/guestfs-actions.pod:6494
16813 msgid "guestfs_swapon_label"
16814 msgstr ""
16815
16816 #. type: verbatim
16817 #: ../src/guestfs-actions.pod:6496
16818 #, no-wrap
16819 msgid ""
16820 " int\n"
16821 " guestfs_swapon_label (guestfs_h *g,\n"
16822 "                       const char *label);\n"
16823 "\n"
16824 msgstr ""
16825
16826 #. type: textblock
16827 #: ../src/guestfs-actions.pod:6500
16828 msgid ""
16829 "This command enables swap to a labeled swap partition.  See "
16830 "C<guestfs_swapon_device> for other notes."
16831 msgstr ""
16832
16833 #. type: =head2
16834 #: ../src/guestfs-actions.pod:6507
16835 msgid "guestfs_swapon_uuid"
16836 msgstr ""
16837
16838 #. type: verbatim
16839 #: ../src/guestfs-actions.pod:6509
16840 #, no-wrap
16841 msgid ""
16842 " int\n"
16843 " guestfs_swapon_uuid (guestfs_h *g,\n"
16844 "                      const char *uuid);\n"
16845 "\n"
16846 msgstr ""
16847
16848 #. type: textblock
16849 #: ../src/guestfs-actions.pod:6513
16850 msgid ""
16851 "This command enables swap to a swap partition with the given UUID.  See "
16852 "C<guestfs_swapon_device> for other notes."
16853 msgstr ""
16854
16855 #. type: =head2
16856 #: ../src/guestfs-actions.pod:6520
16857 msgid "guestfs_sync"
16858 msgstr ""
16859
16860 #. type: verbatim
16861 #: ../src/guestfs-actions.pod:6522
16862 #, no-wrap
16863 msgid ""
16864 " int\n"
16865 " guestfs_sync (guestfs_h *g);\n"
16866 "\n"
16867 msgstr ""
16868
16869 #. type: textblock
16870 #: ../src/guestfs-actions.pod:6525 ../fish/guestfish-actions.pod:4396
16871 msgid ""
16872 "This syncs the disk, so that any writes are flushed through to the "
16873 "underlying disk image."
16874 msgstr ""
16875
16876 #. type: textblock
16877 #: ../src/guestfs-actions.pod:6528 ../fish/guestfish-actions.pod:4399
16878 msgid ""
16879 "You should always call this if you have modified a disk image, before "
16880 "closing the handle."
16881 msgstr ""
16882
16883 #. type: =head2
16884 #: ../src/guestfs-actions.pod:6535
16885 msgid "guestfs_tail"
16886 msgstr ""
16887
16888 #. type: verbatim
16889 #: ../src/guestfs-actions.pod:6537
16890 #, no-wrap
16891 msgid ""
16892 " char **\n"
16893 " guestfs_tail (guestfs_h *g,\n"
16894 "               const char *path);\n"
16895 "\n"
16896 msgstr ""
16897
16898 #. type: textblock
16899 #: ../src/guestfs-actions.pod:6541 ../fish/guestfish-actions.pod:4406
16900 msgid ""
16901 "This command returns up to the last 10 lines of a file as a list of strings."
16902 msgstr ""
16903
16904 #. type: =head2
16905 #: ../src/guestfs-actions.pod:6553
16906 msgid "guestfs_tail_n"
16907 msgstr ""
16908
16909 #. type: verbatim
16910 #: ../src/guestfs-actions.pod:6555
16911 #, no-wrap
16912 msgid ""
16913 " char **\n"
16914 " guestfs_tail_n (guestfs_h *g,\n"
16915 "                 int nrlines,\n"
16916 "                 const char *path);\n"
16917 "\n"
16918 msgstr ""
16919
16920 #. type: textblock
16921 #: ../src/guestfs-actions.pod:6560 ../fish/guestfish-actions.pod:4416
16922 msgid ""
16923 "If the parameter C<nrlines> is a positive number, this returns the last "
16924 "C<nrlines> lines of the file C<path>."
16925 msgstr ""
16926
16927 #. type: textblock
16928 #: ../src/guestfs-actions.pod:6563 ../fish/guestfish-actions.pod:4419
16929 msgid ""
16930 "If the parameter C<nrlines> is a negative number, this returns lines from "
16931 "the file C<path>, starting with the C<-nrlines>th line."
16932 msgstr ""
16933
16934 #. type: =head2
16935 #: ../src/guestfs-actions.pod:6577
16936 msgid "guestfs_tar_in"
16937 msgstr ""
16938
16939 #. type: verbatim
16940 #: ../src/guestfs-actions.pod:6579
16941 #, no-wrap
16942 msgid ""
16943 " int\n"
16944 " guestfs_tar_in (guestfs_h *g,\n"
16945 "                 const char *tarfile,\n"
16946 "                 const char *directory);\n"
16947 "\n"
16948 msgstr ""
16949
16950 #. type: textblock
16951 #: ../src/guestfs-actions.pod:6584 ../fish/guestfish-actions.pod:4431
16952 msgid ""
16953 "This command uploads and unpacks local file C<tarfile> (an I<uncompressed> "
16954 "tar file) into C<directory>."
16955 msgstr ""
16956
16957 #. type: textblock
16958 #: ../src/guestfs-actions.pod:6587
16959 msgid ""
16960 "To upload a compressed tarball, use C<guestfs_tgz_in> or C<guestfs_txz_in>."
16961 msgstr ""
16962
16963 #. type: textblock
16964 #: ../src/guestfs-actions.pod:6592 ../src/guestfs-actions.pod:6609
16965 #: ../src/guestfs-actions.pod:6625 ../src/guestfs-actions.pod:6641
16966 msgid "(Added in 1.0.3)"
16967 msgstr ""
16968
16969 #. type: =head2
16970 #: ../src/guestfs-actions.pod:6594
16971 msgid "guestfs_tar_out"
16972 msgstr ""
16973
16974 #. type: verbatim
16975 #: ../src/guestfs-actions.pod:6596
16976 #, no-wrap
16977 msgid ""
16978 " int\n"
16979 " guestfs_tar_out (guestfs_h *g,\n"
16980 "                  const char *directory,\n"
16981 "                  const char *tarfile);\n"
16982 "\n"
16983 msgstr ""
16984
16985 #. type: textblock
16986 #: ../src/guestfs-actions.pod:6601 ../fish/guestfish-actions.pod:4443
16987 msgid ""
16988 "This command packs the contents of C<directory> and downloads it to local "
16989 "file C<tarfile>."
16990 msgstr ""
16991
16992 #. type: textblock
16993 #: ../src/guestfs-actions.pod:6604
16994 msgid ""
16995 "To download a compressed tarball, use C<guestfs_tgz_out> or "
16996 "C<guestfs_txz_out>."
16997 msgstr ""
16998
16999 #. type: =head2
17000 #: ../src/guestfs-actions.pod:6611
17001 msgid "guestfs_tgz_in"
17002 msgstr ""
17003
17004 #. type: verbatim
17005 #: ../src/guestfs-actions.pod:6613
17006 #, no-wrap
17007 msgid ""
17008 " int\n"
17009 " guestfs_tgz_in (guestfs_h *g,\n"
17010 "                 const char *tarball,\n"
17011 "                 const char *directory);\n"
17012 "\n"
17013 msgstr ""
17014
17015 #. type: textblock
17016 #: ../src/guestfs-actions.pod:6618 ../fish/guestfish-actions.pod:4455
17017 msgid ""
17018 "This command uploads and unpacks local file C<tarball> (a I<gzip compressed> "
17019 "tar file) into C<directory>."
17020 msgstr ""
17021
17022 #. type: textblock
17023 #: ../src/guestfs-actions.pod:6621
17024 msgid "To upload an uncompressed tarball, use C<guestfs_tar_in>."
17025 msgstr ""
17026
17027 #. type: =head2
17028 #: ../src/guestfs-actions.pod:6627
17029 msgid "guestfs_tgz_out"
17030 msgstr ""
17031
17032 #. type: verbatim
17033 #: ../src/guestfs-actions.pod:6629
17034 #, no-wrap
17035 msgid ""
17036 " int\n"
17037 " guestfs_tgz_out (guestfs_h *g,\n"
17038 "                  const char *directory,\n"
17039 "                  const char *tarball);\n"
17040 "\n"
17041 msgstr ""
17042
17043 #. type: textblock
17044 #: ../src/guestfs-actions.pod:6634 ../fish/guestfish-actions.pod:4466
17045 msgid ""
17046 "This command packs the contents of C<directory> and downloads it to local "
17047 "file C<tarball>."
17048 msgstr ""
17049
17050 #. type: textblock
17051 #: ../src/guestfs-actions.pod:6637
17052 msgid "To download an uncompressed tarball, use C<guestfs_tar_out>."
17053 msgstr ""
17054
17055 #. type: =head2
17056 #: ../src/guestfs-actions.pod:6643
17057 msgid "guestfs_touch"
17058 msgstr ""
17059
17060 #. type: verbatim
17061 #: ../src/guestfs-actions.pod:6645
17062 #, no-wrap
17063 msgid ""
17064 " int\n"
17065 " guestfs_touch (guestfs_h *g,\n"
17066 "                const char *path);\n"
17067 "\n"
17068 msgstr ""
17069
17070 #. type: textblock
17071 #: ../src/guestfs-actions.pod:6649 ../fish/guestfish-actions.pod:4477
17072 msgid ""
17073 "Touch acts like the L<touch(1)> command.  It can be used to update the "
17074 "timestamps on a file, or, if the file does not exist, to create a new zero-"
17075 "length file."
17076 msgstr ""
17077
17078 #. type: textblock
17079 #: ../src/guestfs-actions.pod:6653 ../fish/guestfish-actions.pod:4481
17080 msgid ""
17081 "This command only works on regular files, and will fail on other file types "
17082 "such as directories, symbolic links, block special etc."
17083 msgstr ""
17084
17085 #. type: =head2
17086 #: ../src/guestfs-actions.pod:6660
17087 msgid "guestfs_truncate"
17088 msgstr ""
17089
17090 #. type: verbatim
17091 #: ../src/guestfs-actions.pod:6662
17092 #, no-wrap
17093 msgid ""
17094 " int\n"
17095 " guestfs_truncate (guestfs_h *g,\n"
17096 "                   const char *path);\n"
17097 "\n"
17098 msgstr ""
17099
17100 #. type: textblock
17101 #: ../src/guestfs-actions.pod:6666 ../fish/guestfish-actions.pod:4488
17102 msgid ""
17103 "This command truncates C<path> to a zero-length file.  The file must exist "
17104 "already."
17105 msgstr ""
17106
17107 #. type: =head2
17108 #: ../src/guestfs-actions.pod:6673
17109 msgid "guestfs_truncate_size"
17110 msgstr ""
17111
17112 #. type: verbatim
17113 #: ../src/guestfs-actions.pod:6675
17114 #, no-wrap
17115 msgid ""
17116 " int\n"
17117 " guestfs_truncate_size (guestfs_h *g,\n"
17118 "                        const char *path,\n"
17119 "                        int64_t size);\n"
17120 "\n"
17121 msgstr ""
17122
17123 #. type: textblock
17124 #: ../src/guestfs-actions.pod:6680 ../fish/guestfish-actions.pod:4495
17125 msgid ""
17126 "This command truncates C<path> to size C<size> bytes.  The file must exist "
17127 "already."
17128 msgstr ""
17129
17130 #. type: textblock
17131 #: ../src/guestfs-actions.pod:6683
17132 msgid ""
17133 "If the current file size is less than C<size> then the file is extended to "
17134 "the required size with zero bytes.  This creates a sparse file (ie. disk "
17135 "blocks are not allocated for the file until you write to it).  To create a "
17136 "non-sparse file of zeroes, use C<guestfs_fallocate64> instead."
17137 msgstr ""
17138
17139 #. type: =head2
17140 #: ../src/guestfs-actions.pod:6693
17141 msgid "guestfs_tune2fs_l"
17142 msgstr ""
17143
17144 #. type: verbatim
17145 #: ../src/guestfs-actions.pod:6695
17146 #, no-wrap
17147 msgid ""
17148 " char **\n"
17149 " guestfs_tune2fs_l (guestfs_h *g,\n"
17150 "                    const char *device);\n"
17151 "\n"
17152 msgstr ""
17153
17154 #. type: textblock
17155 #: ../src/guestfs-actions.pod:6699 ../fish/guestfish-actions.pod:4508
17156 msgid ""
17157 "This returns the contents of the ext2, ext3 or ext4 filesystem superblock on "
17158 "C<device>."
17159 msgstr ""
17160
17161 #. type: textblock
17162 #: ../src/guestfs-actions.pod:6702 ../fish/guestfish-actions.pod:4511
17163 msgid ""
17164 "It is the same as running C<tune2fs -l device>.  See L<tune2fs(8)> manpage "
17165 "for more details.  The list of fields returned isn't clearly defined, and "
17166 "depends on both the version of C<tune2fs> that libguestfs was built against, "
17167 "and the filesystem itself."
17168 msgstr ""
17169
17170 #. type: =head2
17171 #: ../src/guestfs-actions.pod:6715
17172 msgid "guestfs_txz_in"
17173 msgstr ""
17174
17175 #. type: verbatim
17176 #: ../src/guestfs-actions.pod:6717
17177 #, no-wrap
17178 msgid ""
17179 " int\n"
17180 " guestfs_txz_in (guestfs_h *g,\n"
17181 "                 const char *tarball,\n"
17182 "                 const char *directory);\n"
17183 "\n"
17184 msgstr ""
17185
17186 #. type: textblock
17187 #: ../src/guestfs-actions.pod:6722 ../fish/guestfish-actions.pod:4520
17188 msgid ""
17189 "This command uploads and unpacks local file C<tarball> (an I<xz compressed> "
17190 "tar file) into C<directory>."
17191 msgstr ""
17192
17193 #. type: =head2
17194 #: ../src/guestfs-actions.pod:6729
17195 msgid "guestfs_txz_out"
17196 msgstr ""
17197
17198 #. type: verbatim
17199 #: ../src/guestfs-actions.pod:6731
17200 #, no-wrap
17201 msgid ""
17202 " int\n"
17203 " guestfs_txz_out (guestfs_h *g,\n"
17204 "                  const char *directory,\n"
17205 "                  const char *tarball);\n"
17206 "\n"
17207 msgstr ""
17208
17209 #. type: textblock
17210 #: ../src/guestfs-actions.pod:6736 ../fish/guestfish-actions.pod:4529
17211 msgid ""
17212 "This command packs the contents of C<directory> and downloads it to local "
17213 "file C<tarball> (as an xz compressed tar archive)."
17214 msgstr ""
17215
17216 #. type: =head2
17217 #: ../src/guestfs-actions.pod:6743
17218 msgid "guestfs_umask"
17219 msgstr ""
17220
17221 #. type: verbatim
17222 #: ../src/guestfs-actions.pod:6745
17223 #, no-wrap
17224 msgid ""
17225 " int\n"
17226 " guestfs_umask (guestfs_h *g,\n"
17227 "                int mask);\n"
17228 "\n"
17229 msgstr ""
17230
17231 #. type: textblock
17232 #: ../src/guestfs-actions.pod:6749 ../fish/guestfish-actions.pod:4538
17233 msgid ""
17234 "This function sets the mask used for creating new files and device nodes to "
17235 "C<mask & 0777>."
17236 msgstr ""
17237
17238 #. type: textblock
17239 #: ../src/guestfs-actions.pod:6752 ../fish/guestfish-actions.pod:4541
17240 msgid ""
17241 "Typical umask values would be C<022> which creates new files with "
17242 "permissions like \"-rw-r--r--\" or \"-rwxr-xr-x\", and C<002> which creates "
17243 "new files with permissions like \"-rw-rw-r--\" or \"-rwxrwxr-x\"."
17244 msgstr ""
17245
17246 #. type: textblock
17247 #: ../src/guestfs-actions.pod:6757 ../fish/guestfish-actions.pod:4546
17248 msgid ""
17249 "The default umask is C<022>.  This is important because it means that "
17250 "directories and device nodes will be created with C<0644> or C<0755> mode "
17251 "even if you specify C<0777>."
17252 msgstr ""
17253
17254 #. type: textblock
17255 #: ../src/guestfs-actions.pod:6761
17256 msgid ""
17257 "See also C<guestfs_get_umask>, L<umask(2)>, C<guestfs_mknod>, "
17258 "C<guestfs_mkdir>."
17259 msgstr ""
17260
17261 #. type: textblock
17262 #: ../src/guestfs-actions.pod:6764 ../fish/guestfish-actions.pod:4553
17263 msgid "This call returns the previous umask."
17264 msgstr ""
17265
17266 #. type: =head2
17267 #: ../src/guestfs-actions.pod:6770
17268 msgid "guestfs_umount"
17269 msgstr ""
17270
17271 #. type: verbatim
17272 #: ../src/guestfs-actions.pod:6772
17273 #, no-wrap
17274 msgid ""
17275 " int\n"
17276 " guestfs_umount (guestfs_h *g,\n"
17277 "                 const char *pathordevice);\n"
17278 "\n"
17279 msgstr ""
17280
17281 #. type: textblock
17282 #: ../src/guestfs-actions.pod:6776 ../fish/guestfish-actions.pod:4561
17283 msgid ""
17284 "This unmounts the given filesystem.  The filesystem may be specified either "
17285 "by its mountpoint (path) or the device which contains the filesystem."
17286 msgstr ""
17287
17288 #. type: =head2
17289 #: ../src/guestfs-actions.pod:6784
17290 msgid "guestfs_umount_all"
17291 msgstr ""
17292
17293 #. type: verbatim
17294 #: ../src/guestfs-actions.pod:6786
17295 #, no-wrap
17296 msgid ""
17297 " int\n"
17298 " guestfs_umount_all (guestfs_h *g);\n"
17299 "\n"
17300 msgstr ""
17301
17302 #. type: textblock
17303 #: ../src/guestfs-actions.pod:6789 ../fish/guestfish-actions.pod:4571
17304 msgid "This unmounts all mounted filesystems."
17305 msgstr ""
17306
17307 #. type: textblock
17308 #: ../src/guestfs-actions.pod:6791 ../fish/guestfish-actions.pod:4573
17309 msgid "Some internal mounts are not unmounted by this call."
17310 msgstr ""
17311
17312 #. type: =head2
17313 #: ../src/guestfs-actions.pod:6797
17314 msgid "guestfs_upload"
17315 msgstr ""
17316
17317 #. type: verbatim
17318 #: ../src/guestfs-actions.pod:6799
17319 #, no-wrap
17320 msgid ""
17321 " int\n"
17322 " guestfs_upload (guestfs_h *g,\n"
17323 "                 const char *filename,\n"
17324 "                 const char *remotefilename);\n"
17325 "\n"
17326 msgstr ""
17327
17328 #. type: textblock
17329 #: ../src/guestfs-actions.pod:6804 ../src/guestfs-actions.pod:6828
17330 #: ../fish/guestfish-actions.pod:4579 ../fish/guestfish-actions.pod:4592
17331 msgid "Upload local file C<filename> to C<remotefilename> on the filesystem."
17332 msgstr ""
17333
17334 #. type: textblock
17335 #: ../src/guestfs-actions.pod:6809
17336 msgid "See also C<guestfs_download>."
17337 msgstr ""
17338
17339 #. type: =head2
17340 #: ../src/guestfs-actions.pod:6820
17341 msgid "guestfs_upload_offset"
17342 msgstr ""
17343
17344 #. type: verbatim
17345 #: ../src/guestfs-actions.pod:6822
17346 #, no-wrap
17347 msgid ""
17348 " int\n"
17349 " guestfs_upload_offset (guestfs_h *g,\n"
17350 "                        const char *filename,\n"
17351 "                        const char *remotefilename,\n"
17352 "                        int64_t offset);\n"
17353 "\n"
17354 msgstr ""
17355
17356 #. type: textblock
17357 #: ../src/guestfs-actions.pod:6831 ../fish/guestfish-actions.pod:4595
17358 msgid ""
17359 "C<remotefilename> is overwritten starting at the byte C<offset> specified.  "
17360 "The intention is to overwrite parts of existing files or devices, although "
17361 "if a non-existant file is specified then it is created with a \"hole\" "
17362 "before C<offset>.  The size of the data written is implicit in the size of "
17363 "the source C<filename>."
17364 msgstr ""
17365
17366 #. type: textblock
17367 #: ../src/guestfs-actions.pod:6838
17368 msgid ""
17369 "Note that there is no limit on the amount of data that can be uploaded with "
17370 "this call, unlike with C<guestfs_pwrite>, and this call always writes the "
17371 "full amount unless an error occurs."
17372 msgstr ""
17373
17374 #. type: textblock
17375 #: ../src/guestfs-actions.pod:6843
17376 msgid "See also C<guestfs_upload>, C<guestfs_pwrite>."
17377 msgstr ""
17378
17379 #. type: =head2
17380 #: ../src/guestfs-actions.pod:6854
17381 msgid "guestfs_utimens"
17382 msgstr ""
17383
17384 #. type: verbatim
17385 #: ../src/guestfs-actions.pod:6856
17386 #, no-wrap
17387 msgid ""
17388 " int\n"
17389 " guestfs_utimens (guestfs_h *g,\n"
17390 "                  const char *path,\n"
17391 "                  int64_t atsecs,\n"
17392 "                  int64_t atnsecs,\n"
17393 "                  int64_t mtsecs,\n"
17394 "                  int64_t mtnsecs);\n"
17395 "\n"
17396 msgstr ""
17397
17398 #. type: textblock
17399 #: ../src/guestfs-actions.pod:6864 ../fish/guestfish-actions.pod:4615
17400 msgid "This command sets the timestamps of a file with nanosecond precision."
17401 msgstr ""
17402
17403 #. type: textblock
17404 #: ../src/guestfs-actions.pod:6867 ../fish/guestfish-actions.pod:4618
17405 msgid ""
17406 "C<atsecs, atnsecs> are the last access time (atime) in secs and nanoseconds "
17407 "from the epoch."
17408 msgstr ""
17409
17410 #. type: textblock
17411 #: ../src/guestfs-actions.pod:6870 ../fish/guestfish-actions.pod:4621
17412 msgid ""
17413 "C<mtsecs, mtnsecs> are the last modification time (mtime) in secs and "
17414 "nanoseconds from the epoch."
17415 msgstr ""
17416
17417 #. type: textblock
17418 #: ../src/guestfs-actions.pod:6873 ../fish/guestfish-actions.pod:4624
17419 msgid ""
17420 "If the C<*nsecs> field contains the special value C<-1> then the "
17421 "corresponding timestamp is set to the current time.  (The C<*secs> field is "
17422 "ignored in this case)."
17423 msgstr ""
17424
17425 #. type: textblock
17426 #: ../src/guestfs-actions.pod:6877 ../fish/guestfish-actions.pod:4628
17427 msgid ""
17428 "If the C<*nsecs> field contains the special value C<-2> then the "
17429 "corresponding timestamp is left unchanged.  (The C<*secs> field is ignored "
17430 "in this case)."
17431 msgstr ""
17432
17433 #. type: =head2
17434 #: ../src/guestfs-actions.pod:6885 ../src/guestfs-structs.pod:175
17435 msgid "guestfs_version"
17436 msgstr ""
17437
17438 #. type: verbatim
17439 #: ../src/guestfs-actions.pod:6887
17440 #, no-wrap
17441 msgid ""
17442 " struct guestfs_version *\n"
17443 " guestfs_version (guestfs_h *g);\n"
17444 "\n"
17445 msgstr ""
17446
17447 #. type: textblock
17448 #: ../src/guestfs-actions.pod:6890 ../fish/guestfish-actions.pod:4636
17449 msgid ""
17450 "Return the libguestfs version number that the program is linked against."
17451 msgstr ""
17452
17453 #. type: textblock
17454 #: ../src/guestfs-actions.pod:6893 ../fish/guestfish-actions.pod:4639
17455 msgid ""
17456 "Note that because of dynamic linking this is not necessarily the version of "
17457 "libguestfs that you compiled against.  You can compile the program, and then "
17458 "at runtime dynamically link against a completely different C<libguestfs.so> "
17459 "library."
17460 msgstr ""
17461
17462 #. type: textblock
17463 #: ../src/guestfs-actions.pod:6898 ../fish/guestfish-actions.pod:4644
17464 msgid ""
17465 "This call was added in version C<1.0.58>.  In previous versions of "
17466 "libguestfs there was no way to get the version number.  From C code you can "
17467 "use dynamic linker functions to find out if this symbol exists (if it "
17468 "doesn't, then it's an earlier version)."
17469 msgstr ""
17470
17471 #. type: textblock
17472 #: ../src/guestfs-actions.pod:6904 ../fish/guestfish-actions.pod:4650
17473 msgid ""
17474 "The call returns a structure with four elements.  The first three (C<major>, "
17475 "C<minor> and C<release>) are numbers and correspond to the usual version "
17476 "triplet.  The fourth element (C<extra>) is a string and is normally empty, "
17477 "but may be used for distro-specific information."
17478 msgstr ""
17479
17480 #. type: textblock
17481 #: ../src/guestfs-actions.pod:6910 ../fish/guestfish-actions.pod:4656
17482 msgid ""
17483 "To construct the original version string: C<$major.$minor.$release$extra>"
17484 msgstr ""
17485
17486 #. type: textblock
17487 #: ../src/guestfs-actions.pod:6913 ../fish/guestfish-actions.pod:4659
17488 msgid "See also: L<guestfs(3)/LIBGUESTFS VERSION NUMBERS>."
17489 msgstr ""
17490
17491 #. type: textblock
17492 #: ../src/guestfs-actions.pod:6915
17493 msgid ""
17494 "I<Note:> Don't use this call to test for availability of features.  In "
17495 "enterprise distributions we backport features from later versions into "
17496 "earlier versions, making this an unreliable way to test for features.  Use "
17497 "C<guestfs_available> instead."
17498 msgstr ""
17499
17500 #. type: textblock
17501 #: ../src/guestfs-actions.pod:6921
17502 msgid ""
17503 "This function returns a C<struct guestfs_version *>, or NULL if there was an "
17504 "error.  I<The caller must call C<guestfs_free_version> after use>."
17505 msgstr ""
17506
17507 #. type: textblock
17508 #: ../src/guestfs-actions.pod:6925
17509 msgid "(Added in 1.0.58)"
17510 msgstr ""
17511
17512 #. type: =head2
17513 #: ../src/guestfs-actions.pod:6927
17514 msgid "guestfs_vfs_label"
17515 msgstr ""
17516
17517 #. type: verbatim
17518 #: ../src/guestfs-actions.pod:6929
17519 #, no-wrap
17520 msgid ""
17521 " char *\n"
17522 " guestfs_vfs_label (guestfs_h *g,\n"
17523 "                    const char *device);\n"
17524 "\n"
17525 msgstr ""
17526
17527 #. type: textblock
17528 #: ../src/guestfs-actions.pod:6933 ../fish/guestfish-actions.pod:4671
17529 msgid "This returns the filesystem label of the filesystem on C<device>."
17530 msgstr ""
17531
17532 #. type: textblock
17533 #: ../src/guestfs-actions.pod:6936 ../fish/guestfish-actions.pod:4674
17534 msgid "If the filesystem is unlabeled, this returns the empty string."
17535 msgstr ""
17536
17537 #. type: textblock
17538 #: ../src/guestfs-actions.pod:6938
17539 msgid "To find a filesystem from the label, use C<guestfs_findfs_label>."
17540 msgstr ""
17541
17542 #. type: textblock
17543 #: ../src/guestfs-actions.pod:6943 ../src/guestfs-actions.pod:6980
17544 msgid "(Added in 1.3.18)"
17545 msgstr ""
17546
17547 #. type: =head2
17548 #: ../src/guestfs-actions.pod:6945
17549 msgid "guestfs_vfs_type"
17550 msgstr ""
17551
17552 #. type: verbatim
17553 #: ../src/guestfs-actions.pod:6947
17554 #, no-wrap
17555 msgid ""
17556 " char *\n"
17557 " guestfs_vfs_type (guestfs_h *g,\n"
17558 "                   const char *device);\n"
17559 "\n"
17560 msgstr ""
17561
17562 #. type: textblock
17563 #: ../src/guestfs-actions.pod:6951 ../fish/guestfish-actions.pod:4682
17564 msgid ""
17565 "This command gets the filesystem type corresponding to the filesystem on "
17566 "C<device>."
17567 msgstr ""
17568
17569 #. type: textblock
17570 #: ../src/guestfs-actions.pod:6954 ../fish/guestfish-actions.pod:4685
17571 msgid ""
17572 "For most filesystems, the result is the name of the Linux VFS module which "
17573 "would be used to mount this filesystem if you mounted it without specifying "
17574 "the filesystem type.  For example a string such as C<ext3> or C<ntfs>."
17575 msgstr ""
17576
17577 #. type: =head2
17578 #: ../src/guestfs-actions.pod:6964
17579 msgid "guestfs_vfs_uuid"
17580 msgstr ""
17581
17582 #. type: verbatim
17583 #: ../src/guestfs-actions.pod:6966
17584 #, no-wrap
17585 msgid ""
17586 " char *\n"
17587 " guestfs_vfs_uuid (guestfs_h *g,\n"
17588 "                   const char *device);\n"
17589 "\n"
17590 msgstr ""
17591
17592 #. type: textblock
17593 #: ../src/guestfs-actions.pod:6970 ../fish/guestfish-actions.pod:4694
17594 msgid "This returns the filesystem UUID of the filesystem on C<device>."
17595 msgstr ""
17596
17597 #. type: textblock
17598 #: ../src/guestfs-actions.pod:6973 ../fish/guestfish-actions.pod:4697
17599 msgid "If the filesystem does not have a UUID, this returns the empty string."
17600 msgstr ""
17601
17602 #. type: textblock
17603 #: ../src/guestfs-actions.pod:6975
17604 msgid "To find a filesystem from the UUID, use C<guestfs_findfs_uuid>."
17605 msgstr ""
17606
17607 #. type: =head2
17608 #: ../src/guestfs-actions.pod:6982
17609 msgid "guestfs_vg_activate"
17610 msgstr ""
17611
17612 #. type: verbatim
17613 #: ../src/guestfs-actions.pod:6984
17614 #, no-wrap
17615 msgid ""
17616 " int\n"
17617 " guestfs_vg_activate (guestfs_h *g,\n"
17618 "                      int activate,\n"
17619 "                      char *const *volgroups);\n"
17620 "\n"
17621 msgstr ""
17622
17623 #. type: textblock
17624 #: ../src/guestfs-actions.pod:6989 ../fish/guestfish-actions.pod:4705
17625 msgid ""
17626 "This command activates or (if C<activate> is false) deactivates all logical "
17627 "volumes in the listed volume groups C<volgroups>.  If activated, then they "
17628 "are made known to the kernel, ie. they appear as C</dev/mapper> devices.  If "
17629 "deactivated, then those devices disappear."
17630 msgstr ""
17631
17632 #. type: textblock
17633 #: ../src/guestfs-actions.pod:6995 ../fish/guestfish-actions.pod:4711
17634 msgid "This command is the same as running C<vgchange -a y|n volgroups...>"
17635 msgstr ""
17636
17637 #. type: textblock
17638 #: ../src/guestfs-actions.pod:6997 ../fish/guestfish-actions.pod:4713
17639 msgid ""
17640 "Note that if C<volgroups> is an empty list then B<all> volume groups are "
17641 "activated or deactivated."
17642 msgstr ""
17643
17644 #. type: =head2
17645 #: ../src/guestfs-actions.pod:7004
17646 msgid "guestfs_vg_activate_all"
17647 msgstr ""
17648
17649 #. type: verbatim
17650 #: ../src/guestfs-actions.pod:7006
17651 #, no-wrap
17652 msgid ""
17653 " int\n"
17654 " guestfs_vg_activate_all (guestfs_h *g,\n"
17655 "                          int activate);\n"
17656 "\n"
17657 msgstr ""
17658
17659 #. type: textblock
17660 #: ../src/guestfs-actions.pod:7010 ../fish/guestfish-actions.pod:4720
17661 msgid ""
17662 "This command activates or (if C<activate> is false) deactivates all logical "
17663 "volumes in all volume groups.  If activated, then they are made known to the "
17664 "kernel, ie. they appear as C</dev/mapper> devices.  If deactivated, then "
17665 "those devices disappear."
17666 msgstr ""
17667
17668 #. type: textblock
17669 #: ../src/guestfs-actions.pod:7016 ../fish/guestfish-actions.pod:4726
17670 msgid "This command is the same as running C<vgchange -a y|n>"
17671 msgstr ""
17672
17673 #. type: =head2
17674 #: ../src/guestfs-actions.pod:7022
17675 msgid "guestfs_vgcreate"
17676 msgstr ""
17677
17678 #. type: verbatim
17679 #: ../src/guestfs-actions.pod:7024
17680 #, no-wrap
17681 msgid ""
17682 " int\n"
17683 " guestfs_vgcreate (guestfs_h *g,\n"
17684 "                   const char *volgroup,\n"
17685 "                   char *const *physvols);\n"
17686 "\n"
17687 msgstr ""
17688
17689 #. type: textblock
17690 #: ../src/guestfs-actions.pod:7029 ../fish/guestfish-actions.pod:4732
17691 msgid ""
17692 "This creates an LVM volume group called C<volgroup> from the non-empty list "
17693 "of physical volumes C<physvols>."
17694 msgstr ""
17695
17696 #. type: =head2
17697 #: ../src/guestfs-actions.pod:7036
17698 msgid "guestfs_vglvuuids"
17699 msgstr ""
17700
17701 #. type: verbatim
17702 #: ../src/guestfs-actions.pod:7038
17703 #, no-wrap
17704 msgid ""
17705 " char **\n"
17706 " guestfs_vglvuuids (guestfs_h *g,\n"
17707 "                    const char *vgname);\n"
17708 "\n"
17709 msgstr ""
17710
17711 #. type: textblock
17712 #: ../src/guestfs-actions.pod:7042 ../fish/guestfish-actions.pod:4739
17713 msgid ""
17714 "Given a VG called C<vgname>, this returns the UUIDs of all the logical "
17715 "volumes created in this volume group."
17716 msgstr ""
17717
17718 #. type: textblock
17719 #: ../src/guestfs-actions.pod:7045
17720 msgid ""
17721 "You can use this along with C<guestfs_lvs> and C<guestfs_lvuuid> calls to "
17722 "associate logical volumes and volume groups."
17723 msgstr ""
17724
17725 #. type: textblock
17726 #: ../src/guestfs-actions.pod:7048
17727 msgid "See also C<guestfs_vgpvuuids>."
17728 msgstr ""
17729
17730 #. type: =head2
17731 #: ../src/guestfs-actions.pod:7056
17732 msgid "guestfs_vgpvuuids"
17733 msgstr ""
17734
17735 #. type: verbatim
17736 #: ../src/guestfs-actions.pod:7058
17737 #, no-wrap
17738 msgid ""
17739 " char **\n"
17740 " guestfs_vgpvuuids (guestfs_h *g,\n"
17741 "                    const char *vgname);\n"
17742 "\n"
17743 msgstr ""
17744
17745 #. type: textblock
17746 #: ../src/guestfs-actions.pod:7062 ../fish/guestfish-actions.pod:4751
17747 msgid ""
17748 "Given a VG called C<vgname>, this returns the UUIDs of all the physical "
17749 "volumes that this volume group resides on."
17750 msgstr ""
17751
17752 #. type: textblock
17753 #: ../src/guestfs-actions.pod:7065
17754 msgid ""
17755 "You can use this along with C<guestfs_pvs> and C<guestfs_pvuuid> calls to "
17756 "associate physical volumes and volume groups."
17757 msgstr ""
17758
17759 #. type: textblock
17760 #: ../src/guestfs-actions.pod:7068
17761 msgid "See also C<guestfs_vglvuuids>."
17762 msgstr ""
17763
17764 #. type: =head2
17765 #: ../src/guestfs-actions.pod:7076
17766 msgid "guestfs_vgremove"
17767 msgstr ""
17768
17769 #. type: verbatim
17770 #: ../src/guestfs-actions.pod:7078
17771 #, no-wrap
17772 msgid ""
17773 " int\n"
17774 " guestfs_vgremove (guestfs_h *g,\n"
17775 "                   const char *vgname);\n"
17776 "\n"
17777 msgstr ""
17778
17779 #. type: textblock
17780 #: ../src/guestfs-actions.pod:7082 ../fish/guestfish-actions.pod:4763
17781 msgid "Remove an LVM volume group C<vgname>, (for example C<VG>)."
17782 msgstr ""
17783
17784 #. type: textblock
17785 #: ../src/guestfs-actions.pod:7084 ../fish/guestfish-actions.pod:4765
17786 msgid ""
17787 "This also forcibly removes all logical volumes in the volume group (if any)."
17788 msgstr ""
17789
17790 #. type: =head2
17791 #: ../src/guestfs-actions.pod:7091
17792 msgid "guestfs_vgrename"
17793 msgstr ""
17794
17795 #. type: verbatim
17796 #: ../src/guestfs-actions.pod:7093
17797 #, no-wrap
17798 msgid ""
17799 " int\n"
17800 " guestfs_vgrename (guestfs_h *g,\n"
17801 "                   const char *volgroup,\n"
17802 "                   const char *newvolgroup);\n"
17803 "\n"
17804 msgstr ""
17805
17806 #. type: textblock
17807 #: ../src/guestfs-actions.pod:7098 ../fish/guestfish-actions.pod:4772
17808 msgid "Rename a volume group C<volgroup> with the new name C<newvolgroup>."
17809 msgstr ""
17810
17811 #. type: =head2
17812 #: ../src/guestfs-actions.pod:7104
17813 msgid "guestfs_vgs"
17814 msgstr ""
17815
17816 #. type: verbatim
17817 #: ../src/guestfs-actions.pod:7106
17818 #, no-wrap
17819 msgid ""
17820 " char **\n"
17821 " guestfs_vgs (guestfs_h *g);\n"
17822 "\n"
17823 msgstr ""
17824
17825 #. type: textblock
17826 #: ../src/guestfs-actions.pod:7109 ../fish/guestfish-actions.pod:4778
17827 msgid ""
17828 "List all the volumes groups detected.  This is the equivalent of the L<vgs(8)"
17829 "> command."
17830 msgstr ""
17831
17832 #. type: textblock
17833 #: ../src/guestfs-actions.pod:7112 ../fish/guestfish-actions.pod:4781
17834 msgid ""
17835 "This returns a list of just the volume group names that were detected (eg. "
17836 "C<VolGroup00>)."
17837 msgstr ""
17838
17839 #. type: textblock
17840 #: ../src/guestfs-actions.pod:7115
17841 msgid "See also C<guestfs_vgs_full>."
17842 msgstr ""
17843
17844 #. type: =head2
17845 #: ../src/guestfs-actions.pod:7123
17846 msgid "guestfs_vgs_full"
17847 msgstr ""
17848
17849 #. type: verbatim
17850 #: ../src/guestfs-actions.pod:7125
17851 #, no-wrap
17852 msgid ""
17853 " struct guestfs_lvm_vg_list *\n"
17854 " guestfs_vgs_full (guestfs_h *g);\n"
17855 "\n"
17856 msgstr ""
17857
17858 #. type: textblock
17859 #: ../src/guestfs-actions.pod:7128 ../fish/guestfish-actions.pod:4790
17860 msgid ""
17861 "List all the volumes groups detected.  This is the equivalent of the L<vgs(8)"
17862 "> command.  The \"full\" version includes all fields."
17863 msgstr ""
17864
17865 #. type: textblock
17866 #: ../src/guestfs-actions.pod:7131
17867 msgid ""
17868 "This function returns a C<struct guestfs_lvm_vg_list *>, or NULL if there "
17869 "was an error.  I<The caller must call C<guestfs_free_lvm_vg_list> after use>."
17870 msgstr ""
17871
17872 #. type: =head2
17873 #: ../src/guestfs-actions.pod:7137
17874 msgid "guestfs_vgscan"
17875 msgstr ""
17876
17877 #. type: verbatim
17878 #: ../src/guestfs-actions.pod:7139
17879 #, no-wrap
17880 msgid ""
17881 " int\n"
17882 " guestfs_vgscan (guestfs_h *g);\n"
17883 "\n"
17884 msgstr ""
17885
17886 #. type: textblock
17887 #: ../src/guestfs-actions.pod:7142 ../fish/guestfish-actions.pod:4797
17888 msgid ""
17889 "This rescans all block devices and rebuilds the list of LVM physical "
17890 "volumes, volume groups and logical volumes."
17891 msgstr ""
17892
17893 #. type: =head2
17894 #: ../src/guestfs-actions.pod:7149
17895 msgid "guestfs_vguuid"
17896 msgstr ""
17897
17898 #. type: verbatim
17899 #: ../src/guestfs-actions.pod:7151
17900 #, no-wrap
17901 msgid ""
17902 " char *\n"
17903 " guestfs_vguuid (guestfs_h *g,\n"
17904 "                 const char *vgname);\n"
17905 "\n"
17906 msgstr ""
17907
17908 #. type: textblock
17909 #: ../src/guestfs-actions.pod:7155 ../fish/guestfish-actions.pod:4804
17910 msgid "This command returns the UUID of the LVM VG named C<vgname>."
17911 msgstr ""
17912
17913 #. type: =head2
17914 #: ../src/guestfs-actions.pod:7162
17915 msgid "guestfs_wait_ready"
17916 msgstr ""
17917
17918 #. type: verbatim
17919 #: ../src/guestfs-actions.pod:7164
17920 #, no-wrap
17921 msgid ""
17922 " int\n"
17923 " guestfs_wait_ready (guestfs_h *g);\n"
17924 "\n"
17925 msgstr ""
17926
17927 #. type: textblock
17928 #: ../src/guestfs-actions.pod:7167
17929 msgid "This function is a no op."
17930 msgstr ""
17931
17932 #. type: textblock
17933 #: ../src/guestfs-actions.pod:7169
17934 msgid ""
17935 "In versions of the API E<lt> 1.0.71 you had to call this function just after "
17936 "calling C<guestfs_launch> to wait for the launch to complete.  However this "
17937 "is no longer necessary because C<guestfs_launch> now does the waiting."
17938 msgstr ""
17939
17940 #. type: textblock
17941 #: ../src/guestfs-actions.pod:7174
17942 msgid ""
17943 "If you see any calls to this function in code then you can just remove them, "
17944 "unless you want to retain compatibility with older versions of the API."
17945 msgstr ""
17946
17947 #. type: =head2
17948 #: ../src/guestfs-actions.pod:7182
17949 msgid "guestfs_wc_c"
17950 msgstr ""
17951
17952 #. type: verbatim
17953 #: ../src/guestfs-actions.pod:7184
17954 #, no-wrap
17955 msgid ""
17956 " int\n"
17957 " guestfs_wc_c (guestfs_h *g,\n"
17958 "               const char *path);\n"
17959 "\n"
17960 msgstr ""
17961
17962 #. type: textblock
17963 #: ../src/guestfs-actions.pod:7188 ../fish/guestfish-actions.pod:4810
17964 msgid ""
17965 "This command counts the characters in a file, using the C<wc -c> external "
17966 "command."
17967 msgstr ""
17968
17969 #. type: =head2
17970 #: ../src/guestfs-actions.pod:7195
17971 msgid "guestfs_wc_l"
17972 msgstr ""
17973
17974 #. type: verbatim
17975 #: ../src/guestfs-actions.pod:7197
17976 #, no-wrap
17977 msgid ""
17978 " int\n"
17979 " guestfs_wc_l (guestfs_h *g,\n"
17980 "               const char *path);\n"
17981 "\n"
17982 msgstr ""
17983
17984 #. type: textblock
17985 #: ../src/guestfs-actions.pod:7201 ../fish/guestfish-actions.pod:4817
17986 msgid ""
17987 "This command counts the lines in a file, using the C<wc -l> external command."
17988 msgstr ""
17989
17990 #. type: =head2
17991 #: ../src/guestfs-actions.pod:7208
17992 msgid "guestfs_wc_w"
17993 msgstr ""
17994
17995 #. type: verbatim
17996 #: ../src/guestfs-actions.pod:7210
17997 #, no-wrap
17998 msgid ""
17999 " int\n"
18000 " guestfs_wc_w (guestfs_h *g,\n"
18001 "               const char *path);\n"
18002 "\n"
18003 msgstr ""
18004
18005 #. type: textblock
18006 #: ../src/guestfs-actions.pod:7214 ../fish/guestfish-actions.pod:4824
18007 msgid ""
18008 "This command counts the words in a file, using the C<wc -w> external command."
18009 msgstr ""
18010
18011 #. type: =head2
18012 #: ../src/guestfs-actions.pod:7221
18013 msgid "guestfs_write"
18014 msgstr ""
18015
18016 #. type: verbatim
18017 #: ../src/guestfs-actions.pod:7223
18018 #, no-wrap
18019 msgid ""
18020 " int\n"
18021 " guestfs_write (guestfs_h *g,\n"
18022 "                const char *path,\n"
18023 "                const char *content,\n"
18024 "                size_t content_size);\n"
18025 "\n"
18026 msgstr ""
18027
18028 #. type: textblock
18029 #: ../src/guestfs-actions.pod:7229 ../fish/guestfish-actions.pod:4831
18030 msgid ""
18031 "This call creates a file called C<path>.  The content of the file is the "
18032 "string C<content> (which can contain any 8 bit data)."
18033 msgstr ""
18034
18035 #. type: =head2
18036 #: ../src/guestfs-actions.pod:7239
18037 msgid "guestfs_write_file"
18038 msgstr ""
18039
18040 #. type: verbatim
18041 #: ../src/guestfs-actions.pod:7241
18042 #, no-wrap
18043 msgid ""
18044 " int\n"
18045 " guestfs_write_file (guestfs_h *g,\n"
18046 "                     const char *path,\n"
18047 "                     const char *content,\n"
18048 "                     int size);\n"
18049 "\n"
18050 msgstr ""
18051
18052 #. type: textblock
18053 #: ../src/guestfs-actions.pod:7247 ../fish/guestfish-actions.pod:4841
18054 msgid ""
18055 "This call creates a file called C<path>.  The contents of the file is the "
18056 "string C<content> (which can contain any 8 bit data), with length C<size>."
18057 msgstr ""
18058
18059 #. type: textblock
18060 #: ../src/guestfs-actions.pod:7251 ../fish/guestfish-actions.pod:4845
18061 msgid ""
18062 "As a special case, if C<size> is C<0> then the length is calculated using "
18063 "C<strlen> (so in this case the content cannot contain embedded ASCII NULs)."
18064 msgstr ""
18065
18066 #. type: textblock
18067 #: ../src/guestfs-actions.pod:7255 ../fish/guestfish-actions.pod:4849
18068 msgid ""
18069 "I<NB.> Owing to a bug, writing content containing ASCII NUL characters does "
18070 "I<not> work, even if the length is specified."
18071 msgstr ""
18072
18073 #. type: textblock
18074 #: ../src/guestfs-actions.pod:7263 ../fish/guestfish-actions.pod:4855
18075 msgid ""
18076 "This function is deprecated.  In new code, use the C<write> call instead."
18077 msgstr ""
18078
18079 #. type: =head2
18080 #: ../src/guestfs-actions.pod:7272
18081 msgid "guestfs_zegrep"
18082 msgstr ""
18083
18084 #. type: verbatim
18085 #: ../src/guestfs-actions.pod:7274
18086 #, no-wrap
18087 msgid ""
18088 " char **\n"
18089 " guestfs_zegrep (guestfs_h *g,\n"
18090 "                 const char *regex,\n"
18091 "                 const char *path);\n"
18092 "\n"
18093 msgstr ""
18094
18095 #. type: textblock
18096 #: ../src/guestfs-actions.pod:7279 ../fish/guestfish-actions.pod:4866
18097 msgid ""
18098 "This calls the external C<zegrep> program and returns the matching lines."
18099 msgstr ""
18100
18101 #. type: =head2
18102 #: ../src/guestfs-actions.pod:7291
18103 msgid "guestfs_zegrepi"
18104 msgstr ""
18105
18106 #. type: verbatim
18107 #: ../src/guestfs-actions.pod:7293
18108 #, no-wrap
18109 msgid ""
18110 " char **\n"
18111 " guestfs_zegrepi (guestfs_h *g,\n"
18112 "                  const char *regex,\n"
18113 "                  const char *path);\n"
18114 "\n"
18115 msgstr ""
18116
18117 #. type: textblock
18118 #: ../src/guestfs-actions.pod:7298 ../fish/guestfish-actions.pod:4876
18119 msgid ""
18120 "This calls the external C<zegrep -i> program and returns the matching lines."
18121 msgstr ""
18122
18123 #. type: =head2
18124 #: ../src/guestfs-actions.pod:7310
18125 msgid "guestfs_zero"
18126 msgstr ""
18127
18128 #. type: verbatim
18129 #: ../src/guestfs-actions.pod:7312
18130 #, no-wrap
18131 msgid ""
18132 " int\n"
18133 " guestfs_zero (guestfs_h *g,\n"
18134 "               const char *device);\n"
18135 "\n"
18136 msgstr ""
18137
18138 #. type: textblock
18139 #: ../src/guestfs-actions.pod:7316 ../fish/guestfish-actions.pod:4886
18140 msgid "This command writes zeroes over the first few blocks of C<device>."
18141 msgstr ""
18142
18143 #. type: textblock
18144 #: ../src/guestfs-actions.pod:7318 ../fish/guestfish-actions.pod:4888
18145 msgid ""
18146 "How many blocks are zeroed isn't specified (but it's I<not> enough to "
18147 "securely wipe the device).  It should be sufficient to remove any partition "
18148 "tables, filesystem superblocks and so on."
18149 msgstr ""
18150
18151 #. type: textblock
18152 #: ../src/guestfs-actions.pod:7322
18153 msgid "See also: C<guestfs_zero_device>, C<guestfs_scrub_device>."
18154 msgstr ""
18155
18156 #. type: =head2
18157 #: ../src/guestfs-actions.pod:7333
18158 msgid "guestfs_zero_device"
18159 msgstr ""
18160
18161 #. type: verbatim
18162 #: ../src/guestfs-actions.pod:7335
18163 #, no-wrap
18164 msgid ""
18165 " int\n"
18166 " guestfs_zero_device (guestfs_h *g,\n"
18167 "                      const char *device);\n"
18168 "\n"
18169 msgstr ""
18170
18171 #. type: textblock
18172 #: ../src/guestfs-actions.pod:7339
18173 msgid ""
18174 "This command writes zeroes over the entire C<device>.  Compare with "
18175 "C<guestfs_zero> which just zeroes the first few blocks of a device."
18176 msgstr ""
18177
18178 #. type: textblock
18179 #: ../src/guestfs-actions.pod:7353
18180 msgid "(Added in 1.3.1)"
18181 msgstr ""
18182
18183 #. type: =head2
18184 #: ../src/guestfs-actions.pod:7355
18185 msgid "guestfs_zerofree"
18186 msgstr ""
18187
18188 #. type: verbatim
18189 #: ../src/guestfs-actions.pod:7357
18190 #, no-wrap
18191 msgid ""
18192 " int\n"
18193 " guestfs_zerofree (guestfs_h *g,\n"
18194 "                   const char *device);\n"
18195 "\n"
18196 msgstr ""
18197
18198 #. type: textblock
18199 #: ../src/guestfs-actions.pod:7361 ../fish/guestfish-actions.pod:4909
18200 msgid ""
18201 "This runs the I<zerofree> program on C<device>.  This program claims to zero "
18202 "unused inodes and disk blocks on an ext2/3 filesystem, thus making it "
18203 "possible to compress the filesystem more effectively."
18204 msgstr ""
18205
18206 #. type: textblock
18207 #: ../src/guestfs-actions.pod:7366 ../fish/guestfish-actions.pod:4914
18208 msgid "You should B<not> run this program if the filesystem is mounted."
18209 msgstr ""
18210
18211 #. type: textblock
18212 #: ../src/guestfs-actions.pod:7369 ../fish/guestfish-actions.pod:4917
18213 msgid ""
18214 "It is possible that using this program can damage the filesystem or data on "
18215 "the filesystem."
18216 msgstr ""
18217
18218 #. type: =head2
18219 #: ../src/guestfs-actions.pod:7376
18220 msgid "guestfs_zfgrep"
18221 msgstr ""
18222
18223 #. type: verbatim
18224 #: ../src/guestfs-actions.pod:7378
18225 #, no-wrap
18226 msgid ""
18227 " char **\n"
18228 " guestfs_zfgrep (guestfs_h *g,\n"
18229 "                 const char *pattern,\n"
18230 "                 const char *path);\n"
18231 "\n"
18232 msgstr ""
18233
18234 #. type: textblock
18235 #: ../src/guestfs-actions.pod:7383 ../fish/guestfish-actions.pod:4924
18236 msgid ""
18237 "This calls the external C<zfgrep> program and returns the matching lines."
18238 msgstr ""
18239
18240 #. type: =head2
18241 #: ../src/guestfs-actions.pod:7395
18242 msgid "guestfs_zfgrepi"
18243 msgstr ""
18244
18245 #. type: verbatim
18246 #: ../src/guestfs-actions.pod:7397
18247 #, no-wrap
18248 msgid ""
18249 " char **\n"
18250 " guestfs_zfgrepi (guestfs_h *g,\n"
18251 "                  const char *pattern,\n"
18252 "                  const char *path);\n"
18253 "\n"
18254 msgstr ""
18255
18256 #. type: textblock
18257 #: ../src/guestfs-actions.pod:7402 ../fish/guestfish-actions.pod:4934
18258 msgid ""
18259 "This calls the external C<zfgrep -i> program and returns the matching lines."
18260 msgstr ""
18261
18262 #. type: =head2
18263 #: ../src/guestfs-actions.pod:7414
18264 msgid "guestfs_zfile"
18265 msgstr ""
18266
18267 #. type: verbatim
18268 #: ../src/guestfs-actions.pod:7416
18269 #, no-wrap
18270 msgid ""
18271 " char *\n"
18272 " guestfs_zfile (guestfs_h *g,\n"
18273 "                const char *meth,\n"
18274 "                const char *path);\n"
18275 "\n"
18276 msgstr ""
18277
18278 #. type: textblock
18279 #: ../src/guestfs-actions.pod:7421 ../fish/guestfish-actions.pod:4944
18280 msgid ""
18281 "This command runs C<file> after first decompressing C<path> using C<method>."
18282 msgstr ""
18283
18284 #. type: textblock
18285 #: ../src/guestfs-actions.pod:7424 ../fish/guestfish-actions.pod:4947
18286 msgid "C<method> must be one of C<gzip>, C<compress> or C<bzip2>."
18287 msgstr ""
18288
18289 #. type: textblock
18290 #: ../src/guestfs-actions.pod:7426
18291 msgid ""
18292 "Since 1.0.63, use C<guestfs_file> instead which can now process compressed "
18293 "files."
18294 msgstr ""
18295
18296 #. type: textblock
18297 #: ../src/guestfs-actions.pod:7432 ../fish/guestfish-actions.pod:4952
18298 msgid ""
18299 "This function is deprecated.  In new code, use the C<file> call instead."
18300 msgstr ""
18301
18302 #. type: =head2
18303 #: ../src/guestfs-actions.pod:7441
18304 msgid "guestfs_zgrep"
18305 msgstr ""
18306
18307 #. type: verbatim
18308 #: ../src/guestfs-actions.pod:7443
18309 #, no-wrap
18310 msgid ""
18311 " char **\n"
18312 " guestfs_zgrep (guestfs_h *g,\n"
18313 "                const char *regex,\n"
18314 "                const char *path);\n"
18315 "\n"
18316 msgstr ""
18317
18318 #. type: textblock
18319 #: ../src/guestfs-actions.pod:7448 ../fish/guestfish-actions.pod:4963
18320 msgid ""
18321 "This calls the external C<zgrep> program and returns the matching lines."
18322 msgstr ""
18323
18324 #. type: =head2
18325 #: ../src/guestfs-actions.pod:7460
18326 msgid "guestfs_zgrepi"
18327 msgstr ""
18328
18329 #. type: verbatim
18330 #: ../src/guestfs-actions.pod:7462
18331 #, no-wrap
18332 msgid ""
18333 " char **\n"
18334 " guestfs_zgrepi (guestfs_h *g,\n"
18335 "                 const char *regex,\n"
18336 "                 const char *path);\n"
18337 "\n"
18338 msgstr ""
18339
18340 #. type: textblock
18341 #: ../src/guestfs-actions.pod:7467 ../fish/guestfish-actions.pod:4973
18342 msgid ""
18343 "This calls the external C<zgrep -i> program and returns the matching lines."
18344 msgstr ""
18345
18346 #. type: =item
18347 #: ../src/guestfs-availability.pod:3
18348 msgid "B<augeas>"
18349 msgstr ""
18350
18351 #. type: textblock
18352 #: ../src/guestfs-availability.pod:5
18353 msgid ""
18354 "The following functions: L</guestfs_aug_clear> L</guestfs_aug_close> L</"
18355 "guestfs_aug_defnode> L</guestfs_aug_defvar> L</guestfs_aug_get> L</"
18356 "guestfs_aug_init> L</guestfs_aug_insert> L</guestfs_aug_load> L</"
18357 "guestfs_aug_ls> L</guestfs_aug_match> L</guestfs_aug_mv> L</guestfs_aug_rm> "
18358 "L</guestfs_aug_save> L</guestfs_aug_set>"
18359 msgstr ""
18360
18361 #. type: =item
18362 #: ../src/guestfs-availability.pod:21
18363 msgid "B<inotify>"
18364 msgstr ""
18365
18366 #. type: textblock
18367 #: ../src/guestfs-availability.pod:23
18368 msgid ""
18369 "The following functions: L</guestfs_inotify_add_watch> L</"
18370 "guestfs_inotify_close> L</guestfs_inotify_files> L</guestfs_inotify_init> L</"
18371 "guestfs_inotify_read> L</guestfs_inotify_rm_watch>"
18372 msgstr ""
18373
18374 #. type: =item
18375 #: ../src/guestfs-availability.pod:31
18376 msgid "B<linuxfsuuid>"
18377 msgstr ""
18378
18379 #. type: textblock
18380 #: ../src/guestfs-availability.pod:33
18381 msgid ""
18382 "The following functions: L</guestfs_mke2fs_JU> L</guestfs_mke2journal_U> L</"
18383 "guestfs_mkswap_U> L</guestfs_swapoff_uuid> L</guestfs_swapon_uuid>"
18384 msgstr ""
18385
18386 #. type: =item
18387 #: ../src/guestfs-availability.pod:40
18388 msgid "B<linuxmodules>"
18389 msgstr ""
18390
18391 #. type: textblock
18392 #: ../src/guestfs-availability.pod:42
18393 msgid "The following functions: L</guestfs_modprobe>"
18394 msgstr ""
18395
18396 #. type: =item
18397 #: ../src/guestfs-availability.pod:45
18398 msgid "B<linuxxattrs>"
18399 msgstr ""
18400
18401 #. type: textblock
18402 #: ../src/guestfs-availability.pod:47
18403 msgid ""
18404 "The following functions: L</guestfs_getxattr> L</guestfs_getxattrs> L</"
18405 "guestfs_lgetxattr> L</guestfs_lgetxattrs> L</guestfs_lremovexattr> L</"
18406 "guestfs_lsetxattr> L</guestfs_lxattrlist> L</guestfs_removexattr> L</"
18407 "guestfs_setxattr>"
18408 msgstr ""
18409
18410 #. type: =item
18411 #: ../src/guestfs-availability.pod:58
18412 msgid "B<luks>"
18413 msgstr ""
18414
18415 #. type: textblock
18416 #: ../src/guestfs-availability.pod:60
18417 msgid ""
18418 "The following functions: L</guestfs_luks_add_key> L</guestfs_luks_close> L</"
18419 "guestfs_luks_format> L</guestfs_luks_format_cipher> L</"
18420 "guestfs_luks_kill_slot> L</guestfs_luks_open> L</guestfs_luks_open_ro>"
18421 msgstr ""
18422
18423 #. type: =item
18424 #: ../src/guestfs-availability.pod:69
18425 msgid "B<lvm2>"
18426 msgstr ""
18427
18428 #. type: textblock
18429 #: ../src/guestfs-availability.pod:71
18430 msgid ""
18431 "The following functions: L</guestfs_is_lv> L</guestfs_lvcreate> L</"
18432 "guestfs_lvm_remove_all> L</guestfs_lvm_set_filter> L</guestfs_lvremove> L</"
18433 "guestfs_lvresize> L</guestfs_lvresize_free> L</guestfs_lvs> L</"
18434 "guestfs_lvs_full> L</guestfs_pvcreate> L</guestfs_pvremove> L</"
18435 "guestfs_pvresize> L</guestfs_pvresize_size> L</guestfs_pvs> L</"
18436 "guestfs_pvs_full> L</guestfs_vg_activate> L</guestfs_vg_activate_all> L</"
18437 "guestfs_vgcreate> L</guestfs_vgremove> L</guestfs_vgs> L</guestfs_vgs_full>"
18438 msgstr ""
18439
18440 #. type: =item
18441 #: ../src/guestfs-availability.pod:94
18442 msgid "B<mknod>"
18443 msgstr ""
18444
18445 #. type: textblock
18446 #: ../src/guestfs-availability.pod:96
18447 msgid ""
18448 "The following functions: L</guestfs_mkfifo> L</guestfs_mknod> L</"
18449 "guestfs_mknod_b> L</guestfs_mknod_c>"
18450 msgstr ""
18451
18452 #. type: =item
18453 #: ../src/guestfs-availability.pod:102
18454 msgid "B<ntfs3g>"
18455 msgstr ""
18456
18457 #. type: textblock
18458 #: ../src/guestfs-availability.pod:104
18459 msgid "The following functions: L</guestfs_ntfs_3g_probe>"
18460 msgstr ""
18461
18462 #. type: =item
18463 #: ../src/guestfs-availability.pod:107
18464 msgid "B<ntfsprogs>"
18465 msgstr ""
18466
18467 #. type: textblock
18468 #: ../src/guestfs-availability.pod:109
18469 msgid ""
18470 "The following functions: L</guestfs_ntfsresize> L</guestfs_ntfsresize_size>"
18471 msgstr ""
18472
18473 #. type: =item
18474 #: ../src/guestfs-availability.pod:113
18475 msgid "B<realpath>"
18476 msgstr ""
18477
18478 #. type: textblock
18479 #: ../src/guestfs-availability.pod:115
18480 msgid "The following functions: L</guestfs_realpath>"
18481 msgstr ""
18482
18483 #. type: =item
18484 #: ../src/guestfs-availability.pod:118
18485 msgid "B<scrub>"
18486 msgstr ""
18487
18488 #. type: textblock
18489 #: ../src/guestfs-availability.pod:120
18490 msgid ""
18491 "The following functions: L</guestfs_scrub_device> L</guestfs_scrub_file> L</"
18492 "guestfs_scrub_freespace>"
18493 msgstr ""
18494
18495 #. type: =item
18496 #: ../src/guestfs-availability.pod:125
18497 msgid "B<selinux>"
18498 msgstr ""
18499
18500 #. type: textblock
18501 #: ../src/guestfs-availability.pod:127
18502 msgid "The following functions: L</guestfs_getcon> L</guestfs_setcon>"
18503 msgstr ""
18504
18505 #. type: =item
18506 #: ../src/guestfs-availability.pod:131
18507 msgid "B<xz>"
18508 msgstr ""
18509
18510 #. type: textblock
18511 #: ../src/guestfs-availability.pod:133
18512 msgid "The following functions: L</guestfs_txz_in> L</guestfs_txz_out>"
18513 msgstr ""
18514
18515 #. type: =item
18516 #: ../src/guestfs-availability.pod:137
18517 msgid "B<zerofree>"
18518 msgstr ""
18519
18520 #. type: textblock
18521 #: ../src/guestfs-availability.pod:139
18522 msgid "The following functions: L</guestfs_zerofree>"
18523 msgstr ""
18524
18525 #. type: =head2
18526 #: ../src/guestfs-structs.pod:1
18527 msgid "guestfs_int_bool"
18528 msgstr ""
18529
18530 #. type: verbatim
18531 #: ../src/guestfs-structs.pod:3
18532 #, no-wrap
18533 msgid ""
18534 " struct guestfs_int_bool {\n"
18535 "   int32_t i;\n"
18536 "   int32_t b;\n"
18537 " };\n"
18538 " \n"
18539 msgstr ""
18540
18541 #. type: verbatim
18542 #: ../src/guestfs-structs.pod:8
18543 #, no-wrap
18544 msgid ""
18545 " struct guestfs_int_bool_list {\n"
18546 "   uint32_t len; /* Number of elements in list. */\n"
18547 "   struct guestfs_int_bool *val; /* Elements. */\n"
18548 " };\n"
18549 " \n"
18550 msgstr ""
18551
18552 #. type: verbatim
18553 #: ../src/guestfs-structs.pod:13
18554 #, no-wrap
18555 msgid ""
18556 " void guestfs_free_int_bool (struct guestfs_free_int_bool *);\n"
18557 " void guestfs_free_int_bool_list (struct guestfs_free_int_bool_list *);\n"
18558 "\n"
18559 msgstr ""
18560
18561 #. type: =head2
18562 #: ../src/guestfs-structs.pod:16
18563 msgid "guestfs_lvm_pv"
18564 msgstr ""
18565
18566 #. type: verbatim
18567 #: ../src/guestfs-structs.pod:18
18568 #, no-wrap
18569 msgid ""
18570 " struct guestfs_lvm_pv {\n"
18571 "   char *pv_name;\n"
18572 "   /* The next field is NOT nul-terminated, be careful when printing it: */\n"
18573 "   char pv_uuid[32];\n"
18574 "   char *pv_fmt;\n"
18575 "   uint64_t pv_size;\n"
18576 "   uint64_t dev_size;\n"
18577 "   uint64_t pv_free;\n"
18578 "   uint64_t pv_used;\n"
18579 "   char *pv_attr;\n"
18580 "   int64_t pv_pe_count;\n"
18581 "   int64_t pv_pe_alloc_count;\n"
18582 "   char *pv_tags;\n"
18583 "   uint64_t pe_start;\n"
18584 "   int64_t pv_mda_count;\n"
18585 "   uint64_t pv_mda_free;\n"
18586 " };\n"
18587 " \n"
18588 msgstr ""
18589
18590 #. type: verbatim
18591 #: ../src/guestfs-structs.pod:36
18592 #, no-wrap
18593 msgid ""
18594 " struct guestfs_lvm_pv_list {\n"
18595 "   uint32_t len; /* Number of elements in list. */\n"
18596 "   struct guestfs_lvm_pv *val; /* Elements. */\n"
18597 " };\n"
18598 " \n"
18599 msgstr ""
18600
18601 #. type: verbatim
18602 #: ../src/guestfs-structs.pod:41
18603 #, no-wrap
18604 msgid ""
18605 " void guestfs_free_lvm_pv (struct guestfs_free_lvm_pv *);\n"
18606 " void guestfs_free_lvm_pv_list (struct guestfs_free_lvm_pv_list *);\n"
18607 "\n"
18608 msgstr ""
18609
18610 #. type: =head2
18611 #: ../src/guestfs-structs.pod:44
18612 msgid "guestfs_lvm_vg"
18613 msgstr ""
18614
18615 #. type: verbatim
18616 #: ../src/guestfs-structs.pod:46
18617 #, no-wrap
18618 msgid ""
18619 " struct guestfs_lvm_vg {\n"
18620 "   char *vg_name;\n"
18621 "   /* The next field is NOT nul-terminated, be careful when printing it: */\n"
18622 "   char vg_uuid[32];\n"
18623 "   char *vg_fmt;\n"
18624 "   char *vg_attr;\n"
18625 "   uint64_t vg_size;\n"
18626 "   uint64_t vg_free;\n"
18627 "   char *vg_sysid;\n"
18628 "   uint64_t vg_extent_size;\n"
18629 "   int64_t vg_extent_count;\n"
18630 "   int64_t vg_free_count;\n"
18631 "   int64_t max_lv;\n"
18632 "   int64_t max_pv;\n"
18633 "   int64_t pv_count;\n"
18634 "   int64_t lv_count;\n"
18635 "   int64_t snap_count;\n"
18636 "   int64_t vg_seqno;\n"
18637 "   char *vg_tags;\n"
18638 "   int64_t vg_mda_count;\n"
18639 "   uint64_t vg_mda_free;\n"
18640 " };\n"
18641 " \n"
18642 msgstr ""
18643
18644 #. type: verbatim
18645 #: ../src/guestfs-structs.pod:69
18646 #, no-wrap
18647 msgid ""
18648 " struct guestfs_lvm_vg_list {\n"
18649 "   uint32_t len; /* Number of elements in list. */\n"
18650 "   struct guestfs_lvm_vg *val; /* Elements. */\n"
18651 " };\n"
18652 " \n"
18653 msgstr ""
18654
18655 #. type: verbatim
18656 #: ../src/guestfs-structs.pod:74
18657 #, no-wrap
18658 msgid ""
18659 " void guestfs_free_lvm_vg (struct guestfs_free_lvm_vg *);\n"
18660 " void guestfs_free_lvm_vg_list (struct guestfs_free_lvm_vg_list *);\n"
18661 "\n"
18662 msgstr ""
18663
18664 #. type: =head2
18665 #: ../src/guestfs-structs.pod:77
18666 msgid "guestfs_lvm_lv"
18667 msgstr ""
18668
18669 #. type: verbatim
18670 #: ../src/guestfs-structs.pod:79
18671 #, no-wrap
18672 msgid ""
18673 " struct guestfs_lvm_lv {\n"
18674 "   char *lv_name;\n"
18675 "   /* The next field is NOT nul-terminated, be careful when printing it: */\n"
18676 "   char lv_uuid[32];\n"
18677 "   char *lv_attr;\n"
18678 "   int64_t lv_major;\n"
18679 "   int64_t lv_minor;\n"
18680 "   int64_t lv_kernel_major;\n"
18681 "   int64_t lv_kernel_minor;\n"
18682 "   uint64_t lv_size;\n"
18683 "   int64_t seg_count;\n"
18684 "   char *origin;\n"
18685 "   /* The next field is [0..100] or -1 meaning 'not present': */\n"
18686 "   float snap_percent;\n"
18687 "   /* The next field is [0..100] or -1 meaning 'not present': */\n"
18688 "   float copy_percent;\n"
18689 "   char *move_pv;\n"
18690 "   char *lv_tags;\n"
18691 "   char *mirror_log;\n"
18692 "   char *modules;\n"
18693 " };\n"
18694 " \n"
18695 msgstr ""
18696
18697 #. type: verbatim
18698 #: ../src/guestfs-structs.pod:101
18699 #, no-wrap
18700 msgid ""
18701 " struct guestfs_lvm_lv_list {\n"
18702 "   uint32_t len; /* Number of elements in list. */\n"
18703 "   struct guestfs_lvm_lv *val; /* Elements. */\n"
18704 " };\n"
18705 " \n"
18706 msgstr ""
18707
18708 #. type: verbatim
18709 #: ../src/guestfs-structs.pod:106
18710 #, no-wrap
18711 msgid ""
18712 " void guestfs_free_lvm_lv (struct guestfs_free_lvm_lv *);\n"
18713 " void guestfs_free_lvm_lv_list (struct guestfs_free_lvm_lv_list *);\n"
18714 "\n"
18715 msgstr ""
18716
18717 #. type: verbatim
18718 #: ../src/guestfs-structs.pod:111
18719 #, no-wrap
18720 msgid ""
18721 " struct guestfs_stat {\n"
18722 "   int64_t dev;\n"
18723 "   int64_t ino;\n"
18724 "   int64_t mode;\n"
18725 "   int64_t nlink;\n"
18726 "   int64_t uid;\n"
18727 "   int64_t gid;\n"
18728 "   int64_t rdev;\n"
18729 "   int64_t size;\n"
18730 "   int64_t blksize;\n"
18731 "   int64_t blocks;\n"
18732 "   int64_t atime;\n"
18733 "   int64_t mtime;\n"
18734 "   int64_t ctime;\n"
18735 " };\n"
18736 " \n"
18737 msgstr ""
18738
18739 #. type: verbatim
18740 #: ../src/guestfs-structs.pod:127
18741 #, no-wrap
18742 msgid ""
18743 " struct guestfs_stat_list {\n"
18744 "   uint32_t len; /* Number of elements in list. */\n"
18745 "   struct guestfs_stat *val; /* Elements. */\n"
18746 " };\n"
18747 " \n"
18748 msgstr ""
18749
18750 #. type: verbatim
18751 #: ../src/guestfs-structs.pod:132
18752 #, no-wrap
18753 msgid ""
18754 " void guestfs_free_stat (struct guestfs_free_stat *);\n"
18755 " void guestfs_free_stat_list (struct guestfs_free_stat_list *);\n"
18756 "\n"
18757 msgstr ""
18758
18759 #. type: verbatim
18760 #: ../src/guestfs-structs.pod:137
18761 #, no-wrap
18762 msgid ""
18763 " struct guestfs_statvfs {\n"
18764 "   int64_t bsize;\n"
18765 "   int64_t frsize;\n"
18766 "   int64_t blocks;\n"
18767 "   int64_t bfree;\n"
18768 "   int64_t bavail;\n"
18769 "   int64_t files;\n"
18770 "   int64_t ffree;\n"
18771 "   int64_t favail;\n"
18772 "   int64_t fsid;\n"
18773 "   int64_t flag;\n"
18774 "   int64_t namemax;\n"
18775 " };\n"
18776 " \n"
18777 msgstr ""
18778
18779 #. type: verbatim
18780 #: ../src/guestfs-structs.pod:151
18781 #, no-wrap
18782 msgid ""
18783 " struct guestfs_statvfs_list {\n"
18784 "   uint32_t len; /* Number of elements in list. */\n"
18785 "   struct guestfs_statvfs *val; /* Elements. */\n"
18786 " };\n"
18787 " \n"
18788 msgstr ""
18789
18790 #. type: verbatim
18791 #: ../src/guestfs-structs.pod:156
18792 #, no-wrap
18793 msgid ""
18794 " void guestfs_free_statvfs (struct guestfs_free_statvfs *);\n"
18795 " void guestfs_free_statvfs_list (struct guestfs_free_statvfs_list *);\n"
18796 "\n"
18797 msgstr ""
18798
18799 #. type: =head2
18800 #: ../src/guestfs-structs.pod:159
18801 msgid "guestfs_dirent"
18802 msgstr ""
18803
18804 #. type: verbatim
18805 #: ../src/guestfs-structs.pod:161
18806 #, no-wrap
18807 msgid ""
18808 " struct guestfs_dirent {\n"
18809 "   int64_t ino;\n"
18810 "   char ftyp;\n"
18811 "   char *name;\n"
18812 " };\n"
18813 " \n"
18814 msgstr ""
18815
18816 #. type: verbatim
18817 #: ../src/guestfs-structs.pod:167
18818 #, no-wrap
18819 msgid ""
18820 " struct guestfs_dirent_list {\n"
18821 "   uint32_t len; /* Number of elements in list. */\n"
18822 "   struct guestfs_dirent *val; /* Elements. */\n"
18823 " };\n"
18824 " \n"
18825 msgstr ""
18826
18827 #. type: verbatim
18828 #: ../src/guestfs-structs.pod:172
18829 #, no-wrap
18830 msgid ""
18831 " void guestfs_free_dirent (struct guestfs_free_dirent *);\n"
18832 " void guestfs_free_dirent_list (struct guestfs_free_dirent_list *);\n"
18833 "\n"
18834 msgstr ""
18835
18836 #. type: verbatim
18837 #: ../src/guestfs-structs.pod:177
18838 #, no-wrap
18839 msgid ""
18840 " struct guestfs_version {\n"
18841 "   int64_t major;\n"
18842 "   int64_t minor;\n"
18843 "   int64_t release;\n"
18844 "   char *extra;\n"
18845 " };\n"
18846 " \n"
18847 msgstr ""
18848
18849 #. type: verbatim
18850 #: ../src/guestfs-structs.pod:184
18851 #, no-wrap
18852 msgid ""
18853 " struct guestfs_version_list {\n"
18854 "   uint32_t len; /* Number of elements in list. */\n"
18855 "   struct guestfs_version *val; /* Elements. */\n"
18856 " };\n"
18857 " \n"
18858 msgstr ""
18859
18860 #. type: verbatim
18861 #: ../src/guestfs-structs.pod:189
18862 #, no-wrap
18863 msgid ""
18864 " void guestfs_free_version (struct guestfs_free_version *);\n"
18865 " void guestfs_free_version_list (struct guestfs_free_version_list *);\n"
18866 "\n"
18867 msgstr ""
18868
18869 #. type: =head2
18870 #: ../src/guestfs-structs.pod:192
18871 msgid "guestfs_xattr"
18872 msgstr ""
18873
18874 #. type: verbatim
18875 #: ../src/guestfs-structs.pod:194
18876 #, no-wrap
18877 msgid ""
18878 " struct guestfs_xattr {\n"
18879 "   char *attrname;\n"
18880 "   /* The next two fields describe a byte array. */\n"
18881 "   uint32_t attrval_len;\n"
18882 "   char *attrval;\n"
18883 " };\n"
18884 " \n"
18885 msgstr ""
18886
18887 #. type: verbatim
18888 #: ../src/guestfs-structs.pod:201
18889 #, no-wrap
18890 msgid ""
18891 " struct guestfs_xattr_list {\n"
18892 "   uint32_t len; /* Number of elements in list. */\n"
18893 "   struct guestfs_xattr *val; /* Elements. */\n"
18894 " };\n"
18895 " \n"
18896 msgstr ""
18897
18898 #. type: verbatim
18899 #: ../src/guestfs-structs.pod:206
18900 #, no-wrap
18901 msgid ""
18902 " void guestfs_free_xattr (struct guestfs_free_xattr *);\n"
18903 " void guestfs_free_xattr_list (struct guestfs_free_xattr_list *);\n"
18904 "\n"
18905 msgstr ""
18906
18907 #. type: =head2
18908 #: ../src/guestfs-structs.pod:209
18909 msgid "guestfs_inotify_event"
18910 msgstr ""
18911
18912 #. type: verbatim
18913 #: ../src/guestfs-structs.pod:211
18914 #, no-wrap
18915 msgid ""
18916 " struct guestfs_inotify_event {\n"
18917 "   int64_t in_wd;\n"
18918 "   uint32_t in_mask;\n"
18919 "   uint32_t in_cookie;\n"
18920 "   char *in_name;\n"
18921 " };\n"
18922 " \n"
18923 msgstr ""
18924
18925 #. type: verbatim
18926 #: ../src/guestfs-structs.pod:218
18927 #, no-wrap
18928 msgid ""
18929 " struct guestfs_inotify_event_list {\n"
18930 "   uint32_t len; /* Number of elements in list. */\n"
18931 "   struct guestfs_inotify_event *val; /* Elements. */\n"
18932 " };\n"
18933 " \n"
18934 msgstr ""
18935
18936 #. type: verbatim
18937 #: ../src/guestfs-structs.pod:223
18938 #, no-wrap
18939 msgid ""
18940 " void guestfs_free_inotify_event (struct guestfs_free_inotify_event *);\n"
18941 " void guestfs_free_inotify_event_list (struct guestfs_free_inotify_event_list *);\n"
18942 "\n"
18943 msgstr ""
18944
18945 #. type: =head2
18946 #: ../src/guestfs-structs.pod:226
18947 msgid "guestfs_partition"
18948 msgstr ""
18949
18950 #. type: verbatim
18951 #: ../src/guestfs-structs.pod:228
18952 #, no-wrap
18953 msgid ""
18954 " struct guestfs_partition {\n"
18955 "   int32_t part_num;\n"
18956 "   uint64_t part_start;\n"
18957 "   uint64_t part_end;\n"
18958 "   uint64_t part_size;\n"
18959 " };\n"
18960 " \n"
18961 msgstr ""
18962
18963 #. type: verbatim
18964 #: ../src/guestfs-structs.pod:235
18965 #, no-wrap
18966 msgid ""
18967 " struct guestfs_partition_list {\n"
18968 "   uint32_t len; /* Number of elements in list. */\n"
18969 "   struct guestfs_partition *val; /* Elements. */\n"
18970 " };\n"
18971 " \n"
18972 msgstr ""
18973
18974 #. type: verbatim
18975 #: ../src/guestfs-structs.pod:240
18976 #, no-wrap
18977 msgid ""
18978 " void guestfs_free_partition (struct guestfs_free_partition *);\n"
18979 " void guestfs_free_partition_list (struct guestfs_free_partition_list *);\n"
18980 "\n"
18981 msgstr ""
18982
18983 #. type: =head2
18984 #: ../src/guestfs-structs.pod:243
18985 msgid "guestfs_application"
18986 msgstr ""
18987
18988 #. type: verbatim
18989 #: ../src/guestfs-structs.pod:245
18990 #, no-wrap
18991 msgid ""
18992 " struct guestfs_application {\n"
18993 "   char *app_name;\n"
18994 "   char *app_display_name;\n"
18995 "   int32_t app_epoch;\n"
18996 "   char *app_version;\n"
18997 "   char *app_release;\n"
18998 "   char *app_install_path;\n"
18999 "   char *app_trans_path;\n"
19000 "   char *app_publisher;\n"
19001 "   char *app_url;\n"
19002 "   char *app_source_package;\n"
19003 "   char *app_summary;\n"
19004 "   char *app_description;\n"
19005 " };\n"
19006 " \n"
19007 msgstr ""
19008
19009 #. type: verbatim
19010 #: ../src/guestfs-structs.pod:260
19011 #, no-wrap
19012 msgid ""
19013 " struct guestfs_application_list {\n"
19014 "   uint32_t len; /* Number of elements in list. */\n"
19015 "   struct guestfs_application *val; /* Elements. */\n"
19016 " };\n"
19017 " \n"
19018 msgstr ""
19019
19020 #. type: verbatim
19021 #: ../src/guestfs-structs.pod:265
19022 #, no-wrap
19023 msgid ""
19024 " void guestfs_free_application (struct guestfs_free_application *);\n"
19025 " void guestfs_free_application_list (struct guestfs_free_application_list *);\n"
19026 "\n"
19027 msgstr ""
19028
19029 #. type: textblock
19030 #: ../fish/guestfish.pod:5
19031 msgid "guestfish - the libguestfs Filesystem Interactive SHell"
19032 msgstr ""
19033
19034 #. type: verbatim
19035 #: ../fish/guestfish.pod:9
19036 #, no-wrap
19037 msgid ""
19038 " guestfish [--options] [commands]\n"
19039 "\n"
19040 msgstr ""
19041
19042 #. type: verbatim
19043 #: ../fish/guestfish.pod:11
19044 #, no-wrap
19045 msgid ""
19046 " guestfish\n"
19047 "\n"
19048 msgstr ""
19049
19050 #. type: verbatim
19051 #: ../fish/guestfish.pod:13
19052 #, no-wrap
19053 msgid ""
19054 " guestfish [--ro|--rw] -a disk.img\n"
19055 "\n"
19056 msgstr ""
19057
19058 #. type: verbatim
19059 #: ../fish/guestfish.pod:15
19060 #, no-wrap
19061 msgid ""
19062 " guestfish [--ro|--rw] -a disk.img -m dev[:mountpoint]\n"
19063 "\n"
19064 msgstr ""
19065
19066 #. type: verbatim
19067 #: ../fish/guestfish.pod:17
19068 #, no-wrap
19069 msgid ""
19070 " guestfish -d libvirt-domain\n"
19071 "\n"
19072 msgstr ""
19073
19074 #. type: verbatim
19075 #: ../fish/guestfish.pod:19
19076 #, no-wrap
19077 msgid ""
19078 " guestfish [--ro|--rw] -a disk.img -i\n"
19079 "\n"
19080 msgstr ""
19081
19082 #. type: verbatim
19083 #: ../fish/guestfish.pod:21
19084 #, no-wrap
19085 msgid ""
19086 " guestfish -d libvirt-domain -i\n"
19087 "\n"
19088 msgstr ""
19089
19090 #. type: =head1
19091 #: ../fish/guestfish.pod:23 ../fuse/guestmount.pod:15 ../tools/virt-edit.pl:44
19092 #: ../tools/virt-win-reg.pl:51 ../tools/virt-tar.pl:64
19093 msgid "WARNING"
19094 msgstr ""
19095
19096 #. type: textblock
19097 #: ../fish/guestfish.pod:25
19098 msgid ""
19099 "Using guestfish in read/write mode on live virtual machines can be "
19100 "dangerous, potentially causing disk corruption.  Use the I<--ro> (read-only) "
19101 "option to use guestfish safely if the disk image or virtual machine might be "
19102 "live."
19103 msgstr ""
19104
19105 #. type: textblock
19106 #: ../fish/guestfish.pod:32
19107 msgid ""
19108 "Guestfish is a shell and command-line tool for examining and modifying "
19109 "virtual machine filesystems.  It uses libguestfs and exposes all of the "
19110 "functionality of the guestfs API, see L<guestfs(3)>."
19111 msgstr ""
19112
19113 #. type: textblock
19114 #: ../fish/guestfish.pod:36
19115 msgid ""
19116 "Guestfish gives you structured access to the libguestfs API, from shell "
19117 "scripts or the command line or interactively.  If you want to rescue a "
19118 "broken virtual machine image, you should look at the L<virt-rescue(1)> "
19119 "command."
19120 msgstr ""
19121
19122 #. type: =head1
19123 #: ../fish/guestfish.pod:41 ../fish/guestfish.pod:947
19124 #: ../fuse/guestmount.pod:39 ../tools/virt-edit.pl:63 ../tools/virt-tar.pl:50
19125 msgid "EXAMPLES"
19126 msgstr ""
19127
19128 #. type: =head2
19129 #: ../fish/guestfish.pod:43
19130 msgid "As an interactive shell"
19131 msgstr ""
19132
19133 #. type: verbatim
19134 #: ../fish/guestfish.pod:45
19135 #, no-wrap
19136 msgid ""
19137 " $ guestfish\n"
19138 " \n"
19139 msgstr ""
19140
19141 #. type: verbatim
19142 #: ../fish/guestfish.pod:47
19143 #, no-wrap
19144 msgid ""
19145 " Welcome to guestfish, the libguestfs filesystem interactive shell for\n"
19146 " editing virtual machine filesystems.\n"
19147 " \n"
19148 msgstr ""
19149
19150 #. type: verbatim
19151 #: ../fish/guestfish.pod:50
19152 #, no-wrap
19153 msgid ""
19154 " Type: 'help' for a list of commands\n"
19155 "       'man' to read the manual\n"
19156 "       'quit' to quit the shell\n"
19157 " \n"
19158 msgstr ""
19159
19160 #. type: verbatim
19161 #: ../fish/guestfish.pod:54
19162 #, no-wrap
19163 msgid ""
19164 " ><fs> add-ro disk.img\n"
19165 " ><fs> run\n"
19166 " ><fs> list-filesystems\n"
19167 " /dev/sda1: ext4\n"
19168 " /dev/vg_guest/lv_root: ext4\n"
19169 " /dev/vg_guest/lv_swap: swap\n"
19170 " ><fs> mount /dev/vg_guest/lv_root /\n"
19171 " ><fs> cat /etc/fstab\n"
19172 " # /etc/fstab\n"
19173 " # Created by anaconda\n"
19174 " [...]\n"
19175 " ><fs> exit\n"
19176 "\n"
19177 msgstr ""
19178
19179 #. type: =head2
19180 #: ../fish/guestfish.pod:67
19181 msgid "From shell scripts"
19182 msgstr ""
19183
19184 #. type: textblock
19185 #: ../fish/guestfish.pod:69
19186 msgid "Create a new C</etc/motd> file in a guest or disk image:"
19187 msgstr ""
19188
19189 #. type: verbatim
19190 #: ../fish/guestfish.pod:71
19191 #, no-wrap
19192 msgid ""
19193 " guestfish <<_EOF_\n"
19194 " add disk.img\n"
19195 " run\n"
19196 " mount /dev/vg_guest/lv_root /\n"
19197 " write /etc/motd \"Welcome, new users\"\n"
19198 " _EOF_\n"
19199 "\n"
19200 msgstr ""
19201
19202 #. type: textblock
19203 #: ../fish/guestfish.pod:78
19204 msgid "List the LVM logical volumes in a disk image:"
19205 msgstr ""
19206
19207 #. type: verbatim
19208 #: ../fish/guestfish.pod:80
19209 #, no-wrap
19210 msgid ""
19211 " guestfish -a disk.img --ro <<_EOF_\n"
19212 " run\n"
19213 " lvs\n"
19214 " _EOF_\n"
19215 "\n"
19216 msgstr ""
19217
19218 #. type: textblock
19219 #: ../fish/guestfish.pod:85
19220 msgid "List all the filesystems in a disk image:"
19221 msgstr ""
19222
19223 #. type: verbatim
19224 #: ../fish/guestfish.pod:87
19225 #, no-wrap
19226 msgid ""
19227 " guestfish -a disk.img --ro <<_EOF_\n"
19228 " run\n"
19229 " list-filesystems\n"
19230 " _EOF_\n"
19231 "\n"
19232 msgstr ""
19233
19234 #. type: =head2
19235 #: ../fish/guestfish.pod:92
19236 msgid "On one command line"
19237 msgstr ""
19238
19239 #. type: textblock
19240 #: ../fish/guestfish.pod:94
19241 msgid "Update C</etc/resolv.conf> in a guest:"
19242 msgstr ""
19243
19244 #. type: verbatim
19245 #: ../fish/guestfish.pod:96
19246 #, no-wrap
19247 msgid ""
19248 " guestfish \\\n"
19249 "   add disk.img : run : mount /dev/vg_guest/lv_root / : \\\n"
19250 "   write /etc/resolv.conf \"nameserver 1.2.3.4\"\n"
19251 "\n"
19252 msgstr ""
19253
19254 #. type: textblock
19255 #: ../fish/guestfish.pod:100
19256 msgid "Edit C</boot/grub/grub.conf> interactively:"
19257 msgstr ""
19258
19259 #. type: verbatim
19260 #: ../fish/guestfish.pod:102
19261 #, no-wrap
19262 msgid ""
19263 " guestfish --rw --add disk.img \\\n"
19264 "   --mount /dev/vg_guest/lv_root \\\n"
19265 "   --mount /dev/sda1:/boot \\\n"
19266 "   edit /boot/grub/grub.conf\n"
19267 "\n"
19268 msgstr ""
19269
19270 #. type: =head2
19271 #: ../fish/guestfish.pod:107
19272 msgid "Mount disks automatically"
19273 msgstr ""
19274
19275 #. type: textblock
19276 #: ../fish/guestfish.pod:109
19277 msgid ""
19278 "Use the I<-i> option to automatically mount the disks from a virtual machine:"
19279 msgstr ""
19280
19281 #. type: verbatim
19282 #: ../fish/guestfish.pod:112
19283 #, no-wrap
19284 msgid ""
19285 " guestfish --ro -a disk.img -i cat /etc/group\n"
19286 "\n"
19287 msgstr ""
19288
19289 #. type: verbatim
19290 #: ../fish/guestfish.pod:114
19291 #, no-wrap
19292 msgid ""
19293 " guestfish --ro -d libvirt-domain -i cat /etc/group\n"
19294 "\n"
19295 msgstr ""
19296
19297 #. type: textblock
19298 #: ../fish/guestfish.pod:116
19299 msgid "Another way to edit C</boot/grub/grub.conf> interactively is:"
19300 msgstr ""
19301
19302 #. type: verbatim
19303 #: ../fish/guestfish.pod:118
19304 #, no-wrap
19305 msgid ""
19306 " guestfish --rw -a disk.img -i edit /boot/grub/grub.conf\n"
19307 "\n"
19308 msgstr ""
19309
19310 #. type: =head2
19311 #: ../fish/guestfish.pod:120
19312 msgid "As a script interpreter"
19313 msgstr ""
19314
19315 #. type: textblock
19316 #: ../fish/guestfish.pod:122
19317 msgid "Create a 100MB disk containing an ext2-formatted partition:"
19318 msgstr ""
19319
19320 #. type: verbatim
19321 #: ../fish/guestfish.pod:124
19322 #, no-wrap
19323 msgid ""
19324 " #!/usr/bin/guestfish -f\n"
19325 " sparse test1.img 100M\n"
19326 " run\n"
19327 " part-disk /dev/sda mbr\n"
19328 " mkfs ext2 /dev/sda1\n"
19329 "\n"
19330 msgstr ""
19331
19332 #. type: =head2
19333 #: ../fish/guestfish.pod:130
19334 msgid "Start with a prepared disk"
19335 msgstr ""
19336
19337 #. type: textblock
19338 #: ../fish/guestfish.pod:132
19339 msgid ""
19340 "An alternate way to create a 100MB disk called C<test1.img> containing a "
19341 "single ext2-formatted partition:"
19342 msgstr ""
19343
19344 #. type: verbatim
19345 #: ../fish/guestfish.pod:135
19346 #, no-wrap
19347 msgid ""
19348 " guestfish -N fs\n"
19349 "\n"
19350 msgstr ""
19351
19352 #. type: textblock
19353 #: ../fish/guestfish.pod:137
19354 msgid "To list what is available do:"
19355 msgstr ""
19356
19357 #. type: verbatim
19358 #: ../fish/guestfish.pod:139 ../fish/guestfish.pod:938
19359 #, no-wrap
19360 msgid ""
19361 " guestfish -N help | less\n"
19362 "\n"
19363 msgstr ""
19364
19365 #. type: =head2
19366 #: ../fish/guestfish.pod:141
19367 msgid "Remote control"
19368 msgstr ""
19369
19370 #. type: verbatim
19371 #: ../fish/guestfish.pod:143
19372 #, no-wrap
19373 msgid ""
19374 " eval \"`guestfish --listen`\"\n"
19375 " guestfish --remote add-ro disk.img\n"
19376 " guestfish --remote run\n"
19377 " guestfish --remote lvs\n"
19378 "\n"
19379 msgstr ""
19380
19381 #. type: =head1
19382 #: ../fish/guestfish.pod:148 ../test-tool/libguestfs-test-tool.pod:37
19383 #: ../fuse/guestmount.pod:73 ../tools/virt-edit.pl:81
19384 #: ../tools/virt-win-reg.pl:96 ../tools/virt-list-filesystems.pl:53
19385 #: ../tools/virt-tar.pl:103 ../tools/virt-make-fs.pl:153
19386 #: ../tools/virt-list-partitions.pl:54
19387 msgid "OPTIONS"
19388 msgstr ""
19389
19390 #. type: =item
19391 #: ../fish/guestfish.pod:152 ../fuse/guestmount.pod:131
19392 #: ../tools/virt-edit.pl:89 ../tools/virt-win-reg.pl:104
19393 #: ../tools/virt-list-filesystems.pl:61 ../tools/virt-tar.pl:111
19394 #: ../tools/virt-make-fs.pl:161 ../tools/virt-list-partitions.pl:62
19395 msgid "B<--help>"
19396 msgstr ""
19397
19398 #. type: textblock
19399 #: ../fish/guestfish.pod:154
19400 msgid "Displays general help on options."
19401 msgstr ""
19402
19403 #. type: =item
19404 #: ../fish/guestfish.pod:156
19405 msgid "B<-h>"
19406 msgstr ""
19407
19408 #. type: =item
19409 #: ../fish/guestfish.pod:158
19410 msgid "B<--cmd-help>"
19411 msgstr ""
19412
19413 #. type: textblock
19414 #: ../fish/guestfish.pod:160
19415 msgid "Lists all available guestfish commands."
19416 msgstr ""
19417
19418 #. type: =item
19419 #: ../fish/guestfish.pod:162
19420 msgid "B<-h cmd>"
19421 msgstr ""
19422
19423 #. type: =item
19424 #: ../fish/guestfish.pod:164
19425 msgid "B<--cmd-help cmd>"
19426 msgstr ""
19427
19428 #. type: textblock
19429 #: ../fish/guestfish.pod:166
19430 msgid "Displays detailed help on a single command C<cmd>."
19431 msgstr ""
19432
19433 #. type: =item
19434 #: ../fish/guestfish.pod:168
19435 msgid "B<-a image>"
19436 msgstr ""
19437
19438 #. type: =item
19439 #: ../fish/guestfish.pod:170
19440 msgid "B<--add image>"
19441 msgstr ""
19442
19443 #. type: textblock
19444 #: ../fish/guestfish.pod:172
19445 msgid "Add a block device or virtual machine image to the shell."
19446 msgstr ""
19447
19448 #. type: textblock
19449 #: ../fish/guestfish.pod:174 ../fuse/guestmount.pod:81
19450 msgid ""
19451 "The format of the disk image is auto-detected.  To override this and force a "
19452 "particular format use the I<--format=..> option."
19453 msgstr ""
19454
19455 #. type: textblock
19456 #: ../fish/guestfish.pod:177
19457 msgid ""
19458 "Using this flag is mostly equivalent to using the C<add> command, with "
19459 "C<readonly:true> if the I<--ro> flag was given, and with C<format:...> if "
19460 "the I<--format:...> flag was given."
19461 msgstr ""
19462
19463 #. type: =item
19464 #: ../fish/guestfish.pod:181
19465 msgid "B<-c URI>"
19466 msgstr ""
19467
19468 #. type: =item
19469 #: ../fish/guestfish.pod:183
19470 msgid "B<--connect URI>"
19471 msgstr ""
19472
19473 #. type: textblock
19474 #: ../fish/guestfish.pod:185 ../fuse/guestmount.pod:86
19475 msgid ""
19476 "When used in conjunction with the I<-d> option, this specifies the libvirt "
19477 "URI to use.  The default is to use the default libvirt connection."
19478 msgstr ""
19479
19480 #. type: =item
19481 #: ../fish/guestfish.pod:189
19482 msgid "B<--csh>"
19483 msgstr ""
19484
19485 #. type: textblock
19486 #: ../fish/guestfish.pod:191
19487 msgid ""
19488 "If using the I<--listen> option and a csh-like shell, use this option.  See "
19489 "section L</REMOTE CONTROL AND CSH> below."
19490 msgstr ""
19491
19492 #. type: =item
19493 #: ../fish/guestfish.pod:194
19494 msgid "B<-d libvirt-domain>"
19495 msgstr ""
19496
19497 #. type: =item
19498 #: ../fish/guestfish.pod:196
19499 msgid "B<--domain libvirt-domain>"
19500 msgstr ""
19501
19502 #. type: textblock
19503 #: ../fish/guestfish.pod:198 ../fuse/guestmount.pod:92
19504 msgid ""
19505 "Add disks from the named libvirt domain.  If the I<--ro> option is also "
19506 "used, then any libvirt domain can be used.  However in write mode, only "
19507 "libvirt domains which are shut down can be named here."
19508 msgstr ""
19509
19510 #. type: textblock
19511 #: ../fish/guestfish.pod:202
19512 msgid ""
19513 "Using this flag is mostly equivalent to using the C<add-domain> command, "
19514 "with C<readonly:true> if the I<--ro> flag was given, and with C<format:...> "
19515 "if the I<--format:...> flag was given."
19516 msgstr ""
19517
19518 #. type: =item
19519 #: ../fish/guestfish.pod:206
19520 msgid "B<-D>"
19521 msgstr ""
19522
19523 #. type: =item
19524 #: ../fish/guestfish.pod:208
19525 msgid "B<--no-dest-paths>"
19526 msgstr ""
19527
19528 #. type: textblock
19529 #: ../fish/guestfish.pod:210
19530 msgid ""
19531 "Don't tab-complete paths on the guest filesystem.  It is useful to be able "
19532 "to hit the tab key to complete paths on the guest filesystem, but this "
19533 "causes extra \"hidden\" guestfs calls to be made, so this option is here to "
19534 "allow this feature to be disabled."
19535 msgstr ""
19536
19537 #. type: =item
19538 #: ../fish/guestfish.pod:215 ../fuse/guestmount.pod:108
19539 msgid "B<--echo-keys>"
19540 msgstr ""
19541
19542 #. type: textblock
19543 #: ../fish/guestfish.pod:217 ../fuse/guestmount.pod:110
19544 msgid ""
19545 "When prompting for keys and passphrases, guestfish normally turns echoing "
19546 "off so you cannot see what you are typing.  If you are not worried about "
19547 "Tempest attacks and there is no one else in the room you can specify this "
19548 "flag to see what you are typing."
19549 msgstr ""
19550
19551 #. type: =item
19552 #: ../fish/guestfish.pod:222
19553 msgid "B<-f file>"
19554 msgstr ""
19555
19556 #. type: =item
19557 #: ../fish/guestfish.pod:224
19558 msgid "B<--file file>"
19559 msgstr ""
19560
19561 #. type: textblock
19562 #: ../fish/guestfish.pod:226
19563 msgid "Read commands from C<file>.  To write pure guestfish scripts, use:"
19564 msgstr ""
19565
19566 #. type: verbatim
19567 #: ../fish/guestfish.pod:229
19568 #, no-wrap
19569 msgid ""
19570 " #!/usr/bin/guestfish -f\n"
19571 "\n"
19572 msgstr ""
19573
19574 #. type: =item
19575 #: ../fish/guestfish.pod:231
19576 msgid "B<--format=raw|qcow2|..>"
19577 msgstr ""
19578
19579 #. type: =item
19580 #: ../fish/guestfish.pod:233
19581 msgid "B<--format>"
19582 msgstr ""
19583
19584 #. type: textblock
19585 #: ../fish/guestfish.pod:235 ../fuse/guestmount.pod:117
19586 msgid ""
19587 "The default for the I<-a> option is to auto-detect the format of the disk "
19588 "image.  Using this forces the disk format for I<-a> options which follow on "
19589 "the command line.  Using I<--format> with no argument switches back to auto-"
19590 "detection for subsequent I<-a> options."
19591 msgstr ""
19592
19593 #. type: verbatim
19594 #: ../fish/guestfish.pod:242
19595 #, no-wrap
19596 msgid ""
19597 " guestfish --format=raw -a disk.img\n"
19598 "\n"
19599 msgstr ""
19600
19601 #. type: textblock
19602 #: ../fish/guestfish.pod:244
19603 msgid "forces raw format (no auto-detection) for C<disk.img>."
19604 msgstr ""
19605
19606 #. type: verbatim
19607 #: ../fish/guestfish.pod:246
19608 #, no-wrap
19609 msgid ""
19610 " guestfish --format=raw -a disk.img --format -a another.img\n"
19611 "\n"
19612 msgstr ""
19613
19614 #. type: textblock
19615 #: ../fish/guestfish.pod:248
19616 msgid ""
19617 "forces raw format (no auto-detection) for C<disk.img> and reverts to auto-"
19618 "detection for C<another.img>."
19619 msgstr ""
19620
19621 #. type: textblock
19622 #: ../fish/guestfish.pod:251
19623 msgid ""
19624 "If you have untrusted raw-format guest disk images, you should use this "
19625 "option to specify the disk format.  This avoids a possible security problem "
19626 "with malicious guests (CVE-2010-3851).  See also L</add-drive-opts>."
19627 msgstr ""
19628
19629 #. type: =item
19630 #: ../fish/guestfish.pod:256
19631 msgid "B<-i>"
19632 msgstr ""
19633
19634 #. type: =item
19635 #: ../fish/guestfish.pod:258
19636 msgid "B<--inspector>"
19637 msgstr ""
19638
19639 #. type: textblock
19640 #: ../fish/guestfish.pod:260 ../fuse/guestmount.pod:137
19641 msgid ""
19642 "Using L<virt-inspector(1)> code, inspect the disks looking for an operating "
19643 "system and mount filesystems as they would be mounted on the real virtual "
19644 "machine."
19645 msgstr ""
19646
19647 #. type: textblock
19648 #: ../fish/guestfish.pod:264
19649 msgid "Typical usage is either:"
19650 msgstr ""
19651
19652 #. type: verbatim
19653 #: ../fish/guestfish.pod:266
19654 #, no-wrap
19655 msgid ""
19656 " guestfish -d myguest -i\n"
19657 "\n"
19658 msgstr ""
19659
19660 #. type: textblock
19661 #: ../fish/guestfish.pod:268
19662 msgid "(for an inactive libvirt domain called I<myguest>), or:"
19663 msgstr ""
19664
19665 #. type: verbatim
19666 #: ../fish/guestfish.pod:270
19667 #, no-wrap
19668 msgid ""
19669 " guestfish --ro -d myguest -i\n"
19670 "\n"
19671 msgstr ""
19672
19673 #. type: textblock
19674 #: ../fish/guestfish.pod:272
19675 msgid "(for active domains, readonly), or specify the block device directly:"
19676 msgstr ""
19677
19678 #. type: verbatim
19679 #: ../fish/guestfish.pod:274
19680 #, no-wrap
19681 msgid ""
19682 " guestfish --rw -a /dev/Guests/MyGuest -i\n"
19683 "\n"
19684 msgstr ""
19685
19686 #. type: textblock
19687 #: ../fish/guestfish.pod:276
19688 msgid ""
19689 "Note that the command line syntax changed slightly over older versions of "
19690 "guestfish.  You can still use the old syntax:"
19691 msgstr ""
19692
19693 #. type: verbatim
19694 #: ../fish/guestfish.pod:279
19695 #, no-wrap
19696 msgid ""
19697 " guestfish [--ro] -i disk.img\n"
19698 "\n"
19699 msgstr ""
19700
19701 #. type: verbatim
19702 #: ../fish/guestfish.pod:281
19703 #, no-wrap
19704 msgid ""
19705 " guestfish [--ro] -i libvirt-domain\n"
19706 "\n"
19707 msgstr ""
19708
19709 #. type: textblock
19710 #: ../fish/guestfish.pod:283
19711 msgid ""
19712 "Using this flag is mostly equivalent to using the C<inspect-os> command and "
19713 "then using other commands to mount the filesystems that were found."
19714 msgstr ""
19715
19716 #. type: =item
19717 #: ../fish/guestfish.pod:287 ../fuse/guestmount.pod:141
19718 msgid "B<--keys-from-stdin>"
19719 msgstr ""
19720
19721 #. type: textblock
19722 #: ../fish/guestfish.pod:289 ../fuse/guestmount.pod:143
19723 msgid ""
19724 "Read key or passphrase parameters from stdin.  The default is to try to read "
19725 "passphrases from the user by opening C</dev/tty>."
19726 msgstr ""
19727
19728 #. type: =item
19729 #: ../fish/guestfish.pod:292
19730 msgid "B<--listen>"
19731 msgstr ""
19732
19733 #. type: textblock
19734 #: ../fish/guestfish.pod:294
19735 msgid ""
19736 "Fork into the background and listen for remote commands.  See section L</"
19737 "REMOTE CONTROL GUESTFISH OVER A SOCKET> below."
19738 msgstr ""
19739
19740 #. type: =item
19741 #: ../fish/guestfish.pod:297 ../fuse/guestmount.pod:146
19742 msgid "B<--live>"
19743 msgstr ""
19744
19745 #. type: textblock
19746 #: ../fish/guestfish.pod:299 ../fuse/guestmount.pod:148
19747 msgid ""
19748 "Connect to a live virtual machine.  (Experimental, see L<guestfs(3)/"
19749 "ATTACHING TO RUNNING DAEMONS>)."
19750 msgstr ""
19751
19752 #. type: =item
19753 #: ../fish/guestfish.pod:302 ../fuse/guestmount.pod:151
19754 msgid "B<-m dev[:mountpoint[:options]]>"
19755 msgstr ""
19756
19757 #. type: =item
19758 #: ../fish/guestfish.pod:304 ../fuse/guestmount.pod:153
19759 msgid "B<--mount dev[:mountpoint[:options]]>"
19760 msgstr ""
19761
19762 #. type: textblock
19763 #: ../fish/guestfish.pod:306
19764 msgid "Mount the named partition or logical volume on the given mountpoint."
19765 msgstr ""
19766
19767 #. type: textblock
19768 #: ../fish/guestfish.pod:308
19769 msgid "If the mountpoint is omitted, it defaults to C</>."
19770 msgstr ""
19771
19772 #. type: textblock
19773 #: ../fish/guestfish.pod:310
19774 msgid "You have to mount something on C</> before most commands will work."
19775 msgstr ""
19776
19777 #. type: textblock
19778 #: ../fish/guestfish.pod:312
19779 msgid ""
19780 "If any I<-m> or I<--mount> options are given, the guest is automatically "
19781 "launched."
19782 msgstr ""
19783
19784 #. type: textblock
19785 #: ../fish/guestfish.pod:315
19786 msgid ""
19787 "If you don't know what filesystems a disk image contains, you can either run "
19788 "guestfish without this option, then list the partitions, filesystems and LVs "
19789 "available (see L</list-partitions>, L</list-filesystems> and L</lvs> "
19790 "commands), or you can use the L<virt-filesystems(1)> program."
19791 msgstr ""
19792
19793 #. type: textblock
19794 #: ../fish/guestfish.pod:321 ../fuse/guestmount.pod:161
19795 msgid ""
19796 "The third (and rarely used) part of the mount parameter is the list of mount "
19797 "options used to mount the underlying filesystem.  If this is not given, then "
19798 "the mount options are either the empty string or C<ro> (the latter if the "
19799 "I<--ro> flag is used).  By specifying the mount options, you override this "
19800 "default choice.  Probably the only time you would use this is to enable ACLs "
19801 "and/or extended attributes if the filesystem can support them:"
19802 msgstr ""
19803
19804 #. type: verbatim
19805 #: ../fish/guestfish.pod:329 ../fuse/guestmount.pod:169
19806 #, no-wrap
19807 msgid ""
19808 " -m /dev/sda1:/:acl,user_xattr\n"
19809 "\n"
19810 msgstr ""
19811
19812 #. type: textblock
19813 #: ../fish/guestfish.pod:331
19814 msgid "Using this flag is equivalent to using the C<mount-options> command."
19815 msgstr ""
19816
19817 #. type: =item
19818 #: ../fish/guestfish.pod:333
19819 msgid "B<-n>"
19820 msgstr ""
19821
19822 #. type: =item
19823 #: ../fish/guestfish.pod:335
19824 msgid "B<--no-sync>"
19825 msgstr ""
19826
19827 #. type: textblock
19828 #: ../fish/guestfish.pod:337
19829 msgid ""
19830 "Disable autosync.  This is enabled by default.  See the discussion of "
19831 "autosync in the L<guestfs(3)> manpage."
19832 msgstr ""
19833
19834 #. type: =item
19835 #: ../fish/guestfish.pod:340
19836 msgid "B<-N type>"
19837 msgstr ""
19838
19839 #. type: =item
19840 #: ../fish/guestfish.pod:342
19841 msgid "B<--new type>"
19842 msgstr ""
19843
19844 #. type: =item
19845 #: ../fish/guestfish.pod:344
19846 msgid "B<-N help>"
19847 msgstr ""
19848
19849 #. type: textblock
19850 #: ../fish/guestfish.pod:346
19851 msgid ""
19852 "Prepare a fresh disk image formatted as \"type\".  This is an alternative to "
19853 "the I<-a> option: whereas I<-a> adds an existing disk, I<-N> creates a "
19854 "preformatted disk with a filesystem and adds it.  See L</PREPARED DISK "
19855 "IMAGES> below."
19856 msgstr ""
19857
19858 #. type: =item
19859 #: ../fish/guestfish.pod:351
19860 msgid "B<--progress-bars>"
19861 msgstr ""
19862
19863 #. type: textblock
19864 #: ../fish/guestfish.pod:353
19865 msgid "Enable progress bars, even when guestfish is used non-interactively."
19866 msgstr ""
19867
19868 #. type: textblock
19869 #: ../fish/guestfish.pod:355
19870 msgid ""
19871 "Progress bars are enabled by default when guestfish is used as an "
19872 "interactive shell."
19873 msgstr ""
19874
19875 #. type: =item
19876 #: ../fish/guestfish.pod:358
19877 msgid "B<--no-progress-bars>"
19878 msgstr ""
19879
19880 #. type: textblock
19881 #: ../fish/guestfish.pod:360
19882 msgid "Disable progress bars."
19883 msgstr ""
19884
19885 #. type: =item
19886 #: ../fish/guestfish.pod:362
19887 msgid "B<--remote[=pid]>"
19888 msgstr ""
19889
19890 #. type: textblock
19891 #: ../fish/guestfish.pod:364
19892 msgid ""
19893 "Send remote commands to C<$GUESTFISH_PID> or C<pid>.  See section L</REMOTE "
19894 "CONTROL GUESTFISH OVER A SOCKET> below."
19895 msgstr ""
19896
19897 #. type: =item
19898 #: ../fish/guestfish.pod:367
19899 msgid "B<-r>"
19900 msgstr ""
19901
19902 #. type: =item
19903 #: ../fish/guestfish.pod:369
19904 msgid "B<--ro>"
19905 msgstr ""
19906
19907 #. type: textblock
19908 #: ../fish/guestfish.pod:371
19909 msgid ""
19910 "This changes the I<-a>, I<-d> and I<-m> options so that disks are added and "
19911 "mounts are done read-only."
19912 msgstr ""
19913
19914 #. type: textblock
19915 #: ../fish/guestfish.pod:374
19916 msgid ""
19917 "The option must always be used if the disk image or virtual machine might be "
19918 "running, and is generally recommended in cases where you don't need write "
19919 "access to the disk."
19920 msgstr ""
19921
19922 #. type: textblock
19923 #: ../fish/guestfish.pod:378
19924 msgid ""
19925 "Note that prepared disk images created with I<-N> are not affected by this "
19926 "option.  Also commands like C<add> are not affected - you have to specify "
19927 "the C<readonly:true> option explicitly if you need it."
19928 msgstr ""
19929
19930 #. type: textblock
19931 #: ../fish/guestfish.pod:382
19932 msgid "See also L</OPENING DISKS FOR READ AND WRITE> below."
19933 msgstr ""
19934
19935 #. type: =item
19936 #: ../fish/guestfish.pod:384 ../fuse/guestmount.pod:225
19937 msgid "B<--selinux>"
19938 msgstr ""
19939
19940 #. type: textblock
19941 #: ../fish/guestfish.pod:386
19942 msgid "Enable SELinux support for the guest.  See L<guestfs(3)/SELINUX>."
19943 msgstr ""
19944
19945 #. type: =item
19946 #: ../fish/guestfish.pod:388
19947 msgid "B<-v>"
19948 msgstr ""
19949
19950 #. type: =item
19951 #: ../fish/guestfish.pod:390
19952 msgid "B<--verbose>"
19953 msgstr ""
19954
19955 #. type: textblock
19956 #: ../fish/guestfish.pod:392
19957 msgid ""
19958 "Enable very verbose messages.  This is particularly useful if you find a bug."
19959 msgstr ""
19960
19961 #. type: =item
19962 #: ../fish/guestfish.pod:395
19963 msgid "B<-V>"
19964 msgstr ""
19965
19966 #. type: =item
19967 #: ../fish/guestfish.pod:397 ../tools/virt-edit.pl:97
19968 #: ../tools/virt-win-reg.pl:112 ../tools/virt-list-filesystems.pl:69
19969 #: ../tools/virt-tar.pl:119 ../tools/virt-make-fs.pl:169
19970 #: ../tools/virt-list-partitions.pl:70
19971 msgid "B<--version>"
19972 msgstr ""
19973
19974 #. type: textblock
19975 #: ../fish/guestfish.pod:399
19976 msgid "Display the guestfish / libguestfs version number and exit."
19977 msgstr ""
19978
19979 #. type: =item
19980 #: ../fish/guestfish.pod:401
19981 msgid "B<-w>"
19982 msgstr ""
19983
19984 #. type: =item
19985 #: ../fish/guestfish.pod:403
19986 msgid "B<--rw>"
19987 msgstr ""
19988
19989 #. type: textblock
19990 #: ../fish/guestfish.pod:405 ../fuse/guestmount.pod:239
19991 msgid ""
19992 "This changes the I<-a>, I<-d> and I<-m> options so that disks are added and "
19993 "mounts are done read-write."
19994 msgstr ""
19995
19996 #. type: textblock
19997 #: ../fish/guestfish.pod:408
19998 msgid "See L</OPENING DISKS FOR READ AND WRITE> below."
19999 msgstr ""
20000
20001 #. type: =item
20002 #: ../fish/guestfish.pod:410
20003 msgid "B<-x>"
20004 msgstr ""
20005
20006 #. type: textblock
20007 #: ../fish/guestfish.pod:412
20008 msgid "Echo each command before executing it."
20009 msgstr ""
20010
20011 #. type: =head1
20012 #: ../fish/guestfish.pod:416
20013 msgid "COMMANDS ON COMMAND LINE"
20014 msgstr ""
20015
20016 #. type: textblock
20017 #: ../fish/guestfish.pod:418
20018 msgid ""
20019 "Any additional (non-option) arguments are treated as commands to execute."
20020 msgstr ""
20021
20022 #. type: textblock
20023 #: ../fish/guestfish.pod:421
20024 msgid ""
20025 "Commands to execute should be separated by a colon (C<:>), where the colon "
20026 "is a separate parameter.  Thus:"
20027 msgstr ""
20028
20029 #. type: verbatim
20030 #: ../fish/guestfish.pod:424
20031 #, no-wrap
20032 msgid ""
20033 " guestfish cmd [args...] : cmd [args...] : cmd [args...] ...\n"
20034 "\n"
20035 msgstr ""
20036
20037 #. type: textblock
20038 #: ../fish/guestfish.pod:426
20039 msgid ""
20040 "If there are no additional arguments, then we enter a shell, either an "
20041 "interactive shell with a prompt (if the input is a terminal) or a non-"
20042 "interactive shell."
20043 msgstr ""
20044
20045 #. type: textblock
20046 #: ../fish/guestfish.pod:430
20047 msgid ""
20048 "In either command line mode or non-interactive shell, the first command that "
20049 "gives an error causes the whole shell to exit.  In interactive mode (with a "
20050 "prompt) if a command fails, you can continue to enter commands."
20051 msgstr ""
20052
20053 #. type: =head1
20054 #: ../fish/guestfish.pod:435
20055 msgid "USING launch (OR run)"
20056 msgstr ""
20057
20058 #. type: textblock
20059 #: ../fish/guestfish.pod:437
20060 msgid ""
20061 "As with L<guestfs(3)>, you must first configure your guest by adding disks, "
20062 "then launch it, then mount any disks you need, and finally issue actions/"
20063 "commands.  So the general order of the day is:"
20064 msgstr ""
20065
20066 #. type: textblock
20067 #: ../fish/guestfish.pod:445
20068 msgid "add or -a/--add"
20069 msgstr ""
20070
20071 #. type: textblock
20072 #: ../fish/guestfish.pod:449
20073 msgid "launch (aka run)"
20074 msgstr ""
20075
20076 #. type: textblock
20077 #: ../fish/guestfish.pod:453
20078 msgid "mount or -m/--mount"
20079 msgstr ""
20080
20081 #. type: textblock
20082 #: ../fish/guestfish.pod:457
20083 msgid "any other commands"
20084 msgstr ""
20085
20086 #. type: textblock
20087 #: ../fish/guestfish.pod:461
20088 msgid ""
20089 "C<run> is a synonym for C<launch>.  You must C<launch> (or C<run>)  your "
20090 "guest before mounting or performing any other commands."
20091 msgstr ""
20092
20093 #. type: textblock
20094 #: ../fish/guestfish.pod:464
20095 msgid ""
20096 "The only exception is that if any of the I<-i>, I<-m>, I<--mount>, I<-N> or "
20097 "I<--new> options were given then C<run> is done automatically, simply "
20098 "because guestfish can't perform the action you asked for without doing this."
20099 msgstr ""
20100
20101 #. type: =head1
20102 #: ../fish/guestfish.pod:469
20103 msgid "OPENING DISKS FOR READ AND WRITE"
20104 msgstr ""
20105
20106 #. type: textblock
20107 #: ../fish/guestfish.pod:471
20108 msgid ""
20109 "The guestfish, L<guestmount(1)> and L<virt-rescue(1)> options I<--ro> and "
20110 "I<--rw> affect whether the other command line options I<-a>, I<-c>, I<-d>, "
20111 "I<-i> and I<-m> open disk images read-only or for writing."
20112 msgstr ""
20113
20114 #. type: textblock
20115 #: ../fish/guestfish.pod:476
20116 msgid ""
20117 "In libguestfs E<le> 1.8, guestfish, guestmount and virt-rescue defaulted to "
20118 "opening disk images supplied on the command line for write.  To open a disk "
20119 "image read-only you have to do I<-a image --ro>."
20120 msgstr ""
20121
20122 #. type: textblock
20123 #: ../fish/guestfish.pod:480
20124 msgid ""
20125 "This matters: If you accidentally open a live VM disk image writable then "
20126 "you will cause irreversible disk corruption."
20127 msgstr ""
20128
20129 #. type: textblock
20130 #: ../fish/guestfish.pod:483
20131 msgid ""
20132 "By libguestfs 1.10 we intend to change the default the other way.  Disk "
20133 "images will be opened read-only.  You will have to either specify "
20134 "I<guestfish --rw>, I<guestmount --rw>, I<virt-rescue --rw>, or change the "
20135 "configuration file C</etc/libguestfs-tools.conf> in order to get write "
20136 "access for disk images specified by those other command line options."
20137 msgstr ""
20138
20139 #. type: textblock
20140 #: ../fish/guestfish.pod:490
20141 msgid ""
20142 "This version of guestfish, guestmount and virt-rescue has a I<--rw> option "
20143 "which does nothing (it is already the default).  However it is highly "
20144 "recommended that you use this option to indicate that you need write access, "
20145 "and prepare your scripts for the day when this option will be required for "
20146 "write access."
20147 msgstr ""
20148
20149 #. type: textblock
20150 #: ../fish/guestfish.pod:496
20151 msgid ""
20152 "B<Note:> This does I<not> affect commands like L</add> and L</mount>, or any "
20153 "other libguestfs program apart from guestfish and guestmount."
20154 msgstr ""
20155
20156 #. type: =head1
20157 #: ../fish/guestfish.pod:499
20158 msgid "QUOTING"
20159 msgstr ""
20160
20161 #. type: textblock
20162 #: ../fish/guestfish.pod:501
20163 msgid ""
20164 "You can quote ordinary parameters using either single or double quotes.  For "
20165 "example:"
20166 msgstr ""
20167
20168 #. type: verbatim
20169 #: ../fish/guestfish.pod:504
20170 #, no-wrap
20171 msgid ""
20172 " add \"file with a space.img\"\n"
20173 "\n"
20174 msgstr ""
20175
20176 #. type: verbatim
20177 #: ../fish/guestfish.pod:506
20178 #, no-wrap
20179 msgid ""
20180 " rm '/file name'\n"
20181 "\n"
20182 msgstr ""
20183
20184 #. type: verbatim
20185 #: ../fish/guestfish.pod:508
20186 #, no-wrap
20187 msgid ""
20188 " rm '/\"'\n"
20189 "\n"
20190 msgstr ""
20191
20192 #. type: textblock
20193 #: ../fish/guestfish.pod:510
20194 msgid ""
20195 "A few commands require a list of strings to be passed.  For these, use a "
20196 "whitespace-separated list, enclosed in quotes.  Strings containing "
20197 "whitespace to be passed through must be enclosed in single quotes.  A "
20198 "literal single quote must be escaped with a backslash."
20199 msgstr ""
20200
20201 #. type: verbatim
20202 #: ../fish/guestfish.pod:515
20203 #, no-wrap
20204 msgid ""
20205 " vgcreate VG \"/dev/sda1 /dev/sdb1\"\n"
20206 " command \"/bin/echo 'foo      bar'\"\n"
20207 " command \"/bin/echo \\'foo\\'\"\n"
20208 "\n"
20209 msgstr ""
20210
20211 #. type: =head1
20212 #: ../fish/guestfish.pod:519
20213 msgid "OPTIONAL ARGUMENTS"
20214 msgstr ""
20215
20216 #. type: textblock
20217 #: ../fish/guestfish.pod:521
20218 msgid ""
20219 "Some commands take optional arguments.  These arguments appear in this "
20220 "documentation as C<[argname:..]>.  You can use them as in these examples:"
20221 msgstr ""
20222
20223 #. type: verbatim
20224 #: ../fish/guestfish.pod:525
20225 #, no-wrap
20226 msgid ""
20227 " add-drive-opts filename\n"
20228 "\n"
20229 msgstr ""
20230
20231 #. type: verbatim
20232 #: ../fish/guestfish.pod:527
20233 #, no-wrap
20234 msgid ""
20235 " add-drive-opts filename readonly:true\n"
20236 "\n"
20237 msgstr ""
20238
20239 #. type: verbatim
20240 #: ../fish/guestfish.pod:529
20241 #, no-wrap
20242 msgid ""
20243 " add-drive-opts filename format:qcow2 readonly:false\n"
20244 "\n"
20245 msgstr ""
20246
20247 #. type: textblock
20248 #: ../fish/guestfish.pod:531
20249 msgid ""
20250 "Each optional argument can appear at most once.  All optional arguments must "
20251 "appear after the required ones."
20252 msgstr ""
20253
20254 #. type: =head1
20255 #: ../fish/guestfish.pod:534
20256 msgid "NUMBERS"
20257 msgstr ""
20258
20259 #. type: textblock
20260 #: ../fish/guestfish.pod:536
20261 msgid ""
20262 "This section applies to all commands which can take integers as parameters."
20263 msgstr ""
20264
20265 #. type: =head2
20266 #: ../fish/guestfish.pod:539
20267 msgid "SIZE SUFFIX"
20268 msgstr ""
20269
20270 #. type: textblock
20271 #: ../fish/guestfish.pod:541
20272 msgid ""
20273 "When the command takes a parameter measured in bytes, you can use one of the "
20274 "following suffixes to specify kilobytes, megabytes and larger sizes:"
20275 msgstr ""
20276
20277 #. type: =item
20278 #: ../fish/guestfish.pod:547
20279 msgid "B<k> or B<K> or B<KiB>"
20280 msgstr ""
20281
20282 #. type: textblock
20283 #: ../fish/guestfish.pod:549
20284 msgid "The size in kilobytes (multiplied by 1024)."
20285 msgstr ""
20286
20287 #. type: =item
20288 #: ../fish/guestfish.pod:551
20289 msgid "B<KB>"
20290 msgstr ""
20291
20292 #. type: textblock
20293 #: ../fish/guestfish.pod:553
20294 msgid "The size in SI 1000 byte units."
20295 msgstr ""
20296
20297 #. type: =item
20298 #: ../fish/guestfish.pod:555
20299 msgid "B<M> or B<MiB>"
20300 msgstr ""
20301
20302 #. type: textblock
20303 #: ../fish/guestfish.pod:557
20304 msgid "The size in megabytes (multiplied by 1048576)."
20305 msgstr ""
20306
20307 #. type: =item
20308 #: ../fish/guestfish.pod:559
20309 msgid "B<MB>"
20310 msgstr ""
20311
20312 #. type: textblock
20313 #: ../fish/guestfish.pod:561
20314 msgid "The size in SI 1000000 byte units."
20315 msgstr ""
20316
20317 #. type: =item
20318 #: ../fish/guestfish.pod:563
20319 msgid "B<G> or B<GiB>"
20320 msgstr ""
20321
20322 #. type: textblock
20323 #: ../fish/guestfish.pod:565
20324 msgid "The size in gigabytes (multiplied by 2**30)."
20325 msgstr ""
20326
20327 #. type: =item
20328 #: ../fish/guestfish.pod:567
20329 msgid "B<GB>"
20330 msgstr ""
20331
20332 #. type: textblock
20333 #: ../fish/guestfish.pod:569
20334 msgid "The size in SI 10**9 byte units."
20335 msgstr ""
20336
20337 #. type: =item
20338 #: ../fish/guestfish.pod:571
20339 msgid "B<T> or B<TiB>"
20340 msgstr ""
20341
20342 #. type: textblock
20343 #: ../fish/guestfish.pod:573
20344 msgid "The size in terabytes (multiplied by 2**40)."
20345 msgstr ""
20346
20347 #. type: =item
20348 #: ../fish/guestfish.pod:575
20349 msgid "B<TB>"
20350 msgstr ""
20351
20352 #. type: textblock
20353 #: ../fish/guestfish.pod:577
20354 msgid "The size in SI 10**12 byte units."
20355 msgstr ""
20356
20357 #. type: =item
20358 #: ../fish/guestfish.pod:579
20359 msgid "B<P> or B<PiB>"
20360 msgstr ""
20361
20362 #. type: textblock
20363 #: ../fish/guestfish.pod:581
20364 msgid "The size in petabytes (multiplied by 2**50)."
20365 msgstr ""
20366
20367 #. type: =item
20368 #: ../fish/guestfish.pod:583
20369 msgid "B<PB>"
20370 msgstr ""
20371
20372 #. type: textblock
20373 #: ../fish/guestfish.pod:585
20374 msgid "The size in SI 10**15 byte units."
20375 msgstr ""
20376
20377 #. type: =item
20378 #: ../fish/guestfish.pod:587
20379 msgid "B<E> or B<EiB>"
20380 msgstr ""
20381
20382 #. type: textblock
20383 #: ../fish/guestfish.pod:589
20384 msgid "The size in exabytes (multiplied by 2**60)."
20385 msgstr ""
20386
20387 #. type: =item
20388 #: ../fish/guestfish.pod:591
20389 msgid "B<EB>"
20390 msgstr ""
20391
20392 #. type: textblock
20393 #: ../fish/guestfish.pod:593
20394 msgid "The size in SI 10**18 byte units."
20395 msgstr ""
20396
20397 #. type: =item
20398 #: ../fish/guestfish.pod:595
20399 msgid "B<Z> or B<ZiB>"
20400 msgstr ""
20401
20402 #. type: textblock
20403 #: ../fish/guestfish.pod:597
20404 msgid "The size in zettabytes (multiplied by 2**70)."
20405 msgstr ""
20406
20407 #. type: =item
20408 #: ../fish/guestfish.pod:599
20409 msgid "B<ZB>"
20410 msgstr ""
20411
20412 #. type: textblock
20413 #: ../fish/guestfish.pod:601
20414 msgid "The size in SI 10**21 byte units."
20415 msgstr ""
20416
20417 #. type: =item
20418 #: ../fish/guestfish.pod:603
20419 msgid "B<Y> or B<YiB>"
20420 msgstr ""
20421
20422 #. type: textblock
20423 #: ../fish/guestfish.pod:605
20424 msgid "The size in yottabytes (multiplied by 2**80)."
20425 msgstr ""
20426
20427 #. type: =item
20428 #: ../fish/guestfish.pod:607
20429 msgid "B<YB>"
20430 msgstr ""
20431
20432 #. type: textblock
20433 #: ../fish/guestfish.pod:609
20434 msgid "The size in SI 10**24 byte units."
20435 msgstr ""
20436
20437 #. type: verbatim
20438 #: ../fish/guestfish.pod:615
20439 #, no-wrap
20440 msgid ""
20441 " truncate-size /file 1G\n"
20442 "\n"
20443 msgstr ""
20444
20445 #. type: textblock
20446 #: ../fish/guestfish.pod:617
20447 msgid "would truncate the file to 1 gigabyte."
20448 msgstr ""
20449
20450 #. type: textblock
20451 #: ../fish/guestfish.pod:619
20452 msgid ""
20453 "Be careful because a few commands take sizes in kilobytes or megabytes (eg. "
20454 "the parameter to L</memsize> is specified in megabytes already).  Adding a "
20455 "suffix will probably not do what you expect."
20456 msgstr ""
20457
20458 #. type: =head2
20459 #: ../fish/guestfish.pod:623
20460 msgid "OCTAL AND HEXADECIMAL NUMBERS"
20461 msgstr ""
20462
20463 #. type: textblock
20464 #: ../fish/guestfish.pod:625
20465 msgid ""
20466 "For specifying the radix (base) use the C convention: C<0> to prefix an "
20467 "octal number or C<0x> to prefix a hexadecimal number.  For example:"
20468 msgstr ""
20469
20470 #. type: verbatim
20471 #: ../fish/guestfish.pod:628
20472 #, no-wrap
20473 msgid ""
20474 " 1234      decimal number 1234\n"
20475 " 02322     octal number, equivalent to decimal 1234\n"
20476 " 0x4d2     hexadecimal number, equivalent to decimal 1234\n"
20477 "\n"
20478 msgstr ""
20479
20480 #. type: textblock
20481 #: ../fish/guestfish.pod:632
20482 msgid ""
20483 "When using the C<chmod> command, you almost always want to specify an octal "
20484 "number for the mode, and you must prefix it with C<0> (unlike the Unix "
20485 "L<chmod(1)> program):"
20486 msgstr ""
20487
20488 #. type: verbatim
20489 #: ../fish/guestfish.pod:636
20490 #, no-wrap
20491 msgid ""
20492 " chmod 0777 /public  # OK\n"
20493 " chmod 777 /public   # WRONG! This is mode 777 decimal = 01411 octal.\n"
20494 "\n"
20495 msgstr ""
20496
20497 #. type: textblock
20498 #: ../fish/guestfish.pod:639
20499 msgid ""
20500 "Commands that return numbers usually print them in decimal, but some "
20501 "commands print numbers in other radices (eg. C<umask> prints the mode in "
20502 "octal, preceeded by C<0>)."
20503 msgstr ""
20504
20505 #. type: =head1
20506 #: ../fish/guestfish.pod:643
20507 msgid "WILDCARDS AND GLOBBING"
20508 msgstr ""
20509
20510 #. type: textblock
20511 #: ../fish/guestfish.pod:645
20512 msgid ""
20513 "Neither guestfish nor the underlying guestfs API performs wildcard expansion "
20514 "(globbing) by default.  So for example the following will not do what you "
20515 "expect:"
20516 msgstr ""
20517
20518 #. type: verbatim
20519 #: ../fish/guestfish.pod:649
20520 #, no-wrap
20521 msgid ""
20522 " rm-rf /home/*\n"
20523 "\n"
20524 msgstr ""
20525
20526 #. type: textblock
20527 #: ../fish/guestfish.pod:651
20528 msgid ""
20529 "Assuming you don't have a directory called literally C</home/*> then the "
20530 "above command will return an error."
20531 msgstr ""
20532
20533 #. type: textblock
20534 #: ../fish/guestfish.pod:654
20535 msgid "To perform wildcard expansion, use the C<glob> command."
20536 msgstr ""
20537
20538 #. type: verbatim
20539 #: ../fish/guestfish.pod:656
20540 #, no-wrap
20541 msgid ""
20542 " glob rm-rf /home/*\n"
20543 "\n"
20544 msgstr ""
20545
20546 #. type: textblock
20547 #: ../fish/guestfish.pod:658
20548 msgid ""
20549 "runs C<rm-rf> on each path that matches (ie. potentially running the command "
20550 "many times), equivalent to:"
20551 msgstr ""
20552
20553 #. type: verbatim
20554 #: ../fish/guestfish.pod:661
20555 #, no-wrap
20556 msgid ""
20557 " rm-rf /home/jim\n"
20558 " rm-rf /home/joe\n"
20559 " rm-rf /home/mary\n"
20560 "\n"
20561 msgstr ""
20562
20563 #. type: textblock
20564 #: ../fish/guestfish.pod:665
20565 msgid "C<glob> only works on simple guest paths and not on device names."
20566 msgstr ""
20567
20568 #. type: textblock
20569 #: ../fish/guestfish.pod:667
20570 msgid ""
20571 "If you have several parameters, each containing a wildcard, then glob will "
20572 "perform a Cartesian product."
20573 msgstr ""
20574
20575 #. type: =head1
20576 #: ../fish/guestfish.pod:670
20577 msgid "COMMENTS"
20578 msgstr ""
20579
20580 #. type: textblock
20581 #: ../fish/guestfish.pod:672
20582 msgid ""
20583 "Any line which starts with a I<#> character is treated as a comment and "
20584 "ignored.  The I<#> can optionally be preceeded by whitespace, but B<not> by "
20585 "a command.  For example:"
20586 msgstr ""
20587
20588 #. type: verbatim
20589 #: ../fish/guestfish.pod:676
20590 #, no-wrap
20591 msgid ""
20592 " # this is a comment\n"
20593 "         # this is a comment\n"
20594 " foo # NOT a comment\n"
20595 "\n"
20596 msgstr ""
20597
20598 #. type: textblock
20599 #: ../fish/guestfish.pod:680
20600 msgid "Blank lines are also ignored."
20601 msgstr ""
20602
20603 #. type: =head1
20604 #: ../fish/guestfish.pod:682
20605 msgid "RUNNING COMMANDS LOCALLY"
20606 msgstr ""
20607
20608 #. type: textblock
20609 #: ../fish/guestfish.pod:684
20610 msgid ""
20611 "Any line which starts with a I<!> character is treated as a command sent to "
20612 "the local shell (C</bin/sh> or whatever L<system(3)> uses).  For example:"
20613 msgstr ""
20614
20615 #. type: verbatim
20616 #: ../fish/guestfish.pod:688
20617 #, no-wrap
20618 msgid ""
20619 " !mkdir local\n"
20620 " tgz-out /remote local/remote-data.tar.gz\n"
20621 "\n"
20622 msgstr ""
20623
20624 #. type: textblock
20625 #: ../fish/guestfish.pod:691
20626 msgid ""
20627 "will create a directory C<local> on the host, and then export the contents "
20628 "of C</remote> on the mounted filesystem to C<local/remote-data.tar.gz>.  "
20629 "(See C<tgz-out>)."
20630 msgstr ""
20631
20632 #. type: textblock
20633 #: ../fish/guestfish.pod:695
20634 msgid ""
20635 "To change the local directory, use the C<lcd> command.  C<!cd> will have no "
20636 "effect, due to the way that subprocesses work in Unix."
20637 msgstr ""
20638
20639 #. type: =head2
20640 #: ../fish/guestfish.pod:698
20641 msgid "LOCAL COMMANDS WITH INLINE EXECUTION"
20642 msgstr ""
20643
20644 #. type: textblock
20645 #: ../fish/guestfish.pod:700
20646 msgid ""
20647 "If a line starts with I<E<lt>!> then the shell command is executed (as for "
20648 "I<!>), but subsequently any output (stdout) of the shell command is parsed "
20649 "and executed as guestfish commands."
20650 msgstr ""
20651
20652 #. type: textblock
20653 #: ../fish/guestfish.pod:704
20654 msgid ""
20655 "Thus you can use shell script to construct arbitrary guestfish commands "
20656 "which are then parsed by guestfish."
20657 msgstr ""
20658
20659 #. type: textblock
20660 #: ../fish/guestfish.pod:707
20661 msgid ""
20662 "For example it is tedious to create a sequence of files (eg. C</foo.1> "
20663 "through C</foo.100>) using guestfish commands alone.  However this is simple "
20664 "if we use a shell script to create the guestfish commands for us:"
20665 msgstr ""
20666
20667 #. type: verbatim
20668 #: ../fish/guestfish.pod:712
20669 #, no-wrap
20670 msgid ""
20671 " <! for n in `seq 1 100`; do echo write /foo.$n $n; done\n"
20672 "\n"
20673 msgstr ""
20674
20675 #. type: textblock
20676 #: ../fish/guestfish.pod:714
20677 msgid "or with names like C</foo.001>:"
20678 msgstr ""
20679
20680 #. type: verbatim
20681 #: ../fish/guestfish.pod:716
20682 #, no-wrap
20683 msgid ""
20684 " <! for n in `seq 1 100`; do printf \"write /foo.%03d %d\\n\" $n $n; done\n"
20685 "\n"
20686 msgstr ""
20687
20688 #. type: textblock
20689 #: ../fish/guestfish.pod:718
20690 msgid ""
20691 "When using guestfish interactively it can be helpful to just run the shell "
20692 "script first (ie. remove the initial C<E<lt>> character so it is just an "
20693 "ordinary I<!> local command), see what guestfish commands it would run, and "
20694 "when you are happy with those prepend the C<E<lt>> character to run the "
20695 "guestfish commands for real."
20696 msgstr ""
20697
20698 #. type: =head1
20699 #: ../fish/guestfish.pod:724
20700 msgid "PIPES"
20701 msgstr ""
20702
20703 #. type: textblock
20704 #: ../fish/guestfish.pod:726
20705 msgid ""
20706 "Use C<command E<lt>spaceE<gt> | command> to pipe the output of the first "
20707 "command (a guestfish command) to the second command (any host command).  For "
20708 "example:"
20709 msgstr ""
20710
20711 #. type: verbatim
20712 #: ../fish/guestfish.pod:730
20713 #, no-wrap
20714 msgid ""
20715 " cat /etc/passwd | awk -F: '$3 == 0 { print }'\n"
20716 "\n"
20717 msgstr ""
20718
20719 #. type: textblock
20720 #: ../fish/guestfish.pod:732
20721 msgid ""
20722 "(where C<cat> is the guestfish cat command, but C<awk> is the host awk "
20723 "program).  The above command would list all accounts in the guest filesystem "
20724 "which have UID 0, ie. root accounts including backdoors.  Other examples:"
20725 msgstr ""
20726
20727 #. type: verbatim
20728 #: ../fish/guestfish.pod:737
20729 #, no-wrap
20730 msgid ""
20731 " hexdump /bin/ls | head\n"
20732 " list-devices | tail -1\n"
20733 " tgz-out / - | tar ztf -\n"
20734 "\n"
20735 msgstr ""
20736
20737 #. type: textblock
20738 #: ../fish/guestfish.pod:741
20739 msgid ""
20740 "The space before the pipe symbol is required, any space after the pipe "
20741 "symbol is optional.  Everything after the pipe symbol is just passed "
20742 "straight to the host shell, so it can contain redirections, globs and "
20743 "anything else that makes sense on the host side."
20744 msgstr ""
20745
20746 #. type: textblock
20747 #: ../fish/guestfish.pod:746
20748 msgid ""
20749 "To use a literal argument which begins with a pipe symbol, you have to quote "
20750 "it, eg:"
20751 msgstr ""
20752
20753 #. type: verbatim
20754 #: ../fish/guestfish.pod:749
20755 #, no-wrap
20756 msgid ""
20757 " echo \"|\"\n"
20758 "\n"
20759 msgstr ""
20760
20761 #. type: =head1
20762 #: ../fish/guestfish.pod:751
20763 msgid "HOME DIRECTORIES"
20764 msgstr ""
20765
20766 #. type: textblock
20767 #: ../fish/guestfish.pod:753
20768 msgid ""
20769 "If a parameter starts with the character C<~> then the tilde may be expanded "
20770 "as a home directory path (either C<~> for the current user's home directory, "
20771 "or C<~user> for another user)."
20772 msgstr ""
20773
20774 #. type: textblock
20775 #: ../fish/guestfish.pod:757
20776 msgid ""
20777 "Note that home directory expansion happens for users known I<on the host>, "
20778 "not in the guest filesystem."
20779 msgstr ""
20780
20781 #. type: textblock
20782 #: ../fish/guestfish.pod:760
20783 msgid ""
20784 "To use a literal argument which begins with a tilde, you have to quote it, "
20785 "eg:"
20786 msgstr ""
20787
20788 #. type: verbatim
20789 #: ../fish/guestfish.pod:763
20790 #, no-wrap
20791 msgid ""
20792 " echo \"~\"\n"
20793 "\n"
20794 msgstr ""
20795
20796 #. type: textblock
20797 #: ../fish/guestfish.pod:767
20798 msgid ""
20799 "Libguestfs has some support for Linux guests encrypted according to the "
20800 "Linux Unified Key Setup (LUKS) standard, which includes nearly all whole "
20801 "disk encryption systems used by modern Linux guests.  Currently only LVM-on-"
20802 "LUKS is supported."
20803 msgstr ""
20804
20805 #. type: textblock
20806 #: ../fish/guestfish.pod:772
20807 msgid "Identify encrypted block devices and partitions using L</vfs-type>:"
20808 msgstr ""
20809
20810 #. type: verbatim
20811 #: ../fish/guestfish.pod:774
20812 #, no-wrap
20813 msgid ""
20814 " ><fs> vfs-type /dev/sda2\n"
20815 " crypto_LUKS\n"
20816 "\n"
20817 msgstr ""
20818
20819 #. type: textblock
20820 #: ../fish/guestfish.pod:777
20821 msgid ""
20822 "Then open those devices using L</luks-open>.  This creates a device-mapper "
20823 "device called C</dev/mapper/luksdev>."
20824 msgstr ""
20825
20826 #. type: verbatim
20827 #: ../fish/guestfish.pod:780
20828 #, no-wrap
20829 msgid ""
20830 " ><fs> luks-open /dev/sda2 luksdev\n"
20831 " Enter key or passphrase (\"key\"): <enter the passphrase>\n"
20832 "\n"
20833 msgstr ""
20834
20835 #. type: textblock
20836 #: ../fish/guestfish.pod:783
20837 msgid ""
20838 "Finally you have to tell LVM to scan for volume groups on the newly created "
20839 "mapper device:"
20840 msgstr ""
20841
20842 #. type: verbatim
20843 #: ../fish/guestfish.pod:786
20844 #, no-wrap
20845 msgid ""
20846 " vgscan\n"
20847 " vg-activate-all true\n"
20848 "\n"
20849 msgstr ""
20850
20851 #. type: textblock
20852 #: ../fish/guestfish.pod:789
20853 msgid "The logical volume(s) can now be mounted in the usual way."
20854 msgstr ""
20855
20856 #. type: textblock
20857 #: ../fish/guestfish.pod:791
20858 msgid ""
20859 "Before closing a LUKS device you must unmount any logical volumes on it and "
20860 "deactivate the volume groups by calling C<vg-activate false VG> on each "
20861 "one.  Then you can close the mapper device:"
20862 msgstr ""
20863
20864 #. type: verbatim
20865 #: ../fish/guestfish.pod:795
20866 #, no-wrap
20867 msgid ""
20868 " vg-activate false /dev/VG\n"
20869 " luks-close /dev/mapper/luksdev\n"
20870 "\n"
20871 msgstr ""
20872
20873 #. type: =head1
20874 #: ../fish/guestfish.pod:798 ../tools/virt-edit.pl:342
20875 msgid "WINDOWS PATHS"
20876 msgstr ""
20877
20878 #. type: textblock
20879 #: ../fish/guestfish.pod:800
20880 msgid ""
20881 "If a path is prefixed with C<win:> then you can use Windows-style drive "
20882 "letters and paths (with some limitations).  The following commands are "
20883 "equivalent:"
20884 msgstr ""
20885
20886 #. type: verbatim
20887 #: ../fish/guestfish.pod:804
20888 #, no-wrap
20889 msgid ""
20890 " file /WINDOWS/system32/config/system.LOG\n"
20891 "\n"
20892 msgstr ""
20893
20894 #. type: verbatim
20895 #: ../fish/guestfish.pod:806
20896 #, no-wrap
20897 msgid ""
20898 " file win:\\windows\\system32\\config\\system.log\n"
20899 "\n"
20900 msgstr ""
20901
20902 #. type: verbatim
20903 #: ../fish/guestfish.pod:808
20904 #, no-wrap
20905 msgid ""
20906 " file WIN:C:\\Windows\\SYSTEM32\\CONFIG\\SYSTEM.LOG\n"
20907 "\n"
20908 msgstr ""
20909
20910 #. type: textblock
20911 #: ../fish/guestfish.pod:810
20912 msgid ""
20913 "The parameter is rewritten \"behind the scenes\" by looking up the position "
20914 "where the drive is mounted, prepending that to the path, changing all "
20915 "backslash characters to forward slash, then resolving the result using L</"
20916 "case-sensitive-path>.  For example if the E: drive was mounted on C</e> then "
20917 "the parameter might be rewritten like this:"
20918 msgstr ""
20919
20920 #. type: verbatim
20921 #: ../fish/guestfish.pod:816
20922 #, no-wrap
20923 msgid ""
20924 " win:e:\\foo\\bar => /e/FOO/bar\n"
20925 "\n"
20926 msgstr ""
20927
20928 #. type: textblock
20929 #: ../fish/guestfish.pod:818
20930 msgid "This only works in argument positions that expect a path."
20931 msgstr ""
20932
20933 #. type: =head1
20934 #: ../fish/guestfish.pod:820
20935 msgid "UPLOADING AND DOWNLOADING FILES"
20936 msgstr ""
20937
20938 #. type: textblock
20939 #: ../fish/guestfish.pod:822
20940 msgid ""
20941 "For commands such as C<upload>, C<download>, C<tar-in>, C<tar-out> and "
20942 "others which upload from or download to a local file, you can use the "
20943 "special filename C<-> to mean \"from stdin\" or \"to stdout\".  For example:"
20944 msgstr ""
20945
20946 #. type: verbatim
20947 #: ../fish/guestfish.pod:826
20948 #, no-wrap
20949 msgid ""
20950 " upload - /foo\n"
20951 "\n"
20952 msgstr ""
20953
20954 #. type: textblock
20955 #: ../fish/guestfish.pod:828
20956 msgid ""
20957 "reads stdin and creates from that a file C</foo> in the disk image, and:"
20958 msgstr ""
20959
20960 #. type: verbatim
20961 #: ../fish/guestfish.pod:831
20962 #, no-wrap
20963 msgid ""
20964 " tar-out /etc - | tar tf -\n"
20965 "\n"
20966 msgstr ""
20967
20968 #. type: textblock
20969 #: ../fish/guestfish.pod:833
20970 msgid ""
20971 "writes the tarball to stdout and then pipes that into the external \"tar\" "
20972 "command (see L</PIPES>)."
20973 msgstr ""
20974
20975 #. type: textblock
20976 #: ../fish/guestfish.pod:836
20977 msgid ""
20978 "When using C<-> to read from stdin, the input is read up to the end of "
20979 "stdin.  You can also use a special \"heredoc\"-like syntax to read up to "
20980 "some arbitrary end marker:"
20981 msgstr ""
20982
20983 #. type: verbatim
20984 #: ../fish/guestfish.pod:840
20985 #, no-wrap
20986 msgid ""
20987 " upload -<<END /foo\n"
20988 " input line 1\n"
20989 " input line 2\n"
20990 " input line 3\n"
20991 " END\n"
20992 "\n"
20993 msgstr ""
20994
20995 #. type: textblock
20996 #: ../fish/guestfish.pod:846
20997 msgid ""
20998 "Any string of characters can be used instead of C<END>.  The end marker must "
20999 "appear on a line of its own, without any preceeding or following characters "
21000 "(not even spaces)."
21001 msgstr ""
21002
21003 #. type: textblock
21004 #: ../fish/guestfish.pod:850
21005 msgid ""
21006 "Note that the C<-E<lt>E<lt>> syntax only applies to parameters used to "
21007 "upload local files (so-called \"FileIn\" parameters in the generator)."
21008 msgstr ""
21009
21010 #. type: =head1
21011 #: ../fish/guestfish.pod:853
21012 msgid "EXIT ON ERROR BEHAVIOUR"
21013 msgstr ""
21014
21015 #. type: textblock
21016 #: ../fish/guestfish.pod:855
21017 msgid ""
21018 "By default, guestfish will ignore any errors when in interactive mode (ie. "
21019 "taking commands from a human over a tty), and will exit on the first error "
21020 "in non-interactive mode (scripts, commands given on the command line)."
21021 msgstr ""
21022
21023 #. type: textblock
21024 #: ../fish/guestfish.pod:860
21025 msgid ""
21026 "If you prefix a command with a I<-> character, then that command will not "
21027 "cause guestfish to exit, even if that (one) command returns an error."
21028 msgstr ""
21029
21030 #. type: =head1
21031 #: ../fish/guestfish.pod:864
21032 msgid "REMOTE CONTROL GUESTFISH OVER A SOCKET"
21033 msgstr ""
21034
21035 #. type: textblock
21036 #: ../fish/guestfish.pod:866
21037 msgid ""
21038 "Guestfish can be remote-controlled over a socket.  This is useful "
21039 "particularly in shell scripts where you want to make several different "
21040 "changes to a filesystem, but you don't want the overhead of starting up a "
21041 "guestfish process each time."
21042 msgstr ""
21043
21044 #. type: textblock
21045 #: ../fish/guestfish.pod:871
21046 msgid "Start a guestfish server process using:"
21047 msgstr ""
21048
21049 #. type: verbatim
21050 #: ../fish/guestfish.pod:873
21051 #, no-wrap
21052 msgid ""
21053 " eval \"`guestfish --listen`\"\n"
21054 "\n"
21055 msgstr ""
21056
21057 #. type: textblock
21058 #: ../fish/guestfish.pod:875
21059 msgid "and then send it commands by doing:"
21060 msgstr ""
21061
21062 #. type: verbatim
21063 #: ../fish/guestfish.pod:877
21064 #, no-wrap
21065 msgid ""
21066 " guestfish --remote cmd [...]\n"
21067 "\n"
21068 msgstr ""
21069
21070 #. type: textblock
21071 #: ../fish/guestfish.pod:879
21072 msgid "To cause the server to exit, send it the exit command:"
21073 msgstr ""
21074
21075 #. type: verbatim
21076 #: ../fish/guestfish.pod:881
21077 #, no-wrap
21078 msgid ""
21079 " guestfish --remote exit\n"
21080 "\n"
21081 msgstr ""
21082
21083 #. type: textblock
21084 #: ../fish/guestfish.pod:883
21085 msgid ""
21086 "Note that the server will normally exit if there is an error in a command.  "
21087 "You can change this in the usual way.  See section L</EXIT ON ERROR "
21088 "BEHAVIOUR>."
21089 msgstr ""
21090
21091 #. type: =head2
21092 #: ../fish/guestfish.pod:887
21093 msgid "CONTROLLING MULTIPLE GUESTFISH PROCESSES"
21094 msgstr ""
21095
21096 #. type: textblock
21097 #: ../fish/guestfish.pod:889
21098 msgid ""
21099 "The C<eval> statement sets the environment variable C<$GUESTFISH_PID>, which "
21100 "is how the I<--remote> option knows where to send the commands.  You can "
21101 "have several guestfish listener processes running using:"
21102 msgstr ""
21103
21104 #. type: verbatim
21105 #: ../fish/guestfish.pod:893
21106 #, no-wrap
21107 msgid ""
21108 " eval \"`guestfish --listen`\"\n"
21109 " pid1=$GUESTFISH_PID\n"
21110 " eval \"`guestfish --listen`\"\n"
21111 " pid2=$GUESTFISH_PID\n"
21112 " ...\n"
21113 " guestfish --remote=$pid1 cmd\n"
21114 " guestfish --remote=$pid2 cmd\n"
21115 "\n"
21116 msgstr ""
21117
21118 #. type: =head2
21119 #: ../fish/guestfish.pod:901
21120 msgid "REMOTE CONTROL AND CSH"
21121 msgstr ""
21122
21123 #. type: textblock
21124 #: ../fish/guestfish.pod:903
21125 msgid ""
21126 "When using csh-like shells (csh, tcsh etc) you have to add the I<--csh> "
21127 "option:"
21128 msgstr ""
21129
21130 #. type: verbatim
21131 #: ../fish/guestfish.pod:906
21132 #, no-wrap
21133 msgid ""
21134 " eval \"`guestfish --listen --csh`\"\n"
21135 "\n"
21136 msgstr ""
21137
21138 #. type: =head2
21139 #: ../fish/guestfish.pod:908
21140 msgid "REMOTE CONTROL DETAILS"
21141 msgstr ""
21142
21143 #. type: textblock
21144 #: ../fish/guestfish.pod:910
21145 msgid ""
21146 "Remote control happens over a Unix domain socket called C</tmp/.guestfish-"
21147 "$UID/socket-$PID>, where C<$UID> is the effective user ID of the process, "
21148 "and C<$PID> is the process ID of the server."
21149 msgstr ""
21150
21151 #. type: textblock
21152 #: ../fish/guestfish.pod:914
21153 msgid "Guestfish client and server versions must match exactly."
21154 msgstr ""
21155
21156 #. type: =head1
21157 #: ../fish/guestfish.pod:916
21158 msgid "PREPARED DISK IMAGES"
21159 msgstr ""
21160
21161 #. type: textblock
21162 #: ../fish/guestfish.pod:918
21163 msgid ""
21164 "Use the I<-N type> or I<--new type> parameter to select one of a set of "
21165 "preformatted disk images that guestfish can make for you to save typing.  "
21166 "This is particularly useful for testing purposes.  This option is used "
21167 "instead of the I<-a> option, and like I<-a> can appear multiple times (and "
21168 "can be mixed with I<-a>)."
21169 msgstr ""
21170
21171 #. type: textblock
21172 #: ../fish/guestfish.pod:924
21173 msgid ""
21174 "The new disk is called C<test1.img> for the first I<-N>, C<test2.img> for "
21175 "the second and so on.  Existing files in the current directory are "
21176 "I<overwritten>."
21177 msgstr ""
21178
21179 #. type: textblock
21180 #: ../fish/guestfish.pod:928
21181 msgid ""
21182 "The type briefly describes how the disk should be sized, partitioned, how "
21183 "filesystem(s) should be created, and how content should be added.  "
21184 "Optionally the type can be followed by extra parameters, separated by C<:> "
21185 "(colon) characters.  For example, I<-N fs> creates a default 100MB, sparsely-"
21186 "allocated disk, containing a single partition, with the partition formatted "
21187 "as ext2.  I<-N fs:ext4:1G> is the same, but for an ext4 filesystem on a 1GB "
21188 "disk instead."
21189 msgstr ""
21190
21191 #. type: textblock
21192 #: ../fish/guestfish.pod:936
21193 msgid "To list the available types and any extra parameters they take, run:"
21194 msgstr ""
21195
21196 #. type: textblock
21197 #: ../fish/guestfish.pod:940
21198 msgid ""
21199 "Note that the prepared filesystem is not mounted.  You would usually have to "
21200 "use the C<mount /dev/sda1 /> command or add the I<-m /dev/sda1> option."
21201 msgstr ""
21202
21203 #. type: textblock
21204 #: ../fish/guestfish.pod:944
21205 msgid ""
21206 "If any I<-N> or I<--new> options are given, the guest is automatically "
21207 "launched."
21208 msgstr ""
21209
21210 #. type: textblock
21211 #: ../fish/guestfish.pod:949
21212 msgid "Create a 100MB disk with an ext4-formatted partition:"
21213 msgstr ""
21214
21215 #. type: verbatim
21216 #: ../fish/guestfish.pod:951
21217 #, no-wrap
21218 msgid ""
21219 " guestfish -N fs:ext4\n"
21220 "\n"
21221 msgstr ""
21222
21223 #. type: textblock
21224 #: ../fish/guestfish.pod:953
21225 msgid "Create a 32MB disk with a VFAT-formatted partition, and mount it:"
21226 msgstr ""
21227
21228 #. type: verbatim
21229 #: ../fish/guestfish.pod:955
21230 #, no-wrap
21231 msgid ""
21232 " guestfish -N fs:vfat:32M -m /dev/sda1\n"
21233 "\n"
21234 msgstr ""
21235
21236 #. type: textblock
21237 #: ../fish/guestfish.pod:957
21238 msgid "Create a blank 200MB disk:"
21239 msgstr ""
21240
21241 #. type: verbatim
21242 #: ../fish/guestfish.pod:959
21243 #, no-wrap
21244 msgid ""
21245 " guestfish -N disk:200M\n"
21246 "\n"
21247 msgstr ""
21248
21249 #. type: =head1
21250 #: ../fish/guestfish.pod:961
21251 msgid "PROGRESS BARS"
21252 msgstr ""
21253
21254 #. type: textblock
21255 #: ../fish/guestfish.pod:963
21256 msgid ""
21257 "Some (not all) long-running commands send progress notification messages as "
21258 "they are running.  Guestfish turns these messages into progress bars."
21259 msgstr ""
21260
21261 #. type: textblock
21262 #: ../fish/guestfish.pod:967
21263 msgid ""
21264 "When a command that supports progress bars takes longer than two seconds to "
21265 "run, and if progress bars are enabled, then you will see one appearing below "
21266 "the command:"
21267 msgstr ""
21268
21269 #. type: verbatim
21270 #: ../fish/guestfish.pod:971
21271 #, no-wrap
21272 msgid ""
21273 " ><fs> copy-size /large-file /another-file 2048M\n"
21274 " / 10% [#####-----------------------------------------] 00:30\n"
21275 "\n"
21276 msgstr ""
21277
21278 #. type: textblock
21279 #: ../fish/guestfish.pod:974
21280 msgid ""
21281 "The spinner on the left hand side moves round once for every progress "
21282 "notification received from the backend.  This is a (reasonably) golden "
21283 "assurance that the command is \"doing something\" even if the progress bar "
21284 "is not moving, because the command is able to send the progress "
21285 "notifications.  When the bar reaches 100% and the command finishes, the "
21286 "spinner disappears."
21287 msgstr ""
21288
21289 #. type: textblock
21290 #: ../fish/guestfish.pod:981
21291 msgid ""
21292 "Progress bars are enabled by default when guestfish is used interactively.  "
21293 "You can enable them even for non-interactive modes using I<--progress-bars>, "
21294 "and you can disable them completely using I<--no-progress-bars>."
21295 msgstr ""
21296
21297 #. type: =head1
21298 #: ../fish/guestfish.pod:986
21299 msgid "GUESTFISH COMMANDS"
21300 msgstr ""
21301
21302 #. type: textblock
21303 #: ../fish/guestfish.pod:988
21304 msgid ""
21305 "The commands in this section are guestfish convenience commands, in other "
21306 "words, they are not part of the L<guestfs(3)> API."
21307 msgstr ""
21308
21309 #. type: =head2
21310 #: ../fish/guestfish.pod:991
21311 msgid "help"
21312 msgstr ""
21313
21314 #. type: verbatim
21315 #: ../fish/guestfish.pod:993
21316 #, no-wrap
21317 msgid ""
21318 " help\n"
21319 " help cmd\n"
21320 "\n"
21321 msgstr ""
21322
21323 #. type: textblock
21324 #: ../fish/guestfish.pod:996
21325 msgid "Without any parameter, this provides general help."
21326 msgstr ""
21327
21328 #. type: textblock
21329 #: ../fish/guestfish.pod:998
21330 msgid "With a C<cmd> parameter, this displays detailed help for that command."
21331 msgstr ""
21332
21333 #. type: =head2
21334 #: ../fish/guestfish.pod:1000
21335 msgid "quit | exit"
21336 msgstr ""
21337
21338 #. type: textblock
21339 #: ../fish/guestfish.pod:1002
21340 msgid "This exits guestfish.  You can also use C<^D> key."
21341 msgstr ""
21342
21343 #. type: textblock
21344 #: ../fish/guestfish.pod:1004
21345 msgid "@FISH_COMMANDS@"
21346 msgstr ""
21347
21348 #. type: =head1
21349 #: ../fish/guestfish.pod:1006
21350 msgid "COMMANDS"
21351 msgstr ""
21352
21353 #. type: =head1
21354 #: ../fish/guestfish.pod:1010 ../test-tool/libguestfs-test-tool.pod:77
21355 msgid "EXIT CODE"
21356 msgstr ""
21357
21358 #. type: textblock
21359 #: ../fish/guestfish.pod:1012
21360 msgid ""
21361 "guestfish returns 0 if the commands completed without error, or 1 if there "
21362 "was an error."
21363 msgstr ""
21364
21365 #. type: =item
21366 #: ../fish/guestfish.pod:1019
21367 msgid "EDITOR"
21368 msgstr ""
21369
21370 #. type: textblock
21371 #: ../fish/guestfish.pod:1021
21372 msgid ""
21373 "The C<edit> command uses C<$EDITOR> as the editor.  If not set, it uses "
21374 "C<vi>."
21375 msgstr ""
21376
21377 #. type: =item
21378 #: ../fish/guestfish.pod:1024
21379 msgid "GUESTFISH_PID"
21380 msgstr ""
21381
21382 #. type: textblock
21383 #: ../fish/guestfish.pod:1026
21384 msgid ""
21385 "Used with the I<--remote> option to specify the remote guestfish process to "
21386 "control.  See section L</REMOTE CONTROL GUESTFISH OVER A SOCKET>."
21387 msgstr ""
21388
21389 #. type: =item
21390 #: ../fish/guestfish.pod:1030
21391 msgid "HEXEDITOR"
21392 msgstr ""
21393
21394 #. type: textblock
21395 #: ../fish/guestfish.pod:1032
21396 msgid ""
21397 "The L</hexedit> command uses C<$HEXEDITOR> as the external hex editor.  If "
21398 "not specified, the external L<hexedit(1)> program is used."
21399 msgstr ""
21400
21401 #. type: =item
21402 #: ../fish/guestfish.pod:1036
21403 msgid "HOME"
21404 msgstr ""
21405
21406 #. type: textblock
21407 #: ../fish/guestfish.pod:1038
21408 msgid ""
21409 "If compiled with GNU readline support, various files in the home directory "
21410 "can be used.  See L</FILES>."
21411 msgstr ""
21412
21413 #. type: textblock
21414 #: ../fish/guestfish.pod:1047
21415 msgid ""
21416 "Set C<LIBGUESTFS_DEBUG=1> to enable verbose messages.  This has the same "
21417 "effect as using the B<-v> option."
21418 msgstr ""
21419
21420 #. type: textblock
21421 #: ../fish/guestfish.pod:1059
21422 msgid ""
21423 "Set the path that guestfish uses to search for kernel and initrd.img.  See "
21424 "the discussion of paths in L<guestfs(3)>."
21425 msgstr ""
21426
21427 #. type: textblock
21428 #: ../fish/guestfish.pod:1070
21429 msgid "Set C<LIBGUESTFS_TRACE=1> to enable command traces."
21430 msgstr ""
21431
21432 #. type: =item
21433 #: ../fish/guestfish.pod:1072
21434 msgid "PAGER"
21435 msgstr ""
21436
21437 #. type: textblock
21438 #: ../fish/guestfish.pod:1074
21439 msgid ""
21440 "The C<more> command uses C<$PAGER> as the pager.  If not set, it uses "
21441 "C<more>."
21442 msgstr ""
21443
21444 #. type: =head1
21445 #: ../fish/guestfish.pod:1090 ../fuse/guestmount.pod:252
21446 msgid "FILES"
21447 msgstr ""
21448
21449 #. type: =item
21450 #: ../fish/guestfish.pod:1094 ../fuse/guestmount.pod:256
21451 msgid "$HOME/.libguestfs-tools.rc"
21452 msgstr ""
21453
21454 #. type: =item
21455 #: ../fish/guestfish.pod:1096 ../fuse/guestmount.pod:258
21456 msgid "/etc/libguestfs-tools.conf"
21457 msgstr ""
21458
21459 #. type: textblock
21460 #: ../fish/guestfish.pod:1098 ../fuse/guestmount.pod:260
21461 msgid ""
21462 "This configuration file controls the default read-only or read-write mode "
21463 "(I<--ro> or I<--rw>)."
21464 msgstr ""
21465
21466 #. type: textblock
21467 #: ../fish/guestfish.pod:1101
21468 msgid "See L</OPENING DISKS FOR READ AND WRITE>."
21469 msgstr ""
21470
21471 #. type: =item
21472 #: ../fish/guestfish.pod:1103
21473 msgid "$HOME/.guestfish"
21474 msgstr ""
21475
21476 #. type: textblock
21477 #: ../fish/guestfish.pod:1105
21478 msgid ""
21479 "If compiled with GNU readline support, then the command history is saved in "
21480 "this file."
21481 msgstr ""
21482
21483 #. type: =item
21484 #: ../fish/guestfish.pod:1108
21485 msgid "$HOME/.inputrc"
21486 msgstr ""
21487
21488 #. type: =item
21489 #: ../fish/guestfish.pod:1110
21490 msgid "/etc/inputrc"
21491 msgstr ""
21492
21493 #. type: textblock
21494 #: ../fish/guestfish.pod:1112
21495 msgid ""
21496 "If compiled with GNU readline support, then these files can be used to "
21497 "configure readline.  For further information, please see L<readline(3)/"
21498 "INITIALIZATION FILE>."
21499 msgstr ""
21500
21501 #. type: textblock
21502 #: ../fish/guestfish.pod:1116
21503 msgid "To write rules which only apply to guestfish, use:"
21504 msgstr ""
21505
21506 #. type: verbatim
21507 #: ../fish/guestfish.pod:1118
21508 #, no-wrap
21509 msgid ""
21510 " $if guestfish\n"
21511 " ...\n"
21512 " $endif\n"
21513 "\n"
21514 msgstr ""
21515
21516 #. type: textblock
21517 #: ../fish/guestfish.pod:1122
21518 msgid ""
21519 "Variables that you can set in inputrc that change the behaviour of guestfish "
21520 "in useful ways include:"
21521 msgstr ""
21522
21523 #. type: =item
21524 #: ../fish/guestfish.pod:1127
21525 msgid "completion-ignore-case (default: on)"
21526 msgstr ""
21527
21528 #. type: textblock
21529 #: ../fish/guestfish.pod:1129
21530 msgid ""
21531 "By default, guestfish will ignore case when tab-completing paths on the "
21532 "disk.  Use:"
21533 msgstr ""
21534
21535 #. type: verbatim
21536 #: ../fish/guestfish.pod:1132
21537 #, no-wrap
21538 msgid ""
21539 " set completion-ignore-case off\n"
21540 "\n"
21541 msgstr ""
21542
21543 #. type: textblock
21544 #: ../fish/guestfish.pod:1134
21545 msgid "to make guestfish case sensitive."
21546 msgstr ""
21547
21548 #. type: =item
21549 #: ../fish/guestfish.pod:1138
21550 msgid "test1.img"
21551 msgstr ""
21552
21553 #. type: =item
21554 #: ../fish/guestfish.pod:1140
21555 msgid "test2.img (etc)"
21556 msgstr ""
21557
21558 #. type: textblock
21559 #: ../fish/guestfish.pod:1142
21560 msgid ""
21561 "When using the C<-N> or C<--new> option, the prepared disk or filesystem "
21562 "will be created in the file C<test1.img> in the current directory.  The "
21563 "second use of C<-N> will use C<test2.img> and so on.  Any existing file with "
21564 "the same name will be overwritten."
21565 msgstr ""
21566
21567 #. type: textblock
21568 #: ../fish/guestfish.pod:1151
21569 msgid ""
21570 "L<guestfs(3)>, L<http://libguestfs.org/>, L<virt-cat(1)>, L<virt-copy-in(1)"
21571 ">, L<virt-copy-out(1)>, L<virt-df(1)>, L<virt-edit(1)>, L<virt-filesystems(1)"
21572 ">, L<virt-inspector(1)>, L<virt-list-filesystems(1)>, L<virt-list-partitions"
21573 "(1)>, L<virt-ls(1)>, L<virt-make-fs(1)>, L<virt-rescue(1)>, L<virt-resize(1)"
21574 ">, L<virt-tar(1)>, L<virt-tar-in(1)>, L<virt-tar-out(1)>, L<virt-win-reg(1)"
21575 ">, L<hexedit(1)>."
21576 msgstr ""
21577
21578 #. type: textblock
21579 #: ../fish/guestfish.pod:1181 ../test-tool/libguestfs-test-tool.pod:102
21580 #: ../fuse/guestmount.pod:287 ../tools/virt-edit.pl:518
21581 #: ../tools/virt-win-reg.pl:606 ../tools/virt-list-filesystems.pl:210
21582 #: ../tools/virt-tar.pl:309 ../tools/virt-make-fs.pl:572
21583 #: ../tools/virt-list-partitions.pl:277
21584 msgid ""
21585 "This program is free software; you can redistribute it and/or modify it "
21586 "under the terms of the GNU General Public License as published by the Free "
21587 "Software Foundation; either version 2 of the License, or (at your option) "
21588 "any later version."
21589 msgstr ""
21590
21591 #. type: textblock
21592 #: ../fish/guestfish.pod:1186 ../test-tool/libguestfs-test-tool.pod:107
21593 #: ../fuse/guestmount.pod:292 ../tools/virt-edit.pl:523
21594 #: ../tools/virt-win-reg.pl:611 ../tools/virt-list-filesystems.pl:215
21595 #: ../tools/virt-tar.pl:314 ../tools/virt-make-fs.pl:577
21596 #: ../tools/virt-list-partitions.pl:282
21597 msgid ""
21598 "This program is distributed in the hope that it will be useful, but WITHOUT "
21599 "ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or "
21600 "FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for "
21601 "more details."
21602 msgstr ""
21603
21604 #. type: textblock
21605 #: ../fish/guestfish.pod:1191 ../test-tool/libguestfs-test-tool.pod:112
21606 #: ../fuse/guestmount.pod:297 ../tools/virt-edit.pl:528
21607 #: ../tools/virt-win-reg.pl:616 ../tools/virt-list-filesystems.pl:220
21608 #: ../tools/virt-tar.pl:319 ../tools/virt-make-fs.pl:582
21609 #: ../tools/virt-list-partitions.pl:287
21610 msgid ""
21611 "You should have received a copy of the GNU General Public License along with "
21612 "this program; if not, write to the Free Software Foundation, Inc., 675 Mass "
21613 "Ave, Cambridge, MA 02139, USA."
21614 msgstr ""
21615
21616 #. type: =head2
21617 #: ../fish/guestfish-actions.pod:1
21618 msgid "add-cdrom"
21619 msgstr ""
21620
21621 #. type: verbatim
21622 #: ../fish/guestfish-actions.pod:3
21623 #, no-wrap
21624 msgid ""
21625 " add-cdrom filename\n"
21626 "\n"
21627 msgstr ""
21628
21629 #. type: textblock
21630 #: ../fish/guestfish-actions.pod:15
21631 msgid ""
21632 "This call checks for the existence of C<filename>.  This stops you from "
21633 "specifying other types of drive which are supported by qemu such as C<nbd:> "
21634 "and C<http:> URLs.  To specify those, use the general L</config> call "
21635 "instead."
21636 msgstr ""
21637
21638 #. type: textblock
21639 #: ../fish/guestfish-actions.pod:22
21640 msgid ""
21641 "If you just want to add an ISO file (often you use this as an efficient way "
21642 "to transfer large files into the guest), then you should probably use L</add-"
21643 "drive-ro> instead."
21644 msgstr ""
21645
21646 #. type: =head2
21647 #: ../fish/guestfish-actions.pod:35
21648 msgid "add-domain"
21649 msgstr ""
21650
21651 #. type: =head2
21652 #: ../fish/guestfish-actions.pod:37
21653 msgid "domain"
21654 msgstr ""
21655
21656 #. type: verbatim
21657 #: ../fish/guestfish-actions.pod:39
21658 #, no-wrap
21659 msgid ""
21660 " add-domain dom [libvirturi:..] [readonly:..] [iface:..] [live:..]\n"
21661 "\n"
21662 msgstr ""
21663
21664 #. type: textblock
21665 #: ../fish/guestfish-actions.pod:41
21666 msgid ""
21667 "This function adds the disk(s) attached to the named libvirt domain C<dom>.  "
21668 "It works by connecting to libvirt, requesting the domain and domain XML from "
21669 "libvirt, parsing it for disks, and calling L</add-drive-opts> on each one."
21670 msgstr ""
21671
21672 #. type: textblock
21673 #: ../fish/guestfish-actions.pod:71
21674 msgid ""
21675 "The other optional parameters are passed directly through to L</add-drive-"
21676 "opts>."
21677 msgstr ""
21678
21679 #. type: textblock
21680 #: ../fish/guestfish-actions.pod:74 ../fish/guestfish-actions.pod:138
21681 #: ../fish/guestfish-actions.pod:3039
21682 msgid ""
21683 "This command has one or more optional arguments.  See L</OPTIONAL ARGUMENTS>."
21684 msgstr ""
21685
21686 #. type: =head2
21687 #: ../fish/guestfish-actions.pod:76
21688 msgid "add-drive"
21689 msgstr ""
21690
21691 #. type: verbatim
21692 #: ../fish/guestfish-actions.pod:78
21693 #, no-wrap
21694 msgid ""
21695 " add-drive filename\n"
21696 "\n"
21697 msgstr ""
21698
21699 #. type: textblock
21700 #: ../fish/guestfish-actions.pod:80
21701 msgid ""
21702 "This function is the equivalent of calling L</add-drive-opts> with no "
21703 "optional parameters, so the disk is added writable, with the format being "
21704 "detected automatically."
21705 msgstr ""
21706
21707 #. type: textblock
21708 #: ../fish/guestfish-actions.pod:84
21709 msgid ""
21710 "Automatic detection of the format opens you up to a potential security hole "
21711 "when dealing with untrusted raw-format images.  See CVE-2010-3851 and "
21712 "RHBZ#642934.  Specifying the format closes this security hole.  Therefore "
21713 "you should think about replacing calls to this function with calls to L</add-"
21714 "drive-opts>, and specifying the format."
21715 msgstr ""
21716
21717 #. type: =head2
21718 #: ../fish/guestfish-actions.pod:91
21719 msgid "add-drive-opts"
21720 msgstr ""
21721
21722 #. type: =head2
21723 #: ../fish/guestfish-actions.pod:93
21724 msgid "add"
21725 msgstr ""
21726
21727 #. type: verbatim
21728 #: ../fish/guestfish-actions.pod:95
21729 #, no-wrap
21730 msgid ""
21731 " add-drive-opts filename [readonly:..] [format:..] [iface:..]\n"
21732 "\n"
21733 msgstr ""
21734
21735 #. type: textblock
21736 #: ../fish/guestfish-actions.pod:122
21737 msgid ""
21738 "This forces the image format.  If you omit this (or use L</add-drive> or L</"
21739 "add-drive-ro>) then the format is automatically detected.  Possible formats "
21740 "include C<raw> and C<qcow2>."
21741 msgstr ""
21742
21743 #. type: textblock
21744 #: ../fish/guestfish-actions.pod:133
21745 msgid ""
21746 "This rarely-used option lets you emulate the behaviour of the deprecated L</"
21747 "add-drive-with-if> call (q.v.)"
21748 msgstr ""
21749
21750 #. type: =head2
21751 #: ../fish/guestfish-actions.pod:140
21752 msgid "add-drive-ro"
21753 msgstr ""
21754
21755 #. type: =head2
21756 #: ../fish/guestfish-actions.pod:142
21757 msgid "add-ro"
21758 msgstr ""
21759
21760 #. type: verbatim
21761 #: ../fish/guestfish-actions.pod:144
21762 #, no-wrap
21763 msgid ""
21764 " add-drive-ro filename\n"
21765 "\n"
21766 msgstr ""
21767
21768 #. type: textblock
21769 #: ../fish/guestfish-actions.pod:146
21770 msgid ""
21771 "This function is the equivalent of calling L</add-drive-opts> with the "
21772 "optional parameter C<GUESTFS_ADD_DRIVE_OPTS_READONLY> set to 1, so the disk "
21773 "is added read-only, with the format being detected automatically."
21774 msgstr ""
21775
21776 #. type: =head2
21777 #: ../fish/guestfish-actions.pod:151
21778 msgid "add-drive-ro-with-if"
21779 msgstr ""
21780
21781 #. type: verbatim
21782 #: ../fish/guestfish-actions.pod:153
21783 #, no-wrap
21784 msgid ""
21785 " add-drive-ro-with-if filename iface\n"
21786 "\n"
21787 msgstr ""
21788
21789 #. type: textblock
21790 #: ../fish/guestfish-actions.pod:155
21791 msgid ""
21792 "This is the same as L</add-drive-ro> but it allows you to specify the QEMU "
21793 "interface emulation to use at run time."
21794 msgstr ""
21795
21796 #. type: =head2
21797 #: ../fish/guestfish-actions.pod:165
21798 msgid "add-drive-with-if"
21799 msgstr ""
21800
21801 #. type: verbatim
21802 #: ../fish/guestfish-actions.pod:167
21803 #, no-wrap
21804 msgid ""
21805 " add-drive-with-if filename iface\n"
21806 "\n"
21807 msgstr ""
21808
21809 #. type: textblock
21810 #: ../fish/guestfish-actions.pod:169
21811 msgid ""
21812 "This is the same as L</add-drive> but it allows you to specify the QEMU "
21813 "interface emulation to use at run time."
21814 msgstr ""
21815
21816 #. type: =head2
21817 #: ../fish/guestfish-actions.pod:179
21818 msgid "aug-clear"
21819 msgstr ""
21820
21821 #. type: verbatim
21822 #: ../fish/guestfish-actions.pod:181
21823 #, no-wrap
21824 msgid ""
21825 " aug-clear augpath\n"
21826 "\n"
21827 msgstr ""
21828
21829 #. type: =head2
21830 #: ../fish/guestfish-actions.pod:186
21831 msgid "aug-close"
21832 msgstr ""
21833
21834 #. type: verbatim
21835 #: ../fish/guestfish-actions.pod:188
21836 #, no-wrap
21837 msgid ""
21838 " aug-close\n"
21839 "\n"
21840 msgstr ""
21841
21842 #. type: textblock
21843 #: ../fish/guestfish-actions.pod:190
21844 msgid ""
21845 "Close the current Augeas handle and free up any resources used by it.  After "
21846 "calling this, you have to call L</aug-init> again before you can use any "
21847 "other Augeas functions."
21848 msgstr ""
21849
21850 #. type: =head2
21851 #: ../fish/guestfish-actions.pod:195
21852 msgid "aug-defnode"
21853 msgstr ""
21854
21855 #. type: verbatim
21856 #: ../fish/guestfish-actions.pod:197
21857 #, no-wrap
21858 msgid ""
21859 " aug-defnode name expr val\n"
21860 "\n"
21861 msgstr ""
21862
21863 #. type: textblock
21864 #: ../fish/guestfish-actions.pod:202
21865 msgid ""
21866 "If C<expr> evaluates to an empty nodeset, a node is created, equivalent to "
21867 "calling L</aug-set> C<expr>, C<value>.  C<name> will be the nodeset "
21868 "containing that single node."
21869 msgstr ""
21870
21871 #. type: =head2
21872 #: ../fish/guestfish-actions.pod:210
21873 msgid "aug-defvar"
21874 msgstr ""
21875
21876 #. type: verbatim
21877 #: ../fish/guestfish-actions.pod:212
21878 #, no-wrap
21879 msgid ""
21880 " aug-defvar name expr\n"
21881 "\n"
21882 msgstr ""
21883
21884 #. type: =head2
21885 #: ../fish/guestfish-actions.pod:221
21886 msgid "aug-get"
21887 msgstr ""
21888
21889 #. type: verbatim
21890 #: ../fish/guestfish-actions.pod:223
21891 #, no-wrap
21892 msgid ""
21893 " aug-get augpath\n"
21894 "\n"
21895 msgstr ""
21896
21897 #. type: =head2
21898 #: ../fish/guestfish-actions.pod:228
21899 msgid "aug-init"
21900 msgstr ""
21901
21902 #. type: verbatim
21903 #: ../fish/guestfish-actions.pod:230
21904 #, no-wrap
21905 msgid ""
21906 " aug-init root flags\n"
21907 "\n"
21908 msgstr ""
21909
21910 #. type: textblock
21911 #: ../fish/guestfish-actions.pod:236
21912 msgid "You must call this before using any other L</aug-*> commands."
21913 msgstr ""
21914
21915 #. type: textblock
21916 #: ../fish/guestfish-actions.pod:271
21917 msgid "Do not load the tree in L</aug-init>."
21918 msgstr ""
21919
21920 #. type: textblock
21921 #: ../fish/guestfish-actions.pod:275
21922 msgid "To close the handle, you can call L</aug-close>."
21923 msgstr ""
21924
21925 #. type: =head2
21926 #: ../fish/guestfish-actions.pod:279
21927 msgid "aug-insert"
21928 msgstr ""
21929
21930 #. type: verbatim
21931 #: ../fish/guestfish-actions.pod:281
21932 #, no-wrap
21933 msgid ""
21934 " aug-insert augpath label true|false\n"
21935 "\n"
21936 msgstr ""
21937
21938 #. type: =head2
21939 #: ../fish/guestfish-actions.pod:291
21940 msgid "aug-load"
21941 msgstr ""
21942
21943 #. type: verbatim
21944 #: ../fish/guestfish-actions.pod:293
21945 #, no-wrap
21946 msgid ""
21947 " aug-load\n"
21948 "\n"
21949 msgstr ""
21950
21951 #. type: =head2
21952 #: ../fish/guestfish-actions.pod:300
21953 msgid "aug-ls"
21954 msgstr ""
21955
21956 #. type: verbatim
21957 #: ../fish/guestfish-actions.pod:302
21958 #, no-wrap
21959 msgid ""
21960 " aug-ls augpath\n"
21961 "\n"
21962 msgstr ""
21963
21964 #. type: textblock
21965 #: ../fish/guestfish-actions.pod:304
21966 msgid ""
21967 "This is just a shortcut for listing L</aug-match> C<path/*> and sorting the "
21968 "resulting nodes into alphabetical order."
21969 msgstr ""
21970
21971 #. type: =head2
21972 #: ../fish/guestfish-actions.pod:307
21973 msgid "aug-match"
21974 msgstr ""
21975
21976 #. type: verbatim
21977 #: ../fish/guestfish-actions.pod:309
21978 #, no-wrap
21979 msgid ""
21980 " aug-match augpath\n"
21981 "\n"
21982 msgstr ""
21983
21984 #. type: =head2
21985 #: ../fish/guestfish-actions.pod:315
21986 msgid "aug-mv"
21987 msgstr ""
21988
21989 #. type: verbatim
21990 #: ../fish/guestfish-actions.pod:317
21991 #, no-wrap
21992 msgid ""
21993 " aug-mv src dest\n"
21994 "\n"
21995 msgstr ""
21996
21997 #. type: =head2
21998 #: ../fish/guestfish-actions.pod:322
21999 msgid "aug-rm"
22000 msgstr ""
22001
22002 #. type: verbatim
22003 #: ../fish/guestfish-actions.pod:324
22004 #, no-wrap
22005 msgid ""
22006 " aug-rm augpath\n"
22007 "\n"
22008 msgstr ""
22009
22010 #. type: =head2
22011 #: ../fish/guestfish-actions.pod:330
22012 msgid "aug-save"
22013 msgstr ""
22014
22015 #. type: verbatim
22016 #: ../fish/guestfish-actions.pod:332
22017 #, no-wrap
22018 msgid ""
22019 " aug-save\n"
22020 "\n"
22021 msgstr ""
22022
22023 #. type: textblock
22024 #: ../fish/guestfish-actions.pod:336
22025 msgid ""
22026 "The flags which were passed to L</aug-init> affect exactly how files are "
22027 "saved."
22028 msgstr ""
22029
22030 #. type: =head2
22031 #: ../fish/guestfish-actions.pod:339
22032 msgid "aug-set"
22033 msgstr ""
22034
22035 #. type: verbatim
22036 #: ../fish/guestfish-actions.pod:341
22037 #, no-wrap
22038 msgid ""
22039 " aug-set augpath val\n"
22040 "\n"
22041 msgstr ""
22042
22043 #. type: textblock
22044 #: ../fish/guestfish-actions.pod:345
22045 msgid ""
22046 "In the Augeas API, it is possible to clear a node by setting the value to "
22047 "NULL.  Due to an oversight in the libguestfs API you cannot do that with "
22048 "this call.  Instead you must use the L</aug-clear> call."
22049 msgstr ""
22050
22051 #. type: =head2
22052 #: ../fish/guestfish-actions.pod:350
22053 msgid "available"
22054 msgstr ""
22055
22056 #. type: verbatim
22057 #: ../fish/guestfish-actions.pod:352
22058 #, no-wrap
22059 msgid ""
22060 " available 'groups ...'\n"
22061 "\n"
22062 msgstr ""
22063
22064 #. type: textblock
22065 #: ../fish/guestfish-actions.pod:358
22066 msgid ""
22067 "The libguestfs groups, and the functions that those groups correspond to, "
22068 "are listed in L<guestfs(3)/AVAILABILITY>.  You can also fetch this list at "
22069 "runtime by calling L</available-all-groups>."
22070 msgstr ""
22071
22072 #. type: textblock
22073 #: ../fish/guestfish-actions.pod:382
22074 msgid "You must call L</launch> before calling this function."
22075 msgstr ""
22076
22077 #. type: textblock
22078 #: ../fish/guestfish-actions.pod:404
22079 msgid ""
22080 "This call was added in version C<1.0.80>.  In previous versions of "
22081 "libguestfs all you could do would be to speculatively execute a command to "
22082 "find out if the daemon implemented it.  See also L</version>."
22083 msgstr ""
22084
22085 #. type: =head2
22086 #: ../fish/guestfish-actions.pod:411
22087 msgid "available-all-groups"
22088 msgstr ""
22089
22090 #. type: verbatim
22091 #: ../fish/guestfish-actions.pod:413
22092 #, no-wrap
22093 msgid ""
22094 " available-all-groups\n"
22095 "\n"
22096 msgstr ""
22097
22098 #. type: textblock
22099 #: ../fish/guestfish-actions.pod:415
22100 msgid ""
22101 "This command returns a list of all optional groups that this daemon knows "
22102 "about.  Note this returns both supported and unsupported groups.  To find "
22103 "out which ones the daemon can actually support you have to call L</"
22104 "available> on each member of the returned list."
22105 msgstr ""
22106
22107 #. type: textblock
22108 #: ../fish/guestfish-actions.pod:421
22109 msgid "See also L</available> and L<guestfs(3)/AVAILABILITY>."
22110 msgstr ""
22111
22112 #. type: =head2
22113 #: ../fish/guestfish-actions.pod:423
22114 msgid "base64-in"
22115 msgstr ""
22116
22117 #. type: verbatim
22118 #: ../fish/guestfish-actions.pod:425
22119 #, no-wrap
22120 msgid ""
22121 " base64-in (base64file|-) filename\n"
22122 "\n"
22123 msgstr ""
22124
22125 #. type: textblock
22126 #: ../fish/guestfish-actions.pod:430 ../fish/guestfish-actions.pod:439
22127 #: ../fish/guestfish-actions.pod:663 ../fish/guestfish-actions.pod:832
22128 #: ../fish/guestfish-actions.pod:851 ../fish/guestfish-actions.pod:1228
22129 #: ../fish/guestfish-actions.pod:4437 ../fish/guestfish-actions.pod:4449
22130 #: ../fish/guestfish-actions.pod:4460 ../fish/guestfish-actions.pod:4471
22131 #: ../fish/guestfish-actions.pod:4523 ../fish/guestfish-actions.pod:4532
22132 #: ../fish/guestfish-actions.pod:4586 ../fish/guestfish-actions.pod:4609
22133 msgid "Use C<-> instead of a filename to read/write from stdin/stdout."
22134 msgstr ""
22135
22136 #. type: =head2
22137 #: ../fish/guestfish-actions.pod:432
22138 msgid "base64-out"
22139 msgstr ""
22140
22141 #. type: verbatim
22142 #: ../fish/guestfish-actions.pod:434
22143 #, no-wrap
22144 msgid ""
22145 " base64-out filename (base64file|-)\n"
22146 "\n"
22147 msgstr ""
22148
22149 #. type: =head2
22150 #: ../fish/guestfish-actions.pod:441
22151 msgid "blockdev-flushbufs"
22152 msgstr ""
22153
22154 #. type: verbatim
22155 #: ../fish/guestfish-actions.pod:443
22156 #, no-wrap
22157 msgid ""
22158 " blockdev-flushbufs device\n"
22159 "\n"
22160 msgstr ""
22161
22162 #. type: =head2
22163 #: ../fish/guestfish-actions.pod:450
22164 msgid "blockdev-getbsz"
22165 msgstr ""
22166
22167 #. type: verbatim
22168 #: ../fish/guestfish-actions.pod:452
22169 #, no-wrap
22170 msgid ""
22171 " blockdev-getbsz device\n"
22172 "\n"
22173 msgstr ""
22174
22175 #. type: =head2
22176 #: ../fish/guestfish-actions.pod:461
22177 msgid "blockdev-getro"
22178 msgstr ""
22179
22180 #. type: verbatim
22181 #: ../fish/guestfish-actions.pod:463
22182 #, no-wrap
22183 msgid ""
22184 " blockdev-getro device\n"
22185 "\n"
22186 msgstr ""
22187
22188 #. type: =head2
22189 #: ../fish/guestfish-actions.pod:470
22190 msgid "blockdev-getsize64"
22191 msgstr ""
22192
22193 #. type: verbatim
22194 #: ../fish/guestfish-actions.pod:472
22195 #, no-wrap
22196 msgid ""
22197 " blockdev-getsize64 device\n"
22198 "\n"
22199 msgstr ""
22200
22201 #. type: textblock
22202 #: ../fish/guestfish-actions.pod:476
22203 msgid "See also L</blockdev-getsz>."
22204 msgstr ""
22205
22206 #. type: =head2
22207 #: ../fish/guestfish-actions.pod:480
22208 msgid "blockdev-getss"
22209 msgstr ""
22210
22211 #. type: verbatim
22212 #: ../fish/guestfish-actions.pod:482
22213 #, no-wrap
22214 msgid ""
22215 " blockdev-getss device\n"
22216 "\n"
22217 msgstr ""
22218
22219 #. type: textblock
22220 #: ../fish/guestfish-actions.pod:487
22221 msgid ""
22222 "(Note, this is not the size in sectors, use L</blockdev-getsz> for that)."
22223 msgstr ""
22224
22225 #. type: =head2
22226 #: ../fish/guestfish-actions.pod:492
22227 msgid "blockdev-getsz"
22228 msgstr ""
22229
22230 #. type: verbatim
22231 #: ../fish/guestfish-actions.pod:494
22232 #, no-wrap
22233 msgid ""
22234 " blockdev-getsz device\n"
22235 "\n"
22236 msgstr ""
22237
22238 #. type: textblock
22239 #: ../fish/guestfish-actions.pod:499
22240 msgid ""
22241 "See also L</blockdev-getss> for the real sector size of the device, and L</"
22242 "blockdev-getsize64> for the more useful I<size in bytes>."
22243 msgstr ""
22244
22245 #. type: =head2
22246 #: ../fish/guestfish-actions.pod:505
22247 msgid "blockdev-rereadpt"
22248 msgstr ""
22249
22250 #. type: verbatim
22251 #: ../fish/guestfish-actions.pod:507
22252 #, no-wrap
22253 msgid ""
22254 " blockdev-rereadpt device\n"
22255 "\n"
22256 msgstr ""
22257
22258 #. type: =head2
22259 #: ../fish/guestfish-actions.pod:513
22260 msgid "blockdev-setbsz"
22261 msgstr ""
22262
22263 #. type: verbatim
22264 #: ../fish/guestfish-actions.pod:515
22265 #, no-wrap
22266 msgid ""
22267 " blockdev-setbsz device blocksize\n"
22268 "\n"
22269 msgstr ""
22270
22271 #. type: =head2
22272 #: ../fish/guestfish-actions.pod:524
22273 msgid "blockdev-setro"
22274 msgstr ""
22275
22276 #. type: verbatim
22277 #: ../fish/guestfish-actions.pod:526
22278 #, no-wrap
22279 msgid ""
22280 " blockdev-setro device\n"
22281 "\n"
22282 msgstr ""
22283
22284 #. type: =head2
22285 #: ../fish/guestfish-actions.pod:532
22286 msgid "blockdev-setrw"
22287 msgstr ""
22288
22289 #. type: verbatim
22290 #: ../fish/guestfish-actions.pod:534
22291 #, no-wrap
22292 msgid ""
22293 " blockdev-setrw device\n"
22294 "\n"
22295 msgstr ""
22296
22297 #. type: =head2
22298 #: ../fish/guestfish-actions.pod:540
22299 msgid "case-sensitive-path"
22300 msgstr ""
22301
22302 #. type: verbatim
22303 #: ../fish/guestfish-actions.pod:542
22304 #, no-wrap
22305 msgid ""
22306 " case-sensitive-path path\n"
22307 "\n"
22308 msgstr ""
22309
22310 #. type: textblock
22311 #: ../fish/guestfish-actions.pod:566
22312 msgid ""
22313 "Thus L</case-sensitive-path> (\"/Windows/System32\")  might return C<\"/"
22314 "WINDOWS/system32\"> (the exact return value would depend on details of how "
22315 "the directories were originally created under Windows)."
22316 msgstr ""
22317
22318 #. type: textblock
22319 #: ../fish/guestfish-actions.pod:574
22320 msgid "See also L</realpath>."
22321 msgstr ""
22322
22323 #. type: =head2
22324 #: ../fish/guestfish-actions.pod:576
22325 msgid "cat"
22326 msgstr ""
22327
22328 #. type: verbatim
22329 #: ../fish/guestfish-actions.pod:578
22330 #, no-wrap
22331 msgid ""
22332 " cat path\n"
22333 "\n"
22334 msgstr ""
22335
22336 #. type: textblock
22337 #: ../fish/guestfish-actions.pod:582
22338 msgid ""
22339 "Note that this function cannot correctly handle binary files (specifically, "
22340 "files containing C<\\0> character which is treated as end of string).  For "
22341 "those you need to use the L</read-file> or L</download> functions which have "
22342 "a more complex interface."
22343 msgstr ""
22344
22345 #. type: =head2
22346 #: ../fish/guestfish-actions.pod:590
22347 msgid "checksum"
22348 msgstr ""
22349
22350 #. type: verbatim
22351 #: ../fish/guestfish-actions.pod:592
22352 #, no-wrap
22353 msgid ""
22354 " checksum csumtype path\n"
22355 "\n"
22356 msgstr ""
22357
22358 #. type: textblock
22359 #: ../fish/guestfish-actions.pod:635
22360 msgid "To get the checksum for a device, use L</checksum-device>."
22361 msgstr ""
22362
22363 #. type: textblock
22364 #: ../fish/guestfish-actions.pod:637
22365 msgid "To get the checksums for many files, use L</checksums-out>."
22366 msgstr ""
22367
22368 #. type: =head2
22369 #: ../fish/guestfish-actions.pod:639
22370 msgid "checksum-device"
22371 msgstr ""
22372
22373 #. type: verbatim
22374 #: ../fish/guestfish-actions.pod:641
22375 #, no-wrap
22376 msgid ""
22377 " checksum-device csumtype device\n"
22378 "\n"
22379 msgstr ""
22380
22381 #. type: textblock
22382 #: ../fish/guestfish-actions.pod:643
22383 msgid ""
22384 "This call computes the MD5, SHAx or CRC checksum of the contents of the "
22385 "device named C<device>.  For the types of checksums supported see the L</"
22386 "checksum> command."
22387 msgstr ""
22388
22389 #. type: =head2
22390 #: ../fish/guestfish-actions.pod:647
22391 msgid "checksums-out"
22392 msgstr ""
22393
22394 #. type: verbatim
22395 #: ../fish/guestfish-actions.pod:649
22396 #, no-wrap
22397 msgid ""
22398 " checksums-out csumtype directory (sumsfile|-)\n"
22399 "\n"
22400 msgstr ""
22401
22402 #. type: =head2
22403 #: ../fish/guestfish-actions.pod:665
22404 msgid "chmod"
22405 msgstr ""
22406
22407 #. type: verbatim
22408 #: ../fish/guestfish-actions.pod:667
22409 #, no-wrap
22410 msgid ""
22411 " chmod mode path\n"
22412 "\n"
22413 msgstr ""
22414
22415 #. type: =head2
22416 #: ../fish/guestfish-actions.pod:678
22417 msgid "chown"
22418 msgstr ""
22419
22420 #. type: verbatim
22421 #: ../fish/guestfish-actions.pod:680
22422 #, no-wrap
22423 msgid ""
22424 " chown owner group path\n"
22425 "\n"
22426 msgstr ""
22427
22428 #. type: =head2
22429 #: ../fish/guestfish-actions.pod:688
22430 msgid "command"
22431 msgstr ""
22432
22433 #. type: verbatim
22434 #: ../fish/guestfish-actions.pod:690
22435 #, no-wrap
22436 msgid ""
22437 " command 'arguments ...'\n"
22438 "\n"
22439 msgstr ""
22440
22441 #. type: textblock
22442 #: ../fish/guestfish-actions.pod:697
22443 msgid ""
22444 "The single parameter is an argv-style list of arguments.  The first element "
22445 "is the name of the program to run.  Subsequent elements are parameters.  The "
22446 "list must be non-empty (ie. must contain a program name).  Note that the "
22447 "command runs directly, and is I<not> invoked via the shell (see L</sh>)."
22448 msgstr ""
22449
22450 #. type: =head2
22451 #: ../fish/guestfish-actions.pod:725
22452 msgid "command-lines"
22453 msgstr ""
22454
22455 #. type: verbatim
22456 #: ../fish/guestfish-actions.pod:727
22457 #, no-wrap
22458 msgid ""
22459 " command-lines 'arguments ...'\n"
22460 "\n"
22461 msgstr ""
22462
22463 #. type: textblock
22464 #: ../fish/guestfish-actions.pod:729
22465 msgid ""
22466 "This is the same as L</command>, but splits the result into a list of lines."
22467 msgstr ""
22468
22469 #. type: textblock
22470 #: ../fish/guestfish-actions.pod:732
22471 msgid "See also: L</sh-lines>"
22472 msgstr ""
22473
22474 #. type: =head2
22475 #: ../fish/guestfish-actions.pod:737
22476 msgid "config"
22477 msgstr ""
22478
22479 #. type: verbatim
22480 #: ../fish/guestfish-actions.pod:739
22481 #, no-wrap
22482 msgid ""
22483 " config qemuparam qemuvalue\n"
22484 "\n"
22485 msgstr ""
22486
22487 #. type: =head2
22488 #: ../fish/guestfish-actions.pod:750
22489 msgid "copy-size"
22490 msgstr ""
22491
22492 #. type: verbatim
22493 #: ../fish/guestfish-actions.pod:752
22494 #, no-wrap
22495 msgid ""
22496 " copy-size src dest size\n"
22497 "\n"
22498 msgstr ""
22499
22500 #. type: =head2
22501 #: ../fish/guestfish-actions.pod:760
22502 msgid "cp"
22503 msgstr ""
22504
22505 #. type: verbatim
22506 #: ../fish/guestfish-actions.pod:762
22507 #, no-wrap
22508 msgid ""
22509 " cp src dest\n"
22510 "\n"
22511 msgstr ""
22512
22513 #. type: =head2
22514 #: ../fish/guestfish-actions.pod:767
22515 msgid "cp-a"
22516 msgstr ""
22517
22518 #. type: verbatim
22519 #: ../fish/guestfish-actions.pod:769
22520 #, no-wrap
22521 msgid ""
22522 " cp-a src dest\n"
22523 "\n"
22524 msgstr ""
22525
22526 #. type: =head2
22527 #: ../fish/guestfish-actions.pod:774
22528 msgid "dd"
22529 msgstr ""
22530
22531 #. type: verbatim
22532 #: ../fish/guestfish-actions.pod:776
22533 #, no-wrap
22534 msgid ""
22535 " dd src dest\n"
22536 "\n"
22537 msgstr ""
22538
22539 #. type: textblock
22540 #: ../fish/guestfish-actions.pod:783
22541 msgid ""
22542 "If the destination is a device, it must be as large or larger than the "
22543 "source file or device, otherwise the copy will fail.  This command cannot do "
22544 "partial copies (see L</copy-size>)."
22545 msgstr ""
22546
22547 #. type: =head2
22548 #: ../fish/guestfish-actions.pod:787
22549 msgid "df"
22550 msgstr ""
22551
22552 #. type: verbatim
22553 #: ../fish/guestfish-actions.pod:789
22554 #, no-wrap
22555 msgid ""
22556 " df\n"
22557 "\n"
22558 msgstr ""
22559
22560 #. type: textblock
22561 #: ../fish/guestfish-actions.pod:793 ../fish/guestfish-actions.pod:804
22562 msgid ""
22563 "This command is mostly useful for interactive sessions.  It is I<not> "
22564 "intended that you try to parse the output string.  Use L</statvfs> from "
22565 "programs."
22566 msgstr ""
22567
22568 #. type: =head2
22569 #: ../fish/guestfish-actions.pod:797
22570 msgid "df-h"
22571 msgstr ""
22572
22573 #. type: verbatim
22574 #: ../fish/guestfish-actions.pod:799
22575 #, no-wrap
22576 msgid ""
22577 " df-h\n"
22578 "\n"
22579 msgstr ""
22580
22581 #. type: =head2
22582 #: ../fish/guestfish-actions.pod:808
22583 msgid "dmesg"
22584 msgstr ""
22585
22586 #. type: verbatim
22587 #: ../fish/guestfish-actions.pod:810
22588 #, no-wrap
22589 msgid ""
22590 " dmesg\n"
22591 "\n"
22592 msgstr ""
22593
22594 #. type: textblock
22595 #: ../fish/guestfish-actions.pod:816
22596 msgid ""
22597 "Another way to get the same information is to enable verbose messages with "
22598 "L</set-verbose> or by setting the environment variable C<LIBGUESTFS_DEBUG=1> "
22599 "before running the program."
22600 msgstr ""
22601
22602 #. type: =head2
22603 #: ../fish/guestfish-actions.pod:821
22604 msgid "download"
22605 msgstr ""
22606
22607 #. type: verbatim
22608 #: ../fish/guestfish-actions.pod:823
22609 #, no-wrap
22610 msgid ""
22611 " download remotefilename (filename|-)\n"
22612 "\n"
22613 msgstr ""
22614
22615 #. type: textblock
22616 #: ../fish/guestfish-actions.pod:830
22617 msgid "See also L</upload>, L</cat>."
22618 msgstr ""
22619
22620 #. type: =head2
22621 #: ../fish/guestfish-actions.pod:834
22622 msgid "download-offset"
22623 msgstr ""
22624
22625 #. type: verbatim
22626 #: ../fish/guestfish-actions.pod:836
22627 #, no-wrap
22628 msgid ""
22629 " download-offset remotefilename (filename|-) offset size\n"
22630 "\n"
22631 msgstr ""
22632
22633 #. type: textblock
22634 #: ../fish/guestfish-actions.pod:844
22635 msgid ""
22636 "Note that there is no limit on the amount of data that can be downloaded "
22637 "with this call, unlike with L</pread>, and this call always reads the full "
22638 "amount unless an error occurs."
22639 msgstr ""
22640
22641 #. type: textblock
22642 #: ../fish/guestfish-actions.pod:849
22643 msgid "See also L</download>, L</pread>."
22644 msgstr ""
22645
22646 #. type: =head2
22647 #: ../fish/guestfish-actions.pod:853
22648 msgid "drop-caches"
22649 msgstr ""
22650
22651 #. type: verbatim
22652 #: ../fish/guestfish-actions.pod:855
22653 #, no-wrap
22654 msgid ""
22655 " drop-caches whattodrop\n"
22656 "\n"
22657 msgstr ""
22658
22659 #. type: =head2
22660 #: ../fish/guestfish-actions.pod:867
22661 msgid "du"
22662 msgstr ""
22663
22664 #. type: verbatim
22665 #: ../fish/guestfish-actions.pod:869
22666 #, no-wrap
22667 msgid ""
22668 " du path\n"
22669 "\n"
22670 msgstr ""
22671
22672 #. type: =head2
22673 #: ../fish/guestfish-actions.pod:881
22674 msgid "e2fsck-f"
22675 msgstr ""
22676
22677 #. type: verbatim
22678 #: ../fish/guestfish-actions.pod:883
22679 #, no-wrap
22680 msgid ""
22681 " e2fsck-f device\n"
22682 "\n"
22683 msgstr ""
22684
22685 #. type: textblock
22686 #: ../fish/guestfish-actions.pod:889
22687 msgid ""
22688 "This command is only needed because of L</resize2fs> (q.v.).  Normally you "
22689 "should use L</fsck>."
22690 msgstr ""
22691
22692 #. type: =head2
22693 #: ../fish/guestfish-actions.pod:892
22694 msgid "echo-daemon"
22695 msgstr ""
22696
22697 #. type: verbatim
22698 #: ../fish/guestfish-actions.pod:894
22699 #, no-wrap
22700 msgid ""
22701 " echo-daemon 'words ...'\n"
22702 "\n"
22703 msgstr ""
22704
22705 #. type: textblock
22706 #: ../fish/guestfish-actions.pod:901
22707 msgid "See also L</ping-daemon>."
22708 msgstr ""
22709
22710 #. type: =head2
22711 #: ../fish/guestfish-actions.pod:903
22712 msgid "egrep"
22713 msgstr ""
22714
22715 #. type: verbatim
22716 #: ../fish/guestfish-actions.pod:905
22717 #, no-wrap
22718 msgid ""
22719 " egrep regex path\n"
22720 "\n"
22721 msgstr ""
22722
22723 #. type: =head2
22724 #: ../fish/guestfish-actions.pod:913
22725 msgid "egrepi"
22726 msgstr ""
22727
22728 #. type: verbatim
22729 #: ../fish/guestfish-actions.pod:915
22730 #, no-wrap
22731 msgid ""
22732 " egrepi regex path\n"
22733 "\n"
22734 msgstr ""
22735
22736 #. type: =head2
22737 #: ../fish/guestfish-actions.pod:923
22738 msgid "equal"
22739 msgstr ""
22740
22741 #. type: verbatim
22742 #: ../fish/guestfish-actions.pod:925
22743 #, no-wrap
22744 msgid ""
22745 " equal file1 file2\n"
22746 "\n"
22747 msgstr ""
22748
22749 #. type: =head2
22750 #: ../fish/guestfish-actions.pod:932
22751 msgid "exists"
22752 msgstr ""
22753
22754 #. type: verbatim
22755 #: ../fish/guestfish-actions.pod:934
22756 #, no-wrap
22757 msgid ""
22758 " exists path\n"
22759 "\n"
22760 msgstr ""
22761
22762 #. type: textblock
22763 #: ../fish/guestfish-actions.pod:939
22764 msgid "See also L</is-file>, L</is-dir>, L</stat>."
22765 msgstr ""
22766
22767 #. type: =head2
22768 #: ../fish/guestfish-actions.pod:941
22769 msgid "fallocate"
22770 msgstr ""
22771
22772 #. type: verbatim
22773 #: ../fish/guestfish-actions.pod:943
22774 #, no-wrap
22775 msgid ""
22776 " fallocate path len\n"
22777 "\n"
22778 msgstr ""
22779
22780 #. type: =head2
22781 #: ../fish/guestfish-actions.pod:960
22782 msgid "fallocate64"
22783 msgstr ""
22784
22785 #. type: verbatim
22786 #: ../fish/guestfish-actions.pod:962
22787 #, no-wrap
22788 msgid ""
22789 " fallocate64 path len\n"
22790 "\n"
22791 msgstr ""
22792
22793 #. type: textblock
22794 #: ../fish/guestfish-actions.pod:968
22795 msgid ""
22796 "Note that this call allocates disk blocks for the file.  To create a sparse "
22797 "file use L</truncate-size> instead."
22798 msgstr ""
22799
22800 #. type: textblock
22801 #: ../fish/guestfish-actions.pod:971
22802 msgid ""
22803 "The deprecated call L</fallocate> does the same, but owing to an oversight "
22804 "it only allowed 30 bit lengths to be specified, effectively limiting the "
22805 "maximum size of files created through that call to 1GB."
22806 msgstr ""
22807
22808 #. type: =head2
22809 #: ../fish/guestfish-actions.pod:980
22810 msgid "fgrep"
22811 msgstr ""
22812
22813 #. type: verbatim
22814 #: ../fish/guestfish-actions.pod:982
22815 #, no-wrap
22816 msgid ""
22817 " fgrep pattern path\n"
22818 "\n"
22819 msgstr ""
22820
22821 #. type: =head2
22822 #: ../fish/guestfish-actions.pod:990
22823 msgid "fgrepi"
22824 msgstr ""
22825
22826 #. type: verbatim
22827 #: ../fish/guestfish-actions.pod:992
22828 #, no-wrap
22829 msgid ""
22830 " fgrepi pattern path\n"
22831 "\n"
22832 msgstr ""
22833
22834 #. type: =head2
22835 #: ../fish/guestfish-actions.pod:1000
22836 msgid "file"
22837 msgstr ""
22838
22839 #. type: verbatim
22840 #: ../fish/guestfish-actions.pod:1002
22841 #, no-wrap
22842 msgid ""
22843 " file path\n"
22844 "\n"
22845 msgstr ""
22846
22847 #. type: textblock
22848 #: ../fish/guestfish-actions.pod:1014
22849 msgid ""
22850 "This command can also be used on C</dev/> devices (and partitions, LV "
22851 "names).  You can for example use this to determine if a device contains a "
22852 "filesystem, although it's usually better to use L</vfs-type>."
22853 msgstr ""
22854
22855 #. type: =head2
22856 #: ../fish/guestfish-actions.pod:1024
22857 msgid "file-architecture"
22858 msgstr ""
22859
22860 #. type: verbatim
22861 #: ../fish/guestfish-actions.pod:1026
22862 #, no-wrap
22863 msgid ""
22864 " file-architecture filename\n"
22865 "\n"
22866 msgstr ""
22867
22868 #. type: =head2
22869 #: ../fish/guestfish-actions.pod:1129
22870 msgid "filesize"
22871 msgstr ""
22872
22873 #. type: verbatim
22874 #: ../fish/guestfish-actions.pod:1131
22875 #, no-wrap
22876 msgid ""
22877 " filesize file\n"
22878 "\n"
22879 msgstr ""
22880
22881 #. type: textblock
22882 #: ../fish/guestfish-actions.pod:1135
22883 msgid ""
22884 "To get other stats about a file, use L</stat>, L</lstat>, L</is-dir>, L</is-"
22885 "file> etc.  To get the size of block devices, use L</blockdev-getsize64>."
22886 msgstr ""
22887
22888 #. type: =head2
22889 #: ../fish/guestfish-actions.pod:1139
22890 msgid "fill"
22891 msgstr ""
22892
22893 #. type: verbatim
22894 #: ../fish/guestfish-actions.pod:1141
22895 #, no-wrap
22896 msgid ""
22897 " fill c len path\n"
22898 "\n"
22899 msgstr ""
22900
22901 #. type: textblock
22902 #: ../fish/guestfish-actions.pod:1147
22903 msgid ""
22904 "To fill a file with zero bytes (sparsely), it is much more efficient to use "
22905 "L</truncate-size>.  To create a file with a pattern of repeating bytes use "
22906 "L</fill-pattern>."
22907 msgstr ""
22908
22909 #. type: =head2
22910 #: ../fish/guestfish-actions.pod:1152
22911 msgid "fill-pattern"
22912 msgstr ""
22913
22914 #. type: verbatim
22915 #: ../fish/guestfish-actions.pod:1154
22916 #, no-wrap
22917 msgid ""
22918 " fill-pattern pattern len path\n"
22919 "\n"
22920 msgstr ""
22921
22922 #. type: textblock
22923 #: ../fish/guestfish-actions.pod:1156
22924 msgid ""
22925 "This function is like L</fill> except that it creates a new file of length "
22926 "C<len> containing the repeating pattern of bytes in C<pattern>.  The pattern "
22927 "is truncated if necessary to ensure the length of the file is exactly C<len> "
22928 "bytes."
22929 msgstr ""
22930
22931 #. type: =head2
22932 #: ../fish/guestfish-actions.pod:1161
22933 msgid "find"
22934 msgstr ""
22935
22936 #. type: verbatim
22937 #: ../fish/guestfish-actions.pod:1163
22938 #, no-wrap
22939 msgid ""
22940 " find directory\n"
22941 "\n"
22942 msgstr ""
22943
22944 #. type: textblock
22945 #: ../fish/guestfish-actions.pod:1177
22946 msgid "then the returned list from L</find> C</tmp> would be 4 elements:"
22947 msgstr ""
22948
22949 #. type: textblock
22950 #: ../fish/guestfish-actions.pod:1190
22951 msgid "See also L</find0>."
22952 msgstr ""
22953
22954 #. type: =head2
22955 #: ../fish/guestfish-actions.pod:1195
22956 msgid "find0"
22957 msgstr ""
22958
22959 #. type: verbatim
22960 #: ../fish/guestfish-actions.pod:1197
22961 #, no-wrap
22962 msgid ""
22963 " find0 directory (files|-)\n"
22964 "\n"
22965 msgstr ""
22966
22967 #. type: textblock
22968 #: ../fish/guestfish-actions.pod:1203
22969 msgid ""
22970 "This command works the same way as L</find> with the following exceptions:"
22971 msgstr ""
22972
22973 #. type: =head2
22974 #: ../fish/guestfish-actions.pod:1230
22975 msgid "findfs-label"
22976 msgstr ""
22977
22978 #. type: verbatim
22979 #: ../fish/guestfish-actions.pod:1232
22980 #, no-wrap
22981 msgid ""
22982 " findfs-label label\n"
22983 "\n"
22984 msgstr ""
22985
22986 #. type: textblock
22987 #: ../fish/guestfish-actions.pod:1238
22988 msgid "To find the label of a filesystem, use L</vfs-label>."
22989 msgstr ""
22990
22991 #. type: =head2
22992 #: ../fish/guestfish-actions.pod:1240
22993 msgid "findfs-uuid"
22994 msgstr ""
22995
22996 #. type: verbatim
22997 #: ../fish/guestfish-actions.pod:1242
22998 #, no-wrap
22999 msgid ""
23000 " findfs-uuid uuid\n"
23001 "\n"
23002 msgstr ""
23003
23004 #. type: textblock
23005 #: ../fish/guestfish-actions.pod:1248
23006 msgid "To find the UUID of a filesystem, use L</vfs-uuid>."
23007 msgstr ""
23008
23009 #. type: =head2
23010 #: ../fish/guestfish-actions.pod:1250
23011 msgid "fsck"
23012 msgstr ""
23013
23014 #. type: verbatim
23015 #: ../fish/guestfish-actions.pod:1252
23016 #, no-wrap
23017 msgid ""
23018 " fsck fstype device\n"
23019 "\n"
23020 msgstr ""
23021
23022 #. type: =head2
23023 #: ../fish/guestfish-actions.pod:1282
23024 msgid "get-append"
23025 msgstr ""
23026
23027 #. type: verbatim
23028 #: ../fish/guestfish-actions.pod:1284
23029 #, no-wrap
23030 msgid ""
23031 " get-append\n"
23032 "\n"
23033 msgstr ""
23034
23035 #. type: =head2
23036 #: ../fish/guestfish-actions.pod:1291
23037 msgid "get-attach-method"
23038 msgstr ""
23039
23040 #. type: verbatim
23041 #: ../fish/guestfish-actions.pod:1293
23042 #, no-wrap
23043 msgid ""
23044 " get-attach-method\n"
23045 "\n"
23046 msgstr ""
23047
23048 #. type: textblock
23049 #: ../fish/guestfish-actions.pod:1295
23050 msgid "Return the current attach method.  See L</set-attach-method>."
23051 msgstr ""
23052
23053 #. type: =head2
23054 #: ../fish/guestfish-actions.pod:1297
23055 msgid "get-autosync"
23056 msgstr ""
23057
23058 #. type: verbatim
23059 #: ../fish/guestfish-actions.pod:1299
23060 #, no-wrap
23061 msgid ""
23062 " get-autosync\n"
23063 "\n"
23064 msgstr ""
23065
23066 #. type: =head2
23067 #: ../fish/guestfish-actions.pod:1303
23068 msgid "get-direct"
23069 msgstr ""
23070
23071 #. type: verbatim
23072 #: ../fish/guestfish-actions.pod:1305
23073 #, no-wrap
23074 msgid ""
23075 " get-direct\n"
23076 "\n"
23077 msgstr ""
23078
23079 #. type: =head2
23080 #: ../fish/guestfish-actions.pod:1309
23081 msgid "get-e2label"
23082 msgstr ""
23083
23084 #. type: verbatim
23085 #: ../fish/guestfish-actions.pod:1311
23086 #, no-wrap
23087 msgid ""
23088 " get-e2label device\n"
23089 "\n"
23090 msgstr ""
23091
23092 #. type: =head2
23093 #: ../fish/guestfish-actions.pod:1323
23094 msgid "get-e2uuid"
23095 msgstr ""
23096
23097 #. type: verbatim
23098 #: ../fish/guestfish-actions.pod:1325
23099 #, no-wrap
23100 msgid ""
23101 " get-e2uuid device\n"
23102 "\n"
23103 msgstr ""
23104
23105 #. type: =head2
23106 #: ../fish/guestfish-actions.pod:1337
23107 msgid "get-memsize"
23108 msgstr ""
23109
23110 #. type: verbatim
23111 #: ../fish/guestfish-actions.pod:1339
23112 #, no-wrap
23113 msgid ""
23114 " get-memsize\n"
23115 "\n"
23116 msgstr ""
23117
23118 #. type: textblock
23119 #: ../fish/guestfish-actions.pod:1344
23120 msgid ""
23121 "If L</set-memsize> was not called on this handle, and if "
23122 "C<LIBGUESTFS_MEMSIZE> was not set, then this returns the compiled-in default "
23123 "value for memsize."
23124 msgstr ""
23125
23126 #. type: =head2
23127 #: ../fish/guestfish-actions.pod:1351
23128 msgid "get-network"
23129 msgstr ""
23130
23131 #. type: verbatim
23132 #: ../fish/guestfish-actions.pod:1353
23133 #, no-wrap
23134 msgid ""
23135 " get-network\n"
23136 "\n"
23137 msgstr ""
23138
23139 #. type: =head2
23140 #: ../fish/guestfish-actions.pod:1357
23141 msgid "get-path"
23142 msgstr ""
23143
23144 #. type: verbatim
23145 #: ../fish/guestfish-actions.pod:1359
23146 #, no-wrap
23147 msgid ""
23148 " get-path\n"
23149 "\n"
23150 msgstr ""
23151
23152 #. type: =head2
23153 #: ../fish/guestfish-actions.pod:1366
23154 msgid "get-pid"
23155 msgstr ""
23156
23157 #. type: =head2
23158 #: ../fish/guestfish-actions.pod:1368
23159 msgid "pid"
23160 msgstr ""
23161
23162 #. type: verbatim
23163 #: ../fish/guestfish-actions.pod:1370
23164 #, no-wrap
23165 msgid ""
23166 " get-pid\n"
23167 "\n"
23168 msgstr ""
23169
23170 #. type: =head2
23171 #: ../fish/guestfish-actions.pod:1377
23172 msgid "get-qemu"
23173 msgstr ""
23174
23175 #. type: verbatim
23176 #: ../fish/guestfish-actions.pod:1379
23177 #, no-wrap
23178 msgid ""
23179 " get-qemu\n"
23180 "\n"
23181 msgstr ""
23182
23183 #. type: =head2
23184 #: ../fish/guestfish-actions.pod:1386
23185 msgid "get-recovery-proc"
23186 msgstr ""
23187
23188 #. type: verbatim
23189 #: ../fish/guestfish-actions.pod:1388
23190 #, no-wrap
23191 msgid ""
23192 " get-recovery-proc\n"
23193 "\n"
23194 msgstr ""
23195
23196 #. type: =head2
23197 #: ../fish/guestfish-actions.pod:1392
23198 msgid "get-selinux"
23199 msgstr ""
23200
23201 #. type: verbatim
23202 #: ../fish/guestfish-actions.pod:1394
23203 #, no-wrap
23204 msgid ""
23205 " get-selinux\n"
23206 "\n"
23207 msgstr ""
23208
23209 #. type: textblock
23210 #: ../fish/guestfish-actions.pod:1396
23211 msgid ""
23212 "This returns the current setting of the selinux flag which is passed to the "
23213 "appliance at boot time.  See L</set-selinux>."
23214 msgstr ""
23215
23216 #. type: =head2
23217 #: ../fish/guestfish-actions.pod:1402
23218 msgid "get-state"
23219 msgstr ""
23220
23221 #. type: verbatim
23222 #: ../fish/guestfish-actions.pod:1404
23223 #, no-wrap
23224 msgid ""
23225 " get-state\n"
23226 "\n"
23227 msgstr ""
23228
23229 #. type: =head2
23230 #: ../fish/guestfish-actions.pod:1411
23231 msgid "get-trace"
23232 msgstr ""
23233
23234 #. type: verbatim
23235 #: ../fish/guestfish-actions.pod:1413
23236 #, no-wrap
23237 msgid ""
23238 " get-trace\n"
23239 "\n"
23240 msgstr ""
23241
23242 #. type: =head2
23243 #: ../fish/guestfish-actions.pod:1417
23244 msgid "get-umask"
23245 msgstr ""
23246
23247 #. type: verbatim
23248 #: ../fish/guestfish-actions.pod:1419
23249 #, no-wrap
23250 msgid ""
23251 " get-umask\n"
23252 "\n"
23253 msgstr ""
23254
23255 #. type: textblock
23256 #: ../fish/guestfish-actions.pod:1421
23257 msgid ""
23258 "Return the current umask.  By default the umask is C<022> unless it has been "
23259 "set by calling L</umask>."
23260 msgstr ""
23261
23262 #. type: =head2
23263 #: ../fish/guestfish-actions.pod:1424
23264 msgid "get-verbose"
23265 msgstr ""
23266
23267 #. type: verbatim
23268 #: ../fish/guestfish-actions.pod:1426
23269 #, no-wrap
23270 msgid ""
23271 " get-verbose\n"
23272 "\n"
23273 msgstr ""
23274
23275 #. type: =head2
23276 #: ../fish/guestfish-actions.pod:1430
23277 msgid "getcon"
23278 msgstr ""
23279
23280 #. type: verbatim
23281 #: ../fish/guestfish-actions.pod:1432
23282 #, no-wrap
23283 msgid ""
23284 " getcon\n"
23285 "\n"
23286 msgstr ""
23287
23288 #. type: textblock
23289 #: ../fish/guestfish-actions.pod:1436
23290 msgid "See the documentation about SELINUX in L<guestfs(3)>, and L</setcon>"
23291 msgstr ""
23292
23293 #. type: =head2
23294 #: ../fish/guestfish-actions.pod:1439
23295 msgid "getxattr"
23296 msgstr ""
23297
23298 #. type: verbatim
23299 #: ../fish/guestfish-actions.pod:1441
23300 #, no-wrap
23301 msgid ""
23302 " getxattr path name\n"
23303 "\n"
23304 msgstr ""
23305
23306 #. type: textblock
23307 #: ../fish/guestfish-actions.pod:1443
23308 msgid ""
23309 "Get a single extended attribute from file C<path> named C<name>.  This call "
23310 "follows symlinks.  If you want to lookup an extended attribute for the "
23311 "symlink itself, use L</lgetxattr>."
23312 msgstr ""
23313
23314 #. type: textblock
23315 #: ../fish/guestfish-actions.pod:1447 ../fish/guestfish-actions.pod:2445
23316 msgid ""
23317 "Normally it is better to get all extended attributes from a file in one go "
23318 "by calling L</getxattrs>.  However some Linux filesystem implementations are "
23319 "buggy and do not provide a way to list out attributes.  For these "
23320 "filesystems (notably ntfs-3g)  you have to know the names of the extended "
23321 "attributes you want in advance and call this function."
23322 msgstr ""
23323
23324 #. type: textblock
23325 #: ../fish/guestfish-actions.pod:1457
23326 msgid "See also: L</getxattrs>, L</lgetxattr>, L<attr(5)>."
23327 msgstr ""
23328
23329 #. type: =head2
23330 #: ../fish/guestfish-actions.pod:1459
23331 msgid "getxattrs"
23332 msgstr ""
23333
23334 #. type: verbatim
23335 #: ../fish/guestfish-actions.pod:1461
23336 #, no-wrap
23337 msgid ""
23338 " getxattrs path\n"
23339 "\n"
23340 msgstr ""
23341
23342 #. type: textblock
23343 #: ../fish/guestfish-actions.pod:1469
23344 msgid "See also: L</lgetxattrs>, L<attr(5)>."
23345 msgstr ""
23346
23347 #. type: =head2
23348 #: ../fish/guestfish-actions.pod:1471
23349 msgid "glob-expand"
23350 msgstr ""
23351
23352 #. type: verbatim
23353 #: ../fish/guestfish-actions.pod:1473
23354 #, no-wrap
23355 msgid ""
23356 " glob-expand pattern\n"
23357 "\n"
23358 msgstr ""
23359
23360 #. type: =head2
23361 #: ../fish/guestfish-actions.pod:1486
23362 msgid "grep"
23363 msgstr ""
23364
23365 #. type: verbatim
23366 #: ../fish/guestfish-actions.pod:1488
23367 #, no-wrap
23368 msgid ""
23369 " grep regex path\n"
23370 "\n"
23371 msgstr ""
23372
23373 #. type: =head2
23374 #: ../fish/guestfish-actions.pod:1496
23375 msgid "grepi"
23376 msgstr ""
23377
23378 #. type: verbatim
23379 #: ../fish/guestfish-actions.pod:1498
23380 #, no-wrap
23381 msgid ""
23382 " grepi regex path\n"
23383 "\n"
23384 msgstr ""
23385
23386 #. type: =head2
23387 #: ../fish/guestfish-actions.pod:1506
23388 msgid "grub-install"
23389 msgstr ""
23390
23391 #. type: verbatim
23392 #: ../fish/guestfish-actions.pod:1508
23393 #, no-wrap
23394 msgid ""
23395 " grub-install root device\n"
23396 "\n"
23397 msgstr ""
23398
23399 #. type: =head2
23400 #: ../fish/guestfish-actions.pod:1524
23401 msgid "head"
23402 msgstr ""
23403
23404 #. type: verbatim
23405 #: ../fish/guestfish-actions.pod:1526
23406 #, no-wrap
23407 msgid ""
23408 " head path\n"
23409 "\n"
23410 msgstr ""
23411
23412 #. type: =head2
23413 #: ../fish/guestfish-actions.pod:1534
23414 msgid "head-n"
23415 msgstr ""
23416
23417 #. type: verbatim
23418 #: ../fish/guestfish-actions.pod:1536
23419 #, no-wrap
23420 msgid ""
23421 " head-n nrlines path\n"
23422 "\n"
23423 msgstr ""
23424
23425 #. type: =head2
23426 #: ../fish/guestfish-actions.pod:1549
23427 msgid "hexdump"
23428 msgstr ""
23429
23430 #. type: verbatim
23431 #: ../fish/guestfish-actions.pod:1551
23432 #, no-wrap
23433 msgid ""
23434 " hexdump path\n"
23435 "\n"
23436 msgstr ""
23437
23438 #. type: =head2
23439 #: ../fish/guestfish-actions.pod:1559
23440 msgid "initrd-cat"
23441 msgstr ""
23442
23443 #. type: verbatim
23444 #: ../fish/guestfish-actions.pod:1561
23445 #, no-wrap
23446 msgid ""
23447 " initrd-cat initrdpath filename\n"
23448 "\n"
23449 msgstr ""
23450
23451 #. type: textblock
23452 #: ../fish/guestfish-actions.pod:1573
23453 msgid "See also L</initrd-list>."
23454 msgstr ""
23455
23456 #. type: =head2
23457 #: ../fish/guestfish-actions.pod:1578
23458 msgid "initrd-list"
23459 msgstr ""
23460
23461 #. type: verbatim
23462 #: ../fish/guestfish-actions.pod:1580
23463 #, no-wrap
23464 msgid ""
23465 " initrd-list path\n"
23466 "\n"
23467 msgstr ""
23468
23469 #. type: =head2
23470 #: ../fish/guestfish-actions.pod:1592
23471 msgid "inotify-add-watch"
23472 msgstr ""
23473
23474 #. type: verbatim
23475 #: ../fish/guestfish-actions.pod:1594
23476 #, no-wrap
23477 msgid ""
23478 " inotify-add-watch path mask\n"
23479 "\n"
23480 msgstr ""
23481
23482 #. type: =head2
23483 #: ../fish/guestfish-actions.pod:1606
23484 msgid "inotify-close"
23485 msgstr ""
23486
23487 #. type: verbatim
23488 #: ../fish/guestfish-actions.pod:1608
23489 #, no-wrap
23490 msgid ""
23491 " inotify-close\n"
23492 "\n"
23493 msgstr ""
23494
23495 #. type: =head2
23496 #: ../fish/guestfish-actions.pod:1614
23497 msgid "inotify-files"
23498 msgstr ""
23499
23500 #. type: verbatim
23501 #: ../fish/guestfish-actions.pod:1616
23502 #, no-wrap
23503 msgid ""
23504 " inotify-files\n"
23505 "\n"
23506 msgstr ""
23507
23508 #. type: textblock
23509 #: ../fish/guestfish-actions.pod:1618
23510 msgid ""
23511 "This function is a helpful wrapper around L</inotify-read> which just "
23512 "returns a list of pathnames of objects that were touched.  The returned "
23513 "pathnames are sorted and deduplicated."
23514 msgstr ""
23515
23516 #. type: =head2
23517 #: ../fish/guestfish-actions.pod:1622
23518 msgid "inotify-init"
23519 msgstr ""
23520
23521 #. type: verbatim
23522 #: ../fish/guestfish-actions.pod:1624
23523 #, no-wrap
23524 msgid ""
23525 " inotify-init maxevents\n"
23526 "\n"
23527 msgstr ""
23528
23529 #. type: textblock
23530 #: ../fish/guestfish-actions.pod:1630
23531 msgid ""
23532 "C<maxevents> is the maximum number of events which will be queued up between "
23533 "calls to L</inotify-read> or L</inotify-files>.  If this is passed as C<0>, "
23534 "then the kernel (or previously set)  default is used.  For Linux 2.6.29 the "
23535 "default was 16384 events.  Beyond this limit, the kernel throws away events, "
23536 "but records the fact that it threw them away by setting a flag "
23537 "C<IN_Q_OVERFLOW> in the returned structure list (see L</inotify-read>)."
23538 msgstr ""
23539
23540 #. type: textblock
23541 #: ../fish/guestfish-actions.pod:1640
23542 msgid ""
23543 "Before any events are generated, you have to add some watches to the "
23544 "internal watch list.  See: L</inotify-add-watch>, L</inotify-rm-watch> and "
23545 "L</inotify-watch-all>."
23546 msgstr ""
23547
23548 #. type: textblock
23549 #: ../fish/guestfish-actions.pod:1646
23550 msgid ""
23551 "Queued up events should be read periodically by calling L</inotify-read> (or "
23552 "L</inotify-files> which is just a helpful wrapper around L</inotify-read>).  "
23553 "If you don't read the events out often enough then you risk the internal "
23554 "queue overflowing."
23555 msgstr ""
23556
23557 #. type: textblock
23558 #: ../fish/guestfish-actions.pod:1653
23559 msgid ""
23560 "The handle should be closed after use by calling L</inotify-close>.  This "
23561 "also removes any watches automatically."
23562 msgstr ""
23563
23564 #. type: =head2
23565 #: ../fish/guestfish-actions.pod:1662
23566 msgid "inotify-read"
23567 msgstr ""
23568
23569 #. type: verbatim
23570 #: ../fish/guestfish-actions.pod:1664
23571 #, no-wrap
23572 msgid ""
23573 " inotify-read\n"
23574 "\n"
23575 msgstr ""
23576
23577 #. type: =head2
23578 #: ../fish/guestfish-actions.pod:1677
23579 msgid "inotify-rm-watch"
23580 msgstr ""
23581
23582 #. type: verbatim
23583 #: ../fish/guestfish-actions.pod:1679
23584 #, no-wrap
23585 msgid ""
23586 " inotify-rm-watch wd\n"
23587 "\n"
23588 msgstr ""
23589
23590 #. type: textblock
23591 #: ../fish/guestfish-actions.pod:1681
23592 msgid "Remove a previously defined inotify watch.  See L</inotify-add-watch>."
23593 msgstr ""
23594
23595 #. type: =head2
23596 #: ../fish/guestfish-actions.pod:1684
23597 msgid "inspect-get-arch"
23598 msgstr ""
23599
23600 #. type: verbatim
23601 #: ../fish/guestfish-actions.pod:1686
23602 #, no-wrap
23603 msgid ""
23604 " inspect-get-arch root\n"
23605 "\n"
23606 msgstr ""
23607
23608 #. type: textblock
23609 #: ../fish/guestfish-actions.pod:1688 ../fish/guestfish-actions.pod:1704
23610 #: ../fish/guestfish-actions.pod:1782 ../fish/guestfish-actions.pod:1818
23611 #: ../fish/guestfish-actions.pod:1836 ../fish/guestfish-actions.pod:1870
23612 #: ../fish/guestfish-actions.pod:1885 ../fish/guestfish-actions.pod:1906
23613 #: ../fish/guestfish-actions.pod:1921 ../fish/guestfish-actions.pod:1954
23614 #: ../fish/guestfish-actions.pod:1976 ../fish/guestfish-actions.pod:2000
23615 #: ../fish/guestfish-actions.pod:2017 ../fish/guestfish-actions.pod:2060
23616 #: ../fish/guestfish-actions.pod:2095 ../fish/guestfish-actions.pod:2111
23617 #: ../fish/guestfish-actions.pod:2127 ../fish/guestfish-actions.pod:2140
23618 #: ../fish/guestfish-actions.pod:2153 ../fish/guestfish-actions.pod:2168
23619 msgid ""
23620 "This function should only be called with a root device string as returned by "
23621 "L</inspect-os>."
23622 msgstr ""
23623
23624 #. type: textblock
23625 #: ../fish/guestfish-actions.pod:1691
23626 msgid ""
23627 "This returns the architecture of the inspected operating system.  The "
23628 "possible return values are listed under L</file-architecture>."
23629 msgstr ""
23630
23631 #. type: =head2
23632 #: ../fish/guestfish-actions.pod:1700
23633 msgid "inspect-get-distro"
23634 msgstr ""
23635
23636 #. type: verbatim
23637 #: ../fish/guestfish-actions.pod:1702
23638 #, no-wrap
23639 msgid ""
23640 " inspect-get-distro root\n"
23641 "\n"
23642 msgstr ""
23643
23644 #. type: =head2
23645 #: ../fish/guestfish-actions.pod:1778
23646 msgid "inspect-get-drive-mappings"
23647 msgstr ""
23648
23649 #. type: verbatim
23650 #: ../fish/guestfish-actions.pod:1780
23651 #, no-wrap
23652 msgid ""
23653 " inspect-get-drive-mappings root\n"
23654 "\n"
23655 msgstr ""
23656
23657 #. type: textblock
23658 #: ../fish/guestfish-actions.pod:1810
23659 msgid ""
23660 "Please read L<guestfs(3)/INSPECTION> for more details.  See also L</inspect-"
23661 "get-mountpoints>, L</inspect-get-filesystems>."
23662 msgstr ""
23663
23664 #. type: =head2
23665 #: ../fish/guestfish-actions.pod:1814
23666 msgid "inspect-get-filesystems"
23667 msgstr ""
23668
23669 #. type: verbatim
23670 #: ../fish/guestfish-actions.pod:1816
23671 #, no-wrap
23672 msgid ""
23673 " inspect-get-filesystems root\n"
23674 "\n"
23675 msgstr ""
23676
23677 #. type: textblock
23678 #: ../fish/guestfish-actions.pod:1829
23679 msgid ""
23680 "Please read L<guestfs(3)/INSPECTION> for more details.  See also L</inspect-"
23681 "get-mountpoints>."
23682 msgstr ""
23683
23684 #. type: =head2
23685 #: ../fish/guestfish-actions.pod:1832
23686 msgid "inspect-get-format"
23687 msgstr ""
23688
23689 #. type: verbatim
23690 #: ../fish/guestfish-actions.pod:1834
23691 #, no-wrap
23692 msgid ""
23693 " inspect-get-format root\n"
23694 "\n"
23695 msgstr ""
23696
23697 #. type: =head2
23698 #: ../fish/guestfish-actions.pod:1866
23699 msgid "inspect-get-hostname"
23700 msgstr ""
23701
23702 #. type: verbatim
23703 #: ../fish/guestfish-actions.pod:1868
23704 #, no-wrap
23705 msgid ""
23706 " inspect-get-hostname root\n"
23707 "\n"
23708 msgstr ""
23709
23710 #. type: =head2
23711 #: ../fish/guestfish-actions.pod:1881
23712 msgid "inspect-get-major-version"
23713 msgstr ""
23714
23715 #. type: verbatim
23716 #: ../fish/guestfish-actions.pod:1883
23717 #, no-wrap
23718 msgid ""
23719 " inspect-get-major-version root\n"
23720 "\n"
23721 msgstr ""
23722
23723 #. type: =head2
23724 #: ../fish/guestfish-actions.pod:1902
23725 msgid "inspect-get-minor-version"
23726 msgstr ""
23727
23728 #. type: verbatim
23729 #: ../fish/guestfish-actions.pod:1904
23730 #, no-wrap
23731 msgid ""
23732 " inspect-get-minor-version root\n"
23733 "\n"
23734 msgstr ""
23735
23736 #. type: textblock
23737 #: ../fish/guestfish-actions.pod:1914
23738 msgid ""
23739 "Please read L<guestfs(3)/INSPECTION> for more details.  See also L</inspect-"
23740 "get-major-version>."
23741 msgstr ""
23742
23743 #. type: =head2
23744 #: ../fish/guestfish-actions.pod:1917
23745 msgid "inspect-get-mountpoints"
23746 msgstr ""
23747
23748 #. type: verbatim
23749 #: ../fish/guestfish-actions.pod:1919
23750 #, no-wrap
23751 msgid ""
23752 " inspect-get-mountpoints root\n"
23753 "\n"
23754 msgstr ""
23755
23756 #. type: textblock
23757 #: ../fish/guestfish-actions.pod:1941
23758 msgid ""
23759 "For operating systems like Windows which still use drive letters, this call "
23760 "will only return an entry for the first drive \"mounted on\" C</>.  For "
23761 "information about the mapping of drive letters to partitions, see L</inspect-"
23762 "get-drive-mappings>."
23763 msgstr ""
23764
23765 #. type: textblock
23766 #: ../fish/guestfish-actions.pod:1947
23767 msgid ""
23768 "Please read L<guestfs(3)/INSPECTION> for more details.  See also L</inspect-"
23769 "get-filesystems>."
23770 msgstr ""
23771
23772 #. type: =head2
23773 #: ../fish/guestfish-actions.pod:1950
23774 msgid "inspect-get-package-format"
23775 msgstr ""
23776
23777 #. type: verbatim
23778 #: ../fish/guestfish-actions.pod:1952
23779 #, no-wrap
23780 msgid ""
23781 " inspect-get-package-format root\n"
23782 "\n"
23783 msgstr ""
23784
23785 #. type: textblock
23786 #: ../fish/guestfish-actions.pod:1957
23787 msgid ""
23788 "This function and L</inspect-get-package-management> return the package "
23789 "format and package management tool used by the inspected operating system.  "
23790 "For example for Fedora these functions would return C<rpm> (package format) "
23791 "and C<yum> (package management)."
23792 msgstr ""
23793
23794 #. type: =head2
23795 #: ../fish/guestfish-actions.pod:1972
23796 msgid "inspect-get-package-management"
23797 msgstr ""
23798
23799 #. type: verbatim
23800 #: ../fish/guestfish-actions.pod:1974
23801 #, no-wrap
23802 msgid ""
23803 " inspect-get-package-management root\n"
23804 "\n"
23805 msgstr ""
23806
23807 #. type: textblock
23808 #: ../fish/guestfish-actions.pod:1979
23809 msgid ""
23810 "L</inspect-get-package-format> and this function return the package format "
23811 "and package management tool used by the inspected operating system.  For "
23812 "example for Fedora these functions would return C<rpm> (package format) and "
23813 "C<yum> (package management)."
23814 msgstr ""
23815
23816 #. type: =head2
23817 #: ../fish/guestfish-actions.pod:1996
23818 msgid "inspect-get-product-name"
23819 msgstr ""
23820
23821 #. type: verbatim
23822 #: ../fish/guestfish-actions.pod:1998
23823 #, no-wrap
23824 msgid ""
23825 " inspect-get-product-name root\n"
23826 "\n"
23827 msgstr ""
23828
23829 #. type: =head2
23830 #: ../fish/guestfish-actions.pod:2013
23831 msgid "inspect-get-product-variant"
23832 msgstr ""
23833
23834 #. type: verbatim
23835 #: ../fish/guestfish-actions.pod:2015
23836 #, no-wrap
23837 msgid ""
23838 " inspect-get-product-variant root\n"
23839 "\n"
23840 msgstr ""
23841
23842 #. type: textblock
23843 #: ../fish/guestfish-actions.pod:2039
23844 msgid ""
23845 "Please read L<guestfs(3)/INSPECTION> for more details.  See also L</inspect-"
23846 "get-product-name>, L</inspect-get-major-version>."
23847 msgstr ""
23848
23849 #. type: =head2
23850 #: ../fish/guestfish-actions.pod:2043
23851 msgid "inspect-get-roots"
23852 msgstr ""
23853
23854 #. type: verbatim
23855 #: ../fish/guestfish-actions.pod:2045
23856 #, no-wrap
23857 msgid ""
23858 " inspect-get-roots\n"
23859 "\n"
23860 msgstr ""
23861
23862 #. type: textblock
23863 #: ../fish/guestfish-actions.pod:2047
23864 msgid ""
23865 "This function is a convenient way to get the list of root devices, as "
23866 "returned from a previous call to L</inspect-os>, but without redoing the "
23867 "whole inspection process."
23868 msgstr ""
23869
23870 #. type: textblock
23871 #: ../fish/guestfish-actions.pod:2051
23872 msgid ""
23873 "This returns an empty list if either no root devices were found or the "
23874 "caller has not called L</inspect-os>."
23875 msgstr ""
23876
23877 #. type: =head2
23878 #: ../fish/guestfish-actions.pod:2056
23879 msgid "inspect-get-type"
23880 msgstr ""
23881
23882 #. type: verbatim
23883 #: ../fish/guestfish-actions.pod:2058
23884 #, no-wrap
23885 msgid ""
23886 " inspect-get-type root\n"
23887 "\n"
23888 msgstr ""
23889
23890 #. type: =head2
23891 #: ../fish/guestfish-actions.pod:2091
23892 msgid "inspect-get-windows-current-control-set"
23893 msgstr ""
23894
23895 #. type: verbatim
23896 #: ../fish/guestfish-actions.pod:2093
23897 #, no-wrap
23898 msgid ""
23899 " inspect-get-windows-current-control-set root\n"
23900 "\n"
23901 msgstr ""
23902
23903 #. type: =head2
23904 #: ../fish/guestfish-actions.pod:2107
23905 msgid "inspect-get-windows-systemroot"
23906 msgstr ""
23907
23908 #. type: verbatim
23909 #: ../fish/guestfish-actions.pod:2109
23910 #, no-wrap
23911 msgid ""
23912 " inspect-get-windows-systemroot root\n"
23913 "\n"
23914 msgstr ""
23915
23916 #. type: =head2
23917 #: ../fish/guestfish-actions.pod:2123
23918 msgid "inspect-is-live"
23919 msgstr ""
23920
23921 #. type: verbatim
23922 #: ../fish/guestfish-actions.pod:2125
23923 #, no-wrap
23924 msgid ""
23925 " inspect-is-live root\n"
23926 "\n"
23927 msgstr ""
23928
23929 #. type: textblock
23930 #: ../fish/guestfish-actions.pod:2130
23931 msgid ""
23932 "If L</inspect-get-format> returns C<installer> (this is an install disk), "
23933 "then this returns true if a live image was detected on the disk."
23934 msgstr ""
23935
23936 #. type: =head2
23937 #: ../fish/guestfish-actions.pod:2136
23938 msgid "inspect-is-multipart"
23939 msgstr ""
23940
23941 #. type: verbatim
23942 #: ../fish/guestfish-actions.pod:2138
23943 #, no-wrap
23944 msgid ""
23945 " inspect-is-multipart root\n"
23946 "\n"
23947 msgstr ""
23948
23949 #. type: textblock
23950 #: ../fish/guestfish-actions.pod:2143
23951 msgid ""
23952 "If L</inspect-get-format> returns C<installer> (this is an install disk), "
23953 "then this returns true if the disk is part of a set."
23954 msgstr ""
23955
23956 #. type: =head2
23957 #: ../fish/guestfish-actions.pod:2149
23958 msgid "inspect-is-netinst"
23959 msgstr ""
23960
23961 #. type: verbatim
23962 #: ../fish/guestfish-actions.pod:2151
23963 #, no-wrap
23964 msgid ""
23965 " inspect-is-netinst root\n"
23966 "\n"
23967 msgstr ""
23968
23969 #. type: textblock
23970 #: ../fish/guestfish-actions.pod:2156
23971 msgid ""
23972 "If L</inspect-get-format> returns C<installer> (this is an install disk), "
23973 "then this returns true if the disk is a network installer, ie. not a self-"
23974 "contained install CD but one which is likely to require network access to "
23975 "complete the install."
23976 msgstr ""
23977
23978 #. type: =head2
23979 #: ../fish/guestfish-actions.pod:2164
23980 msgid "inspect-list-applications"
23981 msgstr ""
23982
23983 #. type: verbatim
23984 #: ../fish/guestfish-actions.pod:2166
23985 #, no-wrap
23986 msgid ""
23987 " inspect-list-applications root\n"
23988 "\n"
23989 msgstr ""
23990
23991 #. type: textblock
23992 #: ../fish/guestfish-actions.pod:2173
23993 msgid ""
23994 "I<Note:> This call works differently from other parts of the inspection "
23995 "API.  You have to call L</inspect-os>, then L</inspect-get-mountpoints>, "
23996 "then mount up the disks, before calling this.  Listing applications is a "
23997 "significantly more difficult operation which requires access to the full "
23998 "filesystem.  Also note that unlike the other L</inspect-get-*> calls which "
23999 "are just returning data cached in the libguestfs handle, this call actually "
24000 "reads parts of the mounted filesystems during the call."
24001 msgstr ""
24002
24003 #. type: =head2
24004 #: ../fish/guestfish-actions.pod:2263
24005 msgid "inspect-os"
24006 msgstr ""
24007
24008 #. type: verbatim
24009 #: ../fish/guestfish-actions.pod:2265
24010 #, no-wrap
24011 msgid ""
24012 " inspect-os\n"
24013 "\n"
24014 msgstr ""
24015
24016 #. type: textblock
24017 #: ../fish/guestfish-actions.pod:2280
24018 msgid ""
24019 "You can pass the root string(s) returned to other L</inspect-get-*> "
24020 "functions in order to query further information about each operating system, "
24021 "such as the name and version."
24022 msgstr ""
24023
24024 #. type: textblock
24025 #: ../fish/guestfish-actions.pod:2285
24026 msgid ""
24027 "This function uses other libguestfs features such as L</mount-ro> and L</"
24028 "umount-all> in order to mount and unmount filesystems and look at the "
24029 "contents.  This should be called with no disks currently mounted.  The "
24030 "function may also use Augeas, so any existing Augeas handle will be closed."
24031 msgstr ""
24032
24033 #. type: textblock
24034 #: ../fish/guestfish-actions.pod:2297 ../fish/guestfish-actions.pod:2473
24035 #: ../fish/guestfish-actions.pod:2519
24036 msgid "See also L</list-filesystems>."
24037 msgstr ""
24038
24039 #. type: =head2
24040 #: ../fish/guestfish-actions.pod:2299
24041 msgid "is-blockdev"
24042 msgstr ""
24043
24044 #. type: verbatim
24045 #: ../fish/guestfish-actions.pod:2301
24046 #, no-wrap
24047 msgid ""
24048 " is-blockdev path\n"
24049 "\n"
24050 msgstr ""
24051
24052 #. type: textblock
24053 #: ../fish/guestfish-actions.pod:2306 ../fish/guestfish-actions.pod:2324
24054 #: ../fish/guestfish-actions.pod:2343 ../fish/guestfish-actions.pod:2352
24055 #: ../fish/guestfish-actions.pod:2362 ../fish/guestfish-actions.pod:2396
24056 #: ../fish/guestfish-actions.pod:2405
24057 msgid "See also L</stat>."
24058 msgstr ""
24059
24060 #. type: =head2
24061 #: ../fish/guestfish-actions.pod:2308
24062 msgid "is-busy"
24063 msgstr ""
24064
24065 #. type: verbatim
24066 #: ../fish/guestfish-actions.pod:2310
24067 #, no-wrap
24068 msgid ""
24069 " is-busy\n"
24070 "\n"
24071 msgstr ""
24072
24073 #. type: =head2
24074 #: ../fish/guestfish-actions.pod:2317
24075 msgid "is-chardev"
24076 msgstr ""
24077
24078 #. type: verbatim
24079 #: ../fish/guestfish-actions.pod:2319
24080 #, no-wrap
24081 msgid ""
24082 " is-chardev path\n"
24083 "\n"
24084 msgstr ""
24085
24086 #. type: =head2
24087 #: ../fish/guestfish-actions.pod:2326
24088 msgid "is-config"
24089 msgstr ""
24090
24091 #. type: verbatim
24092 #: ../fish/guestfish-actions.pod:2328
24093 #, no-wrap
24094 msgid ""
24095 " is-config\n"
24096 "\n"
24097 msgstr ""
24098
24099 #. type: =head2
24100 #: ../fish/guestfish-actions.pod:2335
24101 msgid "is-dir"
24102 msgstr ""
24103
24104 #. type: verbatim
24105 #: ../fish/guestfish-actions.pod:2337
24106 #, no-wrap
24107 msgid ""
24108 " is-dir path\n"
24109 "\n"
24110 msgstr ""
24111
24112 #. type: =head2
24113 #: ../fish/guestfish-actions.pod:2345
24114 msgid "is-fifo"
24115 msgstr ""
24116
24117 #. type: verbatim
24118 #: ../fish/guestfish-actions.pod:2347
24119 #, no-wrap
24120 msgid ""
24121 " is-fifo path\n"
24122 "\n"
24123 msgstr ""
24124
24125 #. type: =head2
24126 #: ../fish/guestfish-actions.pod:2354
24127 msgid "is-file"
24128 msgstr ""
24129
24130 #. type: verbatim
24131 #: ../fish/guestfish-actions.pod:2356
24132 #, no-wrap
24133 msgid ""
24134 " is-file path\n"
24135 "\n"
24136 msgstr ""
24137
24138 #. type: =head2
24139 #: ../fish/guestfish-actions.pod:2364
24140 msgid "is-launching"
24141 msgstr ""
24142
24143 #. type: verbatim
24144 #: ../fish/guestfish-actions.pod:2366
24145 #, no-wrap
24146 msgid ""
24147 " is-launching\n"
24148 "\n"
24149 msgstr ""
24150
24151 #. type: =head2
24152 #: ../fish/guestfish-actions.pod:2373
24153 msgid "is-lv"
24154 msgstr ""
24155
24156 #. type: verbatim
24157 #: ../fish/guestfish-actions.pod:2375
24158 #, no-wrap
24159 msgid ""
24160 " is-lv device\n"
24161 "\n"
24162 msgstr ""
24163
24164 #. type: =head2
24165 #: ../fish/guestfish-actions.pod:2380
24166 msgid "is-ready"
24167 msgstr ""
24168
24169 #. type: verbatim
24170 #: ../fish/guestfish-actions.pod:2382
24171 #, no-wrap
24172 msgid ""
24173 " is-ready\n"
24174 "\n"
24175 msgstr ""
24176
24177 #. type: =head2
24178 #: ../fish/guestfish-actions.pod:2389
24179 msgid "is-socket"
24180 msgstr ""
24181
24182 #. type: verbatim
24183 #: ../fish/guestfish-actions.pod:2391
24184 #, no-wrap
24185 msgid ""
24186 " is-socket path\n"
24187 "\n"
24188 msgstr ""
24189
24190 #. type: =head2
24191 #: ../fish/guestfish-actions.pod:2398
24192 msgid "is-symlink"
24193 msgstr ""
24194
24195 #. type: verbatim
24196 #: ../fish/guestfish-actions.pod:2400
24197 #, no-wrap
24198 msgid ""
24199 " is-symlink path\n"
24200 "\n"
24201 msgstr ""
24202
24203 #. type: =head2
24204 #: ../fish/guestfish-actions.pod:2407
24205 msgid "kill-subprocess"
24206 msgstr ""
24207
24208 #. type: verbatim
24209 #: ../fish/guestfish-actions.pod:2409
24210 #, no-wrap
24211 msgid ""
24212 " kill-subprocess\n"
24213 "\n"
24214 msgstr ""
24215
24216 #. type: =head2
24217 #: ../fish/guestfish-actions.pod:2413
24218 msgid "launch"
24219 msgstr ""
24220
24221 #. type: =head2
24222 #: ../fish/guestfish-actions.pod:2415
24223 msgid "run"
24224 msgstr ""
24225
24226 #. type: verbatim
24227 #: ../fish/guestfish-actions.pod:2417
24228 #, no-wrap
24229 msgid ""
24230 " launch\n"
24231 "\n"
24232 msgstr ""
24233
24234 #. type: =head2
24235 #: ../fish/guestfish-actions.pod:2425
24236 msgid "lchown"
24237 msgstr ""
24238
24239 #. type: verbatim
24240 #: ../fish/guestfish-actions.pod:2427
24241 #, no-wrap
24242 msgid ""
24243 " lchown owner group path\n"
24244 "\n"
24245 msgstr ""
24246
24247 #. type: textblock
24248 #: ../fish/guestfish-actions.pod:2429
24249 msgid ""
24250 "Change the file owner to C<owner> and group to C<group>.  This is like L</"
24251 "chown> but if C<path> is a symlink then the link itself is changed, not the "
24252 "target."
24253 msgstr ""
24254
24255 #. type: =head2
24256 #: ../fish/guestfish-actions.pod:2437
24257 msgid "lgetxattr"
24258 msgstr ""
24259
24260 #. type: verbatim
24261 #: ../fish/guestfish-actions.pod:2439
24262 #, no-wrap
24263 msgid ""
24264 " lgetxattr path name\n"
24265 "\n"
24266 msgstr ""
24267
24268 #. type: textblock
24269 #: ../fish/guestfish-actions.pod:2455
24270 msgid "See also: L</lgetxattrs>, L</getxattr>, L<attr(5)>."
24271 msgstr ""
24272
24273 #. type: =head2
24274 #: ../fish/guestfish-actions.pod:2457
24275 msgid "lgetxattrs"
24276 msgstr ""
24277
24278 #. type: verbatim
24279 #: ../fish/guestfish-actions.pod:2459
24280 #, no-wrap
24281 msgid ""
24282 " lgetxattrs path\n"
24283 "\n"
24284 msgstr ""
24285
24286 #. type: textblock
24287 #: ../fish/guestfish-actions.pod:2461
24288 msgid ""
24289 "This is the same as L</getxattrs>, but if C<path> is a symbolic link, then "
24290 "it returns the extended attributes of the link itself."
24291 msgstr ""
24292
24293 #. type: =head2
24294 #: ../fish/guestfish-actions.pod:2465
24295 msgid "list-devices"
24296 msgstr ""
24297
24298 #. type: verbatim
24299 #: ../fish/guestfish-actions.pod:2467
24300 #, no-wrap
24301 msgid ""
24302 " list-devices\n"
24303 "\n"
24304 msgstr ""
24305
24306 #. type: =head2
24307 #: ../fish/guestfish-actions.pod:2475
24308 msgid "list-filesystems"
24309 msgstr ""
24310
24311 #. type: verbatim
24312 #: ../fish/guestfish-actions.pod:2477
24313 #, no-wrap
24314 msgid ""
24315 " list-filesystems\n"
24316 "\n"
24317 msgstr ""
24318
24319 #. type: textblock
24320 #: ../fish/guestfish-actions.pod:2496
24321 msgid ""
24322 "This command runs other libguestfs commands, which might include L</mount> "
24323 "and L</umount>, and therefore you should use this soon after launch and only "
24324 "when nothing is mounted."
24325 msgstr ""
24326
24327 #. type: textblock
24328 #: ../fish/guestfish-actions.pod:2500
24329 msgid ""
24330 "Not all of the filesystems returned will be mountable.  In particular, swap "
24331 "partitions are returned in the list.  Also this command does not check that "
24332 "each filesystem found is valid and mountable, and some filesystems might be "
24333 "mountable but require special options.  Filesystems may not all belong to a "
24334 "single logical operating system (use L</inspect-os> to look for OSes)."
24335 msgstr ""
24336
24337 #. type: =head2
24338 #: ../fish/guestfish-actions.pod:2508
24339 msgid "list-partitions"
24340 msgstr ""
24341
24342 #. type: verbatim
24343 #: ../fish/guestfish-actions.pod:2510
24344 #, no-wrap
24345 msgid ""
24346 " list-partitions\n"
24347 "\n"
24348 msgstr ""
24349
24350 #. type: textblock
24351 #: ../fish/guestfish-actions.pod:2516
24352 msgid ""
24353 "This does not return logical volumes.  For that you will need to call L</"
24354 "lvs>."
24355 msgstr ""
24356
24357 #. type: =head2
24358 #: ../fish/guestfish-actions.pod:2521
24359 msgid "ll"
24360 msgstr ""
24361
24362 #. type: verbatim
24363 #: ../fish/guestfish-actions.pod:2523
24364 #, no-wrap
24365 msgid ""
24366 " ll directory\n"
24367 "\n"
24368 msgstr ""
24369
24370 #. type: =head2
24371 #: ../fish/guestfish-actions.pod:2531
24372 msgid "ln"
24373 msgstr ""
24374
24375 #. type: verbatim
24376 #: ../fish/guestfish-actions.pod:2533
24377 #, no-wrap
24378 msgid ""
24379 " ln target linkname\n"
24380 "\n"
24381 msgstr ""
24382
24383 #. type: =head2
24384 #: ../fish/guestfish-actions.pod:2537
24385 msgid "ln-f"
24386 msgstr ""
24387
24388 #. type: verbatim
24389 #: ../fish/guestfish-actions.pod:2539
24390 #, no-wrap
24391 msgid ""
24392 " ln-f target linkname\n"
24393 "\n"
24394 msgstr ""
24395
24396 #. type: =head2
24397 #: ../fish/guestfish-actions.pod:2544
24398 msgid "ln-s"
24399 msgstr ""
24400
24401 #. type: verbatim
24402 #: ../fish/guestfish-actions.pod:2546
24403 #, no-wrap
24404 msgid ""
24405 " ln-s target linkname\n"
24406 "\n"
24407 msgstr ""
24408
24409 #. type: =head2
24410 #: ../fish/guestfish-actions.pod:2550
24411 msgid "ln-sf"
24412 msgstr ""
24413
24414 #. type: verbatim
24415 #: ../fish/guestfish-actions.pod:2552
24416 #, no-wrap
24417 msgid ""
24418 " ln-sf target linkname\n"
24419 "\n"
24420 msgstr ""
24421
24422 #. type: =head2
24423 #: ../fish/guestfish-actions.pod:2557
24424 msgid "lremovexattr"
24425 msgstr ""
24426
24427 #. type: verbatim
24428 #: ../fish/guestfish-actions.pod:2559
24429 #, no-wrap
24430 msgid ""
24431 " lremovexattr xattr path\n"
24432 "\n"
24433 msgstr ""
24434
24435 #. type: textblock
24436 #: ../fish/guestfish-actions.pod:2561
24437 msgid ""
24438 "This is the same as L</removexattr>, but if C<path> is a symbolic link, then "
24439 "it removes an extended attribute of the link itself."
24440 msgstr ""
24441
24442 #. type: =head2
24443 #: ../fish/guestfish-actions.pod:2565
24444 msgid "ls"
24445 msgstr ""
24446
24447 #. type: verbatim
24448 #: ../fish/guestfish-actions.pod:2567
24449 #, no-wrap
24450 msgid ""
24451 " ls directory\n"
24452 "\n"
24453 msgstr ""
24454
24455 #. type: textblock
24456 #: ../fish/guestfish-actions.pod:2573
24457 msgid ""
24458 "This command is mostly useful for interactive sessions.  Programs should "
24459 "probably use L</readdir> instead."
24460 msgstr ""
24461
24462 #. type: =head2
24463 #: ../fish/guestfish-actions.pod:2576
24464 msgid "lsetxattr"
24465 msgstr ""
24466
24467 #. type: verbatim
24468 #: ../fish/guestfish-actions.pod:2578
24469 #, no-wrap
24470 msgid ""
24471 " lsetxattr xattr val vallen path\n"
24472 "\n"
24473 msgstr ""
24474
24475 #. type: textblock
24476 #: ../fish/guestfish-actions.pod:2580
24477 msgid ""
24478 "This is the same as L</setxattr>, but if C<path> is a symbolic link, then it "
24479 "sets an extended attribute of the link itself."
24480 msgstr ""
24481
24482 #. type: =head2
24483 #: ../fish/guestfish-actions.pod:2584
24484 msgid "lstat"
24485 msgstr ""
24486
24487 #. type: verbatim
24488 #: ../fish/guestfish-actions.pod:2586
24489 #, no-wrap
24490 msgid ""
24491 " lstat path\n"
24492 "\n"
24493 msgstr ""
24494
24495 #. type: textblock
24496 #: ../fish/guestfish-actions.pod:2590
24497 msgid ""
24498 "This is the same as L</stat> except that if C<path> is a symbolic link, then "
24499 "the link is stat-ed, not the file it refers to."
24500 msgstr ""
24501
24502 #. type: =head2
24503 #: ../fish/guestfish-actions.pod:2596
24504 msgid "lstatlist"
24505 msgstr ""
24506
24507 #. type: verbatim
24508 #: ../fish/guestfish-actions.pod:2598
24509 #, no-wrap
24510 msgid ""
24511 " lstatlist path 'names ...'\n"
24512 "\n"
24513 msgstr ""
24514
24515 #. type: textblock
24516 #: ../fish/guestfish-actions.pod:2600
24517 msgid ""
24518 "This call allows you to perform the L</lstat> operation on multiple files, "
24519 "where all files are in the directory C<path>.  C<names> is the list of files "
24520 "from this directory."
24521 msgstr ""
24522
24523 #. type: textblock
24524 #: ../fish/guestfish-actions.pod:2609
24525 msgid ""
24526 "This call is intended for programs that want to efficiently list a directory "
24527 "contents without making many round-trips.  See also L</lxattrlist> for a "
24528 "similarly efficient call for getting extended attributes.  Very long "
24529 "directory listings might cause the protocol message size to be exceeded, "
24530 "causing this call to fail.  The caller must split up such requests into "
24531 "smaller groups of names."
24532 msgstr ""
24533
24534 #. type: =head2
24535 #: ../fish/guestfish-actions.pod:2617
24536 msgid "luks-add-key"
24537 msgstr ""
24538
24539 #. type: verbatim
24540 #: ../fish/guestfish-actions.pod:2619
24541 #, no-wrap
24542 msgid ""
24543 " luks-add-key device keyslot\n"
24544 "\n"
24545 msgstr ""
24546
24547 #. type: textblock
24548 #: ../fish/guestfish-actions.pod:2626
24549 msgid ""
24550 "Note that if C<keyslot> already contains a key, then this command will "
24551 "fail.  You have to use L</luks-kill-slot> first to remove that key."
24552 msgstr ""
24553
24554 #. type: textblock
24555 #: ../fish/guestfish-actions.pod:2630 ../fish/guestfish-actions.pod:2652
24556 #: ../fish/guestfish-actions.pod:2665 ../fish/guestfish-actions.pod:2679
24557 #: ../fish/guestfish-actions.pod:2702 ../fish/guestfish-actions.pod:2712
24558 msgid ""
24559 "This command has one or more key or passphrase parameters.  Guestfish will "
24560 "prompt for these separately."
24561 msgstr ""
24562
24563 #. type: =head2
24564 #: ../fish/guestfish-actions.pod:2633
24565 msgid "luks-close"
24566 msgstr ""
24567
24568 #. type: verbatim
24569 #: ../fish/guestfish-actions.pod:2635
24570 #, no-wrap
24571 msgid ""
24572 " luks-close device\n"
24573 "\n"
24574 msgstr ""
24575
24576 #. type: textblock
24577 #: ../fish/guestfish-actions.pod:2637
24578 msgid ""
24579 "This closes a LUKS device that was created earlier by L</luks-open> or L</"
24580 "luks-open-ro>.  The C<device> parameter must be the name of the LUKS mapping "
24581 "device (ie. C</dev/mapper/mapname>) and I<not> the name of the underlying "
24582 "block device."
24583 msgstr ""
24584
24585 #. type: =head2
24586 #: ../fish/guestfish-actions.pod:2643
24587 msgid "luks-format"
24588 msgstr ""
24589
24590 #. type: verbatim
24591 #: ../fish/guestfish-actions.pod:2645
24592 #, no-wrap
24593 msgid ""
24594 " luks-format device keyslot\n"
24595 "\n"
24596 msgstr ""
24597
24598 #. type: =head2
24599 #: ../fish/guestfish-actions.pod:2658
24600 msgid "luks-format-cipher"
24601 msgstr ""
24602
24603 #. type: verbatim
24604 #: ../fish/guestfish-actions.pod:2660
24605 #, no-wrap
24606 msgid ""
24607 " luks-format-cipher device keyslot cipher\n"
24608 "\n"
24609 msgstr ""
24610
24611 #. type: textblock
24612 #: ../fish/guestfish-actions.pod:2662
24613 msgid ""
24614 "This command is the same as L</luks-format> but it also allows you to set "
24615 "the C<cipher> used."
24616 msgstr ""
24617
24618 #. type: =head2
24619 #: ../fish/guestfish-actions.pod:2671
24620 msgid "luks-kill-slot"
24621 msgstr ""
24622
24623 #. type: verbatim
24624 #: ../fish/guestfish-actions.pod:2673
24625 #, no-wrap
24626 msgid ""
24627 " luks-kill-slot device keyslot\n"
24628 "\n"
24629 msgstr ""
24630
24631 #. type: =head2
24632 #: ../fish/guestfish-actions.pod:2682
24633 msgid "luks-open"
24634 msgstr ""
24635
24636 #. type: verbatim
24637 #: ../fish/guestfish-actions.pod:2684
24638 #, no-wrap
24639 msgid ""
24640 " luks-open device mapname\n"
24641 "\n"
24642 msgstr ""
24643
24644 #. type: textblock
24645 #: ../fish/guestfish-actions.pod:2698
24646 msgid ""
24647 "If this block device contains LVM volume groups, then calling L</vgscan> "
24648 "followed by L</vg-activate-all> will make them visible."
24649 msgstr ""
24650
24651 #. type: =head2
24652 #: ../fish/guestfish-actions.pod:2705
24653 msgid "luks-open-ro"
24654 msgstr ""
24655
24656 #. type: verbatim
24657 #: ../fish/guestfish-actions.pod:2707
24658 #, no-wrap
24659 msgid ""
24660 " luks-open-ro device mapname\n"
24661 "\n"
24662 msgstr ""
24663
24664 #. type: textblock
24665 #: ../fish/guestfish-actions.pod:2709
24666 msgid ""
24667 "This is the same as L</luks-open> except that a read-only mapping is created."
24668 msgstr ""
24669
24670 #. type: =head2
24671 #: ../fish/guestfish-actions.pod:2715
24672 msgid "lvcreate"
24673 msgstr ""
24674
24675 #. type: verbatim
24676 #: ../fish/guestfish-actions.pod:2717
24677 #, no-wrap
24678 msgid ""
24679 " lvcreate logvol volgroup mbytes\n"
24680 "\n"
24681 msgstr ""
24682
24683 #. type: =head2
24684 #: ../fish/guestfish-actions.pod:2722
24685 msgid "lvm-canonical-lv-name"
24686 msgstr ""
24687
24688 #. type: verbatim
24689 #: ../fish/guestfish-actions.pod:2724
24690 #, no-wrap
24691 msgid ""
24692 " lvm-canonical-lv-name lvname\n"
24693 "\n"
24694 msgstr ""
24695
24696 #. type: textblock
24697 #: ../fish/guestfish-actions.pod:2733
24698 msgid "See also L</is-lv>."
24699 msgstr ""
24700
24701 #. type: =head2
24702 #: ../fish/guestfish-actions.pod:2735
24703 msgid "lvm-clear-filter"
24704 msgstr ""
24705
24706 #. type: verbatim
24707 #: ../fish/guestfish-actions.pod:2737
24708 #, no-wrap
24709 msgid ""
24710 " lvm-clear-filter\n"
24711 "\n"
24712 msgstr ""
24713
24714 #. type: textblock
24715 #: ../fish/guestfish-actions.pod:2739
24716 msgid ""
24717 "This undoes the effect of L</lvm-set-filter>.  LVM will be able to see every "
24718 "block device."
24719 msgstr ""
24720
24721 #. type: =head2
24722 #: ../fish/guestfish-actions.pod:2745
24723 msgid "lvm-remove-all"
24724 msgstr ""
24725
24726 #. type: verbatim
24727 #: ../fish/guestfish-actions.pod:2747
24728 #, no-wrap
24729 msgid ""
24730 " lvm-remove-all\n"
24731 "\n"
24732 msgstr ""
24733
24734 #. type: =head2
24735 #: ../fish/guestfish-actions.pod:2755
24736 msgid "lvm-set-filter"
24737 msgstr ""
24738
24739 #. type: verbatim
24740 #: ../fish/guestfish-actions.pod:2757
24741 #, no-wrap
24742 msgid ""
24743 " lvm-set-filter 'devices ...'\n"
24744 "\n"
24745 msgstr ""
24746
24747 #. type: =head2
24748 #: ../fish/guestfish-actions.pod:2782
24749 msgid "lvremove"
24750 msgstr ""
24751
24752 #. type: verbatim
24753 #: ../fish/guestfish-actions.pod:2784
24754 #, no-wrap
24755 msgid ""
24756 " lvremove device\n"
24757 "\n"
24758 msgstr ""
24759
24760 #. type: =head2
24761 #: ../fish/guestfish-actions.pod:2792
24762 msgid "lvrename"
24763 msgstr ""
24764
24765 #. type: verbatim
24766 #: ../fish/guestfish-actions.pod:2794
24767 #, no-wrap
24768 msgid ""
24769 " lvrename logvol newlogvol\n"
24770 "\n"
24771 msgstr ""
24772
24773 #. type: =head2
24774 #: ../fish/guestfish-actions.pod:2798
24775 msgid "lvresize"
24776 msgstr ""
24777
24778 #. type: verbatim
24779 #: ../fish/guestfish-actions.pod:2800
24780 #, no-wrap
24781 msgid ""
24782 " lvresize device mbytes\n"
24783 "\n"
24784 msgstr ""
24785
24786 #. type: =head2
24787 #: ../fish/guestfish-actions.pod:2806
24788 msgid "lvresize-free"
24789 msgstr ""
24790
24791 #. type: verbatim
24792 #: ../fish/guestfish-actions.pod:2808
24793 #, no-wrap
24794 msgid ""
24795 " lvresize-free lv percent\n"
24796 "\n"
24797 msgstr ""
24798
24799 #. type: =head2
24800 #: ../fish/guestfish-actions.pod:2816
24801 msgid "lvs"
24802 msgstr ""
24803
24804 #. type: verbatim
24805 #: ../fish/guestfish-actions.pod:2818
24806 #, no-wrap
24807 msgid ""
24808 " lvs\n"
24809 "\n"
24810 msgstr ""
24811
24812 #. type: textblock
24813 #: ../fish/guestfish-actions.pod:2826
24814 msgid "See also L</lvs-full>, L</list-filesystems>."
24815 msgstr ""
24816
24817 #. type: =head2
24818 #: ../fish/guestfish-actions.pod:2828
24819 msgid "lvs-full"
24820 msgstr ""
24821
24822 #. type: verbatim
24823 #: ../fish/guestfish-actions.pod:2830
24824 #, no-wrap
24825 msgid ""
24826 " lvs-full\n"
24827 "\n"
24828 msgstr ""
24829
24830 #. type: =head2
24831 #: ../fish/guestfish-actions.pod:2835
24832 msgid "lvuuid"
24833 msgstr ""
24834
24835 #. type: verbatim
24836 #: ../fish/guestfish-actions.pod:2837
24837 #, no-wrap
24838 msgid ""
24839 " lvuuid device\n"
24840 "\n"
24841 msgstr ""
24842
24843 #. type: =head2
24844 #: ../fish/guestfish-actions.pod:2841
24845 msgid "lxattrlist"
24846 msgstr ""
24847
24848 #. type: verbatim
24849 #: ../fish/guestfish-actions.pod:2843
24850 #, no-wrap
24851 msgid ""
24852 " lxattrlist path 'names ...'\n"
24853 "\n"
24854 msgstr ""
24855
24856 #. type: textblock
24857 #: ../fish/guestfish-actions.pod:2859
24858 msgid ""
24859 "This call is intended for programs that want to efficiently list a directory "
24860 "contents without making many round-trips.  See also L</lstatlist> for a "
24861 "similarly efficient call for getting standard stats.  Very long directory "
24862 "listings might cause the protocol message size to be exceeded, causing this "
24863 "call to fail.  The caller must split up such requests into smaller groups of "
24864 "names."
24865 msgstr ""
24866
24867 #. type: =head2
24868 #: ../fish/guestfish-actions.pod:2867
24869 msgid "mkdir"
24870 msgstr ""
24871
24872 #. type: verbatim
24873 #: ../fish/guestfish-actions.pod:2869
24874 #, no-wrap
24875 msgid ""
24876 " mkdir path\n"
24877 "\n"
24878 msgstr ""
24879
24880 #. type: =head2
24881 #: ../fish/guestfish-actions.pod:2873
24882 msgid "mkdir-mode"
24883 msgstr ""
24884
24885 #. type: verbatim
24886 #: ../fish/guestfish-actions.pod:2875
24887 #, no-wrap
24888 msgid ""
24889 " mkdir-mode path mode\n"
24890 "\n"
24891 msgstr ""
24892
24893 #. type: textblock
24894 #: ../fish/guestfish-actions.pod:2884
24895 msgid "See also L</mkdir>, L</umask>"
24896 msgstr ""
24897
24898 #. type: =head2
24899 #: ../fish/guestfish-actions.pod:2886
24900 msgid "mkdir-p"
24901 msgstr ""
24902
24903 #. type: verbatim
24904 #: ../fish/guestfish-actions.pod:2888
24905 #, no-wrap
24906 msgid ""
24907 " mkdir-p path\n"
24908 "\n"
24909 msgstr ""
24910
24911 #. type: =head2
24912 #: ../fish/guestfish-actions.pod:2893
24913 msgid "mkdtemp"
24914 msgstr ""
24915
24916 #. type: verbatim
24917 #: ../fish/guestfish-actions.pod:2895
24918 #, no-wrap
24919 msgid ""
24920 " mkdtemp template\n"
24921 "\n"
24922 msgstr ""
24923
24924 #. type: =head2
24925 #: ../fish/guestfish-actions.pod:2916
24926 msgid "mke2fs-J"
24927 msgstr ""
24928
24929 #. type: verbatim
24930 #: ../fish/guestfish-actions.pod:2918
24931 #, no-wrap
24932 msgid ""
24933 " mke2fs-J fstype blocksize device journal\n"
24934 "\n"
24935 msgstr ""
24936
24937 #. type: textblock
24938 #: ../fish/guestfish-actions.pod:2926
24939 msgid "See also L</mke2journal>."
24940 msgstr ""
24941
24942 #. type: =head2
24943 #: ../fish/guestfish-actions.pod:2928
24944 msgid "mke2fs-JL"
24945 msgstr ""
24946
24947 #. type: verbatim
24948 #: ../fish/guestfish-actions.pod:2930
24949 #, no-wrap
24950 msgid ""
24951 " mke2fs-JL fstype blocksize device label\n"
24952 "\n"
24953 msgstr ""
24954
24955 #. type: textblock
24956 #: ../fish/guestfish-actions.pod:2935
24957 msgid "See also L</mke2journal-L>."
24958 msgstr ""
24959
24960 #. type: =head2
24961 #: ../fish/guestfish-actions.pod:2937
24962 msgid "mke2fs-JU"
24963 msgstr ""
24964
24965 #. type: verbatim
24966 #: ../fish/guestfish-actions.pod:2939
24967 #, no-wrap
24968 msgid ""
24969 " mke2fs-JU fstype blocksize device uuid\n"
24970 "\n"
24971 msgstr ""
24972
24973 #. type: textblock
24974 #: ../fish/guestfish-actions.pod:2944
24975 msgid "See also L</mke2journal-U>."
24976 msgstr ""
24977
24978 #. type: =head2
24979 #: ../fish/guestfish-actions.pod:2946
24980 msgid "mke2journal"
24981 msgstr ""
24982
24983 #. type: verbatim
24984 #: ../fish/guestfish-actions.pod:2948
24985 #, no-wrap
24986 msgid ""
24987 " mke2journal blocksize device\n"
24988 "\n"
24989 msgstr ""
24990
24991 #. type: =head2
24992 #: ../fish/guestfish-actions.pod:2955
24993 msgid "mke2journal-L"
24994 msgstr ""
24995
24996 #. type: verbatim
24997 #: ../fish/guestfish-actions.pod:2957
24998 #, no-wrap
24999 msgid ""
25000 " mke2journal-L blocksize label device\n"
25001 "\n"
25002 msgstr ""
25003
25004 #. type: =head2
25005 #: ../fish/guestfish-actions.pod:2961
25006 msgid "mke2journal-U"
25007 msgstr ""
25008
25009 #. type: verbatim
25010 #: ../fish/guestfish-actions.pod:2963
25011 #, no-wrap
25012 msgid ""
25013 " mke2journal-U blocksize uuid device\n"
25014 "\n"
25015 msgstr ""
25016
25017 #. type: =head2
25018 #: ../fish/guestfish-actions.pod:2967
25019 msgid "mkfifo"
25020 msgstr ""
25021
25022 #. type: verbatim
25023 #: ../fish/guestfish-actions.pod:2969
25024 #, no-wrap
25025 msgid ""
25026 " mkfifo mode path\n"
25027 "\n"
25028 msgstr ""
25029
25030 #. type: textblock
25031 #: ../fish/guestfish-actions.pod:2971
25032 msgid ""
25033 "This call creates a FIFO (named pipe) called C<path> with mode C<mode>.  It "
25034 "is just a convenient wrapper around L</mknod>."
25035 msgstr ""
25036
25037 #. type: =head2
25038 #: ../fish/guestfish-actions.pod:2977
25039 msgid "mkfs"
25040 msgstr ""
25041
25042 #. type: verbatim
25043 #: ../fish/guestfish-actions.pod:2979
25044 #, no-wrap
25045 msgid ""
25046 " mkfs fstype device\n"
25047 "\n"
25048 msgstr ""
25049
25050 #. type: =head2
25051 #: ../fish/guestfish-actions.pod:2985
25052 msgid "mkfs-b"
25053 msgstr ""
25054
25055 #. type: verbatim
25056 #: ../fish/guestfish-actions.pod:2987
25057 #, no-wrap
25058 msgid ""
25059 " mkfs-b fstype blocksize device\n"
25060 "\n"
25061 msgstr ""
25062
25063 #. type: textblock
25064 #: ../fish/guestfish-actions.pod:2989
25065 msgid ""
25066 "This call is similar to L</mkfs>, but it allows you to control the block "
25067 "size of the resulting filesystem.  Supported block sizes depend on the "
25068 "filesystem type, but typically they are C<1024>, C<2048> or C<4096> only."
25069 msgstr ""
25070
25071 #. type: =head2
25072 #: ../fish/guestfish-actions.pod:3004
25073 msgid "mkfs-opts"
25074 msgstr ""
25075
25076 #. type: verbatim
25077 #: ../fish/guestfish-actions.pod:3006
25078 #, no-wrap
25079 msgid ""
25080 " mkfs-opts fstype device [blocksize:..] [features:..]\n"
25081 "\n"
25082 msgstr ""
25083
25084 #. type: =head2
25085 #: ../fish/guestfish-actions.pod:3041
25086 msgid "mkmountpoint"
25087 msgstr ""
25088
25089 #. type: verbatim
25090 #: ../fish/guestfish-actions.pod:3043
25091 #, no-wrap
25092 msgid ""
25093 " mkmountpoint exemptpath\n"
25094 "\n"
25095 msgstr ""
25096
25097 #. type: textblock
25098 #: ../fish/guestfish-actions.pod:3045
25099 msgid ""
25100 "L</mkmountpoint> and L</rmmountpoint> are specialized calls that can be used "
25101 "to create extra mountpoints before mounting the first filesystem."
25102 msgstr ""
25103
25104 #. type: textblock
25105 #: ../fish/guestfish-actions.pod:3069
25106 msgid ""
25107 "L</mkmountpoint> is not compatible with L</umount-all>.  You may get "
25108 "unexpected errors if you try to mix these calls.  It is safest to manually "
25109 "unmount filesystems and remove mountpoints after use."
25110 msgstr ""
25111
25112 #. type: textblock
25113 #: ../fish/guestfish-actions.pod:3073
25114 msgid ""
25115 "L</umount-all> unmounts filesystems by sorting the paths longest first, so "
25116 "for this to work for manual mountpoints, you must ensure that the innermost "
25117 "mountpoints have the longest pathnames, as in the example code above."
25118 msgstr ""
25119
25120 #. type: textblock
25121 #: ../fish/guestfish-actions.pod:3080
25122 msgid ""
25123 "Autosync [see L</set-autosync>, this is set by default on handles] can cause "
25124 "L</umount-all> to be called when the handle is closed which can also trigger "
25125 "these issues."
25126 msgstr ""
25127
25128 #. type: =head2
25129 #: ../fish/guestfish-actions.pod:3084
25130 msgid "mknod"
25131 msgstr ""
25132
25133 #. type: verbatim
25134 #: ../fish/guestfish-actions.pod:3086
25135 #, no-wrap
25136 msgid ""
25137 " mknod mode devmajor devminor path\n"
25138 "\n"
25139 msgstr ""
25140
25141 #. type: textblock
25142 #: ../fish/guestfish-actions.pod:3096
25143 msgid ""
25144 "Note that, just like L<mknod(2)>, the mode must be bitwise OR'd with "
25145 "S_IFBLK, S_IFCHR, S_IFIFO or S_IFSOCK (otherwise this call just creates a "
25146 "regular file).  These constants are available in the standard Linux header "
25147 "files, or you can use L</mknod-b>, L</mknod-c> or L</mkfifo> which are "
25148 "wrappers around this command which bitwise OR in the appropriate constant "
25149 "for you."
25150 msgstr ""
25151
25152 #. type: =head2
25153 #: ../fish/guestfish-actions.pod:3106
25154 msgid "mknod-b"
25155 msgstr ""
25156
25157 #. type: verbatim
25158 #: ../fish/guestfish-actions.pod:3108
25159 #, no-wrap
25160 msgid ""
25161 " mknod-b mode devmajor devminor path\n"
25162 "\n"
25163 msgstr ""
25164
25165 #. type: textblock
25166 #: ../fish/guestfish-actions.pod:3110
25167 msgid ""
25168 "This call creates a block device node called C<path> with mode C<mode> and "
25169 "device major/minor C<devmajor> and C<devminor>.  It is just a convenient "
25170 "wrapper around L</mknod>."
25171 msgstr ""
25172
25173 #. type: =head2
25174 #: ../fish/guestfish-actions.pod:3116
25175 msgid "mknod-c"
25176 msgstr ""
25177
25178 #. type: verbatim
25179 #: ../fish/guestfish-actions.pod:3118
25180 #, no-wrap
25181 msgid ""
25182 " mknod-c mode devmajor devminor path\n"
25183 "\n"
25184 msgstr ""
25185
25186 #. type: textblock
25187 #: ../fish/guestfish-actions.pod:3120
25188 msgid ""
25189 "This call creates a char device node called C<path> with mode C<mode> and "
25190 "device major/minor C<devmajor> and C<devminor>.  It is just a convenient "
25191 "wrapper around L</mknod>."
25192 msgstr ""
25193
25194 #. type: =head2
25195 #: ../fish/guestfish-actions.pod:3126
25196 msgid "mkswap"
25197 msgstr ""
25198
25199 #. type: verbatim
25200 #: ../fish/guestfish-actions.pod:3128
25201 #, no-wrap
25202 msgid ""
25203 " mkswap device\n"
25204 "\n"
25205 msgstr ""
25206
25207 #. type: =head2
25208 #: ../fish/guestfish-actions.pod:3132
25209 msgid "mkswap-L"
25210 msgstr ""
25211
25212 #. type: verbatim
25213 #: ../fish/guestfish-actions.pod:3134
25214 #, no-wrap
25215 msgid ""
25216 " mkswap-L label device\n"
25217 "\n"
25218 msgstr ""
25219
25220 #. type: =head2
25221 #: ../fish/guestfish-actions.pod:3142
25222 msgid "mkswap-U"
25223 msgstr ""
25224
25225 #. type: verbatim
25226 #: ../fish/guestfish-actions.pod:3144
25227 #, no-wrap
25228 msgid ""
25229 " mkswap-U uuid device\n"
25230 "\n"
25231 msgstr ""
25232
25233 #. type: =head2
25234 #: ../fish/guestfish-actions.pod:3148
25235 msgid "mkswap-file"
25236 msgstr ""
25237
25238 #. type: verbatim
25239 #: ../fish/guestfish-actions.pod:3150
25240 #, no-wrap
25241 msgid ""
25242 " mkswap-file path\n"
25243 "\n"
25244 msgstr ""
25245
25246 #. type: textblock
25247 #: ../fish/guestfish-actions.pod:3154
25248 msgid ""
25249 "This command just writes a swap file signature to an existing file.  To "
25250 "create the file itself, use something like L</fallocate>."
25251 msgstr ""
25252
25253 #. type: =head2
25254 #: ../fish/guestfish-actions.pod:3157
25255 msgid "modprobe"
25256 msgstr ""
25257
25258 #. type: verbatim
25259 #: ../fish/guestfish-actions.pod:3159
25260 #, no-wrap
25261 msgid ""
25262 " modprobe modulename\n"
25263 "\n"
25264 msgstr ""
25265
25266 #. type: =head2
25267 #: ../fish/guestfish-actions.pod:3166
25268 msgid "mount"
25269 msgstr ""
25270
25271 #. type: verbatim
25272 #: ../fish/guestfish-actions.pod:3168
25273 #, no-wrap
25274 msgid ""
25275 " mount device mountpoint\n"
25276 "\n"
25277 msgstr ""
25278
25279 #. type: textblock
25280 #: ../fish/guestfish-actions.pod:3184
25281 msgid ""
25282 "B<Important note:> When you use this call, the filesystem options C<sync> "
25283 "and C<noatime> are set implicitly.  This was originally done because we "
25284 "thought it would improve reliability, but it turns out that I<-o sync> has a "
25285 "very large negative performance impact and negligible effect on "
25286 "reliability.  Therefore we recommend that you avoid using L</mount> in any "
25287 "code that needs performance, and instead use L</mount-options> (use an empty "
25288 "string for the first parameter if you don't want any options)."
25289 msgstr ""
25290
25291 #. type: =head2
25292 #: ../fish/guestfish-actions.pod:3194
25293 msgid "mount-loop"
25294 msgstr ""
25295
25296 #. type: verbatim
25297 #: ../fish/guestfish-actions.pod:3196
25298 #, no-wrap
25299 msgid ""
25300 " mount-loop file mountpoint\n"
25301 "\n"
25302 msgstr ""
25303
25304 #. type: =head2
25305 #: ../fish/guestfish-actions.pod:3202
25306 msgid "mount-options"
25307 msgstr ""
25308
25309 #. type: verbatim
25310 #: ../fish/guestfish-actions.pod:3204
25311 #, no-wrap
25312 msgid ""
25313 " mount-options options device mountpoint\n"
25314 "\n"
25315 msgstr ""
25316
25317 #. type: textblock
25318 #: ../fish/guestfish-actions.pod:3206
25319 msgid ""
25320 "This is the same as the L</mount> command, but it allows you to set the "
25321 "mount options as for the L<mount(8)> I<-o> flag."
25322 msgstr ""
25323
25324 #. type: =head2
25325 #: ../fish/guestfish-actions.pod:3214
25326 msgid "mount-ro"
25327 msgstr ""
25328
25329 #. type: verbatim
25330 #: ../fish/guestfish-actions.pod:3216
25331 #, no-wrap
25332 msgid ""
25333 " mount-ro device mountpoint\n"
25334 "\n"
25335 msgstr ""
25336
25337 #. type: textblock
25338 #: ../fish/guestfish-actions.pod:3218
25339 msgid ""
25340 "This is the same as the L</mount> command, but it mounts the filesystem with "
25341 "the read-only (I<-o ro>) flag."
25342 msgstr ""
25343
25344 #. type: =head2
25345 #: ../fish/guestfish-actions.pod:3221
25346 msgid "mount-vfs"
25347 msgstr ""
25348
25349 #. type: verbatim
25350 #: ../fish/guestfish-actions.pod:3223
25351 #, no-wrap
25352 msgid ""
25353 " mount-vfs options vfstype device mountpoint\n"
25354 "\n"
25355 msgstr ""
25356
25357 #. type: textblock
25358 #: ../fish/guestfish-actions.pod:3225
25359 msgid ""
25360 "This is the same as the L</mount> command, but it allows you to set both the "
25361 "mount options and the vfstype as for the L<mount(8)> I<-o> and I<-t> flags."
25362 msgstr ""
25363
25364 #. type: =head2
25365 #: ../fish/guestfish-actions.pod:3229
25366 msgid "mountpoints"
25367 msgstr ""
25368
25369 #. type: verbatim
25370 #: ../fish/guestfish-actions.pod:3231
25371 #, no-wrap
25372 msgid ""
25373 " mountpoints\n"
25374 "\n"
25375 msgstr ""
25376
25377 #. type: textblock
25378 #: ../fish/guestfish-actions.pod:3233
25379 msgid ""
25380 "This call is similar to L</mounts>.  That call returns a list of devices.  "
25381 "This one returns a hash table (map) of device name to directory where the "
25382 "device is mounted."
25383 msgstr ""
25384
25385 #. type: =head2
25386 #: ../fish/guestfish-actions.pod:3237
25387 msgid "mounts"
25388 msgstr ""
25389
25390 #. type: verbatim
25391 #: ../fish/guestfish-actions.pod:3239
25392 #, no-wrap
25393 msgid ""
25394 " mounts\n"
25395 "\n"
25396 msgstr ""
25397
25398 #. type: textblock
25399 #: ../fish/guestfish-actions.pod:3246
25400 msgid "See also: L</mountpoints>"
25401 msgstr ""
25402
25403 #. type: =head2
25404 #: ../fish/guestfish-actions.pod:3248
25405 msgid "mv"
25406 msgstr ""
25407
25408 #. type: verbatim
25409 #: ../fish/guestfish-actions.pod:3250
25410 #, no-wrap
25411 msgid ""
25412 " mv src dest\n"
25413 "\n"
25414 msgstr ""
25415
25416 #. type: =head2
25417 #: ../fish/guestfish-actions.pod:3255
25418 msgid "ntfs-3g-probe"
25419 msgstr ""
25420
25421 #. type: verbatim
25422 #: ../fish/guestfish-actions.pod:3257
25423 #, no-wrap
25424 msgid ""
25425 " ntfs-3g-probe true|false device\n"
25426 "\n"
25427 msgstr ""
25428
25429 #. type: =head2
25430 #: ../fish/guestfish-actions.pod:3271
25431 msgid "ntfsresize"
25432 msgstr ""
25433
25434 #. type: verbatim
25435 #: ../fish/guestfish-actions.pod:3273
25436 #, no-wrap
25437 msgid ""
25438 " ntfsresize device\n"
25439 "\n"
25440 msgstr ""
25441
25442 #. type: =head2
25443 #: ../fish/guestfish-actions.pod:3279
25444 msgid "ntfsresize-size"
25445 msgstr ""
25446
25447 #. type: verbatim
25448 #: ../fish/guestfish-actions.pod:3281
25449 #, no-wrap
25450 msgid ""
25451 " ntfsresize-size device size\n"
25452 "\n"
25453 msgstr ""
25454
25455 #. type: textblock
25456 #: ../fish/guestfish-actions.pod:3283
25457 msgid ""
25458 "This command is the same as L</ntfsresize> except that it allows you to "
25459 "specify the new size (in bytes) explicitly."
25460 msgstr ""
25461
25462 #. type: =head2
25463 #: ../fish/guestfish-actions.pod:3286
25464 msgid "part-add"
25465 msgstr ""
25466
25467 #. type: verbatim
25468 #: ../fish/guestfish-actions.pod:3288
25469 #, no-wrap
25470 msgid ""
25471 " part-add device prlogex startsect endsect\n"
25472 "\n"
25473 msgstr ""
25474
25475 #. type: textblock
25476 #: ../fish/guestfish-actions.pod:3290
25477 msgid ""
25478 "This command adds a partition to C<device>.  If there is no partition table "
25479 "on the device, call L</part-init> first."
25480 msgstr ""
25481
25482 #. type: textblock
25483 #: ../fish/guestfish-actions.pod:3302
25484 msgid ""
25485 "Creating a partition which covers the whole disk is not so easy.  Use L</"
25486 "part-disk> to do that."
25487 msgstr ""
25488
25489 #. type: =head2
25490 #: ../fish/guestfish-actions.pod:3305
25491 msgid "part-del"
25492 msgstr ""
25493
25494 #. type: verbatim
25495 #: ../fish/guestfish-actions.pod:3307
25496 #, no-wrap
25497 msgid ""
25498 " part-del device partnum\n"
25499 "\n"
25500 msgstr ""
25501
25502 #. type: =head2
25503 #: ../fish/guestfish-actions.pod:3315
25504 msgid "part-disk"
25505 msgstr ""
25506
25507 #. type: verbatim
25508 #: ../fish/guestfish-actions.pod:3317
25509 #, no-wrap
25510 msgid ""
25511 " part-disk device parttype\n"
25512 "\n"
25513 msgstr ""
25514
25515 #. type: textblock
25516 #: ../fish/guestfish-actions.pod:3319
25517 msgid ""
25518 "This command is simply a combination of L</part-init> followed by L</part-"
25519 "add> to create a single primary partition covering the whole disk."
25520 msgstr ""
25521
25522 #. type: textblock
25523 #: ../fish/guestfish-actions.pod:3323
25524 msgid ""
25525 "C<parttype> is the partition table type, usually C<mbr> or C<gpt>, but other "
25526 "possible values are described in L</part-init>."
25527 msgstr ""
25528
25529 #. type: =head2
25530 #: ../fish/guestfish-actions.pod:3329
25531 msgid "part-get-bootable"
25532 msgstr ""
25533
25534 #. type: verbatim
25535 #: ../fish/guestfish-actions.pod:3331
25536 #, no-wrap
25537 msgid ""
25538 " part-get-bootable device partnum\n"
25539 "\n"
25540 msgstr ""
25541
25542 #. type: textblock
25543 #: ../fish/guestfish-actions.pod:3336
25544 msgid "See also L</part-set-bootable>."
25545 msgstr ""
25546
25547 #. type: =head2
25548 #: ../fish/guestfish-actions.pod:3338
25549 msgid "part-get-mbr-id"
25550 msgstr ""
25551
25552 #. type: verbatim
25553 #: ../fish/guestfish-actions.pod:3340
25554 #, no-wrap
25555 msgid ""
25556 " part-get-mbr-id device partnum\n"
25557 "\n"
25558 msgstr ""
25559
25560 #. type: textblock
25561 #: ../fish/guestfish-actions.pod:3345 ../fish/guestfish-actions.pod:3483
25562 msgid ""
25563 "Note that only MBR (old DOS-style) partitions have type bytes.  You will get "
25564 "undefined results for other partition table types (see L</part-get-"
25565 "parttype>)."
25566 msgstr ""
25567
25568 #. type: =head2
25569 #: ../fish/guestfish-actions.pod:3349
25570 msgid "part-get-parttype"
25571 msgstr ""
25572
25573 #. type: verbatim
25574 #: ../fish/guestfish-actions.pod:3351
25575 #, no-wrap
25576 msgid ""
25577 " part-get-parttype device\n"
25578 "\n"
25579 msgstr ""
25580
25581 #. type: textblock
25582 #: ../fish/guestfish-actions.pod:3356
25583 msgid ""
25584 "Common return values include: C<msdos> (a DOS/Windows style MBR partition "
25585 "table), C<gpt> (a GPT/EFI-style partition table).  Other values are "
25586 "possible, although unusual.  See L</part-init> for a full list."
25587 msgstr ""
25588
25589 #. type: =head2
25590 #: ../fish/guestfish-actions.pod:3361
25591 msgid "part-init"
25592 msgstr ""
25593
25594 #. type: verbatim
25595 #: ../fish/guestfish-actions.pod:3363
25596 #, no-wrap
25597 msgid ""
25598 " part-init device parttype\n"
25599 "\n"
25600 msgstr ""
25601
25602 #. type: textblock
25603 #: ../fish/guestfish-actions.pod:3369
25604 msgid ""
25605 "Initially there are no partitions.  Following this, you should call L</part-"
25606 "add> for each partition required."
25607 msgstr ""
25608
25609 #. type: =head2
25610 #: ../fish/guestfish-actions.pod:3432
25611 msgid "part-list"
25612 msgstr ""
25613
25614 #. type: verbatim
25615 #: ../fish/guestfish-actions.pod:3434
25616 #, no-wrap
25617 msgid ""
25618 " part-list device\n"
25619 "\n"
25620 msgstr ""
25621
25622 #. type: textblock
25623 #: ../fish/guestfish-actions.pod:3449
25624 msgid ""
25625 "Start of the partition I<in bytes>.  To get sectors you have to divide by "
25626 "the device's sector size, see L</blockdev-getss>."
25627 msgstr ""
25628
25629 #. type: =head2
25630 #: ../fish/guestfish-actions.pod:3462
25631 msgid "part-set-bootable"
25632 msgstr ""
25633
25634 #. type: verbatim
25635 #: ../fish/guestfish-actions.pod:3464
25636 #, no-wrap
25637 msgid ""
25638 " part-set-bootable device partnum true|false\n"
25639 "\n"
25640 msgstr ""
25641
25642 #. type: =head2
25643 #: ../fish/guestfish-actions.pod:3473
25644 msgid "part-set-mbr-id"
25645 msgstr ""
25646
25647 #. type: verbatim
25648 #: ../fish/guestfish-actions.pod:3475
25649 #, no-wrap
25650 msgid ""
25651 " part-set-mbr-id device partnum idbyte\n"
25652 "\n"
25653 msgstr ""
25654
25655 #. type: =head2
25656 #: ../fish/guestfish-actions.pod:3487
25657 msgid "part-set-name"
25658 msgstr ""
25659
25660 #. type: verbatim
25661 #: ../fish/guestfish-actions.pod:3489
25662 #, no-wrap
25663 msgid ""
25664 " part-set-name device partnum name\n"
25665 "\n"
25666 msgstr ""
25667
25668 #. type: =head2
25669 #: ../fish/guestfish-actions.pod:3497
25670 msgid "part-to-dev"
25671 msgstr ""
25672
25673 #. type: verbatim
25674 #: ../fish/guestfish-actions.pod:3499
25675 #, no-wrap
25676 msgid ""
25677 " part-to-dev partition\n"
25678 "\n"
25679 msgstr ""
25680
25681 #. type: textblock
25682 #: ../fish/guestfish-actions.pod:3505
25683 msgid ""
25684 "The named partition must exist, for example as a string returned from L</"
25685 "list-partitions>."
25686 msgstr ""
25687
25688 #. type: =head2
25689 #: ../fish/guestfish-actions.pod:3508
25690 msgid "ping-daemon"
25691 msgstr ""
25692
25693 #. type: verbatim
25694 #: ../fish/guestfish-actions.pod:3510
25695 #, no-wrap
25696 msgid ""
25697 " ping-daemon\n"
25698 "\n"
25699 msgstr ""
25700
25701 #. type: =head2
25702 #: ../fish/guestfish-actions.pod:3517
25703 msgid "pread"
25704 msgstr ""
25705
25706 #. type: verbatim
25707 #: ../fish/guestfish-actions.pod:3519
25708 #, no-wrap
25709 msgid ""
25710 " pread path count offset\n"
25711 "\n"
25712 msgstr ""
25713
25714 #. type: textblock
25715 #: ../fish/guestfish-actions.pod:3527
25716 msgid "See also L</pwrite>, L</pread-device>."
25717 msgstr ""
25718
25719 #. type: =head2
25720 #: ../fish/guestfish-actions.pod:3532
25721 msgid "pread-device"
25722 msgstr ""
25723
25724 #. type: verbatim
25725 #: ../fish/guestfish-actions.pod:3534
25726 #, no-wrap
25727 msgid ""
25728 " pread-device device count offset\n"
25729 "\n"
25730 msgstr ""
25731
25732 #. type: textblock
25733 #: ../fish/guestfish-actions.pod:3542
25734 msgid "See also L</pread>."
25735 msgstr ""
25736
25737 #. type: =head2
25738 #: ../fish/guestfish-actions.pod:3547
25739 msgid "pvcreate"
25740 msgstr ""
25741
25742 #. type: verbatim
25743 #: ../fish/guestfish-actions.pod:3549
25744 #, no-wrap
25745 msgid ""
25746 " pvcreate device\n"
25747 "\n"
25748 msgstr ""
25749
25750 #. type: =head2
25751 #: ../fish/guestfish-actions.pod:3555
25752 msgid "pvremove"
25753 msgstr ""
25754
25755 #. type: verbatim
25756 #: ../fish/guestfish-actions.pod:3557
25757 #, no-wrap
25758 msgid ""
25759 " pvremove device\n"
25760 "\n"
25761 msgstr ""
25762
25763 #. type: =head2
25764 #: ../fish/guestfish-actions.pod:3566
25765 msgid "pvresize"
25766 msgstr ""
25767
25768 #. type: verbatim
25769 #: ../fish/guestfish-actions.pod:3568
25770 #, no-wrap
25771 msgid ""
25772 " pvresize device\n"
25773 "\n"
25774 msgstr ""
25775
25776 #. type: =head2
25777 #: ../fish/guestfish-actions.pod:3573
25778 msgid "pvresize-size"
25779 msgstr ""
25780
25781 #. type: verbatim
25782 #: ../fish/guestfish-actions.pod:3575
25783 #, no-wrap
25784 msgid ""
25785 " pvresize-size device size\n"
25786 "\n"
25787 msgstr ""
25788
25789 #. type: textblock
25790 #: ../fish/guestfish-actions.pod:3577
25791 msgid ""
25792 "This command is the same as L</pvresize> except that it allows you to "
25793 "specify the new size (in bytes) explicitly."
25794 msgstr ""
25795
25796 #. type: =head2
25797 #: ../fish/guestfish-actions.pod:3580
25798 msgid "pvs"
25799 msgstr ""
25800
25801 #. type: verbatim
25802 #: ../fish/guestfish-actions.pod:3582
25803 #, no-wrap
25804 msgid ""
25805 " pvs\n"
25806 "\n"
25807 msgstr ""
25808
25809 #. type: textblock
25810 #: ../fish/guestfish-actions.pod:3590
25811 msgid "See also L</pvs-full>."
25812 msgstr ""
25813
25814 #. type: =head2
25815 #: ../fish/guestfish-actions.pod:3592
25816 msgid "pvs-full"
25817 msgstr ""
25818
25819 #. type: verbatim
25820 #: ../fish/guestfish-actions.pod:3594
25821 #, no-wrap
25822 msgid ""
25823 " pvs-full\n"
25824 "\n"
25825 msgstr ""
25826
25827 #. type: =head2
25828 #: ../fish/guestfish-actions.pod:3599
25829 msgid "pvuuid"
25830 msgstr ""
25831
25832 #. type: verbatim
25833 #: ../fish/guestfish-actions.pod:3601
25834 #, no-wrap
25835 msgid ""
25836 " pvuuid device\n"
25837 "\n"
25838 msgstr ""
25839
25840 #. type: =head2
25841 #: ../fish/guestfish-actions.pod:3605
25842 msgid "pwrite"
25843 msgstr ""
25844
25845 #. type: verbatim
25846 #: ../fish/guestfish-actions.pod:3607
25847 #, no-wrap
25848 msgid ""
25849 " pwrite path content offset\n"
25850 "\n"
25851 msgstr ""
25852
25853 #. type: textblock
25854 #: ../fish/guestfish-actions.pod:3618
25855 msgid "See also L</pread>, L</pwrite-device>."
25856 msgstr ""
25857
25858 #. type: =head2
25859 #: ../fish/guestfish-actions.pod:3623
25860 msgid "pwrite-device"
25861 msgstr ""
25862
25863 #. type: verbatim
25864 #: ../fish/guestfish-actions.pod:3625
25865 #, no-wrap
25866 msgid ""
25867 " pwrite-device device content offset\n"
25868 "\n"
25869 msgstr ""
25870
25871 #. type: textblock
25872 #: ../fish/guestfish-actions.pod:3635
25873 msgid "See also L</pwrite>."
25874 msgstr ""
25875
25876 #. type: =head2
25877 #: ../fish/guestfish-actions.pod:3640
25878 msgid "read-file"
25879 msgstr ""
25880
25881 #. type: verbatim
25882 #: ../fish/guestfish-actions.pod:3642
25883 #, no-wrap
25884 msgid ""
25885 " read-file path\n"
25886 "\n"
25887 msgstr ""
25888
25889 #. type: textblock
25890 #: ../fish/guestfish-actions.pod:3647
25891 msgid ""
25892 "Unlike L</cat>, this function can correctly handle files that contain "
25893 "embedded ASCII NUL characters.  However unlike L</download>, this function "
25894 "is limited in the total size of file that can be handled."
25895 msgstr ""
25896
25897 #. type: =head2
25898 #: ../fish/guestfish-actions.pod:3655
25899 msgid "read-lines"
25900 msgstr ""
25901
25902 #. type: verbatim
25903 #: ../fish/guestfish-actions.pod:3657
25904 #, no-wrap
25905 msgid ""
25906 " read-lines path\n"
25907 "\n"
25908 msgstr ""
25909
25910 #. type: textblock
25911 #: ../fish/guestfish-actions.pod:3664
25912 msgid ""
25913 "Note that this function cannot correctly handle binary files (specifically, "
25914 "files containing C<\\0> character which is treated as end of line).  For "
25915 "those you need to use the L</read-file> function which has a more complex "
25916 "interface."
25917 msgstr ""
25918
25919 #. type: =head2
25920 #: ../fish/guestfish-actions.pod:3669
25921 msgid "readdir"
25922 msgstr ""
25923
25924 #. type: verbatim
25925 #: ../fish/guestfish-actions.pod:3671
25926 #, no-wrap
25927 msgid ""
25928 " readdir dir\n"
25929 "\n"
25930 msgstr ""
25931
25932 #. type: textblock
25933 #: ../fish/guestfish-actions.pod:3723
25934 msgid ""
25935 "This function is primarily intended for use by programs.  To get a simple "
25936 "list of names, use L</ls>.  To get a printable directory for human "
25937 "consumption, use L</ll>."
25938 msgstr ""
25939
25940 #. type: =head2
25941 #: ../fish/guestfish-actions.pod:3727
25942 msgid "readlink"
25943 msgstr ""
25944
25945 #. type: verbatim
25946 #: ../fish/guestfish-actions.pod:3729
25947 #, no-wrap
25948 msgid ""
25949 " readlink path\n"
25950 "\n"
25951 msgstr ""
25952
25953 #. type: =head2
25954 #: ../fish/guestfish-actions.pod:3733
25955 msgid "readlinklist"
25956 msgstr ""
25957
25958 #. type: verbatim
25959 #: ../fish/guestfish-actions.pod:3735
25960 #, no-wrap
25961 msgid ""
25962 " readlinklist path 'names ...'\n"
25963 "\n"
25964 msgstr ""
25965
25966 #. type: =head2
25967 #: ../fish/guestfish-actions.pod:3759
25968 msgid "realpath"
25969 msgstr ""
25970
25971 #. type: verbatim
25972 #: ../fish/guestfish-actions.pod:3761
25973 #, no-wrap
25974 msgid ""
25975 " realpath path\n"
25976 "\n"
25977 msgstr ""
25978
25979 #. type: =head2
25980 #: ../fish/guestfish-actions.pod:3766
25981 msgid "removexattr"
25982 msgstr ""
25983
25984 #. type: verbatim
25985 #: ../fish/guestfish-actions.pod:3768
25986 #, no-wrap
25987 msgid ""
25988 " removexattr xattr path\n"
25989 "\n"
25990 msgstr ""
25991
25992 #. type: textblock
25993 #: ../fish/guestfish-actions.pod:3773
25994 msgid "See also: L</lremovexattr>, L<attr(5)>."
25995 msgstr ""
25996
25997 #. type: =head2
25998 #: ../fish/guestfish-actions.pod:3775
25999 msgid "resize2fs"
26000 msgstr ""
26001
26002 #. type: verbatim
26003 #: ../fish/guestfish-actions.pod:3777
26004 #, no-wrap
26005 msgid ""
26006 " resize2fs device\n"
26007 "\n"
26008 msgstr ""
26009
26010 #. type: textblock
26011 #: ../fish/guestfish-actions.pod:3782
26012 msgid ""
26013 "I<Note:> It is sometimes required that you run L</e2fsck-f> on the C<device> "
26014 "before calling this command.  For unknown reasons C<resize2fs> sometimes "
26015 "gives an error about this and sometimes not.  In any case, it is always safe "
26016 "to call L</e2fsck-f> before calling this function."
26017 msgstr ""
26018
26019 #. type: =head2
26020 #: ../fish/guestfish-actions.pod:3788
26021 msgid "resize2fs-M"
26022 msgstr ""
26023
26024 #. type: verbatim
26025 #: ../fish/guestfish-actions.pod:3790
26026 #, no-wrap
26027 msgid ""
26028 " resize2fs-M device\n"
26029 "\n"
26030 msgstr ""
26031
26032 #. type: textblock
26033 #: ../fish/guestfish-actions.pod:3792
26034 msgid ""
26035 "This command is the same as L</resize2fs>, but the filesystem is resized to "
26036 "its minimum size.  This works like the C<-M> option to the C<resize2fs> "
26037 "command."
26038 msgstr ""
26039
26040 #. type: textblock
26041 #: ../fish/guestfish-actions.pod:3796
26042 msgid ""
26043 "To get the resulting size of the filesystem you should call L</tune2fs-l> "
26044 "and read the C<Block size> and C<Block count> values.  These two numbers, "
26045 "multiplied together, give the resulting size of the minimal filesystem in "
26046 "bytes."
26047 msgstr ""
26048
26049 #. type: =head2
26050 #: ../fish/guestfish-actions.pod:3801
26051 msgid "resize2fs-size"
26052 msgstr ""
26053
26054 #. type: verbatim
26055 #: ../fish/guestfish-actions.pod:3803
26056 #, no-wrap
26057 msgid ""
26058 " resize2fs-size device size\n"
26059 "\n"
26060 msgstr ""
26061
26062 #. type: textblock
26063 #: ../fish/guestfish-actions.pod:3805
26064 msgid ""
26065 "This command is the same as L</resize2fs> except that it allows you to "
26066 "specify the new size (in bytes) explicitly."
26067 msgstr ""
26068
26069 #. type: =head2
26070 #: ../fish/guestfish-actions.pod:3808
26071 msgid "rm"
26072 msgstr ""
26073
26074 #. type: verbatim
26075 #: ../fish/guestfish-actions.pod:3810
26076 #, no-wrap
26077 msgid ""
26078 " rm path\n"
26079 "\n"
26080 msgstr ""
26081
26082 #. type: =head2
26083 #: ../fish/guestfish-actions.pod:3814
26084 msgid "rm-rf"
26085 msgstr ""
26086
26087 #. type: verbatim
26088 #: ../fish/guestfish-actions.pod:3816
26089 #, no-wrap
26090 msgid ""
26091 " rm-rf path\n"
26092 "\n"
26093 msgstr ""
26094
26095 #. type: =head2
26096 #: ../fish/guestfish-actions.pod:3822
26097 msgid "rmdir"
26098 msgstr ""
26099
26100 #. type: verbatim
26101 #: ../fish/guestfish-actions.pod:3824
26102 #, no-wrap
26103 msgid ""
26104 " rmdir path\n"
26105 "\n"
26106 msgstr ""
26107
26108 #. type: =head2
26109 #: ../fish/guestfish-actions.pod:3828
26110 msgid "rmmountpoint"
26111 msgstr ""
26112
26113 #. type: verbatim
26114 #: ../fish/guestfish-actions.pod:3830
26115 #, no-wrap
26116 msgid ""
26117 " rmmountpoint exemptpath\n"
26118 "\n"
26119 msgstr ""
26120
26121 #. type: textblock
26122 #: ../fish/guestfish-actions.pod:3832
26123 msgid ""
26124 "This calls removes a mountpoint that was previously created with L</"
26125 "mkmountpoint>.  See L</mkmountpoint> for full details."
26126 msgstr ""
26127
26128 #. type: =head2
26129 #: ../fish/guestfish-actions.pod:3836
26130 msgid "scrub-device"
26131 msgstr ""
26132
26133 #. type: verbatim
26134 #: ../fish/guestfish-actions.pod:3838
26135 #, no-wrap
26136 msgid ""
26137 " scrub-device device\n"
26138 "\n"
26139 msgstr ""
26140
26141 #. type: =head2
26142 #: ../fish/guestfish-actions.pod:3849
26143 msgid "scrub-file"
26144 msgstr ""
26145
26146 #. type: verbatim
26147 #: ../fish/guestfish-actions.pod:3851
26148 #, no-wrap
26149 msgid ""
26150 " scrub-file file\n"
26151 "\n"
26152 msgstr ""
26153
26154 #. type: =head2
26155 #: ../fish/guestfish-actions.pod:3861
26156 msgid "scrub-freespace"
26157 msgstr ""
26158
26159 #. type: verbatim
26160 #: ../fish/guestfish-actions.pod:3863
26161 #, no-wrap
26162 msgid ""
26163 " scrub-freespace dir\n"
26164 "\n"
26165 msgstr ""
26166
26167 #. type: textblock
26168 #: ../fish/guestfish-actions.pod:3865
26169 msgid ""
26170 "This command creates the directory C<dir> and then fills it with files until "
26171 "the filesystem is full, and scrubs the files as for L</scrub-file>, and "
26172 "deletes them.  The intention is to scrub any free space on the partition "
26173 "containing C<dir>."
26174 msgstr ""
26175
26176 #. type: =head2
26177 #: ../fish/guestfish-actions.pod:3874
26178 msgid "set-append"
26179 msgstr ""
26180
26181 #. type: =head2
26182 #: ../fish/guestfish-actions.pod:3876
26183 msgid "append"
26184 msgstr ""
26185
26186 #. type: verbatim
26187 #: ../fish/guestfish-actions.pod:3878
26188 #, no-wrap
26189 msgid ""
26190 " set-append append\n"
26191 "\n"
26192 msgstr ""
26193
26194 #. type: =head2
26195 #: ../fish/guestfish-actions.pod:3889
26196 msgid "set-attach-method"
26197 msgstr ""
26198
26199 #. type: =head2
26200 #: ../fish/guestfish-actions.pod:3891
26201 msgid "attach-method"
26202 msgstr ""
26203
26204 #. type: verbatim
26205 #: ../fish/guestfish-actions.pod:3893
26206 #, no-wrap
26207 msgid ""
26208 " set-attach-method attachmethod\n"
26209 "\n"
26210 msgstr ""
26211
26212 #. type: =head2
26213 #: ../fish/guestfish-actions.pod:3915
26214 msgid "set-autosync"
26215 msgstr ""
26216
26217 #. type: =head2
26218 #: ../fish/guestfish-actions.pod:3917
26219 msgid "autosync"
26220 msgstr ""
26221
26222 #. type: verbatim
26223 #: ../fish/guestfish-actions.pod:3919
26224 #, no-wrap
26225 msgid ""
26226 " set-autosync true|false\n"
26227 "\n"
26228 msgstr ""
26229
26230 #. type: =head2
26231 #: ../fish/guestfish-actions.pod:3929
26232 msgid "set-direct"
26233 msgstr ""
26234
26235 #. type: =head2
26236 #: ../fish/guestfish-actions.pod:3931
26237 msgid "direct"
26238 msgstr ""
26239
26240 #. type: verbatim
26241 #: ../fish/guestfish-actions.pod:3933
26242 #, no-wrap
26243 msgid ""
26244 " set-direct true|false\n"
26245 "\n"
26246 msgstr ""
26247
26248 #. type: textblock
26249 #: ../fish/guestfish-actions.pod:3939
26250 msgid ""
26251 "One consequence of this is that log messages aren't caught by the library "
26252 "and handled by L</set-log-message-callback>, but go straight to stdout."
26253 msgstr ""
26254
26255 #. type: =head2
26256 #: ../fish/guestfish-actions.pod:3948
26257 msgid "set-e2label"
26258 msgstr ""
26259
26260 #. type: verbatim
26261 #: ../fish/guestfish-actions.pod:3950
26262 #, no-wrap
26263 msgid ""
26264 " set-e2label device label\n"
26265 "\n"
26266 msgstr ""
26267
26268 #. type: textblock
26269 #: ../fish/guestfish-actions.pod:3956
26270 msgid ""
26271 "You can use either L</tune2fs-l> or L</get-e2label> to return the existing "
26272 "label on a filesystem."
26273 msgstr ""
26274
26275 #. type: =head2
26276 #: ../fish/guestfish-actions.pod:3959
26277 msgid "set-e2uuid"
26278 msgstr ""
26279
26280 #. type: verbatim
26281 #: ../fish/guestfish-actions.pod:3961
26282 #, no-wrap
26283 msgid ""
26284 " set-e2uuid device uuid\n"
26285 "\n"
26286 msgstr ""
26287
26288 #. type: textblock
26289 #: ../fish/guestfish-actions.pod:3968
26290 msgid ""
26291 "You can use either L</tune2fs-l> or L</get-e2uuid> to return the existing "
26292 "UUID of a filesystem."
26293 msgstr ""
26294
26295 #. type: =head2
26296 #: ../fish/guestfish-actions.pod:3971
26297 msgid "set-memsize"
26298 msgstr ""
26299
26300 #. type: =head2
26301 #: ../fish/guestfish-actions.pod:3973
26302 msgid "memsize"
26303 msgstr ""
26304
26305 #. type: verbatim
26306 #: ../fish/guestfish-actions.pod:3975
26307 #, no-wrap
26308 msgid ""
26309 " set-memsize memsize\n"
26310 "\n"
26311 msgstr ""
26312
26313 #. type: textblock
26314 #: ../fish/guestfish-actions.pod:3977
26315 msgid ""
26316 "This sets the memory size in megabytes allocated to the qemu subprocess.  "
26317 "This only has any effect if called before L</launch>."
26318 msgstr ""
26319
26320 #. type: =head2
26321 #: ../fish/guestfish-actions.pod:3988
26322 msgid "set-network"
26323 msgstr ""
26324
26325 #. type: =head2
26326 #: ../fish/guestfish-actions.pod:3990
26327 msgid "network"
26328 msgstr ""
26329
26330 #. type: verbatim
26331 #: ../fish/guestfish-actions.pod:3992
26332 #, no-wrap
26333 msgid ""
26334 " set-network true|false\n"
26335 "\n"
26336 msgstr ""
26337
26338 #. type: textblock
26339 #: ../fish/guestfish-actions.pod:4000
26340 msgid ""
26341 "You must call this before calling L</launch>, otherwise it has no effect."
26342 msgstr ""
26343
26344 #. type: =head2
26345 #: ../fish/guestfish-actions.pod:4003
26346 msgid "set-path"
26347 msgstr ""
26348
26349 #. type: =head2
26350 #: ../fish/guestfish-actions.pod:4005
26351 msgid "path"
26352 msgstr ""
26353
26354 #. type: verbatim
26355 #: ../fish/guestfish-actions.pod:4007
26356 #, no-wrap
26357 msgid ""
26358 " set-path searchpath\n"
26359 "\n"
26360 msgstr ""
26361
26362 #. type: =head2
26363 #: ../fish/guestfish-actions.pod:4016
26364 msgid "set-qemu"
26365 msgstr ""
26366
26367 #. type: =head2
26368 #: ../fish/guestfish-actions.pod:4018
26369 msgid "qemu"
26370 msgstr ""
26371
26372 #. type: verbatim
26373 #: ../fish/guestfish-actions.pod:4020
26374 #, no-wrap
26375 msgid ""
26376 " set-qemu qemu\n"
26377 "\n"
26378 msgstr ""
26379
26380 #. type: =head2
26381 #: ../fish/guestfish-actions.pod:4040
26382 msgid "set-recovery-proc"
26383 msgstr ""
26384
26385 #. type: =head2
26386 #: ../fish/guestfish-actions.pod:4042
26387 msgid "recovery-proc"
26388 msgstr ""
26389
26390 #. type: verbatim
26391 #: ../fish/guestfish-actions.pod:4044
26392 #, no-wrap
26393 msgid ""
26394 " set-recovery-proc true|false\n"
26395 "\n"
26396 msgstr ""
26397
26398 #. type: textblock
26399 #: ../fish/guestfish-actions.pod:4046
26400 msgid ""
26401 "If this is called with the parameter C<false> then L</launch> does not "
26402 "create a recovery process.  The purpose of the recovery process is to stop "
26403 "runaway qemu processes in the case where the main program aborts abruptly."
26404 msgstr ""
26405
26406 #. type: textblock
26407 #: ../fish/guestfish-actions.pod:4051
26408 msgid ""
26409 "This only has any effect if called before L</launch>, and the default is "
26410 "true."
26411 msgstr ""
26412
26413 #. type: =head2
26414 #: ../fish/guestfish-actions.pod:4060
26415 msgid "set-selinux"
26416 msgstr ""
26417
26418 #. type: =head2
26419 #: ../fish/guestfish-actions.pod:4062
26420 msgid "selinux"
26421 msgstr ""
26422
26423 #. type: verbatim
26424 #: ../fish/guestfish-actions.pod:4064
26425 #, no-wrap
26426 msgid ""
26427 " set-selinux true|false\n"
26428 "\n"
26429 msgstr ""
26430
26431 #. type: =head2
26432 #: ../fish/guestfish-actions.pod:4075
26433 msgid "set-trace"
26434 msgstr ""
26435
26436 #. type: =head2
26437 #: ../fish/guestfish-actions.pod:4077
26438 msgid "trace"
26439 msgstr ""
26440
26441 #. type: verbatim
26442 #: ../fish/guestfish-actions.pod:4079
26443 #, no-wrap
26444 msgid ""
26445 " set-trace true|false\n"
26446 "\n"
26447 msgstr ""
26448
26449 #. type: textblock
26450 #: ../fish/guestfish-actions.pod:4091
26451 msgid ""
26452 "Trace messages are normally sent to C<stderr>, unless you register a "
26453 "callback to send them somewhere else (see L</set-event-callback>)."
26454 msgstr ""
26455
26456 #. type: =head2
26457 #: ../fish/guestfish-actions.pod:4095
26458 msgid "set-verbose"
26459 msgstr ""
26460
26461 #. type: =head2
26462 #: ../fish/guestfish-actions.pod:4097
26463 msgid "verbose"
26464 msgstr ""
26465
26466 #. type: verbatim
26467 #: ../fish/guestfish-actions.pod:4099
26468 #, no-wrap
26469 msgid ""
26470 " set-verbose true|false\n"
26471 "\n"
26472 msgstr ""
26473
26474 #. type: textblock
26475 #: ../fish/guestfish-actions.pod:4106
26476 msgid ""
26477 "Verbose messages are normally sent to C<stderr>, unless you register a "
26478 "callback to send them somewhere else (see L</set-event-callback>)."
26479 msgstr ""
26480
26481 #. type: =head2
26482 #: ../fish/guestfish-actions.pod:4110
26483 msgid "setcon"
26484 msgstr ""
26485
26486 #. type: verbatim
26487 #: ../fish/guestfish-actions.pod:4112
26488 #, no-wrap
26489 msgid ""
26490 " setcon context\n"
26491 "\n"
26492 msgstr ""
26493
26494 #. type: =head2
26495 #: ../fish/guestfish-actions.pod:4119
26496 msgid "setxattr"
26497 msgstr ""
26498
26499 #. type: verbatim
26500 #: ../fish/guestfish-actions.pod:4121
26501 #, no-wrap
26502 msgid ""
26503 " setxattr xattr val vallen path\n"
26504 "\n"
26505 msgstr ""
26506
26507 #. type: textblock
26508 #: ../fish/guestfish-actions.pod:4127
26509 msgid "See also: L</lsetxattr>, L<attr(5)>."
26510 msgstr ""
26511
26512 #. type: =head2
26513 #: ../fish/guestfish-actions.pod:4129
26514 msgid "sfdisk"
26515 msgstr ""
26516
26517 #. type: verbatim
26518 #: ../fish/guestfish-actions.pod:4131
26519 #, no-wrap
26520 msgid ""
26521 " sfdisk device cyls heads sectors 'lines ...'\n"
26522 "\n"
26523 msgstr ""
26524
26525 #. type: textblock
26526 #: ../fish/guestfish-actions.pod:4153
26527 msgid "See also: L</sfdisk-l>, L</sfdisk-N>, L</part-init>"
26528 msgstr ""
26529
26530 #. type: =head2
26531 #: ../fish/guestfish-actions.pod:4159
26532 msgid "sfdiskM"
26533 msgstr ""
26534
26535 #. type: verbatim
26536 #: ../fish/guestfish-actions.pod:4161
26537 #, no-wrap
26538 msgid ""
26539 " sfdiskM device 'lines ...'\n"
26540 "\n"
26541 msgstr ""
26542
26543 #. type: textblock
26544 #: ../fish/guestfish-actions.pod:4163
26545 msgid ""
26546 "This is a simplified interface to the L</sfdisk> command, where partition "
26547 "sizes are specified in megabytes only (rounded to the nearest cylinder) and "
26548 "you don't need to specify the cyls, heads and sectors parameters which were "
26549 "rarely if ever used anyway."
26550 msgstr ""
26551
26552 #. type: textblock
26553 #: ../fish/guestfish-actions.pod:4169
26554 msgid "See also: L</sfdisk>, the L<sfdisk(8)> manpage and L</part-disk>"
26555 msgstr ""
26556
26557 #. type: =head2
26558 #: ../fish/guestfish-actions.pod:4175
26559 msgid "sfdisk-N"
26560 msgstr ""
26561
26562 #. type: verbatim
26563 #: ../fish/guestfish-actions.pod:4177
26564 #, no-wrap
26565 msgid ""
26566 " sfdisk-N device partnum cyls heads sectors line\n"
26567 "\n"
26568 msgstr ""
26569
26570 #. type: textblock
26571 #: ../fish/guestfish-actions.pod:4182
26572 msgid ""
26573 "For other parameters, see L</sfdisk>.  You should usually pass C<0> for the "
26574 "cyls/heads/sectors parameters."
26575 msgstr ""
26576
26577 #. type: textblock
26578 #: ../fish/guestfish-actions.pod:4185
26579 msgid "See also: L</part-add>"
26580 msgstr ""
26581
26582 #. type: =head2
26583 #: ../fish/guestfish-actions.pod:4190
26584 msgid "sfdisk-disk-geometry"
26585 msgstr ""
26586
26587 #. type: verbatim
26588 #: ../fish/guestfish-actions.pod:4192
26589 #, no-wrap
26590 msgid ""
26591 " sfdisk-disk-geometry device\n"
26592 "\n"
26593 msgstr ""
26594
26595 #. type: textblock
26596 #: ../fish/guestfish-actions.pod:4194
26597 msgid ""
26598 "This displays the disk geometry of C<device> read from the partition table.  "
26599 "Especially in the case where the underlying block device has been resized, "
26600 "this can be different from the kernel's idea of the geometry (see L</sfdisk-"
26601 "kernel-geometry>)."
26602 msgstr ""
26603
26604 #. type: =head2
26605 #: ../fish/guestfish-actions.pod:4202
26606 msgid "sfdisk-kernel-geometry"
26607 msgstr ""
26608
26609 #. type: verbatim
26610 #: ../fish/guestfish-actions.pod:4204
26611 #, no-wrap
26612 msgid ""
26613 " sfdisk-kernel-geometry device\n"
26614 "\n"
26615 msgstr ""
26616
26617 #. type: =head2
26618 #: ../fish/guestfish-actions.pod:4211
26619 msgid "sfdisk-l"
26620 msgstr ""
26621
26622 #. type: verbatim
26623 #: ../fish/guestfish-actions.pod:4213
26624 #, no-wrap
26625 msgid ""
26626 " sfdisk-l device\n"
26627 "\n"
26628 msgstr ""
26629
26630 #. type: textblock
26631 #: ../fish/guestfish-actions.pod:4219
26632 msgid "See also: L</part-list>"
26633 msgstr ""
26634
26635 #. type: =head2
26636 #: ../fish/guestfish-actions.pod:4221
26637 msgid "sh"
26638 msgstr ""
26639
26640 #. type: verbatim
26641 #: ../fish/guestfish-actions.pod:4223
26642 #, no-wrap
26643 msgid ""
26644 " sh command\n"
26645 "\n"
26646 msgstr ""
26647
26648 #. type: textblock
26649 #: ../fish/guestfish-actions.pod:4228
26650 msgid "This is like L</command>, but passes the command to:"
26651 msgstr ""
26652
26653 #. type: textblock
26654 #: ../fish/guestfish-actions.pod:4236
26655 msgid "All the provisos about L</command> apply to this call."
26656 msgstr ""
26657
26658 #. type: =head2
26659 #: ../fish/guestfish-actions.pod:4238
26660 msgid "sh-lines"
26661 msgstr ""
26662
26663 #. type: verbatim
26664 #: ../fish/guestfish-actions.pod:4240
26665 #, no-wrap
26666 msgid ""
26667 " sh-lines command\n"
26668 "\n"
26669 msgstr ""
26670
26671 #. type: textblock
26672 #: ../fish/guestfish-actions.pod:4242
26673 msgid "This is the same as L</sh>, but splits the result into a list of lines."
26674 msgstr ""
26675
26676 #. type: textblock
26677 #: ../fish/guestfish-actions.pod:4245
26678 msgid "See also: L</command-lines>"
26679 msgstr ""
26680
26681 #. type: =head2
26682 #: ../fish/guestfish-actions.pod:4247
26683 msgid "sleep"
26684 msgstr ""
26685
26686 #. type: verbatim
26687 #: ../fish/guestfish-actions.pod:4249
26688 #, no-wrap
26689 msgid ""
26690 " sleep secs\n"
26691 "\n"
26692 msgstr ""
26693
26694 #. type: =head2
26695 #: ../fish/guestfish-actions.pod:4253
26696 msgid "stat"
26697 msgstr ""
26698
26699 #. type: verbatim
26700 #: ../fish/guestfish-actions.pod:4255
26701 #, no-wrap
26702 msgid ""
26703 " stat path\n"
26704 "\n"
26705 msgstr ""
26706
26707 #. type: =head2
26708 #: ../fish/guestfish-actions.pod:4261
26709 msgid "statvfs"
26710 msgstr ""
26711
26712 #. type: verbatim
26713 #: ../fish/guestfish-actions.pod:4263
26714 #, no-wrap
26715 msgid ""
26716 " statvfs path\n"
26717 "\n"
26718 msgstr ""
26719
26720 #. type: =head2
26721 #: ../fish/guestfish-actions.pod:4271
26722 msgid "strings"
26723 msgstr ""
26724
26725 #. type: verbatim
26726 #: ../fish/guestfish-actions.pod:4273
26727 #, no-wrap
26728 msgid ""
26729 " strings path\n"
26730 "\n"
26731 msgstr ""
26732
26733 #. type: =head2
26734 #: ../fish/guestfish-actions.pod:4281
26735 msgid "strings-e"
26736 msgstr ""
26737
26738 #. type: verbatim
26739 #: ../fish/guestfish-actions.pod:4283
26740 #, no-wrap
26741 msgid ""
26742 " strings-e encoding path\n"
26743 "\n"
26744 msgstr ""
26745
26746 #. type: textblock
26747 #: ../fish/guestfish-actions.pod:4285
26748 msgid ""
26749 "This is like the L</strings> command, but allows you to specify the encoding "
26750 "of strings that are looked for in the source file C<path>."
26751 msgstr ""
26752
26753 #. type: textblock
26754 #: ../fish/guestfish-actions.pod:4295
26755 msgid ""
26756 "Single 7-bit-byte characters like ASCII and the ASCII-compatible parts of "
26757 "ISO-8859-X (this is what L</strings> uses)."
26758 msgstr ""
26759
26760 #. type: =head2
26761 #: ../fish/guestfish-actions.pod:4327
26762 msgid "swapoff-device"
26763 msgstr ""
26764
26765 #. type: verbatim
26766 #: ../fish/guestfish-actions.pod:4329
26767 #, no-wrap
26768 msgid ""
26769 " swapoff-device device\n"
26770 "\n"
26771 msgstr ""
26772
26773 #. type: textblock
26774 #: ../fish/guestfish-actions.pod:4331
26775 msgid ""
26776 "This command disables the libguestfs appliance swap device or partition "
26777 "named C<device>.  See L</swapon-device>."
26778 msgstr ""
26779
26780 #. type: =head2
26781 #: ../fish/guestfish-actions.pod:4335
26782 msgid "swapoff-file"
26783 msgstr ""
26784
26785 #. type: verbatim
26786 #: ../fish/guestfish-actions.pod:4337
26787 #, no-wrap
26788 msgid ""
26789 " swapoff-file file\n"
26790 "\n"
26791 msgstr ""
26792
26793 #. type: =head2
26794 #: ../fish/guestfish-actions.pod:4341
26795 msgid "swapoff-label"
26796 msgstr ""
26797
26798 #. type: verbatim
26799 #: ../fish/guestfish-actions.pod:4343
26800 #, no-wrap
26801 msgid ""
26802 " swapoff-label label\n"
26803 "\n"
26804 msgstr ""
26805
26806 #. type: =head2
26807 #: ../fish/guestfish-actions.pod:4348
26808 msgid "swapoff-uuid"
26809 msgstr ""
26810
26811 #. type: verbatim
26812 #: ../fish/guestfish-actions.pod:4350
26813 #, no-wrap
26814 msgid ""
26815 " swapoff-uuid uuid\n"
26816 "\n"
26817 msgstr ""
26818
26819 #. type: =head2
26820 #: ../fish/guestfish-actions.pod:4355
26821 msgid "swapon-device"
26822 msgstr ""
26823
26824 #. type: verbatim
26825 #: ../fish/guestfish-actions.pod:4357
26826 #, no-wrap
26827 msgid ""
26828 " swapon-device device\n"
26829 "\n"
26830 msgstr ""
26831
26832 #. type: textblock
26833 #: ../fish/guestfish-actions.pod:4359
26834 msgid ""
26835 "This command enables the libguestfs appliance to use the swap device or "
26836 "partition named C<device>.  The increased memory is made available for all "
26837 "commands, for example those run using L</command> or L</sh>."
26838 msgstr ""
26839
26840 #. type: =head2
26841 #: ../fish/guestfish-actions.pod:4371
26842 msgid "swapon-file"
26843 msgstr ""
26844
26845 #. type: verbatim
26846 #: ../fish/guestfish-actions.pod:4373
26847 #, no-wrap
26848 msgid ""
26849 " swapon-file file\n"
26850 "\n"
26851 msgstr ""
26852
26853 #. type: textblock
26854 #: ../fish/guestfish-actions.pod:4375
26855 msgid ""
26856 "This command enables swap to a file.  See L</swapon-device> for other notes."
26857 msgstr ""
26858
26859 #. type: =head2
26860 #: ../fish/guestfish-actions.pod:4378
26861 msgid "swapon-label"
26862 msgstr ""
26863
26864 #. type: verbatim
26865 #: ../fish/guestfish-actions.pod:4380
26866 #, no-wrap
26867 msgid ""
26868 " swapon-label label\n"
26869 "\n"
26870 msgstr ""
26871
26872 #. type: textblock
26873 #: ../fish/guestfish-actions.pod:4382
26874 msgid ""
26875 "This command enables swap to a labeled swap partition.  See L</swapon-"
26876 "device> for other notes."
26877 msgstr ""
26878
26879 #. type: =head2
26880 #: ../fish/guestfish-actions.pod:4385
26881 msgid "swapon-uuid"
26882 msgstr ""
26883
26884 #. type: verbatim
26885 #: ../fish/guestfish-actions.pod:4387
26886 #, no-wrap
26887 msgid ""
26888 " swapon-uuid uuid\n"
26889 "\n"
26890 msgstr ""
26891
26892 #. type: textblock
26893 #: ../fish/guestfish-actions.pod:4389
26894 msgid ""
26895 "This command enables swap to a swap partition with the given UUID.  See L</"
26896 "swapon-device> for other notes."
26897 msgstr ""
26898
26899 #. type: =head2
26900 #: ../fish/guestfish-actions.pod:4392
26901 msgid "sync"
26902 msgstr ""
26903
26904 #. type: verbatim
26905 #: ../fish/guestfish-actions.pod:4394
26906 #, no-wrap
26907 msgid ""
26908 " sync\n"
26909 "\n"
26910 msgstr ""
26911
26912 #. type: =head2
26913 #: ../fish/guestfish-actions.pod:4402
26914 msgid "tail"
26915 msgstr ""
26916
26917 #. type: verbatim
26918 #: ../fish/guestfish-actions.pod:4404
26919 #, no-wrap
26920 msgid ""
26921 " tail path\n"
26922 "\n"
26923 msgstr ""
26924
26925 #. type: =head2
26926 #: ../fish/guestfish-actions.pod:4412
26927 msgid "tail-n"
26928 msgstr ""
26929
26930 #. type: verbatim
26931 #: ../fish/guestfish-actions.pod:4414
26932 #, no-wrap
26933 msgid ""
26934 " tail-n nrlines path\n"
26935 "\n"
26936 msgstr ""
26937
26938 #. type: =head2
26939 #: ../fish/guestfish-actions.pod:4427
26940 msgid "tar-in"
26941 msgstr ""
26942
26943 #. type: verbatim
26944 #: ../fish/guestfish-actions.pod:4429
26945 #, no-wrap
26946 msgid ""
26947 " tar-in (tarfile|-) directory\n"
26948 "\n"
26949 msgstr ""
26950
26951 #. type: textblock
26952 #: ../fish/guestfish-actions.pod:4434
26953 msgid "To upload a compressed tarball, use L</tgz-in> or L</txz-in>."
26954 msgstr ""
26955
26956 #. type: =head2
26957 #: ../fish/guestfish-actions.pod:4439
26958 msgid "tar-out"
26959 msgstr ""
26960
26961 #. type: verbatim
26962 #: ../fish/guestfish-actions.pod:4441
26963 #, no-wrap
26964 msgid ""
26965 " tar-out directory (tarfile|-)\n"
26966 "\n"
26967 msgstr ""
26968
26969 #. type: textblock
26970 #: ../fish/guestfish-actions.pod:4446
26971 msgid "To download a compressed tarball, use L</tgz-out> or L</txz-out>."
26972 msgstr ""
26973
26974 #. type: =head2
26975 #: ../fish/guestfish-actions.pod:4451
26976 msgid "tgz-in"
26977 msgstr ""
26978
26979 #. type: verbatim
26980 #: ../fish/guestfish-actions.pod:4453
26981 #, no-wrap
26982 msgid ""
26983 " tgz-in (tarball|-) directory\n"
26984 "\n"
26985 msgstr ""
26986
26987 #. type: textblock
26988 #: ../fish/guestfish-actions.pod:4458
26989 msgid "To upload an uncompressed tarball, use L</tar-in>."
26990 msgstr ""
26991
26992 #. type: =head2
26993 #: ../fish/guestfish-actions.pod:4462
26994 msgid "tgz-out"
26995 msgstr ""
26996
26997 #. type: verbatim
26998 #: ../fish/guestfish-actions.pod:4464
26999 #, no-wrap
27000 msgid ""
27001 " tgz-out directory (tarball|-)\n"
27002 "\n"
27003 msgstr ""
27004
27005 #. type: textblock
27006 #: ../fish/guestfish-actions.pod:4469
27007 msgid "To download an uncompressed tarball, use L</tar-out>."
27008 msgstr ""
27009
27010 #. type: =head2
27011 #: ../fish/guestfish-actions.pod:4473
27012 msgid "touch"
27013 msgstr ""
27014
27015 #. type: verbatim
27016 #: ../fish/guestfish-actions.pod:4475
27017 #, no-wrap
27018 msgid ""
27019 " touch path\n"
27020 "\n"
27021 msgstr ""
27022
27023 #. type: =head2
27024 #: ../fish/guestfish-actions.pod:4484
27025 msgid "truncate"
27026 msgstr ""
27027
27028 #. type: verbatim
27029 #: ../fish/guestfish-actions.pod:4486
27030 #, no-wrap
27031 msgid ""
27032 " truncate path\n"
27033 "\n"
27034 msgstr ""
27035
27036 #. type: =head2
27037 #: ../fish/guestfish-actions.pod:4491
27038 msgid "truncate-size"
27039 msgstr ""
27040
27041 #. type: verbatim
27042 #: ../fish/guestfish-actions.pod:4493
27043 #, no-wrap
27044 msgid ""
27045 " truncate-size path size\n"
27046 "\n"
27047 msgstr ""
27048
27049 #. type: textblock
27050 #: ../fish/guestfish-actions.pod:4498
27051 msgid ""
27052 "If the current file size is less than C<size> then the file is extended to "
27053 "the required size with zero bytes.  This creates a sparse file (ie. disk "
27054 "blocks are not allocated for the file until you write to it).  To create a "
27055 "non-sparse file of zeroes, use L</fallocate64> instead."
27056 msgstr ""
27057
27058 #. type: =head2
27059 #: ../fish/guestfish-actions.pod:4504
27060 msgid "tune2fs-l"
27061 msgstr ""
27062
27063 #. type: verbatim
27064 #: ../fish/guestfish-actions.pod:4506
27065 #, no-wrap
27066 msgid ""
27067 " tune2fs-l device\n"
27068 "\n"
27069 msgstr ""
27070
27071 #. type: =head2
27072 #: ../fish/guestfish-actions.pod:4516
27073 msgid "txz-in"
27074 msgstr ""
27075
27076 #. type: verbatim
27077 #: ../fish/guestfish-actions.pod:4518
27078 #, no-wrap
27079 msgid ""
27080 " txz-in (tarball|-) directory\n"
27081 "\n"
27082 msgstr ""
27083
27084 #. type: =head2
27085 #: ../fish/guestfish-actions.pod:4525
27086 msgid "txz-out"
27087 msgstr ""
27088
27089 #. type: verbatim
27090 #: ../fish/guestfish-actions.pod:4527
27091 #, no-wrap
27092 msgid ""
27093 " txz-out directory (tarball|-)\n"
27094 "\n"
27095 msgstr ""
27096
27097 #. type: =head2
27098 #: ../fish/guestfish-actions.pod:4534
27099 msgid "umask"
27100 msgstr ""
27101
27102 #. type: verbatim
27103 #: ../fish/guestfish-actions.pod:4536
27104 #, no-wrap
27105 msgid ""
27106 " umask mask\n"
27107 "\n"
27108 msgstr ""
27109
27110 #. type: textblock
27111 #: ../fish/guestfish-actions.pod:4550
27112 msgid "See also L</get-umask>, L<umask(2)>, L</mknod>, L</mkdir>."
27113 msgstr ""
27114
27115 #. type: =head2
27116 #: ../fish/guestfish-actions.pod:4555
27117 msgid "umount"
27118 msgstr ""
27119
27120 #. type: =head2
27121 #: ../fish/guestfish-actions.pod:4557
27122 msgid "unmount"
27123 msgstr ""
27124
27125 #. type: verbatim
27126 #: ../fish/guestfish-actions.pod:4559
27127 #, no-wrap
27128 msgid ""
27129 " umount pathordevice\n"
27130 "\n"
27131 msgstr ""
27132
27133 #. type: =head2
27134 #: ../fish/guestfish-actions.pod:4565
27135 msgid "umount-all"
27136 msgstr ""
27137
27138 #. type: =head2
27139 #: ../fish/guestfish-actions.pod:4567
27140 msgid "unmount-all"
27141 msgstr ""
27142
27143 #. type: verbatim
27144 #: ../fish/guestfish-actions.pod:4569
27145 #, no-wrap
27146 msgid ""
27147 " umount-all\n"
27148 "\n"
27149 msgstr ""
27150
27151 #. type: =head2
27152 #: ../fish/guestfish-actions.pod:4575
27153 msgid "upload"
27154 msgstr ""
27155
27156 #. type: verbatim
27157 #: ../fish/guestfish-actions.pod:4577
27158 #, no-wrap
27159 msgid ""
27160 " upload (filename|-) remotefilename\n"
27161 "\n"
27162 msgstr ""
27163
27164 #. type: textblock
27165 #: ../fish/guestfish-actions.pod:4584
27166 msgid "See also L</download>."
27167 msgstr ""
27168
27169 #. type: =head2
27170 #: ../fish/guestfish-actions.pod:4588
27171 msgid "upload-offset"
27172 msgstr ""
27173
27174 #. type: verbatim
27175 #: ../fish/guestfish-actions.pod:4590
27176 #, no-wrap
27177 msgid ""
27178 " upload-offset (filename|-) remotefilename offset\n"
27179 "\n"
27180 msgstr ""
27181
27182 #. type: textblock
27183 #: ../fish/guestfish-actions.pod:4602
27184 msgid ""
27185 "Note that there is no limit on the amount of data that can be uploaded with "
27186 "this call, unlike with L</pwrite>, and this call always writes the full "
27187 "amount unless an error occurs."
27188 msgstr ""
27189
27190 #. type: textblock
27191 #: ../fish/guestfish-actions.pod:4607
27192 msgid "See also L</upload>, L</pwrite>."
27193 msgstr ""
27194
27195 #. type: =head2
27196 #: ../fish/guestfish-actions.pod:4611
27197 msgid "utimens"
27198 msgstr ""
27199
27200 #. type: verbatim
27201 #: ../fish/guestfish-actions.pod:4613
27202 #, no-wrap
27203 msgid ""
27204 " utimens path atsecs atnsecs mtsecs mtnsecs\n"
27205 "\n"
27206 msgstr ""
27207
27208 #. type: =head2
27209 #: ../fish/guestfish-actions.pod:4632
27210 msgid "version"
27211 msgstr ""
27212
27213 #. type: verbatim
27214 #: ../fish/guestfish-actions.pod:4634
27215 #, no-wrap
27216 msgid ""
27217 " version\n"
27218 "\n"
27219 msgstr ""
27220
27221 #. type: textblock
27222 #: ../fish/guestfish-actions.pod:4661
27223 msgid ""
27224 "I<Note:> Don't use this call to test for availability of features.  In "
27225 "enterprise distributions we backport features from later versions into "
27226 "earlier versions, making this an unreliable way to test for features.  Use "
27227 "L</available> instead."
27228 msgstr ""
27229
27230 #. type: =head2
27231 #: ../fish/guestfish-actions.pod:4667
27232 msgid "vfs-label"
27233 msgstr ""
27234
27235 #. type: verbatim
27236 #: ../fish/guestfish-actions.pod:4669
27237 #, no-wrap
27238 msgid ""
27239 " vfs-label device\n"
27240 "\n"
27241 msgstr ""
27242
27243 #. type: textblock
27244 #: ../fish/guestfish-actions.pod:4676
27245 msgid "To find a filesystem from the label, use L</findfs-label>."
27246 msgstr ""
27247
27248 #. type: =head2
27249 #: ../fish/guestfish-actions.pod:4678
27250 msgid "vfs-type"
27251 msgstr ""
27252
27253 #. type: verbatim
27254 #: ../fish/guestfish-actions.pod:4680
27255 #, no-wrap
27256 msgid ""
27257 " vfs-type device\n"
27258 "\n"
27259 msgstr ""
27260
27261 #. type: =head2
27262 #: ../fish/guestfish-actions.pod:4690
27263 msgid "vfs-uuid"
27264 msgstr ""
27265
27266 #. type: verbatim
27267 #: ../fish/guestfish-actions.pod:4692
27268 #, no-wrap
27269 msgid ""
27270 " vfs-uuid device\n"
27271 "\n"
27272 msgstr ""
27273
27274 #. type: textblock
27275 #: ../fish/guestfish-actions.pod:4699
27276 msgid "To find a filesystem from the UUID, use L</findfs-uuid>."
27277 msgstr ""
27278
27279 #. type: =head2
27280 #: ../fish/guestfish-actions.pod:4701
27281 msgid "vg-activate"
27282 msgstr ""
27283
27284 #. type: verbatim
27285 #: ../fish/guestfish-actions.pod:4703
27286 #, no-wrap
27287 msgid ""
27288 " vg-activate true|false 'volgroups ...'\n"
27289 "\n"
27290 msgstr ""
27291
27292 #. type: =head2
27293 #: ../fish/guestfish-actions.pod:4716
27294 msgid "vg-activate-all"
27295 msgstr ""
27296
27297 #. type: verbatim
27298 #: ../fish/guestfish-actions.pod:4718
27299 #, no-wrap
27300 msgid ""
27301 " vg-activate-all true|false\n"
27302 "\n"
27303 msgstr ""
27304
27305 #. type: =head2
27306 #: ../fish/guestfish-actions.pod:4728
27307 msgid "vgcreate"
27308 msgstr ""
27309
27310 #. type: verbatim
27311 #: ../fish/guestfish-actions.pod:4730
27312 #, no-wrap
27313 msgid ""
27314 " vgcreate volgroup 'physvols ...'\n"
27315 "\n"
27316 msgstr ""
27317
27318 #. type: =head2
27319 #: ../fish/guestfish-actions.pod:4735
27320 msgid "vglvuuids"
27321 msgstr ""
27322
27323 #. type: verbatim
27324 #: ../fish/guestfish-actions.pod:4737
27325 #, no-wrap
27326 msgid ""
27327 " vglvuuids vgname\n"
27328 "\n"
27329 msgstr ""
27330
27331 #. type: textblock
27332 #: ../fish/guestfish-actions.pod:4742
27333 msgid ""
27334 "You can use this along with L</lvs> and L</lvuuid> calls to associate "
27335 "logical volumes and volume groups."
27336 msgstr ""
27337
27338 #. type: textblock
27339 #: ../fish/guestfish-actions.pod:4745
27340 msgid "See also L</vgpvuuids>."
27341 msgstr ""
27342
27343 #. type: =head2
27344 #: ../fish/guestfish-actions.pod:4747
27345 msgid "vgpvuuids"
27346 msgstr ""
27347
27348 #. type: verbatim
27349 #: ../fish/guestfish-actions.pod:4749
27350 #, no-wrap
27351 msgid ""
27352 " vgpvuuids vgname\n"
27353 "\n"
27354 msgstr ""
27355
27356 #. type: textblock
27357 #: ../fish/guestfish-actions.pod:4754
27358 msgid ""
27359 "You can use this along with L</pvs> and L</pvuuid> calls to associate "
27360 "physical volumes and volume groups."
27361 msgstr ""
27362
27363 #. type: textblock
27364 #: ../fish/guestfish-actions.pod:4757
27365 msgid "See also L</vglvuuids>."
27366 msgstr ""
27367
27368 #. type: =head2
27369 #: ../fish/guestfish-actions.pod:4759
27370 msgid "vgremove"
27371 msgstr ""
27372
27373 #. type: verbatim
27374 #: ../fish/guestfish-actions.pod:4761
27375 #, no-wrap
27376 msgid ""
27377 " vgremove vgname\n"
27378 "\n"
27379 msgstr ""
27380
27381 #. type: =head2
27382 #: ../fish/guestfish-actions.pod:4768
27383 msgid "vgrename"
27384 msgstr ""
27385
27386 #. type: verbatim
27387 #: ../fish/guestfish-actions.pod:4770
27388 #, no-wrap
27389 msgid ""
27390 " vgrename volgroup newvolgroup\n"
27391 "\n"
27392 msgstr ""
27393
27394 #. type: =head2
27395 #: ../fish/guestfish-actions.pod:4774
27396 msgid "vgs"
27397 msgstr ""
27398
27399 #. type: verbatim
27400 #: ../fish/guestfish-actions.pod:4776
27401 #, no-wrap
27402 msgid ""
27403 " vgs\n"
27404 "\n"
27405 msgstr ""
27406
27407 #. type: textblock
27408 #: ../fish/guestfish-actions.pod:4784
27409 msgid "See also L</vgs-full>."
27410 msgstr ""
27411
27412 #. type: =head2
27413 #: ../fish/guestfish-actions.pod:4786
27414 msgid "vgs-full"
27415 msgstr ""
27416
27417 #. type: verbatim
27418 #: ../fish/guestfish-actions.pod:4788
27419 #, no-wrap
27420 msgid ""
27421 " vgs-full\n"
27422 "\n"
27423 msgstr ""
27424
27425 #. type: =head2
27426 #: ../fish/guestfish-actions.pod:4793
27427 msgid "vgscan"
27428 msgstr ""
27429
27430 #. type: verbatim
27431 #: ../fish/guestfish-actions.pod:4795
27432 #, no-wrap
27433 msgid ""
27434 " vgscan\n"
27435 "\n"
27436 msgstr ""
27437
27438 #. type: =head2
27439 #: ../fish/guestfish-actions.pod:4800
27440 msgid "vguuid"
27441 msgstr ""
27442
27443 #. type: verbatim
27444 #: ../fish/guestfish-actions.pod:4802
27445 #, no-wrap
27446 msgid ""
27447 " vguuid vgname\n"
27448 "\n"
27449 msgstr ""
27450
27451 #. type: =head2
27452 #: ../fish/guestfish-actions.pod:4806
27453 msgid "wc-c"
27454 msgstr ""
27455
27456 #. type: verbatim
27457 #: ../fish/guestfish-actions.pod:4808
27458 #, no-wrap
27459 msgid ""
27460 " wc-c path\n"
27461 "\n"
27462 msgstr ""
27463
27464 #. type: =head2
27465 #: ../fish/guestfish-actions.pod:4813
27466 msgid "wc-l"
27467 msgstr ""
27468
27469 #. type: verbatim
27470 #: ../fish/guestfish-actions.pod:4815
27471 #, no-wrap
27472 msgid ""
27473 " wc-l path\n"
27474 "\n"
27475 msgstr ""
27476
27477 #. type: =head2
27478 #: ../fish/guestfish-actions.pod:4820
27479 msgid "wc-w"
27480 msgstr ""
27481
27482 #. type: verbatim
27483 #: ../fish/guestfish-actions.pod:4822
27484 #, no-wrap
27485 msgid ""
27486 " wc-w path\n"
27487 "\n"
27488 msgstr ""
27489
27490 #. type: =head2
27491 #: ../fish/guestfish-actions.pod:4827
27492 msgid "write"
27493 msgstr ""
27494
27495 #. type: verbatim
27496 #: ../fish/guestfish-actions.pod:4829
27497 #, no-wrap
27498 msgid ""
27499 " write path content\n"
27500 "\n"
27501 msgstr ""
27502
27503 #. type: =head2
27504 #: ../fish/guestfish-actions.pod:4837
27505 msgid "write-file"
27506 msgstr ""
27507
27508 #. type: verbatim
27509 #: ../fish/guestfish-actions.pod:4839
27510 #, no-wrap
27511 msgid ""
27512 " write-file path content size\n"
27513 "\n"
27514 msgstr ""
27515
27516 #. type: =head2
27517 #: ../fish/guestfish-actions.pod:4862
27518 msgid "zegrep"
27519 msgstr ""
27520
27521 #. type: verbatim
27522 #: ../fish/guestfish-actions.pod:4864
27523 #, no-wrap
27524 msgid ""
27525 " zegrep regex path\n"
27526 "\n"
27527 msgstr ""
27528
27529 #. type: =head2
27530 #: ../fish/guestfish-actions.pod:4872
27531 msgid "zegrepi"
27532 msgstr ""
27533
27534 #. type: verbatim
27535 #: ../fish/guestfish-actions.pod:4874
27536 #, no-wrap
27537 msgid ""
27538 " zegrepi regex path\n"
27539 "\n"
27540 msgstr ""
27541
27542 #. type: =head2
27543 #: ../fish/guestfish-actions.pod:4882
27544 msgid "zero"
27545 msgstr ""
27546
27547 #. type: verbatim
27548 #: ../fish/guestfish-actions.pod:4884
27549 #, no-wrap
27550 msgid ""
27551 " zero device\n"
27552 "\n"
27553 msgstr ""
27554
27555 #. type: textblock
27556 #: ../fish/guestfish-actions.pod:4892
27557 msgid "See also: L</zero-device>, L</scrub-device>."
27558 msgstr ""
27559
27560 #. type: =head2
27561 #: ../fish/guestfish-actions.pod:4894
27562 msgid "zero-device"
27563 msgstr ""
27564
27565 #. type: verbatim
27566 #: ../fish/guestfish-actions.pod:4896
27567 #, no-wrap
27568 msgid ""
27569 " zero-device device\n"
27570 "\n"
27571 msgstr ""
27572
27573 #. type: textblock
27574 #: ../fish/guestfish-actions.pod:4898
27575 msgid ""
27576 "This command writes zeroes over the entire C<device>.  Compare with L</zero> "
27577 "which just zeroes the first few blocks of a device."
27578 msgstr ""
27579
27580 #. type: =head2
27581 #: ../fish/guestfish-actions.pod:4905
27582 msgid "zerofree"
27583 msgstr ""
27584
27585 #. type: verbatim
27586 #: ../fish/guestfish-actions.pod:4907
27587 #, no-wrap
27588 msgid ""
27589 " zerofree device\n"
27590 "\n"
27591 msgstr ""
27592
27593 #. type: =head2
27594 #: ../fish/guestfish-actions.pod:4920
27595 msgid "zfgrep"
27596 msgstr ""
27597
27598 #. type: verbatim
27599 #: ../fish/guestfish-actions.pod:4922
27600 #, no-wrap
27601 msgid ""
27602 " zfgrep pattern path\n"
27603 "\n"
27604 msgstr ""
27605
27606 #. type: =head2
27607 #: ../fish/guestfish-actions.pod:4930
27608 msgid "zfgrepi"
27609 msgstr ""
27610
27611 #. type: verbatim
27612 #: ../fish/guestfish-actions.pod:4932
27613 #, no-wrap
27614 msgid ""
27615 " zfgrepi pattern path\n"
27616 "\n"
27617 msgstr ""
27618
27619 #. type: =head2
27620 #: ../fish/guestfish-actions.pod:4940
27621 msgid "zfile"
27622 msgstr ""
27623
27624 #. type: verbatim
27625 #: ../fish/guestfish-actions.pod:4942
27626 #, no-wrap
27627 msgid ""
27628 " zfile meth path\n"
27629 "\n"
27630 msgstr ""
27631
27632 #. type: textblock
27633 #: ../fish/guestfish-actions.pod:4949
27634 msgid ""
27635 "Since 1.0.63, use L</file> instead which can now process compressed files."
27636 msgstr ""
27637
27638 #. type: =head2
27639 #: ../fish/guestfish-actions.pod:4959
27640 msgid "zgrep"
27641 msgstr ""
27642
27643 #. type: verbatim
27644 #: ../fish/guestfish-actions.pod:4961
27645 #, no-wrap
27646 msgid ""
27647 " zgrep regex path\n"
27648 "\n"
27649 msgstr ""
27650
27651 #. type: =head2
27652 #: ../fish/guestfish-actions.pod:4969
27653 msgid "zgrepi"
27654 msgstr ""
27655
27656 #. type: verbatim
27657 #: ../fish/guestfish-actions.pod:4971
27658 #, no-wrap
27659 msgid ""
27660 " zgrepi regex path\n"
27661 "\n"
27662 msgstr ""
27663
27664 #. type: =head2
27665 #: ../fish/guestfish-commands.pod:1
27666 msgid "alloc"
27667 msgstr ""
27668
27669 #. type: =head2
27670 #: ../fish/guestfish-commands.pod:3
27671 msgid "allocate"
27672 msgstr ""
27673
27674 #. type: verbatim
27675 #: ../fish/guestfish-commands.pod:5
27676 #, no-wrap
27677 msgid ""
27678 " alloc filename size\n"
27679 "\n"
27680 msgstr ""
27681
27682 #. type: textblock
27683 #: ../fish/guestfish-commands.pod:7
27684 msgid ""
27685 "This creates an empty (zeroed) file of the given size, and then adds so it "
27686 "can be further examined."
27687 msgstr ""
27688
27689 #. type: textblock
27690 #: ../fish/guestfish-commands.pod:10 ../fish/guestfish-commands.pod:168
27691 msgid "For more advanced image creation, see L<qemu-img(1)> utility."
27692 msgstr ""
27693
27694 #. type: textblock
27695 #: ../fish/guestfish-commands.pod:12 ../fish/guestfish-commands.pod:170
27696 msgid "Size can be specified using standard suffixes, eg. C<1M>."
27697 msgstr ""
27698
27699 #. type: textblock
27700 #: ../fish/guestfish-commands.pod:14
27701 msgid ""
27702 "To create a sparse file, use L</sparse> instead.  To create a prepared disk "
27703 "image, see L</PREPARED DISK IMAGES>."
27704 msgstr ""
27705
27706 #. type: =head2
27707 #: ../fish/guestfish-commands.pod:17
27708 msgid "copy-in"
27709 msgstr ""
27710
27711 #. type: verbatim
27712 #: ../fish/guestfish-commands.pod:19
27713 #, no-wrap
27714 msgid ""
27715 " copy-in local [local ...] /remotedir\n"
27716 "\n"
27717 msgstr ""
27718
27719 #. type: textblock
27720 #: ../fish/guestfish-commands.pod:21
27721 msgid ""
27722 "C<copy-in> copies local files or directories recursively into the disk "
27723 "image, placing them in the directory called C</remotedir> (which must "
27724 "exist).  This guestfish meta-command turns into a sequence of L</tar-in> and "
27725 "other commands as necessary."
27726 msgstr ""
27727
27728 #. type: textblock
27729 #: ../fish/guestfish-commands.pod:26
27730 msgid ""
27731 "Multiple local files and directories can be specified, but the last "
27732 "parameter must always be a remote directory.  Wildcards cannot be used."
27733 msgstr ""
27734
27735 #. type: =head2
27736 #: ../fish/guestfish-commands.pod:30
27737 msgid "copy-out"
27738 msgstr ""
27739
27740 #. type: verbatim
27741 #: ../fish/guestfish-commands.pod:32
27742 #, no-wrap
27743 msgid ""
27744 " copy-out remote [remote ...] localdir\n"
27745 "\n"
27746 msgstr ""
27747
27748 #. type: textblock
27749 #: ../fish/guestfish-commands.pod:34
27750 msgid ""
27751 "C<copy-out> copies remote files or directories recursively out of the disk "
27752 "image, placing them on the host disk in a local directory called C<localdir> "
27753 "(which must exist).  This guestfish meta-command turns into a sequence of L</"
27754 "download>, L</tar-out> and other commands as necessary."
27755 msgstr ""
27756
27757 #. type: textblock
27758 #: ../fish/guestfish-commands.pod:40
27759 msgid ""
27760 "Multiple remote files and directories can be specified, but the last "
27761 "parameter must always be a local directory.  To download to the current "
27762 "directory, use C<.> as in:"
27763 msgstr ""
27764
27765 #. type: verbatim
27766 #: ../fish/guestfish-commands.pod:44
27767 #, no-wrap
27768 msgid ""
27769 " copy-out /home .\n"
27770 "\n"
27771 msgstr ""
27772
27773 #. type: textblock
27774 #: ../fish/guestfish-commands.pod:46
27775 msgid ""
27776 "Wildcards cannot be used in the ordinary command, but you can use them with "
27777 "the help of L</glob> like this:"
27778 msgstr ""
27779
27780 #. type: verbatim
27781 #: ../fish/guestfish-commands.pod:49
27782 #, no-wrap
27783 msgid ""
27784 " glob copy-out /home/* .\n"
27785 "\n"
27786 msgstr ""
27787
27788 #. type: =head2
27789 #: ../fish/guestfish-commands.pod:51
27790 msgid "echo"
27791 msgstr ""
27792
27793 #. type: verbatim
27794 #: ../fish/guestfish-commands.pod:53
27795 #, no-wrap
27796 msgid ""
27797 " echo [params ...]\n"
27798 "\n"
27799 msgstr ""
27800
27801 #. type: textblock
27802 #: ../fish/guestfish-commands.pod:55
27803 msgid "This echos the parameters to the terminal."
27804 msgstr ""
27805
27806 #. type: =head2
27807 #: ../fish/guestfish-commands.pod:57
27808 msgid "edit"
27809 msgstr ""
27810
27811 #. type: =head2
27812 #: ../fish/guestfish-commands.pod:59
27813 msgid "vi"
27814 msgstr ""
27815
27816 #. type: =head2
27817 #: ../fish/guestfish-commands.pod:61
27818 msgid "emacs"
27819 msgstr ""
27820
27821 #. type: verbatim
27822 #: ../fish/guestfish-commands.pod:63
27823 #, no-wrap
27824 msgid ""
27825 " edit filename\n"
27826 "\n"
27827 msgstr ""
27828
27829 #. type: textblock
27830 #: ../fish/guestfish-commands.pod:65
27831 msgid ""
27832 "This is used to edit a file.  It downloads the file, edits it locally using "
27833 "your editor, then uploads the result."
27834 msgstr ""
27835
27836 #. type: textblock
27837 #: ../fish/guestfish-commands.pod:68
27838 msgid ""
27839 "The editor is C<$EDITOR>.  However if you use the alternate commands C<vi> "
27840 "or C<emacs> you will get those corresponding editors."
27841 msgstr ""
27842
27843 #. type: =head2
27844 #: ../fish/guestfish-commands.pod:72
27845 msgid "glob"
27846 msgstr ""
27847
27848 #. type: verbatim
27849 #: ../fish/guestfish-commands.pod:74
27850 #, no-wrap
27851 msgid ""
27852 " glob command args...\n"
27853 "\n"
27854 msgstr ""
27855
27856 #. type: textblock
27857 #: ../fish/guestfish-commands.pod:76
27858 msgid ""
27859 "Expand wildcards in any paths in the args list, and run C<command> "
27860 "repeatedly on each matching path."
27861 msgstr ""
27862
27863 #. type: textblock
27864 #: ../fish/guestfish-commands.pod:79
27865 msgid "See L</WILDCARDS AND GLOBBING>."
27866 msgstr ""
27867
27868 #. type: =head2
27869 #: ../fish/guestfish-commands.pod:81
27870 msgid "hexedit"
27871 msgstr ""
27872
27873 #. type: verbatim
27874 #: ../fish/guestfish-commands.pod:83
27875 #, no-wrap
27876 msgid ""
27877 " hexedit <filename|device>\n"
27878 " hexedit <filename|device> <max>\n"
27879 " hexedit <filename|device> <start> <max>\n"
27880 "\n"
27881 msgstr ""
27882
27883 #. type: textblock
27884 #: ../fish/guestfish-commands.pod:87
27885 msgid ""
27886 "Use hexedit (a hex editor) to edit all or part of a binary file or block "
27887 "device."
27888 msgstr ""
27889
27890 #. type: textblock
27891 #: ../fish/guestfish-commands.pod:90
27892 msgid ""
27893 "This command works by downloading potentially the whole file or device, "
27894 "editing it locally, then uploading it.  If the file or device is large, you "
27895 "have to specify which part you wish to edit by using C<max> and/or C<start> "
27896 "C<max> parameters.  C<start> and C<max> are specified in bytes, with the "
27897 "usual modifiers allowed such as C<1M> (1 megabyte)."
27898 msgstr ""
27899
27900 #. type: textblock
27901 #: ../fish/guestfish-commands.pod:97
27902 msgid "For example to edit the first few sectors of a disk you might do:"
27903 msgstr ""
27904
27905 #. type: verbatim
27906 #: ../fish/guestfish-commands.pod:100
27907 #, no-wrap
27908 msgid ""
27909 " hexedit /dev/sda 1M\n"
27910 "\n"
27911 msgstr ""
27912
27913 #. type: textblock
27914 #: ../fish/guestfish-commands.pod:102
27915 msgid ""
27916 "which would allow you to edit anywhere within the first megabyte of the disk."
27917 msgstr ""
27918
27919 #. type: textblock
27920 #: ../fish/guestfish-commands.pod:105
27921 msgid "To edit the superblock of an ext2 filesystem on C</dev/sda1>, do:"
27922 msgstr ""
27923
27924 #. type: verbatim
27925 #: ../fish/guestfish-commands.pod:107
27926 #, no-wrap
27927 msgid ""
27928 " hexedit /dev/sda1 0x400 0x400\n"
27929 "\n"
27930 msgstr ""
27931
27932 #. type: textblock
27933 #: ../fish/guestfish-commands.pod:109
27934 msgid "(assuming the superblock is in the standard location)."
27935 msgstr ""
27936
27937 #. type: textblock
27938 #: ../fish/guestfish-commands.pod:111
27939 msgid ""
27940 "This command requires the external L<hexedit(1)> program.  You can specify "
27941 "another program to use by setting the C<HEXEDITOR> environment variable."
27942 msgstr ""
27943
27944 #. type: textblock
27945 #: ../fish/guestfish-commands.pod:115
27946 msgid "See also L</hexdump>."
27947 msgstr ""
27948
27949 #. type: =head2
27950 #: ../fish/guestfish-commands.pod:117
27951 msgid "lcd"
27952 msgstr ""
27953
27954 #. type: verbatim
27955 #: ../fish/guestfish-commands.pod:119
27956 #, no-wrap
27957 msgid ""
27958 " lcd directory\n"
27959 "\n"
27960 msgstr ""
27961
27962 #. type: textblock
27963 #: ../fish/guestfish-commands.pod:121
27964 msgid ""
27965 "Change the local directory, ie. the current directory of guestfish itself."
27966 msgstr ""
27967
27968 #. type: textblock
27969 #: ../fish/guestfish-commands.pod:124
27970 msgid "Note that C<!cd> won't do what you might expect."
27971 msgstr ""
27972
27973 #. type: =head2
27974 #: ../fish/guestfish-commands.pod:126
27975 msgid "man"
27976 msgstr ""
27977
27978 #. type: =head2
27979 #: ../fish/guestfish-commands.pod:128
27980 msgid "manual"
27981 msgstr ""
27982
27983 #. type: verbatim
27984 #: ../fish/guestfish-commands.pod:130
27985 #, no-wrap
27986 msgid ""
27987 "  man\n"
27988 "\n"
27989 msgstr ""
27990
27991 #. type: textblock
27992 #: ../fish/guestfish-commands.pod:132
27993 msgid "Opens the manual page for guestfish."
27994 msgstr ""
27995
27996 #. type: =head2
27997 #: ../fish/guestfish-commands.pod:134
27998 msgid "more"
27999 msgstr ""
28000
28001 #. type: =head2
28002 #: ../fish/guestfish-commands.pod:136
28003 msgid "less"
28004 msgstr ""
28005
28006 #. type: verbatim
28007 #: ../fish/guestfish-commands.pod:138
28008 #, no-wrap
28009 msgid ""
28010 " more filename\n"
28011 "\n"
28012 msgstr ""
28013
28014 #. type: verbatim
28015 #: ../fish/guestfish-commands.pod:140
28016 #, no-wrap
28017 msgid ""
28018 " less filename\n"
28019 "\n"
28020 msgstr ""
28021
28022 #. type: textblock
28023 #: ../fish/guestfish-commands.pod:142
28024 msgid "This is used to view a file."
28025 msgstr ""
28026
28027 #. type: textblock
28028 #: ../fish/guestfish-commands.pod:144
28029 msgid ""
28030 "The default viewer is C<$PAGER>.  However if you use the alternate command "
28031 "C<less> you will get the C<less> command specifically."
28032 msgstr ""
28033
28034 #. type: =head2
28035 #: ../fish/guestfish-commands.pod:147
28036 msgid "reopen"
28037 msgstr ""
28038
28039 #. type: verbatim
28040 #: ../fish/guestfish-commands.pod:149
28041 #, no-wrap
28042 msgid ""
28043 "  reopen\n"
28044 "\n"
28045 msgstr ""
28046
28047 #. type: textblock
28048 #: ../fish/guestfish-commands.pod:151
28049 msgid ""
28050 "Close and reopen the libguestfs handle.  It is not necessary to use this "
28051 "normally, because the handle is closed properly when guestfish exits.  "
28052 "However this is occasionally useful for testing."
28053 msgstr ""
28054
28055 #. type: =head2
28056 #: ../fish/guestfish-commands.pod:155
28057 msgid "sparse"
28058 msgstr ""
28059
28060 #. type: verbatim
28061 #: ../fish/guestfish-commands.pod:157
28062 #, no-wrap
28063 msgid ""
28064 " sparse filename size\n"
28065 "\n"
28066 msgstr ""
28067
28068 #. type: textblock
28069 #: ../fish/guestfish-commands.pod:159
28070 msgid ""
28071 "This creates an empty sparse file of the given size, and then adds so it can "
28072 "be further examined."
28073 msgstr ""
28074
28075 #. type: textblock
28076 #: ../fish/guestfish-commands.pod:162
28077 msgid ""
28078 "In all respects it works the same as the L</alloc> command, except that the "
28079 "image file is allocated sparsely, which means that disk blocks are not "
28080 "assigned to the file until they are needed.  Sparse disk files only use "
28081 "space when written to, but they are slower and there is a danger you could "
28082 "run out of real disk space during a write operation."
28083 msgstr ""
28084
28085 #. type: =head2
28086 #: ../fish/guestfish-commands.pod:172
28087 msgid "supported"
28088 msgstr ""
28089
28090 #. type: verbatim
28091 #: ../fish/guestfish-commands.pod:174
28092 #, no-wrap
28093 msgid ""
28094 " supported\n"
28095 "\n"
28096 msgstr ""
28097
28098 #. type: textblock
28099 #: ../fish/guestfish-commands.pod:176
28100 msgid ""
28101 "This command returns a list of the optional groups known to the daemon, and "
28102 "indicates which ones are supported by this build of the libguestfs appliance."
28103 msgstr ""
28104
28105 #. type: textblock
28106 #: ../fish/guestfish-commands.pod:180
28107 msgid "See also L<guestfs(3)/AVAILABILITY>."
28108 msgstr ""
28109
28110 #. type: =head2
28111 #: ../fish/guestfish-commands.pod:182
28112 msgid "time"
28113 msgstr ""
28114
28115 #. type: verbatim
28116 #: ../fish/guestfish-commands.pod:184
28117 #, no-wrap
28118 msgid ""
28119 " time command args...\n"
28120 "\n"
28121 msgstr ""
28122
28123 #. type: textblock
28124 #: ../fish/guestfish-commands.pod:186
28125 msgid ""
28126 "Run the command as usual, but print the elapsed time afterwards.  This can "
28127 "be useful for benchmarking operations."
28128 msgstr ""
28129
28130 #. type: textblock
28131 #: ../test-tool/libguestfs-test-tool.pod:5
28132 msgid "libguestfs-test-tool - End user tests for libguestfs"
28133 msgstr ""
28134
28135 #. type: verbatim
28136 #: ../test-tool/libguestfs-test-tool.pod:9
28137 #, no-wrap
28138 msgid ""
28139 " libguestfs-test-tool [--options]\n"
28140 "\n"
28141 msgstr ""
28142
28143 #. type: textblock
28144 #: ../test-tool/libguestfs-test-tool.pod:13
28145 msgid ""
28146 "libguestfs-test-tool is a test program shipped with libguestfs to end users "
28147 "and developers, to allow them to check basic libguestfs functionality is "
28148 "working.  This is needed because libguestfs occasionally breaks for reasons "
28149 "beyond our control: usually because of changes in the underlying qemu or "
28150 "kernel packages, or the host environment."
28151 msgstr ""
28152
28153 #. type: textblock
28154 #: ../test-tool/libguestfs-test-tool.pod:20
28155 msgid "If you suspect a problem in libguestfs, then just run:"
28156 msgstr ""
28157
28158 #. type: verbatim
28159 #: ../test-tool/libguestfs-test-tool.pod:22
28160 #, no-wrap
28161 msgid ""
28162 " libguestfs-test-tool\n"
28163 "\n"
28164 msgstr ""
28165
28166 #. type: textblock
28167 #: ../test-tool/libguestfs-test-tool.pod:24
28168 msgid "It will print lots of diagnostic messages."
28169 msgstr ""
28170
28171 #. type: textblock
28172 #: ../test-tool/libguestfs-test-tool.pod:26
28173 msgid "If it runs to completion successfully, you will see this near the end:"
28174 msgstr ""
28175
28176 #. type: verbatim
28177 #: ../test-tool/libguestfs-test-tool.pod:28
28178 #, no-wrap
28179 msgid ""
28180 " ===== TEST FINISHED OK =====\n"
28181 "\n"
28182 msgstr ""
28183
28184 #. type: textblock
28185 #: ../test-tool/libguestfs-test-tool.pod:30
28186 msgid "and the test tool will exit with code 0."
28187 msgstr ""
28188
28189 #. type: textblock
28190 #: ../test-tool/libguestfs-test-tool.pod:32
28191 msgid ""
28192 "If it fails (and/or exits with non-zero error code), please paste the "
28193 "B<complete, unedited> output of the test tool into a bug report.  More "
28194 "information about reporting bugs can be found on the L<http://libguestfs.org/"
28195 "> website."
28196 msgstr ""
28197
28198 #. type: =item
28199 #: ../test-tool/libguestfs-test-tool.pod:41
28200 msgid "I<--help>"
28201 msgstr ""
28202
28203 #. type: textblock
28204 #: ../test-tool/libguestfs-test-tool.pod:43
28205 msgid "Display short usage information and exit."
28206 msgstr ""
28207
28208 #. type: =item
28209 #: ../test-tool/libguestfs-test-tool.pod:45
28210 msgid "I<--qemu qemu_binary>"
28211 msgstr ""
28212
28213 #. type: textblock
28214 #: ../test-tool/libguestfs-test-tool.pod:47
28215 msgid ""
28216 "If you have downloaded another qemu binary, point this option at the full "
28217 "path of the binary to try it."
28218 msgstr ""
28219
28220 #. type: =item
28221 #: ../test-tool/libguestfs-test-tool.pod:50
28222 msgid "I<--qemudir qemu_source_dir>"
28223 msgstr ""
28224
28225 #. type: textblock
28226 #: ../test-tool/libguestfs-test-tool.pod:52
28227 msgid ""
28228 "If you have compiled qemu from source, point this option at the source "
28229 "directory to try it."
28230 msgstr ""
28231
28232 #. type: =item
28233 #: ../test-tool/libguestfs-test-tool.pod:55
28234 msgid "I<--timeout N>"
28235 msgstr ""
28236
28237 #. type: textblock
28238 #: ../test-tool/libguestfs-test-tool.pod:57
28239 msgid ""
28240 "Set the launch timeout to C<N> seconds.  The default is 120 seconds which "
28241 "does not usually need to be adjusted unless your machine is very slow."
28242 msgstr ""
28243
28244 #. type: =head1
28245 #: ../test-tool/libguestfs-test-tool.pod:63
28246 msgid "TRYING OUT A DIFFERENT VERSION OF QEMU"
28247 msgstr ""
28248
28249 #. type: textblock
28250 #: ../test-tool/libguestfs-test-tool.pod:65
28251 msgid ""
28252 "If you have compiled another version of qemu from source and would like to "
28253 "try that, then you can use the I<--qemudir> option to point to the qemu "
28254 "source directory."
28255 msgstr ""
28256
28257 #. type: textblock
28258 #: ../test-tool/libguestfs-test-tool.pod:69
28259 msgid ""
28260 "If you have downloaded a qemu binary from somewhere, use the I<--qemu> "
28261 "option to point to the binary."
28262 msgstr ""
28263
28264 #. type: textblock
28265 #: ../test-tool/libguestfs-test-tool.pod:72
28266 msgid ""
28267 "When using an alternate qemu with libguestfs, usually you would need to "
28268 "write a qemu wrapper script (see section I<QEMU WRAPPERS> in L<guestfs(3)"
28269 ">).  libguestfs-test-tool writes a temporary qemu wrapper script when you "
28270 "use either of the I<--qemudir> or I<--qemu> options."
28271 msgstr ""
28272
28273 #. type: textblock
28274 #: ../test-tool/libguestfs-test-tool.pod:79
28275 msgid ""
28276 "libguestfs-test-tool returns I<0> if the tests completed without error, or "
28277 "I<1> if there was an error."
28278 msgstr ""
28279
28280 #. type: textblock
28281 #: ../test-tool/libguestfs-test-tool.pod:84
28282 msgid ""
28283 "For the full list of environment variables which may affect libguestfs, "
28284 "please see the L<guestfs(3)> manual page."
28285 msgstr ""
28286
28287 #. type: textblock
28288 #: ../test-tool/libguestfs-test-tool.pod:89
28289 msgid "L<guestfs(3)>, L<http://libguestfs.org/>, L<http://qemu.org/>."
28290 msgstr ""
28291
28292 #. type: textblock
28293 #: ../fuse/guestmount.pod:5
28294 msgid ""
28295 "guestmount - Mount a guest filesystem on the host using FUSE and libguestfs"
28296 msgstr ""
28297
28298 #. type: verbatim
28299 #: ../fuse/guestmount.pod:9
28300 #, no-wrap
28301 msgid ""
28302 " guestmount [--options] -a disk.img -m device [--ro] mountpoint\n"
28303 "\n"
28304 msgstr ""
28305
28306 #. type: verbatim
28307 #: ../fuse/guestmount.pod:11
28308 #, no-wrap
28309 msgid ""
28310 " guestmount [--options] -a disk.img -i [--ro] mountpoint\n"
28311 "\n"
28312 msgstr ""
28313
28314 #. type: verbatim
28315 #: ../fuse/guestmount.pod:13
28316 #, no-wrap
28317 msgid ""
28318 " guestmount [--options] -d Guest -i [--ro] mountpoint\n"
28319 "\n"
28320 msgstr ""
28321
28322 #. type: textblock
28323 #: ../fuse/guestmount.pod:17
28324 msgid ""
28325 "You must I<not> use C<guestmount> in read-write mode on live virtual "
28326 "machines.  If you do this, you risk disk corruption in the VM."
28327 msgstr ""
28328
28329 #. type: textblock
28330 #: ../fuse/guestmount.pod:22
28331 msgid ""
28332 "The guestmount program can be used to mount virtual machine filesystems and "
28333 "other disk images on the host.  It uses libguestfs for access to the guest "
28334 "filesystem, and FUSE (the \"filesystem in userspace\") to make it appear as "
28335 "a mountable device."
28336 msgstr ""
28337
28338 #. type: textblock
28339 #: ../fuse/guestmount.pod:27
28340 msgid ""
28341 "Along with other options, you have to give at least one device (I<-a> "
28342 "option) or libvirt domain (I<-d> option), and at least one mountpoint (I<-m> "
28343 "option) or use the I<-i> inspection option.  How this works is better "
28344 "explained in the L<guestfish(1)> manual page, or by looking at the examples "
28345 "below."
28346 msgstr ""
28347
28348 #. type: textblock
28349 #: ../fuse/guestmount.pod:33
28350 msgid ""
28351 "FUSE lets you mount filesystems as non-root.  The mountpoint must be owned "
28352 "by you, and the filesystem will not be visible to any other users unless you "
28353 "make certain global configuration changes to C</etc/fuse.conf>.  To unmount "
28354 "the filesystem, use the C<fusermount -u> command."
28355 msgstr ""
28356
28357 #. type: textblock
28358 #: ../fuse/guestmount.pod:41
28359 msgid ""
28360 "For a typical Windows guest which has its main filesystem on the first "
28361 "partition:"
28362 msgstr ""
28363
28364 #. type: verbatim
28365 #: ../fuse/guestmount.pod:44
28366 #, no-wrap
28367 msgid ""
28368 " guestmount -a windows.img -m /dev/sda1 --ro /mnt\n"
28369 "\n"
28370 msgstr ""
28371
28372 #. type: textblock
28373 #: ../fuse/guestmount.pod:46
28374 msgid ""
28375 "For a typical Linux guest which has a /boot filesystem on the first "
28376 "partition, and the root filesystem on a logical volume:"
28377 msgstr ""
28378
28379 #. type: verbatim
28380 #: ../fuse/guestmount.pod:49
28381 #, no-wrap
28382 msgid ""
28383 " guestmount -a linux.img -m /dev/VG/LV -m /dev/sda1:/boot --ro /mnt\n"
28384 "\n"
28385 msgstr ""
28386
28387 #. type: textblock
28388 #: ../fuse/guestmount.pod:51
28389 msgid "To get libguestfs to detect guest mountpoints for you:"
28390 msgstr ""
28391
28392 #. type: verbatim
28393 #: ../fuse/guestmount.pod:53
28394 #, no-wrap
28395 msgid ""
28396 " guestmount -a guest.img -i --ro /mnt\n"
28397 "\n"
28398 msgstr ""
28399
28400 #. type: textblock
28401 #: ../fuse/guestmount.pod:55
28402 msgid "For a libvirt guest called \"Guest\" you could do:"
28403 msgstr ""
28404
28405 #. type: verbatim
28406 #: ../fuse/guestmount.pod:57
28407 #, no-wrap
28408 msgid ""
28409 " guestmount -d Guest -i --ro /mnt\n"
28410 "\n"
28411 msgstr ""
28412
28413 #. type: textblock
28414 #: ../fuse/guestmount.pod:59
28415 msgid ""
28416 "If you don't know what filesystems are contained in a guest or disk image, "
28417 "use L<virt-filesystems(1)> first:"
28418 msgstr ""
28419
28420 #. type: verbatim
28421 #: ../fuse/guestmount.pod:62
28422 #, no-wrap
28423 msgid ""
28424 " virt-filesystems MyGuest\n"
28425 "\n"
28426 msgstr ""
28427
28428 #. type: textblock
28429 #: ../fuse/guestmount.pod:64
28430 msgid ""
28431 "If you want to trace the libguestfs calls but without excessive debugging "
28432 "information, we recommend:"
28433 msgstr ""
28434
28435 #. type: verbatim
28436 #: ../fuse/guestmount.pod:67
28437 #, no-wrap
28438 msgid ""
28439 " guestmount [...] --trace /mnt\n"
28440 "\n"
28441 msgstr ""
28442
28443 #. type: textblock
28444 #: ../fuse/guestmount.pod:69
28445 msgid "If you want to debug the program, we recommend:"
28446 msgstr ""
28447
28448 #. type: verbatim
28449 #: ../fuse/guestmount.pod:71
28450 #, no-wrap
28451 msgid ""
28452 " guestmount [...] --trace --verbose /mnt\n"
28453 "\n"
28454 msgstr ""
28455
28456 #. type: =item
28457 #: ../fuse/guestmount.pod:77
28458 msgid "B<-a image> | B<--add image>"
28459 msgstr ""
28460
28461 #. type: textblock
28462 #: ../fuse/guestmount.pod:79
28463 msgid "Add a block device or virtual machine image."
28464 msgstr ""
28465
28466 #. type: =item
28467 #: ../fuse/guestmount.pod:84
28468 msgid "B<-c URI> | B<--connect URI>"
28469 msgstr ""
28470
28471 #. type: =item
28472 #: ../fuse/guestmount.pod:90
28473 msgid "B<-d libvirt-domain> | B<--domain libvirt-domain>"
28474 msgstr ""
28475
28476 #. type: =item
28477 #: ../fuse/guestmount.pod:96
28478 msgid "B<--dir-cache-timeout N>"
28479 msgstr ""
28480
28481 #. type: textblock
28482 #: ../fuse/guestmount.pod:98
28483 msgid ""
28484 "Set the readdir cache timeout to I<N> seconds, the default being 60 "
28485 "seconds.  The readdir cache [actually, there are several semi-independent "
28486 "caches] is populated after a readdir(2) call with the stat and extended "
28487 "attributes of the files in the directory, in anticipation that they will be "
28488 "requested soon after."
28489 msgstr ""
28490
28491 #. type: textblock
28492 #: ../fuse/guestmount.pod:104
28493 msgid ""
28494 "There is also a different attribute cache implemented by FUSE (see the FUSE "
28495 "option I<-o attr_timeout>), but the FUSE cache does not anticipate future "
28496 "requests, only cache existing ones."
28497 msgstr ""
28498
28499 #. type: =item
28500 #: ../fuse/guestmount.pod:115
28501 msgid "B<--format=raw|qcow2|..> | B<--format>"
28502 msgstr ""
28503
28504 #. type: textblock
28505 #: ../fuse/guestmount.pod:122
28506 msgid ""
28507 "If you have untrusted raw-format guest disk images, you should use this "
28508 "option to specify the disk format.  This avoids a possible security problem "
28509 "with malicious guests (CVE-2010-3851).  See also L<guestfs(3)/"
28510 "guestfs_add_drive_opts>."
28511 msgstr ""
28512
28513 #. type: =item
28514 #: ../fuse/guestmount.pod:127
28515 msgid "B<--fuse-help>"
28516 msgstr ""
28517
28518 #. type: textblock
28519 #: ../fuse/guestmount.pod:129
28520 msgid "Display help on special FUSE options (see I<-o> below)."
28521 msgstr ""
28522
28523 #. type: textblock
28524 #: ../fuse/guestmount.pod:133
28525 msgid "Display brief help and exit."
28526 msgstr ""
28527
28528 #. type: =item
28529 #: ../fuse/guestmount.pod:135
28530 msgid "B<-i> | B<--inspector>"
28531 msgstr ""
28532
28533 #. type: textblock
28534 #: ../fuse/guestmount.pod:155
28535 msgid ""
28536 "Mount the named partition or logical volume on the given mountpoint B<in the "
28537 "guest> (this has nothing to do with mountpoints in the host)."
28538 msgstr ""
28539
28540 #. type: textblock
28541 #: ../fuse/guestmount.pod:158
28542 msgid ""
28543 "If the mountpoint is omitted, it defaults to C</>.  You have to mount "
28544 "something on C</>."
28545 msgstr ""
28546
28547 #. type: =item
28548 #: ../fuse/guestmount.pod:171
28549 msgid "B<-n> | B<--no-sync>"
28550 msgstr ""
28551
28552 #. type: textblock
28553 #: ../fuse/guestmount.pod:173
28554 msgid ""
28555 "By default, we attempt to sync the guest disk when the FUSE mountpoint is "
28556 "unmounted.  If you specify this option, then we don't attempt to sync the "
28557 "disk.  See the discussion of autosync in the L<guestfs(3)> manpage."
28558 msgstr ""
28559
28560 #. type: =item
28561 #: ../fuse/guestmount.pod:178
28562 msgid "B<-o option> | B<--option option>"
28563 msgstr ""
28564
28565 #. type: textblock
28566 #: ../fuse/guestmount.pod:180
28567 msgid "Pass extra options to FUSE."
28568 msgstr ""
28569
28570 #. type: textblock
28571 #: ../fuse/guestmount.pod:182
28572 msgid ""
28573 "To get a list of all the extra options supported by FUSE, use the command "
28574 "below.  Note that only the FUSE I<-o> options can be passed, and only some "
28575 "of them are a good idea."
28576 msgstr ""
28577
28578 #. type: verbatim
28579 #: ../fuse/guestmount.pod:186
28580 #, no-wrap
28581 msgid ""
28582 " guestmount --fuse-help\n"
28583 "\n"
28584 msgstr ""
28585
28586 #. type: textblock
28587 #: ../fuse/guestmount.pod:188
28588 msgid "Some potentially useful FUSE options:"
28589 msgstr ""
28590
28591 #. type: =item
28592 #: ../fuse/guestmount.pod:192
28593 msgid "B<-o allow_other>"
28594 msgstr ""
28595
28596 #. type: textblock
28597 #: ../fuse/guestmount.pod:194
28598 msgid "Allow other users to see the filesystem."
28599 msgstr ""
28600
28601 #. type: =item
28602 #: ../fuse/guestmount.pod:196
28603 msgid "B<-o attr_timeout=N>"
28604 msgstr ""
28605
28606 #. type: textblock
28607 #: ../fuse/guestmount.pod:198
28608 msgid "Enable attribute caching by FUSE, and set the timeout to I<N> seconds."
28609 msgstr ""
28610
28611 #. type: =item
28612 #: ../fuse/guestmount.pod:200
28613 msgid "B<-o kernel_cache>"
28614 msgstr ""
28615
28616 #. type: textblock
28617 #: ../fuse/guestmount.pod:202
28618 msgid ""
28619 "Allow the kernel to cache files (reduces the number of reads that have to go "
28620 "through the L<guestfs(3)> API).  This is generally a good idea if you can "
28621 "afford the extra memory usage."
28622 msgstr ""
28623
28624 #. type: =item
28625 #: ../fuse/guestmount.pod:206
28626 msgid "B<-o uid=N> B<-o gid=N>"
28627 msgstr ""
28628
28629 #. type: textblock
28630 #: ../fuse/guestmount.pod:208
28631 msgid ""
28632 "Use these options to map all UIDs and GIDs inside the guest filesystem to "
28633 "the chosen values."
28634 msgstr ""
28635
28636 #. type: =item
28637 #: ../fuse/guestmount.pod:213
28638 msgid "B<-r> | B<--ro>"
28639 msgstr ""
28640
28641 #. type: textblock
28642 #: ../fuse/guestmount.pod:215
28643 msgid ""
28644 "Add devices and mount everything read-only.  Also disallow writes and make "
28645 "the disk appear read-only to FUSE."
28646 msgstr ""
28647
28648 #. type: textblock
28649 #: ../fuse/guestmount.pod:218
28650 msgid ""
28651 "This is highly recommended if you are not going to edit the guest disk.  If "
28652 "the guest is running and this option is I<not> supplied, then there is a "
28653 "strong risk of disk corruption in the guest.  We try to prevent this from "
28654 "happening, but it is not always possible."
28655 msgstr ""
28656
28657 #. type: textblock
28658 #: ../fuse/guestmount.pod:223
28659 msgid "See also L<guestfish(1)/OPENING DISKS FOR READ AND WRITE>."
28660 msgstr ""
28661
28662 #. type: textblock
28663 #: ../fuse/guestmount.pod:227
28664 msgid "Enable SELinux support for the guest."
28665 msgstr ""
28666
28667 #. type: =item
28668 #: ../fuse/guestmount.pod:229
28669 msgid "B<-v> | B<--verbose>"
28670 msgstr ""
28671
28672 #. type: textblock
28673 #: ../fuse/guestmount.pod:231
28674 msgid "Enable verbose messages from underlying libguestfs."
28675 msgstr ""
28676
28677 #. type: =item
28678 #: ../fuse/guestmount.pod:233
28679 msgid "B<-V> | B<--version>"
28680 msgstr ""
28681
28682 #. type: textblock
28683 #: ../fuse/guestmount.pod:235
28684 msgid "Display the program version and exit."
28685 msgstr ""
28686
28687 #. type: =item
28688 #: ../fuse/guestmount.pod:237
28689 msgid "B<-w> | B<--rw>"
28690 msgstr ""
28691
28692 #. type: textblock
28693 #: ../fuse/guestmount.pod:242 ../fuse/guestmount.pod:263
28694 msgid "See L<guestfish(1)/OPENING DISKS FOR READ AND WRITE>."
28695 msgstr ""
28696
28697 #. type: =item
28698 #: ../fuse/guestmount.pod:244
28699 msgid "B<-x> | B<--trace>"
28700 msgstr ""
28701
28702 #. type: textblock
28703 #: ../fuse/guestmount.pod:246
28704 msgid "Trace libguestfs calls and entry into each FUSE function."
28705 msgstr ""
28706
28707 #. type: textblock
28708 #: ../fuse/guestmount.pod:248
28709 msgid "This also stops the daemon from forking into the background."
28710 msgstr ""
28711
28712 #. type: textblock
28713 #: ../fuse/guestmount.pod:269
28714 msgid ""
28715 "L<guestfish(1)>, L<virt-inspector(1)>, L<virt-cat(1)>, L<virt-edit(1)>, "
28716 "L<virt-tar(1)>, L<guestfs(3)>, L<http://libguestfs.org/>, L<http://fuse.sf."
28717 "net/>."
28718 msgstr ""
28719
28720 #. type: textblock
28721 #: ../fuse/guestmount.pod:284
28722 msgid "Copyright (C) 2009-2010 Red Hat Inc.  L<http://libguestfs.org/>"
28723 msgstr ""
28724
28725 #. type: textblock
28726 #: ../tools/virt-edit.pl:34
28727 msgid "virt-edit - Edit a file in a virtual machine"
28728 msgstr ""
28729
28730 #. type: verbatim
28731 #: ../tools/virt-edit.pl:38
28732 #, no-wrap
28733 msgid ""
28734 " virt-edit [--options] domname file\n"
28735 "\n"
28736 msgstr ""
28737
28738 #. type: verbatim
28739 #: ../tools/virt-edit.pl:40
28740 #, no-wrap
28741 msgid ""
28742 " virt-edit [--options] disk.img [disk.img ...] file\n"
28743 "\n"
28744 msgstr ""
28745
28746 #. type: verbatim
28747 #: ../tools/virt-edit.pl:42
28748 #, no-wrap
28749 msgid ""
28750 " virt-edit [domname|disk.img] file -e 'expr'\n"
28751 "\n"
28752 msgstr ""
28753
28754 #. type: textblock
28755 #: ../tools/virt-edit.pl:46
28756 msgid ""
28757 "You must I<not> use C<virt-edit> on live virtual machines.  If you do this, "
28758 "you risk disk corruption in the VM.  C<virt-edit> tries to stop you from "
28759 "doing this, but doesn't catch all cases."
28760 msgstr ""
28761
28762 #. type: textblock
28763 #: ../tools/virt-edit.pl:52
28764 msgid ""
28765 "C<virt-edit> is a command line tool to edit C<file> where C<file> exists in "
28766 "the named virtual machine (or disk image)."
28767 msgstr ""
28768
28769 #. type: textblock
28770 #: ../tools/virt-edit.pl:55
28771 msgid "If you want to just view a file, use L<virt-cat(1)>."
28772 msgstr ""
28773
28774 #. type: textblock
28775 #: ../tools/virt-edit.pl:57
28776 msgid ""
28777 "For more complex cases you should look at the L<guestfish(1)> tool (see L</"
28778 "USING GUESTFISH> below)."
28779 msgstr ""
28780
28781 #. type: textblock
28782 #: ../tools/virt-edit.pl:60
28783 msgid ""
28784 "C<virt-edit> cannot be used to create a new file, nor to edit multiple "
28785 "files.  L<guestfish(1)> can do that and much more."
28786 msgstr ""
28787
28788 #. type: textblock
28789 #: ../tools/virt-edit.pl:65
28790 msgid "Edit the named files interactively:"
28791 msgstr ""
28792
28793 #. type: verbatim
28794 #: ../tools/virt-edit.pl:67
28795 #, no-wrap
28796 msgid ""
28797 " virt-edit mydomain /boot/grub/grub.conf\n"
28798 "\n"
28799 msgstr ""
28800
28801 #. type: verbatim
28802 #: ../tools/virt-edit.pl:69
28803 #, no-wrap
28804 msgid ""
28805 " virt-edit mydomain /etc/passwd\n"
28806 "\n"
28807 msgstr ""
28808
28809 #. type: textblock
28810 #: ../tools/virt-edit.pl:71
28811 msgid "For Windows guests, some Windows paths are understood:"
28812 msgstr ""
28813
28814 #. type: verbatim
28815 #: ../tools/virt-edit.pl:73
28816 #, no-wrap
28817 msgid ""
28818 " virt-edit mywindomain 'c:\\autoexec.bat'\n"
28819 "\n"
28820 msgstr ""
28821
28822 #. type: textblock
28823 #: ../tools/virt-edit.pl:75
28824 msgid ""
28825 "You can also edit files non-interactively (see L</NON-INTERACTIVE EDITING> "
28826 "below).  To change the init default level to 5:"
28827 msgstr ""
28828
28829 #. type: verbatim
28830 #: ../tools/virt-edit.pl:79
28831 #, no-wrap
28832 msgid ""
28833 " virt-edit mydomain /etc/inittab -e 's/^id:.*/id:5:initdefault:/'\n"
28834 "\n"
28835 msgstr ""
28836
28837 #. type: textblock
28838 #: ../tools/virt-edit.pl:91 ../tools/virt-win-reg.pl:106
28839 #: ../tools/virt-list-filesystems.pl:63 ../tools/virt-tar.pl:113
28840 #: ../tools/virt-make-fs.pl:163 ../tools/virt-list-partitions.pl:64
28841 msgid "Display brief help."
28842 msgstr ""
28843
28844 #. type: textblock
28845 #: ../tools/virt-edit.pl:99 ../tools/virt-win-reg.pl:114
28846 #: ../tools/virt-list-filesystems.pl:71 ../tools/virt-tar.pl:121
28847 #: ../tools/virt-make-fs.pl:171 ../tools/virt-list-partitions.pl:72
28848 msgid "Display version number and exit."
28849 msgstr ""
28850
28851 #. type: =item
28852 #: ../tools/virt-edit.pl:105
28853 msgid "B<--backup extension> | B<-b extension>"
28854 msgstr ""
28855
28856 #. type: textblock
28857 #: ../tools/virt-edit.pl:107
28858 msgid ""
28859 "Create a backup of the original file I<in the guest disk image>.  The backup "
28860 "has the original filename with C<extension> added."
28861 msgstr ""
28862
28863 #. type: textblock
28864 #: ../tools/virt-edit.pl:110
28865 msgid ""
28866 "Usually the first character of C<extension> would be a dot C<.> so you would "
28867 "write:"
28868 msgstr ""
28869
28870 #. type: verbatim
28871 #: ../tools/virt-edit.pl:113
28872 #, no-wrap
28873 msgid ""
28874 " virt-edit -b .orig [etc]\n"
28875 "\n"
28876 msgstr ""
28877
28878 #. type: textblock
28879 #: ../tools/virt-edit.pl:115
28880 msgid "By default, no backup file is made."
28881 msgstr ""
28882
28883 #. type: =item
28884 #: ../tools/virt-edit.pl:121 ../tools/virt-win-reg.pl:128
28885 #: ../tools/virt-list-filesystems.pl:77 ../tools/virt-tar.pl:127
28886 #: ../tools/virt-list-partitions.pl:78
28887 msgid "B<--connect URI> | B<-c URI>"
28888 msgstr ""
28889
28890 #. type: textblock
28891 #: ../tools/virt-edit.pl:123 ../tools/virt-win-reg.pl:130
28892 #: ../tools/virt-list-filesystems.pl:79 ../tools/virt-tar.pl:129
28893 #: ../tools/virt-list-partitions.pl:80
28894 msgid ""
28895 "If using libvirt, connect to the given I<URI>.  If omitted, then we connect "
28896 "to the default libvirt hypervisor."
28897 msgstr ""
28898
28899 #. type: textblock
28900 #: ../tools/virt-edit.pl:126 ../tools/virt-win-reg.pl:133
28901 #: ../tools/virt-list-filesystems.pl:82 ../tools/virt-tar.pl:132
28902 #: ../tools/virt-list-partitions.pl:83
28903 msgid ""
28904 "If you specify guest block devices directly, then libvirt is not used at all."
28905 msgstr ""
28906
28907 #. type: =item
28908 #: ../tools/virt-edit.pl:133 ../tools/virt-win-reg.pl:140
28909 #: ../tools/virt-list-filesystems.pl:89 ../tools/virt-tar.pl:139
28910 #: ../tools/virt-list-partitions.pl:90
28911 msgid "B<--format> raw"
28912 msgstr ""
28913
28914 #. type: textblock
28915 #: ../tools/virt-edit.pl:135 ../tools/virt-win-reg.pl:142
28916 #: ../tools/virt-list-filesystems.pl:91 ../tools/virt-tar.pl:141
28917 #: ../tools/virt-list-partitions.pl:92
28918 msgid ""
28919 "Specify the format of disk images given on the command line.  If this is "
28920 "omitted then the format is autodetected from the content of the disk image."
28921 msgstr ""
28922
28923 #. type: textblock
28924 #: ../tools/virt-edit.pl:139 ../tools/virt-win-reg.pl:146
28925 #: ../tools/virt-list-filesystems.pl:95 ../tools/virt-tar.pl:145
28926 #: ../tools/virt-list-partitions.pl:96
28927 msgid ""
28928 "If disk images are requested from libvirt, then this program asks libvirt "
28929 "for this information.  In this case, the value of the format parameter is "
28930 "ignored."
28931 msgstr ""
28932
28933 #. type: textblock
28934 #: ../tools/virt-edit.pl:143 ../tools/virt-win-reg.pl:150
28935 #: ../tools/virt-list-filesystems.pl:99 ../tools/virt-tar.pl:149
28936 #: ../tools/virt-list-partitions.pl:100
28937 msgid ""
28938 "If working with untrusted raw-format guest disk images, you should ensure "
28939 "the format is always specified."
28940 msgstr ""
28941
28942 #. type: =item
28943 #: ../tools/virt-edit.pl:150
28944 msgid "B<--expr EXPR> | B<-e EXPR>"
28945 msgstr ""
28946
28947 #. type: textblock
28948 #: ../tools/virt-edit.pl:152
28949 msgid ""
28950 "Instead of launching the external editor, non-interactively apply the Perl "
28951 "expression C<EXPR> to each line in the file.  See L</NON-INTERACTIVE "
28952 "EDITING> below."
28953 msgstr ""
28954
28955 #. type: textblock
28956 #: ../tools/virt-edit.pl:156
28957 msgid ""
28958 "Be careful to properly quote the expression to prevent it from being altered "
28959 "by the shell."
28960 msgstr ""
28961
28962 #. type: =head1
28963 #: ../tools/virt-edit.pl:280
28964 msgid "NON-INTERACTIVE EDITING"
28965 msgstr ""
28966
28967 #. type: textblock
28968 #: ../tools/virt-edit.pl:282
28969 msgid ""
28970 "C<virt-edit> normally calls out to C<$EDITOR> (or vi) so the system "
28971 "administrator can interactively edit the file."
28972 msgstr ""
28973
28974 #. type: textblock
28975 #: ../tools/virt-edit.pl:285
28976 msgid ""
28977 "There are two ways also to use C<virt-edit> from scripts in order to make "
28978 "automated edits to files.  (Note that although you I<can> use C<virt-edit> "
28979 "like this, it's less error-prone to write scripts directly using the "
28980 "libguestfs API and Augeas for configuration file editing.)"
28981 msgstr ""
28982
28983 #. type: textblock
28984 #: ../tools/virt-edit.pl:291
28985 msgid ""
28986 "The first method is to temporarily set C<$EDITOR> to any script or program "
28987 "you want to run.  The script is invoked as C<$EDITOR tmpfile> and it should "
28988 "update C<tmpfile> in place however it likes."
28989 msgstr ""
28990
28991 #. type: textblock
28992 #: ../tools/virt-edit.pl:295
28993 msgid ""
28994 "The second method is to use the C<-e> parameter of C<virt-edit> to run a "
28995 "short Perl snippet in the style of L<sed(1)>.  For example to replace all "
28996 "instances of C<foo> with C<bar> in a file:"
28997 msgstr ""
28998
28999 #. type: verbatim
29000 #: ../tools/virt-edit.pl:299
29001 #, no-wrap
29002 msgid ""
29003 " virt-edit domname filename -e 's/foo/bar/'\n"
29004 "\n"
29005 msgstr ""
29006
29007 #. type: textblock
29008 #: ../tools/virt-edit.pl:301
29009 msgid ""
29010 "The full power of Perl regular expressions can be used (see L<perlre(1)>).  "
29011 "For example to delete root's password you could do:"
29012 msgstr ""
29013
29014 #. type: verbatim
29015 #: ../tools/virt-edit.pl:304
29016 #, no-wrap
29017 msgid ""
29018 " virt-edit domname /etc/passwd -e 's/^root:.*?:/root::/'\n"
29019 "\n"
29020 msgstr ""
29021
29022 #. type: textblock
29023 #: ../tools/virt-edit.pl:306
29024 msgid ""
29025 "What really happens is that the snippet is evaluated as a Perl expression "
29026 "for each line of the file.  The line, including the final C<\\n>, is passed "
29027 "in C<$_> and the expression should update C<$_> or leave it unchanged."
29028 msgstr ""
29029
29030 #. type: textblock
29031 #: ../tools/virt-edit.pl:311
29032 msgid ""
29033 "To delete a line, set C<$_> to the empty string.  For example, to delete the "
29034 "C<apache> user account from the password file you can do:"
29035 msgstr ""
29036
29037 #. type: verbatim
29038 #: ../tools/virt-edit.pl:314
29039 #, no-wrap
29040 msgid ""
29041 " virt-edit mydomain /etc/passwd -e '$_ = \"\" if /^apache:/'\n"
29042 "\n"
29043 msgstr ""
29044
29045 #. type: textblock
29046 #: ../tools/virt-edit.pl:316
29047 msgid ""
29048 "To insert a line, prepend or append it to C<$_>.  However appending lines to "
29049 "the end of the file is rather difficult this way since there is no concept "
29050 "of \"last line of the file\" - your expression just doesn't get called "
29051 "again.  You might want to use the first method (setting C<$EDITOR>) if you "
29052 "want to do this."
29053 msgstr ""
29054
29055 #. type: textblock
29056 #: ../tools/virt-edit.pl:322
29057 msgid ""
29058 "The variable C<$lineno> contains the current line number.  As is "
29059 "traditional, the first line in the file is number C<1>."
29060 msgstr ""
29061
29062 #. type: textblock
29063 #: ../tools/virt-edit.pl:325
29064 msgid ""
29065 "The return value from the expression is ignored, but the expression may call "
29066 "C<die> in order to abort the whole program, leaving the original file "
29067 "untouched."
29068 msgstr ""
29069
29070 #. type: textblock
29071 #: ../tools/virt-edit.pl:329
29072 msgid ""
29073 "Remember when matching the end of a line that C<$_> may contain the final C<"
29074 "\\n>, or (for DOS files) C<\\r\\n>, or if the file does not end with a "
29075 "newline then neither of these.  Thus to match or substitute some text at the "
29076 "end of a line, use this regular expression:"
29077 msgstr ""
29078
29079 #. type: verbatim
29080 #: ../tools/virt-edit.pl:334
29081 #, no-wrap
29082 msgid ""
29083 " /some text(\\r?\\n)?$/\n"
29084 "\n"
29085 msgstr ""
29086
29087 #. type: textblock
29088 #: ../tools/virt-edit.pl:336
29089 msgid ""
29090 "Alternately, use the perl C<chomp> function, being careful not to chomp C<"
29091 "$_> itself (since that would remove all newlines from the file):"
29092 msgstr ""
29093
29094 #. type: verbatim
29095 #: ../tools/virt-edit.pl:340
29096 #, no-wrap
29097 msgid ""
29098 " my $m = $_; chomp $m; $m =~ /some text$/\n"
29099 "\n"
29100 msgstr ""
29101
29102 #. type: textblock
29103 #: ../tools/virt-edit.pl:344
29104 msgid ""
29105 "C<virt-edit> has a limited ability to understand Windows drive letters and "
29106 "paths (eg. C<E:\\foo\\bar.txt>)."
29107 msgstr ""
29108
29109 #. type: textblock
29110 #: ../tools/virt-edit.pl:347
29111 msgid "If and only if the guest is running Windows then:"
29112 msgstr ""
29113
29114 #. type: textblock
29115 #: ../tools/virt-edit.pl:353
29116 msgid ""
29117 "Drive letter prefixes like C<C:> are resolved against the Windows Registry "
29118 "to the correct filesystem."
29119 msgstr ""
29120
29121 #. type: textblock
29122 #: ../tools/virt-edit.pl:358
29123 msgid ""
29124 "Any backslash (C<\\>) characters in the path are replaced with forward "
29125 "slashes so that libguestfs can process it."
29126 msgstr ""
29127
29128 #. type: textblock
29129 #: ../tools/virt-edit.pl:363
29130 msgid ""
29131 "The path is resolved case insensitively to locate the file that should be "
29132 "edited."
29133 msgstr ""
29134
29135 #. type: textblock
29136 #: ../tools/virt-edit.pl:368
29137 msgid "There are some known shortcomings:"
29138 msgstr ""
29139
29140 #. type: textblock
29141 #: ../tools/virt-edit.pl:374
29142 msgid "Some NTFS symbolic links may not be followed correctly."
29143 msgstr ""
29144
29145 #. type: textblock
29146 #: ../tools/virt-edit.pl:378
29147 msgid "NTFS junction points that cross filesystems are not followed."
29148 msgstr ""
29149
29150 #. type: =head1
29151 #: ../tools/virt-edit.pl:435
29152 msgid "USING GUESTFISH"
29153 msgstr ""
29154
29155 #. type: textblock
29156 #: ../tools/virt-edit.pl:437
29157 msgid ""
29158 "L<guestfish(1)> is a more powerful, lower level tool which you can use when "
29159 "C<virt-edit> doesn't work."
29160 msgstr ""
29161
29162 #. type: textblock
29163 #: ../tools/virt-edit.pl:440
29164 msgid "Using C<virt-edit> is approximately equivalent to doing:"
29165 msgstr ""
29166
29167 #. type: verbatim
29168 #: ../tools/virt-edit.pl:442
29169 #, no-wrap
29170 msgid ""
29171 " guestfish --rw -i -d domname edit /file\n"
29172 "\n"
29173 msgstr ""
29174
29175 #. type: textblock
29176 #: ../tools/virt-edit.pl:444
29177 msgid ""
29178 "where C<domname> is the name of the libvirt guest, and C</file> is the full "
29179 "path to the file."
29180 msgstr ""
29181
29182 #. type: textblock
29183 #: ../tools/virt-edit.pl:447
29184 msgid ""
29185 "The command above uses libguestfs's guest inspection feature and so does not "
29186 "work on guests that libguestfs cannot inspect, or on things like arbitrary "
29187 "disk images that don't contain guests.  To edit a file on a disk image "
29188 "directly, use:"
29189 msgstr ""
29190
29191 #. type: verbatim
29192 #: ../tools/virt-edit.pl:452
29193 #, no-wrap
29194 msgid ""
29195 " guestfish --rw -a disk.img -m /dev/sda1 edit /file\n"
29196 "\n"
29197 msgstr ""
29198
29199 #. type: textblock
29200 #: ../tools/virt-edit.pl:454
29201 msgid ""
29202 "where C<disk.img> is the disk image, C</dev/sda1> is the filesystem within "
29203 "the disk image to edit, and C</file> is the full path to the file."
29204 msgstr ""
29205
29206 #. type: textblock
29207 #: ../tools/virt-edit.pl:458
29208 msgid ""
29209 "C<virt-edit> cannot create new files.  Use the guestfish commands C<touch>, "
29210 "C<write> or C<upload> instead:"
29211 msgstr ""
29212
29213 #. type: verbatim
29214 #: ../tools/virt-edit.pl:461
29215 #, no-wrap
29216 msgid ""
29217 " guestfish --rw -i -d domname touch /newfile\n"
29218 "\n"
29219 msgstr ""
29220
29221 #. type: verbatim
29222 #: ../tools/virt-edit.pl:463
29223 #, no-wrap
29224 msgid ""
29225 " guestfish --rw -i -d domname write /newfile \"new content\"\n"
29226 "\n"
29227 msgstr ""
29228
29229 #. type: verbatim
29230 #: ../tools/virt-edit.pl:465
29231 #, no-wrap
29232 msgid ""
29233 " guestfish --rw -i -d domname upload localfile /newfile\n"
29234 "\n"
29235 msgstr ""
29236
29237 #. type: textblock
29238 #: ../tools/virt-edit.pl:467
29239 msgid ""
29240 "C<virt-edit> cannot edit multiple files, but guestfish can do it like this:"
29241 msgstr ""
29242
29243 #. type: verbatim
29244 #: ../tools/virt-edit.pl:470
29245 #, no-wrap
29246 msgid ""
29247 " guestfish --rw -i -d domname edit /file1 : edit /file2\n"
29248 "\n"
29249 msgstr ""
29250
29251 #. type: =item
29252 #: ../tools/virt-edit.pl:480
29253 msgid "C<EDITOR>"
29254 msgstr ""
29255
29256 #. type: textblock
29257 #: ../tools/virt-edit.pl:482
29258 msgid ""
29259 "If set, this string is used as the editor.  It may contain arguments, eg. C<"
29260 "\"emacs -nw\">"
29261 msgstr ""
29262
29263 #. type: textblock
29264 #: ../tools/virt-edit.pl:485
29265 msgid "If not set, C<vi> is used."
29266 msgstr ""
29267
29268 #. type: =head1
29269 #: ../tools/virt-edit.pl:489 ../tools/virt-win-reg.pl:559
29270 #: ../tools/virt-list-filesystems.pl:182 ../tools/virt-tar.pl:279
29271 #: ../tools/virt-make-fs.pl:532 ../tools/virt-list-partitions.pl:250
29272 msgid "SHELL QUOTING"
29273 msgstr ""
29274
29275 #. type: textblock
29276 #: ../tools/virt-edit.pl:491 ../tools/virt-win-reg.pl:567
29277 #: ../tools/virt-list-filesystems.pl:184 ../tools/virt-tar.pl:281
29278 #: ../tools/virt-make-fs.pl:534 ../tools/virt-list-partitions.pl:252
29279 msgid ""
29280 "Libvirt guest names can contain arbitrary characters, some of which have "
29281 "meaning to the shell such as C<#> and space.  You may need to quote or "
29282 "escape these characters on the command line.  See the shell manual page L<sh"
29283 "(1)> for details."
29284 msgstr ""
29285
29286 #. type: textblock
29287 #: ../tools/virt-edit.pl:498
29288 msgid ""
29289 "L<guestfs(3)>, L<guestfish(1)>, L<virt-cat(1)>, L<virt-copy-in(1)>, L<virt-"
29290 "tar-in(1)>, L<Sys::Guestfs(3)>, L<Sys::Guestfs::Lib(3)>, L<Sys::Virt(3)>, "
29291 "L<http://libguestfs.org/>, L<perl(1)>, L<perlre(1)>."
29292 msgstr ""
29293
29294 #. type: =head1
29295 #: ../tools/virt-edit.pl:510 ../tools/virt-win-reg.pl:598
29296 #: ../tools/virt-list-filesystems.pl:202 ../tools/virt-tar.pl:301
29297 #: ../tools/virt-make-fs.pl:564 ../tools/virt-list-partitions.pl:269
29298 msgid "AUTHOR"
29299 msgstr ""
29300
29301 #. type: textblock
29302 #: ../tools/virt-edit.pl:512 ../tools/virt-win-reg.pl:600
29303 #: ../tools/virt-list-filesystems.pl:204 ../tools/virt-tar.pl:303
29304 #: ../tools/virt-make-fs.pl:566 ../tools/virt-list-partitions.pl:271
29305 msgid "Richard W.M. Jones L<http://people.redhat.com/~rjones/>"
29306 msgstr ""
29307
29308 #. type: textblock
29309 #: ../tools/virt-edit.pl:516
29310 msgid "Copyright (C) 2009-2011 Red Hat Inc."
29311 msgstr ""
29312
29313 #. type: textblock
29314 #: ../tools/virt-win-reg.pl:37
29315 msgid ""
29316 "virt-win-reg - Export and merge Windows Registry entries from a Windows guest"
29317 msgstr ""
29318
29319 #. type: verbatim
29320 #: ../tools/virt-win-reg.pl:41
29321 #, no-wrap
29322 msgid ""
29323 " virt-win-reg domname 'HKLM\\Path\\To\\Subkey'\n"
29324 "\n"
29325 msgstr ""
29326
29327 #. type: verbatim
29328 #: ../tools/virt-win-reg.pl:43
29329 #, no-wrap
29330 msgid ""
29331 " virt-win-reg domname 'HKLM\\Path\\To\\Subkey' name\n"
29332 "\n"
29333 msgstr ""
29334
29335 #. type: verbatim
29336 #: ../tools/virt-win-reg.pl:45
29337 #, no-wrap
29338 msgid ""
29339 " virt-win-reg domname 'HKLM\\Path\\To\\Subkey' @\n"
29340 "\n"
29341 msgstr ""
29342
29343 #. type: verbatim
29344 #: ../tools/virt-win-reg.pl:47
29345 #, no-wrap
29346 msgid ""
29347 " virt-win-reg --merge domname [input.reg ...]\n"
29348 "\n"
29349 msgstr ""
29350
29351 #. type: verbatim
29352 #: ../tools/virt-win-reg.pl:49
29353 #, no-wrap
29354 msgid ""
29355 " virt-win-reg [--options] disk.img ... # instead of domname\n"
29356 "\n"
29357 msgstr ""
29358
29359 #. type: textblock
29360 #: ../tools/virt-win-reg.pl:53
29361 msgid ""
29362 "You must I<not> use C<virt-win-reg> with the C<--merge> option on live "
29363 "virtual machines.  If you do this, you I<will> get irreversible disk "
29364 "corruption in the VM.  C<virt-win-reg> tries to stop you from doing this, "
29365 "but doesn't catch all cases."
29366 msgstr ""
29367
29368 #. type: textblock
29369 #: ../tools/virt-win-reg.pl:58
29370 msgid ""
29371 "Modifying the Windows Registry is an inherently risky operation.  The format "
29372 "is deliberately obscure and undocumented, and Registry changes can leave the "
29373 "system unbootable.  Therefore when using the C<--merge> option, make sure "
29374 "you have a reliable backup first."
29375 msgstr ""
29376
29377 #. type: textblock
29378 #: ../tools/virt-win-reg.pl:65
29379 msgid ""
29380 "This program can export and merge Windows Registry entries from a Windows "
29381 "guest."
29382 msgstr ""
29383
29384 #. type: textblock
29385 #: ../tools/virt-win-reg.pl:68
29386 msgid ""
29387 "The first parameter is the libvirt guest name or the raw disk image of a "
29388 "Windows guest."
29389 msgstr ""
29390
29391 #. type: textblock
29392 #: ../tools/virt-win-reg.pl:71
29393 msgid ""
29394 "If C<--merge> is I<not> specified, then the chosen registry key is displayed/"
29395 "exported (recursively).  For example:"
29396 msgstr ""
29397
29398 #. type: verbatim
29399 #: ../tools/virt-win-reg.pl:74
29400 #, no-wrap
29401 msgid ""
29402 " $ virt-win-reg Windows7 'HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft'\n"
29403 "\n"
29404 msgstr ""
29405
29406 #. type: textblock
29407 #: ../tools/virt-win-reg.pl:76
29408 msgid ""
29409 "You can also display single values from within registry keys, for example:"
29410 msgstr ""
29411
29412 #. type: verbatim
29413 #: ../tools/virt-win-reg.pl:79
29414 #, no-wrap
29415 msgid ""
29416 " $ cvkey='HKLM\\SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion'\n"
29417 " $ virt-win-reg Windows7 $cvkey ProductName\n"
29418 " Windows 7 Enterprise\n"
29419 "\n"
29420 msgstr ""
29421
29422 #. type: textblock
29423 #: ../tools/virt-win-reg.pl:83
29424 msgid ""
29425 "With C<--merge>, you can merge a textual regedit file into the Windows "
29426 "Registry:"
29427 msgstr ""
29428
29429 #. type: verbatim
29430 #: ../tools/virt-win-reg.pl:86
29431 #, no-wrap
29432 msgid ""
29433 " $ virt-win-reg --merge Windows7 changes.reg\n"
29434 "\n"
29435 msgstr ""
29436
29437 #. type: =head1
29438 #: ../tools/virt-win-reg.pl:88 ../tools/virt-tar.pl:45
29439 msgid "NOTE"
29440 msgstr ""
29441
29442 #. type: textblock
29443 #: ../tools/virt-win-reg.pl:90
29444 msgid ""
29445 "This program is only meant for simple access to the registry.  If you want "
29446 "to do complicated things with the registry, we suggest you download the "
29447 "Registry hive files from the guest using L<libguestfs(3)> or L<guestfish(1)> "
29448 "and access them locally, eg. using L<hivex(3)>, L<hivexsh(1)> or "
29449 "L<hivexregedit(1)>."
29450 msgstr ""
29451
29452 #. type: =item
29453 #: ../tools/virt-win-reg.pl:120 ../tools/virt-make-fs.pl:177
29454 msgid "B<--debug>"
29455 msgstr ""
29456
29457 #. type: textblock
29458 #: ../tools/virt-win-reg.pl:122
29459 msgid "Enable debugging messages."
29460 msgstr ""
29461
29462 #. type: =item
29463 #: ../tools/virt-win-reg.pl:157
29464 msgid "B<--merge>"
29465 msgstr ""
29466
29467 #. type: textblock
29468 #: ../tools/virt-win-reg.pl:159
29469 msgid ""
29470 "In merge mode, this merges a textual regedit file into the Windows Registry "
29471 "of the virtual machine.  If this flag is I<not> given then virt-win-reg "
29472 "displays or exports Registry entries instead."
29473 msgstr ""
29474
29475 #. type: textblock
29476 #: ../tools/virt-win-reg.pl:163
29477 msgid ""
29478 "Note that C<--merge> is I<unsafe> to use on live virtual machines, and will "
29479 "result in disk corruption.  However exporting (without this flag)  is always "
29480 "safe."
29481 msgstr ""
29482
29483 #. type: =item
29484 #: ../tools/virt-win-reg.pl:171
29485 msgid "B<--encoding> UTF-16LE|ASCII"
29486 msgstr ""
29487
29488 #. type: textblock
29489 #: ../tools/virt-win-reg.pl:173
29490 msgid ""
29491 "When merging (only), you may need to specify the encoding for strings to be "
29492 "used in the hive file.  This is explained in detail in L<Win::Hivex::Regedit"
29493 "(3)/ENCODING STRINGS>."
29494 msgstr ""
29495
29496 #. type: textblock
29497 #: ../tools/virt-win-reg.pl:177
29498 msgid ""
29499 "The default is to use UTF-16LE, which should work with recent versions of "
29500 "Windows."
29501 msgstr ""
29502
29503 #. type: =head1
29504 #: ../tools/virt-win-reg.pl:402
29505 msgid "SUPPORTED SYSTEMS"
29506 msgstr ""
29507
29508 #. type: textblock
29509 #: ../tools/virt-win-reg.pl:404
29510 msgid ""
29511 "The program currently supports Windows NT-derived guests starting with "
29512 "Windows XP through to at least Windows 7."
29513 msgstr ""
29514
29515 #. type: textblock
29516 #: ../tools/virt-win-reg.pl:407
29517 msgid ""
29518 "Registry support is done for C<HKEY_LOCAL_MACHINE\\SAM>, C<HKEY_LOCAL_MACHINE"
29519 "\\SECURITY>, C<HKEY_LOCAL_MACHINE\\SOFTWARE>, C<HKEY_LOCAL_MACHINE\\SYSTEM> "
29520 "and C<HKEY_USERS\\.DEFAULT>."
29521 msgstr ""
29522
29523 #. type: textblock
29524 #: ../tools/virt-win-reg.pl:411
29525 msgid ""
29526 "You can use C<HKLM> as a shorthand for C<HKEY_LOCAL_MACHINE>, and C<HKU> for "
29527 "C<HKEY_USERS>."
29528 msgstr ""
29529
29530 #. type: textblock
29531 #: ../tools/virt-win-reg.pl:414
29532 msgid ""
29533 "C<HKEY_USERS\\$SID> and C<HKEY_CURRENT_USER> are B<not> supported at this "
29534 "time."
29535 msgstr ""
29536
29537 #. type: =head1
29538 #: ../tools/virt-win-reg.pl:417
29539 msgid "ENCODING"
29540 msgstr ""
29541
29542 #. type: textblock
29543 #: ../tools/virt-win-reg.pl:419
29544 msgid ""
29545 "C<virt-win-reg> expects that regedit files have already been reencoded in "
29546 "the local encoding.  Usually on Linux hosts, this means UTF-8 with Unix-"
29547 "style line endings.  Since Windows regedit files are often in UTF-16LE with "
29548 "Windows-style line endings, you may need to reencode the whole file before "
29549 "or after processing."
29550 msgstr ""
29551
29552 #. type: textblock
29553 #: ../tools/virt-win-reg.pl:425
29554 msgid ""
29555 "To reencode a file from Windows format to Linux (before processing it with "
29556 "the C<--merge> option), you would do something like this:"
29557 msgstr ""
29558
29559 #. type: verbatim
29560 #: ../tools/virt-win-reg.pl:428
29561 #, no-wrap
29562 msgid ""
29563 " iconv -f utf-16le -t utf-8 < win.reg | dos2unix > linux.reg\n"
29564 "\n"
29565 msgstr ""
29566
29567 #. type: textblock
29568 #: ../tools/virt-win-reg.pl:430
29569 msgid ""
29570 "To go in the opposite direction, after exporting and before sending the file "
29571 "to a Windows user, do something like this:"
29572 msgstr ""
29573
29574 #. type: verbatim
29575 #: ../tools/virt-win-reg.pl:433
29576 #, no-wrap
29577 msgid ""
29578 " unix2dos linux.reg | iconv -f utf-8 -t utf-16le > win.reg\n"
29579 "\n"
29580 msgstr ""
29581
29582 #. type: textblock
29583 #: ../tools/virt-win-reg.pl:435
29584 msgid "For more information about encoding, see L<Win::Hivex::Regedit(3)>."
29585 msgstr ""
29586
29587 #. type: textblock
29588 #: ../tools/virt-win-reg.pl:437
29589 msgid ""
29590 "If you are unsure about the current encoding, use the L<file(1)> command.  "
29591 "Recent versions of Windows regedit.exe produce a UTF-16LE file with Windows-"
29592 "style (CRLF) line endings, like this:"
29593 msgstr ""
29594
29595 #. type: verbatim
29596 #: ../tools/virt-win-reg.pl:441
29597 #, no-wrap
29598 msgid ""
29599 " $ file software.reg\n"
29600 " software.reg: Little-endian UTF-16 Unicode text, with very long lines,\n"
29601 " with CRLF line terminators\n"
29602 "\n"
29603 msgstr ""
29604
29605 #. type: textblock
29606 #: ../tools/virt-win-reg.pl:445
29607 msgid "This file would need conversion before you could C<--merge> it."
29608 msgstr ""
29609
29610 #. type: =head1
29611 #: ../tools/virt-win-reg.pl:447
29612 msgid "CurrentControlSet etc."
29613 msgstr ""
29614
29615 #. type: textblock
29616 #: ../tools/virt-win-reg.pl:449
29617 msgid ""
29618 "Registry keys like C<CurrentControlSet> don't really exist in the Windows "
29619 "Registry at the level of the hive file, and therefore you cannot modify "
29620 "these."
29621 msgstr ""
29622
29623 #. type: textblock
29624 #: ../tools/virt-win-reg.pl:453
29625 msgid ""
29626 "C<CurrentControlSet> is usually an alias for C<ControlSet001>.  In some "
29627 "circumstances it might refer to another control set.  The way to find out is "
29628 "to look at the C<HKLM\\SYSTEM\\Select> key:"
29629 msgstr ""
29630
29631 #. type: verbatim
29632 #: ../tools/virt-win-reg.pl:457
29633 #, no-wrap
29634 msgid ""
29635 " # virt-win-reg WindowsGuest 'HKLM\\SYSTEM\\Select'\n"
29636 " [HKEY_LOCAL_MACHINE\\SYSTEM\\Select]\n"
29637 " \"Current\"=dword:00000001\n"
29638 " \"Default\"=dword:00000001\n"
29639 " \"Failed\"=dword:00000000\n"
29640 " \"LastKnownGood\"=dword:00000002\n"
29641 "\n"
29642 msgstr ""
29643
29644 #. type: textblock
29645 #: ../tools/virt-win-reg.pl:464
29646 msgid "\"Current\" is the one which Windows will choose when it boots."
29647 msgstr ""
29648
29649 #. type: textblock
29650 #: ../tools/virt-win-reg.pl:466
29651 msgid ""
29652 "Similarly, other C<Current...> keys in the path may need to be replaced."
29653 msgstr ""
29654
29655 #. type: =head1
29656 #: ../tools/virt-win-reg.pl:469
29657 msgid "WINDOWS TIPS"
29658 msgstr ""
29659
29660 #. type: textblock
29661 #: ../tools/virt-win-reg.pl:471
29662 msgid ""
29663 "Note that some of these tips modify the guest disk image.  The guest I<must> "
29664 "be shut off, else you will get disk corruption."
29665 msgstr ""
29666
29667 #. type: =head2
29668 #: ../tools/virt-win-reg.pl:474
29669 msgid "RUNNING A BATCH SCRIPT WHEN A USER LOGS IN"
29670 msgstr ""
29671
29672 #. type: textblock
29673 #: ../tools/virt-win-reg.pl:476
29674 msgid ""
29675 "Prepare a DOS batch script, VBScript or executable.  Upload this using "
29676 "L<guestfish(1)>.  For this example the script is called C<test.bat> and it "
29677 "is uploaded into C<C:\\>:"
29678 msgstr ""
29679
29680 #. type: verbatim
29681 #: ../tools/virt-win-reg.pl:480
29682 #, no-wrap
29683 msgid ""
29684 " guestfish -i -d WindowsGuest upload test.bat /test.bat\n"
29685 "\n"
29686 msgstr ""
29687
29688 #. type: textblock
29689 #: ../tools/virt-win-reg.pl:482
29690 msgid "Prepare a regedit file containing the registry change:"
29691 msgstr ""
29692
29693 #. type: verbatim
29694 #: ../tools/virt-win-reg.pl:484
29695 #, no-wrap
29696 msgid ""
29697 " cat > test.reg <<'EOF'\n"
29698 " [HKLM\\Software\\Microsoft\\Windows\\CurrentVersion\\RunOnce]\n"
29699 " \"Test\"=\"c:\\\\test.bat\"\n"
29700 " EOF\n"
29701 "\n"
29702 msgstr ""
29703
29704 #. type: textblock
29705 #: ../tools/virt-win-reg.pl:489
29706 msgid ""
29707 "In this example we use the key C<RunOnce> which means that the script will "
29708 "run precisely once when the first user logs in.  If you want it to run every "
29709 "time a user logs in, replace C<RunOnce> with C<Run>."
29710 msgstr ""
29711
29712 #. type: textblock
29713 #: ../tools/virt-win-reg.pl:493
29714 msgid "Now update the registry:"
29715 msgstr ""
29716
29717 #. type: verbatim
29718 #: ../tools/virt-win-reg.pl:495
29719 #, no-wrap
29720 msgid ""
29721 " virt-win-reg --merge WindowsGuest test.reg\n"
29722 "\n"
29723 msgstr ""
29724
29725 #. type: =head2
29726 #: ../tools/virt-win-reg.pl:497
29727 msgid "INSTALLING A SERVICE"
29728 msgstr ""
29729
29730 #. type: textblock
29731 #: ../tools/virt-win-reg.pl:499
29732 msgid ""
29733 "This section assumes you are familiar with Windows services, and you either "
29734 "have a program which handles the Windows Service Control Protocol directly "
29735 "or you want to run any program using a service wrapper like SrvAny or the "
29736 "free RHSrvAny."
29737 msgstr ""
29738
29739 #. type: textblock
29740 #: ../tools/virt-win-reg.pl:504
29741 msgid ""
29742 "First upload the program and optionally the service wrapper.  In this case "
29743 "the test program is called C<test.exe> and we are using the RHSrvAny wrapper:"
29744 msgstr ""
29745
29746 #. type: verbatim
29747 #: ../tools/virt-win-reg.pl:508
29748 #, no-wrap
29749 msgid ""
29750 " guestfish -i -d WindowsGuest <<EOF\n"
29751 "   upload rhsrvany.exe /rhsrvany.exe\n"
29752 "   upload test.exe /test.exe\n"
29753 " EOF\n"
29754 "\n"
29755 msgstr ""
29756
29757 #. type: textblock
29758 #: ../tools/virt-win-reg.pl:513
29759 msgid ""
29760 "Prepare a regedit file containing the registry changes.  In this example, "
29761 "the first registry change is needed for the service itself or the service "
29762 "wrapper (if used).  The second registry change is only needed because I am "
29763 "using the RHSrvAny service wrapper."
29764 msgstr ""
29765
29766 #. type: verbatim
29767 #: ../tools/virt-win-reg.pl:518
29768 #, no-wrap
29769 msgid ""
29770 " cat > service.reg <<'EOF'\n"
29771 " [HKLM\\SYSTEM\\ControlSet001\\services\\RHSrvAny]\n"
29772 " \"Type\"=dword:00000010\n"
29773 " \"Start\"=dword:00000002\n"
29774 " \"ErrorControl\"=dword:00000001\n"
29775 " \"ImagePath\"=\"c:\\\\rhsrvany.exe\"\n"
29776 " \"DisplayName\"=\"RHSrvAny\"\n"
29777 " \"ObjectName\"=\"NetworkService\"\n"
29778 " \n"
29779 msgstr ""
29780
29781 #. type: verbatim
29782 #: ../tools/virt-win-reg.pl:527
29783 #, no-wrap
29784 msgid ""
29785 " [HKLM\\SYSTEM\\ControlSet001\\services\\RHSrvAny\\Parameters]\n"
29786 " \"CommandLine\"=\"c:\\\\test.exe\"\n"
29787 " \"PWD\"=\"c:\\\\Temp\"\n"
29788 " EOF\n"
29789 "\n"
29790 msgstr ""
29791
29792 #. type: textblock
29793 #: ../tools/virt-win-reg.pl:538
29794 msgid ""
29795 "For use of C<ControlSet001> see the section above in this manual page.  You "
29796 "may need to adjust this according to the control set that is in use by the "
29797 "guest."
29798 msgstr ""
29799
29800 #. type: textblock
29801 #: ../tools/virt-win-reg.pl:544
29802 msgid ""
29803 "C<\"ObjectName\"> controls the privileges that the service will have.  An "
29804 "alternative is C<\"ObjectName\"=\"LocalSystem\"> which would be the most "
29805 "privileged account."
29806 msgstr ""
29807
29808 #. type: textblock
29809 #: ../tools/virt-win-reg.pl:550
29810 msgid ""
29811 "For the meaning of the magic numbers, see this Microsoft KB article: "
29812 "L<http://support.microsoft.com/kb/103000>."
29813 msgstr ""
29814
29815 #. type: textblock
29816 #: ../tools/virt-win-reg.pl:555
29817 msgid "Update the registry:"
29818 msgstr ""
29819
29820 #. type: verbatim
29821 #: ../tools/virt-win-reg.pl:557
29822 #, no-wrap
29823 msgid ""
29824 " virt-win-reg --merge WindowsGuest service.reg\n"
29825 "\n"
29826 msgstr ""
29827
29828 #. type: textblock
29829 #: ../tools/virt-win-reg.pl:561
29830 msgid ""
29831 "Be careful when passing parameters containing C<\\> (backslash) in the "
29832 "shell.  Usually you will have to use 'single quotes' or double backslashes "
29833 "(but not both) to protect them from the shell."
29834 msgstr ""
29835
29836 #. type: textblock
29837 #: ../tools/virt-win-reg.pl:565
29838 msgid "Paths and value names are case-insensitive."
29839 msgstr ""
29840
29841 #. type: textblock
29842 #: ../tools/virt-win-reg.pl:574
29843 msgid ""
29844 "L<hivex(3)>, L<hivexsh(1)>, L<hivexregedit(1)>, L<guestfs(3)>, L<guestfish(1)"
29845 ">, L<virt-cat(1)>, L<Sys::Guestfs(3)>, L<Sys::Guestfs::Lib(3)>, L<Win::Hivex"
29846 "(3)>, L<Win::Hivex::Regedit(3)>, L<Sys::Virt(3)>, L<http://libguestfs.org/>."
29847 msgstr ""
29848
29849 #. type: textblock
29850 #: ../tools/virt-win-reg.pl:589 ../tools/virt-make-fs.pl:555
29851 msgid ""
29852 "When reporting bugs, please enable debugging and capture the I<complete> "
29853 "output:"
29854 msgstr ""
29855
29856 #. type: verbatim
29857 #: ../tools/virt-win-reg.pl:592
29858 #, no-wrap
29859 msgid ""
29860 " export LIBGUESTFS_DEBUG=1\n"
29861 " virt-win-reg --debug [... rest ...] > /tmp/virt-win-reg.log 2>&1\n"
29862 "\n"
29863 msgstr ""
29864
29865 #. type: textblock
29866 #: ../tools/virt-win-reg.pl:595
29867 msgid ""
29868 "Attach /tmp/virt-win-reg.log to a new bug report at L<https://bugzilla."
29869 "redhat.com/>"
29870 msgstr ""
29871
29872 #. type: textblock
29873 #: ../tools/virt-win-reg.pl:604 ../tools/virt-make-fs.pl:570
29874 msgid "Copyright (C) 2010 Red Hat Inc."
29875 msgstr ""
29876
29877 #. type: textblock
29878 #: ../tools/virt-list-filesystems.pl:32
29879 msgid ""
29880 "virt-list-filesystems - List filesystems in a virtual machine or disk image"
29881 msgstr ""
29882
29883 #. type: verbatim
29884 #: ../tools/virt-list-filesystems.pl:36
29885 #, no-wrap
29886 msgid ""
29887 " virt-list-filesystems [--options] domname\n"
29888 "\n"
29889 msgstr ""
29890
29891 #. type: verbatim
29892 #: ../tools/virt-list-filesystems.pl:38
29893 #, no-wrap
29894 msgid ""
29895 " virt-list-filesystems [--options] disk.img [disk.img ...]\n"
29896 "\n"
29897 msgstr ""
29898
29899 #. type: textblock
29900 #: ../tools/virt-list-filesystems.pl:42 ../tools/virt-list-partitions.pl:42
29901 msgid ""
29902 "This tool is obsolete.  Use L<virt-filesystems(1)> as a more flexible "
29903 "replacement."
29904 msgstr ""
29905
29906 #. type: textblock
29907 #: ../tools/virt-list-filesystems.pl:45
29908 msgid ""
29909 "C<virt-list-filesystems> is a command line tool to list the filesystems that "
29910 "are contained in a virtual machine or disk image."
29911 msgstr ""
29912
29913 #. type: textblock
29914 #: ../tools/virt-list-filesystems.pl:49
29915 msgid ""
29916 "C<virt-list-filesystems> is just a simple wrapper around L<libguestfs(3)> "
29917 "functionality.  For more complex cases you should look at the L<guestfish(1)"
29918 "> tool."
29919 msgstr ""
29920
29921 #. type: =item
29922 #: ../tools/virt-list-filesystems.pl:106 ../tools/virt-list-partitions.pl:115
29923 msgid "B<-l> | B<--long>"
29924 msgstr ""
29925
29926 #. type: textblock
29927 #: ../tools/virt-list-filesystems.pl:108
29928 msgid ""
29929 "With this option, C<virt-list-filesystems> displays the type of each "
29930 "filesystem too (where \"type\" means C<ext3>, C<xfs> etc.)"
29931 msgstr ""
29932
29933 #. type: =item
29934 #: ../tools/virt-list-filesystems.pl:115
29935 msgid "B<-a> | B<--all>"
29936 msgstr ""
29937
29938 #. type: textblock
29939 #: ../tools/virt-list-filesystems.pl:117
29940 msgid ""
29941 "Normally we only show mountable filesystems.  If this option is given then "
29942 "swap devices are shown too."
29943 msgstr ""
29944
29945 #. type: textblock
29946 #: ../tools/virt-list-filesystems.pl:191
29947 msgid ""
29948 "L<guestfs(3)>, L<guestfish(1)>, L<virt-cat(1)>, L<virt-tar(1)>, L<virt-"
29949 "filesystems(1)>, L<virt-list-partitions(1)>, L<Sys::Guestfs(3)>, L<Sys::"
29950 "Guestfs::Lib(3)>, L<Sys::Virt(3)>, L<http://libguestfs.org/>."
29951 msgstr ""
29952
29953 #. type: textblock
29954 #: ../tools/virt-list-filesystems.pl:208 ../tools/virt-tar.pl:307
29955 msgid "Copyright (C) 2009 Red Hat Inc."
29956 msgstr ""
29957
29958 #. type: textblock
29959 #: ../tools/virt-tar.pl:33
29960 msgid "virt-tar - Extract or upload files to a virtual machine"
29961 msgstr ""
29962
29963 #. type: verbatim
29964 #: ../tools/virt-tar.pl:37
29965 #, no-wrap
29966 msgid ""
29967 " virt-tar [--options] -x domname directory tarball\n"
29968 "\n"
29969 msgstr ""
29970
29971 #. type: verbatim
29972 #: ../tools/virt-tar.pl:39
29973 #, no-wrap
29974 msgid ""
29975 " virt-tar [--options] -u domname tarball directory\n"
29976 "\n"
29977 msgstr ""
29978
29979 #. type: verbatim
29980 #: ../tools/virt-tar.pl:41
29981 #, no-wrap
29982 msgid ""
29983 " virt-tar [--options] disk.img [disk.img ...] -x directory tarball\n"
29984 "\n"
29985 msgstr ""
29986
29987 #. type: verbatim
29988 #: ../tools/virt-tar.pl:43
29989 #, no-wrap
29990 msgid ""
29991 " virt-tar [--options] disk.img [disk.img ...] -u tarball directory\n"
29992 "\n"
29993 msgstr ""
29994
29995 #. type: textblock
29996 #: ../tools/virt-tar.pl:47
29997 msgid ""
29998 "This tool is obsolete.  Use L<virt-copy-in(1)>, L<virt-copy-out(1)>, L<virt-"
29999 "tar-in(1)>, L<virt-tar-out(1)> as replacements."
30000 msgstr ""
30001
30002 #. type: textblock
30003 #: ../tools/virt-tar.pl:52
30004 msgid "Download C</home> from the VM into a local tarball:"
30005 msgstr ""
30006
30007 #. type: verbatim
30008 #: ../tools/virt-tar.pl:54
30009 #, no-wrap
30010 msgid ""
30011 " virt-tar -x domname /home home.tar\n"
30012 "\n"
30013 msgstr ""
30014
30015 #. type: verbatim
30016 #: ../tools/virt-tar.pl:56
30017 #, no-wrap
30018 msgid ""
30019 " virt-tar -zx domname /home home.tar.gz\n"
30020 "\n"
30021 msgstr ""
30022
30023 #. type: textblock
30024 #: ../tools/virt-tar.pl:58
30025 msgid "Upload a local tarball and unpack it inside C</tmp> in the VM:"
30026 msgstr ""
30027
30028 #. type: verbatim
30029 #: ../tools/virt-tar.pl:60
30030 #, no-wrap
30031 msgid ""
30032 " virt-tar -u domname uploadstuff.tar /tmp\n"
30033 "\n"
30034 msgstr ""
30035
30036 #. type: verbatim
30037 #: ../tools/virt-tar.pl:62
30038 #, no-wrap
30039 msgid ""
30040 " virt-tar -zu domname uploadstuff.tar.gz /tmp\n"
30041 "\n"
30042 msgstr ""
30043
30044 #. type: textblock
30045 #: ../tools/virt-tar.pl:66
30046 msgid ""
30047 "You must I<not> use C<virt-tar> with the C<-u> option (upload) on live "
30048 "virtual machines.  If you do this, you risk disk corruption in the VM.  "
30049 "C<virt-tar> tries to stop you from doing this, but doesn't catch all cases."
30050 msgstr ""
30051
30052 #. type: textblock
30053 #: ../tools/virt-tar.pl:71
30054 msgid ""
30055 "You can use C<-x> (extract) on live virtual machines, but you might get "
30056 "inconsistent results or errors if there is filesystem activity inside the "
30057 "VM.  If the live VM is synched and quiescent, then C<virt-tar> will usually "
30058 "work, but the only way to guarantee consistent results is if the virtual "
30059 "machine is shut down."
30060 msgstr ""
30061
30062 #. type: textblock
30063 #: ../tools/virt-tar.pl:79
30064 msgid ""
30065 "C<virt-tar> is a general purpose archive tool for downloading and uploading "
30066 "parts of a guest filesystem.  There are many possibilities: making backups, "
30067 "uploading data files, snooping on guest activity, fixing or customizing "
30068 "guests, etc."
30069 msgstr ""
30070
30071 #. type: textblock
30072 #: ../tools/virt-tar.pl:84
30073 msgid ""
30074 "If you want to just view a single file, use L<virt-cat(1)>.  If you just "
30075 "want to edit a single file, use L<virt-edit(1)>.  For more complex cases you "
30076 "should look at the L<guestfish(1)> tool."
30077 msgstr ""
30078
30079 #. type: textblock
30080 #: ../tools/virt-tar.pl:88
30081 msgid ""
30082 "There are two modes of operation: C<-x> (eXtract) downloads a directory and "
30083 "its contents (recursively) from the virtual machine into a local tarball.  "
30084 "C<-u> uploads from a local tarball, unpacking it into a directory inside the "
30085 "virtual machine.  You cannot use these two options together."
30086 msgstr ""
30087
30088 #. type: textblock
30089 #: ../tools/virt-tar.pl:94
30090 msgid ""
30091 "In addition, you may need to use the C<-z> (gZip) option to enable "
30092 "compression.  When uploading, you have to specify C<-z> if the upload file "
30093 "is compressed because virt-tar won't detect this on its own."
30094 msgstr ""
30095
30096 #. type: textblock
30097 #: ../tools/virt-tar.pl:98
30098 msgid ""
30099 "C<virt-tar> can only handle tar (optionally gzipped) format tarballs.  For "
30100 "example it cannot do PKZip files or bzip2 compression.  If you want that "
30101 "then you'll have to rebuild the tarballs yourself.  (This is a limitation of "
30102 "the L<libguestfs(3)> API)."
30103 msgstr ""
30104
30105 #. type: =item
30106 #: ../tools/virt-tar.pl:156
30107 msgid "B<-x> | B<--extract> | B<--download>"
30108 msgstr ""
30109
30110 #. type: =item
30111 #: ../tools/virt-tar.pl:158
30112 msgid "B<-u> | B<--upload>"
30113 msgstr ""
30114
30115 #. type: textblock
30116 #: ../tools/virt-tar.pl:160
30117 msgid ""
30118 "Use C<-x> to extract (download) a directory from a virtual machine to a "
30119 "local tarball."
30120 msgstr ""
30121
30122 #. type: textblock
30123 #: ../tools/virt-tar.pl:163
30124 msgid ""
30125 "Use C<-u> to upload and unpack from a local tarball into a virtual machine.  "
30126 "Please read the L</WARNING> section above before using this option."
30127 msgstr ""
30128
30129 #. type: textblock
30130 #: ../tools/virt-tar.pl:167
30131 msgid "You must specify exactly one of these options."
30132 msgstr ""
30133
30134 #. type: =item
30135 #: ../tools/virt-tar.pl:173
30136 msgid "B<-z> | B<--gzip>"
30137 msgstr ""
30138
30139 #. type: textblock
30140 #: ../tools/virt-tar.pl:175
30141 msgid "Specify that the input or output tarball is gzip-compressed."
30142 msgstr ""
30143
30144 #. type: textblock
30145 #: ../tools/virt-tar.pl:288
30146 msgid ""
30147 "L<guestfs(3)>, L<guestfish(1)>, L<virt-cat(1)>, L<virt-edit(1)>, L<virt-copy-"
30148 "in(1)>, L<virt-copy-out(1)>, L<virt-tar-in(1)>, L<virt-tar-out(1)>, L<Sys::"
30149 "Guestfs(3)>, L<Sys::Guestfs::Lib(3)>, L<Sys::Virt(3)>, L<http://libguestfs."
30150 "org/>."
30151 msgstr ""
30152
30153 #. type: textblock
30154 #: ../tools/virt-make-fs.pl:37
30155 msgid "virt-make-fs - Make a filesystem from a tar archive or files"
30156 msgstr ""
30157
30158 #. type: verbatim
30159 #: ../tools/virt-make-fs.pl:41
30160 #, no-wrap
30161 msgid ""
30162 " virt-make-fs [--options] input.tar output.img\n"
30163 "\n"
30164 msgstr ""
30165
30166 #. type: verbatim
30167 #: ../tools/virt-make-fs.pl:43
30168 #, no-wrap
30169 msgid ""
30170 " virt-make-fs [--options] input.tar.gz output.img\n"
30171 "\n"
30172 msgstr ""
30173
30174 #. type: verbatim
30175 #: ../tools/virt-make-fs.pl:45
30176 #, no-wrap
30177 msgid ""
30178 " virt-make-fs [--options] directory output.img\n"
30179 "\n"
30180 msgstr ""
30181
30182 #. type: textblock
30183 #: ../tools/virt-make-fs.pl:49
30184 msgid ""
30185 "Virt-make-fs is a command line tool for creating a filesystem from a tar "
30186 "archive or some files in a directory.  It is similar to tools like L<mkisofs"
30187 "(1)>, L<genisoimage(1)> and L<mksquashfs(1)>.  Unlike those tools, it can "
30188 "create common filesystem types like ext2/3 or NTFS, which can be useful if "
30189 "you want to attach these filesystems to existing virtual machines (eg. to "
30190 "import large amounts of read-only data to a VM)."
30191 msgstr ""
30192
30193 #. type: textblock
30194 #: ../tools/virt-make-fs.pl:57
30195 msgid "Basic usage is:"
30196 msgstr ""
30197
30198 #. type: verbatim
30199 #: ../tools/virt-make-fs.pl:59
30200 #, no-wrap
30201 msgid ""
30202 " virt-make-fs input output\n"
30203 "\n"
30204 msgstr ""
30205
30206 #. type: textblock
30207 #: ../tools/virt-make-fs.pl:61
30208 msgid ""
30209 "where C<input> is either a directory containing files that you want to add, "
30210 "or a tar archive (either uncompressed tar or gzip-compressed tar); and "
30211 "C<output> is a disk image.  The input type is detected automatically.  The "
30212 "output disk image defaults to a raw ext2 image unless you specify extra "
30213 "flags (see L</OPTIONS> below)."
30214 msgstr ""
30215
30216 #. type: =head2
30217 #: ../tools/virt-make-fs.pl:67
30218 msgid "EXTRA SPACE"
30219 msgstr ""
30220
30221 #. type: textblock
30222 #: ../tools/virt-make-fs.pl:69
30223 msgid ""
30224 "Unlike formats such as tar and squashfs, a filesystem does not \"just fit\" "
30225 "the files that it contains, but might have extra space.  Depending on how "
30226 "you are going to use the output, you might think this extra space is wasted "
30227 "and want to minimize it, or you might want to leave space so that more files "
30228 "can be added later.  Virt-make-fs defaults to minimizing the extra space, "
30229 "but you can use the C<--size> flag to leave space in the filesystem if you "
30230 "want it."
30231 msgstr ""
30232
30233 #. type: textblock
30234 #: ../tools/virt-make-fs.pl:77
30235 msgid ""
30236 "An alternative way to leave extra space but not make the output image any "
30237 "bigger is to use an alternative disk image format (instead of the default "
30238 "\"raw\" format).  Using C<--format=qcow2> will use the native QEmu/KVM qcow2 "
30239 "image format (check your hypervisor supports this before using it).  This "
30240 "allows you to choose a large C<--size> but the extra space won't actually be "
30241 "allocated in the image until you try to store something in it."
30242 msgstr ""
30243
30244 #. type: textblock
30245 #: ../tools/virt-make-fs.pl:85
30246 msgid ""
30247 "Don't forget that you can also use local commands including L<resize2fs(8)> "
30248 "and L<virt-resize(1)> to resize existing filesystems, or rerun virt-make-fs "
30249 "to build another image from scratch."
30250 msgstr ""
30251
30252 #. type: =head3
30253 #: ../tools/virt-make-fs.pl:89 ../tools/virt-make-fs.pl:123
30254 #: ../tools/virt-make-fs.pl:142
30255 msgid "EXAMPLE"
30256 msgstr ""
30257
30258 #. type: verbatim
30259 #: ../tools/virt-make-fs.pl:91
30260 #, no-wrap
30261 msgid ""
30262 " virt-make-fs --format=qcow2 --size=+200M input output.img\n"
30263 "\n"
30264 msgstr ""
30265
30266 #. type: =head2
30267 #: ../tools/virt-make-fs.pl:93
30268 msgid "FILESYSTEM TYPE"
30269 msgstr ""
30270
30271 #. type: textblock
30272 #: ../tools/virt-make-fs.pl:95
30273 msgid ""
30274 "The default filesystem type is C<ext2>.  Just about any filesystem type that "
30275 "libguestfs supports can be used (but I<not> read-only formats like "
30276 "ISO9660).  Here are some of the more common choices:"
30277 msgstr ""
30278
30279 #. type: =item
30280 #: ../tools/virt-make-fs.pl:101
30281 msgid "I<ext3>"
30282 msgstr ""
30283
30284 #. type: textblock
30285 #: ../tools/virt-make-fs.pl:103
30286 msgid ""
30287 "Note that ext3 filesystems contain a journal, typically 1-32 MB in size.  If "
30288 "you are not going to use the filesystem in a way that requires the journal, "
30289 "then this is just wasted overhead."
30290 msgstr ""
30291
30292 #. type: =item
30293 #: ../tools/virt-make-fs.pl:107
30294 msgid "I<ntfs> or I<vfat>"
30295 msgstr ""
30296
30297 #. type: textblock
30298 #: ../tools/virt-make-fs.pl:109
30299 msgid "Useful if exporting data to a Windows guest."
30300 msgstr ""
30301
30302 #. type: textblock
30303 #: ../tools/virt-make-fs.pl:111
30304 msgid ""
30305 "I<Note for vfat>: The tar archive or local directory must only contain files "
30306 "which are owned by root (ie. UID:GID = 0:0).  The reason is that the tar "
30307 "program running within libguestfs is unable to change the ownership of non-"
30308 "root files, since vfat itself does not support this."
30309 msgstr ""
30310
30311 #. type: =item
30312 #: ../tools/virt-make-fs.pl:116
30313 msgid "I<minix>"
30314 msgstr ""
30315
30316 #. type: textblock
30317 #: ../tools/virt-make-fs.pl:118
30318 msgid ""
30319 "Lower overhead than C<ext2>, but certain limitations on filename length and "
30320 "total filesystem size."
30321 msgstr ""
30322
30323 #. type: verbatim
30324 #: ../tools/virt-make-fs.pl:125
30325 #, no-wrap
30326 msgid ""
30327 " virt-make-fs --type=minix input minixfs.img\n"
30328 "\n"
30329 msgstr ""
30330
30331 #. type: =head2
30332 #: ../tools/virt-make-fs.pl:127
30333 msgid "TO PARTITION OR NOT TO PARTITION"
30334 msgstr ""
30335
30336 #. type: textblock
30337 #: ../tools/virt-make-fs.pl:129
30338 msgid "Optionally virt-make-fs can add a partition table to the output disk."
30339 msgstr ""
30340
30341 #. type: textblock
30342 #: ../tools/virt-make-fs.pl:131
30343 msgid ""
30344 "Adding a partition can make the disk image more compatible with certain "
30345 "virtualized operating systems which don't expect to see a filesystem "
30346 "directly located on a block device (Linux doesn't care and will happily "
30347 "handle both types)."
30348 msgstr ""
30349
30350 #. type: textblock
30351 #: ../tools/virt-make-fs.pl:136
30352 msgid ""
30353 "On the other hand, if you have a partition table then the output image is no "
30354 "longer a straight filesystem.  For example you cannot run L<fsck(8)> "
30355 "directly on a partitioned disk image.  (However libguestfs tools such as "
30356 "L<guestfish(1)> and L<virt-resize(1)> can still be used)."
30357 msgstr ""
30358
30359 #. type: textblock
30360 #: ../tools/virt-make-fs.pl:144
30361 msgid "Add an MBR partition:"
30362 msgstr ""
30363
30364 #. type: verbatim
30365 #: ../tools/virt-make-fs.pl:146
30366 #, no-wrap
30367 msgid ""
30368 " virt-make-fs --partition -- input disk.img\n"
30369 "\n"
30370 msgstr ""
30371
30372 #. type: textblock
30373 #: ../tools/virt-make-fs.pl:148
30374 msgid ""
30375 "If the output disk image could be terabyte-sized or larger, it's better to "
30376 "use an EFI/GPT-compatible partition table:"
30377 msgstr ""
30378
30379 #. type: verbatim
30380 #: ../tools/virt-make-fs.pl:151
30381 #, no-wrap
30382 msgid ""
30383 " virt-make-fs --partition=gpt --size=+4T --format=qcow2 input disk.img\n"
30384 "\n"
30385 msgstr ""
30386
30387 #. type: textblock
30388 #: ../tools/virt-make-fs.pl:179
30389 msgid "Enable debugging information."
30390 msgstr ""
30391
30392 #. type: =item
30393 #: ../tools/virt-make-fs.pl:185
30394 msgid "B<--size=E<lt>NE<gt>>"
30395 msgstr ""
30396
30397 #. type: =item
30398 #: ../tools/virt-make-fs.pl:187
30399 msgid "B<--size=+E<lt>NE<gt>>"
30400 msgstr ""
30401
30402 #. type: =item
30403 #: ../tools/virt-make-fs.pl:189
30404 msgid "B<-s E<lt>NE<gt>>"
30405 msgstr ""
30406
30407 #. type: =item
30408 #: ../tools/virt-make-fs.pl:191
30409 msgid "B<-s +E<lt>NE<gt>>"
30410 msgstr ""
30411
30412 #. type: textblock
30413 #: ../tools/virt-make-fs.pl:193
30414 msgid ""
30415 "Use the C<--size> (or C<-s>) option to choose the size of the output image."
30416 msgstr ""
30417
30418 #. type: textblock
30419 #: ../tools/virt-make-fs.pl:196
30420 msgid ""
30421 "If this option is I<not> given, then the output image will be just large "
30422 "enough to contain all the files, with not much wasted space."
30423 msgstr ""
30424
30425 #. type: textblock
30426 #: ../tools/virt-make-fs.pl:199
30427 msgid ""
30428 "To choose a fixed size output disk, specify an absolute number followed by b/"
30429 "K/M/G/T/P/E to mean bytes, Kilobytes, Megabytes, Gigabytes, Terabytes, "
30430 "Petabytes or Exabytes.  This must be large enough to contain all the input "
30431 "files, else you will get an error."
30432 msgstr ""
30433
30434 #. type: textblock
30435 #: ../tools/virt-make-fs.pl:204
30436 msgid ""
30437 "To leave extra space, specify C<+> (plus sign) and a number followed by b/K/"
30438 "M/G/T/P/E to mean bytes, Kilobytes, Megabytes, Gigabytes, Terabytes, "
30439 "Petabytes or Exabytes.  For example: C<--size=+200M> means enough space for "
30440 "the input files, and (approximately) an extra 200 MB free space."
30441 msgstr ""
30442
30443 #. type: textblock
30444 #: ../tools/virt-make-fs.pl:210
30445 msgid ""
30446 "Note that virt-make-fs estimates free space, and therefore will not produce "
30447 "filesystems containing precisely the free space requested.  (It is much more "
30448 "expensive and time-consuming to produce a filesystem which has precisely the "
30449 "desired free space)."
30450 msgstr ""
30451
30452 #. type: =item
30453 #: ../tools/virt-make-fs.pl:219
30454 msgid "B<--format=E<lt>fmtE<gt>>"
30455 msgstr ""
30456
30457 #. type: =item
30458 #: ../tools/virt-make-fs.pl:221
30459 msgid "B<-F E<lt>fmtE<gt>>"
30460 msgstr ""
30461
30462 #. type: textblock
30463 #: ../tools/virt-make-fs.pl:223
30464 msgid "Choose the output disk image format."
30465 msgstr ""
30466
30467 #. type: textblock
30468 #: ../tools/virt-make-fs.pl:225
30469 msgid "The default is C<raw> (raw disk image)."
30470 msgstr ""
30471
30472 #. type: textblock
30473 #: ../tools/virt-make-fs.pl:227
30474 msgid ""
30475 "For other choices, see the L<qemu-img(1)> manpage.  The only other choice "
30476 "that would really make sense here is C<qcow2>."
30477 msgstr ""
30478
30479 #. type: =item
30480 #: ../tools/virt-make-fs.pl:234
30481 msgid "B<--type=E<lt>fsE<gt>>"
30482 msgstr ""
30483
30484 #. type: =item
30485 #: ../tools/virt-make-fs.pl:236
30486 msgid "B<-t E<lt>fsE<gt>>"
30487 msgstr ""
30488
30489 #. type: textblock
30490 #: ../tools/virt-make-fs.pl:238
30491 msgid "Choose the output filesystem type."
30492 msgstr ""
30493
30494 #. type: textblock
30495 #: ../tools/virt-make-fs.pl:240
30496 msgid "The default is C<ext2>."
30497 msgstr ""
30498
30499 #. type: textblock
30500 #: ../tools/virt-make-fs.pl:242
30501 msgid ""
30502 "Any filesystem which is supported read-write by libguestfs can be used here."
30503 msgstr ""
30504
30505 #. type: =item
30506 #: ../tools/virt-make-fs.pl:249
30507 msgid "B<--partition>"
30508 msgstr ""
30509
30510 #. type: =item
30511 #: ../tools/virt-make-fs.pl:251
30512 msgid "B<--partition=E<lt>parttypeE<gt>>"
30513 msgstr ""
30514
30515 #. type: textblock
30516 #: ../tools/virt-make-fs.pl:253
30517 msgid ""
30518 "If specified, this flag adds an MBR partition table to the output disk image."
30519 msgstr ""
30520
30521 #. type: textblock
30522 #: ../tools/virt-make-fs.pl:256
30523 msgid ""
30524 "You can change the partition table type, eg. C<--partition=gpt> for large "
30525 "disks."
30526 msgstr ""
30527
30528 #. type: textblock
30529 #: ../tools/virt-make-fs.pl:259
30530 msgid ""
30531 "Note that if you just use a lonesome C<--partition>, the Perl option parser "
30532 "might consider the next parameter to be the partition type.  For example:"
30533 msgstr ""
30534
30535 #. type: verbatim
30536 #: ../tools/virt-make-fs.pl:263
30537 #, no-wrap
30538 msgid ""
30539 " virt-make-fs --partition input.tar ...\n"
30540 "\n"
30541 msgstr ""
30542
30543 #. type: textblock
30544 #: ../tools/virt-make-fs.pl:265
30545 msgid ""
30546 "would cause virt-make-fs to think you wanted to use a partition type of "
30547 "C<input.tar> which is completely wrong.  To avoid this, use C<--> (a double "
30548 "dash) between options and the input file argument:"
30549 msgstr ""
30550
30551 #. type: verbatim
30552 #: ../tools/virt-make-fs.pl:269
30553 #, no-wrap
30554 msgid ""
30555 " virt-make-fs --partition -- input.tar ...\n"
30556 "\n"
30557 msgstr ""
30558
30559 #. type: textblock
30560 #: ../tools/virt-make-fs.pl:541
30561 msgid ""
30562 "L<guestfish(1)>, L<virt-resize(1)>, L<virt-tar-in(1)>, L<mkisofs(1)>, "
30563 "L<genisoimage(1)>, L<mksquashfs(1)>, L<mke2fs(8)>, L<resize2fs(8)>, L<guestfs"
30564 "(3)>, L<Sys::Guestfs(3)>, L<http://libguestfs.org/>."
30565 msgstr ""
30566
30567 #. type: verbatim
30568 #: ../tools/virt-make-fs.pl:558
30569 #, no-wrap
30570 msgid ""
30571 " export LIBGUESTFS_DEBUG=1\n"
30572 " virt-make-fs --debug [...] > /tmp/virt-make-fs.log 2>&1\n"
30573 "\n"
30574 msgstr ""
30575
30576 #. type: textblock
30577 #: ../tools/virt-make-fs.pl:561
30578 msgid ""
30579 "Attach /tmp/virt-make-fs.log to a new bug report at L<https://bugzilla."
30580 "redhat.com/>"
30581 msgstr ""
30582
30583 #. type: textblock
30584 #: ../tools/virt-list-partitions.pl:32
30585 msgid ""
30586 "virt-list-partitions - List partitions in a virtual machine or disk image"
30587 msgstr ""
30588
30589 #. type: verbatim
30590 #: ../tools/virt-list-partitions.pl:36
30591 #, no-wrap
30592 msgid ""
30593 " virt-list-partitions [--options] domname\n"
30594 "\n"
30595 msgstr ""
30596
30597 #. type: verbatim
30598 #: ../tools/virt-list-partitions.pl:38
30599 #, no-wrap
30600 msgid ""
30601 " virt-list-partitions [--options] disk.img [disk.img ...]\n"
30602 "\n"
30603 msgstr ""
30604
30605 #. type: textblock
30606 #: ../tools/virt-list-partitions.pl:45
30607 msgid ""
30608 "C<virt-list-partitions> is a command line tool to list the partitions that "
30609 "are contained in a virtual machine or disk image.  It is mainly useful as a "
30610 "first step to using L<virt-resize(1)>."
30611 msgstr ""
30612
30613 #. type: textblock
30614 #: ../tools/virt-list-partitions.pl:50
30615 msgid ""
30616 "C<virt-list-partitions> is just a simple wrapper around L<libguestfs(3)> "
30617 "functionality.  For more complex cases you should look at the L<guestfish(1)"
30618 "> tool."
30619 msgstr ""
30620
30621 #. type: =item
30622 #: ../tools/virt-list-partitions.pl:107
30623 msgid "B<-h> | B<--human-readable>"
30624 msgstr ""
30625
30626 #. type: textblock
30627 #: ../tools/virt-list-partitions.pl:109
30628 msgid "Show sizes in human-readable form (eg. \"1G\")."
30629 msgstr ""
30630
30631 #. type: textblock
30632 #: ../tools/virt-list-partitions.pl:117
30633 msgid ""
30634 "With this option, C<virt-list-partitions> displays the type and size of each "
30635 "partition too (where \"type\" means C<ext3>, C<pv> etc.)"
30636 msgstr ""
30637
30638 #. type: =item
30639 #: ../tools/virt-list-partitions.pl:124
30640 msgid "B<-t> | B<--total>"
30641 msgstr ""
30642
30643 #. type: textblock
30644 #: ../tools/virt-list-partitions.pl:126
30645 msgid ""
30646 "Display the total size of each block device (as a separate row or rows)."
30647 msgstr ""
30648
30649 #. type: textblock
30650 #: ../tools/virt-list-partitions.pl:259
30651 msgid ""
30652 "L<guestfs(3)>, L<guestfish(1)>, L<virt-filesystems(1)>, L<virt-list-"
30653 "filesystems(1)>, L<virt-resize(1)>, L<Sys::Guestfs(3)>, L<Sys::Guestfs::Lib"
30654 "(3)>, L<Sys::Virt(3)>, L<http://libguestfs.org/>."
30655 msgstr ""
30656
30657 #. type: textblock
30658 #: ../tools/virt-list-partitions.pl:275
30659 msgid "Copyright (C) 2009-2010 Red Hat Inc."
30660 msgstr ""