Version 1.11.3.
[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-22 22:23+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:5814
5161 #: ../fish/guestfish-actions.pod:3908
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:3459
5752 #: ../src/guestfs-actions.pod:3474 ../src/guestfs-actions.pod:3499
5753 #: ../src/guestfs-actions.pod:3654 ../src/guestfs-actions.pod:3668
5754 #: ../src/guestfs-actions.pod:3681 ../src/guestfs-actions.pod:3695
5755 #: ../src/guestfs-actions.pod:3710 ../src/guestfs-actions.pod:3746
5756 #: ../src/guestfs-actions.pod:3818 ../src/guestfs-actions.pod:3838
5757 #: ../src/guestfs-actions.pod:3855 ../src/guestfs-actions.pod:3878
5758 #: ../src/guestfs-actions.pod:3901 ../src/guestfs-actions.pod:3933
5759 #: ../src/guestfs-actions.pod:3952 ../src/guestfs-actions.pod:3971
5760 #: ../src/guestfs-actions.pod:4006 ../src/guestfs-actions.pod:4018
5761 #: ../src/guestfs-actions.pod:4054 ../src/guestfs-actions.pod:4070
5762 #: ../src/guestfs-actions.pod:4083 ../src/guestfs-actions.pod:4098
5763 #: ../src/guestfs-actions.pod:4115 ../src/guestfs-actions.pod:4208
5764 #: ../src/guestfs-actions.pod:4228 ../src/guestfs-actions.pod:4241
5765 #: ../src/guestfs-actions.pod:4292 ../src/guestfs-actions.pod:4310
5766 #: ../src/guestfs-actions.pod:4328 ../src/guestfs-actions.pod:4344
5767 #: ../src/guestfs-actions.pod:4358 ../src/guestfs-actions.pod:4372
5768 #: ../src/guestfs-actions.pod:4389 ../src/guestfs-actions.pod:4404
5769 #: ../src/guestfs-actions.pod:4424 ../src/guestfs-actions.pod:4482
5770 #: ../src/guestfs-actions.pod:4555 ../src/guestfs-actions.pod:4586
5771 #: ../src/guestfs-actions.pod:4605 ../src/guestfs-actions.pod:4624
5772 #: ../src/guestfs-actions.pod:4636 ../src/guestfs-actions.pod:4653
5773 #: ../src/guestfs-actions.pod:4666 ../src/guestfs-actions.pod:4681
5774 #: ../src/guestfs-actions.pod:4696 ../src/guestfs-actions.pod:4731
5775 #: ../src/guestfs-actions.pod:4746 ../src/guestfs-actions.pod:4766
5776 #: ../src/guestfs-actions.pod:4780 ../src/guestfs-actions.pod:4797
5777 #: ../src/guestfs-actions.pod:4846 ../src/guestfs-actions.pod:4883
5778 #: ../src/guestfs-actions.pod:4897 ../src/guestfs-actions.pod:4925
5779 #: ../src/guestfs-actions.pod:4942 ../src/guestfs-actions.pod:4960
5780 #: ../src/guestfs-actions.pod:5094 ../src/guestfs-actions.pod:5151
5781 #: ../src/guestfs-actions.pod:5173 ../src/guestfs-actions.pod:5191
5782 #: ../src/guestfs-actions.pod:5223 ../src/guestfs-actions.pod:5289
5783 #: ../src/guestfs-actions.pod:5306 ../src/guestfs-actions.pod:5319
5784 #: ../src/guestfs-actions.pod:5333 ../src/guestfs-actions.pod:5622
5785 #: ../src/guestfs-actions.pod:5641 ../src/guestfs-actions.pod:5660
5786 #: ../src/guestfs-actions.pod:5672 ../src/guestfs-actions.pod:5684
5787 #: ../src/guestfs-actions.pod:5698 ../src/guestfs-actions.pod:5710
5788 #: ../src/guestfs-actions.pod:5724 ../src/guestfs-actions.pod:5740
5789 #: ../src/guestfs-actions.pod:5761 ../src/guestfs-actions.pod:5780
5790 #: ../src/guestfs-actions.pod:5799 ../src/guestfs-actions.pod:5829
5791 #: ../src/guestfs-actions.pod:5845 ../src/guestfs-actions.pod:5868
5792 #: ../src/guestfs-actions.pod:5886 ../src/guestfs-actions.pod:5905
5793 #: ../src/guestfs-actions.pod:5926 ../src/guestfs-actions.pod:5945
5794 #: ../src/guestfs-actions.pod:5962 ../src/guestfs-actions.pod:5990
5795 #: ../src/guestfs-actions.pod:6014 ../src/guestfs-actions.pod:6033
5796 #: ../src/guestfs-actions.pod:6057 ../src/guestfs-actions.pod:6076
5797 #: ../src/guestfs-actions.pod:6091 ../src/guestfs-actions.pod:6110
5798 #: ../src/guestfs-actions.pod:6147 ../src/guestfs-actions.pod:6170
5799 #: ../src/guestfs-actions.pod:6196 ../src/guestfs-actions.pod:6304
5800 #: ../src/guestfs-actions.pod:6425 ../src/guestfs-actions.pod:6437
5801 #: ../src/guestfs-actions.pod:6450 ../src/guestfs-actions.pod:6463
5802 #: ../src/guestfs-actions.pod:6485 ../src/guestfs-actions.pod:6498
5803 #: ../src/guestfs-actions.pod:6511 ../src/guestfs-actions.pod:6524
5804 #: ../src/guestfs-actions.pod:6539 ../src/guestfs-actions.pod:6598
5805 #: ../src/guestfs-actions.pod:6615 ../src/guestfs-actions.pod:6631
5806 #: ../src/guestfs-actions.pod:6647 ../src/guestfs-actions.pod:6664
5807 #: ../src/guestfs-actions.pod:6677 ../src/guestfs-actions.pod:6697
5808 #: ../src/guestfs-actions.pod:6733 ../src/guestfs-actions.pod:6747
5809 #: ../src/guestfs-actions.pod:6788 ../src/guestfs-actions.pod:6801
5810 #: ../src/guestfs-actions.pod:6819 ../src/guestfs-actions.pod:6853
5811 #: ../src/guestfs-actions.pod:6889 ../src/guestfs-actions.pod:7008
5812 #: ../src/guestfs-actions.pod:7026 ../src/guestfs-actions.pod:7040
5813 #: ../src/guestfs-actions.pod:7095 ../src/guestfs-actions.pod:7108
5814 #: ../src/guestfs-actions.pod:7153 ../src/guestfs-actions.pod:7186
5815 #: ../src/guestfs-actions.pod:7240 ../src/guestfs-actions.pod:7266
5816 #: ../src/guestfs-actions.pod:7332 ../src/guestfs-actions.pod:7351
5817 #: ../src/guestfs-actions.pod:7380
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:4429 ../src/guestfs-actions.pod:7274
5835 #: ../src/guestfs-actions.pod:7443 ../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:3008
5839 #: ../fish/guestfish-actions.pod:4866 ../fish/guestfish-actions.pod:4963
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:3461 ../src/guestfs-actions.pod:3481
5851 #: ../src/guestfs-actions.pod:4733 ../src/guestfs-actions.pod:5847
5852 #: ../src/guestfs-actions.pod:5964 ../src/guestfs-actions.pod:6078
5853 #: ../src/guestfs-actions.pod:6541 ../src/guestfs-actions.pod:6666
5854 #: ../src/guestfs-actions.pod:7188
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:4443
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:2780
5961 #: ../src/guestfs-actions.pod:2801 ../src/guestfs-actions.pod:4869
5962 #: ../src/guestfs-actions.pod:4997 ../src/guestfs-actions.pod:5403
5963 #: ../src/guestfs-actions.pod:5429 ../src/guestfs-actions.pod:6774
5964 #: ../src/guestfs-actions.pod:7199 ../src/guestfs-actions.pod:7212
5965 #: ../src/guestfs-actions.pod:7225
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:4496 ../src/guestfs-actions.pod:4508
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:4454
6106 #: ../fish/guestfish-actions.pod:110 ../fish/guestfish-actions.pod:3019
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:5480
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:2621 ../src/guestfs-actions.pod:2732
6452 #: ../src/guestfs-actions.pod:2752 ../src/guestfs-actions.pod:2872
6453 #: ../src/guestfs-actions.pod:2903 ../src/guestfs-actions.pod:2927
6454 #: ../src/guestfs-actions.pod:2964 ../src/guestfs-actions.pod:3024
6455 #: ../src/guestfs-actions.pod:3047 ../src/guestfs-actions.pod:3068
6456 #: ../src/guestfs-actions.pod:3640 ../src/guestfs-actions.pod:3990
6457 #: ../src/guestfs-actions.pod:4160 ../src/guestfs-actions.pod:4270
6458 #: ../src/guestfs-actions.pod:5015 ../src/guestfs-actions.pod:5208
6459 #: ../src/guestfs-actions.pod:5378 ../src/guestfs-actions.pod:5556
6460 #: ../src/guestfs-actions.pod:5605 ../src/guestfs-actions.pod:6217
6461 #: ../src/guestfs-actions.pod:6233 ../src/guestfs-actions.pod:6250
6462 #: ../src/guestfs-actions.pod:6274 ../src/guestfs-actions.pod:6948
6463 #: ../src/guestfs-actions.pod:6967 ../src/guestfs-actions.pod:6985
6464 #: ../src/guestfs-actions.pod:7165 ../src/guestfs-actions.pod:7437
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:2690 ../src/guestfs-actions.pod:2981
6671 #: ../src/guestfs-actions.pod:3270 ../src/guestfs-actions.pod:3560
6672 #: ../src/guestfs-actions.pod:3622 ../src/guestfs-actions.pod:3727
6673 #: ../src/guestfs-actions.pod:4132 ../src/guestfs-actions.pod:4830
6674 #: ../src/guestfs-actions.pod:5350 ../src/guestfs-actions.pod:5476
6675 #: ../src/guestfs-actions.pod:5590 ../src/guestfs-actions.pod:6290
6676 #: ../src/guestfs-actions.pod:6351 ../src/guestfs-actions.pod:6406
6677 #: ../src/guestfs-actions.pod:6552 ../src/guestfs-actions.pod:6576
6678 #: ../src/guestfs-actions.pod:7058 ../src/guestfs-actions.pod:7078
6679 #: ../src/guestfs-actions.pod:7125 ../src/guestfs-actions.pod:7290
6680 #: ../src/guestfs-actions.pod:7309 ../src/guestfs-actions.pod:7394
6681 #: ../src/guestfs-actions.pod:7413 ../src/guestfs-actions.pod:7459
6682 #: ../src/guestfs-actions.pod:7478
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:3348 ../src/guestfs-actions.pod:3379
6693 #: ../src/guestfs-actions.pod:3973 ../src/guestfs-actions.pod:4023
6694 #: ../src/guestfs-actions.pod:4210 ../src/guestfs-actions.pod:4243
6695 #: ../src/guestfs-actions.pod:4406 ../src/guestfs-actions.pod:4834
6696 #: ../src/guestfs-actions.pod:5291 ../src/guestfs-actions.pod:5686
6697 #: ../src/guestfs-actions.pod:5700 ../src/guestfs-actions.pod:5712
6698 #: ../src/guestfs-actions.pod:6152 ../src/guestfs-actions.pod:6790
6699 #: ../src/guestfs-actions.pod:6803 ../src/guestfs-actions.pod:7042
6700 #: ../src/guestfs-actions.pod:7278
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:3088 ../src/guestfs-actions.pod:3105
7118 #: ../src/guestfs-actions.pod:3124 ../src/guestfs-actions.pod:3287
7119 #: ../src/guestfs-actions.pod:3301 ../src/guestfs-actions.pod:3316
7120 #: ../src/guestfs-actions.pod:3330 ../src/guestfs-actions.pod:3346
7121 #: ../src/guestfs-actions.pod:3361 ../src/guestfs-actions.pod:3377
7122 #: ../src/guestfs-actions.pod:3391 ../src/guestfs-actions.pod:3404
7123 #: ../src/guestfs-actions.pod:3418 ../src/guestfs-actions.pod:3433
7124 #: ../src/guestfs-actions.pod:3448 ../src/guestfs-actions.pod:4979
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:6970
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:5466
7387 #: ../fish/guestfish-actions.pod:580 ../fish/guestfish-actions.pod:3667
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:5248 ../src/guestfs-actions.pod:5274
7409 #: ../src/guestfs-actions.pod:5405 ../src/guestfs-actions.pod:5431
7410 #: ../src/guestfs-actions.pod:5455 ../src/guestfs-actions.pod:6355
7411 #: ../src/guestfs-actions.pod:6410 ../src/guestfs-actions.pod:6556
7412 #: ../src/guestfs-actions.pod:6580 ../src/guestfs-actions.pod:7242
7413 #: ../src/guestfs-actions.pod:7268 ../src/guestfs-actions.pod:7294
7414 #: ../src/guestfs-actions.pod:7313 ../src/guestfs-actions.pod:7398
7415 #: ../src/guestfs-actions.pod:7417 ../src/guestfs-actions.pod:7463
7416 #: ../src/guestfs-actions.pod:7482 ../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:3537
7424 #: ../fish/guestfish-actions.pod:3552 ../fish/guestfish-actions.pod:3628
7425 #: ../fish/guestfish-actions.pod:3645 ../fish/guestfish-actions.pod:3660
7426 #: ../fish/guestfish-actions.pod:4286 ../fish/guestfish-actions.pod:4332
7427 #: ../fish/guestfish-actions.pod:4417 ../fish/guestfish-actions.pod:4432
7428 #: ../fish/guestfish-actions.pod:4842 ../fish/guestfish-actions.pod:4860
7429 #: ../fish/guestfish-actions.pod:4877 ../fish/guestfish-actions.pod:4887
7430 #: ../fish/guestfish-actions.pod:4935 ../fish/guestfish-actions.pod:4945
7431 #: ../fish/guestfish-actions.pod:4974 ../fish/guestfish-actions.pod:4984
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:3564
7439 #: ../src/guestfs-actions.pod:3626 ../src/guestfs-actions.pod:3643
7440 #: ../src/guestfs-actions.pod:3731 ../src/guestfs-actions.pod:4136
7441 #: ../src/guestfs-actions.pod:4150 ../src/guestfs-actions.pod:5354
7442 #: ../src/guestfs-actions.pod:5368 ../src/guestfs-actions.pod:7129
7443 #: ../src/guestfs-actions.pod:7143
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:3303
7566 #: ../src/guestfs-actions.pod:3332 ../src/guestfs-actions.pod:3393
7567 #: ../src/guestfs-actions.pod:3420 ../src/guestfs-actions.pod:6826
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:4885
7597 #: ../src/guestfs-actions.pod:4944 ../src/guestfs-actions.pod:4981
7598 #: ../src/guestfs-actions.pod:4999 ../src/guestfs-actions.pod:5175
7599 #: ../src/guestfs-actions.pod:6735 ../src/guestfs-actions.pod:6749
7600 #: ../src/guestfs-actions.pod:7155
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:4387
7676 #: ../src/guestfs-actions.pod:4584 ../src/guestfs-actions.pod:4603
7677 #: ../src/guestfs-actions.pod:4622 ../fish/guestfish-actions.pod:676
7678 #: ../fish/guestfish-actions.pod:2983 ../fish/guestfish-actions.pod:3112
7679 #: ../fish/guestfish-actions.pod:3122 ../fish/guestfish-actions.pod:3132
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:3495
7707 #: ../fish/guestfish-actions.pod:684 ../fish/guestfish-actions.pod:2441
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:3476 ../src/guestfs-actions.pod:6821
7880 #: ../src/guestfs-actions.pod:6855 ../src/guestfs-actions.pod:7334
7881 #: ../src/guestfs-actions.pod:7353
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:4163
7891 #: ../src/guestfs-actions.pod:5381 ../src/guestfs-actions.pod:7062
7892 #: ../src/guestfs-actions.pod:7082 ../src/guestfs-actions.pod:7168
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:4848
7923 #: ../src/guestfs-actions.pod:5225
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:4273 ../src/guestfs-actions.pod:4748
8014 #: ../src/guestfs-actions.pod:6559 ../src/guestfs-actions.pod:6583
8015 #: ../src/guestfs-actions.pod:7201 ../src/guestfs-actions.pod:7214
8016 #: ../src/guestfs-actions.pod:7227
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:6815
8096 #: ../fish/guestfish-actions.pod:828 ../fish/guestfish-actions.pod:4590
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:6860
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:6059
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:3656
8322 #: ../src/guestfs-actions.pod:3670 ../src/guestfs-actions.pod:3683
8323 #: ../src/guestfs-actions.pod:3697 ../src/guestfs-actions.pod:4683
8324 #: ../src/guestfs-actions.pod:5559 ../src/guestfs-actions.pod:5608
8325 #: ../src/guestfs-actions.pod:6427 ../src/guestfs-actions.pod:6439
8326 #: ../src/guestfs-actions.pod:6452 ../src/guestfs-actions.pod:6465
8327 #: ../src/guestfs-actions.pod:6487 ../src/guestfs-actions.pod:6500
8328 #: ../src/guestfs-actions.pod:6513 ../src/guestfs-actions.pod:6526
8329 #: ../src/guestfs-actions.pod:7297 ../src/guestfs-actions.pod:7316
8330 #: ../src/guestfs-actions.pod:7401 ../src/guestfs-actions.pod:7420
8331 #: ../src/guestfs-actions.pod:7466 ../src/guestfs-actions.pod:7485
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:2624 ../src/guestfs-actions.pod:2694
8776 #: ../src/guestfs-actions.pod:2782 ../src/guestfs-actions.pod:2803
8777 #: ../src/guestfs-actions.pod:2846 ../src/guestfs-actions.pod:2930
8778 #: ../src/guestfs-actions.pod:3027 ../src/guestfs-actions.pod:3274
8779 #: ../src/guestfs-actions.pod:3406
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:4100
8960 #: ../src/guestfs-actions.pod:5643
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:7339
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:5321
9170 #: ../src/guestfs-actions.pod:5801 ../src/guestfs-actions.pod:6201
9171 #: ../src/guestfs-actions.pod:6220 ../src/guestfs-actions.pod:6236
9172 #: ../src/guestfs-actions.pod:6253 ../src/guestfs-actions.pod:7010
9173 #: ../src/guestfs-actions.pod:7028 ../src/guestfs-actions.pod:7382
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:5870
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:5888 ../src/guestfs-actions.pod:5907
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:5923 ../src/guestfs-actions.pod:6030
9330 #: ../fish/guestfish-actions.pod:1348 ../fish/guestfish-actions.pod:1399
9331 #: ../fish/guestfish-actions.pod:3993 ../fish/guestfish-actions.pod:4080
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:4391
9338 #: ../src/guestfs-actions.pod:4588 ../src/guestfs-actions.pod:4607
9339 #: ../src/guestfs-actions.pod:4626 ../src/guestfs-actions.pod:4638
9340 #: ../src/guestfs-actions.pod:4655 ../src/guestfs-actions.pod:4668
9341 #: ../src/guestfs-actions.pod:5546 ../src/guestfs-actions.pod:5928
9342 #: ../src/guestfs-actions.pod:6175 ../src/guestfs-actions.pod:6776
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:5947
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:5992
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:3501
9486 #: ../src/guestfs-actions.pod:3798 ../src/guestfs-actions.pod:4198
9487 #: ../src/guestfs-actions.pod:4230 ../src/guestfs-actions.pod:5251
9488 #: ../src/guestfs-actions.pod:5594 ../src/guestfs-actions.pod:6016
9489 #: ../src/guestfs-actions.pod:6679 ../src/guestfs-actions.pod:6699
9490 #: ../src/guestfs-actions.pod:6891
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:6035 ../src/guestfs-actions.pod:6093
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:3299
9544 #: ../src/guestfs-actions.pod:3328 ../src/guestfs-actions.pod:3389
9545 #: ../src/guestfs-actions.pod:3416 ../fish/guestfish-actions.pod:1409
9546 #: ../fish/guestfish-actions.pod:2323 ../fish/guestfish-actions.pod:2341
9547 #: ../fish/guestfish-actions.pod:2379 ../fish/guestfish-actions.pod:2395
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:3515
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:3522
9672 #: ../fish/guestfish-actions.pod:1454 ../fish/guestfish-actions.pod:2460
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:3527 ../src/guestfs-actions.pod:5244
9686 #: ../src/guestfs-actions.pod:5270 ../src/guestfs-actions.pod:5451
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:3531
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:3543
9733 #: ../src/guestfs-actions.pod:4194
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:3547
9741 #: ../src/guestfs-actions.pod:3712 ../src/guestfs-actions.pod:3748
9742 #: ../src/guestfs-actions.pod:5624 ../src/guestfs-actions.pod:6112
9743 #: ../src/guestfs-actions.pod:7447
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:6277
9784 #: ../src/guestfs-actions.pod:6294
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:6574
9935 #: ../fish/guestfish-actions.pod:1544 ../fish/guestfish-actions.pod:4430
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:6358
9963 #: ../src/guestfs-actions.pod:6413
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:2632 ../src/guestfs-actions.pod:2676
10276 #: ../src/guestfs-actions.pod:2702 ../src/guestfs-actions.pod:2741
10277 #: ../src/guestfs-actions.pod:2763 ../src/guestfs-actions.pod:2790
10278 #: ../src/guestfs-actions.pod:2811 ../src/guestfs-actions.pod:2854
10279 #: ../src/guestfs-actions.pod:2883 ../src/guestfs-actions.pod:2914
10280 #: ../src/guestfs-actions.pod:2938 ../src/guestfs-actions.pod:2993
10281 #: ../src/guestfs-actions.pod:3035 ../src/guestfs-actions.pod:3056
10282 #: ../src/guestfs-actions.pod:3079 ../src/guestfs-actions.pod:3096
10283 #: ../src/guestfs-actions.pod:3113 ../src/guestfs-actions.pod:3132
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:2619
10305 #: ../src/guestfs-actions.pod:2730 ../src/guestfs-actions.pod:2750
10306 #: ../src/guestfs-actions.pod:2778 ../src/guestfs-actions.pod:2870
10307 #: ../src/guestfs-actions.pod:2901 ../src/guestfs-actions.pod:2925
10308 #: ../src/guestfs-actions.pod:2979 ../src/guestfs-actions.pod:3022
10309 #: ../src/guestfs-actions.pod:3045 ../src/guestfs-actions.pod:3066
10310 #: ../src/guestfs-actions.pod:3086 ../src/guestfs-actions.pod:3103
10311 #: ../src/guestfs-actions.pod:3122 ../src/guestfs-actions.pod:3225
10312 #: ../src/guestfs-actions.pod:3266 ../fish/guestfish-actions.pod:1698
10313 #: ../fish/guestfish-actions.pod:1784 ../fish/guestfish-actions.pod:1872
10314 #: ../fish/guestfish-actions.pod:1887 ../fish/guestfish-actions.pod:1908
10315 #: ../fish/guestfish-actions.pod:1978 ../fish/guestfish-actions.pod:2002
10316 #: ../fish/guestfish-actions.pod:2019 ../fish/guestfish-actions.pod:2062
10317 #: ../fish/guestfish-actions.pod:2097 ../fish/guestfish-actions.pod:2113
10318 #: ../fish/guestfish-actions.pod:2129 ../fish/guestfish-actions.pod:2142
10319 #: ../fish/guestfish-actions.pod:2155 ../fish/guestfish-actions.pod:2170
10320 #: ../fish/guestfish-actions.pod:2269 ../fish/guestfish-actions.pod:2303
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 #, fuzzy
10363 #| msgid "\"gentoo\""
10364 msgid "\"centos\""
10365 msgstr "\"gentoo\""
10366
10367 #. type: textblock
10368 #: ../src/guestfs-actions.pod:2555 ../fish/guestfish-actions.pod:1720
10369 msgid "CentOS."
10370 msgstr ""
10371
10372 #. type: =item
10373 #: ../src/guestfs-actions.pod:2557 ../fish/guestfish-actions.pod:1722
10374 msgid "\"debian\""
10375 msgstr "\"debian\""
10376
10377 #. type: textblock
10378 #: ../src/guestfs-actions.pod:2559 ../fish/guestfish-actions.pod:1724
10379 msgid "Debian."
10380 msgstr "Debian."
10381
10382 #. type: =item
10383 #: ../src/guestfs-actions.pod:2561 ../fish/guestfish-actions.pod:1726
10384 msgid "\"fedora\""
10385 msgstr "\"fedora\""
10386
10387 #. type: textblock
10388 #: ../src/guestfs-actions.pod:2563 ../fish/guestfish-actions.pod:1728
10389 msgid "Fedora."
10390 msgstr "Fedora."
10391
10392 #. type: =item
10393 #: ../src/guestfs-actions.pod:2565 ../fish/guestfish-actions.pod:1730
10394 msgid "\"gentoo\""
10395 msgstr "\"gentoo\""
10396
10397 #. type: textblock
10398 #: ../src/guestfs-actions.pod:2567 ../fish/guestfish-actions.pod:1732
10399 msgid "Gentoo."
10400 msgstr "Gentoo."
10401
10402 #. type: =item
10403 #: ../src/guestfs-actions.pod:2569 ../fish/guestfish-actions.pod:1734
10404 msgid "\"linuxmint\""
10405 msgstr "\"linuxmint\""
10406
10407 #. type: textblock
10408 #: ../src/guestfs-actions.pod:2571 ../fish/guestfish-actions.pod:1736
10409 msgid "Linux Mint."
10410 msgstr "Linux Mint."
10411
10412 #. type: =item
10413 #: ../src/guestfs-actions.pod:2573 ../fish/guestfish-actions.pod:1738
10414 msgid "\"mandriva\""
10415 msgstr "\"mandriva\""
10416
10417 #. type: textblock
10418 #: ../src/guestfs-actions.pod:2575 ../fish/guestfish-actions.pod:1740
10419 msgid "Mandriva."
10420 msgstr "Mandriva."
10421
10422 #. type: =item
10423 #: ../src/guestfs-actions.pod:2577 ../fish/guestfish-actions.pod:1742
10424 msgid "\"meego\""
10425 msgstr "\"meego\""
10426
10427 #. type: textblock
10428 #: ../src/guestfs-actions.pod:2579 ../fish/guestfish-actions.pod:1744
10429 msgid "MeeGo."
10430 msgstr "MeeGo."
10431
10432 #. type: =item
10433 #: ../src/guestfs-actions.pod:2581 ../fish/guestfish-actions.pod:1746
10434 msgid "\"pardus\""
10435 msgstr "\"pardus\""
10436
10437 #. type: textblock
10438 #: ../src/guestfs-actions.pod:2583 ../fish/guestfish-actions.pod:1748
10439 msgid "Pardus."
10440 msgstr "Pardus."
10441
10442 #. type: =item
10443 #: ../src/guestfs-actions.pod:2585 ../fish/guestfish-actions.pod:1750
10444 msgid "\"redhat-based\""
10445 msgstr "\"redhat-based\""
10446
10447 #. type: textblock
10448 #: ../src/guestfs-actions.pod:2587 ../fish/guestfish-actions.pod:1752
10449 msgid "Some Red Hat-derived distro."
10450 msgstr "Дистрибутив, що походить від Red Hat."
10451
10452 #. type: =item
10453 #: ../src/guestfs-actions.pod:2589 ../fish/guestfish-actions.pod:1754
10454 msgid "\"rhel\""
10455 msgstr "\"rhel\""
10456
10457 #. type: textblock
10458 #: ../src/guestfs-actions.pod:2591 ../fish/guestfish-actions.pod:1756
10459 #, fuzzy
10460 #| msgid "Red Hat Enterprise Linux and some derivatives."
10461 msgid "Red Hat Enterprise Linux."
10462 msgstr "Red Hat Enterprise Linux та деякі з похідних дистрибутивів."
10463
10464 #. type: =item
10465 #: ../src/guestfs-actions.pod:2593 ../fish/guestfish-actions.pod:1758
10466 msgid "\"scientificlinux\""
10467 msgstr ""
10468
10469 #. type: textblock
10470 #: ../src/guestfs-actions.pod:2595 ../fish/guestfish-actions.pod:1760
10471 msgid "Scientific Linux."
10472 msgstr ""
10473
10474 #. type: =item
10475 #: ../src/guestfs-actions.pod:2597 ../fish/guestfish-actions.pod:1762
10476 msgid "\"slackware\""
10477 msgstr ""
10478
10479 #. type: textblock
10480 #: ../src/guestfs-actions.pod:2599 ../fish/guestfish-actions.pod:1764
10481 msgid "Slackware."
10482 msgstr ""
10483
10484 #. type: =item
10485 #: ../src/guestfs-actions.pod:2601 ../fish/guestfish-actions.pod:1766
10486 msgid "\"ubuntu\""
10487 msgstr "\"ubuntu\""
10488
10489 #. type: textblock
10490 #: ../src/guestfs-actions.pod:2603 ../fish/guestfish-actions.pod:1768
10491 msgid "Ubuntu."
10492 msgstr "Ubuntu."
10493
10494 #. type: =item
10495 #: ../src/guestfs-actions.pod:2605 ../src/guestfs-actions.pod:2721
10496 #: ../src/guestfs-actions.pod:3013 ../fish/guestfish-actions.pod:1770
10497 #: ../fish/guestfish-actions.pod:1863 ../fish/guestfish-actions.pod:2088
10498 msgid "\"unknown\""
10499 msgstr "\"unknown\""
10500
10501 #. type: textblock
10502 #: ../src/guestfs-actions.pod:2607 ../fish/guestfish-actions.pod:1772
10503 msgid "The distro could not be determined."
10504 msgstr "Дистрибутив, тип якого не вдалося визначити."
10505
10506 #. type: =item
10507 #: ../src/guestfs-actions.pod:2609 ../src/guestfs-actions.pod:3005
10508 #: ../fish/guestfish-actions.pod:1774 ../fish/guestfish-actions.pod:2080
10509 msgid "\"windows\""
10510 msgstr "\"windows\""
10511
10512 #. type: textblock
10513 #: ../src/guestfs-actions.pod:2611 ../fish/guestfish-actions.pod:1776
10514 msgid ""
10515 "Windows does not have distributions.  This string is returned if the OS type "
10516 "is Windows."
10517 msgstr ""
10518
10519 #. type: textblock
10520 #: ../src/guestfs-actions.pod:2616 ../src/guestfs-actions.pod:2727
10521 #: ../src/guestfs-actions.pod:3019 ../fish/guestfish-actions.pod:1781
10522 #: ../fish/guestfish-actions.pod:1869 ../fish/guestfish-actions.pod:2094
10523 msgid ""
10524 "Future versions of libguestfs may return other strings here.  The caller "
10525 "should be prepared to handle any string."
10526 msgstr ""
10527
10528 #. type: =head2
10529 #: ../src/guestfs-actions.pod:2626
10530 msgid "guestfs_inspect_get_drive_mappings"
10531 msgstr ""
10532
10533 #. type: verbatim
10534 #: ../src/guestfs-actions.pod:2628
10535 #, no-wrap
10536 msgid ""
10537 " char **\n"
10538 " guestfs_inspect_get_drive_mappings (guestfs_h *g,\n"
10539 "                                     const char *root);\n"
10540 "\n"
10541 msgstr ""
10542
10543 #. type: textblock
10544 #: ../src/guestfs-actions.pod:2635 ../fish/guestfish-actions.pod:1793
10545 msgid ""
10546 "This call is useful for Windows which uses a primitive system of assigning "
10547 "drive letters (like \"C:\") to partitions.  This inspection API examines the "
10548 "Windows Registry to find out how disks/partitions are mapped to drive "
10549 "letters, and returns a hash table as in the example below:"
10550 msgstr ""
10551
10552 #. type: verbatim
10553 #: ../src/guestfs-actions.pod:2641 ../fish/guestfish-actions.pod:1799
10554 #, no-wrap
10555 msgid ""
10556 " C      =>     /dev/vda2\n"
10557 " E      =>     /dev/vdb1\n"
10558 " F      =>     /dev/vdc1\n"
10559 "\n"
10560 msgstr ""
10561
10562 #. type: textblock
10563 #: ../src/guestfs-actions.pod:2645 ../fish/guestfish-actions.pod:1803
10564 msgid ""
10565 "Note that keys are drive letters.  For Windows, the key is case insensitive "
10566 "and just contains the drive letter, without the customary colon separator "
10567 "character."
10568 msgstr ""
10569
10570 #. type: textblock
10571 #: ../src/guestfs-actions.pod:2649 ../fish/guestfish-actions.pod:1807
10572 msgid ""
10573 "In future we may support other operating systems that also used drive "
10574 "letters, but the keys for those might not be case insensitive and might be "
10575 "longer than 1 character.  For example in OS-9, hard drives were named C<h0>, "
10576 "C<h1> etc."
10577 msgstr ""
10578
10579 #. type: textblock
10580 #: ../src/guestfs-actions.pod:2654 ../fish/guestfish-actions.pod:1812
10581 msgid ""
10582 "For Windows guests, currently only hard drive mappings are returned.  "
10583 "Removable disks (eg. DVD-ROMs) are ignored."
10584 msgstr ""
10585
10586 #. type: textblock
10587 #: ../src/guestfs-actions.pod:2657 ../fish/guestfish-actions.pod:1815
10588 msgid ""
10589 "For guests that do not use drive mappings, or if the drive mappings could "
10590 "not be determined, this returns an empty hash table."
10591 msgstr ""
10592
10593 #. type: textblock
10594 #: ../src/guestfs-actions.pod:2660
10595 msgid ""
10596 "Please read L<guestfs(3)/INSPECTION> for more details.  See also "
10597 "C<guestfs_inspect_get_mountpoints>, C<guestfs_inspect_get_filesystems>."
10598 msgstr ""
10599
10600 #. type: textblock
10601 #: ../src/guestfs-actions.pod:2664 ../src/guestfs-actions.pod:2840
10602 #: ../src/guestfs-actions.pod:3600 ../src/guestfs-actions.pod:4810
10603 #: ../src/guestfs-actions.pod:6715
10604 msgid ""
10605 "This function returns a NULL-terminated array of strings, or NULL if there "
10606 "was an error.  The array of strings will always have length C<2n+1>, where "
10607 "C<n> keys and values alternate, followed by the trailing NULL entry.  I<The "
10608 "caller must free the strings and the array after use>."
10609 msgstr ""
10610
10611 #. type: =head2
10612 #: ../src/guestfs-actions.pod:2670
10613 msgid "guestfs_inspect_get_filesystems"
10614 msgstr ""
10615
10616 #. type: verbatim
10617 #: ../src/guestfs-actions.pod:2672
10618 #, no-wrap
10619 msgid ""
10620 " char **\n"
10621 " guestfs_inspect_get_filesystems (guestfs_h *g,\n"
10622 "                                  const char *root);\n"
10623 "\n"
10624 msgstr ""
10625
10626 #. type: textblock
10627 #: ../src/guestfs-actions.pod:2679 ../fish/guestfish-actions.pod:1829
10628 msgid ""
10629 "This returns a list of all the filesystems that we think are associated with "
10630 "this operating system.  This includes the root filesystem, other ordinary "
10631 "filesystems, and non-mounted devices like swap partitions."
10632 msgstr ""
10633
10634 #. type: textblock
10635 #: ../src/guestfs-actions.pod:2684 ../fish/guestfish-actions.pod:1834
10636 msgid ""
10637 "In the case of a multi-boot virtual machine, it is possible for a filesystem "
10638 "to be shared between operating systems."
10639 msgstr ""
10640
10641 #. type: textblock
10642 #: ../src/guestfs-actions.pod:2687
10643 msgid ""
10644 "Please read L<guestfs(3)/INSPECTION> for more details.  See also "
10645 "C<guestfs_inspect_get_mountpoints>."
10646 msgstr ""
10647
10648 #. type: =head2
10649 #: ../src/guestfs-actions.pod:2696
10650 msgid "guestfs_inspect_get_format"
10651 msgstr ""
10652
10653 #. type: verbatim
10654 #: ../src/guestfs-actions.pod:2698
10655 #, no-wrap
10656 msgid ""
10657 " char *\n"
10658 " guestfs_inspect_get_format (guestfs_h *g,\n"
10659 "                             const char *root);\n"
10660 "\n"
10661 msgstr ""
10662
10663 #. type: textblock
10664 #: ../src/guestfs-actions.pod:2705 ../fish/guestfish-actions.pod:1847
10665 msgid ""
10666 "This returns the format of the inspected operating system.  You can use it "
10667 "to detect install images, live CDs and similar."
10668 msgstr ""
10669
10670 #. type: textblock
10671 #: ../src/guestfs-actions.pod:2708 ../fish/guestfish-actions.pod:1850
10672 msgid "Currently defined formats are:"
10673 msgstr ""
10674
10675 #. type: =item
10676 #: ../src/guestfs-actions.pod:2712 ../fish/guestfish-actions.pod:1854
10677 msgid "\"installed\""
10678 msgstr "\"installed\""
10679
10680 #. type: textblock
10681 #: ../src/guestfs-actions.pod:2714 ../fish/guestfish-actions.pod:1856
10682 msgid "This is an installed operating system."
10683 msgstr "Це встановлена операційна система."
10684
10685 #. type: =item
10686 #: ../src/guestfs-actions.pod:2716 ../fish/guestfish-actions.pod:1858
10687 msgid "\"installer\""
10688 msgstr ""
10689
10690 #. type: textblock
10691 #: ../src/guestfs-actions.pod:2718 ../fish/guestfish-actions.pod:1860
10692 msgid ""
10693 "The disk image being inspected is not an installed operating system, but a "
10694 "I<bootable> install disk, live CD, or similar."
10695 msgstr ""
10696
10697 #. type: textblock
10698 #: ../src/guestfs-actions.pod:2723 ../fish/guestfish-actions.pod:1865
10699 msgid "The format of this disk image is not known."
10700 msgstr ""
10701
10702 #. type: =head2
10703 #: ../src/guestfs-actions.pod:2735
10704 msgid "guestfs_inspect_get_hostname"
10705 msgstr ""
10706
10707 #. type: verbatim
10708 #: ../src/guestfs-actions.pod:2737
10709 #, no-wrap
10710 msgid ""
10711 " char *\n"
10712 " guestfs_inspect_get_hostname (guestfs_h *g,\n"
10713 "                               const char *root);\n"
10714 "\n"
10715 msgstr ""
10716
10717 #. type: textblock
10718 #: ../src/guestfs-actions.pod:2744 ../fish/guestfish-actions.pod:1881
10719 msgid ""
10720 "This function returns the hostname of the operating system as found by "
10721 "inspection of the guest's configuration files."
10722 msgstr ""
10723
10724 #. type: textblock
10725 #: ../src/guestfs-actions.pod:2747 ../fish/guestfish-actions.pod:1884
10726 msgid ""
10727 "If the hostname could not be determined, then the string C<unknown> is "
10728 "returned."
10729 msgstr ""
10730
10731 #. type: textblock
10732 #: ../src/guestfs-actions.pod:2755
10733 msgid "(Added in 1.7.9)"
10734 msgstr ""
10735
10736 #. type: =head2
10737 #: ../src/guestfs-actions.pod:2757
10738 msgid "guestfs_inspect_get_major_version"
10739 msgstr ""
10740
10741 #. type: verbatim
10742 #: ../src/guestfs-actions.pod:2759
10743 #, no-wrap
10744 msgid ""
10745 " int\n"
10746 " guestfs_inspect_get_major_version (guestfs_h *g,\n"
10747 "                                    const char *root);\n"
10748 "\n"
10749 msgstr ""
10750
10751 #. type: textblock
10752 #: ../src/guestfs-actions.pod:2766 ../fish/guestfish-actions.pod:1896
10753 msgid ""
10754 "This returns the major version number of the inspected operating system."
10755 msgstr ""
10756
10757 #. type: textblock
10758 #: ../src/guestfs-actions.pod:2769 ../fish/guestfish-actions.pod:1899
10759 msgid ""
10760 "Windows uses a consistent versioning scheme which is I<not> reflected in the "
10761 "popular public names used by the operating system.  Notably the operating "
10762 "system known as \"Windows 7\" is really version 6.1 (ie. major = 6, minor = "
10763 "1).  You can find out the real versions corresponding to releases of Windows "
10764 "by consulting Wikipedia or MSDN."
10765 msgstr ""
10766
10767 #. type: textblock
10768 #: ../src/guestfs-actions.pod:2776 ../src/guestfs-actions.pod:2796
10769 #: ../fish/guestfish-actions.pod:1906 ../fish/guestfish-actions.pod:1920
10770 msgid "If the version could not be determined, then C<0> is returned."
10771 msgstr ""
10772
10773 #. type: =head2
10774 #: ../src/guestfs-actions.pod:2784
10775 msgid "guestfs_inspect_get_minor_version"
10776 msgstr ""
10777
10778 #. type: verbatim
10779 #: ../src/guestfs-actions.pod:2786
10780 #, no-wrap
10781 msgid ""
10782 " int\n"
10783 " guestfs_inspect_get_minor_version (guestfs_h *g,\n"
10784 "                                    const char *root);\n"
10785 "\n"
10786 msgstr ""
10787
10788 #. type: textblock
10789 #: ../src/guestfs-actions.pod:2793 ../fish/guestfish-actions.pod:1917
10790 msgid ""
10791 "This returns the minor version number of the inspected operating system."
10792 msgstr ""
10793
10794 #. type: textblock
10795 #: ../src/guestfs-actions.pod:2798
10796 msgid ""
10797 "Please read L<guestfs(3)/INSPECTION> for more details.  See also "
10798 "C<guestfs_inspect_get_major_version>."
10799 msgstr ""
10800
10801 #. type: =head2
10802 #: ../src/guestfs-actions.pod:2805
10803 msgid "guestfs_inspect_get_mountpoints"
10804 msgstr ""
10805
10806 #. type: verbatim
10807 #: ../src/guestfs-actions.pod:2807
10808 #, no-wrap
10809 msgid ""
10810 " char **\n"
10811 " guestfs_inspect_get_mountpoints (guestfs_h *g,\n"
10812 "                                  const char *root);\n"
10813 "\n"
10814 msgstr ""
10815
10816 #. type: textblock
10817 #: ../src/guestfs-actions.pod:2814 ../fish/guestfish-actions.pod:1932
10818 msgid ""
10819 "This returns a hash of where we think the filesystems associated with this "
10820 "operating system should be mounted.  Callers should note that this is at "
10821 "best an educated guess made by reading configuration files such as C</etc/"
10822 "fstab>.  I<In particular note> that this may return filesystems which are "
10823 "non-existent or not mountable and callers should be prepared to handle or "
10824 "ignore failures if they try to mount them."
10825 msgstr ""
10826
10827 #. type: textblock
10828 #: ../src/guestfs-actions.pod:2823 ../fish/guestfish-actions.pod:1941
10829 msgid ""
10830 "Each element in the returned hashtable has a key which is the path of the "
10831 "mountpoint (eg. C</boot>) and a value which is the filesystem that would be "
10832 "mounted there (eg. C</dev/sda1>)."
10833 msgstr ""
10834
10835 #. type: textblock
10836 #: ../src/guestfs-actions.pod:2828 ../fish/guestfish-actions.pod:1946
10837 msgid ""
10838 "Non-mounted devices such as swap devices are I<not> returned in this list."
10839 msgstr ""
10840
10841 #. type: textblock
10842 #: ../src/guestfs-actions.pod:2831
10843 msgid ""
10844 "For operating systems like Windows which still use drive letters, this call "
10845 "will only return an entry for the first drive \"mounted on\" C</>.  For "
10846 "information about the mapping of drive letters to partitions, see "
10847 "C<guestfs_inspect_get_drive_mappings>."
10848 msgstr ""
10849
10850 #. type: textblock
10851 #: ../src/guestfs-actions.pod:2837
10852 msgid ""
10853 "Please read L<guestfs(3)/INSPECTION> for more details.  See also "
10854 "C<guestfs_inspect_get_filesystems>."
10855 msgstr ""
10856
10857 #. type: =head2
10858 #: ../src/guestfs-actions.pod:2848
10859 msgid "guestfs_inspect_get_package_format"
10860 msgstr ""
10861
10862 #. type: verbatim
10863 #: ../src/guestfs-actions.pod:2850
10864 #, no-wrap
10865 msgid ""
10866 " char *\n"
10867 " guestfs_inspect_get_package_format (guestfs_h *g,\n"
10868 "                                     const char *root);\n"
10869 "\n"
10870 msgstr ""
10871
10872 #. type: textblock
10873 #: ../src/guestfs-actions.pod:2857
10874 msgid ""
10875 "This function and C<guestfs_inspect_get_package_management> return the "
10876 "package format and package management tool used by the inspected operating "
10877 "system.  For example for Fedora these functions would return C<rpm> (package "
10878 "format) and C<yum> (package management)."
10879 msgstr ""
10880
10881 #. type: textblock
10882 #: ../src/guestfs-actions.pod:2863 ../fish/guestfish-actions.pod:1971
10883 msgid ""
10884 "This returns the string C<unknown> if we could not determine the package "
10885 "format I<or> if the operating system does not have a real packaging system "
10886 "(eg. Windows)."
10887 msgstr ""
10888
10889 #. type: textblock
10890 #: ../src/guestfs-actions.pod:2867 ../fish/guestfish-actions.pod:1975
10891 msgid ""
10892 "Possible strings include: C<rpm>, C<deb>, C<ebuild>, C<pisi>, C<pacman>.  "
10893 "Future versions of libguestfs may return other strings."
10894 msgstr ""
10895
10896 #. type: textblock
10897 #: ../src/guestfs-actions.pod:2875 ../src/guestfs-actions.pod:2906
10898 msgid "(Added in 1.7.5)"
10899 msgstr ""
10900
10901 #. type: =head2
10902 #: ../src/guestfs-actions.pod:2877
10903 msgid "guestfs_inspect_get_package_management"
10904 msgstr ""
10905
10906 #. type: verbatim
10907 #: ../src/guestfs-actions.pod:2879
10908 #, no-wrap
10909 msgid ""
10910 " char *\n"
10911 " guestfs_inspect_get_package_management (guestfs_h *g,\n"
10912 "                                         const char *root);\n"
10913 "\n"
10914 msgstr ""
10915
10916 #. type: textblock
10917 #: ../src/guestfs-actions.pod:2886
10918 msgid ""
10919 "C<guestfs_inspect_get_package_format> and this function return the package "
10920 "format and package management tool used by the inspected operating system.  "
10921 "For example for Fedora these functions would return C<rpm> (package format) "
10922 "and C<yum> (package management)."
10923 msgstr ""
10924
10925 #. type: textblock
10926 #: ../src/guestfs-actions.pod:2892 ../fish/guestfish-actions.pod:1993
10927 msgid ""
10928 "This returns the string C<unknown> if we could not determine the package "
10929 "management tool I<or> if the operating system does not have a real packaging "
10930 "system (eg. Windows)."
10931 msgstr ""
10932
10933 #. type: textblock
10934 #: ../src/guestfs-actions.pod:2896 ../fish/guestfish-actions.pod:1997
10935 msgid ""
10936 "Possible strings include: C<yum>, C<up2date>, C<apt> (for all Debian "
10937 "derivatives), C<portage>, C<pisi>, C<pacman>, C<urpmi>.  Future versions of "
10938 "libguestfs may return other strings."
10939 msgstr ""
10940
10941 #. type: =head2
10942 #: ../src/guestfs-actions.pod:2908
10943 msgid "guestfs_inspect_get_product_name"
10944 msgstr ""
10945
10946 #. type: verbatim
10947 #: ../src/guestfs-actions.pod:2910
10948 #, no-wrap
10949 msgid ""
10950 " char *\n"
10951 " guestfs_inspect_get_product_name (guestfs_h *g,\n"
10952 "                                   const char *root);\n"
10953 "\n"
10954 msgstr ""
10955
10956 #. type: textblock
10957 #: ../src/guestfs-actions.pod:2917 ../fish/guestfish-actions.pod:2011
10958 msgid ""
10959 "This returns the product name of the inspected operating system.  The "
10960 "product name is generally some freeform string which can be displayed to the "
10961 "user, but should not be parsed by programs."
10962 msgstr ""
10963
10964 #. type: textblock
10965 #: ../src/guestfs-actions.pod:2922 ../fish/guestfish-actions.pod:2016
10966 msgid ""
10967 "If the product name could not be determined, then the string C<unknown> is "
10968 "returned."
10969 msgstr ""
10970
10971 #. type: =head2
10972 #: ../src/guestfs-actions.pod:2932
10973 msgid "guestfs_inspect_get_product_variant"
10974 msgstr ""
10975
10976 #. type: verbatim
10977 #: ../src/guestfs-actions.pod:2934
10978 #, no-wrap
10979 msgid ""
10980 " char *\n"
10981 " guestfs_inspect_get_product_variant (guestfs_h *g,\n"
10982 "                                      const char *root);\n"
10983 "\n"
10984 msgstr ""
10985
10986 #. type: textblock
10987 #: ../src/guestfs-actions.pod:2941 ../fish/guestfish-actions.pod:2028
10988 #, fuzzy
10989 #| msgid "This is an installed operating system."
10990 msgid "This returns the product variant of the inspected operating system."
10991 msgstr "Це встановлена операційна система."
10992
10993 #. type: textblock
10994 #: ../src/guestfs-actions.pod:2944 ../fish/guestfish-actions.pod:2031
10995 msgid ""
10996 "For Windows guests, this returns the contents of the Registry key C<HKLM"
10997 "\\Software\\Microsoft\\Windows NT\\CurrentVersion> C<InstallationType> which "
10998 "is usually a string such as C<Client> or C<Server> (other values are "
10999 "possible).  This can be used to distinguish consumer and enterprise versions "
11000 "of Windows that have the same version number (for example, Windows 7 and "
11001 "Windows 2008 Server are both version 6.1, but the former is C<Client> and "
11002 "the latter is C<Server>)."
11003 msgstr ""
11004
11005 #. type: textblock
11006 #: ../src/guestfs-actions.pod:2953 ../fish/guestfish-actions.pod:2040
11007 msgid ""
11008 "For enterprise Linux guests, in future we intend this to return the product "
11009 "variant such as C<Desktop>, C<Server> and so on.  But this is not "
11010 "implemented at present."
11011 msgstr ""
11012
11013 #. type: textblock
11014 #: ../src/guestfs-actions.pod:2957 ../fish/guestfish-actions.pod:2044
11015 msgid ""
11016 "If the product variant could not be determined, then the string C<unknown> "
11017 "is returned."
11018 msgstr ""
11019
11020 #. type: textblock
11021 #: ../src/guestfs-actions.pod:2960
11022 msgid ""
11023 "Please read L<guestfs(3)/INSPECTION> for more details.  See also "
11024 "C<guestfs_inspect_get_product_name>, C<guestfs_inspect_get_major_version>."
11025 msgstr ""
11026
11027 #. type: =head2
11028 #: ../src/guestfs-actions.pod:2967
11029 msgid "guestfs_inspect_get_roots"
11030 msgstr ""
11031
11032 #. type: verbatim
11033 #: ../src/guestfs-actions.pod:2969
11034 #, no-wrap
11035 msgid ""
11036 " char **\n"
11037 " guestfs_inspect_get_roots (guestfs_h *g);\n"
11038 "\n"
11039 msgstr ""
11040
11041 #. type: textblock
11042 #: ../src/guestfs-actions.pod:2972
11043 msgid ""
11044 "This function is a convenient way to get the list of root devices, as "
11045 "returned from a previous call to C<guestfs_inspect_os>, but without redoing "
11046 "the whole inspection process."
11047 msgstr ""
11048
11049 #. type: textblock
11050 #: ../src/guestfs-actions.pod:2976
11051 msgid ""
11052 "This returns an empty list if either no root devices were found or the "
11053 "caller has not called C<guestfs_inspect_os>."
11054 msgstr ""
11055
11056 #. type: textblock
11057 #: ../src/guestfs-actions.pod:2985
11058 msgid "(Added in 1.7.3)"
11059 msgstr ""
11060
11061 #. type: =head2
11062 #: ../src/guestfs-actions.pod:2987
11063 msgid "guestfs_inspect_get_type"
11064 msgstr ""
11065
11066 #. type: verbatim
11067 #: ../src/guestfs-actions.pod:2989
11068 #, no-wrap
11069 msgid ""
11070 " char *\n"
11071 " guestfs_inspect_get_type (guestfs_h *g,\n"
11072 "                           const char *root);\n"
11073 "\n"
11074 msgstr ""
11075
11076 #. type: textblock
11077 #: ../src/guestfs-actions.pod:2996 ../fish/guestfish-actions.pod:2071
11078 msgid ""
11079 "This returns the type of the inspected operating system.  Currently defined "
11080 "types are:"
11081 msgstr ""
11082
11083 #. type: =item
11084 #: ../src/guestfs-actions.pod:3001 ../fish/guestfish-actions.pod:2076
11085 msgid "\"linux\""
11086 msgstr "\"linux\""
11087
11088 #. type: textblock
11089 #: ../src/guestfs-actions.pod:3003 ../fish/guestfish-actions.pod:2078
11090 msgid "Any Linux-based operating system."
11091 msgstr ""
11092
11093 #. type: textblock
11094 #: ../src/guestfs-actions.pod:3007 ../fish/guestfish-actions.pod:2082
11095 msgid "Any Microsoft Windows operating system."
11096 msgstr ""
11097
11098 #. type: =item
11099 #: ../src/guestfs-actions.pod:3009 ../fish/guestfish-actions.pod:2084
11100 msgid "\"freebsd\""
11101 msgstr "\"freebsd\""
11102
11103 #. type: textblock
11104 #: ../src/guestfs-actions.pod:3011 ../fish/guestfish-actions.pod:2086
11105 msgid "FreeBSD."
11106 msgstr "FreeBSD."
11107
11108 #. type: textblock
11109 #: ../src/guestfs-actions.pod:3015 ../fish/guestfish-actions.pod:2090
11110 msgid "The operating system type could not be determined."
11111 msgstr ""
11112
11113 #. type: =head2
11114 #: ../src/guestfs-actions.pod:3029
11115 msgid "guestfs_inspect_get_windows_current_control_set"
11116 msgstr ""
11117
11118 #. type: verbatim
11119 #: ../src/guestfs-actions.pod:3031
11120 #, no-wrap
11121 msgid ""
11122 " char *\n"
11123 " guestfs_inspect_get_windows_current_control_set (guestfs_h *g,\n"
11124 "                                                  const char *root);\n"
11125 "\n"
11126 msgstr ""
11127
11128 #. type: textblock
11129 #: ../src/guestfs-actions.pod:3038 ../fish/guestfish-actions.pod:2106
11130 msgid ""
11131 "This returns the Windows CurrentControlSet of the inspected guest.  The "
11132 "CurrentControlSet is a registry key name such as C<ControlSet001>."
11133 msgstr ""
11134
11135 #. type: textblock
11136 #: ../src/guestfs-actions.pod:3041 ../fish/guestfish-actions.pod:2109
11137 msgid ""
11138 "This call assumes that the guest is Windows and that the Registry could be "
11139 "examined by inspection.  If this is not the case then an error is returned."
11140 msgstr ""
11141
11142 #. type: =head2
11143 #: ../src/guestfs-actions.pod:3050
11144 msgid "guestfs_inspect_get_windows_systemroot"
11145 msgstr ""
11146
11147 #. type: verbatim
11148 #: ../src/guestfs-actions.pod:3052
11149 #, no-wrap
11150 msgid ""
11151 " char *\n"
11152 " guestfs_inspect_get_windows_systemroot (guestfs_h *g,\n"
11153 "                                         const char *root);\n"
11154 "\n"
11155 msgstr ""
11156
11157 #. type: textblock
11158 #: ../src/guestfs-actions.pod:3059 ../fish/guestfish-actions.pod:2122
11159 msgid ""
11160 "This returns the Windows systemroot of the inspected guest.  The systemroot "
11161 "is a directory path such as C</WINDOWS>."
11162 msgstr ""
11163
11164 #. type: textblock
11165 #: ../src/guestfs-actions.pod:3062 ../fish/guestfish-actions.pod:2125
11166 msgid ""
11167 "This call assumes that the guest is Windows and that the systemroot could be "
11168 "determined by inspection.  If this is not the case then an error is returned."
11169 msgstr ""
11170
11171 #. type: textblock
11172 #: ../src/guestfs-actions.pod:3071
11173 msgid "(Added in 1.5.25)"
11174 msgstr ""
11175
11176 #. type: =head2
11177 #: ../src/guestfs-actions.pod:3073
11178 msgid "guestfs_inspect_is_live"
11179 msgstr ""
11180
11181 #. type: verbatim
11182 #: ../src/guestfs-actions.pod:3075
11183 #, no-wrap
11184 msgid ""
11185 " int\n"
11186 " guestfs_inspect_is_live (guestfs_h *g,\n"
11187 "                          const char *root);\n"
11188 "\n"
11189 msgstr ""
11190
11191 #. type: textblock
11192 #: ../src/guestfs-actions.pod:3082
11193 msgid ""
11194 "If C<guestfs_inspect_get_format> returns C<installer> (this is an install "
11195 "disk), then this returns true if a live image was detected on the disk."
11196 msgstr ""
11197
11198 #. type: =head2
11199 #: ../src/guestfs-actions.pod:3090
11200 msgid "guestfs_inspect_is_multipart"
11201 msgstr ""
11202
11203 #. type: verbatim
11204 #: ../src/guestfs-actions.pod:3092
11205 #, no-wrap
11206 msgid ""
11207 " int\n"
11208 " guestfs_inspect_is_multipart (guestfs_h *g,\n"
11209 "                               const char *root);\n"
11210 "\n"
11211 msgstr ""
11212
11213 #. type: textblock
11214 #: ../src/guestfs-actions.pod:3099
11215 msgid ""
11216 "If C<guestfs_inspect_get_format> returns C<installer> (this is an install "
11217 "disk), then this returns true if the disk is part of a set."
11218 msgstr ""
11219
11220 #. type: =head2
11221 #: ../src/guestfs-actions.pod:3107
11222 msgid "guestfs_inspect_is_netinst"
11223 msgstr ""
11224
11225 #. type: verbatim
11226 #: ../src/guestfs-actions.pod:3109
11227 #, no-wrap
11228 msgid ""
11229 " int\n"
11230 " guestfs_inspect_is_netinst (guestfs_h *g,\n"
11231 "                             const char *root);\n"
11232 "\n"
11233 msgstr ""
11234
11235 #. type: textblock
11236 #: ../src/guestfs-actions.pod:3116
11237 msgid ""
11238 "If C<guestfs_inspect_get_format> returns C<installer> (this is an install "
11239 "disk), then this returns true if the disk is a network installer, ie. not a "
11240 "self-contained install CD but one which is likely to require network access "
11241 "to complete the install."
11242 msgstr ""
11243
11244 #. type: =head2
11245 #: ../src/guestfs-actions.pod:3126
11246 msgid "guestfs_inspect_list_applications"
11247 msgstr ""
11248
11249 #. type: verbatim
11250 #: ../src/guestfs-actions.pod:3128
11251 #, no-wrap
11252 msgid ""
11253 " struct guestfs_application_list *\n"
11254 " guestfs_inspect_list_applications (guestfs_h *g,\n"
11255 "                                    const char *root);\n"
11256 "\n"
11257 msgstr ""
11258
11259 #. type: textblock
11260 #: ../src/guestfs-actions.pod:3135 ../fish/guestfish-actions.pod:2179
11261 msgid "Return the list of applications installed in the operating system."
11262 msgstr ""
11263
11264 #. type: textblock
11265 #: ../src/guestfs-actions.pod:3137
11266 msgid ""
11267 "I<Note:> This call works differently from other parts of the inspection "
11268 "API.  You have to call C<guestfs_inspect_os>, then "
11269 "C<guestfs_inspect_get_mountpoints>, then mount up the disks, before calling "
11270 "this.  Listing applications is a significantly more difficult operation "
11271 "which requires access to the full filesystem.  Also note that unlike the "
11272 "other C<guestfs_inspect_get_*> calls which are just returning data cached in "
11273 "the libguestfs handle, this call actually reads parts of the mounted "
11274 "filesystems during the call."
11275 msgstr ""
11276
11277 #. type: textblock
11278 #: ../src/guestfs-actions.pod:3147 ../fish/guestfish-actions.pod:2191
11279 msgid ""
11280 "This returns an empty list if the inspection code was not able to determine "
11281 "the list of applications."
11282 msgstr ""
11283
11284 #. type: textblock
11285 #: ../src/guestfs-actions.pod:3150 ../fish/guestfish-actions.pod:2194
11286 msgid "The application structure contains the following fields:"
11287 msgstr ""
11288
11289 #. type: =item
11290 #: ../src/guestfs-actions.pod:3154 ../fish/guestfish-actions.pod:2198
11291 msgid "C<app_name>"
11292 msgstr "C<app_name>"
11293
11294 #. type: textblock
11295 #: ../src/guestfs-actions.pod:3156 ../fish/guestfish-actions.pod:2200
11296 msgid ""
11297 "The name of the application.  For Red Hat-derived and Debian-derived Linux "
11298 "guests, this is the package name."
11299 msgstr ""
11300
11301 #. type: =item
11302 #: ../src/guestfs-actions.pod:3159 ../fish/guestfish-actions.pod:2203
11303 msgid "C<app_display_name>"
11304 msgstr "C<app_display_name>"
11305
11306 #. type: textblock
11307 #: ../src/guestfs-actions.pod:3161 ../fish/guestfish-actions.pod:2205
11308 msgid ""
11309 "The display name of the application, sometimes localized to the install "
11310 "language of the guest operating system."
11311 msgstr ""
11312
11313 #. type: textblock
11314 #: ../src/guestfs-actions.pod:3164 ../fish/guestfish-actions.pod:2208
11315 msgid ""
11316 "If unavailable this is returned as an empty string C<\"\">.  Callers needing "
11317 "to display something can use C<app_name> instead."
11318 msgstr ""
11319
11320 #. type: =item
11321 #: ../src/guestfs-actions.pod:3167 ../fish/guestfish-actions.pod:2211
11322 msgid "C<app_epoch>"
11323 msgstr "C<app_epoch>"
11324
11325 #. type: textblock
11326 #: ../src/guestfs-actions.pod:3169 ../fish/guestfish-actions.pod:2213
11327 msgid ""
11328 "For package managers which use epochs, this contains the epoch of the "
11329 "package (an integer).  If unavailable, this is returned as C<0>."
11330 msgstr ""
11331
11332 #. type: =item
11333 #: ../src/guestfs-actions.pod:3172 ../fish/guestfish-actions.pod:2216
11334 msgid "C<app_version>"
11335 msgstr "C<app_version>"
11336
11337 #. type: textblock
11338 #: ../src/guestfs-actions.pod:3174 ../fish/guestfish-actions.pod:2218
11339 msgid ""
11340 "The version string of the application or package.  If unavailable this is "
11341 "returned as an empty string C<\"\">."
11342 msgstr ""
11343
11344 #. type: =item
11345 #: ../src/guestfs-actions.pod:3177 ../fish/guestfish-actions.pod:2221
11346 msgid "C<app_release>"
11347 msgstr "C<app_release>"
11348
11349 #. type: textblock
11350 #: ../src/guestfs-actions.pod:3179 ../fish/guestfish-actions.pod:2223
11351 msgid ""
11352 "The release string of the application or package, for package managers that "
11353 "use this.  If unavailable this is returned as an empty string C<\"\">."
11354 msgstr ""
11355
11356 #. type: =item
11357 #: ../src/guestfs-actions.pod:3183 ../fish/guestfish-actions.pod:2227
11358 msgid "C<app_install_path>"
11359 msgstr "C<app_install_path>"
11360
11361 #. type: textblock
11362 #: ../src/guestfs-actions.pod:3185 ../fish/guestfish-actions.pod:2229
11363 msgid ""
11364 "The installation path of the application (on operating systems such as "
11365 "Windows which use installation paths).  This path is in the format used by "
11366 "the guest operating system, it is not a libguestfs path."
11367 msgstr ""
11368
11369 #. type: textblock
11370 #: ../src/guestfs-actions.pod:3190 ../fish/guestfish-actions.pod:2234
11371 msgid "If unavailable this is returned as an empty string C<\"\">."
11372 msgstr ""
11373
11374 #. type: =item
11375 #: ../src/guestfs-actions.pod:3192 ../fish/guestfish-actions.pod:2236
11376 msgid "C<app_trans_path>"
11377 msgstr "C<app_trans_path>"
11378
11379 #. type: textblock
11380 #: ../src/guestfs-actions.pod:3194 ../fish/guestfish-actions.pod:2238
11381 msgid ""
11382 "The install path translated into a libguestfs path.  If unavailable this is "
11383 "returned as an empty string C<\"\">."
11384 msgstr ""
11385
11386 #. type: =item
11387 #: ../src/guestfs-actions.pod:3197 ../fish/guestfish-actions.pod:2241
11388 msgid "C<app_publisher>"
11389 msgstr "C<app_publisher>"
11390
11391 #. type: textblock
11392 #: ../src/guestfs-actions.pod:3199 ../fish/guestfish-actions.pod:2243
11393 msgid ""
11394 "The name of the publisher of the application, for package managers that use "
11395 "this.  If unavailable this is returned as an empty string C<\"\">."
11396 msgstr ""
11397
11398 #. type: =item
11399 #: ../src/guestfs-actions.pod:3203 ../fish/guestfish-actions.pod:2247
11400 msgid "C<app_url>"
11401 msgstr "C<app_url>"
11402
11403 #. type: textblock
11404 #: ../src/guestfs-actions.pod:3205 ../fish/guestfish-actions.pod:2249
11405 msgid ""
11406 "The URL (eg. upstream URL) of the application.  If unavailable this is "
11407 "returned as an empty string C<\"\">."
11408 msgstr ""
11409
11410 #. type: =item
11411 #: ../src/guestfs-actions.pod:3208 ../fish/guestfish-actions.pod:2252
11412 msgid "C<app_source_package>"
11413 msgstr ""
11414
11415 #. type: textblock
11416 #: ../src/guestfs-actions.pod:3210 ../fish/guestfish-actions.pod:2254
11417 msgid ""
11418 "For packaging systems which support this, the name of the source package.  "
11419 "If unavailable this is returned as an empty string C<\"\">."
11420 msgstr ""
11421
11422 #. type: =item
11423 #: ../src/guestfs-actions.pod:3213 ../fish/guestfish-actions.pod:2257
11424 msgid "C<app_summary>"
11425 msgstr ""
11426
11427 #. type: textblock
11428 #: ../src/guestfs-actions.pod:3215 ../fish/guestfish-actions.pod:2259
11429 msgid ""
11430 "A short (usually one line) description of the application or package.  If "
11431 "unavailable this is returned as an empty string C<\"\">."
11432 msgstr ""
11433
11434 #. type: =item
11435 #: ../src/guestfs-actions.pod:3218 ../fish/guestfish-actions.pod:2262
11436 msgid "C<app_description>"
11437 msgstr ""
11438
11439 #. type: textblock
11440 #: ../src/guestfs-actions.pod:3220 ../fish/guestfish-actions.pod:2264
11441 msgid ""
11442 "A longer description of the application or package.  If unavailable this is "
11443 "returned as an empty string C<\"\">."
11444 msgstr ""
11445
11446 #. type: textblock
11447 #: ../src/guestfs-actions.pod:3227
11448 msgid ""
11449 "This function returns a C<struct guestfs_application_list *>, or NULL if "
11450 "there was an error.  I<The caller must call C<guestfs_free_application_list> "
11451 "after use>."
11452 msgstr ""
11453
11454 #. type: textblock
11455 #: ../src/guestfs-actions.pod:3231
11456 msgid "(Added in 1.7.8)"
11457 msgstr ""
11458
11459 #. type: =head2
11460 #: ../src/guestfs-actions.pod:3233
11461 msgid "guestfs_inspect_os"
11462 msgstr ""
11463
11464 #. type: verbatim
11465 #: ../src/guestfs-actions.pod:3235
11466 #, no-wrap
11467 msgid ""
11468 " char **\n"
11469 " guestfs_inspect_os (guestfs_h *g);\n"
11470 "\n"
11471 msgstr ""
11472
11473 #. type: textblock
11474 #: ../src/guestfs-actions.pod:3238 ../fish/guestfish-actions.pod:2275
11475 msgid ""
11476 "This function uses other libguestfs functions and certain heuristics to "
11477 "inspect the disk(s) (usually disks belonging to a virtual machine), looking "
11478 "for operating systems."
11479 msgstr ""
11480
11481 #. type: textblock
11482 #: ../src/guestfs-actions.pod:3242 ../fish/guestfish-actions.pod:2279
11483 msgid "The list returned is empty if no operating systems were found."
11484 msgstr ""
11485
11486 #. type: textblock
11487 #: ../src/guestfs-actions.pod:3244 ../fish/guestfish-actions.pod:2281
11488 msgid ""
11489 "If one operating system was found, then this returns a list with a single "
11490 "element, which is the name of the root filesystem of this operating system.  "
11491 "It is also possible for this function to return a list containing more than "
11492 "one element, indicating a dual-boot or multi-boot virtual machine, with each "
11493 "element being the root filesystem of one of the operating systems."
11494 msgstr ""
11495
11496 #. type: textblock
11497 #: ../src/guestfs-actions.pod:3251
11498 msgid ""
11499 "You can pass the root string(s) returned to other C<guestfs_inspect_get_*> "
11500 "functions in order to query further information about each operating system, "
11501 "such as the name and version."
11502 msgstr ""
11503
11504 #. type: textblock
11505 #: ../src/guestfs-actions.pod:3256
11506 msgid ""
11507 "This function uses other libguestfs features such as C<guestfs_mount_ro> and "
11508 "C<guestfs_umount_all> in order to mount and unmount filesystems and look at "
11509 "the contents.  This should be called with no disks currently mounted.  The "
11510 "function may also use Augeas, so any existing Augeas handle will be closed."
11511 msgstr ""
11512
11513 #. type: textblock
11514 #: ../src/guestfs-actions.pod:3262 ../fish/guestfish-actions.pod:2299
11515 msgid ""
11516 "This function cannot decrypt encrypted disks.  The caller must do that first "
11517 "(supplying the necessary keys) if the disk is encrypted."
11518 msgstr ""
11519
11520 #. type: textblock
11521 #: ../src/guestfs-actions.pod:3268 ../src/guestfs-actions.pod:3558
11522 #: ../src/guestfs-actions.pod:3620
11523 msgid "See also C<guestfs_list_filesystems>."
11524 msgstr ""
11525
11526 #. type: =head2
11527 #: ../src/guestfs-actions.pod:3276
11528 msgid "guestfs_is_blockdev"
11529 msgstr ""
11530
11531 #. type: verbatim
11532 #: ../src/guestfs-actions.pod:3278
11533 #, no-wrap
11534 msgid ""
11535 " int\n"
11536 " guestfs_is_blockdev (guestfs_h *g,\n"
11537 "                      const char *path);\n"
11538 "\n"
11539 msgstr ""
11540
11541 #. type: textblock
11542 #: ../src/guestfs-actions.pod:3282 ../fish/guestfish-actions.pod:2311
11543 msgid ""
11544 "This returns C<true> if and only if there is a block device with the given "
11545 "C<path> name."
11546 msgstr ""
11547
11548 #. type: textblock
11549 #: ../src/guestfs-actions.pod:3285 ../src/guestfs-actions.pod:3314
11550 #: ../src/guestfs-actions.pod:3344 ../src/guestfs-actions.pod:3359
11551 #: ../src/guestfs-actions.pod:3375 ../src/guestfs-actions.pod:3431
11552 #: ../src/guestfs-actions.pod:3446
11553 msgid "See also C<guestfs_stat>."
11554 msgstr ""
11555
11556 #. type: textblock
11557 #: ../src/guestfs-actions.pod:3289 ../src/guestfs-actions.pod:3318
11558 #: ../src/guestfs-actions.pod:3363 ../src/guestfs-actions.pod:3435
11559 #: ../src/guestfs-actions.pod:3450
11560 msgid "(Added in 1.5.10)"
11561 msgstr ""
11562
11563 #. type: =head2
11564 #: ../src/guestfs-actions.pod:3291
11565 msgid "guestfs_is_busy"
11566 msgstr ""
11567
11568 #. type: verbatim
11569 #: ../src/guestfs-actions.pod:3293
11570 #, no-wrap
11571 msgid ""
11572 " int\n"
11573 " guestfs_is_busy (guestfs_h *g);\n"
11574 "\n"
11575 msgstr ""
11576
11577 #. type: textblock
11578 #: ../src/guestfs-actions.pod:3296 ../fish/guestfish-actions.pod:2320
11579 msgid ""
11580 "This returns true iff this handle is busy processing a command (in the "
11581 "C<BUSY> state)."
11582 msgstr ""
11583
11584 #. type: =head2
11585 #: ../src/guestfs-actions.pod:3305
11586 msgid "guestfs_is_chardev"
11587 msgstr ""
11588
11589 #. type: verbatim
11590 #: ../src/guestfs-actions.pod:3307
11591 #, no-wrap
11592 msgid ""
11593 " int\n"
11594 " guestfs_is_chardev (guestfs_h *g,\n"
11595 "                     const char *path);\n"
11596 "\n"
11597 msgstr ""
11598
11599 #. type: textblock
11600 #: ../src/guestfs-actions.pod:3311 ../fish/guestfish-actions.pod:2329
11601 msgid ""
11602 "This returns C<true> if and only if there is a character device with the "
11603 "given C<path> name."
11604 msgstr ""
11605
11606 #. type: =head2
11607 #: ../src/guestfs-actions.pod:3320
11608 msgid "guestfs_is_config"
11609 msgstr ""
11610
11611 #. type: verbatim
11612 #: ../src/guestfs-actions.pod:3322
11613 #, no-wrap
11614 msgid ""
11615 " int\n"
11616 " guestfs_is_config (guestfs_h *g);\n"
11617 "\n"
11618 msgstr ""
11619
11620 #. type: textblock
11621 #: ../src/guestfs-actions.pod:3325 ../fish/guestfish-actions.pod:2338
11622 msgid ""
11623 "This returns true iff this handle is being configured (in the C<CONFIG> "
11624 "state)."
11625 msgstr ""
11626
11627 #. type: =head2
11628 #: ../src/guestfs-actions.pod:3334
11629 msgid "guestfs_is_dir"
11630 msgstr ""
11631
11632 #. type: verbatim
11633 #: ../src/guestfs-actions.pod:3336
11634 #, no-wrap
11635 msgid ""
11636 " int\n"
11637 " guestfs_is_dir (guestfs_h *g,\n"
11638 "                 const char *path);\n"
11639 "\n"
11640 msgstr ""
11641
11642 #. type: textblock
11643 #: ../src/guestfs-actions.pod:3340 ../fish/guestfish-actions.pod:2347
11644 msgid ""
11645 "This returns C<true> if and only if there is a directory with the given "
11646 "C<path> name.  Note that it returns false for other objects like files."
11647 msgstr ""
11648
11649 #. type: =head2
11650 #: ../src/guestfs-actions.pod:3350
11651 msgid "guestfs_is_fifo"
11652 msgstr ""
11653
11654 #. type: verbatim
11655 #: ../src/guestfs-actions.pod:3352
11656 #, no-wrap
11657 msgid ""
11658 " int\n"
11659 " guestfs_is_fifo (guestfs_h *g,\n"
11660 "                  const char *path);\n"
11661 "\n"
11662 msgstr ""
11663
11664 #. type: textblock
11665 #: ../src/guestfs-actions.pod:3356 ../fish/guestfish-actions.pod:2357
11666 msgid ""
11667 "This returns C<true> if and only if there is a FIFO (named pipe)  with the "
11668 "given C<path> name."
11669 msgstr ""
11670
11671 #. type: =head2
11672 #: ../src/guestfs-actions.pod:3365
11673 msgid "guestfs_is_file"
11674 msgstr ""
11675
11676 #. type: verbatim
11677 #: ../src/guestfs-actions.pod:3367
11678 #, no-wrap
11679 msgid ""
11680 " int\n"
11681 " guestfs_is_file (guestfs_h *g,\n"
11682 "                  const char *path);\n"
11683 "\n"
11684 msgstr ""
11685
11686 #. type: textblock
11687 #: ../src/guestfs-actions.pod:3371 ../fish/guestfish-actions.pod:2366
11688 msgid ""
11689 "This returns C<true> if and only if there is a regular file with the given "
11690 "C<path> name.  Note that it returns false for other objects like directories."
11691 msgstr ""
11692
11693 #. type: =head2
11694 #: ../src/guestfs-actions.pod:3381
11695 msgid "guestfs_is_launching"
11696 msgstr ""
11697
11698 #. type: verbatim
11699 #: ../src/guestfs-actions.pod:3383
11700 #, no-wrap
11701 msgid ""
11702 " int\n"
11703 " guestfs_is_launching (guestfs_h *g);\n"
11704 "\n"
11705 msgstr ""
11706
11707 #. type: textblock
11708 #: ../src/guestfs-actions.pod:3386 ../fish/guestfish-actions.pod:2376
11709 msgid ""
11710 "This returns true iff this handle is launching the subprocess (in the "
11711 "C<LAUNCHING> state)."
11712 msgstr ""
11713
11714 #. type: =head2
11715 #: ../src/guestfs-actions.pod:3395
11716 msgid "guestfs_is_lv"
11717 msgstr ""
11718
11719 #. type: verbatim
11720 #: ../src/guestfs-actions.pod:3397
11721 #, no-wrap
11722 msgid ""
11723 " int\n"
11724 " guestfs_is_lv (guestfs_h *g,\n"
11725 "                const char *device);\n"
11726 "\n"
11727 msgstr ""
11728
11729 #. type: textblock
11730 #: ../src/guestfs-actions.pod:3401 ../fish/guestfish-actions.pod:2385
11731 msgid ""
11732 "This command tests whether C<device> is a logical volume, and returns true "
11733 "iff this is the case."
11734 msgstr ""
11735
11736 #. type: =head2
11737 #: ../src/guestfs-actions.pod:3408
11738 msgid "guestfs_is_ready"
11739 msgstr ""
11740
11741 #. type: verbatim
11742 #: ../src/guestfs-actions.pod:3410
11743 #, no-wrap
11744 msgid ""
11745 " int\n"
11746 " guestfs_is_ready (guestfs_h *g);\n"
11747 "\n"
11748 msgstr ""
11749
11750 #. type: textblock
11751 #: ../src/guestfs-actions.pod:3413 ../fish/guestfish-actions.pod:2392
11752 msgid ""
11753 "This returns true iff this handle is ready to accept commands (in the "
11754 "C<READY> state)."
11755 msgstr ""
11756
11757 #. type: =head2
11758 #: ../src/guestfs-actions.pod:3422
11759 msgid "guestfs_is_socket"
11760 msgstr ""
11761
11762 #. type: verbatim
11763 #: ../src/guestfs-actions.pod:3424
11764 #, no-wrap
11765 msgid ""
11766 " int\n"
11767 " guestfs_is_socket (guestfs_h *g,\n"
11768 "                    const char *path);\n"
11769 "\n"
11770 msgstr ""
11771
11772 #. type: textblock
11773 #: ../src/guestfs-actions.pod:3428 ../fish/guestfish-actions.pod:2401
11774 msgid ""
11775 "This returns C<true> if and only if there is a Unix domain socket with the "
11776 "given C<path> name."
11777 msgstr ""
11778
11779 #. type: =head2
11780 #: ../src/guestfs-actions.pod:3437
11781 msgid "guestfs_is_symlink"
11782 msgstr ""
11783
11784 #. type: verbatim
11785 #: ../src/guestfs-actions.pod:3439
11786 #, no-wrap
11787 msgid ""
11788 " int\n"
11789 " guestfs_is_symlink (guestfs_h *g,\n"
11790 "                     const char *path);\n"
11791 "\n"
11792 msgstr ""
11793
11794 #. type: textblock
11795 #: ../src/guestfs-actions.pod:3443 ../fish/guestfish-actions.pod:2410
11796 msgid ""
11797 "This returns C<true> if and only if there is a symbolic link with the given "
11798 "C<path> name."
11799 msgstr ""
11800
11801 #. type: =head2
11802 #: ../src/guestfs-actions.pod:3452
11803 msgid "guestfs_kill_subprocess"
11804 msgstr ""
11805
11806 #. type: verbatim
11807 #: ../src/guestfs-actions.pod:3454
11808 #, no-wrap
11809 msgid ""
11810 " int\n"
11811 " guestfs_kill_subprocess (guestfs_h *g);\n"
11812 "\n"
11813 msgstr ""
11814
11815 #. type: textblock
11816 #: ../src/guestfs-actions.pod:3457 ../fish/guestfish-actions.pod:2419
11817 msgid "This kills the qemu subprocess.  You should never need to call this."
11818 msgstr ""
11819
11820 #. type: =head2
11821 #: ../src/guestfs-actions.pod:3463
11822 msgid "guestfs_launch"
11823 msgstr ""
11824
11825 #. type: verbatim
11826 #: ../src/guestfs-actions.pod:3465
11827 #, no-wrap
11828 msgid ""
11829 " int\n"
11830 " guestfs_launch (guestfs_h *g);\n"
11831 "\n"
11832 msgstr ""
11833
11834 #. type: textblock
11835 #: ../src/guestfs-actions.pod:3468 ../fish/guestfish-actions.pod:2427
11836 msgid ""
11837 "Internally libguestfs is implemented by running a virtual machine using "
11838 "L<qemu(1)>."
11839 msgstr ""
11840
11841 #. type: textblock
11842 #: ../src/guestfs-actions.pod:3471 ../fish/guestfish-actions.pod:2430
11843 msgid ""
11844 "You should call this after configuring the handle (eg. adding drives) but "
11845 "before performing any actions."
11846 msgstr ""
11847
11848 #. type: =head2
11849 #: ../src/guestfs-actions.pod:3483
11850 msgid "guestfs_lchown"
11851 msgstr ""
11852
11853 #. type: verbatim
11854 #: ../src/guestfs-actions.pod:3485
11855 #, no-wrap
11856 msgid ""
11857 " int\n"
11858 " guestfs_lchown (guestfs_h *g,\n"
11859 "                 int owner,\n"
11860 "                 int group,\n"
11861 "                 const char *path);\n"
11862 "\n"
11863 msgstr ""
11864
11865 #. type: textblock
11866 #: ../src/guestfs-actions.pod:3491
11867 msgid ""
11868 "Change the file owner to C<owner> and group to C<group>.  This is like "
11869 "C<guestfs_chown> but if C<path> is a symlink then the link itself is "
11870 "changed, not the target."
11871 msgstr ""
11872
11873 #. type: =head2
11874 #: ../src/guestfs-actions.pod:3503
11875 msgid "guestfs_lgetxattr"
11876 msgstr ""
11877
11878 #. type: verbatim
11879 #: ../src/guestfs-actions.pod:3505
11880 #, no-wrap
11881 msgid ""
11882 " char *\n"
11883 " guestfs_lgetxattr (guestfs_h *g,\n"
11884 "                    const char *path,\n"
11885 "                    const char *name,\n"
11886 "                    size_t *size_r);\n"
11887 "\n"
11888 msgstr ""
11889
11890 #. type: textblock
11891 #: ../src/guestfs-actions.pod:3511 ../fish/guestfish-actions.pod:2449
11892 msgid ""
11893 "Get a single extended attribute from file C<path> named C<name>.  If C<path> "
11894 "is a symlink, then this call returns an extended attribute from the symlink."
11895 msgstr ""
11896
11897 #. type: textblock
11898 #: ../src/guestfs-actions.pod:3525
11899 msgid "See also: C<guestfs_lgetxattrs>, C<guestfs_getxattr>, L<attr(5)>."
11900 msgstr ""
11901
11902 #. type: =head2
11903 #: ../src/guestfs-actions.pod:3533
11904 msgid "guestfs_lgetxattrs"
11905 msgstr ""
11906
11907 #. type: verbatim
11908 #: ../src/guestfs-actions.pod:3535
11909 #, no-wrap
11910 msgid ""
11911 " struct guestfs_xattr_list *\n"
11912 " guestfs_lgetxattrs (guestfs_h *g,\n"
11913 "                     const char *path);\n"
11914 "\n"
11915 msgstr ""
11916
11917 #. type: textblock
11918 #: ../src/guestfs-actions.pod:3539
11919 msgid ""
11920 "This is the same as C<guestfs_getxattrs>, but if C<path> is a symbolic link, "
11921 "then it returns the extended attributes of the link itself."
11922 msgstr ""
11923
11924 #. type: =head2
11925 #: ../src/guestfs-actions.pod:3549
11926 msgid "guestfs_list_devices"
11927 msgstr ""
11928
11929 #. type: verbatim
11930 #: ../src/guestfs-actions.pod:3551
11931 #, no-wrap
11932 msgid ""
11933 " char **\n"
11934 " guestfs_list_devices (guestfs_h *g);\n"
11935 "\n"
11936 msgstr ""
11937
11938 #. type: textblock
11939 #: ../src/guestfs-actions.pod:3554 ../fish/guestfish-actions.pod:2477
11940 msgid "List all the block devices."
11941 msgstr ""
11942
11943 #. type: textblock
11944 #: ../src/guestfs-actions.pod:3556 ../fish/guestfish-actions.pod:2479
11945 msgid "The full block device names are returned, eg. C</dev/sda>."
11946 msgstr ""
11947
11948 #. type: =head2
11949 #: ../src/guestfs-actions.pod:3566
11950 msgid "guestfs_list_filesystems"
11951 msgstr ""
11952
11953 #. type: verbatim
11954 #: ../src/guestfs-actions.pod:3568
11955 #, no-wrap
11956 msgid ""
11957 " char **\n"
11958 " guestfs_list_filesystems (guestfs_h *g);\n"
11959 "\n"
11960 msgstr ""
11961
11962 #. type: textblock
11963 #: ../src/guestfs-actions.pod:3571 ../fish/guestfish-actions.pod:2487
11964 msgid ""
11965 "This inspection command looks for filesystems on partitions, block devices "
11966 "and logical volumes, returning a list of devices containing filesystems and "
11967 "their type."
11968 msgstr ""
11969
11970 #. type: textblock
11971 #: ../src/guestfs-actions.pod:3575 ../fish/guestfish-actions.pod:2491
11972 msgid ""
11973 "The return value is a hash, where the keys are the devices containing "
11974 "filesystems, and the values are the filesystem types.  For example:"
11975 msgstr ""
11976
11977 #. type: verbatim
11978 #: ../src/guestfs-actions.pod:3579 ../fish/guestfish-actions.pod:2495
11979 #, no-wrap
11980 msgid ""
11981 " \"/dev/sda1\" => \"ntfs\"\n"
11982 " \"/dev/sda2\" => \"ext2\"\n"
11983 " \"/dev/vg_guest/lv_root\" => \"ext4\"\n"
11984 " \"/dev/vg_guest/lv_swap\" => \"swap\"\n"
11985 "\n"
11986 msgstr ""
11987
11988 #. type: textblock
11989 #: ../src/guestfs-actions.pod:3584 ../fish/guestfish-actions.pod:2500
11990 msgid ""
11991 "The value can have the special value \"unknown\", meaning the content of the "
11992 "device is undetermined or empty.  \"swap\" means a Linux swap partition."
11993 msgstr ""
11994
11995 #. type: textblock
11996 #: ../src/guestfs-actions.pod:3588
11997 msgid ""
11998 "This command runs other libguestfs commands, which might include "
11999 "C<guestfs_mount> and C<guestfs_umount>, and therefore you should use this "
12000 "soon after launch and only when nothing is mounted."
12001 msgstr ""
12002
12003 #. type: textblock
12004 #: ../src/guestfs-actions.pod:3592
12005 msgid ""
12006 "Not all of the filesystems returned will be mountable.  In particular, swap "
12007 "partitions are returned in the list.  Also this command does not check that "
12008 "each filesystem found is valid and mountable, and some filesystems might be "
12009 "mountable but require special options.  Filesystems may not all belong to a "
12010 "single logical operating system (use C<guestfs_inspect_os> to look for OSes)."
12011 msgstr ""
12012
12013 #. type: textblock
12014 #: ../src/guestfs-actions.pod:3606 ../src/guestfs-actions.pod:5211
12015 msgid "(Added in 1.5.15)"
12016 msgstr ""
12017
12018 #. type: =head2
12019 #: ../src/guestfs-actions.pod:3608
12020 msgid "guestfs_list_partitions"
12021 msgstr ""
12022
12023 #. type: verbatim
12024 #: ../src/guestfs-actions.pod:3610
12025 #, no-wrap
12026 msgid ""
12027 " char **\n"
12028 " guestfs_list_partitions (guestfs_h *g);\n"
12029 "\n"
12030 msgstr ""
12031
12032 #. type: textblock
12033 #: ../src/guestfs-actions.pod:3613 ../fish/guestfish-actions.pod:2520
12034 msgid "List all the partitions detected on all block devices."
12035 msgstr ""
12036
12037 #. type: textblock
12038 #: ../src/guestfs-actions.pod:3615 ../fish/guestfish-actions.pod:2522
12039 msgid "The full partition device names are returned, eg. C</dev/sda1>"
12040 msgstr ""
12041
12042 #. type: textblock
12043 #: ../src/guestfs-actions.pod:3617
12044 msgid ""
12045 "This does not return logical volumes.  For that you will need to call "
12046 "C<guestfs_lvs>."
12047 msgstr ""
12048
12049 #. type: =head2
12050 #: ../src/guestfs-actions.pod:3628
12051 msgid "guestfs_ll"
12052 msgstr ""
12053
12054 #. type: verbatim
12055 #: ../src/guestfs-actions.pod:3630
12056 #, no-wrap
12057 msgid ""
12058 " char *\n"
12059 " guestfs_ll (guestfs_h *g,\n"
12060 "             const char *directory);\n"
12061 "\n"
12062 msgstr ""
12063
12064 #. type: textblock
12065 #: ../src/guestfs-actions.pod:3634 ../fish/guestfish-actions.pod:2533
12066 msgid ""
12067 "List the files in C<directory> (relative to the root directory, there is no "
12068 "cwd) in the format of 'ls -la'."
12069 msgstr ""
12070
12071 #. type: textblock
12072 #: ../src/guestfs-actions.pod:3637 ../fish/guestfish-actions.pod:2536
12073 msgid ""
12074 "This command is mostly useful for interactive sessions.  It is I<not> "
12075 "intended that you try to parse the output string."
12076 msgstr ""
12077
12078 #. type: =head2
12079 #: ../src/guestfs-actions.pod:3645
12080 msgid "guestfs_ln"
12081 msgstr ""
12082
12083 #. type: verbatim
12084 #: ../src/guestfs-actions.pod:3647
12085 #, no-wrap
12086 msgid ""
12087 " int\n"
12088 " guestfs_ln (guestfs_h *g,\n"
12089 "             const char *target,\n"
12090 "             const char *linkname);\n"
12091 "\n"
12092 msgstr ""
12093
12094 #. type: textblock
12095 #: ../src/guestfs-actions.pod:3652 ../fish/guestfish-actions.pod:2543
12096 msgid "This command creates a hard link using the C<ln> command."
12097 msgstr ""
12098
12099 #. type: =head2
12100 #: ../src/guestfs-actions.pod:3658
12101 msgid "guestfs_ln_f"
12102 msgstr ""
12103
12104 #. type: verbatim
12105 #: ../src/guestfs-actions.pod:3660
12106 #, no-wrap
12107 msgid ""
12108 " int\n"
12109 " guestfs_ln_f (guestfs_h *g,\n"
12110 "               const char *target,\n"
12111 "               const char *linkname);\n"
12112 "\n"
12113 msgstr ""
12114
12115 #. type: textblock
12116 #: ../src/guestfs-actions.pod:3665 ../fish/guestfish-actions.pod:2549
12117 msgid ""
12118 "This command creates a hard link using the C<ln -f> command.  The C<-f> "
12119 "option removes the link (C<linkname>) if it exists already."
12120 msgstr ""
12121
12122 #. type: =head2
12123 #: ../src/guestfs-actions.pod:3672
12124 msgid "guestfs_ln_s"
12125 msgstr ""
12126
12127 #. type: verbatim
12128 #: ../src/guestfs-actions.pod:3674
12129 #, no-wrap
12130 msgid ""
12131 " int\n"
12132 " guestfs_ln_s (guestfs_h *g,\n"
12133 "               const char *target,\n"
12134 "               const char *linkname);\n"
12135 "\n"
12136 msgstr ""
12137
12138 #. type: textblock
12139 #: ../src/guestfs-actions.pod:3679 ../fish/guestfish-actions.pod:2556
12140 msgid "This command creates a symbolic link using the C<ln -s> command."
12141 msgstr ""
12142
12143 #. type: =head2
12144 #: ../src/guestfs-actions.pod:3685
12145 msgid "guestfs_ln_sf"
12146 msgstr ""
12147
12148 #. type: verbatim
12149 #: ../src/guestfs-actions.pod:3687
12150 #, no-wrap
12151 msgid ""
12152 " int\n"
12153 " guestfs_ln_sf (guestfs_h *g,\n"
12154 "                const char *target,\n"
12155 "                const char *linkname);\n"
12156 "\n"
12157 msgstr ""
12158
12159 #. type: textblock
12160 #: ../src/guestfs-actions.pod:3692 ../fish/guestfish-actions.pod:2562
12161 msgid ""
12162 "This command creates a symbolic link using the C<ln -sf> command, The C<-f> "
12163 "option removes the link (C<linkname>) if it exists already."
12164 msgstr ""
12165
12166 #. type: =head2
12167 #: ../src/guestfs-actions.pod:3699
12168 msgid "guestfs_lremovexattr"
12169 msgstr ""
12170
12171 #. type: verbatim
12172 #: ../src/guestfs-actions.pod:3701
12173 #, no-wrap
12174 msgid ""
12175 " int\n"
12176 " guestfs_lremovexattr (guestfs_h *g,\n"
12177 "                       const char *xattr,\n"
12178 "                       const char *path);\n"
12179 "\n"
12180 msgstr ""
12181
12182 #. type: textblock
12183 #: ../src/guestfs-actions.pod:3706
12184 msgid ""
12185 "This is the same as C<guestfs_removexattr>, but if C<path> is a symbolic "
12186 "link, then it removes an extended attribute of the link itself."
12187 msgstr ""
12188
12189 #. type: =head2
12190 #: ../src/guestfs-actions.pod:3714
12191 msgid "guestfs_ls"
12192 msgstr ""
12193
12194 #. type: verbatim
12195 #: ../src/guestfs-actions.pod:3716
12196 #, no-wrap
12197 msgid ""
12198 " char **\n"
12199 " guestfs_ls (guestfs_h *g,\n"
12200 "             const char *directory);\n"
12201 "\n"
12202 msgstr ""
12203
12204 #. type: textblock
12205 #: ../src/guestfs-actions.pod:3720 ../fish/guestfish-actions.pod:2577
12206 msgid ""
12207 "List the files in C<directory> (relative to the root directory, there is no "
12208 "cwd).  The '.' and '..' entries are not returned, but hidden files are shown."
12209 msgstr ""
12210
12211 #. type: textblock
12212 #: ../src/guestfs-actions.pod:3724
12213 msgid ""
12214 "This command is mostly useful for interactive sessions.  Programs should "
12215 "probably use C<guestfs_readdir> instead."
12216 msgstr ""
12217
12218 #. type: =head2
12219 #: ../src/guestfs-actions.pod:3733
12220 msgid "guestfs_lsetxattr"
12221 msgstr ""
12222
12223 #. type: verbatim
12224 #: ../src/guestfs-actions.pod:3735
12225 #, no-wrap
12226 msgid ""
12227 " int\n"
12228 " guestfs_lsetxattr (guestfs_h *g,\n"
12229 "                    const char *xattr,\n"
12230 "                    const char *val,\n"
12231 "                    int vallen,\n"
12232 "                    const char *path);\n"
12233 "\n"
12234 msgstr ""
12235
12236 #. type: textblock
12237 #: ../src/guestfs-actions.pod:3742
12238 msgid ""
12239 "This is the same as C<guestfs_setxattr>, but if C<path> is a symbolic link, "
12240 "then it sets an extended attribute of the link itself."
12241 msgstr ""
12242
12243 #. type: =head2
12244 #: ../src/guestfs-actions.pod:3750
12245 msgid "guestfs_lstat"
12246 msgstr ""
12247
12248 #. type: verbatim
12249 #: ../src/guestfs-actions.pod:3752
12250 #, no-wrap
12251 msgid ""
12252 " struct guestfs_stat *\n"
12253 " guestfs_lstat (guestfs_h *g,\n"
12254 "                const char *path);\n"
12255 "\n"
12256 msgstr ""
12257
12258 #. type: textblock
12259 #: ../src/guestfs-actions.pod:3756 ../src/guestfs-actions.pod:6314
12260 #: ../fish/guestfish-actions.pod:2596 ../fish/guestfish-actions.pod:4265
12261 msgid "Returns file information for the given C<path>."
12262 msgstr ""
12263
12264 #. type: textblock
12265 #: ../src/guestfs-actions.pod:3758
12266 msgid ""
12267 "This is the same as C<guestfs_stat> except that if C<path> is a symbolic "
12268 "link, then the link is stat-ed, not the file it refers to."
12269 msgstr ""
12270
12271 #. type: textblock
12272 #: ../src/guestfs-actions.pod:3762 ../fish/guestfish-actions.pod:2602
12273 msgid "This is the same as the C<lstat(2)> system call."
12274 msgstr ""
12275
12276 #. type: textblock
12277 #: ../src/guestfs-actions.pod:3764 ../src/guestfs-actions.pod:6318
12278 msgid ""
12279 "This function returns a C<struct guestfs_stat *>, or NULL if there was an "
12280 "error.  I<The caller must call C<guestfs_free_stat> after use>."
12281 msgstr ""
12282
12283 #. type: textblock
12284 #: ../src/guestfs-actions.pod:3768 ../src/guestfs-actions.pod:6322
12285 #: ../src/guestfs-actions.pod:6340 ../src/guestfs-actions.pod:6721
12286 msgid "(Added in 0.9.2)"
12287 msgstr ""
12288
12289 #. type: =head2
12290 #: ../src/guestfs-actions.pod:3770
12291 msgid "guestfs_lstatlist"
12292 msgstr ""
12293
12294 #. type: verbatim
12295 #: ../src/guestfs-actions.pod:3772
12296 #, no-wrap
12297 msgid ""
12298 " struct guestfs_stat_list *\n"
12299 " guestfs_lstatlist (guestfs_h *g,\n"
12300 "                    const char *path,\n"
12301 "                    char *const *names);\n"
12302 "\n"
12303 msgstr ""
12304
12305 #. type: textblock
12306 #: ../src/guestfs-actions.pod:3777
12307 msgid ""
12308 "This call allows you to perform the C<guestfs_lstat> operation on multiple "
12309 "files, where all files are in the directory C<path>.  C<names> is the list "
12310 "of files from this directory."
12311 msgstr ""
12312
12313 #. type: textblock
12314 #: ../src/guestfs-actions.pod:3781 ../fish/guestfish-actions.pod:2612
12315 msgid ""
12316 "On return you get a list of stat structs, with a one-to-one correspondence "
12317 "to the C<names> list.  If any name did not exist or could not be lstat'd, "
12318 "then the C<ino> field of that structure is set to C<-1>."
12319 msgstr ""
12320
12321 #. type: textblock
12322 #: ../src/guestfs-actions.pod:3786
12323 msgid ""
12324 "This call is intended for programs that want to efficiently list a directory "
12325 "contents without making many round-trips.  See also C<guestfs_lxattrlist> "
12326 "for a similarly efficient call for getting extended attributes.  Very long "
12327 "directory listings might cause the protocol message size to be exceeded, "
12328 "causing this call to fail.  The caller must split up such requests into "
12329 "smaller groups of names."
12330 msgstr ""
12331
12332 #. type: textblock
12333 #: ../src/guestfs-actions.pod:3794
12334 msgid ""
12335 "This function returns a C<struct guestfs_stat_list *>, or NULL if there was "
12336 "an error.  I<The caller must call C<guestfs_free_stat_list> after use>."
12337 msgstr ""
12338
12339 #. type: =head2
12340 #: ../src/guestfs-actions.pod:3800
12341 msgid "guestfs_luks_add_key"
12342 msgstr ""
12343
12344 #. type: verbatim
12345 #: ../src/guestfs-actions.pod:3802
12346 #, no-wrap
12347 msgid ""
12348 " int\n"
12349 " guestfs_luks_add_key (guestfs_h *g,\n"
12350 "                       const char *device,\n"
12351 "                       const char *key,\n"
12352 "                       const char *newkey,\n"
12353 "                       int keyslot);\n"
12354 "\n"
12355 msgstr ""
12356
12357 #. type: textblock
12358 #: ../src/guestfs-actions.pod:3809 ../fish/guestfish-actions.pod:2629
12359 msgid ""
12360 "This command adds a new key on LUKS device C<device>.  C<key> is any "
12361 "existing key, and is used to access the device.  C<newkey> is the new key to "
12362 "add.  C<keyslot> is the key slot that will be replaced."
12363 msgstr ""
12364
12365 #. type: textblock
12366 #: ../src/guestfs-actions.pod:3814
12367 msgid ""
12368 "Note that if C<keyslot> already contains a key, then this command will "
12369 "fail.  You have to use C<guestfs_luks_kill_slot> first to remove that key."
12370 msgstr ""
12371
12372 #. type: textblock
12373 #: ../src/guestfs-actions.pod:3820 ../src/guestfs-actions.pod:3860
12374 #: ../src/guestfs-actions.pod:3883 ../src/guestfs-actions.pod:3903
12375 #: ../src/guestfs-actions.pod:3935 ../src/guestfs-actions.pod:3954
12376 msgid ""
12377 "This function takes a key or passphrase parameter which could contain "
12378 "sensitive material.  Read the section L</KEYS AND PASSPHRASES> for more "
12379 "information."
12380 msgstr ""
12381
12382 #. type: textblock
12383 #: ../src/guestfs-actions.pod:3824 ../src/guestfs-actions.pod:3864
12384 #: ../src/guestfs-actions.pod:3887 ../src/guestfs-actions.pod:3907
12385 msgid "(Added in 1.5.2)"
12386 msgstr ""
12387
12388 #. type: =head2
12389 #: ../src/guestfs-actions.pod:3826
12390 msgid "guestfs_luks_close"
12391 msgstr ""
12392
12393 #. type: verbatim
12394 #: ../src/guestfs-actions.pod:3828
12395 #, no-wrap
12396 msgid ""
12397 " int\n"
12398 " guestfs_luks_close (guestfs_h *g,\n"
12399 "                     const char *device);\n"
12400 "\n"
12401 msgstr ""
12402
12403 #. type: textblock
12404 #: ../src/guestfs-actions.pod:3832
12405 msgid ""
12406 "This closes a LUKS device that was created earlier by C<guestfs_luks_open> "
12407 "or C<guestfs_luks_open_ro>.  The C<device> parameter must be the name of the "
12408 "LUKS mapping device (ie. C</dev/mapper/mapname>) and I<not> the name of the "
12409 "underlying block device."
12410 msgstr ""
12411
12412 #. type: textblock
12413 #: ../src/guestfs-actions.pod:3840 ../src/guestfs-actions.pod:3939
12414 #: ../src/guestfs-actions.pod:3958 ../src/guestfs-actions.pod:4008
12415 #: ../src/guestfs-actions.pod:4056
12416 msgid "(Added in 1.5.1)"
12417 msgstr ""
12418
12419 #. type: =head2
12420 #: ../src/guestfs-actions.pod:3842
12421 msgid "guestfs_luks_format"
12422 msgstr ""
12423
12424 #. type: verbatim
12425 #: ../src/guestfs-actions.pod:3844
12426 #, no-wrap
12427 msgid ""
12428 " int\n"
12429 " guestfs_luks_format (guestfs_h *g,\n"
12430 "                      const char *device,\n"
12431 "                      const char *key,\n"
12432 "                      int keyslot);\n"
12433 "\n"
12434 msgstr ""
12435
12436 #. type: textblock
12437 #: ../src/guestfs-actions.pod:3850 ../fish/guestfish-actions.pod:2655
12438 msgid ""
12439 "This command erases existing data on C<device> and formats the device as a "
12440 "LUKS encrypted device.  C<key> is the initial key, which is added to key "
12441 "slot C<slot>.  (LUKS supports 8 key slots, numbered 0-7)."
12442 msgstr ""
12443
12444 #. type: textblock
12445 #: ../src/guestfs-actions.pod:3857 ../src/guestfs-actions.pod:3880
12446 #: ../src/guestfs-actions.pod:4020 ../src/guestfs-actions.pod:4962
12447 #: ../src/guestfs-actions.pod:5742 ../src/guestfs-actions.pod:6149
12448 #: ../src/guestfs-actions.pod:6172 ../src/guestfs-actions.pod:6198
12449 #: ../src/guestfs-actions.pod:7358 ../fish/guestfish-actions.pod:2663
12450 #: ../fish/guestfish-actions.pod:2676 ../fish/guestfish-actions.pod:2760
12451 #: ../fish/guestfish-actions.pod:3334 ../fish/guestfish-actions.pod:3854
12452 #: ../fish/guestfish-actions.pod:4164 ../fish/guestfish-actions.pod:4180
12453 #: ../fish/guestfish-actions.pod:4195 ../fish/guestfish-actions.pod:4910
12454 msgid ""
12455 "B<This command is dangerous.  Without careful use you can easily destroy all "
12456 "your data>."
12457 msgstr ""
12458
12459 #. type: =head2
12460 #: ../src/guestfs-actions.pod:3866
12461 msgid "guestfs_luks_format_cipher"
12462 msgstr ""
12463
12464 #. type: verbatim
12465 #: ../src/guestfs-actions.pod:3868
12466 #, no-wrap
12467 msgid ""
12468 " int\n"
12469 " guestfs_luks_format_cipher (guestfs_h *g,\n"
12470 "                             const char *device,\n"
12471 "                             const char *key,\n"
12472 "                             int keyslot,\n"
12473 "                             const char *cipher);\n"
12474 "\n"
12475 msgstr ""
12476
12477 #. type: textblock
12478 #: ../src/guestfs-actions.pod:3875
12479 msgid ""
12480 "This command is the same as C<guestfs_luks_format> but it also allows you to "
12481 "set the C<cipher> used."
12482 msgstr ""
12483
12484 #. type: =head2
12485 #: ../src/guestfs-actions.pod:3889
12486 msgid "guestfs_luks_kill_slot"
12487 msgstr ""
12488
12489 #. type: verbatim
12490 #: ../src/guestfs-actions.pod:3891
12491 #, no-wrap
12492 msgid ""
12493 " int\n"
12494 " guestfs_luks_kill_slot (guestfs_h *g,\n"
12495 "                         const char *device,\n"
12496 "                         const char *key,\n"
12497 "                         int keyslot);\n"
12498 "\n"
12499 msgstr ""
12500
12501 #. type: textblock
12502 #: ../src/guestfs-actions.pod:3897 ../fish/guestfish-actions.pod:2683
12503 msgid ""
12504 "This command deletes the key in key slot C<keyslot> from the encrypted LUKS "
12505 "device C<device>.  C<key> must be one of the I<other> keys."
12506 msgstr ""
12507
12508 #. type: =head2
12509 #: ../src/guestfs-actions.pod:3909
12510 msgid "guestfs_luks_open"
12511 msgstr ""
12512
12513 #. type: verbatim
12514 #: ../src/guestfs-actions.pod:3911
12515 #, no-wrap
12516 msgid ""
12517 " int\n"
12518 " guestfs_luks_open (guestfs_h *g,\n"
12519 "                    const char *device,\n"
12520 "                    const char *key,\n"
12521 "                    const char *mapname);\n"
12522 "\n"
12523 msgstr ""
12524
12525 #. type: textblock
12526 #: ../src/guestfs-actions.pod:3917 ../fish/guestfish-actions.pod:2694
12527 msgid ""
12528 "This command opens a block device which has been encrypted according to the "
12529 "Linux Unified Key Setup (LUKS) standard."
12530 msgstr ""
12531
12532 #. type: textblock
12533 #: ../src/guestfs-actions.pod:3920 ../fish/guestfish-actions.pod:2697
12534 msgid "C<device> is the encrypted block device or partition."
12535 msgstr ""
12536
12537 #. type: textblock
12538 #: ../src/guestfs-actions.pod:3922 ../fish/guestfish-actions.pod:2699
12539 msgid ""
12540 "The caller must supply one of the keys associated with the LUKS block "
12541 "device, in the C<key> parameter."
12542 msgstr ""
12543
12544 #. type: textblock
12545 #: ../src/guestfs-actions.pod:3925 ../fish/guestfish-actions.pod:2702
12546 msgid ""
12547 "This creates a new block device called C</dev/mapper/mapname>.  Reads and "
12548 "writes to this block device are decrypted from and encrypted to the "
12549 "underlying C<device> respectively."
12550 msgstr ""
12551
12552 #. type: textblock
12553 #: ../src/guestfs-actions.pod:3929
12554 msgid ""
12555 "If this block device contains LVM volume groups, then calling "
12556 "C<guestfs_vgscan> followed by C<guestfs_vg_activate_all> will make them "
12557 "visible."
12558 msgstr ""
12559
12560 #. type: =head2
12561 #: ../src/guestfs-actions.pod:3941
12562 msgid "guestfs_luks_open_ro"
12563 msgstr ""
12564
12565 #. type: verbatim
12566 #: ../src/guestfs-actions.pod:3943
12567 #, no-wrap
12568 msgid ""
12569 " int\n"
12570 " guestfs_luks_open_ro (guestfs_h *g,\n"
12571 "                       const char *device,\n"
12572 "                       const char *key,\n"
12573 "                       const char *mapname);\n"
12574 "\n"
12575 msgstr ""
12576
12577 #. type: textblock
12578 #: ../src/guestfs-actions.pod:3949
12579 msgid ""
12580 "This is the same as C<guestfs_luks_open> except that a read-only mapping is "
12581 "created."
12582 msgstr ""
12583
12584 #. type: =head2
12585 #: ../src/guestfs-actions.pod:3960
12586 msgid "guestfs_lvcreate"
12587 msgstr ""
12588
12589 #. type: verbatim
12590 #: ../src/guestfs-actions.pod:3962
12591 #, no-wrap
12592 msgid ""
12593 " int\n"
12594 " guestfs_lvcreate (guestfs_h *g,\n"
12595 "                   const char *logvol,\n"
12596 "                   const char *volgroup,\n"
12597 "                   int mbytes);\n"
12598 "\n"
12599 msgstr ""
12600
12601 #. type: textblock
12602 #: ../src/guestfs-actions.pod:3968 ../fish/guestfish-actions.pod:2727
12603 msgid ""
12604 "This creates an LVM logical volume called C<logvol> on the volume group "
12605 "C<volgroup>, with C<size> megabytes."
12606 msgstr ""
12607
12608 #. type: =head2
12609 #: ../src/guestfs-actions.pod:3975
12610 msgid "guestfs_lvm_canonical_lv_name"
12611 msgstr ""
12612
12613 #. type: verbatim
12614 #: ../src/guestfs-actions.pod:3977
12615 #, no-wrap
12616 msgid ""
12617 " char *\n"
12618 " guestfs_lvm_canonical_lv_name (guestfs_h *g,\n"
12619 "                                const char *lvname);\n"
12620 "\n"
12621 msgstr ""
12622
12623 #. type: textblock
12624 #: ../src/guestfs-actions.pod:3981 ../fish/guestfish-actions.pod:2734
12625 msgid ""
12626 "This converts alternative naming schemes for LVs that you might find to the "
12627 "canonical name.  For example, C</dev/mapper/VG-LV> is converted to C</dev/VG/"
12628 "LV>."
12629 msgstr ""
12630
12631 #. type: textblock
12632 #: ../src/guestfs-actions.pod:3985 ../fish/guestfish-actions.pod:2738
12633 msgid ""
12634 "This command returns an error if the C<lvname> parameter does not refer to a "
12635 "logical volume."
12636 msgstr ""
12637
12638 #. type: textblock
12639 #: ../src/guestfs-actions.pod:3988
12640 msgid "See also C<guestfs_is_lv>."
12641 msgstr ""
12642
12643 #. type: textblock
12644 #: ../src/guestfs-actions.pod:3993
12645 msgid "(Added in 1.5.24)"
12646 msgstr ""
12647
12648 #. type: =head2
12649 #: ../src/guestfs-actions.pod:3995
12650 msgid "guestfs_lvm_clear_filter"
12651 msgstr ""
12652
12653 #. type: verbatim
12654 #: ../src/guestfs-actions.pod:3997
12655 #, no-wrap
12656 msgid ""
12657 " int\n"
12658 " guestfs_lvm_clear_filter (guestfs_h *g);\n"
12659 "\n"
12660 msgstr ""
12661
12662 #. type: textblock
12663 #: ../src/guestfs-actions.pod:4000
12664 msgid ""
12665 "This undoes the effect of C<guestfs_lvm_set_filter>.  LVM will be able to "
12666 "see every block device."
12667 msgstr ""
12668
12669 #. type: textblock
12670 #: ../src/guestfs-actions.pod:4003 ../src/guestfs-actions.pod:4045
12671 #: ../fish/guestfish-actions.pod:2750 ../fish/guestfish-actions.pod:2781
12672 msgid ""
12673 "This command also clears the LVM cache and performs a volume group scan."
12674 msgstr ""
12675
12676 #. type: =head2
12677 #: ../src/guestfs-actions.pod:4010
12678 msgid "guestfs_lvm_remove_all"
12679 msgstr ""
12680
12681 #. type: verbatim
12682 #: ../src/guestfs-actions.pod:4012
12683 #, no-wrap
12684 msgid ""
12685 " int\n"
12686 " guestfs_lvm_remove_all (guestfs_h *g);\n"
12687 "\n"
12688 msgstr ""
12689
12690 #. type: textblock
12691 #: ../src/guestfs-actions.pod:4015 ../fish/guestfish-actions.pod:2757
12692 msgid ""
12693 "This command removes all LVM logical volumes, volume groups and physical "
12694 "volumes."
12695 msgstr ""
12696
12697 #. type: =head2
12698 #: ../src/guestfs-actions.pod:4025
12699 msgid "guestfs_lvm_set_filter"
12700 msgstr ""
12701
12702 #. type: verbatim
12703 #: ../src/guestfs-actions.pod:4027
12704 #, no-wrap
12705 msgid ""
12706 " int\n"
12707 " guestfs_lvm_set_filter (guestfs_h *g,\n"
12708 "                         char *const *devices);\n"
12709 "\n"
12710 msgstr ""
12711
12712 #. type: textblock
12713 #: ../src/guestfs-actions.pod:4031 ../fish/guestfish-actions.pod:2767
12714 msgid ""
12715 "This sets the LVM device filter so that LVM will only be able to \"see\" the "
12716 "block devices in the list C<devices>, and will ignore all other attached "
12717 "block devices."
12718 msgstr ""
12719
12720 #. type: textblock
12721 #: ../src/guestfs-actions.pod:4035 ../fish/guestfish-actions.pod:2771
12722 msgid ""
12723 "Where disk image(s) contain duplicate PVs or VGs, this command is useful to "
12724 "get LVM to ignore the duplicates, otherwise LVM can get confused.  Note also "
12725 "there are two types of duplication possible: either cloned PVs/VGs which "
12726 "have identical UUIDs; or VGs that are not cloned but just happen to have the "
12727 "same name.  In normal operation you cannot create this situation, but you "
12728 "can do it outside LVM, eg.  by cloning disk images or by bit twiddling "
12729 "inside the LVM metadata."
12730 msgstr ""
12731
12732 #. type: textblock
12733 #: ../src/guestfs-actions.pod:4048 ../fish/guestfish-actions.pod:2784
12734 msgid "You can filter whole block devices or individual partitions."
12735 msgstr ""
12736
12737 #. type: textblock
12738 #: ../src/guestfs-actions.pod:4050 ../fish/guestfish-actions.pod:2786
12739 msgid ""
12740 "You cannot use this if any VG is currently in use (eg.  contains a mounted "
12741 "filesystem), even if you are not filtering out that VG."
12742 msgstr ""
12743
12744 #. type: =head2
12745 #: ../src/guestfs-actions.pod:4058
12746 msgid "guestfs_lvremove"
12747 msgstr ""
12748
12749 #. type: verbatim
12750 #: ../src/guestfs-actions.pod:4060
12751 #, no-wrap
12752 msgid ""
12753 " int\n"
12754 " guestfs_lvremove (guestfs_h *g,\n"
12755 "                   const char *device);\n"
12756 "\n"
12757 msgstr ""
12758
12759 #. type: textblock
12760 #: ../src/guestfs-actions.pod:4064 ../fish/guestfish-actions.pod:2794
12761 msgid ""
12762 "Remove an LVM logical volume C<device>, where C<device> is the path to the "
12763 "LV, such as C</dev/VG/LV>."
12764 msgstr ""
12765
12766 #. type: textblock
12767 #: ../src/guestfs-actions.pod:4067 ../fish/guestfish-actions.pod:2797
12768 msgid ""
12769 "You can also remove all LVs in a volume group by specifying the VG name, C</"
12770 "dev/VG>."
12771 msgstr ""
12772
12773 #. type: textblock
12774 #: ../src/guestfs-actions.pod:4072 ../src/guestfs-actions.pod:5308
12775 #: ../src/guestfs-actions.pod:7097
12776 msgid "(Added in 1.0.13)"
12777 msgstr ""
12778
12779 #. type: =head2
12780 #: ../src/guestfs-actions.pod:4074
12781 msgid "guestfs_lvrename"
12782 msgstr ""
12783
12784 #. type: verbatim
12785 #: ../src/guestfs-actions.pod:4076
12786 #, no-wrap
12787 msgid ""
12788 " int\n"
12789 " guestfs_lvrename (guestfs_h *g,\n"
12790 "                   const char *logvol,\n"
12791 "                   const char *newlogvol);\n"
12792 "\n"
12793 msgstr ""
12794
12795 #. type: textblock
12796 #: ../src/guestfs-actions.pod:4081 ../fish/guestfish-actions.pod:2804
12797 msgid "Rename a logical volume C<logvol> with the new name C<newlogvol>."
12798 msgstr ""
12799
12800 #. type: textblock
12801 #: ../src/guestfs-actions.pod:4085 ../src/guestfs-actions.pod:7110
12802 msgid "(Added in 1.0.83)"
12803 msgstr ""
12804
12805 #. type: =head2
12806 #: ../src/guestfs-actions.pod:4087
12807 msgid "guestfs_lvresize"
12808 msgstr ""
12809
12810 #. type: verbatim
12811 #: ../src/guestfs-actions.pod:4089
12812 #, no-wrap
12813 msgid ""
12814 " int\n"
12815 " guestfs_lvresize (guestfs_h *g,\n"
12816 "                   const char *device,\n"
12817 "                   int mbytes);\n"
12818 "\n"
12819 msgstr ""
12820
12821 #. type: textblock
12822 #: ../src/guestfs-actions.pod:4094 ../fish/guestfish-actions.pod:2810
12823 msgid ""
12824 "This resizes (expands or shrinks) an existing LVM logical volume to "
12825 "C<mbytes>.  When reducing, data in the reduced part is lost."
12826 msgstr ""
12827
12828 #. type: =head2
12829 #: ../src/guestfs-actions.pod:4102
12830 msgid "guestfs_lvresize_free"
12831 msgstr ""
12832
12833 #. type: verbatim
12834 #: ../src/guestfs-actions.pod:4104
12835 #, no-wrap
12836 msgid ""
12837 " int\n"
12838 " guestfs_lvresize_free (guestfs_h *g,\n"
12839 "                        const char *lv,\n"
12840 "                        int percent);\n"
12841 "\n"
12842 msgstr ""
12843
12844 #. type: textblock
12845 #: ../src/guestfs-actions.pod:4109 ../fish/guestfish-actions.pod:2818
12846 msgid ""
12847 "This expands an existing logical volume C<lv> so that it fills C<pc>% of the "
12848 "remaining free space in the volume group.  Commonly you would call this with "
12849 "pc = 100 which expands the logical volume as much as possible, using all "
12850 "remaining free space in the volume group."
12851 msgstr ""
12852
12853 #. type: textblock
12854 #: ../src/guestfs-actions.pod:4117
12855 msgid "(Added in 1.3.3)"
12856 msgstr ""
12857
12858 #. type: =head2
12859 #: ../src/guestfs-actions.pod:4119
12860 msgid "guestfs_lvs"
12861 msgstr ""
12862
12863 #. type: verbatim
12864 #: ../src/guestfs-actions.pod:4121
12865 #, no-wrap
12866 msgid ""
12867 " char **\n"
12868 " guestfs_lvs (guestfs_h *g);\n"
12869 "\n"
12870 msgstr ""
12871
12872 #. type: textblock
12873 #: ../src/guestfs-actions.pod:4124 ../fish/guestfish-actions.pod:2828
12874 msgid ""
12875 "List all the logical volumes detected.  This is the equivalent of the L<lvs"
12876 "(8)> command."
12877 msgstr ""
12878
12879 #. type: textblock
12880 #: ../src/guestfs-actions.pod:4127 ../fish/guestfish-actions.pod:2831
12881 msgid ""
12882 "This returns a list of the logical volume device names (eg. C</dev/"
12883 "VolGroup00/LogVol00>)."
12884 msgstr ""
12885
12886 #. type: textblock
12887 #: ../src/guestfs-actions.pod:4130
12888 msgid "See also C<guestfs_lvs_full>, C<guestfs_list_filesystems>."
12889 msgstr ""
12890
12891 #. type: =head2
12892 #: ../src/guestfs-actions.pod:4138
12893 msgid "guestfs_lvs_full"
12894 msgstr ""
12895
12896 #. type: verbatim
12897 #: ../src/guestfs-actions.pod:4140
12898 #, no-wrap
12899 msgid ""
12900 " struct guestfs_lvm_lv_list *\n"
12901 " guestfs_lvs_full (guestfs_h *g);\n"
12902 "\n"
12903 msgstr ""
12904
12905 #. type: textblock
12906 #: ../src/guestfs-actions.pod:4143 ../fish/guestfish-actions.pod:2840
12907 msgid ""
12908 "List all the logical volumes detected.  This is the equivalent of the L<lvs"
12909 "(8)> command.  The \"full\" version includes all fields."
12910 msgstr ""
12911
12912 #. type: textblock
12913 #: ../src/guestfs-actions.pod:4146
12914 msgid ""
12915 "This function returns a C<struct guestfs_lvm_lv_list *>, or NULL if there "
12916 "was an error.  I<The caller must call C<guestfs_free_lvm_lv_list> after use>."
12917 msgstr ""
12918
12919 #. type: =head2
12920 #: ../src/guestfs-actions.pod:4152
12921 msgid "guestfs_lvuuid"
12922 msgstr ""
12923
12924 #. type: verbatim
12925 #: ../src/guestfs-actions.pod:4154
12926 #, no-wrap
12927 msgid ""
12928 " char *\n"
12929 " guestfs_lvuuid (guestfs_h *g,\n"
12930 "                 const char *device);\n"
12931 "\n"
12932 msgstr ""
12933
12934 #. type: textblock
12935 #: ../src/guestfs-actions.pod:4158 ../fish/guestfish-actions.pod:2847
12936 msgid "This command returns the UUID of the LVM LV C<device>."
12937 msgstr ""
12938
12939 #. type: =head2
12940 #: ../src/guestfs-actions.pod:4165
12941 msgid "guestfs_lxattrlist"
12942 msgstr ""
12943
12944 #. type: verbatim
12945 #: ../src/guestfs-actions.pod:4167
12946 #, no-wrap
12947 msgid ""
12948 " struct guestfs_xattr_list *\n"
12949 " guestfs_lxattrlist (guestfs_h *g,\n"
12950 "                     const char *path,\n"
12951 "                     char *const *names);\n"
12952 "\n"
12953 msgstr ""
12954
12955 #. type: textblock
12956 #: ../src/guestfs-actions.pod:4172 ../fish/guestfish-actions.pod:2853
12957 msgid ""
12958 "This call allows you to get the extended attributes of multiple files, where "
12959 "all files are in the directory C<path>.  C<names> is the list of files from "
12960 "this directory."
12961 msgstr ""
12962
12963 #. type: textblock
12964 #: ../src/guestfs-actions.pod:4176 ../fish/guestfish-actions.pod:2857
12965 msgid ""
12966 "On return you get a flat list of xattr structs which must be interpreted "
12967 "sequentially.  The first xattr struct always has a zero-length C<attrname>.  "
12968 "C<attrval> in this struct is zero-length to indicate there was an error "
12969 "doing C<lgetxattr> for this file, I<or> is a C string which is a decimal "
12970 "number (the number of following attributes for this file, which could be C<"
12971 "\"0\">).  Then after the first xattr struct are the zero or more attributes "
12972 "for the first named file.  This repeats for the second and subsequent files."
12973 msgstr ""
12974
12975 #. type: textblock
12976 #: ../src/guestfs-actions.pod:4186
12977 msgid ""
12978 "This call is intended for programs that want to efficiently list a directory "
12979 "contents without making many round-trips.  See also C<guestfs_lstatlist> for "
12980 "a similarly efficient call for getting standard stats.  Very long directory "
12981 "listings might cause the protocol message size to be exceeded, causing this "
12982 "call to fail.  The caller must split up such requests into smaller groups of "
12983 "names."
12984 msgstr ""
12985
12986 #. type: =head2
12987 #: ../src/guestfs-actions.pod:4200
12988 msgid "guestfs_mkdir"
12989 msgstr ""
12990
12991 #. type: verbatim
12992 #: ../src/guestfs-actions.pod:4202
12993 #, no-wrap
12994 msgid ""
12995 " int\n"
12996 " guestfs_mkdir (guestfs_h *g,\n"
12997 "                const char *path);\n"
12998 "\n"
12999 msgstr ""
13000
13001 #. type: textblock
13002 #: ../src/guestfs-actions.pod:4206 ../fish/guestfish-actions.pod:2879
13003 msgid "Create a directory named C<path>."
13004 msgstr ""
13005
13006 #. type: =head2
13007 #: ../src/guestfs-actions.pod:4212
13008 msgid "guestfs_mkdir_mode"
13009 msgstr ""
13010
13011 #. type: verbatim
13012 #: ../src/guestfs-actions.pod:4214
13013 #, no-wrap
13014 msgid ""
13015 " int\n"
13016 " guestfs_mkdir_mode (guestfs_h *g,\n"
13017 "                     const char *path,\n"
13018 "                     int mode);\n"
13019 "\n"
13020 msgstr ""
13021
13022 #. type: textblock
13023 #: ../src/guestfs-actions.pod:4219 ../fish/guestfish-actions.pod:2885
13024 msgid ""
13025 "This command creates a directory, setting the initial permissions of the "
13026 "directory to C<mode>."
13027 msgstr ""
13028
13029 #. type: textblock
13030 #: ../src/guestfs-actions.pod:4222 ../fish/guestfish-actions.pod:2888
13031 msgid ""
13032 "For common Linux filesystems, the actual mode which is set will be C<mode & "
13033 "~umask & 01777>.  Non-native-Linux filesystems may interpret the mode in "
13034 "other ways."
13035 msgstr ""
13036
13037 #. type: textblock
13038 #: ../src/guestfs-actions.pod:4226
13039 msgid "See also C<guestfs_mkdir>, C<guestfs_umask>"
13040 msgstr ""
13041
13042 #. type: =head2
13043 #: ../src/guestfs-actions.pod:4232
13044 msgid "guestfs_mkdir_p"
13045 msgstr ""
13046
13047 #. type: verbatim
13048 #: ../src/guestfs-actions.pod:4234
13049 #, no-wrap
13050 msgid ""
13051 " int\n"
13052 " guestfs_mkdir_p (guestfs_h *g,\n"
13053 "                  const char *path);\n"
13054 "\n"
13055 msgstr ""
13056
13057 #. type: textblock
13058 #: ../src/guestfs-actions.pod:4238 ../fish/guestfish-actions.pod:2898
13059 msgid ""
13060 "Create a directory named C<path>, creating any parent directories as "
13061 "necessary.  This is like the C<mkdir -p> shell command."
13062 msgstr ""
13063
13064 #. type: =head2
13065 #: ../src/guestfs-actions.pod:4245
13066 msgid "guestfs_mkdtemp"
13067 msgstr ""
13068
13069 #. type: verbatim
13070 #: ../src/guestfs-actions.pod:4247
13071 #, no-wrap
13072 msgid ""
13073 " char *\n"
13074 " guestfs_mkdtemp (guestfs_h *g,\n"
13075 "                  const char *template);\n"
13076 "\n"
13077 msgstr ""
13078
13079 #. type: textblock
13080 #: ../src/guestfs-actions.pod:4251 ../fish/guestfish-actions.pod:2905
13081 msgid ""
13082 "This command creates a temporary directory.  The C<template> parameter "
13083 "should be a full pathname for the temporary directory name with the final "
13084 "six characters being \"XXXXXX\"."
13085 msgstr ""
13086
13087 #. type: textblock
13088 #: ../src/guestfs-actions.pod:4256 ../fish/guestfish-actions.pod:2910
13089 msgid ""
13090 "For example: \"/tmp/myprogXXXXXX\" or \"/Temp/myprogXXXXXX\", the second one "
13091 "being suitable for Windows filesystems."
13092 msgstr ""
13093
13094 #. type: textblock
13095 #: ../src/guestfs-actions.pod:4259 ../fish/guestfish-actions.pod:2913
13096 msgid "The name of the temporary directory that was created is returned."
13097 msgstr ""
13098
13099 #. type: textblock
13100 #: ../src/guestfs-actions.pod:4262 ../fish/guestfish-actions.pod:2916
13101 msgid "The temporary directory is created with mode 0700 and is owned by root."
13102 msgstr ""
13103
13104 #. type: textblock
13105 #: ../src/guestfs-actions.pod:4265 ../fish/guestfish-actions.pod:2919
13106 msgid ""
13107 "The caller is responsible for deleting the temporary directory and its "
13108 "contents after use."
13109 msgstr ""
13110
13111 #. type: textblock
13112 #: ../src/guestfs-actions.pod:4268 ../fish/guestfish-actions.pod:2922
13113 msgid "See also: L<mkdtemp(3)>"
13114 msgstr ""
13115
13116 #. type: =head2
13117 #: ../src/guestfs-actions.pod:4275
13118 msgid "guestfs_mke2fs_J"
13119 msgstr ""
13120
13121 #. type: verbatim
13122 #: ../src/guestfs-actions.pod:4277
13123 #, no-wrap
13124 msgid ""
13125 " int\n"
13126 " guestfs_mke2fs_J (guestfs_h *g,\n"
13127 "                   const char *fstype,\n"
13128 "                   int blocksize,\n"
13129 "                   const char *device,\n"
13130 "                   const char *journal);\n"
13131 "\n"
13132 msgstr ""
13133
13134 #. type: textblock
13135 #: ../src/guestfs-actions.pod:4284 ../fish/guestfish-actions.pod:2928
13136 msgid ""
13137 "This creates an ext2/3/4 filesystem on C<device> with an external journal on "
13138 "C<journal>.  It is equivalent to the command:"
13139 msgstr ""
13140
13141 #. type: verbatim
13142 #: ../src/guestfs-actions.pod:4288 ../fish/guestfish-actions.pod:2932
13143 #, no-wrap
13144 msgid ""
13145 " mke2fs -t fstype -b blocksize -J device=<journal> <device>\n"
13146 "\n"
13147 msgstr ""
13148
13149 #. type: textblock
13150 #: ../src/guestfs-actions.pod:4290
13151 msgid "See also C<guestfs_mke2journal>."
13152 msgstr ""
13153
13154 #. type: textblock
13155 #: ../src/guestfs-actions.pod:4294 ../src/guestfs-actions.pod:4312
13156 #: ../src/guestfs-actions.pod:4330 ../src/guestfs-actions.pod:4346
13157 #: ../src/guestfs-actions.pod:4360 ../src/guestfs-actions.pod:4374
13158 #: ../src/guestfs-actions.pod:4433 ../src/guestfs-actions.pod:4698
13159 msgid "(Added in 1.0.68)"
13160 msgstr ""
13161
13162 #. type: =head2
13163 #: ../src/guestfs-actions.pod:4296
13164 msgid "guestfs_mke2fs_JL"
13165 msgstr ""
13166
13167 #. type: verbatim
13168 #: ../src/guestfs-actions.pod:4298
13169 #, no-wrap
13170 msgid ""
13171 " int\n"
13172 " guestfs_mke2fs_JL (guestfs_h *g,\n"
13173 "                    const char *fstype,\n"
13174 "                    int blocksize,\n"
13175 "                    const char *device,\n"
13176 "                    const char *label);\n"
13177 "\n"
13178 msgstr ""
13179
13180 #. type: textblock
13181 #: ../src/guestfs-actions.pod:4305 ../fish/guestfish-actions.pod:2940
13182 msgid ""
13183 "This creates an ext2/3/4 filesystem on C<device> with an external journal on "
13184 "the journal labeled C<label>."
13185 msgstr ""
13186
13187 #. type: textblock
13188 #: ../src/guestfs-actions.pod:4308
13189 msgid "See also C<guestfs_mke2journal_L>."
13190 msgstr ""
13191
13192 #. type: =head2
13193 #: ../src/guestfs-actions.pod:4314
13194 msgid "guestfs_mke2fs_JU"
13195 msgstr ""
13196
13197 #. type: verbatim
13198 #: ../src/guestfs-actions.pod:4316
13199 #, no-wrap
13200 msgid ""
13201 " int\n"
13202 " guestfs_mke2fs_JU (guestfs_h *g,\n"
13203 "                    const char *fstype,\n"
13204 "                    int blocksize,\n"
13205 "                    const char *device,\n"
13206 "                    const char *uuid);\n"
13207 "\n"
13208 msgstr ""
13209
13210 #. type: textblock
13211 #: ../src/guestfs-actions.pod:4323 ../fish/guestfish-actions.pod:2949
13212 msgid ""
13213 "This creates an ext2/3/4 filesystem on C<device> with an external journal on "
13214 "the journal with UUID C<uuid>."
13215 msgstr ""
13216
13217 #. type: textblock
13218 #: ../src/guestfs-actions.pod:4326
13219 msgid "See also C<guestfs_mke2journal_U>."
13220 msgstr ""
13221
13222 #. type: =head2
13223 #: ../src/guestfs-actions.pod:4332
13224 msgid "guestfs_mke2journal"
13225 msgstr ""
13226
13227 #. type: verbatim
13228 #: ../src/guestfs-actions.pod:4334
13229 #, no-wrap
13230 msgid ""
13231 " int\n"
13232 " guestfs_mke2journal (guestfs_h *g,\n"
13233 "                      int blocksize,\n"
13234 "                      const char *device);\n"
13235 "\n"
13236 msgstr ""
13237
13238 #. type: textblock
13239 #: ../src/guestfs-actions.pod:4339 ../fish/guestfish-actions.pod:2958
13240 msgid ""
13241 "This creates an ext2 external journal on C<device>.  It is equivalent to the "
13242 "command:"
13243 msgstr ""
13244
13245 #. type: verbatim
13246 #: ../src/guestfs-actions.pod:4342 ../fish/guestfish-actions.pod:2961
13247 #, no-wrap
13248 msgid ""
13249 " mke2fs -O journal_dev -b blocksize device\n"
13250 "\n"
13251 msgstr ""
13252
13253 #. type: =head2
13254 #: ../src/guestfs-actions.pod:4348
13255 msgid "guestfs_mke2journal_L"
13256 msgstr ""
13257
13258 #. type: verbatim
13259 #: ../src/guestfs-actions.pod:4350
13260 #, no-wrap
13261 msgid ""
13262 " int\n"
13263 " guestfs_mke2journal_L (guestfs_h *g,\n"
13264 "                        int blocksize,\n"
13265 "                        const char *label,\n"
13266 "                        const char *device);\n"
13267 "\n"
13268 msgstr ""
13269
13270 #. type: textblock
13271 #: ../src/guestfs-actions.pod:4356 ../fish/guestfish-actions.pod:2967
13272 msgid "This creates an ext2 external journal on C<device> with label C<label>."
13273 msgstr ""
13274
13275 #. type: =head2
13276 #: ../src/guestfs-actions.pod:4362
13277 msgid "guestfs_mke2journal_U"
13278 msgstr ""
13279
13280 #. type: verbatim
13281 #: ../src/guestfs-actions.pod:4364
13282 #, no-wrap
13283 msgid ""
13284 " int\n"
13285 " guestfs_mke2journal_U (guestfs_h *g,\n"
13286 "                        int blocksize,\n"
13287 "                        const char *uuid,\n"
13288 "                        const char *device);\n"
13289 "\n"
13290 msgstr ""
13291
13292 #. type: textblock
13293 #: ../src/guestfs-actions.pod:4370 ../fish/guestfish-actions.pod:2973
13294 msgid "This creates an ext2 external journal on C<device> with UUID C<uuid>."
13295 msgstr ""
13296
13297 #. type: =head2
13298 #: ../src/guestfs-actions.pod:4376
13299 msgid "guestfs_mkfifo"
13300 msgstr ""
13301
13302 #. type: verbatim
13303 #: ../src/guestfs-actions.pod:4378
13304 #, no-wrap
13305 msgid ""
13306 " int\n"
13307 " guestfs_mkfifo (guestfs_h *g,\n"
13308 "                 int mode,\n"
13309 "                 const char *path);\n"
13310 "\n"
13311 msgstr ""
13312
13313 #. type: textblock
13314 #: ../src/guestfs-actions.pod:4383
13315 msgid ""
13316 "This call creates a FIFO (named pipe) called C<path> with mode C<mode>.  It "
13317 "is just a convenient wrapper around C<guestfs_mknod>."
13318 msgstr ""
13319
13320 #. type: =head2
13321 #: ../src/guestfs-actions.pod:4393
13322 msgid "guestfs_mkfs"
13323 msgstr ""
13324
13325 #. type: verbatim
13326 #: ../src/guestfs-actions.pod:4395
13327 #, no-wrap
13328 msgid ""
13329 " int\n"
13330 " guestfs_mkfs (guestfs_h *g,\n"
13331 "               const char *fstype,\n"
13332 "               const char *device);\n"
13333 "\n"
13334 msgstr ""
13335
13336 #. type: textblock
13337 #: ../src/guestfs-actions.pod:4400 ../fish/guestfish-actions.pod:2989
13338 msgid ""
13339 "This creates a filesystem on C<device> (usually a partition or LVM logical "
13340 "volume).  The filesystem type is C<fstype>, for example C<ext3>."
13341 msgstr ""
13342
13343 #. type: =head2
13344 #: ../src/guestfs-actions.pod:4408
13345 msgid "guestfs_mkfs_b"
13346 msgstr ""
13347
13348 #. type: verbatim
13349 #: ../src/guestfs-actions.pod:4410
13350 #, no-wrap
13351 msgid ""
13352 " int\n"
13353 " guestfs_mkfs_b (guestfs_h *g,\n"
13354 "                 const char *fstype,\n"
13355 "                 int blocksize,\n"
13356 "                 const char *device);\n"
13357 "\n"
13358 msgstr ""
13359
13360 #. type: textblock
13361 #: ../src/guestfs-actions.pod:4416
13362 msgid ""
13363 "This call is similar to C<guestfs_mkfs>, but it allows you to control the "
13364 "block size of the resulting filesystem.  Supported block sizes depend on the "
13365 "filesystem type, but typically they are C<1024>, C<2048> or C<4096> only."
13366 msgstr ""
13367
13368 #. type: textblock
13369 #: ../src/guestfs-actions.pod:4421 ../src/guestfs-actions.pod:4464
13370 #: ../fish/guestfish-actions.pod:3002 ../fish/guestfish-actions.pod:3029
13371 msgid ""
13372 "For VFAT and NTFS the C<blocksize> parameter is treated as the requested "
13373 "cluster size."
13374 msgstr ""
13375
13376 #. type: textblock
13377 #: ../src/guestfs-actions.pod:4426 ../fish/guestfish-actions.pod:3005
13378 msgid ""
13379 "This function is deprecated.  In new code, use the C<mkfs_opts> call instead."
13380 msgstr ""
13381
13382 #. type: =head2
13383 #: ../src/guestfs-actions.pod:4435
13384 msgid "guestfs_mkfs_opts"
13385 msgstr ""
13386
13387 #. type: verbatim
13388 #: ../src/guestfs-actions.pod:4437
13389 #, no-wrap
13390 msgid ""
13391 " int\n"
13392 " guestfs_mkfs_opts (guestfs_h *g,\n"
13393 "                    const char *fstype,\n"
13394 "                    const char *device,\n"
13395 "                    ...);\n"
13396 "\n"
13397 msgstr ""
13398
13399 #. type: verbatim
13400 #: ../src/guestfs-actions.pod:4448
13401 #, no-wrap
13402 msgid ""
13403 " GUESTFS_MKFS_OPTS_BLOCKSIZE, int blocksize,\n"
13404 " GUESTFS_MKFS_OPTS_FEATURES, const char *features,\n"
13405 "\n"
13406 msgstr ""
13407
13408 #. type: textblock
13409 #: ../src/guestfs-actions.pod:4451 ../fish/guestfish-actions.pod:3016
13410 msgid ""
13411 "This function creates a filesystem on C<device>.  The filesystem type is "
13412 "C<fstype>, for example C<ext3>."
13413 msgstr ""
13414
13415 #. type: =item
13416 #: ../src/guestfs-actions.pod:4458 ../fish/guestfish-actions.pod:3023
13417 msgid "C<blocksize>"
13418 msgstr ""
13419
13420 #. type: textblock
13421 #: ../src/guestfs-actions.pod:4460 ../fish/guestfish-actions.pod:3025
13422 msgid ""
13423 "The filesystem block size.  Supported block sizes depend on the filesystem "
13424 "type, but typically they are C<1024>, C<2048> or C<4096> for Linux ext2/3 "
13425 "filesystems."
13426 msgstr ""
13427
13428 #. type: textblock
13429 #: ../src/guestfs-actions.pod:4467 ../fish/guestfish-actions.pod:3032
13430 msgid "For UFS block sizes, please see L<mkfs.ufs(8)>."
13431 msgstr ""
13432
13433 #. type: =item
13434 #: ../src/guestfs-actions.pod:4469 ../fish/guestfish-actions.pod:3034
13435 msgid "C<features>"
13436 msgstr ""
13437
13438 #. type: textblock
13439 #: ../src/guestfs-actions.pod:4471 ../fish/guestfish-actions.pod:3036
13440 msgid "This passes the C<-O> parameter to the external mkfs program."
13441 msgstr ""
13442
13443 #. type: textblock
13444 #: ../src/guestfs-actions.pod:4473 ../fish/guestfish-actions.pod:3038
13445 msgid ""
13446 "For certain filesystem types, this allows extra filesystem features to be "
13447 "selected.  See L<mke2fs(8)> and L<mkfs.ufs(8)> for more details."
13448 msgstr ""
13449
13450 #. type: textblock
13451 #: ../src/guestfs-actions.pod:4477 ../fish/guestfish-actions.pod:3042
13452 msgid ""
13453 "You cannot use this optional parameter with the C<gfs> or C<gfs2> filesystem "
13454 "type."
13455 msgstr ""
13456
13457 #. type: textblock
13458 #: ../src/guestfs-actions.pod:4484
13459 msgid "(Added in 1.7.19)"
13460 msgstr ""
13461
13462 #. type: =head2
13463 #: ../src/guestfs-actions.pod:4486
13464 msgid "guestfs_mkfs_opts_va"
13465 msgstr ""
13466
13467 #. type: verbatim
13468 #: ../src/guestfs-actions.pod:4488
13469 #, no-wrap
13470 msgid ""
13471 " int\n"
13472 " guestfs_mkfs_opts_va (guestfs_h *g,\n"
13473 "                       const char *fstype,\n"
13474 "                       const char *device,\n"
13475 "                       va_list args);\n"
13476 "\n"
13477 msgstr ""
13478
13479 #. type: textblock
13480 #: ../src/guestfs-actions.pod:4494
13481 msgid "This is the \"va_list variant\" of L</guestfs_mkfs_opts>."
13482 msgstr ""
13483
13484 #. type: =head2
13485 #: ../src/guestfs-actions.pod:4498
13486 msgid "guestfs_mkfs_opts_argv"
13487 msgstr ""
13488
13489 #. type: verbatim
13490 #: ../src/guestfs-actions.pod:4500
13491 #, no-wrap
13492 msgid ""
13493 " int\n"
13494 " guestfs_mkfs_opts_argv (guestfs_h *g,\n"
13495 "                         const char *fstype,\n"
13496 "                         const char *device,\n"
13497 "                         const struct guestfs_mkfs_opts_argv *optargs);\n"
13498 "\n"
13499 msgstr ""
13500
13501 #. type: textblock
13502 #: ../src/guestfs-actions.pod:4506
13503 msgid "This is the \"argv variant\" of L</guestfs_mkfs_opts>."
13504 msgstr ""
13505
13506 #. type: =head2
13507 #: ../src/guestfs-actions.pod:4510
13508 msgid "guestfs_mkmountpoint"
13509 msgstr ""
13510
13511 #. type: verbatim
13512 #: ../src/guestfs-actions.pod:4512
13513 #, no-wrap
13514 msgid ""
13515 " int\n"
13516 " guestfs_mkmountpoint (guestfs_h *g,\n"
13517 "                       const char *exemptpath);\n"
13518 "\n"
13519 msgstr ""
13520
13521 #. type: textblock
13522 #: ../src/guestfs-actions.pod:4516
13523 msgid ""
13524 "C<guestfs_mkmountpoint> and C<guestfs_rmmountpoint> are specialized calls "
13525 "that can be used to create extra mountpoints before mounting the first "
13526 "filesystem."
13527 msgstr ""
13528
13529 #. type: textblock
13530 #: ../src/guestfs-actions.pod:4520 ../fish/guestfish-actions.pod:3057
13531 msgid ""
13532 "These calls are I<only> necessary in some very limited circumstances, mainly "
13533 "the case where you want to mount a mix of unrelated and/or read-only "
13534 "filesystems together."
13535 msgstr ""
13536
13537 #. type: textblock
13538 #: ../src/guestfs-actions.pod:4524 ../fish/guestfish-actions.pod:3061
13539 msgid ""
13540 "For example, live CDs often contain a \"Russian doll\" nest of filesystems, "
13541 "an ISO outer layer, with a squashfs image inside, with an ext2/3 image "
13542 "inside that.  You can unpack this as follows in guestfish:"
13543 msgstr ""
13544
13545 #. type: verbatim
13546 #: ../src/guestfs-actions.pod:4529 ../fish/guestfish-actions.pod:3066
13547 #, no-wrap
13548 msgid ""
13549 " add-ro Fedora-11-i686-Live.iso\n"
13550 " run\n"
13551 " mkmountpoint /cd\n"
13552 " mkmountpoint /sqsh\n"
13553 " mkmountpoint /ext3fs\n"
13554 " mount /dev/sda /cd\n"
13555 " mount-loop /cd/LiveOS/squashfs.img /sqsh\n"
13556 " mount-loop /sqsh/LiveOS/ext3fs.img /ext3fs\n"
13557 "\n"
13558 msgstr ""
13559
13560 #. type: textblock
13561 #: ../src/guestfs-actions.pod:4538 ../fish/guestfish-actions.pod:3075
13562 msgid "The inner filesystem is now unpacked under the /ext3fs mountpoint."
13563 msgstr ""
13564
13565 #. type: textblock
13566 #: ../src/guestfs-actions.pod:4540
13567 msgid ""
13568 "C<guestfs_mkmountpoint> is not compatible with C<guestfs_umount_all>.  You "
13569 "may get unexpected errors if you try to mix these calls.  It is safest to "
13570 "manually unmount filesystems and remove mountpoints after use."
13571 msgstr ""
13572
13573 #. type: textblock
13574 #: ../src/guestfs-actions.pod:4544
13575 msgid ""
13576 "C<guestfs_umount_all> unmounts filesystems by sorting the paths longest "
13577 "first, so for this to work for manual mountpoints, you must ensure that the "
13578 "innermost mountpoints have the longest pathnames, as in the example code "
13579 "above."
13580 msgstr ""
13581
13582 #. type: textblock
13583 #: ../src/guestfs-actions.pod:4549 ../fish/guestfish-actions.pod:3086
13584 msgid ""
13585 "For more details see L<https://bugzilla.redhat.com/show_bug.cgi?id=599503>"
13586 msgstr ""
13587
13588 #. type: textblock
13589 #: ../src/guestfs-actions.pod:4551
13590 msgid ""
13591 "Autosync [see C<guestfs_set_autosync>, this is set by default on handles] "
13592 "can cause C<guestfs_umount_all> to be called when the handle is closed which "
13593 "can also trigger these issues."
13594 msgstr ""
13595
13596 #. type: textblock
13597 #: ../src/guestfs-actions.pod:4557 ../src/guestfs-actions.pod:4816
13598 #: ../src/guestfs-actions.pod:5726
13599 msgid "(Added in 1.0.62)"
13600 msgstr ""
13601
13602 #. type: =head2
13603 #: ../src/guestfs-actions.pod:4559
13604 msgid "guestfs_mknod"
13605 msgstr ""
13606
13607 #. type: verbatim
13608 #: ../src/guestfs-actions.pod:4561
13609 #, no-wrap
13610 msgid ""
13611 " int\n"
13612 " guestfs_mknod (guestfs_h *g,\n"
13613 "                int mode,\n"
13614 "                int devmajor,\n"
13615 "                int devminor,\n"
13616 "                const char *path);\n"
13617 "\n"
13618 msgstr ""
13619
13620 #. type: textblock
13621 #: ../src/guestfs-actions.pod:4568 ../fish/guestfish-actions.pod:3096
13622 msgid ""
13623 "This call creates block or character special devices, or named pipes (FIFOs)."
13624 msgstr ""
13625
13626 #. type: textblock
13627 #: ../src/guestfs-actions.pod:4571 ../fish/guestfish-actions.pod:3099
13628 msgid ""
13629 "The C<mode> parameter should be the mode, using the standard constants.  "
13630 "C<devmajor> and C<devminor> are the device major and minor numbers, only "
13631 "used when creating block and character special devices."
13632 msgstr ""
13633
13634 #. type: textblock
13635 #: ../src/guestfs-actions.pod:4576
13636 msgid ""
13637 "Note that, just like L<mknod(2)>, the mode must be bitwise OR'd with "
13638 "S_IFBLK, S_IFCHR, S_IFIFO or S_IFSOCK (otherwise this call just creates a "
13639 "regular file).  These constants are available in the standard Linux header "
13640 "files, or you can use C<guestfs_mknod_b>, C<guestfs_mknod_c> or "
13641 "C<guestfs_mkfifo> which are wrappers around this command which bitwise OR in "
13642 "the appropriate constant for you."
13643 msgstr ""
13644
13645 #. type: =head2
13646 #: ../src/guestfs-actions.pod:4590
13647 msgid "guestfs_mknod_b"
13648 msgstr ""
13649
13650 #. type: verbatim
13651 #: ../src/guestfs-actions.pod:4592
13652 #, no-wrap
13653 msgid ""
13654 " int\n"
13655 " guestfs_mknod_b (guestfs_h *g,\n"
13656 "                  int mode,\n"
13657 "                  int devmajor,\n"
13658 "                  int devminor,\n"
13659 "                  const char *path);\n"
13660 "\n"
13661 msgstr ""
13662
13663 #. type: textblock
13664 #: ../src/guestfs-actions.pod:4599
13665 msgid ""
13666 "This call creates a block device node called C<path> with mode C<mode> and "
13667 "device major/minor C<devmajor> and C<devminor>.  It is just a convenient "
13668 "wrapper around C<guestfs_mknod>."
13669 msgstr ""
13670
13671 #. type: =head2
13672 #: ../src/guestfs-actions.pod:4609
13673 msgid "guestfs_mknod_c"
13674 msgstr ""
13675
13676 #. type: verbatim
13677 #: ../src/guestfs-actions.pod:4611
13678 #, no-wrap
13679 msgid ""
13680 " int\n"
13681 " guestfs_mknod_c (guestfs_h *g,\n"
13682 "                  int mode,\n"
13683 "                  int devmajor,\n"
13684 "                  int devminor,\n"
13685 "                  const char *path);\n"
13686 "\n"
13687 msgstr ""
13688
13689 #. type: textblock
13690 #: ../src/guestfs-actions.pod:4618
13691 msgid ""
13692 "This call creates a char device node called C<path> with mode C<mode> and "
13693 "device major/minor C<devmajor> and C<devminor>.  It is just a convenient "
13694 "wrapper around C<guestfs_mknod>."
13695 msgstr ""
13696
13697 #. type: =head2
13698 #: ../src/guestfs-actions.pod:4628
13699 msgid "guestfs_mkswap"
13700 msgstr ""
13701
13702 #. type: verbatim
13703 #: ../src/guestfs-actions.pod:4630
13704 #, no-wrap
13705 msgid ""
13706 " int\n"
13707 " guestfs_mkswap (guestfs_h *g,\n"
13708 "                 const char *device);\n"
13709 "\n"
13710 msgstr ""
13711
13712 #. type: textblock
13713 #: ../src/guestfs-actions.pod:4634 ../fish/guestfish-actions.pod:3138
13714 msgid "Create a swap partition on C<device>."
13715 msgstr ""
13716
13717 #. type: =head2
13718 #: ../src/guestfs-actions.pod:4640
13719 msgid "guestfs_mkswap_L"
13720 msgstr ""
13721
13722 #. type: verbatim
13723 #: ../src/guestfs-actions.pod:4642
13724 #, no-wrap
13725 msgid ""
13726 " int\n"
13727 " guestfs_mkswap_L (guestfs_h *g,\n"
13728 "                   const char *label,\n"
13729 "                   const char *device);\n"
13730 "\n"
13731 msgstr ""
13732
13733 #. type: textblock
13734 #: ../src/guestfs-actions.pod:4647 ../fish/guestfish-actions.pod:3144
13735 msgid "Create a swap partition on C<device> with label C<label>."
13736 msgstr ""
13737
13738 #. type: textblock
13739 #: ../src/guestfs-actions.pod:4649 ../fish/guestfish-actions.pod:3146
13740 msgid ""
13741 "Note that you cannot attach a swap label to a block device (eg. C</dev/"
13742 "sda>), just to a partition.  This appears to be a limitation of the kernel "
13743 "or swap tools."
13744 msgstr ""
13745
13746 #. type: =head2
13747 #: ../src/guestfs-actions.pod:4657
13748 msgid "guestfs_mkswap_U"
13749 msgstr ""
13750
13751 #. type: verbatim
13752 #: ../src/guestfs-actions.pod:4659
13753 #, no-wrap
13754 msgid ""
13755 " int\n"
13756 " guestfs_mkswap_U (guestfs_h *g,\n"
13757 "                   const char *uuid,\n"
13758 "                   const char *device);\n"
13759 "\n"
13760 msgstr ""
13761
13762 #. type: textblock
13763 #: ../src/guestfs-actions.pod:4664 ../fish/guestfish-actions.pod:3154
13764 msgid "Create a swap partition on C<device> with UUID C<uuid>."
13765 msgstr ""
13766
13767 #. type: =head2
13768 #: ../src/guestfs-actions.pod:4670
13769 msgid "guestfs_mkswap_file"
13770 msgstr ""
13771
13772 #. type: verbatim
13773 #: ../src/guestfs-actions.pod:4672
13774 #, no-wrap
13775 msgid ""
13776 " int\n"
13777 " guestfs_mkswap_file (guestfs_h *g,\n"
13778 "                      const char *path);\n"
13779 "\n"
13780 msgstr ""
13781
13782 #. type: textblock
13783 #: ../src/guestfs-actions.pod:4676 ../fish/guestfish-actions.pod:3160
13784 msgid "Create a swap file."
13785 msgstr ""
13786
13787 #. type: textblock
13788 #: ../src/guestfs-actions.pod:4678
13789 msgid ""
13790 "This command just writes a swap file signature to an existing file.  To "
13791 "create the file itself, use something like C<guestfs_fallocate>."
13792 msgstr ""
13793
13794 #. type: =head2
13795 #: ../src/guestfs-actions.pod:4685
13796 msgid "guestfs_modprobe"
13797 msgstr ""
13798
13799 #. type: verbatim
13800 #: ../src/guestfs-actions.pod:4687
13801 #, no-wrap
13802 msgid ""
13803 " int\n"
13804 " guestfs_modprobe (guestfs_h *g,\n"
13805 "                   const char *modulename);\n"
13806 "\n"
13807 msgstr ""
13808
13809 #. type: textblock
13810 #: ../src/guestfs-actions.pod:4691 ../fish/guestfish-actions.pod:3169
13811 msgid "This loads a kernel module in the appliance."
13812 msgstr ""
13813
13814 #. type: textblock
13815 #: ../src/guestfs-actions.pod:4693 ../fish/guestfish-actions.pod:3171
13816 msgid ""
13817 "The kernel module must have been whitelisted when libguestfs was built (see "
13818 "C<appliance/kmod.whitelist.in> in the source)."
13819 msgstr ""
13820
13821 #. type: =head2
13822 #: ../src/guestfs-actions.pod:4700
13823 msgid "guestfs_mount"
13824 msgstr ""
13825
13826 #. type: verbatim
13827 #: ../src/guestfs-actions.pod:4702
13828 #, no-wrap
13829 msgid ""
13830 " int\n"
13831 " guestfs_mount (guestfs_h *g,\n"
13832 "                const char *device,\n"
13833 "                const char *mountpoint);\n"
13834 "\n"
13835 msgstr ""
13836
13837 #. type: textblock
13838 #: ../src/guestfs-actions.pod:4707 ../fish/guestfish-actions.pod:3178
13839 msgid ""
13840 "Mount a guest disk at a position in the filesystem.  Block devices are named "
13841 "C</dev/sda>, C</dev/sdb> and so on, as they were added to the guest.  If "
13842 "those block devices contain partitions, they will have the usual names (eg. "
13843 "C</dev/sda1>).  Also LVM C</dev/VG/LV>-style names can be used."
13844 msgstr ""
13845
13846 #. type: textblock
13847 #: ../src/guestfs-actions.pod:4713 ../fish/guestfish-actions.pod:3184
13848 msgid ""
13849 "The rules are the same as for L<mount(2)>: A filesystem must first be "
13850 "mounted on C</> before others can be mounted.  Other filesystems can only be "
13851 "mounted on directories which already exist."
13852 msgstr ""
13853
13854 #. type: textblock
13855 #: ../src/guestfs-actions.pod:4718 ../fish/guestfish-actions.pod:3189
13856 msgid ""
13857 "The mounted filesystem is writable, if we have sufficient permissions on the "
13858 "underlying device."
13859 msgstr ""
13860
13861 #. type: textblock
13862 #: ../src/guestfs-actions.pod:4721
13863 msgid ""
13864 "B<Important note:> When you use this call, the filesystem options C<sync> "
13865 "and C<noatime> are set implicitly.  This was originally done because we "
13866 "thought it would improve reliability, but it turns out that I<-o sync> has a "
13867 "very large negative performance impact and negligible effect on "
13868 "reliability.  Therefore we recommend that you avoid using C<guestfs_mount> "
13869 "in any code that needs performance, and instead use C<guestfs_mount_options> "
13870 "(use an empty string for the first parameter if you don't want any options)."
13871 msgstr ""
13872
13873 #. type: =head2
13874 #: ../src/guestfs-actions.pod:4735
13875 msgid "guestfs_mount_loop"
13876 msgstr ""
13877
13878 #. type: verbatim
13879 #: ../src/guestfs-actions.pod:4737
13880 #, no-wrap
13881 msgid ""
13882 " int\n"
13883 " guestfs_mount_loop (guestfs_h *g,\n"
13884 "                     const char *file,\n"
13885 "                     const char *mountpoint);\n"
13886 "\n"
13887 msgstr ""
13888
13889 #. type: textblock
13890 #: ../src/guestfs-actions.pod:4742 ../fish/guestfish-actions.pod:3206
13891 msgid ""
13892 "This command lets you mount C<file> (a filesystem image in a file) on a "
13893 "mount point.  It is entirely equivalent to the command C<mount -o loop file "
13894 "mountpoint>."
13895 msgstr ""
13896
13897 #. type: =head2
13898 #: ../src/guestfs-actions.pod:4750
13899 msgid "guestfs_mount_options"
13900 msgstr ""
13901
13902 #. type: verbatim
13903 #: ../src/guestfs-actions.pod:4752
13904 #, no-wrap
13905 msgid ""
13906 " int\n"
13907 " guestfs_mount_options (guestfs_h *g,\n"
13908 "                        const char *options,\n"
13909 "                        const char *device,\n"
13910 "                        const char *mountpoint);\n"
13911 "\n"
13912 msgstr ""
13913
13914 #. type: textblock
13915 #: ../src/guestfs-actions.pod:4758
13916 msgid ""
13917 "This is the same as the C<guestfs_mount> command, but it allows you to set "
13918 "the mount options as for the L<mount(8)> I<-o> flag."
13919 msgstr ""
13920
13921 #. type: textblock
13922 #: ../src/guestfs-actions.pod:4762 ../fish/guestfish-actions.pod:3218
13923 msgid ""
13924 "If the C<options> parameter is an empty string, then no options are passed "
13925 "(all options default to whatever the filesystem uses)."
13926 msgstr ""
13927
13928 #. type: textblock
13929 #: ../src/guestfs-actions.pod:4768 ../src/guestfs-actions.pod:4782
13930 #: ../src/guestfs-actions.pod:4799
13931 msgid "(Added in 1.0.10)"
13932 msgstr ""
13933
13934 #. type: =head2
13935 #: ../src/guestfs-actions.pod:4770
13936 msgid "guestfs_mount_ro"
13937 msgstr ""
13938
13939 #. type: verbatim
13940 #: ../src/guestfs-actions.pod:4772
13941 #, no-wrap
13942 msgid ""
13943 " int\n"
13944 " guestfs_mount_ro (guestfs_h *g,\n"
13945 "                   const char *device,\n"
13946 "                   const char *mountpoint);\n"
13947 "\n"
13948 msgstr ""
13949
13950 #. type: textblock
13951 #: ../src/guestfs-actions.pod:4777
13952 msgid ""
13953 "This is the same as the C<guestfs_mount> command, but it mounts the "
13954 "filesystem with the read-only (I<-o ro>) flag."
13955 msgstr ""
13956
13957 #. type: =head2
13958 #: ../src/guestfs-actions.pod:4784
13959 msgid "guestfs_mount_vfs"
13960 msgstr ""
13961
13962 #. type: verbatim
13963 #: ../src/guestfs-actions.pod:4786
13964 #, no-wrap
13965 msgid ""
13966 " int\n"
13967 " guestfs_mount_vfs (guestfs_h *g,\n"
13968 "                    const char *options,\n"
13969 "                    const char *vfstype,\n"
13970 "                    const char *device,\n"
13971 "                    const char *mountpoint);\n"
13972 "\n"
13973 msgstr ""
13974
13975 #. type: textblock
13976 #: ../src/guestfs-actions.pod:4793
13977 msgid ""
13978 "This is the same as the C<guestfs_mount> command, but it allows you to set "
13979 "both the mount options and the vfstype as for the L<mount(8)> I<-o> and I<-"
13980 "t> flags."
13981 msgstr ""
13982
13983 #. type: =head2
13984 #: ../src/guestfs-actions.pod:4801
13985 msgid "guestfs_mountpoints"
13986 msgstr ""
13987
13988 #. type: verbatim
13989 #: ../src/guestfs-actions.pod:4803
13990 #, no-wrap
13991 msgid ""
13992 " char **\n"
13993 " guestfs_mountpoints (guestfs_h *g);\n"
13994 "\n"
13995 msgstr ""
13996
13997 #. type: textblock
13998 #: ../src/guestfs-actions.pod:4806
13999 msgid ""
14000 "This call is similar to C<guestfs_mounts>.  That call returns a list of "
14001 "devices.  This one returns a hash table (map) of device name to directory "
14002 "where the device is mounted."
14003 msgstr ""
14004
14005 #. type: =head2
14006 #: ../src/guestfs-actions.pod:4818
14007 msgid "guestfs_mounts"
14008 msgstr ""
14009
14010 #. type: verbatim
14011 #: ../src/guestfs-actions.pod:4820
14012 #, no-wrap
14013 msgid ""
14014 " char **\n"
14015 " guestfs_mounts (guestfs_h *g);\n"
14016 "\n"
14017 msgstr ""
14018
14019 #. type: textblock
14020 #: ../src/guestfs-actions.pod:4823 ../fish/guestfish-actions.pod:3249
14021 msgid ""
14022 "This returns the list of currently mounted filesystems.  It returns the list "
14023 "of devices (eg. C</dev/sda1>, C</dev/VG/LV>)."
14024 msgstr ""
14025
14026 #. type: textblock
14027 #: ../src/guestfs-actions.pod:4826 ../fish/guestfish-actions.pod:3252
14028 msgid "Some internal mounts are not shown."
14029 msgstr ""
14030
14031 #. type: textblock
14032 #: ../src/guestfs-actions.pod:4828
14033 msgid "See also: C<guestfs_mountpoints>"
14034 msgstr ""
14035
14036 #. type: =head2
14037 #: ../src/guestfs-actions.pod:4836
14038 msgid "guestfs_mv"
14039 msgstr ""
14040
14041 #. type: verbatim
14042 #: ../src/guestfs-actions.pod:4838
14043 #, no-wrap
14044 msgid ""
14045 " int\n"
14046 " guestfs_mv (guestfs_h *g,\n"
14047 "             const char *src,\n"
14048 "             const char *dest);\n"
14049 "\n"
14050 msgstr ""
14051
14052 #. type: textblock
14053 #: ../src/guestfs-actions.pod:4843 ../fish/guestfish-actions.pod:3260
14054 msgid ""
14055 "This moves a file from C<src> to C<dest> where C<dest> is either a "
14056 "destination filename or destination directory."
14057 msgstr ""
14058
14059 #. type: =head2
14060 #: ../src/guestfs-actions.pod:4850
14061 msgid "guestfs_ntfs_3g_probe"
14062 msgstr ""
14063
14064 #. type: verbatim
14065 #: ../src/guestfs-actions.pod:4852
14066 #, no-wrap
14067 msgid ""
14068 " int\n"
14069 " guestfs_ntfs_3g_probe (guestfs_h *g,\n"
14070 "                        int rw,\n"
14071 "                        const char *device);\n"
14072 "\n"
14073 msgstr ""
14074
14075 #. type: textblock
14076 #: ../src/guestfs-actions.pod:4857 ../fish/guestfish-actions.pod:3267
14077 msgid ""
14078 "This command runs the L<ntfs-3g.probe(8)> command which probes an NTFS "
14079 "C<device> for mountability.  (Not all NTFS volumes can be mounted read-"
14080 "write, and some cannot be mounted at all)."
14081 msgstr ""
14082
14083 #. type: textblock
14084 #: ../src/guestfs-actions.pod:4861 ../fish/guestfish-actions.pod:3271
14085 msgid ""
14086 "C<rw> is a boolean flag.  Set it to true if you want to test if the volume "
14087 "can be mounted read-write.  Set it to false if you want to test if the "
14088 "volume can be mounted read-only."
14089 msgstr ""
14090
14091 #. type: textblock
14092 #: ../src/guestfs-actions.pod:4865 ../fish/guestfish-actions.pod:3275
14093 msgid ""
14094 "The return value is an integer which C<0> if the operation would succeed, or "
14095 "some non-zero value documented in the L<ntfs-3g.probe(8)> manual page."
14096 msgstr ""
14097
14098 #. type: textblock
14099 #: ../src/guestfs-actions.pod:4871
14100 msgid "(Added in 1.0.43)"
14101 msgstr ""
14102
14103 #. type: =head2
14104 #: ../src/guestfs-actions.pod:4873
14105 msgid "guestfs_ntfsresize"
14106 msgstr ""
14107
14108 #. type: verbatim
14109 #: ../src/guestfs-actions.pod:4875
14110 #, no-wrap
14111 msgid ""
14112 " int\n"
14113 " guestfs_ntfsresize (guestfs_h *g,\n"
14114 "                     const char *device);\n"
14115 "\n"
14116 msgstr ""
14117
14118 #. type: textblock
14119 #: ../src/guestfs-actions.pod:4879 ../fish/guestfish-actions.pod:3283
14120 msgid ""
14121 "This command resizes an NTFS filesystem, expanding or shrinking it to the "
14122 "size of the underlying device.  See also L<ntfsresize(8)>."
14123 msgstr ""
14124
14125 #. type: =head2
14126 #: ../src/guestfs-actions.pod:4887
14127 msgid "guestfs_ntfsresize_size"
14128 msgstr ""
14129
14130 #. type: verbatim
14131 #: ../src/guestfs-actions.pod:4889
14132 #, no-wrap
14133 msgid ""
14134 " int\n"
14135 " guestfs_ntfsresize_size (guestfs_h *g,\n"
14136 "                          const char *device,\n"
14137 "                          int64_t size);\n"
14138 "\n"
14139 msgstr ""
14140
14141 #. type: textblock
14142 #: ../src/guestfs-actions.pod:4894
14143 msgid ""
14144 "This command is the same as C<guestfs_ntfsresize> except that it allows you "
14145 "to specify the new size (in bytes) explicitly."
14146 msgstr ""
14147
14148 #. type: textblock
14149 #: ../src/guestfs-actions.pod:4899 ../src/guestfs-actions.pod:5335
14150 #: ../src/guestfs-actions.pod:5408 ../src/guestfs-actions.pod:5674
14151 #: ../src/guestfs-actions.pod:7245
14152 msgid "(Added in 1.3.14)"
14153 msgstr ""
14154
14155 #. type: =head2
14156 #: ../src/guestfs-actions.pod:4901
14157 msgid "guestfs_part_add"
14158 msgstr ""
14159
14160 #. type: verbatim
14161 #: ../src/guestfs-actions.pod:4903
14162 #, no-wrap
14163 msgid ""
14164 " int\n"
14165 " guestfs_part_add (guestfs_h *g,\n"
14166 "                   const char *device,\n"
14167 "                   const char *prlogex,\n"
14168 "                   int64_t startsect,\n"
14169 "                   int64_t endsect);\n"
14170 "\n"
14171 msgstr ""
14172
14173 #. type: textblock
14174 #: ../src/guestfs-actions.pod:4910
14175 msgid ""
14176 "This command adds a partition to C<device>.  If there is no partition table "
14177 "on the device, call C<guestfs_part_init> first."
14178 msgstr ""
14179
14180 #. type: textblock
14181 #: ../src/guestfs-actions.pod:4913 ../fish/guestfish-actions.pod:3301
14182 msgid ""
14183 "The C<prlogex> parameter is the type of partition.  Normally you should pass "
14184 "C<p> or C<primary> here, but MBR partition tables also support C<l> (or "
14185 "C<logical>) and C<e> (or C<extended>) partition types."
14186 msgstr ""
14187
14188 #. type: textblock
14189 #: ../src/guestfs-actions.pod:4918 ../fish/guestfish-actions.pod:3306
14190 msgid ""
14191 "C<startsect> and C<endsect> are the start and end of the partition in "
14192 "I<sectors>.  C<endsect> may be negative, which means it counts backwards "
14193 "from the end of the disk (C<-1> is the last sector)."
14194 msgstr ""
14195
14196 #. type: textblock
14197 #: ../src/guestfs-actions.pod:4922
14198 msgid ""
14199 "Creating a partition which covers the whole disk is not so easy.  Use "
14200 "C<guestfs_part_disk> to do that."
14201 msgstr ""
14202
14203 #. type: textblock
14204 #: ../src/guestfs-actions.pod:4927 ../src/guestfs-actions.pod:4965
14205 #: ../src/guestfs-actions.pod:5018 ../src/guestfs-actions.pod:5096
14206 #: ../src/guestfs-actions.pod:5134 ../src/guestfs-actions.pod:5153
14207 #: ../src/guestfs-actions.pod:5193
14208 msgid "(Added in 1.0.78)"
14209 msgstr ""
14210
14211 #. type: =head2
14212 #: ../src/guestfs-actions.pod:4929
14213 msgid "guestfs_part_del"
14214 msgstr ""
14215
14216 #. type: verbatim
14217 #: ../src/guestfs-actions.pod:4931
14218 #, no-wrap
14219 msgid ""
14220 " int\n"
14221 " guestfs_part_del (guestfs_h *g,\n"
14222 "                   const char *device,\n"
14223 "                   int partnum);\n"
14224 "\n"
14225 msgstr ""
14226
14227 #. type: textblock
14228 #: ../src/guestfs-actions.pod:4936 ../fish/guestfish-actions.pod:3317
14229 msgid "This command deletes the partition numbered C<partnum> on C<device>."
14230 msgstr ""
14231
14232 #. type: textblock
14233 #: ../src/guestfs-actions.pod:4938 ../fish/guestfish-actions.pod:3319
14234 msgid ""
14235 "Note that in the case of MBR partitioning, deleting an extended partition "
14236 "also deletes any logical partitions it contains."
14237 msgstr ""
14238
14239 #. type: =head2
14240 #: ../src/guestfs-actions.pod:4946
14241 msgid "guestfs_part_disk"
14242 msgstr ""
14243
14244 #. type: verbatim
14245 #: ../src/guestfs-actions.pod:4948
14246 #, no-wrap
14247 msgid ""
14248 " int\n"
14249 " guestfs_part_disk (guestfs_h *g,\n"
14250 "                    const char *device,\n"
14251 "                    const char *parttype);\n"
14252 "\n"
14253 msgstr ""
14254
14255 #. type: textblock
14256 #: ../src/guestfs-actions.pod:4953
14257 msgid ""
14258 "This command is simply a combination of C<guestfs_part_init> followed by "
14259 "C<guestfs_part_add> to create a single primary partition covering the whole "
14260 "disk."
14261 msgstr ""
14262
14263 #. type: textblock
14264 #: ../src/guestfs-actions.pod:4957
14265 msgid ""
14266 "C<parttype> is the partition table type, usually C<mbr> or C<gpt>, but other "
14267 "possible values are described in C<guestfs_part_init>."
14268 msgstr ""
14269
14270 #. type: =head2
14271 #: ../src/guestfs-actions.pod:4967
14272 msgid "guestfs_part_get_bootable"
14273 msgstr ""
14274
14275 #. type: verbatim
14276 #: ../src/guestfs-actions.pod:4969
14277 #, no-wrap
14278 msgid ""
14279 " int\n"
14280 " guestfs_part_get_bootable (guestfs_h *g,\n"
14281 "                            const char *device,\n"
14282 "                            int partnum);\n"
14283 "\n"
14284 msgstr ""
14285
14286 #. type: textblock
14287 #: ../src/guestfs-actions.pod:4974 ../fish/guestfish-actions.pod:3341
14288 msgid ""
14289 "This command returns true if the partition C<partnum> on C<device> has the "
14290 "bootable flag set."
14291 msgstr ""
14292
14293 #. type: textblock
14294 #: ../src/guestfs-actions.pod:4977
14295 msgid "See also C<guestfs_part_set_bootable>."
14296 msgstr ""
14297
14298 #. type: =head2
14299 #: ../src/guestfs-actions.pod:4983
14300 msgid "guestfs_part_get_mbr_id"
14301 msgstr ""
14302
14303 #. type: verbatim
14304 #: ../src/guestfs-actions.pod:4985
14305 #, no-wrap
14306 msgid ""
14307 " int\n"
14308 " guestfs_part_get_mbr_id (guestfs_h *g,\n"
14309 "                          const char *device,\n"
14310 "                          int partnum);\n"
14311 "\n"
14312 msgstr ""
14313
14314 #. type: textblock
14315 #: ../src/guestfs-actions.pod:4990 ../fish/guestfish-actions.pod:3350
14316 msgid ""
14317 "Returns the MBR type byte (also known as the ID byte) from the numbered "
14318 "partition C<partnum>."
14319 msgstr ""
14320
14321 #. type: textblock
14322 #: ../src/guestfs-actions.pod:4993 ../src/guestfs-actions.pod:5169
14323 msgid ""
14324 "Note that only MBR (old DOS-style) partitions have type bytes.  You will get "
14325 "undefined results for other partition table types (see "
14326 "C<guestfs_part_get_parttype>)."
14327 msgstr ""
14328
14329 #. type: =head2
14330 #: ../src/guestfs-actions.pod:5001
14331 msgid "guestfs_part_get_parttype"
14332 msgstr ""
14333
14334 #. type: verbatim
14335 #: ../src/guestfs-actions.pod:5003
14336 #, no-wrap
14337 msgid ""
14338 " char *\n"
14339 " guestfs_part_get_parttype (guestfs_h *g,\n"
14340 "                            const char *device);\n"
14341 "\n"
14342 msgstr ""
14343
14344 #. type: textblock
14345 #: ../src/guestfs-actions.pod:5007 ../fish/guestfish-actions.pod:3361
14346 msgid ""
14347 "This command examines the partition table on C<device> and returns the "
14348 "partition table type (format) being used."
14349 msgstr ""
14350
14351 #. type: textblock
14352 #: ../src/guestfs-actions.pod:5010
14353 msgid ""
14354 "Common return values include: C<msdos> (a DOS/Windows style MBR partition "
14355 "table), C<gpt> (a GPT/EFI-style partition table).  Other values are "
14356 "possible, although unusual.  See C<guestfs_part_init> for a full list."
14357 msgstr ""
14358
14359 #. type: =head2
14360 #: ../src/guestfs-actions.pod:5020
14361 msgid "guestfs_part_init"
14362 msgstr ""
14363
14364 #. type: verbatim
14365 #: ../src/guestfs-actions.pod:5022
14366 #, no-wrap
14367 msgid ""
14368 " int\n"
14369 " guestfs_part_init (guestfs_h *g,\n"
14370 "                    const char *device,\n"
14371 "                    const char *parttype);\n"
14372 "\n"
14373 msgstr ""
14374
14375 #. type: textblock
14376 #: ../src/guestfs-actions.pod:5027 ../fish/guestfish-actions.pod:3373
14377 msgid ""
14378 "This creates an empty partition table on C<device> of one of the partition "
14379 "types listed below.  Usually C<parttype> should be either C<msdos> or C<gpt> "
14380 "(for large disks)."
14381 msgstr ""
14382
14383 #. type: textblock
14384 #: ../src/guestfs-actions.pod:5031
14385 msgid ""
14386 "Initially there are no partitions.  Following this, you should call "
14387 "C<guestfs_part_add> for each partition required."
14388 msgstr ""
14389
14390 #. type: textblock
14391 #: ../src/guestfs-actions.pod:5034 ../fish/guestfish-actions.pod:3380
14392 msgid "Possible values for C<parttype> are:"
14393 msgstr ""
14394
14395 #. type: =item
14396 #: ../src/guestfs-actions.pod:5038 ../fish/guestfish-actions.pod:3384
14397 msgid "B<efi> | B<gpt>"
14398 msgstr ""
14399
14400 #. type: textblock
14401 #: ../src/guestfs-actions.pod:5040 ../fish/guestfish-actions.pod:3386
14402 msgid "Intel EFI / GPT partition table."
14403 msgstr ""
14404
14405 #. type: textblock
14406 #: ../src/guestfs-actions.pod:5042 ../fish/guestfish-actions.pod:3388
14407 msgid ""
14408 "This is recommended for >= 2 TB partitions that will be accessed from Linux "
14409 "and Intel-based Mac OS X.  It also has limited backwards compatibility with "
14410 "the C<mbr> format."
14411 msgstr ""
14412
14413 #. type: =item
14414 #: ../src/guestfs-actions.pod:5046 ../fish/guestfish-actions.pod:3392
14415 msgid "B<mbr> | B<msdos>"
14416 msgstr ""
14417
14418 #. type: textblock
14419 #: ../src/guestfs-actions.pod:5048 ../fish/guestfish-actions.pod:3394
14420 msgid ""
14421 "The standard PC \"Master Boot Record\" (MBR) format used by MS-DOS and "
14422 "Windows.  This partition type will B<only> work for device sizes up to 2 "
14423 "TB.  For large disks we recommend using C<gpt>."
14424 msgstr ""
14425
14426 #. type: textblock
14427 #: ../src/guestfs-actions.pod:5055 ../fish/guestfish-actions.pod:3401
14428 msgid ""
14429 "Other partition table types that may work but are not supported include:"
14430 msgstr ""
14431
14432 #. type: =item
14433 #: ../src/guestfs-actions.pod:5060 ../fish/guestfish-actions.pod:3406
14434 msgid "B<aix>"
14435 msgstr ""
14436
14437 #. type: textblock
14438 #: ../src/guestfs-actions.pod:5062 ../fish/guestfish-actions.pod:3408
14439 msgid "AIX disk labels."
14440 msgstr ""
14441
14442 #. type: =item
14443 #: ../src/guestfs-actions.pod:5064 ../fish/guestfish-actions.pod:3410
14444 msgid "B<amiga> | B<rdb>"
14445 msgstr ""
14446
14447 #. type: textblock
14448 #: ../src/guestfs-actions.pod:5066 ../fish/guestfish-actions.pod:3412
14449 msgid "Amiga \"Rigid Disk Block\" format."
14450 msgstr ""
14451
14452 #. type: =item
14453 #: ../src/guestfs-actions.pod:5068 ../fish/guestfish-actions.pod:3414
14454 msgid "B<bsd>"
14455 msgstr ""
14456
14457 #. type: textblock
14458 #: ../src/guestfs-actions.pod:5070 ../fish/guestfish-actions.pod:3416
14459 msgid "BSD disk labels."
14460 msgstr ""
14461
14462 #. type: =item
14463 #: ../src/guestfs-actions.pod:5072 ../fish/guestfish-actions.pod:3418
14464 msgid "B<dasd>"
14465 msgstr ""
14466
14467 #. type: textblock
14468 #: ../src/guestfs-actions.pod:5074 ../fish/guestfish-actions.pod:3420
14469 msgid "DASD, used on IBM mainframes."
14470 msgstr ""
14471
14472 #. type: =item
14473 #: ../src/guestfs-actions.pod:5076 ../fish/guestfish-actions.pod:3422
14474 msgid "B<dvh>"
14475 msgstr ""
14476
14477 #. type: textblock
14478 #: ../src/guestfs-actions.pod:5078 ../fish/guestfish-actions.pod:3424
14479 msgid "MIPS/SGI volumes."
14480 msgstr ""
14481
14482 #. type: =item
14483 #: ../src/guestfs-actions.pod:5080 ../fish/guestfish-actions.pod:3426
14484 msgid "B<mac>"
14485 msgstr ""
14486
14487 #. type: textblock
14488 #: ../src/guestfs-actions.pod:5082 ../fish/guestfish-actions.pod:3428
14489 msgid "Old Mac partition format.  Modern Macs use C<gpt>."
14490 msgstr ""
14491
14492 #. type: =item
14493 #: ../src/guestfs-actions.pod:5084 ../fish/guestfish-actions.pod:3430
14494 msgid "B<pc98>"
14495 msgstr ""
14496
14497 #. type: textblock
14498 #: ../src/guestfs-actions.pod:5086 ../fish/guestfish-actions.pod:3432
14499 msgid "NEC PC-98 format, common in Japan apparently."
14500 msgstr ""
14501
14502 #. type: =item
14503 #: ../src/guestfs-actions.pod:5088 ../fish/guestfish-actions.pod:3434
14504 msgid "B<sun>"
14505 msgstr ""
14506
14507 #. type: textblock
14508 #: ../src/guestfs-actions.pod:5090 ../fish/guestfish-actions.pod:3436
14509 msgid "Sun disk labels."
14510 msgstr ""
14511
14512 #. type: =head2
14513 #: ../src/guestfs-actions.pod:5098
14514 msgid "guestfs_part_list"
14515 msgstr ""
14516
14517 #. type: verbatim
14518 #: ../src/guestfs-actions.pod:5100
14519 #, no-wrap
14520 msgid ""
14521 " struct guestfs_partition_list *\n"
14522 " guestfs_part_list (guestfs_h *g,\n"
14523 "                    const char *device);\n"
14524 "\n"
14525 msgstr ""
14526
14527 #. type: textblock
14528 #: ../src/guestfs-actions.pod:5104 ../fish/guestfish-actions.pod:3444
14529 msgid ""
14530 "This command parses the partition table on C<device> and returns the list of "
14531 "partitions found."
14532 msgstr ""
14533
14534 #. type: textblock
14535 #: ../src/guestfs-actions.pod:5107 ../fish/guestfish-actions.pod:3447
14536 msgid "The fields in the returned structure are:"
14537 msgstr ""
14538
14539 #. type: =item
14540 #: ../src/guestfs-actions.pod:5111 ../fish/guestfish-actions.pod:3451
14541 msgid "B<part_num>"
14542 msgstr ""
14543
14544 #. type: textblock
14545 #: ../src/guestfs-actions.pod:5113 ../fish/guestfish-actions.pod:3453
14546 msgid "Partition number, counting from 1."
14547 msgstr ""
14548
14549 #. type: =item
14550 #: ../src/guestfs-actions.pod:5115 ../fish/guestfish-actions.pod:3455
14551 msgid "B<part_start>"
14552 msgstr ""
14553
14554 #. type: textblock
14555 #: ../src/guestfs-actions.pod:5117
14556 msgid ""
14557 "Start of the partition I<in bytes>.  To get sectors you have to divide by "
14558 "the device's sector size, see C<guestfs_blockdev_getss>."
14559 msgstr ""
14560
14561 #. type: =item
14562 #: ../src/guestfs-actions.pod:5120 ../fish/guestfish-actions.pod:3460
14563 msgid "B<part_end>"
14564 msgstr ""
14565
14566 #. type: textblock
14567 #: ../src/guestfs-actions.pod:5122 ../fish/guestfish-actions.pod:3462
14568 msgid "End of the partition in bytes."
14569 msgstr ""
14570
14571 #. type: =item
14572 #: ../src/guestfs-actions.pod:5124 ../fish/guestfish-actions.pod:3464
14573 msgid "B<part_size>"
14574 msgstr ""
14575
14576 #. type: textblock
14577 #: ../src/guestfs-actions.pod:5126 ../fish/guestfish-actions.pod:3466
14578 msgid "Size of the partition in bytes."
14579 msgstr ""
14580
14581 #. type: textblock
14582 #: ../src/guestfs-actions.pod:5130
14583 msgid ""
14584 "This function returns a C<struct guestfs_partition_list *>, or NULL if there "
14585 "was an error.  I<The caller must call C<guestfs_free_partition_list> after "
14586 "use>."
14587 msgstr ""
14588
14589 #. type: =head2
14590 #: ../src/guestfs-actions.pod:5136
14591 msgid "guestfs_part_set_bootable"
14592 msgstr ""
14593
14594 #. type: verbatim
14595 #: ../src/guestfs-actions.pod:5138
14596 #, no-wrap
14597 msgid ""
14598 " int\n"
14599 " guestfs_part_set_bootable (guestfs_h *g,\n"
14600 "                            const char *device,\n"
14601 "                            int partnum,\n"
14602 "                            int bootable);\n"
14603 "\n"
14604 msgstr ""
14605
14606 #. type: textblock
14607 #: ../src/guestfs-actions.pod:5144 ../fish/guestfish-actions.pod:3474
14608 msgid ""
14609 "This sets the bootable flag on partition numbered C<partnum> on device "
14610 "C<device>.  Note that partitions are numbered from 1."
14611 msgstr ""
14612
14613 #. type: textblock
14614 #: ../src/guestfs-actions.pod:5147 ../fish/guestfish-actions.pod:3477
14615 msgid ""
14616 "The bootable flag is used by some operating systems (notably Windows) to "
14617 "determine which partition to boot from.  It is by no means universally "
14618 "recognized."
14619 msgstr ""
14620
14621 #. type: =head2
14622 #: ../src/guestfs-actions.pod:5155
14623 msgid "guestfs_part_set_mbr_id"
14624 msgstr ""
14625
14626 #. type: verbatim
14627 #: ../src/guestfs-actions.pod:5157
14628 #, no-wrap
14629 msgid ""
14630 " int\n"
14631 " guestfs_part_set_mbr_id (guestfs_h *g,\n"
14632 "                          const char *device,\n"
14633 "                          int partnum,\n"
14634 "                          int idbyte);\n"
14635 "\n"
14636 msgstr ""
14637
14638 #. type: textblock
14639 #: ../src/guestfs-actions.pod:5163 ../fish/guestfish-actions.pod:3485
14640 msgid ""
14641 "Sets the MBR type byte (also known as the ID byte) of the numbered partition "
14642 "C<partnum> to C<idbyte>.  Note that the type bytes quoted in most "
14643 "documentation are in fact hexadecimal numbers, but usually documented "
14644 "without any leading \"0x\" which might be confusing."
14645 msgstr ""
14646
14647 #. type: =head2
14648 #: ../src/guestfs-actions.pod:5177
14649 msgid "guestfs_part_set_name"
14650 msgstr ""
14651
14652 #. type: verbatim
14653 #: ../src/guestfs-actions.pod:5179
14654 #, no-wrap
14655 msgid ""
14656 " int\n"
14657 " guestfs_part_set_name (guestfs_h *g,\n"
14658 "                        const char *device,\n"
14659 "                        int partnum,\n"
14660 "                        const char *name);\n"
14661 "\n"
14662 msgstr ""
14663
14664 #. type: textblock
14665 #: ../src/guestfs-actions.pod:5185 ../fish/guestfish-actions.pod:3499
14666 msgid ""
14667 "This sets the partition name on partition numbered C<partnum> on device "
14668 "C<device>.  Note that partitions are numbered from 1."
14669 msgstr ""
14670
14671 #. type: textblock
14672 #: ../src/guestfs-actions.pod:5188 ../fish/guestfish-actions.pod:3502
14673 msgid ""
14674 "The partition name can only be set on certain types of partition table.  "
14675 "This works on C<gpt> but not on C<mbr> partitions."
14676 msgstr ""
14677
14678 #. type: =head2
14679 #: ../src/guestfs-actions.pod:5195
14680 msgid "guestfs_part_to_dev"
14681 msgstr ""
14682
14683 #. type: verbatim
14684 #: ../src/guestfs-actions.pod:5197
14685 #, no-wrap
14686 msgid ""
14687 " char *\n"
14688 " guestfs_part_to_dev (guestfs_h *g,\n"
14689 "                      const char *partition);\n"
14690 "\n"
14691 msgstr ""
14692
14693 #. type: textblock
14694 #: ../src/guestfs-actions.pod:5201 ../fish/guestfish-actions.pod:3509
14695 msgid ""
14696 "This function takes a partition name (eg. \"/dev/sdb1\") and removes the "
14697 "partition number, returning the device name (eg. \"/dev/sdb\")."
14698 msgstr ""
14699
14700 #. type: textblock
14701 #: ../src/guestfs-actions.pod:5205
14702 msgid ""
14703 "The named partition must exist, for example as a string returned from "
14704 "C<guestfs_list_partitions>."
14705 msgstr ""
14706
14707 #. type: =head2
14708 #: ../src/guestfs-actions.pod:5213
14709 msgid "guestfs_ping_daemon"
14710 msgstr ""
14711
14712 #. type: verbatim
14713 #: ../src/guestfs-actions.pod:5215
14714 #, no-wrap
14715 msgid ""
14716 " int\n"
14717 " guestfs_ping_daemon (guestfs_h *g);\n"
14718 "\n"
14719 msgstr ""
14720
14721 #. type: textblock
14722 #: ../src/guestfs-actions.pod:5218 ../fish/guestfish-actions.pod:3520
14723 msgid ""
14724 "This is a test probe into the guestfs daemon running inside the qemu "
14725 "subprocess.  Calling this function checks that the daemon responds to the "
14726 "ping message, without affecting the daemon or attached block device(s) in "
14727 "any other way."
14728 msgstr ""
14729
14730 #. type: =head2
14731 #: ../src/guestfs-actions.pod:5227
14732 msgid "guestfs_pread"
14733 msgstr ""
14734
14735 #. type: verbatim
14736 #: ../src/guestfs-actions.pod:5229
14737 #, no-wrap
14738 msgid ""
14739 " char *\n"
14740 " guestfs_pread (guestfs_h *g,\n"
14741 "                const char *path,\n"
14742 "                int count,\n"
14743 "                int64_t offset,\n"
14744 "                size_t *size_r);\n"
14745 "\n"
14746 msgstr ""
14747
14748 #. type: textblock
14749 #: ../src/guestfs-actions.pod:5236 ../fish/guestfish-actions.pod:3529
14750 msgid ""
14751 "This command lets you read part of a file.  It reads C<count> bytes of the "
14752 "file, starting at C<offset>, from file C<path>."
14753 msgstr ""
14754
14755 #. type: textblock
14756 #: ../src/guestfs-actions.pod:5239 ../src/guestfs-actions.pod:5265
14757 #: ../fish/guestfish-actions.pod:3532 ../fish/guestfish-actions.pod:3547
14758 msgid ""
14759 "This may read fewer bytes than requested.  For further details see the "
14760 "L<pread(2)> system call."
14761 msgstr ""
14762
14763 #. type: textblock
14764 #: ../src/guestfs-actions.pod:5242
14765 msgid "See also C<guestfs_pwrite>, C<guestfs_pread_device>."
14766 msgstr ""
14767
14768 #. type: =head2
14769 #: ../src/guestfs-actions.pod:5253
14770 msgid "guestfs_pread_device"
14771 msgstr ""
14772
14773 #. type: verbatim
14774 #: ../src/guestfs-actions.pod:5255
14775 #, no-wrap
14776 msgid ""
14777 " char *\n"
14778 " guestfs_pread_device (guestfs_h *g,\n"
14779 "                       const char *device,\n"
14780 "                       int count,\n"
14781 "                       int64_t offset,\n"
14782 "                       size_t *size_r);\n"
14783 "\n"
14784 msgstr ""
14785
14786 #. type: textblock
14787 #: ../src/guestfs-actions.pod:5262 ../fish/guestfish-actions.pod:3544
14788 msgid ""
14789 "This command lets you read part of a file.  It reads C<count> bytes of "
14790 "C<device>, starting at C<offset>."
14791 msgstr ""
14792
14793 #. type: textblock
14794 #: ../src/guestfs-actions.pod:5268
14795 msgid "See also C<guestfs_pread>."
14796 msgstr ""
14797
14798 #. type: textblock
14799 #: ../src/guestfs-actions.pod:5277
14800 msgid "(Added in 1.5.21)"
14801 msgstr ""
14802
14803 #. type: =head2
14804 #: ../src/guestfs-actions.pod:5279
14805 msgid "guestfs_pvcreate"
14806 msgstr ""
14807
14808 #. type: verbatim
14809 #: ../src/guestfs-actions.pod:5281
14810 #, no-wrap
14811 msgid ""
14812 " int\n"
14813 " guestfs_pvcreate (guestfs_h *g,\n"
14814 "                   const char *device);\n"
14815 "\n"
14816 msgstr ""
14817
14818 #. type: textblock
14819 #: ../src/guestfs-actions.pod:5285 ../fish/guestfish-actions.pod:3559
14820 msgid ""
14821 "This creates an LVM physical volume on the named C<device>, where C<device> "
14822 "should usually be a partition name such as C</dev/sda1>."
14823 msgstr ""
14824
14825 #. type: =head2
14826 #: ../src/guestfs-actions.pod:5293
14827 msgid "guestfs_pvremove"
14828 msgstr ""
14829
14830 #. type: verbatim
14831 #: ../src/guestfs-actions.pod:5295
14832 #, no-wrap
14833 msgid ""
14834 " int\n"
14835 " guestfs_pvremove (guestfs_h *g,\n"
14836 "                   const char *device);\n"
14837 "\n"
14838 msgstr ""
14839
14840 #. type: textblock
14841 #: ../src/guestfs-actions.pod:5299 ../fish/guestfish-actions.pod:3567
14842 msgid ""
14843 "This wipes a physical volume C<device> so that LVM will no longer recognise "
14844 "it."
14845 msgstr ""
14846
14847 #. type: textblock
14848 #: ../src/guestfs-actions.pod:5302 ../fish/guestfish-actions.pod:3570
14849 msgid ""
14850 "The implementation uses the C<pvremove> command which refuses to wipe "
14851 "physical volumes that contain any volume groups, so you have to remove those "
14852 "first."
14853 msgstr ""
14854
14855 #. type: =head2
14856 #: ../src/guestfs-actions.pod:5310
14857 msgid "guestfs_pvresize"
14858 msgstr ""
14859
14860 #. type: verbatim
14861 #: ../src/guestfs-actions.pod:5312
14862 #, no-wrap
14863 msgid ""
14864 " int\n"
14865 " guestfs_pvresize (guestfs_h *g,\n"
14866 "                   const char *device);\n"
14867 "\n"
14868 msgstr ""
14869
14870 #. type: textblock
14871 #: ../src/guestfs-actions.pod:5316 ../fish/guestfish-actions.pod:3578
14872 msgid ""
14873 "This resizes (expands or shrinks) an existing LVM physical volume to match "
14874 "the new size of the underlying device."
14875 msgstr ""
14876
14877 #. type: =head2
14878 #: ../src/guestfs-actions.pod:5323
14879 msgid "guestfs_pvresize_size"
14880 msgstr ""
14881
14882 #. type: verbatim
14883 #: ../src/guestfs-actions.pod:5325
14884 #, no-wrap
14885 msgid ""
14886 " int\n"
14887 " guestfs_pvresize_size (guestfs_h *g,\n"
14888 "                        const char *device,\n"
14889 "                        int64_t size);\n"
14890 "\n"
14891 msgstr ""
14892
14893 #. type: textblock
14894 #: ../src/guestfs-actions.pod:5330
14895 msgid ""
14896 "This command is the same as C<guestfs_pvresize> except that it allows you to "
14897 "specify the new size (in bytes) explicitly."
14898 msgstr ""
14899
14900 #. type: =head2
14901 #: ../src/guestfs-actions.pod:5337
14902 msgid "guestfs_pvs"
14903 msgstr ""
14904
14905 #. type: verbatim
14906 #: ../src/guestfs-actions.pod:5339
14907 #, no-wrap
14908 msgid ""
14909 " char **\n"
14910 " guestfs_pvs (guestfs_h *g);\n"
14911 "\n"
14912 msgstr ""
14913
14914 #. type: textblock
14915 #: ../src/guestfs-actions.pod:5342 ../fish/guestfish-actions.pod:3592
14916 msgid ""
14917 "List all the physical volumes detected.  This is the equivalent of the L<pvs"
14918 "(8)> command."
14919 msgstr ""
14920
14921 #. type: textblock
14922 #: ../src/guestfs-actions.pod:5345 ../fish/guestfish-actions.pod:3595
14923 msgid ""
14924 "This returns a list of just the device names that contain PVs (eg. C</dev/"
14925 "sda2>)."
14926 msgstr ""
14927
14928 #. type: textblock
14929 #: ../src/guestfs-actions.pod:5348
14930 msgid "See also C<guestfs_pvs_full>."
14931 msgstr ""
14932
14933 #. type: =head2
14934 #: ../src/guestfs-actions.pod:5356
14935 msgid "guestfs_pvs_full"
14936 msgstr ""
14937
14938 #. type: verbatim
14939 #: ../src/guestfs-actions.pod:5358
14940 #, no-wrap
14941 msgid ""
14942 " struct guestfs_lvm_pv_list *\n"
14943 " guestfs_pvs_full (guestfs_h *g);\n"
14944 "\n"
14945 msgstr ""
14946
14947 #. type: textblock
14948 #: ../src/guestfs-actions.pod:5361 ../fish/guestfish-actions.pod:3604
14949 msgid ""
14950 "List all the physical volumes detected.  This is the equivalent of the L<pvs"
14951 "(8)> command.  The \"full\" version includes all fields."
14952 msgstr ""
14953
14954 #. type: textblock
14955 #: ../src/guestfs-actions.pod:5364
14956 msgid ""
14957 "This function returns a C<struct guestfs_lvm_pv_list *>, or NULL if there "
14958 "was an error.  I<The caller must call C<guestfs_free_lvm_pv_list> after use>."
14959 msgstr ""
14960
14961 #. type: =head2
14962 #: ../src/guestfs-actions.pod:5370
14963 msgid "guestfs_pvuuid"
14964 msgstr ""
14965
14966 #. type: verbatim
14967 #: ../src/guestfs-actions.pod:5372
14968 #, no-wrap
14969 msgid ""
14970 " char *\n"
14971 " guestfs_pvuuid (guestfs_h *g,\n"
14972 "                 const char *device);\n"
14973 "\n"
14974 msgstr ""
14975
14976 #. type: textblock
14977 #: ../src/guestfs-actions.pod:5376 ../fish/guestfish-actions.pod:3611
14978 msgid "This command returns the UUID of the LVM PV C<device>."
14979 msgstr ""
14980
14981 #. type: =head2
14982 #: ../src/guestfs-actions.pod:5383
14983 msgid "guestfs_pwrite"
14984 msgstr ""
14985
14986 #. type: verbatim
14987 #: ../src/guestfs-actions.pod:5385
14988 #, no-wrap
14989 msgid ""
14990 " int\n"
14991 " guestfs_pwrite (guestfs_h *g,\n"
14992 "                 const char *path,\n"
14993 "                 const char *content,\n"
14994 "                 size_t content_size,\n"
14995 "                 int64_t offset);\n"
14996 "\n"
14997 msgstr ""
14998
14999 #. type: textblock
15000 #: ../src/guestfs-actions.pod:5392 ../fish/guestfish-actions.pod:3617
15001 msgid ""
15002 "This command writes to part of a file.  It writes the data buffer C<content> "
15003 "to the file C<path> starting at offset C<offset>."
15004 msgstr ""
15005
15006 #. type: textblock
15007 #: ../src/guestfs-actions.pod:5395 ../fish/guestfish-actions.pod:3620
15008 msgid ""
15009 "This command implements the L<pwrite(2)> system call, and like that system "
15010 "call it may not write the full data requested.  The return value is the "
15011 "number of bytes that were actually written to the file.  This could even be "
15012 "0, although short writes are unlikely for regular files in ordinary "
15013 "circumstances."
15014 msgstr ""
15015
15016 #. type: textblock
15017 #: ../src/guestfs-actions.pod:5401
15018 msgid "See also C<guestfs_pread>, C<guestfs_pwrite_device>."
15019 msgstr ""
15020
15021 #. type: =head2
15022 #: ../src/guestfs-actions.pod:5410
15023 msgid "guestfs_pwrite_device"
15024 msgstr ""
15025
15026 #. type: verbatim
15027 #: ../src/guestfs-actions.pod:5412
15028 #, no-wrap
15029 msgid ""
15030 " int\n"
15031 " guestfs_pwrite_device (guestfs_h *g,\n"
15032 "                        const char *device,\n"
15033 "                        const char *content,\n"
15034 "                        size_t content_size,\n"
15035 "                        int64_t offset);\n"
15036 "\n"
15037 msgstr ""
15038
15039 #. type: textblock
15040 #: ../src/guestfs-actions.pod:5419 ../fish/guestfish-actions.pod:3635
15041 msgid ""
15042 "This command writes to part of a device.  It writes the data buffer "
15043 "C<content> to C<device> starting at offset C<offset>."
15044 msgstr ""
15045
15046 #. type: textblock
15047 #: ../src/guestfs-actions.pod:5422 ../fish/guestfish-actions.pod:3638
15048 msgid ""
15049 "This command implements the L<pwrite(2)> system call, and like that system "
15050 "call it may not write the full data requested (although short writes to disk "
15051 "devices and partitions are probably impossible with standard Linux kernels)."
15052 msgstr ""
15053
15054 #. type: textblock
15055 #: ../src/guestfs-actions.pod:5427
15056 msgid "See also C<guestfs_pwrite>."
15057 msgstr ""
15058
15059 #. type: textblock
15060 #: ../src/guestfs-actions.pod:5434
15061 msgid "(Added in 1.5.20)"
15062 msgstr ""
15063
15064 #. type: =head2
15065 #: ../src/guestfs-actions.pod:5436
15066 msgid "guestfs_read_file"
15067 msgstr ""
15068
15069 #. type: verbatim
15070 #: ../src/guestfs-actions.pod:5438
15071 #, no-wrap
15072 msgid ""
15073 " char *\n"
15074 " guestfs_read_file (guestfs_h *g,\n"
15075 "                    const char *path,\n"
15076 "                    size_t *size_r);\n"
15077 "\n"
15078 msgstr ""
15079
15080 #. type: textblock
15081 #: ../src/guestfs-actions.pod:5443 ../fish/guestfish-actions.pod:3652
15082 msgid "This calls returns the contents of the file C<path> as a buffer."
15083 msgstr ""
15084
15085 #. type: textblock
15086 #: ../src/guestfs-actions.pod:5446
15087 msgid ""
15088 "Unlike C<guestfs_cat>, this function can correctly handle files that contain "
15089 "embedded ASCII NUL characters.  However unlike C<guestfs_download>, this "
15090 "function is limited in the total size of file that can be handled."
15091 msgstr ""
15092
15093 #. type: textblock
15094 #: ../src/guestfs-actions.pod:5458
15095 msgid "(Added in 1.0.63)"
15096 msgstr ""
15097
15098 #. type: =head2
15099 #: ../src/guestfs-actions.pod:5460
15100 msgid "guestfs_read_lines"
15101 msgstr ""
15102
15103 #. type: verbatim
15104 #: ../src/guestfs-actions.pod:5462
15105 #, no-wrap
15106 msgid ""
15107 " char **\n"
15108 " guestfs_read_lines (guestfs_h *g,\n"
15109 "                     const char *path);\n"
15110 "\n"
15111 msgstr ""
15112
15113 #. type: textblock
15114 #: ../src/guestfs-actions.pod:5468 ../fish/guestfish-actions.pod:3669
15115 msgid ""
15116 "The file contents are returned as a list of lines.  Trailing C<LF> and "
15117 "C<CRLF> character sequences are I<not> returned."
15118 msgstr ""
15119
15120 #. type: textblock
15121 #: ../src/guestfs-actions.pod:5471
15122 msgid ""
15123 "Note that this function cannot correctly handle binary files (specifically, "
15124 "files containing C<\\0> character which is treated as end of line).  For "
15125 "those you need to use the C<guestfs_read_file> function which has a more "
15126 "complex interface."
15127 msgstr ""
15128
15129 #. type: =head2
15130 #: ../src/guestfs-actions.pod:5482
15131 msgid "guestfs_readdir"
15132 msgstr ""
15133
15134 #. type: verbatim
15135 #: ../src/guestfs-actions.pod:5484
15136 #, no-wrap
15137 msgid ""
15138 " struct guestfs_dirent_list *\n"
15139 " guestfs_readdir (guestfs_h *g,\n"
15140 "                  const char *dir);\n"
15141 "\n"
15142 msgstr ""
15143
15144 #. type: textblock
15145 #: ../src/guestfs-actions.pod:5488 ../fish/guestfish-actions.pod:3681
15146 msgid "This returns the list of directory entries in directory C<dir>."
15147 msgstr ""
15148
15149 #. type: textblock
15150 #: ../src/guestfs-actions.pod:5490 ../fish/guestfish-actions.pod:3683
15151 msgid ""
15152 "All entries in the directory are returned, including C<.> and C<..>.  The "
15153 "entries are I<not> sorted, but returned in the same order as the underlying "
15154 "filesystem."
15155 msgstr ""
15156
15157 #. type: textblock
15158 #: ../src/guestfs-actions.pod:5494 ../fish/guestfish-actions.pod:3687
15159 msgid ""
15160 "Also this call returns basic file type information about each file.  The "
15161 "C<ftyp> field will contain one of the following characters:"
15162 msgstr ""
15163
15164 #. type: =item
15165 #: ../src/guestfs-actions.pod:5499 ../fish/guestfish-actions.pod:3692
15166 msgid "'b'"
15167 msgstr ""
15168
15169 #. type: textblock
15170 #: ../src/guestfs-actions.pod:5501 ../fish/guestfish-actions.pod:3694
15171 msgid "Block special"
15172 msgstr ""
15173
15174 #. type: =item
15175 #: ../src/guestfs-actions.pod:5503 ../fish/guestfish-actions.pod:3696
15176 msgid "'c'"
15177 msgstr ""
15178
15179 #. type: textblock
15180 #: ../src/guestfs-actions.pod:5505 ../fish/guestfish-actions.pod:3698
15181 msgid "Char special"
15182 msgstr ""
15183
15184 #. type: =item
15185 #: ../src/guestfs-actions.pod:5507 ../fish/guestfish-actions.pod:3700
15186 msgid "'d'"
15187 msgstr ""
15188
15189 #. type: textblock
15190 #: ../src/guestfs-actions.pod:5509 ../fish/guestfish-actions.pod:3702
15191 msgid "Directory"
15192 msgstr ""
15193
15194 #. type: =item
15195 #: ../src/guestfs-actions.pod:5511 ../fish/guestfish-actions.pod:3704
15196 msgid "'f'"
15197 msgstr ""
15198
15199 #. type: textblock
15200 #: ../src/guestfs-actions.pod:5513 ../fish/guestfish-actions.pod:3706
15201 msgid "FIFO (named pipe)"
15202 msgstr ""
15203
15204 #. type: =item
15205 #: ../src/guestfs-actions.pod:5515 ../fish/guestfish-actions.pod:3708
15206 msgid "'l'"
15207 msgstr ""
15208
15209 #. type: textblock
15210 #: ../src/guestfs-actions.pod:5517 ../fish/guestfish-actions.pod:3710
15211 msgid "Symbolic link"
15212 msgstr ""
15213
15214 #. type: =item
15215 #: ../src/guestfs-actions.pod:5519 ../fish/guestfish-actions.pod:3712
15216 msgid "'r'"
15217 msgstr ""
15218
15219 #. type: textblock
15220 #: ../src/guestfs-actions.pod:5521 ../fish/guestfish-actions.pod:3714
15221 msgid "Regular file"
15222 msgstr ""
15223
15224 #. type: =item
15225 #: ../src/guestfs-actions.pod:5523 ../fish/guestfish-actions.pod:3716
15226 msgid "'s'"
15227 msgstr ""
15228
15229 #. type: textblock
15230 #: ../src/guestfs-actions.pod:5525 ../fish/guestfish-actions.pod:3718
15231 msgid "Socket"
15232 msgstr ""
15233
15234 #. type: =item
15235 #: ../src/guestfs-actions.pod:5527 ../fish/guestfish-actions.pod:3720
15236 msgid "'u'"
15237 msgstr ""
15238
15239 #. type: textblock
15240 #: ../src/guestfs-actions.pod:5529 ../fish/guestfish-actions.pod:3722
15241 msgid "Unknown file type"
15242 msgstr ""
15243
15244 #. type: =item
15245 #: ../src/guestfs-actions.pod:5531 ../fish/guestfish-actions.pod:3724
15246 msgid "'?'"
15247 msgstr ""
15248
15249 #. type: textblock
15250 #: ../src/guestfs-actions.pod:5533 ../fish/guestfish-actions.pod:3726
15251 msgid ""
15252 "The L<readdir(3)> call returned a C<d_type> field with an unexpected value"
15253 msgstr ""
15254
15255 #. type: textblock
15256 #: ../src/guestfs-actions.pod:5538
15257 msgid ""
15258 "This function is primarily intended for use by programs.  To get a simple "
15259 "list of names, use C<guestfs_ls>.  To get a printable directory for human "
15260 "consumption, use C<guestfs_ll>."
15261 msgstr ""
15262
15263 #. type: textblock
15264 #: ../src/guestfs-actions.pod:5542
15265 msgid ""
15266 "This function returns a C<struct guestfs_dirent_list *>, or NULL if there "
15267 "was an error.  I<The caller must call C<guestfs_free_dirent_list> after use>."
15268 msgstr ""
15269
15270 #. type: =head2
15271 #: ../src/guestfs-actions.pod:5548
15272 msgid "guestfs_readlink"
15273 msgstr ""
15274
15275 #. type: verbatim
15276 #: ../src/guestfs-actions.pod:5550
15277 #, no-wrap
15278 msgid ""
15279 " char *\n"
15280 " guestfs_readlink (guestfs_h *g,\n"
15281 "                   const char *path);\n"
15282 "\n"
15283 msgstr ""
15284
15285 #. type: textblock
15286 #: ../src/guestfs-actions.pod:5554 ../fish/guestfish-actions.pod:3739
15287 msgid "This command reads the target of a symbolic link."
15288 msgstr ""
15289
15290 #. type: =head2
15291 #: ../src/guestfs-actions.pod:5561
15292 msgid "guestfs_readlinklist"
15293 msgstr ""
15294
15295 #. type: verbatim
15296 #: ../src/guestfs-actions.pod:5563
15297 #, no-wrap
15298 msgid ""
15299 " char **\n"
15300 " guestfs_readlinklist (guestfs_h *g,\n"
15301 "                       const char *path,\n"
15302 "                       char *const *names);\n"
15303 "\n"
15304 msgstr ""
15305
15306 #. type: textblock
15307 #: ../src/guestfs-actions.pod:5568 ../fish/guestfish-actions.pod:3745
15308 msgid ""
15309 "This call allows you to do a C<readlink> operation on multiple files, where "
15310 "all files are in the directory C<path>.  C<names> is the list of files from "
15311 "this directory."
15312 msgstr ""
15313
15314 #. type: textblock
15315 #: ../src/guestfs-actions.pod:5572 ../fish/guestfish-actions.pod:3749
15316 msgid ""
15317 "On return you get a list of strings, with a one-to-one correspondence to the "
15318 "C<names> list.  Each string is the value of the symbolic link."
15319 msgstr ""
15320
15321 #. type: textblock
15322 #: ../src/guestfs-actions.pod:5576 ../fish/guestfish-actions.pod:3753
15323 msgid ""
15324 "If the C<readlink(2)> operation fails on any name, then the corresponding "
15325 "result string is the empty string C<\"\">.  However the whole operation is "
15326 "completed even if there were C<readlink(2)> errors, and so you can call this "
15327 "function with names where you don't know if they are symbolic links already "
15328 "(albeit slightly less efficient)."
15329 msgstr ""
15330
15331 #. type: textblock
15332 #: ../src/guestfs-actions.pod:5583 ../fish/guestfish-actions.pod:3760
15333 msgid ""
15334 "This call is intended for programs that want to efficiently list a directory "
15335 "contents without making many round-trips.  Very long directory listings "
15336 "might cause the protocol message size to be exceeded, causing this call to "
15337 "fail.  The caller must split up such requests into smaller groups of names."
15338 msgstr ""
15339
15340 #. type: =head2
15341 #: ../src/guestfs-actions.pod:5596
15342 msgid "guestfs_realpath"
15343 msgstr ""
15344
15345 #. type: verbatim
15346 #: ../src/guestfs-actions.pod:5598
15347 #, no-wrap
15348 msgid ""
15349 " char *\n"
15350 " guestfs_realpath (guestfs_h *g,\n"
15351 "                   const char *path);\n"
15352 "\n"
15353 msgstr ""
15354
15355 #. type: textblock
15356 #: ../src/guestfs-actions.pod:5602 ../fish/guestfish-actions.pod:3771
15357 msgid ""
15358 "Return the canonicalized absolute pathname of C<path>.  The returned path "
15359 "has no C<.>, C<..> or symbolic link path elements."
15360 msgstr ""
15361
15362 #. type: =head2
15363 #: ../src/guestfs-actions.pod:5610
15364 msgid "guestfs_removexattr"
15365 msgstr ""
15366
15367 #. type: verbatim
15368 #: ../src/guestfs-actions.pod:5612
15369 #, no-wrap
15370 msgid ""
15371 " int\n"
15372 " guestfs_removexattr (guestfs_h *g,\n"
15373 "                      const char *xattr,\n"
15374 "                      const char *path);\n"
15375 "\n"
15376 msgstr ""
15377
15378 #. type: textblock
15379 #: ../src/guestfs-actions.pod:5617 ../fish/guestfish-actions.pod:3778
15380 msgid ""
15381 "This call removes the extended attribute named C<xattr> of the file C<path>."
15382 msgstr ""
15383
15384 #. type: textblock
15385 #: ../src/guestfs-actions.pod:5620
15386 msgid "See also: C<guestfs_lremovexattr>, L<attr(5)>."
15387 msgstr ""
15388
15389 #. type: =head2
15390 #: ../src/guestfs-actions.pod:5626
15391 msgid "guestfs_resize2fs"
15392 msgstr ""
15393
15394 #. type: verbatim
15395 #: ../src/guestfs-actions.pod:5628
15396 #, no-wrap
15397 msgid ""
15398 " int\n"
15399 " guestfs_resize2fs (guestfs_h *g,\n"
15400 "                    const char *device);\n"
15401 "\n"
15402 msgstr ""
15403
15404 #. type: textblock
15405 #: ../src/guestfs-actions.pod:5632 ../fish/guestfish-actions.pod:3787
15406 msgid ""
15407 "This resizes an ext2, ext3 or ext4 filesystem to match the size of the "
15408 "underlying device."
15409 msgstr ""
15410
15411 #. type: textblock
15412 #: ../src/guestfs-actions.pod:5635
15413 msgid ""
15414 "I<Note:> It is sometimes required that you run C<guestfs_e2fsck_f> on the "
15415 "C<device> before calling this command.  For unknown reasons C<resize2fs> "
15416 "sometimes gives an error about this and sometimes not.  In any case, it is "
15417 "always safe to call C<guestfs_e2fsck_f> before calling this function."
15418 msgstr ""
15419
15420 #. type: =head2
15421 #: ../src/guestfs-actions.pod:5645
15422 msgid "guestfs_resize2fs_M"
15423 msgstr ""
15424
15425 #. type: verbatim
15426 #: ../src/guestfs-actions.pod:5647
15427 #, no-wrap
15428 msgid ""
15429 " int\n"
15430 " guestfs_resize2fs_M (guestfs_h *g,\n"
15431 "                      const char *device);\n"
15432 "\n"
15433 msgstr ""
15434
15435 #. type: textblock
15436 #: ../src/guestfs-actions.pod:5651
15437 msgid ""
15438 "This command is the same as C<guestfs_resize2fs>, but the filesystem is "
15439 "resized to its minimum size.  This works like the C<-M> option to the "
15440 "C<resize2fs> command."
15441 msgstr ""
15442
15443 #. type: textblock
15444 #: ../src/guestfs-actions.pod:5655
15445 msgid ""
15446 "To get the resulting size of the filesystem you should call "
15447 "C<guestfs_tune2fs_l> and read the C<Block size> and C<Block count> values.  "
15448 "These two numbers, multiplied together, give the resulting size of the "
15449 "minimal filesystem in bytes."
15450 msgstr ""
15451
15452 #. type: =head2
15453 #: ../src/guestfs-actions.pod:5662
15454 msgid "guestfs_resize2fs_size"
15455 msgstr ""
15456
15457 #. type: verbatim
15458 #: ../src/guestfs-actions.pod:5664
15459 #, no-wrap
15460 msgid ""
15461 " int\n"
15462 " guestfs_resize2fs_size (guestfs_h *g,\n"
15463 "                         const char *device,\n"
15464 "                         int64_t size);\n"
15465 "\n"
15466 msgstr ""
15467
15468 #. type: textblock
15469 #: ../src/guestfs-actions.pod:5669
15470 msgid ""
15471 "This command is the same as C<guestfs_resize2fs> except that it allows you "
15472 "to specify the new size (in bytes) explicitly."
15473 msgstr ""
15474
15475 #. type: =head2
15476 #: ../src/guestfs-actions.pod:5676
15477 msgid "guestfs_rm"
15478 msgstr ""
15479
15480 #. type: verbatim
15481 #: ../src/guestfs-actions.pod:5678
15482 #, no-wrap
15483 msgid ""
15484 " int\n"
15485 " guestfs_rm (guestfs_h *g,\n"
15486 "             const char *path);\n"
15487 "\n"
15488 msgstr ""
15489
15490 #. type: textblock
15491 #: ../src/guestfs-actions.pod:5682 ../fish/guestfish-actions.pod:3820
15492 msgid "Remove the single file C<path>."
15493 msgstr ""
15494
15495 #. type: =head2
15496 #: ../src/guestfs-actions.pod:5688
15497 msgid "guestfs_rm_rf"
15498 msgstr ""
15499
15500 #. type: verbatim
15501 #: ../src/guestfs-actions.pod:5690
15502 #, no-wrap
15503 msgid ""
15504 " int\n"
15505 " guestfs_rm_rf (guestfs_h *g,\n"
15506 "                const char *path);\n"
15507 "\n"
15508 msgstr ""
15509
15510 #. type: textblock
15511 #: ../src/guestfs-actions.pod:5694 ../fish/guestfish-actions.pod:3826
15512 msgid ""
15513 "Remove the file or directory C<path>, recursively removing the contents if "
15514 "its a directory.  This is like the C<rm -rf> shell command."
15515 msgstr ""
15516
15517 #. type: =head2
15518 #: ../src/guestfs-actions.pod:5702
15519 msgid "guestfs_rmdir"
15520 msgstr ""
15521
15522 #. type: verbatim
15523 #: ../src/guestfs-actions.pod:5704
15524 #, no-wrap
15525 msgid ""
15526 " int\n"
15527 " guestfs_rmdir (guestfs_h *g,\n"
15528 "                const char *path);\n"
15529 "\n"
15530 msgstr ""
15531
15532 #. type: textblock
15533 #: ../src/guestfs-actions.pod:5708 ../fish/guestfish-actions.pod:3834
15534 msgid "Remove the single directory C<path>."
15535 msgstr ""
15536
15537 #. type: =head2
15538 #: ../src/guestfs-actions.pod:5714
15539 msgid "guestfs_rmmountpoint"
15540 msgstr ""
15541
15542 #. type: verbatim
15543 #: ../src/guestfs-actions.pod:5716
15544 #, no-wrap
15545 msgid ""
15546 " int\n"
15547 " guestfs_rmmountpoint (guestfs_h *g,\n"
15548 "                       const char *exemptpath);\n"
15549 "\n"
15550 msgstr ""
15551
15552 #. type: textblock
15553 #: ../src/guestfs-actions.pod:5720
15554 msgid ""
15555 "This calls removes a mountpoint that was previously created with "
15556 "C<guestfs_mkmountpoint>.  See C<guestfs_mkmountpoint> for full details."
15557 msgstr ""
15558
15559 #. type: =head2
15560 #: ../src/guestfs-actions.pod:5728
15561 msgid "guestfs_scrub_device"
15562 msgstr ""
15563
15564 #. type: verbatim
15565 #: ../src/guestfs-actions.pod:5730
15566 #, no-wrap
15567 msgid ""
15568 " int\n"
15569 " guestfs_scrub_device (guestfs_h *g,\n"
15570 "                       const char *device);\n"
15571 "\n"
15572 msgstr ""
15573
15574 #. type: textblock
15575 #: ../src/guestfs-actions.pod:5734 ../fish/guestfish-actions.pod:3848
15576 msgid ""
15577 "This command writes patterns over C<device> to make data retrieval more "
15578 "difficult."
15579 msgstr ""
15580
15581 #. type: textblock
15582 #: ../src/guestfs-actions.pod:5737 ../src/guestfs-actions.pod:5758
15583 #: ../src/guestfs-actions.pod:5777 ../fish/guestfish-actions.pod:3851
15584 #: ../fish/guestfish-actions.pod:3866 ../fish/guestfish-actions.pod:3879
15585 msgid ""
15586 "It is an interface to the L<scrub(1)> program.  See that manual page for "
15587 "more details."
15588 msgstr ""
15589
15590 #. type: textblock
15591 #: ../src/guestfs-actions.pod:5745 ../src/guestfs-actions.pod:5763
15592 #: ../src/guestfs-actions.pod:5782
15593 msgid "(Added in 1.0.52)"
15594 msgstr ""
15595
15596 #. type: =head2
15597 #: ../src/guestfs-actions.pod:5747
15598 msgid "guestfs_scrub_file"
15599 msgstr ""
15600
15601 #. type: verbatim
15602 #: ../src/guestfs-actions.pod:5749
15603 #, no-wrap
15604 msgid ""
15605 " int\n"
15606 " guestfs_scrub_file (guestfs_h *g,\n"
15607 "                     const char *file);\n"
15608 "\n"
15609 msgstr ""
15610
15611 #. type: textblock
15612 #: ../src/guestfs-actions.pod:5753 ../fish/guestfish-actions.pod:3861
15613 msgid ""
15614 "This command writes patterns over a file to make data retrieval more "
15615 "difficult."
15616 msgstr ""
15617
15618 #. type: textblock
15619 #: ../src/guestfs-actions.pod:5756 ../fish/guestfish-actions.pod:3864
15620 msgid "The file is I<removed> after scrubbing."
15621 msgstr ""
15622
15623 #. type: =head2
15624 #: ../src/guestfs-actions.pod:5765
15625 msgid "guestfs_scrub_freespace"
15626 msgstr ""
15627
15628 #. type: verbatim
15629 #: ../src/guestfs-actions.pod:5767
15630 #, no-wrap
15631 msgid ""
15632 " int\n"
15633 " guestfs_scrub_freespace (guestfs_h *g,\n"
15634 "                          const char *dir);\n"
15635 "\n"
15636 msgstr ""
15637
15638 #. type: textblock
15639 #: ../src/guestfs-actions.pod:5771
15640 msgid ""
15641 "This command creates the directory C<dir> and then fills it with files until "
15642 "the filesystem is full, and scrubs the files as for C<guestfs_scrub_file>, "
15643 "and deletes them.  The intention is to scrub any free space on the partition "
15644 "containing C<dir>."
15645 msgstr ""
15646
15647 #. type: =head2
15648 #: ../src/guestfs-actions.pod:5784
15649 msgid "guestfs_set_append"
15650 msgstr ""
15651
15652 #. type: verbatim
15653 #: ../src/guestfs-actions.pod:5786
15654 #, no-wrap
15655 msgid ""
15656 " int\n"
15657 " guestfs_set_append (guestfs_h *g,\n"
15658 "                     const char *append);\n"
15659 "\n"
15660 msgstr ""
15661
15662 #. type: textblock
15663 #: ../src/guestfs-actions.pod:5790 ../fish/guestfish-actions.pod:3888
15664 msgid ""
15665 "This function is used to add additional options to the guest kernel command "
15666 "line."
15667 msgstr ""
15668
15669 #. type: textblock
15670 #: ../src/guestfs-actions.pod:5793 ../fish/guestfish-actions.pod:3891
15671 msgid ""
15672 "The default is C<NULL> unless overridden by setting C<LIBGUESTFS_APPEND> "
15673 "environment variable."
15674 msgstr ""
15675
15676 #. type: textblock
15677 #: ../src/guestfs-actions.pod:5796 ../fish/guestfish-actions.pod:3894
15678 msgid ""
15679 "Setting C<append> to C<NULL> means I<no> additional options are passed "
15680 "(libguestfs always adds a few of its own)."
15681 msgstr ""
15682
15683 #. type: =head2
15684 #: ../src/guestfs-actions.pod:5803
15685 msgid "guestfs_set_attach_method"
15686 msgstr ""
15687
15688 #. type: verbatim
15689 #: ../src/guestfs-actions.pod:5805
15690 #, no-wrap
15691 msgid ""
15692 " int\n"
15693 " guestfs_set_attach_method (guestfs_h *g,\n"
15694 "                            const char *attachmethod);\n"
15695 "\n"
15696 msgstr ""
15697
15698 #. type: textblock
15699 #: ../src/guestfs-actions.pod:5809 ../fish/guestfish-actions.pod:3903
15700 msgid ""
15701 "Set the method that libguestfs uses to connect to the back end guestfsd "
15702 "daemon.  Possible methods are:"
15703 msgstr ""
15704
15705 #. type: textblock
15706 #: ../src/guestfs-actions.pod:5816 ../fish/guestfish-actions.pod:3910
15707 msgid ""
15708 "Launch an appliance and connect to it.  This is the ordinary method and the "
15709 "default."
15710 msgstr ""
15711
15712 #. type: =item
15713 #: ../src/guestfs-actions.pod:5819 ../fish/guestfish-actions.pod:3913
15714 msgid "C<unix:I<path>>"
15715 msgstr ""
15716
15717 #. type: textblock
15718 #: ../src/guestfs-actions.pod:5821 ../fish/guestfish-actions.pod:3915
15719 msgid "Connect to the Unix domain socket I<path>."
15720 msgstr ""
15721
15722 #. type: textblock
15723 #: ../src/guestfs-actions.pod:5823 ../fish/guestfish-actions.pod:3917
15724 msgid ""
15725 "This method lets you connect to an existing daemon or (using virtio-serial) "
15726 "to a live guest.  For more information, see L<guestfs(3)/ATTACHING TO "
15727 "RUNNING DAEMONS>."
15728 msgstr ""
15729
15730 #. type: =head2
15731 #: ../src/guestfs-actions.pod:5831
15732 msgid "guestfs_set_autosync"
15733 msgstr ""
15734
15735 #. type: verbatim
15736 #: ../src/guestfs-actions.pod:5833
15737 #, no-wrap
15738 msgid ""
15739 " int\n"
15740 " guestfs_set_autosync (guestfs_h *g,\n"
15741 "                       int autosync);\n"
15742 "\n"
15743 msgstr ""
15744
15745 #. type: textblock
15746 #: ../src/guestfs-actions.pod:5837 ../fish/guestfish-actions.pod:3929
15747 msgid ""
15748 "If C<autosync> is true, this enables autosync.  Libguestfs will make a best "
15749 "effort attempt to make filesystems consistent and synchronized when the "
15750 "handle is closed (also if the program exits without closing handles)."
15751 msgstr ""
15752
15753 #. type: textblock
15754 #: ../src/guestfs-actions.pod:5842 ../fish/guestfish-actions.pod:3934
15755 msgid ""
15756 "This is enabled by default (since libguestfs 1.5.24, previously it was "
15757 "disabled by default)."
15758 msgstr ""
15759
15760 #. type: =head2
15761 #: ../src/guestfs-actions.pod:5849
15762 msgid "guestfs_set_direct"
15763 msgstr ""
15764
15765 #. type: verbatim
15766 #: ../src/guestfs-actions.pod:5851
15767 #, no-wrap
15768 msgid ""
15769 " int\n"
15770 " guestfs_set_direct (guestfs_h *g,\n"
15771 "                     int direct);\n"
15772 "\n"
15773 msgstr ""
15774
15775 #. type: textblock
15776 #: ../src/guestfs-actions.pod:5855 ../fish/guestfish-actions.pod:3943
15777 msgid ""
15778 "If the direct appliance mode flag is enabled, then stdin and stdout are "
15779 "passed directly through to the appliance once it is launched."
15780 msgstr ""
15781
15782 #. type: textblock
15783 #: ../src/guestfs-actions.pod:5859
15784 msgid ""
15785 "One consequence of this is that log messages aren't caught by the library "
15786 "and handled by C<guestfs_set_log_message_callback>, but go straight to "
15787 "stdout."
15788 msgstr ""
15789
15790 #. type: textblock
15791 #: ../src/guestfs-actions.pod:5863 ../fish/guestfish-actions.pod:3951
15792 msgid "You probably don't want to use this unless you know what you are doing."
15793 msgstr ""
15794
15795 #. type: textblock
15796 #: ../src/guestfs-actions.pod:5866 ../fish/guestfish-actions.pod:3954
15797 msgid "The default is disabled."
15798 msgstr ""
15799
15800 #. type: =head2
15801 #: ../src/guestfs-actions.pod:5872
15802 msgid "guestfs_set_e2label"
15803 msgstr ""
15804
15805 #. type: verbatim
15806 #: ../src/guestfs-actions.pod:5874
15807 #, no-wrap
15808 msgid ""
15809 " int\n"
15810 " guestfs_set_e2label (guestfs_h *g,\n"
15811 "                      const char *device,\n"
15812 "                      const char *label);\n"
15813 "\n"
15814 msgstr ""
15815
15816 #. type: textblock
15817 #: ../src/guestfs-actions.pod:5879 ../fish/guestfish-actions.pod:3960
15818 msgid ""
15819 "This sets the ext2/3/4 filesystem label of the filesystem on C<device> to "
15820 "C<label>.  Filesystem labels are limited to 16 characters."
15821 msgstr ""
15822
15823 #. type: textblock
15824 #: ../src/guestfs-actions.pod:5883
15825 msgid ""
15826 "You can use either C<guestfs_tune2fs_l> or C<guestfs_get_e2label> to return "
15827 "the existing label on a filesystem."
15828 msgstr ""
15829
15830 #. type: =head2
15831 #: ../src/guestfs-actions.pod:5890
15832 msgid "guestfs_set_e2uuid"
15833 msgstr ""
15834
15835 #. type: verbatim
15836 #: ../src/guestfs-actions.pod:5892
15837 #, no-wrap
15838 msgid ""
15839 " int\n"
15840 " guestfs_set_e2uuid (guestfs_h *g,\n"
15841 "                     const char *device,\n"
15842 "                     const char *uuid);\n"
15843 "\n"
15844 msgstr ""
15845
15846 #. type: textblock
15847 #: ../src/guestfs-actions.pod:5897 ../fish/guestfish-actions.pod:3971
15848 msgid ""
15849 "This sets the ext2/3/4 filesystem UUID of the filesystem on C<device> to "
15850 "C<uuid>.  The format of the UUID and alternatives such as C<clear>, "
15851 "C<random> and C<time> are described in the L<tune2fs(8)> manpage."
15852 msgstr ""
15853
15854 #. type: textblock
15855 #: ../src/guestfs-actions.pod:5902
15856 msgid ""
15857 "You can use either C<guestfs_tune2fs_l> or C<guestfs_get_e2uuid> to return "
15858 "the existing UUID of a filesystem."
15859 msgstr ""
15860
15861 #. type: =head2
15862 #: ../src/guestfs-actions.pod:5909
15863 msgid "guestfs_set_memsize"
15864 msgstr ""
15865
15866 #. type: verbatim
15867 #: ../src/guestfs-actions.pod:5911
15868 #, no-wrap
15869 msgid ""
15870 " int\n"
15871 " guestfs_set_memsize (guestfs_h *g,\n"
15872 "                      int memsize);\n"
15873 "\n"
15874 msgstr ""
15875
15876 #. type: textblock
15877 #: ../src/guestfs-actions.pod:5915
15878 msgid ""
15879 "This sets the memory size in megabytes allocated to the qemu subprocess.  "
15880 "This only has any effect if called before C<guestfs_launch>."
15881 msgstr ""
15882
15883 #. type: textblock
15884 #: ../src/guestfs-actions.pod:5919 ../fish/guestfish-actions.pod:3989
15885 msgid ""
15886 "You can also change this by setting the environment variable "
15887 "C<LIBGUESTFS_MEMSIZE> before the handle is created."
15888 msgstr ""
15889
15890 #. type: =head2
15891 #: ../src/guestfs-actions.pod:5930
15892 msgid "guestfs_set_network"
15893 msgstr ""
15894
15895 #. type: verbatim
15896 #: ../src/guestfs-actions.pod:5932
15897 #, no-wrap
15898 msgid ""
15899 " int\n"
15900 " guestfs_set_network (guestfs_h *g,\n"
15901 "                      int network);\n"
15902 "\n"
15903 msgstr ""
15904
15905 #. type: textblock
15906 #: ../src/guestfs-actions.pod:5936 ../fish/guestfish-actions.pod:4002
15907 msgid ""
15908 "If C<network> is true, then the network is enabled in the libguestfs "
15909 "appliance.  The default is false."
15910 msgstr ""
15911
15912 #. type: textblock
15913 #: ../src/guestfs-actions.pod:5939 ../fish/guestfish-actions.pod:4005
15914 msgid ""
15915 "This affects whether commands are able to access the network (see L<guestfs"
15916 "(3)/RUNNING COMMANDS>)."
15917 msgstr ""
15918
15919 #. type: textblock
15920 #: ../src/guestfs-actions.pod:5942
15921 msgid ""
15922 "You must call this before calling C<guestfs_launch>, otherwise it has no "
15923 "effect."
15924 msgstr ""
15925
15926 #. type: =head2
15927 #: ../src/guestfs-actions.pod:5949
15928 msgid "guestfs_set_path"
15929 msgstr ""
15930
15931 #. type: verbatim
15932 #: ../src/guestfs-actions.pod:5951
15933 #, no-wrap
15934 msgid ""
15935 " int\n"
15936 " guestfs_set_path (guestfs_h *g,\n"
15937 "                   const char *searchpath);\n"
15938 "\n"
15939 msgstr ""
15940
15941 #. type: textblock
15942 #: ../src/guestfs-actions.pod:5955 ../fish/guestfish-actions.pod:4017
15943 msgid "Set the path that libguestfs searches for kernel and initrd.img."
15944 msgstr ""
15945
15946 #. type: textblock
15947 #: ../src/guestfs-actions.pod:5957 ../fish/guestfish-actions.pod:4019
15948 msgid ""
15949 "The default is C<$libdir/guestfs> unless overridden by setting "
15950 "C<LIBGUESTFS_PATH> environment variable."
15951 msgstr ""
15952
15953 #. type: textblock
15954 #: ../src/guestfs-actions.pod:5960 ../fish/guestfish-actions.pod:4022
15955 msgid "Setting C<path> to C<NULL> restores the default path."
15956 msgstr ""
15957
15958 #. type: =head2
15959 #: ../src/guestfs-actions.pod:5966
15960 msgid "guestfs_set_qemu"
15961 msgstr ""
15962
15963 #. type: verbatim
15964 #: ../src/guestfs-actions.pod:5968
15965 #, no-wrap
15966 msgid ""
15967 " int\n"
15968 " guestfs_set_qemu (guestfs_h *g,\n"
15969 "                   const char *qemu);\n"
15970 "\n"
15971 msgstr ""
15972
15973 #. type: textblock
15974 #: ../src/guestfs-actions.pod:5972 ../fish/guestfish-actions.pod:4030
15975 msgid "Set the qemu binary that we will use."
15976 msgstr ""
15977
15978 #. type: textblock
15979 #: ../src/guestfs-actions.pod:5974 ../fish/guestfish-actions.pod:4032
15980 msgid ""
15981 "The default is chosen when the library was compiled by the configure script."
15982 msgstr ""
15983
15984 #. type: textblock
15985 #: ../src/guestfs-actions.pod:5977 ../fish/guestfish-actions.pod:4035
15986 msgid ""
15987 "You can also override this by setting the C<LIBGUESTFS_QEMU> environment "
15988 "variable."
15989 msgstr ""
15990
15991 #. type: textblock
15992 #: ../src/guestfs-actions.pod:5980 ../fish/guestfish-actions.pod:4038
15993 msgid "Setting C<qemu> to C<NULL> restores the default qemu binary."
15994 msgstr ""
15995
15996 #. type: textblock
15997 #: ../src/guestfs-actions.pod:5982 ../fish/guestfish-actions.pod:4040
15998 msgid ""
15999 "Note that you should call this function as early as possible after creating "
16000 "the handle.  This is because some pre-launch operations depend on testing "
16001 "qemu features (by running C<qemu -help>).  If the qemu binary changes, we "
16002 "don't retest features, and so you might see inconsistent results.  Using the "
16003 "environment variable C<LIBGUESTFS_QEMU> is safest of all since that picks "
16004 "the qemu binary at the same time as the handle is created."
16005 msgstr ""
16006
16007 #. type: =head2
16008 #: ../src/guestfs-actions.pod:5994
16009 msgid "guestfs_set_recovery_proc"
16010 msgstr ""
16011
16012 #. type: verbatim
16013 #: ../src/guestfs-actions.pod:5996
16014 #, no-wrap
16015 msgid ""
16016 " int\n"
16017 " guestfs_set_recovery_proc (guestfs_h *g,\n"
16018 "                            int recoveryproc);\n"
16019 "\n"
16020 msgstr ""
16021
16022 #. type: textblock
16023 #: ../src/guestfs-actions.pod:6000
16024 msgid ""
16025 "If this is called with the parameter C<false> then C<guestfs_launch> does "
16026 "not create a recovery process.  The purpose of the recovery process is to "
16027 "stop runaway qemu processes in the case where the main program aborts "
16028 "abruptly."
16029 msgstr ""
16030
16031 #. type: textblock
16032 #: ../src/guestfs-actions.pod:6005
16033 msgid ""
16034 "This only has any effect if called before C<guestfs_launch>, and the default "
16035 "is true."
16036 msgstr ""
16037
16038 #. type: textblock
16039 #: ../src/guestfs-actions.pod:6008 ../fish/guestfish-actions.pod:4062
16040 msgid ""
16041 "About the only time when you would want to disable this is if the main "
16042 "process will fork itself into the background (\"daemonize\" itself).  In "
16043 "this case the recovery process thinks that the main program has disappeared "
16044 "and so kills qemu, which is not very helpful."
16045 msgstr ""
16046
16047 #. type: =head2
16048 #: ../src/guestfs-actions.pod:6018
16049 msgid "guestfs_set_selinux"
16050 msgstr ""
16051
16052 #. type: verbatim
16053 #: ../src/guestfs-actions.pod:6020
16054 #, no-wrap
16055 msgid ""
16056 " int\n"
16057 " guestfs_set_selinux (guestfs_h *g,\n"
16058 "                      int selinux);\n"
16059 "\n"
16060 msgstr ""
16061
16062 #. type: textblock
16063 #: ../src/guestfs-actions.pod:6024 ../fish/guestfish-actions.pod:4074
16064 msgid ""
16065 "This sets the selinux flag that is passed to the appliance at boot time.  "
16066 "The default is C<selinux=0> (disabled)."
16067 msgstr ""
16068
16069 #. type: textblock
16070 #: ../src/guestfs-actions.pod:6027 ../fish/guestfish-actions.pod:4077
16071 msgid ""
16072 "Note that if SELinux is enabled, it is always in Permissive mode "
16073 "(C<enforcing=0>)."
16074 msgstr ""
16075
16076 #. type: =head2
16077 #: ../src/guestfs-actions.pod:6037
16078 msgid "guestfs_set_trace"
16079 msgstr ""
16080
16081 #. type: verbatim
16082 #: ../src/guestfs-actions.pod:6039
16083 #, no-wrap
16084 msgid ""
16085 " int\n"
16086 " guestfs_set_trace (guestfs_h *g,\n"
16087 "                    int trace);\n"
16088 "\n"
16089 msgstr ""
16090
16091 #. type: textblock
16092 #: ../src/guestfs-actions.pod:6043 ../fish/guestfish-actions.pod:4089
16093 msgid ""
16094 "If the command trace flag is set to 1, then libguestfs calls, parameters and "
16095 "return values are traced."
16096 msgstr ""
16097
16098 #. type: textblock
16099 #: ../src/guestfs-actions.pod:6046 ../fish/guestfish-actions.pod:4092
16100 msgid ""
16101 "If you want to trace C API calls into libguestfs (and other libraries) then "
16102 "possibly a better way is to use the external ltrace(1) command."
16103 msgstr ""
16104
16105 #. type: textblock
16106 #: ../src/guestfs-actions.pod:6050 ../fish/guestfish-actions.pod:4096
16107 msgid ""
16108 "Command traces are disabled unless the environment variable "
16109 "C<LIBGUESTFS_TRACE> is defined and set to C<1>."
16110 msgstr ""
16111
16112 #. type: textblock
16113 #: ../src/guestfs-actions.pod:6053
16114 msgid ""
16115 "Trace messages are normally sent to C<stderr>, unless you register a "
16116 "callback to send them somewhere else (see C<guestfs_set_event_callback>)."
16117 msgstr ""
16118
16119 #. type: =head2
16120 #: ../src/guestfs-actions.pod:6061
16121 msgid "guestfs_set_verbose"
16122 msgstr ""
16123
16124 #. type: verbatim
16125 #: ../src/guestfs-actions.pod:6063
16126 #, no-wrap
16127 msgid ""
16128 " int\n"
16129 " guestfs_set_verbose (guestfs_h *g,\n"
16130 "                      int verbose);\n"
16131 "\n"
16132 msgstr ""
16133
16134 #. type: textblock
16135 #: ../src/guestfs-actions.pod:6067 ../fish/guestfish-actions.pod:4109
16136 msgid "If C<verbose> is true, this turns on verbose messages."
16137 msgstr ""
16138
16139 #. type: textblock
16140 #: ../src/guestfs-actions.pod:6069 ../fish/guestfish-actions.pod:4111
16141 msgid ""
16142 "Verbose messages are disabled unless the environment variable "
16143 "C<LIBGUESTFS_DEBUG> is defined and set to C<1>."
16144 msgstr ""
16145
16146 #. type: textblock
16147 #: ../src/guestfs-actions.pod:6072
16148 msgid ""
16149 "Verbose messages are normally sent to C<stderr>, unless you register a "
16150 "callback to send them somewhere else (see C<guestfs_set_event_callback>)."
16151 msgstr ""
16152
16153 #. type: =head2
16154 #: ../src/guestfs-actions.pod:6080
16155 msgid "guestfs_setcon"
16156 msgstr ""
16157
16158 #. type: verbatim
16159 #: ../src/guestfs-actions.pod:6082
16160 #, no-wrap
16161 msgid ""
16162 " int\n"
16163 " guestfs_setcon (guestfs_h *g,\n"
16164 "                 const char *context);\n"
16165 "\n"
16166 msgstr ""
16167
16168 #. type: textblock
16169 #: ../src/guestfs-actions.pod:6086 ../fish/guestfish-actions.pod:4122
16170 msgid ""
16171 "This sets the SELinux security context of the daemon to the string "
16172 "C<context>."
16173 msgstr ""
16174
16175 #. type: textblock
16176 #: ../src/guestfs-actions.pod:6089 ../fish/guestfish-actions.pod:4125
16177 msgid "See the documentation about SELINUX in L<guestfs(3)>."
16178 msgstr ""
16179
16180 #. type: =head2
16181 #: ../src/guestfs-actions.pod:6095
16182 msgid "guestfs_setxattr"
16183 msgstr ""
16184
16185 #. type: verbatim
16186 #: ../src/guestfs-actions.pod:6097
16187 #, no-wrap
16188 msgid ""
16189 " int\n"
16190 " guestfs_setxattr (guestfs_h *g,\n"
16191 "                   const char *xattr,\n"
16192 "                   const char *val,\n"
16193 "                   int vallen,\n"
16194 "                   const char *path);\n"
16195 "\n"
16196 msgstr ""
16197
16198 #. type: textblock
16199 #: ../src/guestfs-actions.pod:6104 ../fish/guestfish-actions.pod:4131
16200 msgid ""
16201 "This call sets the extended attribute named C<xattr> of the file C<path> to "
16202 "the value C<val> (of length C<vallen>).  The value is arbitrary 8 bit data."
16203 msgstr ""
16204
16205 #. type: textblock
16206 #: ../src/guestfs-actions.pod:6108
16207 msgid "See also: C<guestfs_lsetxattr>, L<attr(5)>."
16208 msgstr ""
16209
16210 #. type: =head2
16211 #: ../src/guestfs-actions.pod:6114
16212 msgid "guestfs_sfdisk"
16213 msgstr ""
16214
16215 #. type: verbatim
16216 #: ../src/guestfs-actions.pod:6116
16217 #, no-wrap
16218 msgid ""
16219 " int\n"
16220 " guestfs_sfdisk (guestfs_h *g,\n"
16221 "                 const char *device,\n"
16222 "                 int cyls,\n"
16223 "                 int heads,\n"
16224 "                 int sectors,\n"
16225 "                 char *const *lines);\n"
16226 "\n"
16227 msgstr ""
16228
16229 #. type: textblock
16230 #: ../src/guestfs-actions.pod:6124 ../fish/guestfish-actions.pod:4141
16231 msgid ""
16232 "This is a direct interface to the L<sfdisk(8)> program for creating "
16233 "partitions on block devices."
16234 msgstr ""
16235
16236 #. type: textblock
16237 #: ../src/guestfs-actions.pod:6127 ../fish/guestfish-actions.pod:4144
16238 msgid "C<device> should be a block device, for example C</dev/sda>."
16239 msgstr ""
16240
16241 #. type: textblock
16242 #: ../src/guestfs-actions.pod:6129 ../fish/guestfish-actions.pod:4146
16243 msgid ""
16244 "C<cyls>, C<heads> and C<sectors> are the number of cylinders, heads and "
16245 "sectors on the device, which are passed directly to sfdisk as the I<-C>, I<-"
16246 "H> and I<-S> parameters.  If you pass C<0> for any of these, then the "
16247 "corresponding parameter is omitted.  Usually for 'large' disks, you can just "
16248 "pass C<0> for these, but for small (floppy-sized) disks, sfdisk (or rather, "
16249 "the kernel) cannot work out the right geometry and you will need to tell it."
16250 msgstr ""
16251
16252 #. type: textblock
16253 #: ../src/guestfs-actions.pod:6137 ../fish/guestfish-actions.pod:4154
16254 msgid ""
16255 "C<lines> is a list of lines that we feed to C<sfdisk>.  For more information "
16256 "refer to the L<sfdisk(8)> manpage."
16257 msgstr ""
16258
16259 #. type: textblock
16260 #: ../src/guestfs-actions.pod:6140 ../fish/guestfish-actions.pod:4157
16261 msgid ""
16262 "To create a single partition occupying the whole disk, you would pass "
16263 "C<lines> as a single element list, when the single element being the string "
16264 "C<,> (comma)."
16265 msgstr ""
16266
16267 #. type: textblock
16268 #: ../src/guestfs-actions.pod:6144
16269 msgid ""
16270 "See also: C<guestfs_sfdisk_l>, C<guestfs_sfdisk_N>, C<guestfs_part_init>"
16271 msgstr ""
16272
16273 #. type: =head2
16274 #: ../src/guestfs-actions.pod:6154
16275 msgid "guestfs_sfdiskM"
16276 msgstr ""
16277
16278 #. type: verbatim
16279 #: ../src/guestfs-actions.pod:6156
16280 #, no-wrap
16281 msgid ""
16282 " int\n"
16283 " guestfs_sfdiskM (guestfs_h *g,\n"
16284 "                  const char *device,\n"
16285 "                  char *const *lines);\n"
16286 "\n"
16287 msgstr ""
16288
16289 #. type: textblock
16290 #: ../src/guestfs-actions.pod:6161
16291 msgid ""
16292 "This is a simplified interface to the C<guestfs_sfdisk> command, where "
16293 "partition sizes are specified in megabytes only (rounded to the nearest "
16294 "cylinder) and you don't need to specify the cyls, heads and sectors "
16295 "parameters which were rarely if ever used anyway."
16296 msgstr ""
16297
16298 #. type: textblock
16299 #: ../src/guestfs-actions.pod:6167
16300 msgid ""
16301 "See also: C<guestfs_sfdisk>, the L<sfdisk(8)> manpage and "
16302 "C<guestfs_part_disk>"
16303 msgstr ""
16304
16305 #. type: =head2
16306 #: ../src/guestfs-actions.pod:6177
16307 msgid "guestfs_sfdisk_N"
16308 msgstr ""
16309
16310 #. type: verbatim
16311 #: ../src/guestfs-actions.pod:6179
16312 #, no-wrap
16313 msgid ""
16314 " int\n"
16315 " guestfs_sfdisk_N (guestfs_h *g,\n"
16316 "                   const char *device,\n"
16317 "                   int partnum,\n"
16318 "                   int cyls,\n"
16319 "                   int heads,\n"
16320 "                   int sectors,\n"
16321 "                   const char *line);\n"
16322 "\n"
16323 msgstr ""
16324
16325 #. type: textblock
16326 #: ../src/guestfs-actions.pod:6188 ../fish/guestfish-actions.pod:4187
16327 msgid ""
16328 "This runs L<sfdisk(8)> option to modify just the single partition C<n> "
16329 "(note: C<n> counts from 1)."
16330 msgstr ""
16331
16332 #. type: textblock
16333 #: ../src/guestfs-actions.pod:6191
16334 msgid ""
16335 "For other parameters, see C<guestfs_sfdisk>.  You should usually pass C<0> "
16336 "for the cyls/heads/sectors parameters."
16337 msgstr ""
16338
16339 #. type: textblock
16340 #: ../src/guestfs-actions.pod:6194
16341 msgid "See also: C<guestfs_part_add>"
16342 msgstr ""
16343
16344 #. type: =head2
16345 #: ../src/guestfs-actions.pod:6203
16346 msgid "guestfs_sfdisk_disk_geometry"
16347 msgstr ""
16348
16349 #. type: verbatim
16350 #: ../src/guestfs-actions.pod:6205
16351 #, no-wrap
16352 msgid ""
16353 " char *\n"
16354 " guestfs_sfdisk_disk_geometry (guestfs_h *g,\n"
16355 "                               const char *device);\n"
16356 "\n"
16357 msgstr ""
16358
16359 #. type: textblock
16360 #: ../src/guestfs-actions.pod:6209
16361 msgid ""
16362 "This displays the disk geometry of C<device> read from the partition table.  "
16363 "Especially in the case where the underlying block device has been resized, "
16364 "this can be different from the kernel's idea of the geometry (see "
16365 "C<guestfs_sfdisk_kernel_geometry>)."
16366 msgstr ""
16367
16368 #. type: textblock
16369 #: ../src/guestfs-actions.pod:6214 ../src/guestfs-actions.pod:6230
16370 #: ../fish/guestfish-actions.pod:4207 ../fish/guestfish-actions.pod:4216
16371 msgid "The result is in human-readable format, and not designed to be parsed."
16372 msgstr ""
16373
16374 #. type: =head2
16375 #: ../src/guestfs-actions.pod:6222
16376 msgid "guestfs_sfdisk_kernel_geometry"
16377 msgstr ""
16378
16379 #. type: verbatim
16380 #: ../src/guestfs-actions.pod:6224
16381 #, no-wrap
16382 msgid ""
16383 " char *\n"
16384 " guestfs_sfdisk_kernel_geometry (guestfs_h *g,\n"
16385 "                                 const char *device);\n"
16386 "\n"
16387 msgstr ""
16388
16389 #. type: textblock
16390 #: ../src/guestfs-actions.pod:6228 ../fish/guestfish-actions.pod:4214
16391 msgid "This displays the kernel's idea of the geometry of C<device>."
16392 msgstr ""
16393
16394 #. type: =head2
16395 #: ../src/guestfs-actions.pod:6238
16396 msgid "guestfs_sfdisk_l"
16397 msgstr ""
16398
16399 #. type: verbatim
16400 #: ../src/guestfs-actions.pod:6240
16401 #, no-wrap
16402 msgid ""
16403 " char *\n"
16404 " guestfs_sfdisk_l (guestfs_h *g,\n"
16405 "                   const char *device);\n"
16406 "\n"
16407 msgstr ""
16408
16409 #. type: textblock
16410 #: ../src/guestfs-actions.pod:6244 ../fish/guestfish-actions.pod:4223
16411 msgid ""
16412 "This displays the partition table on C<device>, in the human-readable output "
16413 "of the L<sfdisk(8)> command.  It is not intended to be parsed."
16414 msgstr ""
16415
16416 #. type: textblock
16417 #: ../src/guestfs-actions.pod:6248
16418 msgid "See also: C<guestfs_part_list>"
16419 msgstr ""
16420
16421 #. type: =head2
16422 #: ../src/guestfs-actions.pod:6255
16423 msgid "guestfs_sh"
16424 msgstr ""
16425
16426 #. type: verbatim
16427 #: ../src/guestfs-actions.pod:6257
16428 #, no-wrap
16429 msgid ""
16430 " char *\n"
16431 " guestfs_sh (guestfs_h *g,\n"
16432 "             const char *command);\n"
16433 "\n"
16434 msgstr ""
16435
16436 #. type: textblock
16437 #: ../src/guestfs-actions.pod:6261 ../fish/guestfish-actions.pod:4233
16438 msgid ""
16439 "This call runs a command from the guest filesystem via the guest's C</bin/"
16440 "sh>."
16441 msgstr ""
16442
16443 #. type: textblock
16444 #: ../src/guestfs-actions.pod:6264
16445 msgid "This is like C<guestfs_command>, but passes the command to:"
16446 msgstr ""
16447
16448 #. type: verbatim
16449 #: ../src/guestfs-actions.pod:6266 ../fish/guestfish-actions.pod:4238
16450 #, no-wrap
16451 msgid ""
16452 " /bin/sh -c \"command\"\n"
16453 "\n"
16454 msgstr ""
16455
16456 #. type: textblock
16457 #: ../src/guestfs-actions.pod:6268 ../fish/guestfish-actions.pod:4240
16458 msgid ""
16459 "Depending on the guest's shell, this usually results in wildcards being "
16460 "expanded, shell expressions being interpolated and so on."
16461 msgstr ""
16462
16463 #. type: textblock
16464 #: ../src/guestfs-actions.pod:6272
16465 msgid "All the provisos about C<guestfs_command> apply to this call."
16466 msgstr ""
16467
16468 #. type: =head2
16469 #: ../src/guestfs-actions.pod:6279
16470 msgid "guestfs_sh_lines"
16471 msgstr ""
16472
16473 #. type: verbatim
16474 #: ../src/guestfs-actions.pod:6281
16475 #, no-wrap
16476 msgid ""
16477 " char **\n"
16478 " guestfs_sh_lines (guestfs_h *g,\n"
16479 "                   const char *command);\n"
16480 "\n"
16481 msgstr ""
16482
16483 #. type: textblock
16484 #: ../src/guestfs-actions.pod:6285
16485 msgid ""
16486 "This is the same as C<guestfs_sh>, but splits the result into a list of "
16487 "lines."
16488 msgstr ""
16489
16490 #. type: textblock
16491 #: ../src/guestfs-actions.pod:6288
16492 msgid "See also: C<guestfs_command_lines>"
16493 msgstr ""
16494
16495 #. type: =head2
16496 #: ../src/guestfs-actions.pod:6296
16497 msgid "guestfs_sleep"
16498 msgstr ""
16499
16500 #. type: verbatim
16501 #: ../src/guestfs-actions.pod:6298
16502 #, no-wrap
16503 msgid ""
16504 " int\n"
16505 " guestfs_sleep (guestfs_h *g,\n"
16506 "                int secs);\n"
16507 "\n"
16508 msgstr ""
16509
16510 #. type: textblock
16511 #: ../src/guestfs-actions.pod:6302 ../fish/guestfish-actions.pod:4259
16512 msgid "Sleep for C<secs> seconds."
16513 msgstr ""
16514
16515 #. type: textblock
16516 #: ../src/guestfs-actions.pod:6306
16517 msgid "(Added in 1.0.41)"
16518 msgstr ""
16519
16520 #. type: =head2
16521 #: ../src/guestfs-actions.pod:6308 ../src/guestfs-structs.pod:109
16522 msgid "guestfs_stat"
16523 msgstr ""
16524
16525 #. type: verbatim
16526 #: ../src/guestfs-actions.pod:6310
16527 #, no-wrap
16528 msgid ""
16529 " struct guestfs_stat *\n"
16530 " guestfs_stat (guestfs_h *g,\n"
16531 "               const char *path);\n"
16532 "\n"
16533 msgstr ""
16534
16535 #. type: textblock
16536 #: ../src/guestfs-actions.pod:6316 ../fish/guestfish-actions.pod:4267
16537 msgid "This is the same as the C<stat(2)> system call."
16538 msgstr ""
16539
16540 #. type: =head2
16541 #: ../src/guestfs-actions.pod:6324 ../src/guestfs-structs.pod:135
16542 msgid "guestfs_statvfs"
16543 msgstr ""
16544
16545 #. type: verbatim
16546 #: ../src/guestfs-actions.pod:6326
16547 #, no-wrap
16548 msgid ""
16549 " struct guestfs_statvfs *\n"
16550 " guestfs_statvfs (guestfs_h *g,\n"
16551 "                  const char *path);\n"
16552 "\n"
16553 msgstr ""
16554
16555 #. type: textblock
16556 #: ../src/guestfs-actions.pod:6330 ../fish/guestfish-actions.pod:4273
16557 msgid ""
16558 "Returns file system statistics for any mounted file system.  C<path> should "
16559 "be a file or directory in the mounted file system (typically it is the mount "
16560 "point itself, but it doesn't need to be)."
16561 msgstr ""
16562
16563 #. type: textblock
16564 #: ../src/guestfs-actions.pod:6334 ../fish/guestfish-actions.pod:4277
16565 msgid "This is the same as the C<statvfs(2)> system call."
16566 msgstr ""
16567
16568 #. type: textblock
16569 #: ../src/guestfs-actions.pod:6336
16570 msgid ""
16571 "This function returns a C<struct guestfs_statvfs *>, or NULL if there was an "
16572 "error.  I<The caller must call C<guestfs_free_statvfs> after use>."
16573 msgstr ""
16574
16575 #. type: =head2
16576 #: ../src/guestfs-actions.pod:6342
16577 msgid "guestfs_strings"
16578 msgstr ""
16579
16580 #. type: verbatim
16581 #: ../src/guestfs-actions.pod:6344
16582 #, no-wrap
16583 msgid ""
16584 " char **\n"
16585 " guestfs_strings (guestfs_h *g,\n"
16586 "                  const char *path);\n"
16587 "\n"
16588 msgstr ""
16589
16590 #. type: textblock
16591 #: ../src/guestfs-actions.pod:6348 ../fish/guestfish-actions.pod:4283
16592 msgid ""
16593 "This runs the L<strings(1)> command on a file and returns the list of "
16594 "printable strings found."
16595 msgstr ""
16596
16597 #. type: =head2
16598 #: ../src/guestfs-actions.pod:6360
16599 msgid "guestfs_strings_e"
16600 msgstr ""
16601
16602 #. type: verbatim
16603 #: ../src/guestfs-actions.pod:6362
16604 #, no-wrap
16605 msgid ""
16606 " char **\n"
16607 " guestfs_strings_e (guestfs_h *g,\n"
16608 "                    const char *encoding,\n"
16609 "                    const char *path);\n"
16610 "\n"
16611 msgstr ""
16612
16613 #. type: textblock
16614 #: ../src/guestfs-actions.pod:6367
16615 msgid ""
16616 "This is like the C<guestfs_strings> command, but allows you to specify the "
16617 "encoding of strings that are looked for in the source file C<path>."
16618 msgstr ""
16619
16620 #. type: textblock
16621 #: ../src/guestfs-actions.pod:6371 ../fish/guestfish-actions.pod:4297
16622 msgid "Allowed encodings are:"
16623 msgstr ""
16624
16625 #. type: =item
16626 #: ../src/guestfs-actions.pod:6375 ../fish/guestfish-actions.pod:4301
16627 msgid "s"
16628 msgstr ""
16629
16630 #. type: textblock
16631 #: ../src/guestfs-actions.pod:6377
16632 msgid ""
16633 "Single 7-bit-byte characters like ASCII and the ASCII-compatible parts of "
16634 "ISO-8859-X (this is what C<guestfs_strings> uses)."
16635 msgstr ""
16636
16637 #. type: =item
16638 #: ../src/guestfs-actions.pod:6380 ../fish/guestfish-actions.pod:4306
16639 msgid "S"
16640 msgstr ""
16641
16642 #. type: textblock
16643 #: ../src/guestfs-actions.pod:6382 ../fish/guestfish-actions.pod:4308
16644 msgid "Single 8-bit-byte characters."
16645 msgstr ""
16646
16647 #. type: =item
16648 #: ../src/guestfs-actions.pod:6384 ../fish/guestfish-actions.pod:4310
16649 msgid "b"
16650 msgstr ""
16651
16652 #. type: textblock
16653 #: ../src/guestfs-actions.pod:6386 ../fish/guestfish-actions.pod:4312
16654 msgid "16-bit big endian strings such as those encoded in UTF-16BE or UCS-2BE."
16655 msgstr ""
16656
16657 #. type: =item
16658 #: ../src/guestfs-actions.pod:6389 ../fish/guestfish-actions.pod:4315
16659 msgid "l (lower case letter L)"
16660 msgstr ""
16661
16662 #. type: textblock
16663 #: ../src/guestfs-actions.pod:6391 ../fish/guestfish-actions.pod:4317
16664 msgid ""
16665 "16-bit little endian such as UTF-16LE and UCS-2LE.  This is useful for "
16666 "examining binaries in Windows guests."
16667 msgstr ""
16668
16669 #. type: =item
16670 #: ../src/guestfs-actions.pod:6394 ../fish/guestfish-actions.pod:4320
16671 msgid "B"
16672 msgstr ""
16673
16674 #. type: textblock
16675 #: ../src/guestfs-actions.pod:6396 ../fish/guestfish-actions.pod:4322
16676 msgid "32-bit big endian such as UCS-4BE."
16677 msgstr ""
16678
16679 #. type: =item
16680 #: ../src/guestfs-actions.pod:6398 ../fish/guestfish-actions.pod:4324
16681 msgid "L"
16682 msgstr ""
16683
16684 #. type: textblock
16685 #: ../src/guestfs-actions.pod:6400 ../fish/guestfish-actions.pod:4326
16686 msgid "32-bit little endian such as UCS-4LE."
16687 msgstr ""
16688
16689 #. type: textblock
16690 #: ../src/guestfs-actions.pod:6404 ../fish/guestfish-actions.pod:4330
16691 msgid "The returned strings are transcoded to UTF-8."
16692 msgstr ""
16693
16694 #. type: =head2
16695 #: ../src/guestfs-actions.pod:6415
16696 msgid "guestfs_swapoff_device"
16697 msgstr ""
16698
16699 #. type: verbatim
16700 #: ../src/guestfs-actions.pod:6417
16701 #, no-wrap
16702 msgid ""
16703 " int\n"
16704 " guestfs_swapoff_device (guestfs_h *g,\n"
16705 "                         const char *device);\n"
16706 "\n"
16707 msgstr ""
16708
16709 #. type: textblock
16710 #: ../src/guestfs-actions.pod:6421
16711 msgid ""
16712 "This command disables the libguestfs appliance swap device or partition "
16713 "named C<device>.  See C<guestfs_swapon_device>."
16714 msgstr ""
16715
16716 #. type: =head2
16717 #: ../src/guestfs-actions.pod:6429
16718 msgid "guestfs_swapoff_file"
16719 msgstr ""
16720
16721 #. type: verbatim
16722 #: ../src/guestfs-actions.pod:6431
16723 #, no-wrap
16724 msgid ""
16725 " int\n"
16726 " guestfs_swapoff_file (guestfs_h *g,\n"
16727 "                       const char *file);\n"
16728 "\n"
16729 msgstr ""
16730
16731 #. type: textblock
16732 #: ../src/guestfs-actions.pod:6435 ../fish/guestfish-actions.pod:4347
16733 msgid "This command disables the libguestfs appliance swap on file."
16734 msgstr ""
16735
16736 #. type: =head2
16737 #: ../src/guestfs-actions.pod:6441
16738 msgid "guestfs_swapoff_label"
16739 msgstr ""
16740
16741 #. type: verbatim
16742 #: ../src/guestfs-actions.pod:6443
16743 #, no-wrap
16744 msgid ""
16745 " int\n"
16746 " guestfs_swapoff_label (guestfs_h *g,\n"
16747 "                        const char *label);\n"
16748 "\n"
16749 msgstr ""
16750
16751 #. type: textblock
16752 #: ../src/guestfs-actions.pod:6447 ../fish/guestfish-actions.pod:4353
16753 msgid ""
16754 "This command disables the libguestfs appliance swap on labeled swap "
16755 "partition."
16756 msgstr ""
16757
16758 #. type: =head2
16759 #: ../src/guestfs-actions.pod:6454
16760 msgid "guestfs_swapoff_uuid"
16761 msgstr ""
16762
16763 #. type: verbatim
16764 #: ../src/guestfs-actions.pod:6456
16765 #, no-wrap
16766 msgid ""
16767 " int\n"
16768 " guestfs_swapoff_uuid (guestfs_h *g,\n"
16769 "                       const char *uuid);\n"
16770 "\n"
16771 msgstr ""
16772
16773 #. type: textblock
16774 #: ../src/guestfs-actions.pod:6460 ../fish/guestfish-actions.pod:4360
16775 msgid ""
16776 "This command disables the libguestfs appliance swap partition with the given "
16777 "UUID."
16778 msgstr ""
16779
16780 #. type: =head2
16781 #: ../src/guestfs-actions.pod:6467
16782 msgid "guestfs_swapon_device"
16783 msgstr ""
16784
16785 #. type: verbatim
16786 #: ../src/guestfs-actions.pod:6469
16787 #, no-wrap
16788 msgid ""
16789 " int\n"
16790 " guestfs_swapon_device (guestfs_h *g,\n"
16791 "                        const char *device);\n"
16792 "\n"
16793 msgstr ""
16794
16795 #. type: textblock
16796 #: ../src/guestfs-actions.pod:6473
16797 msgid ""
16798 "This command enables the libguestfs appliance to use the swap device or "
16799 "partition named C<device>.  The increased memory is made available for all "
16800 "commands, for example those run using C<guestfs_command> or C<guestfs_sh>."
16801 msgstr ""
16802
16803 #. type: textblock
16804 #: ../src/guestfs-actions.pod:6478 ../fish/guestfish-actions.pod:4372
16805 msgid ""
16806 "Note that you should not swap to existing guest swap partitions unless you "
16807 "know what you are doing.  They may contain hibernation information, or other "
16808 "information that the guest doesn't want you to trash.  You also risk leaking "
16809 "information about the host to the guest this way.  Instead, attach a new "
16810 "host device to the guest and swap on that."
16811 msgstr ""
16812
16813 #. type: =head2
16814 #: ../src/guestfs-actions.pod:6489
16815 msgid "guestfs_swapon_file"
16816 msgstr ""
16817
16818 #. type: verbatim
16819 #: ../src/guestfs-actions.pod:6491
16820 #, no-wrap
16821 msgid ""
16822 " int\n"
16823 " guestfs_swapon_file (guestfs_h *g,\n"
16824 "                      const char *file);\n"
16825 "\n"
16826 msgstr ""
16827
16828 #. type: textblock
16829 #: ../src/guestfs-actions.pod:6495
16830 msgid ""
16831 "This command enables swap to a file.  See C<guestfs_swapon_device> for other "
16832 "notes."
16833 msgstr ""
16834
16835 #. type: =head2
16836 #: ../src/guestfs-actions.pod:6502
16837 msgid "guestfs_swapon_label"
16838 msgstr ""
16839
16840 #. type: verbatim
16841 #: ../src/guestfs-actions.pod:6504
16842 #, no-wrap
16843 msgid ""
16844 " int\n"
16845 " guestfs_swapon_label (guestfs_h *g,\n"
16846 "                       const char *label);\n"
16847 "\n"
16848 msgstr ""
16849
16850 #. type: textblock
16851 #: ../src/guestfs-actions.pod:6508
16852 msgid ""
16853 "This command enables swap to a labeled swap partition.  See "
16854 "C<guestfs_swapon_device> for other notes."
16855 msgstr ""
16856
16857 #. type: =head2
16858 #: ../src/guestfs-actions.pod:6515
16859 msgid "guestfs_swapon_uuid"
16860 msgstr ""
16861
16862 #. type: verbatim
16863 #: ../src/guestfs-actions.pod:6517
16864 #, no-wrap
16865 msgid ""
16866 " int\n"
16867 " guestfs_swapon_uuid (guestfs_h *g,\n"
16868 "                      const char *uuid);\n"
16869 "\n"
16870 msgstr ""
16871
16872 #. type: textblock
16873 #: ../src/guestfs-actions.pod:6521
16874 msgid ""
16875 "This command enables swap to a swap partition with the given UUID.  See "
16876 "C<guestfs_swapon_device> for other notes."
16877 msgstr ""
16878
16879 #. type: =head2
16880 #: ../src/guestfs-actions.pod:6528
16881 msgid "guestfs_sync"
16882 msgstr ""
16883
16884 #. type: verbatim
16885 #: ../src/guestfs-actions.pod:6530
16886 #, no-wrap
16887 msgid ""
16888 " int\n"
16889 " guestfs_sync (guestfs_h *g);\n"
16890 "\n"
16891 msgstr ""
16892
16893 #. type: textblock
16894 #: ../src/guestfs-actions.pod:6533 ../fish/guestfish-actions.pod:4404
16895 msgid ""
16896 "This syncs the disk, so that any writes are flushed through to the "
16897 "underlying disk image."
16898 msgstr ""
16899
16900 #. type: textblock
16901 #: ../src/guestfs-actions.pod:6536 ../fish/guestfish-actions.pod:4407
16902 msgid ""
16903 "You should always call this if you have modified a disk image, before "
16904 "closing the handle."
16905 msgstr ""
16906
16907 #. type: =head2
16908 #: ../src/guestfs-actions.pod:6543
16909 msgid "guestfs_tail"
16910 msgstr ""
16911
16912 #. type: verbatim
16913 #: ../src/guestfs-actions.pod:6545
16914 #, no-wrap
16915 msgid ""
16916 " char **\n"
16917 " guestfs_tail (guestfs_h *g,\n"
16918 "               const char *path);\n"
16919 "\n"
16920 msgstr ""
16921
16922 #. type: textblock
16923 #: ../src/guestfs-actions.pod:6549 ../fish/guestfish-actions.pod:4414
16924 msgid ""
16925 "This command returns up to the last 10 lines of a file as a list of strings."
16926 msgstr ""
16927
16928 #. type: =head2
16929 #: ../src/guestfs-actions.pod:6561
16930 msgid "guestfs_tail_n"
16931 msgstr ""
16932
16933 #. type: verbatim
16934 #: ../src/guestfs-actions.pod:6563
16935 #, no-wrap
16936 msgid ""
16937 " char **\n"
16938 " guestfs_tail_n (guestfs_h *g,\n"
16939 "                 int nrlines,\n"
16940 "                 const char *path);\n"
16941 "\n"
16942 msgstr ""
16943
16944 #. type: textblock
16945 #: ../src/guestfs-actions.pod:6568 ../fish/guestfish-actions.pod:4424
16946 msgid ""
16947 "If the parameter C<nrlines> is a positive number, this returns the last "
16948 "C<nrlines> lines of the file C<path>."
16949 msgstr ""
16950
16951 #. type: textblock
16952 #: ../src/guestfs-actions.pod:6571 ../fish/guestfish-actions.pod:4427
16953 msgid ""
16954 "If the parameter C<nrlines> is a negative number, this returns lines from "
16955 "the file C<path>, starting with the C<-nrlines>th line."
16956 msgstr ""
16957
16958 #. type: =head2
16959 #: ../src/guestfs-actions.pod:6585
16960 msgid "guestfs_tar_in"
16961 msgstr ""
16962
16963 #. type: verbatim
16964 #: ../src/guestfs-actions.pod:6587
16965 #, no-wrap
16966 msgid ""
16967 " int\n"
16968 " guestfs_tar_in (guestfs_h *g,\n"
16969 "                 const char *tarfile,\n"
16970 "                 const char *directory);\n"
16971 "\n"
16972 msgstr ""
16973
16974 #. type: textblock
16975 #: ../src/guestfs-actions.pod:6592 ../fish/guestfish-actions.pod:4439
16976 msgid ""
16977 "This command uploads and unpacks local file C<tarfile> (an I<uncompressed> "
16978 "tar file) into C<directory>."
16979 msgstr ""
16980
16981 #. type: textblock
16982 #: ../src/guestfs-actions.pod:6595
16983 msgid ""
16984 "To upload a compressed tarball, use C<guestfs_tgz_in> or C<guestfs_txz_in>."
16985 msgstr ""
16986
16987 #. type: textblock
16988 #: ../src/guestfs-actions.pod:6600 ../src/guestfs-actions.pod:6617
16989 #: ../src/guestfs-actions.pod:6633 ../src/guestfs-actions.pod:6649
16990 msgid "(Added in 1.0.3)"
16991 msgstr ""
16992
16993 #. type: =head2
16994 #: ../src/guestfs-actions.pod:6602
16995 msgid "guestfs_tar_out"
16996 msgstr ""
16997
16998 #. type: verbatim
16999 #: ../src/guestfs-actions.pod:6604
17000 #, no-wrap
17001 msgid ""
17002 " int\n"
17003 " guestfs_tar_out (guestfs_h *g,\n"
17004 "                  const char *directory,\n"
17005 "                  const char *tarfile);\n"
17006 "\n"
17007 msgstr ""
17008
17009 #. type: textblock
17010 #: ../src/guestfs-actions.pod:6609 ../fish/guestfish-actions.pod:4451
17011 msgid ""
17012 "This command packs the contents of C<directory> and downloads it to local "
17013 "file C<tarfile>."
17014 msgstr ""
17015
17016 #. type: textblock
17017 #: ../src/guestfs-actions.pod:6612
17018 msgid ""
17019 "To download a compressed tarball, use C<guestfs_tgz_out> or "
17020 "C<guestfs_txz_out>."
17021 msgstr ""
17022
17023 #. type: =head2
17024 #: ../src/guestfs-actions.pod:6619
17025 msgid "guestfs_tgz_in"
17026 msgstr ""
17027
17028 #. type: verbatim
17029 #: ../src/guestfs-actions.pod:6621
17030 #, no-wrap
17031 msgid ""
17032 " int\n"
17033 " guestfs_tgz_in (guestfs_h *g,\n"
17034 "                 const char *tarball,\n"
17035 "                 const char *directory);\n"
17036 "\n"
17037 msgstr ""
17038
17039 #. type: textblock
17040 #: ../src/guestfs-actions.pod:6626 ../fish/guestfish-actions.pod:4463
17041 msgid ""
17042 "This command uploads and unpacks local file C<tarball> (a I<gzip compressed> "
17043 "tar file) into C<directory>."
17044 msgstr ""
17045
17046 #. type: textblock
17047 #: ../src/guestfs-actions.pod:6629
17048 msgid "To upload an uncompressed tarball, use C<guestfs_tar_in>."
17049 msgstr ""
17050
17051 #. type: =head2
17052 #: ../src/guestfs-actions.pod:6635
17053 msgid "guestfs_tgz_out"
17054 msgstr ""
17055
17056 #. type: verbatim
17057 #: ../src/guestfs-actions.pod:6637
17058 #, no-wrap
17059 msgid ""
17060 " int\n"
17061 " guestfs_tgz_out (guestfs_h *g,\n"
17062 "                  const char *directory,\n"
17063 "                  const char *tarball);\n"
17064 "\n"
17065 msgstr ""
17066
17067 #. type: textblock
17068 #: ../src/guestfs-actions.pod:6642 ../fish/guestfish-actions.pod:4474
17069 msgid ""
17070 "This command packs the contents of C<directory> and downloads it to local "
17071 "file C<tarball>."
17072 msgstr ""
17073
17074 #. type: textblock
17075 #: ../src/guestfs-actions.pod:6645
17076 msgid "To download an uncompressed tarball, use C<guestfs_tar_out>."
17077 msgstr ""
17078
17079 #. type: =head2
17080 #: ../src/guestfs-actions.pod:6651
17081 msgid "guestfs_touch"
17082 msgstr ""
17083
17084 #. type: verbatim
17085 #: ../src/guestfs-actions.pod:6653
17086 #, no-wrap
17087 msgid ""
17088 " int\n"
17089 " guestfs_touch (guestfs_h *g,\n"
17090 "                const char *path);\n"
17091 "\n"
17092 msgstr ""
17093
17094 #. type: textblock
17095 #: ../src/guestfs-actions.pod:6657 ../fish/guestfish-actions.pod:4485
17096 msgid ""
17097 "Touch acts like the L<touch(1)> command.  It can be used to update the "
17098 "timestamps on a file, or, if the file does not exist, to create a new zero-"
17099 "length file."
17100 msgstr ""
17101
17102 #. type: textblock
17103 #: ../src/guestfs-actions.pod:6661 ../fish/guestfish-actions.pod:4489
17104 msgid ""
17105 "This command only works on regular files, and will fail on other file types "
17106 "such as directories, symbolic links, block special etc."
17107 msgstr ""
17108
17109 #. type: =head2
17110 #: ../src/guestfs-actions.pod:6668
17111 msgid "guestfs_truncate"
17112 msgstr ""
17113
17114 #. type: verbatim
17115 #: ../src/guestfs-actions.pod:6670
17116 #, no-wrap
17117 msgid ""
17118 " int\n"
17119 " guestfs_truncate (guestfs_h *g,\n"
17120 "                   const char *path);\n"
17121 "\n"
17122 msgstr ""
17123
17124 #. type: textblock
17125 #: ../src/guestfs-actions.pod:6674 ../fish/guestfish-actions.pod:4496
17126 msgid ""
17127 "This command truncates C<path> to a zero-length file.  The file must exist "
17128 "already."
17129 msgstr ""
17130
17131 #. type: =head2
17132 #: ../src/guestfs-actions.pod:6681
17133 msgid "guestfs_truncate_size"
17134 msgstr ""
17135
17136 #. type: verbatim
17137 #: ../src/guestfs-actions.pod:6683
17138 #, no-wrap
17139 msgid ""
17140 " int\n"
17141 " guestfs_truncate_size (guestfs_h *g,\n"
17142 "                        const char *path,\n"
17143 "                        int64_t size);\n"
17144 "\n"
17145 msgstr ""
17146
17147 #. type: textblock
17148 #: ../src/guestfs-actions.pod:6688 ../fish/guestfish-actions.pod:4503
17149 msgid ""
17150 "This command truncates C<path> to size C<size> bytes.  The file must exist "
17151 "already."
17152 msgstr ""
17153
17154 #. type: textblock
17155 #: ../src/guestfs-actions.pod:6691
17156 msgid ""
17157 "If the current file size is less than C<size> then the file is extended to "
17158 "the required size with zero bytes.  This creates a sparse file (ie. disk "
17159 "blocks are not allocated for the file until you write to it).  To create a "
17160 "non-sparse file of zeroes, use C<guestfs_fallocate64> instead."
17161 msgstr ""
17162
17163 #. type: =head2
17164 #: ../src/guestfs-actions.pod:6701
17165 msgid "guestfs_tune2fs_l"
17166 msgstr ""
17167
17168 #. type: verbatim
17169 #: ../src/guestfs-actions.pod:6703
17170 #, no-wrap
17171 msgid ""
17172 " char **\n"
17173 " guestfs_tune2fs_l (guestfs_h *g,\n"
17174 "                    const char *device);\n"
17175 "\n"
17176 msgstr ""
17177
17178 #. type: textblock
17179 #: ../src/guestfs-actions.pod:6707 ../fish/guestfish-actions.pod:4516
17180 msgid ""
17181 "This returns the contents of the ext2, ext3 or ext4 filesystem superblock on "
17182 "C<device>."
17183 msgstr ""
17184
17185 #. type: textblock
17186 #: ../src/guestfs-actions.pod:6710 ../fish/guestfish-actions.pod:4519
17187 msgid ""
17188 "It is the same as running C<tune2fs -l device>.  See L<tune2fs(8)> manpage "
17189 "for more details.  The list of fields returned isn't clearly defined, and "
17190 "depends on both the version of C<tune2fs> that libguestfs was built against, "
17191 "and the filesystem itself."
17192 msgstr ""
17193
17194 #. type: =head2
17195 #: ../src/guestfs-actions.pod:6723
17196 msgid "guestfs_txz_in"
17197 msgstr ""
17198
17199 #. type: verbatim
17200 #: ../src/guestfs-actions.pod:6725
17201 #, no-wrap
17202 msgid ""
17203 " int\n"
17204 " guestfs_txz_in (guestfs_h *g,\n"
17205 "                 const char *tarball,\n"
17206 "                 const char *directory);\n"
17207 "\n"
17208 msgstr ""
17209
17210 #. type: textblock
17211 #: ../src/guestfs-actions.pod:6730 ../fish/guestfish-actions.pod:4528
17212 msgid ""
17213 "This command uploads and unpacks local file C<tarball> (an I<xz compressed> "
17214 "tar file) into C<directory>."
17215 msgstr ""
17216
17217 #. type: =head2
17218 #: ../src/guestfs-actions.pod:6737
17219 msgid "guestfs_txz_out"
17220 msgstr ""
17221
17222 #. type: verbatim
17223 #: ../src/guestfs-actions.pod:6739
17224 #, no-wrap
17225 msgid ""
17226 " int\n"
17227 " guestfs_txz_out (guestfs_h *g,\n"
17228 "                  const char *directory,\n"
17229 "                  const char *tarball);\n"
17230 "\n"
17231 msgstr ""
17232
17233 #. type: textblock
17234 #: ../src/guestfs-actions.pod:6744 ../fish/guestfish-actions.pod:4537
17235 msgid ""
17236 "This command packs the contents of C<directory> and downloads it to local "
17237 "file C<tarball> (as an xz compressed tar archive)."
17238 msgstr ""
17239
17240 #. type: =head2
17241 #: ../src/guestfs-actions.pod:6751
17242 msgid "guestfs_umask"
17243 msgstr ""
17244
17245 #. type: verbatim
17246 #: ../src/guestfs-actions.pod:6753
17247 #, no-wrap
17248 msgid ""
17249 " int\n"
17250 " guestfs_umask (guestfs_h *g,\n"
17251 "                int mask);\n"
17252 "\n"
17253 msgstr ""
17254
17255 #. type: textblock
17256 #: ../src/guestfs-actions.pod:6757 ../fish/guestfish-actions.pod:4546
17257 msgid ""
17258 "This function sets the mask used for creating new files and device nodes to "
17259 "C<mask & 0777>."
17260 msgstr ""
17261
17262 #. type: textblock
17263 #: ../src/guestfs-actions.pod:6760 ../fish/guestfish-actions.pod:4549
17264 msgid ""
17265 "Typical umask values would be C<022> which creates new files with "
17266 "permissions like \"-rw-r--r--\" or \"-rwxr-xr-x\", and C<002> which creates "
17267 "new files with permissions like \"-rw-rw-r--\" or \"-rwxrwxr-x\"."
17268 msgstr ""
17269
17270 #. type: textblock
17271 #: ../src/guestfs-actions.pod:6765 ../fish/guestfish-actions.pod:4554
17272 msgid ""
17273 "The default umask is C<022>.  This is important because it means that "
17274 "directories and device nodes will be created with C<0644> or C<0755> mode "
17275 "even if you specify C<0777>."
17276 msgstr ""
17277
17278 #. type: textblock
17279 #: ../src/guestfs-actions.pod:6769
17280 msgid ""
17281 "See also C<guestfs_get_umask>, L<umask(2)>, C<guestfs_mknod>, "
17282 "C<guestfs_mkdir>."
17283 msgstr ""
17284
17285 #. type: textblock
17286 #: ../src/guestfs-actions.pod:6772 ../fish/guestfish-actions.pod:4561
17287 msgid "This call returns the previous umask."
17288 msgstr ""
17289
17290 #. type: =head2
17291 #: ../src/guestfs-actions.pod:6778
17292 msgid "guestfs_umount"
17293 msgstr ""
17294
17295 #. type: verbatim
17296 #: ../src/guestfs-actions.pod:6780
17297 #, no-wrap
17298 msgid ""
17299 " int\n"
17300 " guestfs_umount (guestfs_h *g,\n"
17301 "                 const char *pathordevice);\n"
17302 "\n"
17303 msgstr ""
17304
17305 #. type: textblock
17306 #: ../src/guestfs-actions.pod:6784 ../fish/guestfish-actions.pod:4569
17307 msgid ""
17308 "This unmounts the given filesystem.  The filesystem may be specified either "
17309 "by its mountpoint (path) or the device which contains the filesystem."
17310 msgstr ""
17311
17312 #. type: =head2
17313 #: ../src/guestfs-actions.pod:6792
17314 msgid "guestfs_umount_all"
17315 msgstr ""
17316
17317 #. type: verbatim
17318 #: ../src/guestfs-actions.pod:6794
17319 #, no-wrap
17320 msgid ""
17321 " int\n"
17322 " guestfs_umount_all (guestfs_h *g);\n"
17323 "\n"
17324 msgstr ""
17325
17326 #. type: textblock
17327 #: ../src/guestfs-actions.pod:6797 ../fish/guestfish-actions.pod:4579
17328 msgid "This unmounts all mounted filesystems."
17329 msgstr ""
17330
17331 #. type: textblock
17332 #: ../src/guestfs-actions.pod:6799 ../fish/guestfish-actions.pod:4581
17333 msgid "Some internal mounts are not unmounted by this call."
17334 msgstr ""
17335
17336 #. type: =head2
17337 #: ../src/guestfs-actions.pod:6805
17338 msgid "guestfs_upload"
17339 msgstr ""
17340
17341 #. type: verbatim
17342 #: ../src/guestfs-actions.pod:6807
17343 #, no-wrap
17344 msgid ""
17345 " int\n"
17346 " guestfs_upload (guestfs_h *g,\n"
17347 "                 const char *filename,\n"
17348 "                 const char *remotefilename);\n"
17349 "\n"
17350 msgstr ""
17351
17352 #. type: textblock
17353 #: ../src/guestfs-actions.pod:6812 ../src/guestfs-actions.pod:6836
17354 #: ../fish/guestfish-actions.pod:4587 ../fish/guestfish-actions.pod:4600
17355 msgid "Upload local file C<filename> to C<remotefilename> on the filesystem."
17356 msgstr ""
17357
17358 #. type: textblock
17359 #: ../src/guestfs-actions.pod:6817
17360 msgid "See also C<guestfs_download>."
17361 msgstr ""
17362
17363 #. type: =head2
17364 #: ../src/guestfs-actions.pod:6828
17365 msgid "guestfs_upload_offset"
17366 msgstr ""
17367
17368 #. type: verbatim
17369 #: ../src/guestfs-actions.pod:6830
17370 #, no-wrap
17371 msgid ""
17372 " int\n"
17373 " guestfs_upload_offset (guestfs_h *g,\n"
17374 "                        const char *filename,\n"
17375 "                        const char *remotefilename,\n"
17376 "                        int64_t offset);\n"
17377 "\n"
17378 msgstr ""
17379
17380 #. type: textblock
17381 #: ../src/guestfs-actions.pod:6839 ../fish/guestfish-actions.pod:4603
17382 msgid ""
17383 "C<remotefilename> is overwritten starting at the byte C<offset> specified.  "
17384 "The intention is to overwrite parts of existing files or devices, although "
17385 "if a non-existant file is specified then it is created with a \"hole\" "
17386 "before C<offset>.  The size of the data written is implicit in the size of "
17387 "the source C<filename>."
17388 msgstr ""
17389
17390 #. type: textblock
17391 #: ../src/guestfs-actions.pod:6846
17392 msgid ""
17393 "Note that there is no limit on the amount of data that can be uploaded with "
17394 "this call, unlike with C<guestfs_pwrite>, and this call always writes the "
17395 "full amount unless an error occurs."
17396 msgstr ""
17397
17398 #. type: textblock
17399 #: ../src/guestfs-actions.pod:6851
17400 msgid "See also C<guestfs_upload>, C<guestfs_pwrite>."
17401 msgstr ""
17402
17403 #. type: =head2
17404 #: ../src/guestfs-actions.pod:6862
17405 msgid "guestfs_utimens"
17406 msgstr ""
17407
17408 #. type: verbatim
17409 #: ../src/guestfs-actions.pod:6864
17410 #, no-wrap
17411 msgid ""
17412 " int\n"
17413 " guestfs_utimens (guestfs_h *g,\n"
17414 "                  const char *path,\n"
17415 "                  int64_t atsecs,\n"
17416 "                  int64_t atnsecs,\n"
17417 "                  int64_t mtsecs,\n"
17418 "                  int64_t mtnsecs);\n"
17419 "\n"
17420 msgstr ""
17421
17422 #. type: textblock
17423 #: ../src/guestfs-actions.pod:6872 ../fish/guestfish-actions.pod:4623
17424 msgid "This command sets the timestamps of a file with nanosecond precision."
17425 msgstr ""
17426
17427 #. type: textblock
17428 #: ../src/guestfs-actions.pod:6875 ../fish/guestfish-actions.pod:4626
17429 msgid ""
17430 "C<atsecs, atnsecs> are the last access time (atime) in secs and nanoseconds "
17431 "from the epoch."
17432 msgstr ""
17433
17434 #. type: textblock
17435 #: ../src/guestfs-actions.pod:6878 ../fish/guestfish-actions.pod:4629
17436 msgid ""
17437 "C<mtsecs, mtnsecs> are the last modification time (mtime) in secs and "
17438 "nanoseconds from the epoch."
17439 msgstr ""
17440
17441 #. type: textblock
17442 #: ../src/guestfs-actions.pod:6881 ../fish/guestfish-actions.pod:4632
17443 msgid ""
17444 "If the C<*nsecs> field contains the special value C<-1> then the "
17445 "corresponding timestamp is set to the current time.  (The C<*secs> field is "
17446 "ignored in this case)."
17447 msgstr ""
17448
17449 #. type: textblock
17450 #: ../src/guestfs-actions.pod:6885 ../fish/guestfish-actions.pod:4636
17451 msgid ""
17452 "If the C<*nsecs> field contains the special value C<-2> then the "
17453 "corresponding timestamp is left unchanged.  (The C<*secs> field is ignored "
17454 "in this case)."
17455 msgstr ""
17456
17457 #. type: =head2
17458 #: ../src/guestfs-actions.pod:6893 ../src/guestfs-structs.pod:175
17459 msgid "guestfs_version"
17460 msgstr ""
17461
17462 #. type: verbatim
17463 #: ../src/guestfs-actions.pod:6895
17464 #, no-wrap
17465 msgid ""
17466 " struct guestfs_version *\n"
17467 " guestfs_version (guestfs_h *g);\n"
17468 "\n"
17469 msgstr ""
17470
17471 #. type: textblock
17472 #: ../src/guestfs-actions.pod:6898 ../fish/guestfish-actions.pod:4644
17473 msgid ""
17474 "Return the libguestfs version number that the program is linked against."
17475 msgstr ""
17476
17477 #. type: textblock
17478 #: ../src/guestfs-actions.pod:6901 ../fish/guestfish-actions.pod:4647
17479 msgid ""
17480 "Note that because of dynamic linking this is not necessarily the version of "
17481 "libguestfs that you compiled against.  You can compile the program, and then "
17482 "at runtime dynamically link against a completely different C<libguestfs.so> "
17483 "library."
17484 msgstr ""
17485
17486 #. type: textblock
17487 #: ../src/guestfs-actions.pod:6906 ../fish/guestfish-actions.pod:4652
17488 msgid ""
17489 "This call was added in version C<1.0.58>.  In previous versions of "
17490 "libguestfs there was no way to get the version number.  From C code you can "
17491 "use dynamic linker functions to find out if this symbol exists (if it "
17492 "doesn't, then it's an earlier version)."
17493 msgstr ""
17494
17495 #. type: textblock
17496 #: ../src/guestfs-actions.pod:6912 ../fish/guestfish-actions.pod:4658
17497 msgid ""
17498 "The call returns a structure with four elements.  The first three (C<major>, "
17499 "C<minor> and C<release>) are numbers and correspond to the usual version "
17500 "triplet.  The fourth element (C<extra>) is a string and is normally empty, "
17501 "but may be used for distro-specific information."
17502 msgstr ""
17503
17504 #. type: textblock
17505 #: ../src/guestfs-actions.pod:6918 ../fish/guestfish-actions.pod:4664
17506 msgid ""
17507 "To construct the original version string: C<$major.$minor.$release$extra>"
17508 msgstr ""
17509
17510 #. type: textblock
17511 #: ../src/guestfs-actions.pod:6921 ../fish/guestfish-actions.pod:4667
17512 msgid "See also: L<guestfs(3)/LIBGUESTFS VERSION NUMBERS>."
17513 msgstr ""
17514
17515 #. type: textblock
17516 #: ../src/guestfs-actions.pod:6923
17517 msgid ""
17518 "I<Note:> Don't use this call to test for availability of features.  In "
17519 "enterprise distributions we backport features from later versions into "
17520 "earlier versions, making this an unreliable way to test for features.  Use "
17521 "C<guestfs_available> instead."
17522 msgstr ""
17523
17524 #. type: textblock
17525 #: ../src/guestfs-actions.pod:6929
17526 msgid ""
17527 "This function returns a C<struct guestfs_version *>, or NULL if there was an "
17528 "error.  I<The caller must call C<guestfs_free_version> after use>."
17529 msgstr ""
17530
17531 #. type: textblock
17532 #: ../src/guestfs-actions.pod:6933
17533 msgid "(Added in 1.0.58)"
17534 msgstr ""
17535
17536 #. type: =head2
17537 #: ../src/guestfs-actions.pod:6935
17538 msgid "guestfs_vfs_label"
17539 msgstr ""
17540
17541 #. type: verbatim
17542 #: ../src/guestfs-actions.pod:6937
17543 #, no-wrap
17544 msgid ""
17545 " char *\n"
17546 " guestfs_vfs_label (guestfs_h *g,\n"
17547 "                    const char *device);\n"
17548 "\n"
17549 msgstr ""
17550
17551 #. type: textblock
17552 #: ../src/guestfs-actions.pod:6941 ../fish/guestfish-actions.pod:4679
17553 msgid "This returns the filesystem label of the filesystem on C<device>."
17554 msgstr ""
17555
17556 #. type: textblock
17557 #: ../src/guestfs-actions.pod:6944 ../fish/guestfish-actions.pod:4682
17558 msgid "If the filesystem is unlabeled, this returns the empty string."
17559 msgstr ""
17560
17561 #. type: textblock
17562 #: ../src/guestfs-actions.pod:6946
17563 msgid "To find a filesystem from the label, use C<guestfs_findfs_label>."
17564 msgstr ""
17565
17566 #. type: textblock
17567 #: ../src/guestfs-actions.pod:6951 ../src/guestfs-actions.pod:6988
17568 msgid "(Added in 1.3.18)"
17569 msgstr ""
17570
17571 #. type: =head2
17572 #: ../src/guestfs-actions.pod:6953
17573 msgid "guestfs_vfs_type"
17574 msgstr ""
17575
17576 #. type: verbatim
17577 #: ../src/guestfs-actions.pod:6955
17578 #, no-wrap
17579 msgid ""
17580 " char *\n"
17581 " guestfs_vfs_type (guestfs_h *g,\n"
17582 "                   const char *device);\n"
17583 "\n"
17584 msgstr ""
17585
17586 #. type: textblock
17587 #: ../src/guestfs-actions.pod:6959 ../fish/guestfish-actions.pod:4690
17588 msgid ""
17589 "This command gets the filesystem type corresponding to the filesystem on "
17590 "C<device>."
17591 msgstr ""
17592
17593 #. type: textblock
17594 #: ../src/guestfs-actions.pod:6962 ../fish/guestfish-actions.pod:4693
17595 msgid ""
17596 "For most filesystems, the result is the name of the Linux VFS module which "
17597 "would be used to mount this filesystem if you mounted it without specifying "
17598 "the filesystem type.  For example a string such as C<ext3> or C<ntfs>."
17599 msgstr ""
17600
17601 #. type: =head2
17602 #: ../src/guestfs-actions.pod:6972
17603 msgid "guestfs_vfs_uuid"
17604 msgstr ""
17605
17606 #. type: verbatim
17607 #: ../src/guestfs-actions.pod:6974
17608 #, no-wrap
17609 msgid ""
17610 " char *\n"
17611 " guestfs_vfs_uuid (guestfs_h *g,\n"
17612 "                   const char *device);\n"
17613 "\n"
17614 msgstr ""
17615
17616 #. type: textblock
17617 #: ../src/guestfs-actions.pod:6978 ../fish/guestfish-actions.pod:4702
17618 msgid "This returns the filesystem UUID of the filesystem on C<device>."
17619 msgstr ""
17620
17621 #. type: textblock
17622 #: ../src/guestfs-actions.pod:6981 ../fish/guestfish-actions.pod:4705
17623 msgid "If the filesystem does not have a UUID, this returns the empty string."
17624 msgstr ""
17625
17626 #. type: textblock
17627 #: ../src/guestfs-actions.pod:6983
17628 msgid "To find a filesystem from the UUID, use C<guestfs_findfs_uuid>."
17629 msgstr ""
17630
17631 #. type: =head2
17632 #: ../src/guestfs-actions.pod:6990
17633 msgid "guestfs_vg_activate"
17634 msgstr ""
17635
17636 #. type: verbatim
17637 #: ../src/guestfs-actions.pod:6992
17638 #, no-wrap
17639 msgid ""
17640 " int\n"
17641 " guestfs_vg_activate (guestfs_h *g,\n"
17642 "                      int activate,\n"
17643 "                      char *const *volgroups);\n"
17644 "\n"
17645 msgstr ""
17646
17647 #. type: textblock
17648 #: ../src/guestfs-actions.pod:6997 ../fish/guestfish-actions.pod:4713
17649 msgid ""
17650 "This command activates or (if C<activate> is false) deactivates all logical "
17651 "volumes in the listed volume groups C<volgroups>.  If activated, then they "
17652 "are made known to the kernel, ie. they appear as C</dev/mapper> devices.  If "
17653 "deactivated, then those devices disappear."
17654 msgstr ""
17655
17656 #. type: textblock
17657 #: ../src/guestfs-actions.pod:7003 ../fish/guestfish-actions.pod:4719
17658 msgid "This command is the same as running C<vgchange -a y|n volgroups...>"
17659 msgstr ""
17660
17661 #. type: textblock
17662 #: ../src/guestfs-actions.pod:7005 ../fish/guestfish-actions.pod:4721
17663 msgid ""
17664 "Note that if C<volgroups> is an empty list then B<all> volume groups are "
17665 "activated or deactivated."
17666 msgstr ""
17667
17668 #. type: =head2
17669 #: ../src/guestfs-actions.pod:7012
17670 msgid "guestfs_vg_activate_all"
17671 msgstr ""
17672
17673 #. type: verbatim
17674 #: ../src/guestfs-actions.pod:7014
17675 #, no-wrap
17676 msgid ""
17677 " int\n"
17678 " guestfs_vg_activate_all (guestfs_h *g,\n"
17679 "                          int activate);\n"
17680 "\n"
17681 msgstr ""
17682
17683 #. type: textblock
17684 #: ../src/guestfs-actions.pod:7018 ../fish/guestfish-actions.pod:4728
17685 msgid ""
17686 "This command activates or (if C<activate> is false) deactivates all logical "
17687 "volumes in all volume groups.  If activated, then they are made known to the "
17688 "kernel, ie. they appear as C</dev/mapper> devices.  If deactivated, then "
17689 "those devices disappear."
17690 msgstr ""
17691
17692 #. type: textblock
17693 #: ../src/guestfs-actions.pod:7024 ../fish/guestfish-actions.pod:4734
17694 msgid "This command is the same as running C<vgchange -a y|n>"
17695 msgstr ""
17696
17697 #. type: =head2
17698 #: ../src/guestfs-actions.pod:7030
17699 msgid "guestfs_vgcreate"
17700 msgstr ""
17701
17702 #. type: verbatim
17703 #: ../src/guestfs-actions.pod:7032
17704 #, no-wrap
17705 msgid ""
17706 " int\n"
17707 " guestfs_vgcreate (guestfs_h *g,\n"
17708 "                   const char *volgroup,\n"
17709 "                   char *const *physvols);\n"
17710 "\n"
17711 msgstr ""
17712
17713 #. type: textblock
17714 #: ../src/guestfs-actions.pod:7037 ../fish/guestfish-actions.pod:4740
17715 msgid ""
17716 "This creates an LVM volume group called C<volgroup> from the non-empty list "
17717 "of physical volumes C<physvols>."
17718 msgstr ""
17719
17720 #. type: =head2
17721 #: ../src/guestfs-actions.pod:7044
17722 msgid "guestfs_vglvuuids"
17723 msgstr ""
17724
17725 #. type: verbatim
17726 #: ../src/guestfs-actions.pod:7046
17727 #, no-wrap
17728 msgid ""
17729 " char **\n"
17730 " guestfs_vglvuuids (guestfs_h *g,\n"
17731 "                    const char *vgname);\n"
17732 "\n"
17733 msgstr ""
17734
17735 #. type: textblock
17736 #: ../src/guestfs-actions.pod:7050 ../fish/guestfish-actions.pod:4747
17737 msgid ""
17738 "Given a VG called C<vgname>, this returns the UUIDs of all the logical "
17739 "volumes created in this volume group."
17740 msgstr ""
17741
17742 #. type: textblock
17743 #: ../src/guestfs-actions.pod:7053
17744 msgid ""
17745 "You can use this along with C<guestfs_lvs> and C<guestfs_lvuuid> calls to "
17746 "associate logical volumes and volume groups."
17747 msgstr ""
17748
17749 #. type: textblock
17750 #: ../src/guestfs-actions.pod:7056
17751 msgid "See also C<guestfs_vgpvuuids>."
17752 msgstr ""
17753
17754 #. type: =head2
17755 #: ../src/guestfs-actions.pod:7064
17756 msgid "guestfs_vgpvuuids"
17757 msgstr ""
17758
17759 #. type: verbatim
17760 #: ../src/guestfs-actions.pod:7066
17761 #, no-wrap
17762 msgid ""
17763 " char **\n"
17764 " guestfs_vgpvuuids (guestfs_h *g,\n"
17765 "                    const char *vgname);\n"
17766 "\n"
17767 msgstr ""
17768
17769 #. type: textblock
17770 #: ../src/guestfs-actions.pod:7070 ../fish/guestfish-actions.pod:4759
17771 msgid ""
17772 "Given a VG called C<vgname>, this returns the UUIDs of all the physical "
17773 "volumes that this volume group resides on."
17774 msgstr ""
17775
17776 #. type: textblock
17777 #: ../src/guestfs-actions.pod:7073
17778 msgid ""
17779 "You can use this along with C<guestfs_pvs> and C<guestfs_pvuuid> calls to "
17780 "associate physical volumes and volume groups."
17781 msgstr ""
17782
17783 #. type: textblock
17784 #: ../src/guestfs-actions.pod:7076
17785 msgid "See also C<guestfs_vglvuuids>."
17786 msgstr ""
17787
17788 #. type: =head2
17789 #: ../src/guestfs-actions.pod:7084
17790 msgid "guestfs_vgremove"
17791 msgstr ""
17792
17793 #. type: verbatim
17794 #: ../src/guestfs-actions.pod:7086
17795 #, no-wrap
17796 msgid ""
17797 " int\n"
17798 " guestfs_vgremove (guestfs_h *g,\n"
17799 "                   const char *vgname);\n"
17800 "\n"
17801 msgstr ""
17802
17803 #. type: textblock
17804 #: ../src/guestfs-actions.pod:7090 ../fish/guestfish-actions.pod:4771
17805 msgid "Remove an LVM volume group C<vgname>, (for example C<VG>)."
17806 msgstr ""
17807
17808 #. type: textblock
17809 #: ../src/guestfs-actions.pod:7092 ../fish/guestfish-actions.pod:4773
17810 msgid ""
17811 "This also forcibly removes all logical volumes in the volume group (if any)."
17812 msgstr ""
17813
17814 #. type: =head2
17815 #: ../src/guestfs-actions.pod:7099
17816 msgid "guestfs_vgrename"
17817 msgstr ""
17818
17819 #. type: verbatim
17820 #: ../src/guestfs-actions.pod:7101
17821 #, no-wrap
17822 msgid ""
17823 " int\n"
17824 " guestfs_vgrename (guestfs_h *g,\n"
17825 "                   const char *volgroup,\n"
17826 "                   const char *newvolgroup);\n"
17827 "\n"
17828 msgstr ""
17829
17830 #. type: textblock
17831 #: ../src/guestfs-actions.pod:7106 ../fish/guestfish-actions.pod:4780
17832 msgid "Rename a volume group C<volgroup> with the new name C<newvolgroup>."
17833 msgstr ""
17834
17835 #. type: =head2
17836 #: ../src/guestfs-actions.pod:7112
17837 msgid "guestfs_vgs"
17838 msgstr ""
17839
17840 #. type: verbatim
17841 #: ../src/guestfs-actions.pod:7114
17842 #, no-wrap
17843 msgid ""
17844 " char **\n"
17845 " guestfs_vgs (guestfs_h *g);\n"
17846 "\n"
17847 msgstr ""
17848
17849 #. type: textblock
17850 #: ../src/guestfs-actions.pod:7117 ../fish/guestfish-actions.pod:4786
17851 msgid ""
17852 "List all the volumes groups detected.  This is the equivalent of the L<vgs(8)"
17853 "> command."
17854 msgstr ""
17855
17856 #. type: textblock
17857 #: ../src/guestfs-actions.pod:7120 ../fish/guestfish-actions.pod:4789
17858 msgid ""
17859 "This returns a list of just the volume group names that were detected (eg. "
17860 "C<VolGroup00>)."
17861 msgstr ""
17862
17863 #. type: textblock
17864 #: ../src/guestfs-actions.pod:7123
17865 msgid "See also C<guestfs_vgs_full>."
17866 msgstr ""
17867
17868 #. type: =head2
17869 #: ../src/guestfs-actions.pod:7131
17870 msgid "guestfs_vgs_full"
17871 msgstr ""
17872
17873 #. type: verbatim
17874 #: ../src/guestfs-actions.pod:7133
17875 #, no-wrap
17876 msgid ""
17877 " struct guestfs_lvm_vg_list *\n"
17878 " guestfs_vgs_full (guestfs_h *g);\n"
17879 "\n"
17880 msgstr ""
17881
17882 #. type: textblock
17883 #: ../src/guestfs-actions.pod:7136 ../fish/guestfish-actions.pod:4798
17884 msgid ""
17885 "List all the volumes groups detected.  This is the equivalent of the L<vgs(8)"
17886 "> command.  The \"full\" version includes all fields."
17887 msgstr ""
17888
17889 #. type: textblock
17890 #: ../src/guestfs-actions.pod:7139
17891 msgid ""
17892 "This function returns a C<struct guestfs_lvm_vg_list *>, or NULL if there "
17893 "was an error.  I<The caller must call C<guestfs_free_lvm_vg_list> after use>."
17894 msgstr ""
17895
17896 #. type: =head2
17897 #: ../src/guestfs-actions.pod:7145
17898 msgid "guestfs_vgscan"
17899 msgstr ""
17900
17901 #. type: verbatim
17902 #: ../src/guestfs-actions.pod:7147
17903 #, no-wrap
17904 msgid ""
17905 " int\n"
17906 " guestfs_vgscan (guestfs_h *g);\n"
17907 "\n"
17908 msgstr ""
17909
17910 #. type: textblock
17911 #: ../src/guestfs-actions.pod:7150 ../fish/guestfish-actions.pod:4805
17912 msgid ""
17913 "This rescans all block devices and rebuilds the list of LVM physical "
17914 "volumes, volume groups and logical volumes."
17915 msgstr ""
17916
17917 #. type: =head2
17918 #: ../src/guestfs-actions.pod:7157
17919 msgid "guestfs_vguuid"
17920 msgstr ""
17921
17922 #. type: verbatim
17923 #: ../src/guestfs-actions.pod:7159
17924 #, no-wrap
17925 msgid ""
17926 " char *\n"
17927 " guestfs_vguuid (guestfs_h *g,\n"
17928 "                 const char *vgname);\n"
17929 "\n"
17930 msgstr ""
17931
17932 #. type: textblock
17933 #: ../src/guestfs-actions.pod:7163 ../fish/guestfish-actions.pod:4812
17934 msgid "This command returns the UUID of the LVM VG named C<vgname>."
17935 msgstr ""
17936
17937 #. type: =head2
17938 #: ../src/guestfs-actions.pod:7170
17939 msgid "guestfs_wait_ready"
17940 msgstr ""
17941
17942 #. type: verbatim
17943 #: ../src/guestfs-actions.pod:7172
17944 #, no-wrap
17945 msgid ""
17946 " int\n"
17947 " guestfs_wait_ready (guestfs_h *g);\n"
17948 "\n"
17949 msgstr ""
17950
17951 #. type: textblock
17952 #: ../src/guestfs-actions.pod:7175
17953 msgid "This function is a no op."
17954 msgstr ""
17955
17956 #. type: textblock
17957 #: ../src/guestfs-actions.pod:7177
17958 msgid ""
17959 "In versions of the API E<lt> 1.0.71 you had to call this function just after "
17960 "calling C<guestfs_launch> to wait for the launch to complete.  However this "
17961 "is no longer necessary because C<guestfs_launch> now does the waiting."
17962 msgstr ""
17963
17964 #. type: textblock
17965 #: ../src/guestfs-actions.pod:7182
17966 msgid ""
17967 "If you see any calls to this function in code then you can just remove them, "
17968 "unless you want to retain compatibility with older versions of the API."
17969 msgstr ""
17970
17971 #. type: =head2
17972 #: ../src/guestfs-actions.pod:7190
17973 msgid "guestfs_wc_c"
17974 msgstr ""
17975
17976 #. type: verbatim
17977 #: ../src/guestfs-actions.pod:7192
17978 #, no-wrap
17979 msgid ""
17980 " int\n"
17981 " guestfs_wc_c (guestfs_h *g,\n"
17982 "               const char *path);\n"
17983 "\n"
17984 msgstr ""
17985
17986 #. type: textblock
17987 #: ../src/guestfs-actions.pod:7196 ../fish/guestfish-actions.pod:4818
17988 msgid ""
17989 "This command counts the characters in a file, using the C<wc -c> external "
17990 "command."
17991 msgstr ""
17992
17993 #. type: =head2
17994 #: ../src/guestfs-actions.pod:7203
17995 msgid "guestfs_wc_l"
17996 msgstr ""
17997
17998 #. type: verbatim
17999 #: ../src/guestfs-actions.pod:7205
18000 #, no-wrap
18001 msgid ""
18002 " int\n"
18003 " guestfs_wc_l (guestfs_h *g,\n"
18004 "               const char *path);\n"
18005 "\n"
18006 msgstr ""
18007
18008 #. type: textblock
18009 #: ../src/guestfs-actions.pod:7209 ../fish/guestfish-actions.pod:4825
18010 msgid ""
18011 "This command counts the lines in a file, using the C<wc -l> external command."
18012 msgstr ""
18013
18014 #. type: =head2
18015 #: ../src/guestfs-actions.pod:7216
18016 msgid "guestfs_wc_w"
18017 msgstr ""
18018
18019 #. type: verbatim
18020 #: ../src/guestfs-actions.pod:7218
18021 #, no-wrap
18022 msgid ""
18023 " int\n"
18024 " guestfs_wc_w (guestfs_h *g,\n"
18025 "               const char *path);\n"
18026 "\n"
18027 msgstr ""
18028
18029 #. type: textblock
18030 #: ../src/guestfs-actions.pod:7222 ../fish/guestfish-actions.pod:4832
18031 msgid ""
18032 "This command counts the words in a file, using the C<wc -w> external command."
18033 msgstr ""
18034
18035 #. type: =head2
18036 #: ../src/guestfs-actions.pod:7229
18037 msgid "guestfs_write"
18038 msgstr ""
18039
18040 #. type: verbatim
18041 #: ../src/guestfs-actions.pod:7231
18042 #, no-wrap
18043 msgid ""
18044 " int\n"
18045 " guestfs_write (guestfs_h *g,\n"
18046 "                const char *path,\n"
18047 "                const char *content,\n"
18048 "                size_t content_size);\n"
18049 "\n"
18050 msgstr ""
18051
18052 #. type: textblock
18053 #: ../src/guestfs-actions.pod:7237 ../fish/guestfish-actions.pod:4839
18054 msgid ""
18055 "This call creates a file called C<path>.  The content of the file is the "
18056 "string C<content> (which can contain any 8 bit data)."
18057 msgstr ""
18058
18059 #. type: =head2
18060 #: ../src/guestfs-actions.pod:7247
18061 msgid "guestfs_write_file"
18062 msgstr ""
18063
18064 #. type: verbatim
18065 #: ../src/guestfs-actions.pod:7249
18066 #, no-wrap
18067 msgid ""
18068 " int\n"
18069 " guestfs_write_file (guestfs_h *g,\n"
18070 "                     const char *path,\n"
18071 "                     const char *content,\n"
18072 "                     int size);\n"
18073 "\n"
18074 msgstr ""
18075
18076 #. type: textblock
18077 #: ../src/guestfs-actions.pod:7255 ../fish/guestfish-actions.pod:4849
18078 msgid ""
18079 "This call creates a file called C<path>.  The contents of the file is the "
18080 "string C<content> (which can contain any 8 bit data), with length C<size>."
18081 msgstr ""
18082
18083 #. type: textblock
18084 #: ../src/guestfs-actions.pod:7259 ../fish/guestfish-actions.pod:4853
18085 msgid ""
18086 "As a special case, if C<size> is C<0> then the length is calculated using "
18087 "C<strlen> (so in this case the content cannot contain embedded ASCII NULs)."
18088 msgstr ""
18089
18090 #. type: textblock
18091 #: ../src/guestfs-actions.pod:7263 ../fish/guestfish-actions.pod:4857
18092 msgid ""
18093 "I<NB.> Owing to a bug, writing content containing ASCII NUL characters does "
18094 "I<not> work, even if the length is specified."
18095 msgstr ""
18096
18097 #. type: textblock
18098 #: ../src/guestfs-actions.pod:7271 ../fish/guestfish-actions.pod:4863
18099 msgid ""
18100 "This function is deprecated.  In new code, use the C<write> call instead."
18101 msgstr ""
18102
18103 #. type: =head2
18104 #: ../src/guestfs-actions.pod:7280
18105 msgid "guestfs_zegrep"
18106 msgstr ""
18107
18108 #. type: verbatim
18109 #: ../src/guestfs-actions.pod:7282
18110 #, no-wrap
18111 msgid ""
18112 " char **\n"
18113 " guestfs_zegrep (guestfs_h *g,\n"
18114 "                 const char *regex,\n"
18115 "                 const char *path);\n"
18116 "\n"
18117 msgstr ""
18118
18119 #. type: textblock
18120 #: ../src/guestfs-actions.pod:7287 ../fish/guestfish-actions.pod:4874
18121 msgid ""
18122 "This calls the external C<zegrep> program and returns the matching lines."
18123 msgstr ""
18124
18125 #. type: =head2
18126 #: ../src/guestfs-actions.pod:7299
18127 msgid "guestfs_zegrepi"
18128 msgstr ""
18129
18130 #. type: verbatim
18131 #: ../src/guestfs-actions.pod:7301
18132 #, no-wrap
18133 msgid ""
18134 " char **\n"
18135 " guestfs_zegrepi (guestfs_h *g,\n"
18136 "                  const char *regex,\n"
18137 "                  const char *path);\n"
18138 "\n"
18139 msgstr ""
18140
18141 #. type: textblock
18142 #: ../src/guestfs-actions.pod:7306 ../fish/guestfish-actions.pod:4884
18143 msgid ""
18144 "This calls the external C<zegrep -i> program and returns the matching lines."
18145 msgstr ""
18146
18147 #. type: =head2
18148 #: ../src/guestfs-actions.pod:7318
18149 msgid "guestfs_zero"
18150 msgstr ""
18151
18152 #. type: verbatim
18153 #: ../src/guestfs-actions.pod:7320
18154 #, no-wrap
18155 msgid ""
18156 " int\n"
18157 " guestfs_zero (guestfs_h *g,\n"
18158 "               const char *device);\n"
18159 "\n"
18160 msgstr ""
18161
18162 #. type: textblock
18163 #: ../src/guestfs-actions.pod:7324 ../fish/guestfish-actions.pod:4894
18164 msgid "This command writes zeroes over the first few blocks of C<device>."
18165 msgstr ""
18166
18167 #. type: textblock
18168 #: ../src/guestfs-actions.pod:7326 ../fish/guestfish-actions.pod:4896
18169 msgid ""
18170 "How many blocks are zeroed isn't specified (but it's I<not> enough to "
18171 "securely wipe the device).  It should be sufficient to remove any partition "
18172 "tables, filesystem superblocks and so on."
18173 msgstr ""
18174
18175 #. type: textblock
18176 #: ../src/guestfs-actions.pod:7330
18177 msgid "See also: C<guestfs_zero_device>, C<guestfs_scrub_device>."
18178 msgstr ""
18179
18180 #. type: =head2
18181 #: ../src/guestfs-actions.pod:7341
18182 msgid "guestfs_zero_device"
18183 msgstr ""
18184
18185 #. type: verbatim
18186 #: ../src/guestfs-actions.pod:7343
18187 #, no-wrap
18188 msgid ""
18189 " int\n"
18190 " guestfs_zero_device (guestfs_h *g,\n"
18191 "                      const char *device);\n"
18192 "\n"
18193 msgstr ""
18194
18195 #. type: textblock
18196 #: ../src/guestfs-actions.pod:7347
18197 msgid ""
18198 "This command writes zeroes over the entire C<device>.  Compare with "
18199 "C<guestfs_zero> which just zeroes the first few blocks of a device."
18200 msgstr ""
18201
18202 #. type: textblock
18203 #: ../src/guestfs-actions.pod:7361
18204 msgid "(Added in 1.3.1)"
18205 msgstr ""
18206
18207 #. type: =head2
18208 #: ../src/guestfs-actions.pod:7363
18209 msgid "guestfs_zerofree"
18210 msgstr ""
18211
18212 #. type: verbatim
18213 #: ../src/guestfs-actions.pod:7365
18214 #, no-wrap
18215 msgid ""
18216 " int\n"
18217 " guestfs_zerofree (guestfs_h *g,\n"
18218 "                   const char *device);\n"
18219 "\n"
18220 msgstr ""
18221
18222 #. type: textblock
18223 #: ../src/guestfs-actions.pod:7369 ../fish/guestfish-actions.pod:4917
18224 msgid ""
18225 "This runs the I<zerofree> program on C<device>.  This program claims to zero "
18226 "unused inodes and disk blocks on an ext2/3 filesystem, thus making it "
18227 "possible to compress the filesystem more effectively."
18228 msgstr ""
18229
18230 #. type: textblock
18231 #: ../src/guestfs-actions.pod:7374 ../fish/guestfish-actions.pod:4922
18232 msgid "You should B<not> run this program if the filesystem is mounted."
18233 msgstr ""
18234
18235 #. type: textblock
18236 #: ../src/guestfs-actions.pod:7377 ../fish/guestfish-actions.pod:4925
18237 msgid ""
18238 "It is possible that using this program can damage the filesystem or data on "
18239 "the filesystem."
18240 msgstr ""
18241
18242 #. type: =head2
18243 #: ../src/guestfs-actions.pod:7384
18244 msgid "guestfs_zfgrep"
18245 msgstr ""
18246
18247 #. type: verbatim
18248 #: ../src/guestfs-actions.pod:7386
18249 #, no-wrap
18250 msgid ""
18251 " char **\n"
18252 " guestfs_zfgrep (guestfs_h *g,\n"
18253 "                 const char *pattern,\n"
18254 "                 const char *path);\n"
18255 "\n"
18256 msgstr ""
18257
18258 #. type: textblock
18259 #: ../src/guestfs-actions.pod:7391 ../fish/guestfish-actions.pod:4932
18260 msgid ""
18261 "This calls the external C<zfgrep> program and returns the matching lines."
18262 msgstr ""
18263
18264 #. type: =head2
18265 #: ../src/guestfs-actions.pod:7403
18266 msgid "guestfs_zfgrepi"
18267 msgstr ""
18268
18269 #. type: verbatim
18270 #: ../src/guestfs-actions.pod:7405
18271 #, no-wrap
18272 msgid ""
18273 " char **\n"
18274 " guestfs_zfgrepi (guestfs_h *g,\n"
18275 "                  const char *pattern,\n"
18276 "                  const char *path);\n"
18277 "\n"
18278 msgstr ""
18279
18280 #. type: textblock
18281 #: ../src/guestfs-actions.pod:7410 ../fish/guestfish-actions.pod:4942
18282 msgid ""
18283 "This calls the external C<zfgrep -i> program and returns the matching lines."
18284 msgstr ""
18285
18286 #. type: =head2
18287 #: ../src/guestfs-actions.pod:7422
18288 msgid "guestfs_zfile"
18289 msgstr ""
18290
18291 #. type: verbatim
18292 #: ../src/guestfs-actions.pod:7424
18293 #, no-wrap
18294 msgid ""
18295 " char *\n"
18296 " guestfs_zfile (guestfs_h *g,\n"
18297 "                const char *meth,\n"
18298 "                const char *path);\n"
18299 "\n"
18300 msgstr ""
18301
18302 #. type: textblock
18303 #: ../src/guestfs-actions.pod:7429 ../fish/guestfish-actions.pod:4952
18304 msgid ""
18305 "This command runs C<file> after first decompressing C<path> using C<method>."
18306 msgstr ""
18307
18308 #. type: textblock
18309 #: ../src/guestfs-actions.pod:7432 ../fish/guestfish-actions.pod:4955
18310 msgid "C<method> must be one of C<gzip>, C<compress> or C<bzip2>."
18311 msgstr ""
18312
18313 #. type: textblock
18314 #: ../src/guestfs-actions.pod:7434
18315 msgid ""
18316 "Since 1.0.63, use C<guestfs_file> instead which can now process compressed "
18317 "files."
18318 msgstr ""
18319
18320 #. type: textblock
18321 #: ../src/guestfs-actions.pod:7440 ../fish/guestfish-actions.pod:4960
18322 msgid ""
18323 "This function is deprecated.  In new code, use the C<file> call instead."
18324 msgstr ""
18325
18326 #. type: =head2
18327 #: ../src/guestfs-actions.pod:7449
18328 msgid "guestfs_zgrep"
18329 msgstr ""
18330
18331 #. type: verbatim
18332 #: ../src/guestfs-actions.pod:7451
18333 #, no-wrap
18334 msgid ""
18335 " char **\n"
18336 " guestfs_zgrep (guestfs_h *g,\n"
18337 "                const char *regex,\n"
18338 "                const char *path);\n"
18339 "\n"
18340 msgstr ""
18341
18342 #. type: textblock
18343 #: ../src/guestfs-actions.pod:7456 ../fish/guestfish-actions.pod:4971
18344 msgid ""
18345 "This calls the external C<zgrep> program and returns the matching lines."
18346 msgstr ""
18347
18348 #. type: =head2
18349 #: ../src/guestfs-actions.pod:7468
18350 msgid "guestfs_zgrepi"
18351 msgstr ""
18352
18353 #. type: verbatim
18354 #: ../src/guestfs-actions.pod:7470
18355 #, no-wrap
18356 msgid ""
18357 " char **\n"
18358 " guestfs_zgrepi (guestfs_h *g,\n"
18359 "                 const char *regex,\n"
18360 "                 const char *path);\n"
18361 "\n"
18362 msgstr ""
18363
18364 #. type: textblock
18365 #: ../src/guestfs-actions.pod:7475 ../fish/guestfish-actions.pod:4981
18366 msgid ""
18367 "This calls the external C<zgrep -i> program and returns the matching lines."
18368 msgstr ""
18369
18370 #. type: =item
18371 #: ../src/guestfs-availability.pod:3
18372 msgid "B<augeas>"
18373 msgstr ""
18374
18375 #. type: textblock
18376 #: ../src/guestfs-availability.pod:5
18377 msgid ""
18378 "The following functions: L</guestfs_aug_clear> L</guestfs_aug_close> L</"
18379 "guestfs_aug_defnode> L</guestfs_aug_defvar> L</guestfs_aug_get> L</"
18380 "guestfs_aug_init> L</guestfs_aug_insert> L</guestfs_aug_load> L</"
18381 "guestfs_aug_ls> L</guestfs_aug_match> L</guestfs_aug_mv> L</guestfs_aug_rm> "
18382 "L</guestfs_aug_save> L</guestfs_aug_set>"
18383 msgstr ""
18384
18385 #. type: =item
18386 #: ../src/guestfs-availability.pod:21
18387 msgid "B<inotify>"
18388 msgstr ""
18389
18390 #. type: textblock
18391 #: ../src/guestfs-availability.pod:23
18392 msgid ""
18393 "The following functions: L</guestfs_inotify_add_watch> L</"
18394 "guestfs_inotify_close> L</guestfs_inotify_files> L</guestfs_inotify_init> L</"
18395 "guestfs_inotify_read> L</guestfs_inotify_rm_watch>"
18396 msgstr ""
18397
18398 #. type: =item
18399 #: ../src/guestfs-availability.pod:31
18400 msgid "B<linuxfsuuid>"
18401 msgstr ""
18402
18403 #. type: textblock
18404 #: ../src/guestfs-availability.pod:33
18405 msgid ""
18406 "The following functions: L</guestfs_mke2fs_JU> L</guestfs_mke2journal_U> L</"
18407 "guestfs_mkswap_U> L</guestfs_swapoff_uuid> L</guestfs_swapon_uuid>"
18408 msgstr ""
18409
18410 #. type: =item
18411 #: ../src/guestfs-availability.pod:40
18412 msgid "B<linuxmodules>"
18413 msgstr ""
18414
18415 #. type: textblock
18416 #: ../src/guestfs-availability.pod:42
18417 msgid "The following functions: L</guestfs_modprobe>"
18418 msgstr ""
18419
18420 #. type: =item
18421 #: ../src/guestfs-availability.pod:45
18422 msgid "B<linuxxattrs>"
18423 msgstr ""
18424
18425 #. type: textblock
18426 #: ../src/guestfs-availability.pod:47
18427 msgid ""
18428 "The following functions: L</guestfs_getxattr> L</guestfs_getxattrs> L</"
18429 "guestfs_lgetxattr> L</guestfs_lgetxattrs> L</guestfs_lremovexattr> L</"
18430 "guestfs_lsetxattr> L</guestfs_lxattrlist> L</guestfs_removexattr> L</"
18431 "guestfs_setxattr>"
18432 msgstr ""
18433
18434 #. type: =item
18435 #: ../src/guestfs-availability.pod:58
18436 msgid "B<luks>"
18437 msgstr ""
18438
18439 #. type: textblock
18440 #: ../src/guestfs-availability.pod:60
18441 msgid ""
18442 "The following functions: L</guestfs_luks_add_key> L</guestfs_luks_close> L</"
18443 "guestfs_luks_format> L</guestfs_luks_format_cipher> L</"
18444 "guestfs_luks_kill_slot> L</guestfs_luks_open> L</guestfs_luks_open_ro>"
18445 msgstr ""
18446
18447 #. type: =item
18448 #: ../src/guestfs-availability.pod:69
18449 msgid "B<lvm2>"
18450 msgstr ""
18451
18452 #. type: textblock
18453 #: ../src/guestfs-availability.pod:71
18454 msgid ""
18455 "The following functions: L</guestfs_is_lv> L</guestfs_lvcreate> L</"
18456 "guestfs_lvm_remove_all> L</guestfs_lvm_set_filter> L</guestfs_lvremove> L</"
18457 "guestfs_lvresize> L</guestfs_lvresize_free> L</guestfs_lvs> L</"
18458 "guestfs_lvs_full> L</guestfs_pvcreate> L</guestfs_pvremove> L</"
18459 "guestfs_pvresize> L</guestfs_pvresize_size> L</guestfs_pvs> L</"
18460 "guestfs_pvs_full> L</guestfs_vg_activate> L</guestfs_vg_activate_all> L</"
18461 "guestfs_vgcreate> L</guestfs_vgremove> L</guestfs_vgs> L</guestfs_vgs_full>"
18462 msgstr ""
18463
18464 #. type: =item
18465 #: ../src/guestfs-availability.pod:94
18466 msgid "B<mknod>"
18467 msgstr ""
18468
18469 #. type: textblock
18470 #: ../src/guestfs-availability.pod:96
18471 msgid ""
18472 "The following functions: L</guestfs_mkfifo> L</guestfs_mknod> L</"
18473 "guestfs_mknod_b> L</guestfs_mknod_c>"
18474 msgstr ""
18475
18476 #. type: =item
18477 #: ../src/guestfs-availability.pod:102
18478 msgid "B<ntfs3g>"
18479 msgstr ""
18480
18481 #. type: textblock
18482 #: ../src/guestfs-availability.pod:104
18483 msgid "The following functions: L</guestfs_ntfs_3g_probe>"
18484 msgstr ""
18485
18486 #. type: =item
18487 #: ../src/guestfs-availability.pod:107
18488 msgid "B<ntfsprogs>"
18489 msgstr ""
18490
18491 #. type: textblock
18492 #: ../src/guestfs-availability.pod:109
18493 msgid ""
18494 "The following functions: L</guestfs_ntfsresize> L</guestfs_ntfsresize_size>"
18495 msgstr ""
18496
18497 #. type: =item
18498 #: ../src/guestfs-availability.pod:113
18499 msgid "B<realpath>"
18500 msgstr ""
18501
18502 #. type: textblock
18503 #: ../src/guestfs-availability.pod:115
18504 msgid "The following functions: L</guestfs_realpath>"
18505 msgstr ""
18506
18507 #. type: =item
18508 #: ../src/guestfs-availability.pod:118
18509 msgid "B<scrub>"
18510 msgstr ""
18511
18512 #. type: textblock
18513 #: ../src/guestfs-availability.pod:120
18514 msgid ""
18515 "The following functions: L</guestfs_scrub_device> L</guestfs_scrub_file> L</"
18516 "guestfs_scrub_freespace>"
18517 msgstr ""
18518
18519 #. type: =item
18520 #: ../src/guestfs-availability.pod:125
18521 msgid "B<selinux>"
18522 msgstr ""
18523
18524 #. type: textblock
18525 #: ../src/guestfs-availability.pod:127
18526 msgid "The following functions: L</guestfs_getcon> L</guestfs_setcon>"
18527 msgstr ""
18528
18529 #. type: =item
18530 #: ../src/guestfs-availability.pod:131
18531 msgid "B<xz>"
18532 msgstr ""
18533
18534 #. type: textblock
18535 #: ../src/guestfs-availability.pod:133
18536 msgid "The following functions: L</guestfs_txz_in> L</guestfs_txz_out>"
18537 msgstr ""
18538
18539 #. type: =item
18540 #: ../src/guestfs-availability.pod:137
18541 msgid "B<zerofree>"
18542 msgstr ""
18543
18544 #. type: textblock
18545 #: ../src/guestfs-availability.pod:139
18546 msgid "The following functions: L</guestfs_zerofree>"
18547 msgstr ""
18548
18549 #. type: =head2
18550 #: ../src/guestfs-structs.pod:1
18551 msgid "guestfs_int_bool"
18552 msgstr ""
18553
18554 #. type: verbatim
18555 #: ../src/guestfs-structs.pod:3
18556 #, no-wrap
18557 msgid ""
18558 " struct guestfs_int_bool {\n"
18559 "   int32_t i;\n"
18560 "   int32_t b;\n"
18561 " };\n"
18562 " \n"
18563 msgstr ""
18564
18565 #. type: verbatim
18566 #: ../src/guestfs-structs.pod:8
18567 #, no-wrap
18568 msgid ""
18569 " struct guestfs_int_bool_list {\n"
18570 "   uint32_t len; /* Number of elements in list. */\n"
18571 "   struct guestfs_int_bool *val; /* Elements. */\n"
18572 " };\n"
18573 " \n"
18574 msgstr ""
18575
18576 #. type: verbatim
18577 #: ../src/guestfs-structs.pod:13
18578 #, no-wrap
18579 msgid ""
18580 " void guestfs_free_int_bool (struct guestfs_free_int_bool *);\n"
18581 " void guestfs_free_int_bool_list (struct guestfs_free_int_bool_list *);\n"
18582 "\n"
18583 msgstr ""
18584
18585 #. type: =head2
18586 #: ../src/guestfs-structs.pod:16
18587 msgid "guestfs_lvm_pv"
18588 msgstr ""
18589
18590 #. type: verbatim
18591 #: ../src/guestfs-structs.pod:18
18592 #, no-wrap
18593 msgid ""
18594 " struct guestfs_lvm_pv {\n"
18595 "   char *pv_name;\n"
18596 "   /* The next field is NOT nul-terminated, be careful when printing it: */\n"
18597 "   char pv_uuid[32];\n"
18598 "   char *pv_fmt;\n"
18599 "   uint64_t pv_size;\n"
18600 "   uint64_t dev_size;\n"
18601 "   uint64_t pv_free;\n"
18602 "   uint64_t pv_used;\n"
18603 "   char *pv_attr;\n"
18604 "   int64_t pv_pe_count;\n"
18605 "   int64_t pv_pe_alloc_count;\n"
18606 "   char *pv_tags;\n"
18607 "   uint64_t pe_start;\n"
18608 "   int64_t pv_mda_count;\n"
18609 "   uint64_t pv_mda_free;\n"
18610 " };\n"
18611 " \n"
18612 msgstr ""
18613
18614 #. type: verbatim
18615 #: ../src/guestfs-structs.pod:36
18616 #, no-wrap
18617 msgid ""
18618 " struct guestfs_lvm_pv_list {\n"
18619 "   uint32_t len; /* Number of elements in list. */\n"
18620 "   struct guestfs_lvm_pv *val; /* Elements. */\n"
18621 " };\n"
18622 " \n"
18623 msgstr ""
18624
18625 #. type: verbatim
18626 #: ../src/guestfs-structs.pod:41
18627 #, no-wrap
18628 msgid ""
18629 " void guestfs_free_lvm_pv (struct guestfs_free_lvm_pv *);\n"
18630 " void guestfs_free_lvm_pv_list (struct guestfs_free_lvm_pv_list *);\n"
18631 "\n"
18632 msgstr ""
18633
18634 #. type: =head2
18635 #: ../src/guestfs-structs.pod:44
18636 msgid "guestfs_lvm_vg"
18637 msgstr ""
18638
18639 #. type: verbatim
18640 #: ../src/guestfs-structs.pod:46
18641 #, no-wrap
18642 msgid ""
18643 " struct guestfs_lvm_vg {\n"
18644 "   char *vg_name;\n"
18645 "   /* The next field is NOT nul-terminated, be careful when printing it: */\n"
18646 "   char vg_uuid[32];\n"
18647 "   char *vg_fmt;\n"
18648 "   char *vg_attr;\n"
18649 "   uint64_t vg_size;\n"
18650 "   uint64_t vg_free;\n"
18651 "   char *vg_sysid;\n"
18652 "   uint64_t vg_extent_size;\n"
18653 "   int64_t vg_extent_count;\n"
18654 "   int64_t vg_free_count;\n"
18655 "   int64_t max_lv;\n"
18656 "   int64_t max_pv;\n"
18657 "   int64_t pv_count;\n"
18658 "   int64_t lv_count;\n"
18659 "   int64_t snap_count;\n"
18660 "   int64_t vg_seqno;\n"
18661 "   char *vg_tags;\n"
18662 "   int64_t vg_mda_count;\n"
18663 "   uint64_t vg_mda_free;\n"
18664 " };\n"
18665 " \n"
18666 msgstr ""
18667
18668 #. type: verbatim
18669 #: ../src/guestfs-structs.pod:69
18670 #, no-wrap
18671 msgid ""
18672 " struct guestfs_lvm_vg_list {\n"
18673 "   uint32_t len; /* Number of elements in list. */\n"
18674 "   struct guestfs_lvm_vg *val; /* Elements. */\n"
18675 " };\n"
18676 " \n"
18677 msgstr ""
18678
18679 #. type: verbatim
18680 #: ../src/guestfs-structs.pod:74
18681 #, no-wrap
18682 msgid ""
18683 " void guestfs_free_lvm_vg (struct guestfs_free_lvm_vg *);\n"
18684 " void guestfs_free_lvm_vg_list (struct guestfs_free_lvm_vg_list *);\n"
18685 "\n"
18686 msgstr ""
18687
18688 #. type: =head2
18689 #: ../src/guestfs-structs.pod:77
18690 msgid "guestfs_lvm_lv"
18691 msgstr ""
18692
18693 #. type: verbatim
18694 #: ../src/guestfs-structs.pod:79
18695 #, no-wrap
18696 msgid ""
18697 " struct guestfs_lvm_lv {\n"
18698 "   char *lv_name;\n"
18699 "   /* The next field is NOT nul-terminated, be careful when printing it: */\n"
18700 "   char lv_uuid[32];\n"
18701 "   char *lv_attr;\n"
18702 "   int64_t lv_major;\n"
18703 "   int64_t lv_minor;\n"
18704 "   int64_t lv_kernel_major;\n"
18705 "   int64_t lv_kernel_minor;\n"
18706 "   uint64_t lv_size;\n"
18707 "   int64_t seg_count;\n"
18708 "   char *origin;\n"
18709 "   /* The next field is [0..100] or -1 meaning 'not present': */\n"
18710 "   float snap_percent;\n"
18711 "   /* The next field is [0..100] or -1 meaning 'not present': */\n"
18712 "   float copy_percent;\n"
18713 "   char *move_pv;\n"
18714 "   char *lv_tags;\n"
18715 "   char *mirror_log;\n"
18716 "   char *modules;\n"
18717 " };\n"
18718 " \n"
18719 msgstr ""
18720
18721 #. type: verbatim
18722 #: ../src/guestfs-structs.pod:101
18723 #, no-wrap
18724 msgid ""
18725 " struct guestfs_lvm_lv_list {\n"
18726 "   uint32_t len; /* Number of elements in list. */\n"
18727 "   struct guestfs_lvm_lv *val; /* Elements. */\n"
18728 " };\n"
18729 " \n"
18730 msgstr ""
18731
18732 #. type: verbatim
18733 #: ../src/guestfs-structs.pod:106
18734 #, no-wrap
18735 msgid ""
18736 " void guestfs_free_lvm_lv (struct guestfs_free_lvm_lv *);\n"
18737 " void guestfs_free_lvm_lv_list (struct guestfs_free_lvm_lv_list *);\n"
18738 "\n"
18739 msgstr ""
18740
18741 #. type: verbatim
18742 #: ../src/guestfs-structs.pod:111
18743 #, no-wrap
18744 msgid ""
18745 " struct guestfs_stat {\n"
18746 "   int64_t dev;\n"
18747 "   int64_t ino;\n"
18748 "   int64_t mode;\n"
18749 "   int64_t nlink;\n"
18750 "   int64_t uid;\n"
18751 "   int64_t gid;\n"
18752 "   int64_t rdev;\n"
18753 "   int64_t size;\n"
18754 "   int64_t blksize;\n"
18755 "   int64_t blocks;\n"
18756 "   int64_t atime;\n"
18757 "   int64_t mtime;\n"
18758 "   int64_t ctime;\n"
18759 " };\n"
18760 " \n"
18761 msgstr ""
18762
18763 #. type: verbatim
18764 #: ../src/guestfs-structs.pod:127
18765 #, no-wrap
18766 msgid ""
18767 " struct guestfs_stat_list {\n"
18768 "   uint32_t len; /* Number of elements in list. */\n"
18769 "   struct guestfs_stat *val; /* Elements. */\n"
18770 " };\n"
18771 " \n"
18772 msgstr ""
18773
18774 #. type: verbatim
18775 #: ../src/guestfs-structs.pod:132
18776 #, no-wrap
18777 msgid ""
18778 " void guestfs_free_stat (struct guestfs_free_stat *);\n"
18779 " void guestfs_free_stat_list (struct guestfs_free_stat_list *);\n"
18780 "\n"
18781 msgstr ""
18782
18783 #. type: verbatim
18784 #: ../src/guestfs-structs.pod:137
18785 #, no-wrap
18786 msgid ""
18787 " struct guestfs_statvfs {\n"
18788 "   int64_t bsize;\n"
18789 "   int64_t frsize;\n"
18790 "   int64_t blocks;\n"
18791 "   int64_t bfree;\n"
18792 "   int64_t bavail;\n"
18793 "   int64_t files;\n"
18794 "   int64_t ffree;\n"
18795 "   int64_t favail;\n"
18796 "   int64_t fsid;\n"
18797 "   int64_t flag;\n"
18798 "   int64_t namemax;\n"
18799 " };\n"
18800 " \n"
18801 msgstr ""
18802
18803 #. type: verbatim
18804 #: ../src/guestfs-structs.pod:151
18805 #, no-wrap
18806 msgid ""
18807 " struct guestfs_statvfs_list {\n"
18808 "   uint32_t len; /* Number of elements in list. */\n"
18809 "   struct guestfs_statvfs *val; /* Elements. */\n"
18810 " };\n"
18811 " \n"
18812 msgstr ""
18813
18814 #. type: verbatim
18815 #: ../src/guestfs-structs.pod:156
18816 #, no-wrap
18817 msgid ""
18818 " void guestfs_free_statvfs (struct guestfs_free_statvfs *);\n"
18819 " void guestfs_free_statvfs_list (struct guestfs_free_statvfs_list *);\n"
18820 "\n"
18821 msgstr ""
18822
18823 #. type: =head2
18824 #: ../src/guestfs-structs.pod:159
18825 msgid "guestfs_dirent"
18826 msgstr ""
18827
18828 #. type: verbatim
18829 #: ../src/guestfs-structs.pod:161
18830 #, no-wrap
18831 msgid ""
18832 " struct guestfs_dirent {\n"
18833 "   int64_t ino;\n"
18834 "   char ftyp;\n"
18835 "   char *name;\n"
18836 " };\n"
18837 " \n"
18838 msgstr ""
18839
18840 #. type: verbatim
18841 #: ../src/guestfs-structs.pod:167
18842 #, no-wrap
18843 msgid ""
18844 " struct guestfs_dirent_list {\n"
18845 "   uint32_t len; /* Number of elements in list. */\n"
18846 "   struct guestfs_dirent *val; /* Elements. */\n"
18847 " };\n"
18848 " \n"
18849 msgstr ""
18850
18851 #. type: verbatim
18852 #: ../src/guestfs-structs.pod:172
18853 #, no-wrap
18854 msgid ""
18855 " void guestfs_free_dirent (struct guestfs_free_dirent *);\n"
18856 " void guestfs_free_dirent_list (struct guestfs_free_dirent_list *);\n"
18857 "\n"
18858 msgstr ""
18859
18860 #. type: verbatim
18861 #: ../src/guestfs-structs.pod:177
18862 #, no-wrap
18863 msgid ""
18864 " struct guestfs_version {\n"
18865 "   int64_t major;\n"
18866 "   int64_t minor;\n"
18867 "   int64_t release;\n"
18868 "   char *extra;\n"
18869 " };\n"
18870 " \n"
18871 msgstr ""
18872
18873 #. type: verbatim
18874 #: ../src/guestfs-structs.pod:184
18875 #, no-wrap
18876 msgid ""
18877 " struct guestfs_version_list {\n"
18878 "   uint32_t len; /* Number of elements in list. */\n"
18879 "   struct guestfs_version *val; /* Elements. */\n"
18880 " };\n"
18881 " \n"
18882 msgstr ""
18883
18884 #. type: verbatim
18885 #: ../src/guestfs-structs.pod:189
18886 #, no-wrap
18887 msgid ""
18888 " void guestfs_free_version (struct guestfs_free_version *);\n"
18889 " void guestfs_free_version_list (struct guestfs_free_version_list *);\n"
18890 "\n"
18891 msgstr ""
18892
18893 #. type: =head2
18894 #: ../src/guestfs-structs.pod:192
18895 msgid "guestfs_xattr"
18896 msgstr ""
18897
18898 #. type: verbatim
18899 #: ../src/guestfs-structs.pod:194
18900 #, no-wrap
18901 msgid ""
18902 " struct guestfs_xattr {\n"
18903 "   char *attrname;\n"
18904 "   /* The next two fields describe a byte array. */\n"
18905 "   uint32_t attrval_len;\n"
18906 "   char *attrval;\n"
18907 " };\n"
18908 " \n"
18909 msgstr ""
18910
18911 #. type: verbatim
18912 #: ../src/guestfs-structs.pod:201
18913 #, no-wrap
18914 msgid ""
18915 " struct guestfs_xattr_list {\n"
18916 "   uint32_t len; /* Number of elements in list. */\n"
18917 "   struct guestfs_xattr *val; /* Elements. */\n"
18918 " };\n"
18919 " \n"
18920 msgstr ""
18921
18922 #. type: verbatim
18923 #: ../src/guestfs-structs.pod:206
18924 #, no-wrap
18925 msgid ""
18926 " void guestfs_free_xattr (struct guestfs_free_xattr *);\n"
18927 " void guestfs_free_xattr_list (struct guestfs_free_xattr_list *);\n"
18928 "\n"
18929 msgstr ""
18930
18931 #. type: =head2
18932 #: ../src/guestfs-structs.pod:209
18933 msgid "guestfs_inotify_event"
18934 msgstr ""
18935
18936 #. type: verbatim
18937 #: ../src/guestfs-structs.pod:211
18938 #, no-wrap
18939 msgid ""
18940 " struct guestfs_inotify_event {\n"
18941 "   int64_t in_wd;\n"
18942 "   uint32_t in_mask;\n"
18943 "   uint32_t in_cookie;\n"
18944 "   char *in_name;\n"
18945 " };\n"
18946 " \n"
18947 msgstr ""
18948
18949 #. type: verbatim
18950 #: ../src/guestfs-structs.pod:218
18951 #, no-wrap
18952 msgid ""
18953 " struct guestfs_inotify_event_list {\n"
18954 "   uint32_t len; /* Number of elements in list. */\n"
18955 "   struct guestfs_inotify_event *val; /* Elements. */\n"
18956 " };\n"
18957 " \n"
18958 msgstr ""
18959
18960 #. type: verbatim
18961 #: ../src/guestfs-structs.pod:223
18962 #, no-wrap
18963 msgid ""
18964 " void guestfs_free_inotify_event (struct guestfs_free_inotify_event *);\n"
18965 " void guestfs_free_inotify_event_list (struct guestfs_free_inotify_event_list *);\n"
18966 "\n"
18967 msgstr ""
18968
18969 #. type: =head2
18970 #: ../src/guestfs-structs.pod:226
18971 msgid "guestfs_partition"
18972 msgstr ""
18973
18974 #. type: verbatim
18975 #: ../src/guestfs-structs.pod:228
18976 #, no-wrap
18977 msgid ""
18978 " struct guestfs_partition {\n"
18979 "   int32_t part_num;\n"
18980 "   uint64_t part_start;\n"
18981 "   uint64_t part_end;\n"
18982 "   uint64_t part_size;\n"
18983 " };\n"
18984 " \n"
18985 msgstr ""
18986
18987 #. type: verbatim
18988 #: ../src/guestfs-structs.pod:235
18989 #, no-wrap
18990 msgid ""
18991 " struct guestfs_partition_list {\n"
18992 "   uint32_t len; /* Number of elements in list. */\n"
18993 "   struct guestfs_partition *val; /* Elements. */\n"
18994 " };\n"
18995 " \n"
18996 msgstr ""
18997
18998 #. type: verbatim
18999 #: ../src/guestfs-structs.pod:240
19000 #, no-wrap
19001 msgid ""
19002 " void guestfs_free_partition (struct guestfs_free_partition *);\n"
19003 " void guestfs_free_partition_list (struct guestfs_free_partition_list *);\n"
19004 "\n"
19005 msgstr ""
19006
19007 #. type: =head2
19008 #: ../src/guestfs-structs.pod:243
19009 msgid "guestfs_application"
19010 msgstr ""
19011
19012 #. type: verbatim
19013 #: ../src/guestfs-structs.pod:245
19014 #, no-wrap
19015 msgid ""
19016 " struct guestfs_application {\n"
19017 "   char *app_name;\n"
19018 "   char *app_display_name;\n"
19019 "   int32_t app_epoch;\n"
19020 "   char *app_version;\n"
19021 "   char *app_release;\n"
19022 "   char *app_install_path;\n"
19023 "   char *app_trans_path;\n"
19024 "   char *app_publisher;\n"
19025 "   char *app_url;\n"
19026 "   char *app_source_package;\n"
19027 "   char *app_summary;\n"
19028 "   char *app_description;\n"
19029 " };\n"
19030 " \n"
19031 msgstr ""
19032
19033 #. type: verbatim
19034 #: ../src/guestfs-structs.pod:260
19035 #, no-wrap
19036 msgid ""
19037 " struct guestfs_application_list {\n"
19038 "   uint32_t len; /* Number of elements in list. */\n"
19039 "   struct guestfs_application *val; /* Elements. */\n"
19040 " };\n"
19041 " \n"
19042 msgstr ""
19043
19044 #. type: verbatim
19045 #: ../src/guestfs-structs.pod:265
19046 #, no-wrap
19047 msgid ""
19048 " void guestfs_free_application (struct guestfs_free_application *);\n"
19049 " void guestfs_free_application_list (struct guestfs_free_application_list *);\n"
19050 "\n"
19051 msgstr ""
19052
19053 #. type: textblock
19054 #: ../fish/guestfish.pod:5
19055 msgid "guestfish - the libguestfs Filesystem Interactive SHell"
19056 msgstr ""
19057
19058 #. type: verbatim
19059 #: ../fish/guestfish.pod:9
19060 #, no-wrap
19061 msgid ""
19062 " guestfish [--options] [commands]\n"
19063 "\n"
19064 msgstr ""
19065
19066 #. type: verbatim
19067 #: ../fish/guestfish.pod:11
19068 #, no-wrap
19069 msgid ""
19070 " guestfish\n"
19071 "\n"
19072 msgstr ""
19073
19074 #. type: verbatim
19075 #: ../fish/guestfish.pod:13
19076 #, no-wrap
19077 msgid ""
19078 " guestfish [--ro|--rw] -a disk.img\n"
19079 "\n"
19080 msgstr ""
19081
19082 #. type: verbatim
19083 #: ../fish/guestfish.pod:15
19084 #, no-wrap
19085 msgid ""
19086 " guestfish [--ro|--rw] -a disk.img -m dev[:mountpoint]\n"
19087 "\n"
19088 msgstr ""
19089
19090 #. type: verbatim
19091 #: ../fish/guestfish.pod:17
19092 #, no-wrap
19093 msgid ""
19094 " guestfish -d libvirt-domain\n"
19095 "\n"
19096 msgstr ""
19097
19098 #. type: verbatim
19099 #: ../fish/guestfish.pod:19
19100 #, no-wrap
19101 msgid ""
19102 " guestfish [--ro|--rw] -a disk.img -i\n"
19103 "\n"
19104 msgstr ""
19105
19106 #. type: verbatim
19107 #: ../fish/guestfish.pod:21
19108 #, no-wrap
19109 msgid ""
19110 " guestfish -d libvirt-domain -i\n"
19111 "\n"
19112 msgstr ""
19113
19114 #. type: =head1
19115 #: ../fish/guestfish.pod:23 ../fuse/guestmount.pod:15 ../tools/virt-edit.pl:44
19116 #: ../tools/virt-win-reg.pl:51 ../tools/virt-tar.pl:64
19117 msgid "WARNING"
19118 msgstr ""
19119
19120 #. type: textblock
19121 #: ../fish/guestfish.pod:25
19122 msgid ""
19123 "Using guestfish in read/write mode on live virtual machines can be "
19124 "dangerous, potentially causing disk corruption.  Use the I<--ro> (read-only) "
19125 "option to use guestfish safely if the disk image or virtual machine might be "
19126 "live."
19127 msgstr ""
19128
19129 #. type: textblock
19130 #: ../fish/guestfish.pod:32
19131 msgid ""
19132 "Guestfish is a shell and command-line tool for examining and modifying "
19133 "virtual machine filesystems.  It uses libguestfs and exposes all of the "
19134 "functionality of the guestfs API, see L<guestfs(3)>."
19135 msgstr ""
19136
19137 #. type: textblock
19138 #: ../fish/guestfish.pod:36
19139 msgid ""
19140 "Guestfish gives you structured access to the libguestfs API, from shell "
19141 "scripts or the command line or interactively.  If you want to rescue a "
19142 "broken virtual machine image, you should look at the L<virt-rescue(1)> "
19143 "command."
19144 msgstr ""
19145
19146 #. type: =head1
19147 #: ../fish/guestfish.pod:41 ../fish/guestfish.pod:947
19148 #: ../fuse/guestmount.pod:39 ../tools/virt-edit.pl:63 ../tools/virt-tar.pl:50
19149 msgid "EXAMPLES"
19150 msgstr ""
19151
19152 #. type: =head2
19153 #: ../fish/guestfish.pod:43
19154 msgid "As an interactive shell"
19155 msgstr ""
19156
19157 #. type: verbatim
19158 #: ../fish/guestfish.pod:45
19159 #, no-wrap
19160 msgid ""
19161 " $ guestfish\n"
19162 " \n"
19163 msgstr ""
19164
19165 #. type: verbatim
19166 #: ../fish/guestfish.pod:47
19167 #, no-wrap
19168 msgid ""
19169 " Welcome to guestfish, the libguestfs filesystem interactive shell for\n"
19170 " editing virtual machine filesystems.\n"
19171 " \n"
19172 msgstr ""
19173
19174 #. type: verbatim
19175 #: ../fish/guestfish.pod:50
19176 #, no-wrap
19177 msgid ""
19178 " Type: 'help' for a list of commands\n"
19179 "       'man' to read the manual\n"
19180 "       'quit' to quit the shell\n"
19181 " \n"
19182 msgstr ""
19183
19184 #. type: verbatim
19185 #: ../fish/guestfish.pod:54
19186 #, no-wrap
19187 msgid ""
19188 " ><fs> add-ro disk.img\n"
19189 " ><fs> run\n"
19190 " ><fs> list-filesystems\n"
19191 " /dev/sda1: ext4\n"
19192 " /dev/vg_guest/lv_root: ext4\n"
19193 " /dev/vg_guest/lv_swap: swap\n"
19194 " ><fs> mount /dev/vg_guest/lv_root /\n"
19195 " ><fs> cat /etc/fstab\n"
19196 " # /etc/fstab\n"
19197 " # Created by anaconda\n"
19198 " [...]\n"
19199 " ><fs> exit\n"
19200 "\n"
19201 msgstr ""
19202
19203 #. type: =head2
19204 #: ../fish/guestfish.pod:67
19205 msgid "From shell scripts"
19206 msgstr ""
19207
19208 #. type: textblock
19209 #: ../fish/guestfish.pod:69
19210 msgid "Create a new C</etc/motd> file in a guest or disk image:"
19211 msgstr ""
19212
19213 #. type: verbatim
19214 #: ../fish/guestfish.pod:71
19215 #, no-wrap
19216 msgid ""
19217 " guestfish <<_EOF_\n"
19218 " add disk.img\n"
19219 " run\n"
19220 " mount /dev/vg_guest/lv_root /\n"
19221 " write /etc/motd \"Welcome, new users\"\n"
19222 " _EOF_\n"
19223 "\n"
19224 msgstr ""
19225
19226 #. type: textblock
19227 #: ../fish/guestfish.pod:78
19228 msgid "List the LVM logical volumes in a disk image:"
19229 msgstr ""
19230
19231 #. type: verbatim
19232 #: ../fish/guestfish.pod:80
19233 #, no-wrap
19234 msgid ""
19235 " guestfish -a disk.img --ro <<_EOF_\n"
19236 " run\n"
19237 " lvs\n"
19238 " _EOF_\n"
19239 "\n"
19240 msgstr ""
19241
19242 #. type: textblock
19243 #: ../fish/guestfish.pod:85
19244 msgid "List all the filesystems in a disk image:"
19245 msgstr ""
19246
19247 #. type: verbatim
19248 #: ../fish/guestfish.pod:87
19249 #, no-wrap
19250 msgid ""
19251 " guestfish -a disk.img --ro <<_EOF_\n"
19252 " run\n"
19253 " list-filesystems\n"
19254 " _EOF_\n"
19255 "\n"
19256 msgstr ""
19257
19258 #. type: =head2
19259 #: ../fish/guestfish.pod:92
19260 msgid "On one command line"
19261 msgstr ""
19262
19263 #. type: textblock
19264 #: ../fish/guestfish.pod:94
19265 msgid "Update C</etc/resolv.conf> in a guest:"
19266 msgstr ""
19267
19268 #. type: verbatim
19269 #: ../fish/guestfish.pod:96
19270 #, no-wrap
19271 msgid ""
19272 " guestfish \\\n"
19273 "   add disk.img : run : mount /dev/vg_guest/lv_root / : \\\n"
19274 "   write /etc/resolv.conf \"nameserver 1.2.3.4\"\n"
19275 "\n"
19276 msgstr ""
19277
19278 #. type: textblock
19279 #: ../fish/guestfish.pod:100
19280 msgid "Edit C</boot/grub/grub.conf> interactively:"
19281 msgstr ""
19282
19283 #. type: verbatim
19284 #: ../fish/guestfish.pod:102
19285 #, no-wrap
19286 msgid ""
19287 " guestfish --rw --add disk.img \\\n"
19288 "   --mount /dev/vg_guest/lv_root \\\n"
19289 "   --mount /dev/sda1:/boot \\\n"
19290 "   edit /boot/grub/grub.conf\n"
19291 "\n"
19292 msgstr ""
19293
19294 #. type: =head2
19295 #: ../fish/guestfish.pod:107
19296 msgid "Mount disks automatically"
19297 msgstr ""
19298
19299 #. type: textblock
19300 #: ../fish/guestfish.pod:109
19301 msgid ""
19302 "Use the I<-i> option to automatically mount the disks from a virtual machine:"
19303 msgstr ""
19304
19305 #. type: verbatim
19306 #: ../fish/guestfish.pod:112
19307 #, no-wrap
19308 msgid ""
19309 " guestfish --ro -a disk.img -i cat /etc/group\n"
19310 "\n"
19311 msgstr ""
19312
19313 #. type: verbatim
19314 #: ../fish/guestfish.pod:114
19315 #, no-wrap
19316 msgid ""
19317 " guestfish --ro -d libvirt-domain -i cat /etc/group\n"
19318 "\n"
19319 msgstr ""
19320
19321 #. type: textblock
19322 #: ../fish/guestfish.pod:116
19323 msgid "Another way to edit C</boot/grub/grub.conf> interactively is:"
19324 msgstr ""
19325
19326 #. type: verbatim
19327 #: ../fish/guestfish.pod:118
19328 #, no-wrap
19329 msgid ""
19330 " guestfish --rw -a disk.img -i edit /boot/grub/grub.conf\n"
19331 "\n"
19332 msgstr ""
19333
19334 #. type: =head2
19335 #: ../fish/guestfish.pod:120
19336 msgid "As a script interpreter"
19337 msgstr ""
19338
19339 #. type: textblock
19340 #: ../fish/guestfish.pod:122
19341 msgid "Create a 100MB disk containing an ext2-formatted partition:"
19342 msgstr ""
19343
19344 #. type: verbatim
19345 #: ../fish/guestfish.pod:124
19346 #, no-wrap
19347 msgid ""
19348 " #!/usr/bin/guestfish -f\n"
19349 " sparse test1.img 100M\n"
19350 " run\n"
19351 " part-disk /dev/sda mbr\n"
19352 " mkfs ext2 /dev/sda1\n"
19353 "\n"
19354 msgstr ""
19355
19356 #. type: =head2
19357 #: ../fish/guestfish.pod:130
19358 msgid "Start with a prepared disk"
19359 msgstr ""
19360
19361 #. type: textblock
19362 #: ../fish/guestfish.pod:132
19363 msgid ""
19364 "An alternate way to create a 100MB disk called C<test1.img> containing a "
19365 "single ext2-formatted partition:"
19366 msgstr ""
19367
19368 #. type: verbatim
19369 #: ../fish/guestfish.pod:135
19370 #, no-wrap
19371 msgid ""
19372 " guestfish -N fs\n"
19373 "\n"
19374 msgstr ""
19375
19376 #. type: textblock
19377 #: ../fish/guestfish.pod:137
19378 msgid "To list what is available do:"
19379 msgstr ""
19380
19381 #. type: verbatim
19382 #: ../fish/guestfish.pod:139 ../fish/guestfish.pod:938
19383 #, no-wrap
19384 msgid ""
19385 " guestfish -N help | less\n"
19386 "\n"
19387 msgstr ""
19388
19389 #. type: =head2
19390 #: ../fish/guestfish.pod:141
19391 msgid "Remote control"
19392 msgstr ""
19393
19394 #. type: verbatim
19395 #: ../fish/guestfish.pod:143
19396 #, no-wrap
19397 msgid ""
19398 " eval \"`guestfish --listen`\"\n"
19399 " guestfish --remote add-ro disk.img\n"
19400 " guestfish --remote run\n"
19401 " guestfish --remote lvs\n"
19402 "\n"
19403 msgstr ""
19404
19405 #. type: =head1
19406 #: ../fish/guestfish.pod:148 ../test-tool/libguestfs-test-tool.pod:37
19407 #: ../fuse/guestmount.pod:73 ../tools/virt-edit.pl:81
19408 #: ../tools/virt-win-reg.pl:96 ../tools/virt-list-filesystems.pl:53
19409 #: ../tools/virt-tar.pl:103 ../tools/virt-make-fs.pl:153
19410 #: ../tools/virt-list-partitions.pl:54
19411 msgid "OPTIONS"
19412 msgstr ""
19413
19414 #. type: =item
19415 #: ../fish/guestfish.pod:152 ../fuse/guestmount.pod:131
19416 #: ../tools/virt-edit.pl:89 ../tools/virt-win-reg.pl:104
19417 #: ../tools/virt-list-filesystems.pl:61 ../tools/virt-tar.pl:111
19418 #: ../tools/virt-make-fs.pl:161 ../tools/virt-list-partitions.pl:62
19419 msgid "B<--help>"
19420 msgstr ""
19421
19422 #. type: textblock
19423 #: ../fish/guestfish.pod:154
19424 msgid "Displays general help on options."
19425 msgstr ""
19426
19427 #. type: =item
19428 #: ../fish/guestfish.pod:156
19429 msgid "B<-h>"
19430 msgstr ""
19431
19432 #. type: =item
19433 #: ../fish/guestfish.pod:158
19434 msgid "B<--cmd-help>"
19435 msgstr ""
19436
19437 #. type: textblock
19438 #: ../fish/guestfish.pod:160
19439 msgid "Lists all available guestfish commands."
19440 msgstr ""
19441
19442 #. type: =item
19443 #: ../fish/guestfish.pod:162
19444 msgid "B<-h cmd>"
19445 msgstr ""
19446
19447 #. type: =item
19448 #: ../fish/guestfish.pod:164
19449 msgid "B<--cmd-help cmd>"
19450 msgstr ""
19451
19452 #. type: textblock
19453 #: ../fish/guestfish.pod:166
19454 msgid "Displays detailed help on a single command C<cmd>."
19455 msgstr ""
19456
19457 #. type: =item
19458 #: ../fish/guestfish.pod:168
19459 msgid "B<-a image>"
19460 msgstr ""
19461
19462 #. type: =item
19463 #: ../fish/guestfish.pod:170
19464 msgid "B<--add image>"
19465 msgstr ""
19466
19467 #. type: textblock
19468 #: ../fish/guestfish.pod:172
19469 msgid "Add a block device or virtual machine image to the shell."
19470 msgstr ""
19471
19472 #. type: textblock
19473 #: ../fish/guestfish.pod:174 ../fuse/guestmount.pod:81
19474 msgid ""
19475 "The format of the disk image is auto-detected.  To override this and force a "
19476 "particular format use the I<--format=..> option."
19477 msgstr ""
19478
19479 #. type: textblock
19480 #: ../fish/guestfish.pod:177
19481 msgid ""
19482 "Using this flag is mostly equivalent to using the C<add> command, with "
19483 "C<readonly:true> if the I<--ro> flag was given, and with C<format:...> if "
19484 "the I<--format=...> flag was given."
19485 msgstr ""
19486
19487 #. type: =item
19488 #: ../fish/guestfish.pod:181
19489 msgid "B<-c URI>"
19490 msgstr ""
19491
19492 #. type: =item
19493 #: ../fish/guestfish.pod:183
19494 msgid "B<--connect URI>"
19495 msgstr ""
19496
19497 #. type: textblock
19498 #: ../fish/guestfish.pod:185 ../fuse/guestmount.pod:86
19499 msgid ""
19500 "When used in conjunction with the I<-d> option, this specifies the libvirt "
19501 "URI to use.  The default is to use the default libvirt connection."
19502 msgstr ""
19503
19504 #. type: =item
19505 #: ../fish/guestfish.pod:189
19506 msgid "B<--csh>"
19507 msgstr ""
19508
19509 #. type: textblock
19510 #: ../fish/guestfish.pod:191
19511 msgid ""
19512 "If using the I<--listen> option and a csh-like shell, use this option.  See "
19513 "section L</REMOTE CONTROL AND CSH> below."
19514 msgstr ""
19515
19516 #. type: =item
19517 #: ../fish/guestfish.pod:194
19518 msgid "B<-d libvirt-domain>"
19519 msgstr ""
19520
19521 #. type: =item
19522 #: ../fish/guestfish.pod:196
19523 msgid "B<--domain libvirt-domain>"
19524 msgstr ""
19525
19526 #. type: textblock
19527 #: ../fish/guestfish.pod:198 ../fuse/guestmount.pod:92
19528 msgid ""
19529 "Add disks from the named libvirt domain.  If the I<--ro> option is also "
19530 "used, then any libvirt domain can be used.  However in write mode, only "
19531 "libvirt domains which are shut down can be named here."
19532 msgstr ""
19533
19534 #. type: textblock
19535 #: ../fish/guestfish.pod:202
19536 msgid ""
19537 "Using this flag is mostly equivalent to using the C<add-domain> command, "
19538 "with C<readonly:true> if the I<--ro> flag was given, and with C<format:...> "
19539 "if the I<--format:...> flag was given."
19540 msgstr ""
19541
19542 #. type: =item
19543 #: ../fish/guestfish.pod:206
19544 msgid "B<-D>"
19545 msgstr ""
19546
19547 #. type: =item
19548 #: ../fish/guestfish.pod:208
19549 msgid "B<--no-dest-paths>"
19550 msgstr ""
19551
19552 #. type: textblock
19553 #: ../fish/guestfish.pod:210
19554 msgid ""
19555 "Don't tab-complete paths on the guest filesystem.  It is useful to be able "
19556 "to hit the tab key to complete paths on the guest filesystem, but this "
19557 "causes extra \"hidden\" guestfs calls to be made, so this option is here to "
19558 "allow this feature to be disabled."
19559 msgstr ""
19560
19561 #. type: =item
19562 #: ../fish/guestfish.pod:215 ../fuse/guestmount.pod:108
19563 msgid "B<--echo-keys>"
19564 msgstr ""
19565
19566 #. type: textblock
19567 #: ../fish/guestfish.pod:217 ../fuse/guestmount.pod:110
19568 msgid ""
19569 "When prompting for keys and passphrases, guestfish normally turns echoing "
19570 "off so you cannot see what you are typing.  If you are not worried about "
19571 "Tempest attacks and there is no one else in the room you can specify this "
19572 "flag to see what you are typing."
19573 msgstr ""
19574
19575 #. type: =item
19576 #: ../fish/guestfish.pod:222
19577 msgid "B<-f file>"
19578 msgstr ""
19579
19580 #. type: =item
19581 #: ../fish/guestfish.pod:224
19582 msgid "B<--file file>"
19583 msgstr ""
19584
19585 #. type: textblock
19586 #: ../fish/guestfish.pod:226
19587 msgid "Read commands from C<file>.  To write pure guestfish scripts, use:"
19588 msgstr ""
19589
19590 #. type: verbatim
19591 #: ../fish/guestfish.pod:229
19592 #, no-wrap
19593 msgid ""
19594 " #!/usr/bin/guestfish -f\n"
19595 "\n"
19596 msgstr ""
19597
19598 #. type: =item
19599 #: ../fish/guestfish.pod:231
19600 msgid "B<--format=raw|qcow2|..>"
19601 msgstr ""
19602
19603 #. type: =item
19604 #: ../fish/guestfish.pod:233
19605 msgid "B<--format>"
19606 msgstr ""
19607
19608 #. type: textblock
19609 #: ../fish/guestfish.pod:235 ../fuse/guestmount.pod:117
19610 msgid ""
19611 "The default for the I<-a> option is to auto-detect the format of the disk "
19612 "image.  Using this forces the disk format for I<-a> options which follow on "
19613 "the command line.  Using I<--format> with no argument switches back to auto-"
19614 "detection for subsequent I<-a> options."
19615 msgstr ""
19616
19617 #. type: verbatim
19618 #: ../fish/guestfish.pod:242
19619 #, no-wrap
19620 msgid ""
19621 " guestfish --format=raw -a disk.img\n"
19622 "\n"
19623 msgstr ""
19624
19625 #. type: textblock
19626 #: ../fish/guestfish.pod:244
19627 msgid "forces raw format (no auto-detection) for C<disk.img>."
19628 msgstr ""
19629
19630 #. type: verbatim
19631 #: ../fish/guestfish.pod:246
19632 #, no-wrap
19633 msgid ""
19634 " guestfish --format=raw -a disk.img --format -a another.img\n"
19635 "\n"
19636 msgstr ""
19637
19638 #. type: textblock
19639 #: ../fish/guestfish.pod:248
19640 msgid ""
19641 "forces raw format (no auto-detection) for C<disk.img> and reverts to auto-"
19642 "detection for C<another.img>."
19643 msgstr ""
19644
19645 #. type: textblock
19646 #: ../fish/guestfish.pod:251
19647 msgid ""
19648 "If you have untrusted raw-format guest disk images, you should use this "
19649 "option to specify the disk format.  This avoids a possible security problem "
19650 "with malicious guests (CVE-2010-3851).  See also L</add-drive-opts>."
19651 msgstr ""
19652
19653 #. type: =item
19654 #: ../fish/guestfish.pod:256
19655 msgid "B<-i>"
19656 msgstr ""
19657
19658 #. type: =item
19659 #: ../fish/guestfish.pod:258
19660 msgid "B<--inspector>"
19661 msgstr ""
19662
19663 #. type: textblock
19664 #: ../fish/guestfish.pod:260 ../fuse/guestmount.pod:137
19665 msgid ""
19666 "Using L<virt-inspector(1)> code, inspect the disks looking for an operating "
19667 "system and mount filesystems as they would be mounted on the real virtual "
19668 "machine."
19669 msgstr ""
19670
19671 #. type: textblock
19672 #: ../fish/guestfish.pod:264
19673 msgid "Typical usage is either:"
19674 msgstr ""
19675
19676 #. type: verbatim
19677 #: ../fish/guestfish.pod:266
19678 #, no-wrap
19679 msgid ""
19680 " guestfish -d myguest -i\n"
19681 "\n"
19682 msgstr ""
19683
19684 #. type: textblock
19685 #: ../fish/guestfish.pod:268
19686 msgid "(for an inactive libvirt domain called I<myguest>), or:"
19687 msgstr ""
19688
19689 #. type: verbatim
19690 #: ../fish/guestfish.pod:270
19691 #, no-wrap
19692 msgid ""
19693 " guestfish --ro -d myguest -i\n"
19694 "\n"
19695 msgstr ""
19696
19697 #. type: textblock
19698 #: ../fish/guestfish.pod:272
19699 msgid "(for active domains, readonly), or specify the block device directly:"
19700 msgstr ""
19701
19702 #. type: verbatim
19703 #: ../fish/guestfish.pod:274
19704 #, no-wrap
19705 msgid ""
19706 " guestfish --rw -a /dev/Guests/MyGuest -i\n"
19707 "\n"
19708 msgstr ""
19709
19710 #. type: textblock
19711 #: ../fish/guestfish.pod:276
19712 msgid ""
19713 "Note that the command line syntax changed slightly over older versions of "
19714 "guestfish.  You can still use the old syntax:"
19715 msgstr ""
19716
19717 #. type: verbatim
19718 #: ../fish/guestfish.pod:279
19719 #, no-wrap
19720 msgid ""
19721 " guestfish [--ro] -i disk.img\n"
19722 "\n"
19723 msgstr ""
19724
19725 #. type: verbatim
19726 #: ../fish/guestfish.pod:281
19727 #, no-wrap
19728 msgid ""
19729 " guestfish [--ro] -i libvirt-domain\n"
19730 "\n"
19731 msgstr ""
19732
19733 #. type: textblock
19734 #: ../fish/guestfish.pod:283
19735 msgid ""
19736 "Using this flag is mostly equivalent to using the C<inspect-os> command and "
19737 "then using other commands to mount the filesystems that were found."
19738 msgstr ""
19739
19740 #. type: =item
19741 #: ../fish/guestfish.pod:287 ../fuse/guestmount.pod:141
19742 msgid "B<--keys-from-stdin>"
19743 msgstr ""
19744
19745 #. type: textblock
19746 #: ../fish/guestfish.pod:289 ../fuse/guestmount.pod:143
19747 msgid ""
19748 "Read key or passphrase parameters from stdin.  The default is to try to read "
19749 "passphrases from the user by opening C</dev/tty>."
19750 msgstr ""
19751
19752 #. type: =item
19753 #: ../fish/guestfish.pod:292
19754 msgid "B<--listen>"
19755 msgstr ""
19756
19757 #. type: textblock
19758 #: ../fish/guestfish.pod:294
19759 msgid ""
19760 "Fork into the background and listen for remote commands.  See section L</"
19761 "REMOTE CONTROL GUESTFISH OVER A SOCKET> below."
19762 msgstr ""
19763
19764 #. type: =item
19765 #: ../fish/guestfish.pod:297 ../fuse/guestmount.pod:146
19766 msgid "B<--live>"
19767 msgstr ""
19768
19769 #. type: textblock
19770 #: ../fish/guestfish.pod:299 ../fuse/guestmount.pod:148
19771 msgid ""
19772 "Connect to a live virtual machine.  (Experimental, see L<guestfs(3)/"
19773 "ATTACHING TO RUNNING DAEMONS>)."
19774 msgstr ""
19775
19776 #. type: =item
19777 #: ../fish/guestfish.pod:302 ../fuse/guestmount.pod:151
19778 msgid "B<-m dev[:mountpoint[:options]]>"
19779 msgstr ""
19780
19781 #. type: =item
19782 #: ../fish/guestfish.pod:304 ../fuse/guestmount.pod:153
19783 msgid "B<--mount dev[:mountpoint[:options]]>"
19784 msgstr ""
19785
19786 #. type: textblock
19787 #: ../fish/guestfish.pod:306
19788 msgid "Mount the named partition or logical volume on the given mountpoint."
19789 msgstr ""
19790
19791 #. type: textblock
19792 #: ../fish/guestfish.pod:308
19793 msgid "If the mountpoint is omitted, it defaults to C</>."
19794 msgstr ""
19795
19796 #. type: textblock
19797 #: ../fish/guestfish.pod:310
19798 msgid "You have to mount something on C</> before most commands will work."
19799 msgstr ""
19800
19801 #. type: textblock
19802 #: ../fish/guestfish.pod:312
19803 msgid ""
19804 "If any I<-m> or I<--mount> options are given, the guest is automatically "
19805 "launched."
19806 msgstr ""
19807
19808 #. type: textblock
19809 #: ../fish/guestfish.pod:315
19810 msgid ""
19811 "If you don't know what filesystems a disk image contains, you can either run "
19812 "guestfish without this option, then list the partitions, filesystems and LVs "
19813 "available (see L</list-partitions>, L</list-filesystems> and L</lvs> "
19814 "commands), or you can use the L<virt-filesystems(1)> program."
19815 msgstr ""
19816
19817 #. type: textblock
19818 #: ../fish/guestfish.pod:321 ../fuse/guestmount.pod:161
19819 msgid ""
19820 "The third (and rarely used) part of the mount parameter is the list of mount "
19821 "options used to mount the underlying filesystem.  If this is not given, then "
19822 "the mount options are either the empty string or C<ro> (the latter if the "
19823 "I<--ro> flag is used).  By specifying the mount options, you override this "
19824 "default choice.  Probably the only time you would use this is to enable ACLs "
19825 "and/or extended attributes if the filesystem can support them:"
19826 msgstr ""
19827
19828 #. type: verbatim
19829 #: ../fish/guestfish.pod:329 ../fuse/guestmount.pod:169
19830 #, no-wrap
19831 msgid ""
19832 " -m /dev/sda1:/:acl,user_xattr\n"
19833 "\n"
19834 msgstr ""
19835
19836 #. type: textblock
19837 #: ../fish/guestfish.pod:331
19838 msgid "Using this flag is equivalent to using the C<mount-options> command."
19839 msgstr ""
19840
19841 #. type: =item
19842 #: ../fish/guestfish.pod:333
19843 msgid "B<-n>"
19844 msgstr ""
19845
19846 #. type: =item
19847 #: ../fish/guestfish.pod:335
19848 msgid "B<--no-sync>"
19849 msgstr ""
19850
19851 #. type: textblock
19852 #: ../fish/guestfish.pod:337
19853 msgid ""
19854 "Disable autosync.  This is enabled by default.  See the discussion of "
19855 "autosync in the L<guestfs(3)> manpage."
19856 msgstr ""
19857
19858 #. type: =item
19859 #: ../fish/guestfish.pod:340
19860 msgid "B<-N type>"
19861 msgstr ""
19862
19863 #. type: =item
19864 #: ../fish/guestfish.pod:342
19865 msgid "B<--new type>"
19866 msgstr ""
19867
19868 #. type: =item
19869 #: ../fish/guestfish.pod:344
19870 msgid "B<-N help>"
19871 msgstr ""
19872
19873 #. type: textblock
19874 #: ../fish/guestfish.pod:346
19875 msgid ""
19876 "Prepare a fresh disk image formatted as \"type\".  This is an alternative to "
19877 "the I<-a> option: whereas I<-a> adds an existing disk, I<-N> creates a "
19878 "preformatted disk with a filesystem and adds it.  See L</PREPARED DISK "
19879 "IMAGES> below."
19880 msgstr ""
19881
19882 #. type: =item
19883 #: ../fish/guestfish.pod:351
19884 msgid "B<--progress-bars>"
19885 msgstr ""
19886
19887 #. type: textblock
19888 #: ../fish/guestfish.pod:353
19889 msgid "Enable progress bars, even when guestfish is used non-interactively."
19890 msgstr ""
19891
19892 #. type: textblock
19893 #: ../fish/guestfish.pod:355
19894 msgid ""
19895 "Progress bars are enabled by default when guestfish is used as an "
19896 "interactive shell."
19897 msgstr ""
19898
19899 #. type: =item
19900 #: ../fish/guestfish.pod:358
19901 msgid "B<--no-progress-bars>"
19902 msgstr ""
19903
19904 #. type: textblock
19905 #: ../fish/guestfish.pod:360
19906 msgid "Disable progress bars."
19907 msgstr ""
19908
19909 #. type: =item
19910 #: ../fish/guestfish.pod:362
19911 msgid "B<--remote[=pid]>"
19912 msgstr ""
19913
19914 #. type: textblock
19915 #: ../fish/guestfish.pod:364
19916 msgid ""
19917 "Send remote commands to C<$GUESTFISH_PID> or C<pid>.  See section L</REMOTE "
19918 "CONTROL GUESTFISH OVER A SOCKET> below."
19919 msgstr ""
19920
19921 #. type: =item
19922 #: ../fish/guestfish.pod:367
19923 msgid "B<-r>"
19924 msgstr ""
19925
19926 #. type: =item
19927 #: ../fish/guestfish.pod:369
19928 msgid "B<--ro>"
19929 msgstr ""
19930
19931 #. type: textblock
19932 #: ../fish/guestfish.pod:371
19933 msgid ""
19934 "This changes the I<-a>, I<-d> and I<-m> options so that disks are added and "
19935 "mounts are done read-only."
19936 msgstr ""
19937
19938 #. type: textblock
19939 #: ../fish/guestfish.pod:374
19940 msgid ""
19941 "The option must always be used if the disk image or virtual machine might be "
19942 "running, and is generally recommended in cases where you don't need write "
19943 "access to the disk."
19944 msgstr ""
19945
19946 #. type: textblock
19947 #: ../fish/guestfish.pod:378
19948 msgid ""
19949 "Note that prepared disk images created with I<-N> are not affected by this "
19950 "option.  Also commands like C<add> are not affected - you have to specify "
19951 "the C<readonly:true> option explicitly if you need it."
19952 msgstr ""
19953
19954 #. type: textblock
19955 #: ../fish/guestfish.pod:382
19956 msgid "See also L</OPENING DISKS FOR READ AND WRITE> below."
19957 msgstr ""
19958
19959 #. type: =item
19960 #: ../fish/guestfish.pod:384 ../fuse/guestmount.pod:225
19961 msgid "B<--selinux>"
19962 msgstr ""
19963
19964 #. type: textblock
19965 #: ../fish/guestfish.pod:386
19966 msgid "Enable SELinux support for the guest.  See L<guestfs(3)/SELINUX>."
19967 msgstr ""
19968
19969 #. type: =item
19970 #: ../fish/guestfish.pod:388
19971 msgid "B<-v>"
19972 msgstr ""
19973
19974 #. type: =item
19975 #: ../fish/guestfish.pod:390
19976 msgid "B<--verbose>"
19977 msgstr ""
19978
19979 #. type: textblock
19980 #: ../fish/guestfish.pod:392
19981 msgid ""
19982 "Enable very verbose messages.  This is particularly useful if you find a bug."
19983 msgstr ""
19984
19985 #. type: =item
19986 #: ../fish/guestfish.pod:395
19987 msgid "B<-V>"
19988 msgstr ""
19989
19990 #. type: =item
19991 #: ../fish/guestfish.pod:397 ../tools/virt-edit.pl:97
19992 #: ../tools/virt-win-reg.pl:112 ../tools/virt-list-filesystems.pl:69
19993 #: ../tools/virt-tar.pl:119 ../tools/virt-make-fs.pl:169
19994 #: ../tools/virt-list-partitions.pl:70
19995 msgid "B<--version>"
19996 msgstr ""
19997
19998 #. type: textblock
19999 #: ../fish/guestfish.pod:399
20000 msgid "Display the guestfish / libguestfs version number and exit."
20001 msgstr ""
20002
20003 #. type: =item
20004 #: ../fish/guestfish.pod:401
20005 msgid "B<-w>"
20006 msgstr ""
20007
20008 #. type: =item
20009 #: ../fish/guestfish.pod:403
20010 msgid "B<--rw>"
20011 msgstr ""
20012
20013 #. type: textblock
20014 #: ../fish/guestfish.pod:405 ../fuse/guestmount.pod:239
20015 msgid ""
20016 "This changes the I<-a>, I<-d> and I<-m> options so that disks are added and "
20017 "mounts are done read-write."
20018 msgstr ""
20019
20020 #. type: textblock
20021 #: ../fish/guestfish.pod:408
20022 msgid "See L</OPENING DISKS FOR READ AND WRITE> below."
20023 msgstr ""
20024
20025 #. type: =item
20026 #: ../fish/guestfish.pod:410
20027 msgid "B<-x>"
20028 msgstr ""
20029
20030 #. type: textblock
20031 #: ../fish/guestfish.pod:412
20032 msgid "Echo each command before executing it."
20033 msgstr ""
20034
20035 #. type: =head1
20036 #: ../fish/guestfish.pod:416
20037 msgid "COMMANDS ON COMMAND LINE"
20038 msgstr ""
20039
20040 #. type: textblock
20041 #: ../fish/guestfish.pod:418
20042 msgid ""
20043 "Any additional (non-option) arguments are treated as commands to execute."
20044 msgstr ""
20045
20046 #. type: textblock
20047 #: ../fish/guestfish.pod:421
20048 msgid ""
20049 "Commands to execute should be separated by a colon (C<:>), where the colon "
20050 "is a separate parameter.  Thus:"
20051 msgstr ""
20052
20053 #. type: verbatim
20054 #: ../fish/guestfish.pod:424
20055 #, no-wrap
20056 msgid ""
20057 " guestfish cmd [args...] : cmd [args...] : cmd [args...] ...\n"
20058 "\n"
20059 msgstr ""
20060
20061 #. type: textblock
20062 #: ../fish/guestfish.pod:426
20063 msgid ""
20064 "If there are no additional arguments, then we enter a shell, either an "
20065 "interactive shell with a prompt (if the input is a terminal) or a non-"
20066 "interactive shell."
20067 msgstr ""
20068
20069 #. type: textblock
20070 #: ../fish/guestfish.pod:430
20071 msgid ""
20072 "In either command line mode or non-interactive shell, the first command that "
20073 "gives an error causes the whole shell to exit.  In interactive mode (with a "
20074 "prompt) if a command fails, you can continue to enter commands."
20075 msgstr ""
20076
20077 #. type: =head1
20078 #: ../fish/guestfish.pod:435
20079 msgid "USING launch (OR run)"
20080 msgstr ""
20081
20082 #. type: textblock
20083 #: ../fish/guestfish.pod:437
20084 msgid ""
20085 "As with L<guestfs(3)>, you must first configure your guest by adding disks, "
20086 "then launch it, then mount any disks you need, and finally issue actions/"
20087 "commands.  So the general order of the day is:"
20088 msgstr ""
20089
20090 #. type: textblock
20091 #: ../fish/guestfish.pod:445
20092 msgid "add or -a/--add"
20093 msgstr ""
20094
20095 #. type: textblock
20096 #: ../fish/guestfish.pod:449
20097 msgid "launch (aka run)"
20098 msgstr ""
20099
20100 #. type: textblock
20101 #: ../fish/guestfish.pod:453
20102 msgid "mount or -m/--mount"
20103 msgstr ""
20104
20105 #. type: textblock
20106 #: ../fish/guestfish.pod:457
20107 msgid "any other commands"
20108 msgstr ""
20109
20110 #. type: textblock
20111 #: ../fish/guestfish.pod:461
20112 msgid ""
20113 "C<run> is a synonym for C<launch>.  You must C<launch> (or C<run>)  your "
20114 "guest before mounting or performing any other commands."
20115 msgstr ""
20116
20117 #. type: textblock
20118 #: ../fish/guestfish.pod:464
20119 msgid ""
20120 "The only exception is that if any of the I<-i>, I<-m>, I<--mount>, I<-N> or "
20121 "I<--new> options were given then C<run> is done automatically, simply "
20122 "because guestfish can't perform the action you asked for without doing this."
20123 msgstr ""
20124
20125 #. type: =head1
20126 #: ../fish/guestfish.pod:469
20127 msgid "OPENING DISKS FOR READ AND WRITE"
20128 msgstr ""
20129
20130 #. type: textblock
20131 #: ../fish/guestfish.pod:471
20132 msgid ""
20133 "The guestfish, L<guestmount(1)> and L<virt-rescue(1)> options I<--ro> and "
20134 "I<--rw> affect whether the other command line options I<-a>, I<-c>, I<-d>, "
20135 "I<-i> and I<-m> open disk images read-only or for writing."
20136 msgstr ""
20137
20138 #. type: textblock
20139 #: ../fish/guestfish.pod:476
20140 msgid ""
20141 "In libguestfs E<le> 1.10, guestfish, guestmount and virt-rescue defaulted to "
20142 "opening disk images supplied on the command line for write.  To open a disk "
20143 "image read-only you have to do I<-a image --ro>."
20144 msgstr ""
20145
20146 #. type: textblock
20147 #: ../fish/guestfish.pod:480
20148 msgid ""
20149 "This matters: If you accidentally open a live VM disk image writable then "
20150 "you will cause irreversible disk corruption."
20151 msgstr ""
20152
20153 #. type: textblock
20154 #: ../fish/guestfish.pod:483
20155 msgid ""
20156 "By libguestfs 1.12 we intend to change the default the other way.  Disk "
20157 "images will be opened read-only.  You will have to either specify "
20158 "I<guestfish --rw>, I<guestmount --rw>, I<virt-rescue --rw>, or change the "
20159 "configuration file C</etc/libguestfs-tools.conf> in order to get write "
20160 "access for disk images specified by those other command line options."
20161 msgstr ""
20162
20163 #. type: textblock
20164 #: ../fish/guestfish.pod:490
20165 msgid ""
20166 "This version of guestfish, guestmount and virt-rescue has a I<--rw> option "
20167 "which does nothing (it is already the default).  However it is highly "
20168 "recommended that you use this option to indicate that you need write access, "
20169 "and prepare your scripts for the day when this option will be required for "
20170 "write access."
20171 msgstr ""
20172
20173 #. type: textblock
20174 #: ../fish/guestfish.pod:496
20175 msgid ""
20176 "B<Note:> This does I<not> affect commands like L</add> and L</mount>, or any "
20177 "other libguestfs program apart from guestfish and guestmount."
20178 msgstr ""
20179
20180 #. type: =head1
20181 #: ../fish/guestfish.pod:499
20182 msgid "QUOTING"
20183 msgstr ""
20184
20185 #. type: textblock
20186 #: ../fish/guestfish.pod:501
20187 msgid ""
20188 "You can quote ordinary parameters using either single or double quotes.  For "
20189 "example:"
20190 msgstr ""
20191
20192 #. type: verbatim
20193 #: ../fish/guestfish.pod:504
20194 #, no-wrap
20195 msgid ""
20196 " add \"file with a space.img\"\n"
20197 "\n"
20198 msgstr ""
20199
20200 #. type: verbatim
20201 #: ../fish/guestfish.pod:506
20202 #, no-wrap
20203 msgid ""
20204 " rm '/file name'\n"
20205 "\n"
20206 msgstr ""
20207
20208 #. type: verbatim
20209 #: ../fish/guestfish.pod:508
20210 #, no-wrap
20211 msgid ""
20212 " rm '/\"'\n"
20213 "\n"
20214 msgstr ""
20215
20216 #. type: textblock
20217 #: ../fish/guestfish.pod:510
20218 msgid ""
20219 "A few commands require a list of strings to be passed.  For these, use a "
20220 "whitespace-separated list, enclosed in quotes.  Strings containing "
20221 "whitespace to be passed through must be enclosed in single quotes.  A "
20222 "literal single quote must be escaped with a backslash."
20223 msgstr ""
20224
20225 #. type: verbatim
20226 #: ../fish/guestfish.pod:515
20227 #, no-wrap
20228 msgid ""
20229 " vgcreate VG \"/dev/sda1 /dev/sdb1\"\n"
20230 " command \"/bin/echo 'foo      bar'\"\n"
20231 " command \"/bin/echo \\'foo\\'\"\n"
20232 "\n"
20233 msgstr ""
20234
20235 #. type: =head1
20236 #: ../fish/guestfish.pod:519
20237 msgid "OPTIONAL ARGUMENTS"
20238 msgstr ""
20239
20240 #. type: textblock
20241 #: ../fish/guestfish.pod:521
20242 msgid ""
20243 "Some commands take optional arguments.  These arguments appear in this "
20244 "documentation as C<[argname:..]>.  You can use them as in these examples:"
20245 msgstr ""
20246
20247 #. type: verbatim
20248 #: ../fish/guestfish.pod:525
20249 #, no-wrap
20250 msgid ""
20251 " add-drive-opts filename\n"
20252 "\n"
20253 msgstr ""
20254
20255 #. type: verbatim
20256 #: ../fish/guestfish.pod:527
20257 #, no-wrap
20258 msgid ""
20259 " add-drive-opts filename readonly:true\n"
20260 "\n"
20261 msgstr ""
20262
20263 #. type: verbatim
20264 #: ../fish/guestfish.pod:529
20265 #, no-wrap
20266 msgid ""
20267 " add-drive-opts filename format:qcow2 readonly:false\n"
20268 "\n"
20269 msgstr ""
20270
20271 #. type: textblock
20272 #: ../fish/guestfish.pod:531
20273 msgid ""
20274 "Each optional argument can appear at most once.  All optional arguments must "
20275 "appear after the required ones."
20276 msgstr ""
20277
20278 #. type: =head1
20279 #: ../fish/guestfish.pod:534
20280 msgid "NUMBERS"
20281 msgstr ""
20282
20283 #. type: textblock
20284 #: ../fish/guestfish.pod:536
20285 msgid ""
20286 "This section applies to all commands which can take integers as parameters."
20287 msgstr ""
20288
20289 #. type: =head2
20290 #: ../fish/guestfish.pod:539
20291 msgid "SIZE SUFFIX"
20292 msgstr ""
20293
20294 #. type: textblock
20295 #: ../fish/guestfish.pod:541
20296 msgid ""
20297 "When the command takes a parameter measured in bytes, you can use one of the "
20298 "following suffixes to specify kilobytes, megabytes and larger sizes:"
20299 msgstr ""
20300
20301 #. type: =item
20302 #: ../fish/guestfish.pod:547
20303 msgid "B<k> or B<K> or B<KiB>"
20304 msgstr ""
20305
20306 #. type: textblock
20307 #: ../fish/guestfish.pod:549
20308 msgid "The size in kilobytes (multiplied by 1024)."
20309 msgstr ""
20310
20311 #. type: =item
20312 #: ../fish/guestfish.pod:551
20313 msgid "B<KB>"
20314 msgstr ""
20315
20316 #. type: textblock
20317 #: ../fish/guestfish.pod:553
20318 msgid "The size in SI 1000 byte units."
20319 msgstr ""
20320
20321 #. type: =item
20322 #: ../fish/guestfish.pod:555
20323 msgid "B<M> or B<MiB>"
20324 msgstr ""
20325
20326 #. type: textblock
20327 #: ../fish/guestfish.pod:557
20328 msgid "The size in megabytes (multiplied by 1048576)."
20329 msgstr ""
20330
20331 #. type: =item
20332 #: ../fish/guestfish.pod:559
20333 msgid "B<MB>"
20334 msgstr ""
20335
20336 #. type: textblock
20337 #: ../fish/guestfish.pod:561
20338 msgid "The size in SI 1000000 byte units."
20339 msgstr ""
20340
20341 #. type: =item
20342 #: ../fish/guestfish.pod:563
20343 msgid "B<G> or B<GiB>"
20344 msgstr ""
20345
20346 #. type: textblock
20347 #: ../fish/guestfish.pod:565
20348 msgid "The size in gigabytes (multiplied by 2**30)."
20349 msgstr ""
20350
20351 #. type: =item
20352 #: ../fish/guestfish.pod:567
20353 msgid "B<GB>"
20354 msgstr ""
20355
20356 #. type: textblock
20357 #: ../fish/guestfish.pod:569
20358 msgid "The size in SI 10**9 byte units."
20359 msgstr ""
20360
20361 #. type: =item
20362 #: ../fish/guestfish.pod:571
20363 msgid "B<T> or B<TiB>"
20364 msgstr ""
20365
20366 #. type: textblock
20367 #: ../fish/guestfish.pod:573
20368 msgid "The size in terabytes (multiplied by 2**40)."
20369 msgstr ""
20370
20371 #. type: =item
20372 #: ../fish/guestfish.pod:575
20373 msgid "B<TB>"
20374 msgstr ""
20375
20376 #. type: textblock
20377 #: ../fish/guestfish.pod:577
20378 msgid "The size in SI 10**12 byte units."
20379 msgstr ""
20380
20381 #. type: =item
20382 #: ../fish/guestfish.pod:579
20383 msgid "B<P> or B<PiB>"
20384 msgstr ""
20385
20386 #. type: textblock
20387 #: ../fish/guestfish.pod:581
20388 msgid "The size in petabytes (multiplied by 2**50)."
20389 msgstr ""
20390
20391 #. type: =item
20392 #: ../fish/guestfish.pod:583
20393 msgid "B<PB>"
20394 msgstr ""
20395
20396 #. type: textblock
20397 #: ../fish/guestfish.pod:585
20398 msgid "The size in SI 10**15 byte units."
20399 msgstr ""
20400
20401 #. type: =item
20402 #: ../fish/guestfish.pod:587
20403 msgid "B<E> or B<EiB>"
20404 msgstr ""
20405
20406 #. type: textblock
20407 #: ../fish/guestfish.pod:589
20408 msgid "The size in exabytes (multiplied by 2**60)."
20409 msgstr ""
20410
20411 #. type: =item
20412 #: ../fish/guestfish.pod:591
20413 msgid "B<EB>"
20414 msgstr ""
20415
20416 #. type: textblock
20417 #: ../fish/guestfish.pod:593
20418 msgid "The size in SI 10**18 byte units."
20419 msgstr ""
20420
20421 #. type: =item
20422 #: ../fish/guestfish.pod:595
20423 msgid "B<Z> or B<ZiB>"
20424 msgstr ""
20425
20426 #. type: textblock
20427 #: ../fish/guestfish.pod:597
20428 msgid "The size in zettabytes (multiplied by 2**70)."
20429 msgstr ""
20430
20431 #. type: =item
20432 #: ../fish/guestfish.pod:599
20433 msgid "B<ZB>"
20434 msgstr ""
20435
20436 #. type: textblock
20437 #: ../fish/guestfish.pod:601
20438 msgid "The size in SI 10**21 byte units."
20439 msgstr ""
20440
20441 #. type: =item
20442 #: ../fish/guestfish.pod:603
20443 msgid "B<Y> or B<YiB>"
20444 msgstr ""
20445
20446 #. type: textblock
20447 #: ../fish/guestfish.pod:605
20448 msgid "The size in yottabytes (multiplied by 2**80)."
20449 msgstr ""
20450
20451 #. type: =item
20452 #: ../fish/guestfish.pod:607
20453 msgid "B<YB>"
20454 msgstr ""
20455
20456 #. type: textblock
20457 #: ../fish/guestfish.pod:609
20458 msgid "The size in SI 10**24 byte units."
20459 msgstr ""
20460
20461 #. type: verbatim
20462 #: ../fish/guestfish.pod:615
20463 #, no-wrap
20464 msgid ""
20465 " truncate-size /file 1G\n"
20466 "\n"
20467 msgstr ""
20468
20469 #. type: textblock
20470 #: ../fish/guestfish.pod:617
20471 msgid "would truncate the file to 1 gigabyte."
20472 msgstr ""
20473
20474 #. type: textblock
20475 #: ../fish/guestfish.pod:619
20476 msgid ""
20477 "Be careful because a few commands take sizes in kilobytes or megabytes (eg. "
20478 "the parameter to L</memsize> is specified in megabytes already).  Adding a "
20479 "suffix will probably not do what you expect."
20480 msgstr ""
20481
20482 #. type: =head2
20483 #: ../fish/guestfish.pod:623
20484 msgid "OCTAL AND HEXADECIMAL NUMBERS"
20485 msgstr ""
20486
20487 #. type: textblock
20488 #: ../fish/guestfish.pod:625
20489 msgid ""
20490 "For specifying the radix (base) use the C convention: C<0> to prefix an "
20491 "octal number or C<0x> to prefix a hexadecimal number.  For example:"
20492 msgstr ""
20493
20494 #. type: verbatim
20495 #: ../fish/guestfish.pod:628
20496 #, no-wrap
20497 msgid ""
20498 " 1234      decimal number 1234\n"
20499 " 02322     octal number, equivalent to decimal 1234\n"
20500 " 0x4d2     hexadecimal number, equivalent to decimal 1234\n"
20501 "\n"
20502 msgstr ""
20503
20504 #. type: textblock
20505 #: ../fish/guestfish.pod:632
20506 msgid ""
20507 "When using the C<chmod> command, you almost always want to specify an octal "
20508 "number for the mode, and you must prefix it with C<0> (unlike the Unix "
20509 "L<chmod(1)> program):"
20510 msgstr ""
20511
20512 #. type: verbatim
20513 #: ../fish/guestfish.pod:636
20514 #, no-wrap
20515 msgid ""
20516 " chmod 0777 /public  # OK\n"
20517 " chmod 777 /public   # WRONG! This is mode 777 decimal = 01411 octal.\n"
20518 "\n"
20519 msgstr ""
20520
20521 #. type: textblock
20522 #: ../fish/guestfish.pod:639
20523 msgid ""
20524 "Commands that return numbers usually print them in decimal, but some "
20525 "commands print numbers in other radices (eg. C<umask> prints the mode in "
20526 "octal, preceeded by C<0>)."
20527 msgstr ""
20528
20529 #. type: =head1
20530 #: ../fish/guestfish.pod:643
20531 msgid "WILDCARDS AND GLOBBING"
20532 msgstr ""
20533
20534 #. type: textblock
20535 #: ../fish/guestfish.pod:645
20536 msgid ""
20537 "Neither guestfish nor the underlying guestfs API performs wildcard expansion "
20538 "(globbing) by default.  So for example the following will not do what you "
20539 "expect:"
20540 msgstr ""
20541
20542 #. type: verbatim
20543 #: ../fish/guestfish.pod:649
20544 #, no-wrap
20545 msgid ""
20546 " rm-rf /home/*\n"
20547 "\n"
20548 msgstr ""
20549
20550 #. type: textblock
20551 #: ../fish/guestfish.pod:651
20552 msgid ""
20553 "Assuming you don't have a directory called literally C</home/*> then the "
20554 "above command will return an error."
20555 msgstr ""
20556
20557 #. type: textblock
20558 #: ../fish/guestfish.pod:654
20559 msgid "To perform wildcard expansion, use the C<glob> command."
20560 msgstr ""
20561
20562 #. type: verbatim
20563 #: ../fish/guestfish.pod:656
20564 #, no-wrap
20565 msgid ""
20566 " glob rm-rf /home/*\n"
20567 "\n"
20568 msgstr ""
20569
20570 #. type: textblock
20571 #: ../fish/guestfish.pod:658
20572 msgid ""
20573 "runs C<rm-rf> on each path that matches (ie. potentially running the command "
20574 "many times), equivalent to:"
20575 msgstr ""
20576
20577 #. type: verbatim
20578 #: ../fish/guestfish.pod:661
20579 #, no-wrap
20580 msgid ""
20581 " rm-rf /home/jim\n"
20582 " rm-rf /home/joe\n"
20583 " rm-rf /home/mary\n"
20584 "\n"
20585 msgstr ""
20586
20587 #. type: textblock
20588 #: ../fish/guestfish.pod:665
20589 msgid "C<glob> only works on simple guest paths and not on device names."
20590 msgstr ""
20591
20592 #. type: textblock
20593 #: ../fish/guestfish.pod:667
20594 msgid ""
20595 "If you have several parameters, each containing a wildcard, then glob will "
20596 "perform a Cartesian product."
20597 msgstr ""
20598
20599 #. type: =head1
20600 #: ../fish/guestfish.pod:670
20601 msgid "COMMENTS"
20602 msgstr ""
20603
20604 #. type: textblock
20605 #: ../fish/guestfish.pod:672
20606 msgid ""
20607 "Any line which starts with a I<#> character is treated as a comment and "
20608 "ignored.  The I<#> can optionally be preceeded by whitespace, but B<not> by "
20609 "a command.  For example:"
20610 msgstr ""
20611
20612 #. type: verbatim
20613 #: ../fish/guestfish.pod:676
20614 #, no-wrap
20615 msgid ""
20616 " # this is a comment\n"
20617 "         # this is a comment\n"
20618 " foo # NOT a comment\n"
20619 "\n"
20620 msgstr ""
20621
20622 #. type: textblock
20623 #: ../fish/guestfish.pod:680
20624 msgid "Blank lines are also ignored."
20625 msgstr ""
20626
20627 #. type: =head1
20628 #: ../fish/guestfish.pod:682
20629 msgid "RUNNING COMMANDS LOCALLY"
20630 msgstr ""
20631
20632 #. type: textblock
20633 #: ../fish/guestfish.pod:684
20634 msgid ""
20635 "Any line which starts with a I<!> character is treated as a command sent to "
20636 "the local shell (C</bin/sh> or whatever L<system(3)> uses).  For example:"
20637 msgstr ""
20638
20639 #. type: verbatim
20640 #: ../fish/guestfish.pod:688
20641 #, no-wrap
20642 msgid ""
20643 " !mkdir local\n"
20644 " tgz-out /remote local/remote-data.tar.gz\n"
20645 "\n"
20646 msgstr ""
20647
20648 #. type: textblock
20649 #: ../fish/guestfish.pod:691
20650 msgid ""
20651 "will create a directory C<local> on the host, and then export the contents "
20652 "of C</remote> on the mounted filesystem to C<local/remote-data.tar.gz>.  "
20653 "(See C<tgz-out>)."
20654 msgstr ""
20655
20656 #. type: textblock
20657 #: ../fish/guestfish.pod:695
20658 msgid ""
20659 "To change the local directory, use the C<lcd> command.  C<!cd> will have no "
20660 "effect, due to the way that subprocesses work in Unix."
20661 msgstr ""
20662
20663 #. type: =head2
20664 #: ../fish/guestfish.pod:698
20665 msgid "LOCAL COMMANDS WITH INLINE EXECUTION"
20666 msgstr ""
20667
20668 #. type: textblock
20669 #: ../fish/guestfish.pod:700
20670 msgid ""
20671 "If a line starts with I<E<lt>!> then the shell command is executed (as for "
20672 "I<!>), but subsequently any output (stdout) of the shell command is parsed "
20673 "and executed as guestfish commands."
20674 msgstr ""
20675
20676 #. type: textblock
20677 #: ../fish/guestfish.pod:704
20678 msgid ""
20679 "Thus you can use shell script to construct arbitrary guestfish commands "
20680 "which are then parsed by guestfish."
20681 msgstr ""
20682
20683 #. type: textblock
20684 #: ../fish/guestfish.pod:707
20685 msgid ""
20686 "For example it is tedious to create a sequence of files (eg. C</foo.1> "
20687 "through C</foo.100>) using guestfish commands alone.  However this is simple "
20688 "if we use a shell script to create the guestfish commands for us:"
20689 msgstr ""
20690
20691 #. type: verbatim
20692 #: ../fish/guestfish.pod:712
20693 #, no-wrap
20694 msgid ""
20695 " <! for n in `seq 1 100`; do echo write /foo.$n $n; done\n"
20696 "\n"
20697 msgstr ""
20698
20699 #. type: textblock
20700 #: ../fish/guestfish.pod:714
20701 msgid "or with names like C</foo.001>:"
20702 msgstr ""
20703
20704 #. type: verbatim
20705 #: ../fish/guestfish.pod:716
20706 #, no-wrap
20707 msgid ""
20708 " <! for n in `seq 1 100`; do printf \"write /foo.%03d %d\\n\" $n $n; done\n"
20709 "\n"
20710 msgstr ""
20711
20712 #. type: textblock
20713 #: ../fish/guestfish.pod:718
20714 msgid ""
20715 "When using guestfish interactively it can be helpful to just run the shell "
20716 "script first (ie. remove the initial C<E<lt>> character so it is just an "
20717 "ordinary I<!> local command), see what guestfish commands it would run, and "
20718 "when you are happy with those prepend the C<E<lt>> character to run the "
20719 "guestfish commands for real."
20720 msgstr ""
20721
20722 #. type: =head1
20723 #: ../fish/guestfish.pod:724
20724 msgid "PIPES"
20725 msgstr ""
20726
20727 #. type: textblock
20728 #: ../fish/guestfish.pod:726
20729 msgid ""
20730 "Use C<command E<lt>spaceE<gt> | command> to pipe the output of the first "
20731 "command (a guestfish command) to the second command (any host command).  For "
20732 "example:"
20733 msgstr ""
20734
20735 #. type: verbatim
20736 #: ../fish/guestfish.pod:730
20737 #, no-wrap
20738 msgid ""
20739 " cat /etc/passwd | awk -F: '$3 == 0 { print }'\n"
20740 "\n"
20741 msgstr ""
20742
20743 #. type: textblock
20744 #: ../fish/guestfish.pod:732
20745 msgid ""
20746 "(where C<cat> is the guestfish cat command, but C<awk> is the host awk "
20747 "program).  The above command would list all accounts in the guest filesystem "
20748 "which have UID 0, ie. root accounts including backdoors.  Other examples:"
20749 msgstr ""
20750
20751 #. type: verbatim
20752 #: ../fish/guestfish.pod:737
20753 #, no-wrap
20754 msgid ""
20755 " hexdump /bin/ls | head\n"
20756 " list-devices | tail -1\n"
20757 " tgz-out / - | tar ztf -\n"
20758 "\n"
20759 msgstr ""
20760
20761 #. type: textblock
20762 #: ../fish/guestfish.pod:741
20763 msgid ""
20764 "The space before the pipe symbol is required, any space after the pipe "
20765 "symbol is optional.  Everything after the pipe symbol is just passed "
20766 "straight to the host shell, so it can contain redirections, globs and "
20767 "anything else that makes sense on the host side."
20768 msgstr ""
20769
20770 #. type: textblock
20771 #: ../fish/guestfish.pod:746
20772 msgid ""
20773 "To use a literal argument which begins with a pipe symbol, you have to quote "
20774 "it, eg:"
20775 msgstr ""
20776
20777 #. type: verbatim
20778 #: ../fish/guestfish.pod:749
20779 #, no-wrap
20780 msgid ""
20781 " echo \"|\"\n"
20782 "\n"
20783 msgstr ""
20784
20785 #. type: =head1
20786 #: ../fish/guestfish.pod:751
20787 msgid "HOME DIRECTORIES"
20788 msgstr ""
20789
20790 #. type: textblock
20791 #: ../fish/guestfish.pod:753
20792 msgid ""
20793 "If a parameter starts with the character C<~> then the tilde may be expanded "
20794 "as a home directory path (either C<~> for the current user's home directory, "
20795 "or C<~user> for another user)."
20796 msgstr ""
20797
20798 #. type: textblock
20799 #: ../fish/guestfish.pod:757
20800 msgid ""
20801 "Note that home directory expansion happens for users known I<on the host>, "
20802 "not in the guest filesystem."
20803 msgstr ""
20804
20805 #. type: textblock
20806 #: ../fish/guestfish.pod:760
20807 msgid ""
20808 "To use a literal argument which begins with a tilde, you have to quote it, "
20809 "eg:"
20810 msgstr ""
20811
20812 #. type: verbatim
20813 #: ../fish/guestfish.pod:763
20814 #, no-wrap
20815 msgid ""
20816 " echo \"~\"\n"
20817 "\n"
20818 msgstr ""
20819
20820 #. type: textblock
20821 #: ../fish/guestfish.pod:767
20822 msgid ""
20823 "Libguestfs has some support for Linux guests encrypted according to the "
20824 "Linux Unified Key Setup (LUKS) standard, which includes nearly all whole "
20825 "disk encryption systems used by modern Linux guests.  Currently only LVM-on-"
20826 "LUKS is supported."
20827 msgstr ""
20828
20829 #. type: textblock
20830 #: ../fish/guestfish.pod:772
20831 msgid "Identify encrypted block devices and partitions using L</vfs-type>:"
20832 msgstr ""
20833
20834 #. type: verbatim
20835 #: ../fish/guestfish.pod:774
20836 #, no-wrap
20837 msgid ""
20838 " ><fs> vfs-type /dev/sda2\n"
20839 " crypto_LUKS\n"
20840 "\n"
20841 msgstr ""
20842
20843 #. type: textblock
20844 #: ../fish/guestfish.pod:777
20845 msgid ""
20846 "Then open those devices using L</luks-open>.  This creates a device-mapper "
20847 "device called C</dev/mapper/luksdev>."
20848 msgstr ""
20849
20850 #. type: verbatim
20851 #: ../fish/guestfish.pod:780
20852 #, no-wrap
20853 msgid ""
20854 " ><fs> luks-open /dev/sda2 luksdev\n"
20855 " Enter key or passphrase (\"key\"): <enter the passphrase>\n"
20856 "\n"
20857 msgstr ""
20858
20859 #. type: textblock
20860 #: ../fish/guestfish.pod:783
20861 msgid ""
20862 "Finally you have to tell LVM to scan for volume groups on the newly created "
20863 "mapper device:"
20864 msgstr ""
20865
20866 #. type: verbatim
20867 #: ../fish/guestfish.pod:786
20868 #, no-wrap
20869 msgid ""
20870 " vgscan\n"
20871 " vg-activate-all true\n"
20872 "\n"
20873 msgstr ""
20874
20875 #. type: textblock
20876 #: ../fish/guestfish.pod:789
20877 msgid "The logical volume(s) can now be mounted in the usual way."
20878 msgstr ""
20879
20880 #. type: textblock
20881 #: ../fish/guestfish.pod:791
20882 msgid ""
20883 "Before closing a LUKS device you must unmount any logical volumes on it and "
20884 "deactivate the volume groups by calling C<vg-activate false VG> on each "
20885 "one.  Then you can close the mapper device:"
20886 msgstr ""
20887
20888 #. type: verbatim
20889 #: ../fish/guestfish.pod:795
20890 #, no-wrap
20891 msgid ""
20892 " vg-activate false /dev/VG\n"
20893 " luks-close /dev/mapper/luksdev\n"
20894 "\n"
20895 msgstr ""
20896
20897 #. type: =head1
20898 #: ../fish/guestfish.pod:798 ../tools/virt-edit.pl:342
20899 msgid "WINDOWS PATHS"
20900 msgstr ""
20901
20902 #. type: textblock
20903 #: ../fish/guestfish.pod:800
20904 msgid ""
20905 "If a path is prefixed with C<win:> then you can use Windows-style drive "
20906 "letters and paths (with some limitations).  The following commands are "
20907 "equivalent:"
20908 msgstr ""
20909
20910 #. type: verbatim
20911 #: ../fish/guestfish.pod:804
20912 #, no-wrap
20913 msgid ""
20914 " file /WINDOWS/system32/config/system.LOG\n"
20915 "\n"
20916 msgstr ""
20917
20918 #. type: verbatim
20919 #: ../fish/guestfish.pod:806
20920 #, no-wrap
20921 msgid ""
20922 " file win:\\windows\\system32\\config\\system.log\n"
20923 "\n"
20924 msgstr ""
20925
20926 #. type: verbatim
20927 #: ../fish/guestfish.pod:808
20928 #, no-wrap
20929 msgid ""
20930 " file WIN:C:\\Windows\\SYSTEM32\\CONFIG\\SYSTEM.LOG\n"
20931 "\n"
20932 msgstr ""
20933
20934 #. type: textblock
20935 #: ../fish/guestfish.pod:810
20936 msgid ""
20937 "The parameter is rewritten \"behind the scenes\" by looking up the position "
20938 "where the drive is mounted, prepending that to the path, changing all "
20939 "backslash characters to forward slash, then resolving the result using L</"
20940 "case-sensitive-path>.  For example if the E: drive was mounted on C</e> then "
20941 "the parameter might be rewritten like this:"
20942 msgstr ""
20943
20944 #. type: verbatim
20945 #: ../fish/guestfish.pod:816
20946 #, no-wrap
20947 msgid ""
20948 " win:e:\\foo\\bar => /e/FOO/bar\n"
20949 "\n"
20950 msgstr ""
20951
20952 #. type: textblock
20953 #: ../fish/guestfish.pod:818
20954 msgid "This only works in argument positions that expect a path."
20955 msgstr ""
20956
20957 #. type: =head1
20958 #: ../fish/guestfish.pod:820
20959 msgid "UPLOADING AND DOWNLOADING FILES"
20960 msgstr ""
20961
20962 #. type: textblock
20963 #: ../fish/guestfish.pod:822
20964 msgid ""
20965 "For commands such as C<upload>, C<download>, C<tar-in>, C<tar-out> and "
20966 "others which upload from or download to a local file, you can use the "
20967 "special filename C<-> to mean \"from stdin\" or \"to stdout\".  For example:"
20968 msgstr ""
20969
20970 #. type: verbatim
20971 #: ../fish/guestfish.pod:826
20972 #, no-wrap
20973 msgid ""
20974 " upload - /foo\n"
20975 "\n"
20976 msgstr ""
20977
20978 #. type: textblock
20979 #: ../fish/guestfish.pod:828
20980 msgid ""
20981 "reads stdin and creates from that a file C</foo> in the disk image, and:"
20982 msgstr ""
20983
20984 #. type: verbatim
20985 #: ../fish/guestfish.pod:831
20986 #, no-wrap
20987 msgid ""
20988 " tar-out /etc - | tar tf -\n"
20989 "\n"
20990 msgstr ""
20991
20992 #. type: textblock
20993 #: ../fish/guestfish.pod:833
20994 msgid ""
20995 "writes the tarball to stdout and then pipes that into the external \"tar\" "
20996 "command (see L</PIPES>)."
20997 msgstr ""
20998
20999 #. type: textblock
21000 #: ../fish/guestfish.pod:836
21001 msgid ""
21002 "When using C<-> to read from stdin, the input is read up to the end of "
21003 "stdin.  You can also use a special \"heredoc\"-like syntax to read up to "
21004 "some arbitrary end marker:"
21005 msgstr ""
21006
21007 #. type: verbatim
21008 #: ../fish/guestfish.pod:840
21009 #, no-wrap
21010 msgid ""
21011 " upload -<<END /foo\n"
21012 " input line 1\n"
21013 " input line 2\n"
21014 " input line 3\n"
21015 " END\n"
21016 "\n"
21017 msgstr ""
21018
21019 #. type: textblock
21020 #: ../fish/guestfish.pod:846
21021 msgid ""
21022 "Any string of characters can be used instead of C<END>.  The end marker must "
21023 "appear on a line of its own, without any preceeding or following characters "
21024 "(not even spaces)."
21025 msgstr ""
21026
21027 #. type: textblock
21028 #: ../fish/guestfish.pod:850
21029 msgid ""
21030 "Note that the C<-E<lt>E<lt>> syntax only applies to parameters used to "
21031 "upload local files (so-called \"FileIn\" parameters in the generator)."
21032 msgstr ""
21033
21034 #. type: =head1
21035 #: ../fish/guestfish.pod:853
21036 msgid "EXIT ON ERROR BEHAVIOUR"
21037 msgstr ""
21038
21039 #. type: textblock
21040 #: ../fish/guestfish.pod:855
21041 msgid ""
21042 "By default, guestfish will ignore any errors when in interactive mode (ie. "
21043 "taking commands from a human over a tty), and will exit on the first error "
21044 "in non-interactive mode (scripts, commands given on the command line)."
21045 msgstr ""
21046
21047 #. type: textblock
21048 #: ../fish/guestfish.pod:860
21049 msgid ""
21050 "If you prefix a command with a I<-> character, then that command will not "
21051 "cause guestfish to exit, even if that (one) command returns an error."
21052 msgstr ""
21053
21054 #. type: =head1
21055 #: ../fish/guestfish.pod:864
21056 msgid "REMOTE CONTROL GUESTFISH OVER A SOCKET"
21057 msgstr ""
21058
21059 #. type: textblock
21060 #: ../fish/guestfish.pod:866
21061 msgid ""
21062 "Guestfish can be remote-controlled over a socket.  This is useful "
21063 "particularly in shell scripts where you want to make several different "
21064 "changes to a filesystem, but you don't want the overhead of starting up a "
21065 "guestfish process each time."
21066 msgstr ""
21067
21068 #. type: textblock
21069 #: ../fish/guestfish.pod:871
21070 msgid "Start a guestfish server process using:"
21071 msgstr ""
21072
21073 #. type: verbatim
21074 #: ../fish/guestfish.pod:873
21075 #, no-wrap
21076 msgid ""
21077 " eval \"`guestfish --listen`\"\n"
21078 "\n"
21079 msgstr ""
21080
21081 #. type: textblock
21082 #: ../fish/guestfish.pod:875
21083 msgid "and then send it commands by doing:"
21084 msgstr ""
21085
21086 #. type: verbatim
21087 #: ../fish/guestfish.pod:877
21088 #, no-wrap
21089 msgid ""
21090 " guestfish --remote cmd [...]\n"
21091 "\n"
21092 msgstr ""
21093
21094 #. type: textblock
21095 #: ../fish/guestfish.pod:879
21096 msgid "To cause the server to exit, send it the exit command:"
21097 msgstr ""
21098
21099 #. type: verbatim
21100 #: ../fish/guestfish.pod:881
21101 #, no-wrap
21102 msgid ""
21103 " guestfish --remote exit\n"
21104 "\n"
21105 msgstr ""
21106
21107 #. type: textblock
21108 #: ../fish/guestfish.pod:883
21109 msgid ""
21110 "Note that the server will normally exit if there is an error in a command.  "
21111 "You can change this in the usual way.  See section L</EXIT ON ERROR "
21112 "BEHAVIOUR>."
21113 msgstr ""
21114
21115 #. type: =head2
21116 #: ../fish/guestfish.pod:887
21117 msgid "CONTROLLING MULTIPLE GUESTFISH PROCESSES"
21118 msgstr ""
21119
21120 #. type: textblock
21121 #: ../fish/guestfish.pod:889
21122 msgid ""
21123 "The C<eval> statement sets the environment variable C<$GUESTFISH_PID>, which "
21124 "is how the I<--remote> option knows where to send the commands.  You can "
21125 "have several guestfish listener processes running using:"
21126 msgstr ""
21127
21128 #. type: verbatim
21129 #: ../fish/guestfish.pod:893
21130 #, no-wrap
21131 msgid ""
21132 " eval \"`guestfish --listen`\"\n"
21133 " pid1=$GUESTFISH_PID\n"
21134 " eval \"`guestfish --listen`\"\n"
21135 " pid2=$GUESTFISH_PID\n"
21136 " ...\n"
21137 " guestfish --remote=$pid1 cmd\n"
21138 " guestfish --remote=$pid2 cmd\n"
21139 "\n"
21140 msgstr ""
21141
21142 #. type: =head2
21143 #: ../fish/guestfish.pod:901
21144 msgid "REMOTE CONTROL AND CSH"
21145 msgstr ""
21146
21147 #. type: textblock
21148 #: ../fish/guestfish.pod:903
21149 msgid ""
21150 "When using csh-like shells (csh, tcsh etc) you have to add the I<--csh> "
21151 "option:"
21152 msgstr ""
21153
21154 #. type: verbatim
21155 #: ../fish/guestfish.pod:906
21156 #, no-wrap
21157 msgid ""
21158 " eval \"`guestfish --listen --csh`\"\n"
21159 "\n"
21160 msgstr ""
21161
21162 #. type: =head2
21163 #: ../fish/guestfish.pod:908
21164 msgid "REMOTE CONTROL DETAILS"
21165 msgstr ""
21166
21167 #. type: textblock
21168 #: ../fish/guestfish.pod:910
21169 msgid ""
21170 "Remote control happens over a Unix domain socket called C</tmp/.guestfish-"
21171 "$UID/socket-$PID>, where C<$UID> is the effective user ID of the process, "
21172 "and C<$PID> is the process ID of the server."
21173 msgstr ""
21174
21175 #. type: textblock
21176 #: ../fish/guestfish.pod:914
21177 msgid "Guestfish client and server versions must match exactly."
21178 msgstr ""
21179
21180 #. type: =head1
21181 #: ../fish/guestfish.pod:916
21182 msgid "PREPARED DISK IMAGES"
21183 msgstr ""
21184
21185 #. type: textblock
21186 #: ../fish/guestfish.pod:918
21187 msgid ""
21188 "Use the I<-N type> or I<--new type> parameter to select one of a set of "
21189 "preformatted disk images that guestfish can make for you to save typing.  "
21190 "This is particularly useful for testing purposes.  This option is used "
21191 "instead of the I<-a> option, and like I<-a> can appear multiple times (and "
21192 "can be mixed with I<-a>)."
21193 msgstr ""
21194
21195 #. type: textblock
21196 #: ../fish/guestfish.pod:924
21197 msgid ""
21198 "The new disk is called C<test1.img> for the first I<-N>, C<test2.img> for "
21199 "the second and so on.  Existing files in the current directory are "
21200 "I<overwritten>."
21201 msgstr ""
21202
21203 #. type: textblock
21204 #: ../fish/guestfish.pod:928
21205 msgid ""
21206 "The type briefly describes how the disk should be sized, partitioned, how "
21207 "filesystem(s) should be created, and how content should be added.  "
21208 "Optionally the type can be followed by extra parameters, separated by C<:> "
21209 "(colon) characters.  For example, I<-N fs> creates a default 100MB, sparsely-"
21210 "allocated disk, containing a single partition, with the partition formatted "
21211 "as ext2.  I<-N fs:ext4:1G> is the same, but for an ext4 filesystem on a 1GB "
21212 "disk instead."
21213 msgstr ""
21214
21215 #. type: textblock
21216 #: ../fish/guestfish.pod:936
21217 msgid "To list the available types and any extra parameters they take, run:"
21218 msgstr ""
21219
21220 #. type: textblock
21221 #: ../fish/guestfish.pod:940
21222 msgid ""
21223 "Note that the prepared filesystem is not mounted.  You would usually have to "
21224 "use the C<mount /dev/sda1 /> command or add the I<-m /dev/sda1> option."
21225 msgstr ""
21226
21227 #. type: textblock
21228 #: ../fish/guestfish.pod:944
21229 msgid ""
21230 "If any I<-N> or I<--new> options are given, the guest is automatically "
21231 "launched."
21232 msgstr ""
21233
21234 #. type: textblock
21235 #: ../fish/guestfish.pod:949
21236 msgid "Create a 100MB disk with an ext4-formatted partition:"
21237 msgstr ""
21238
21239 #. type: verbatim
21240 #: ../fish/guestfish.pod:951
21241 #, no-wrap
21242 msgid ""
21243 " guestfish -N fs:ext4\n"
21244 "\n"
21245 msgstr ""
21246
21247 #. type: textblock
21248 #: ../fish/guestfish.pod:953
21249 msgid "Create a 32MB disk with a VFAT-formatted partition, and mount it:"
21250 msgstr ""
21251
21252 #. type: verbatim
21253 #: ../fish/guestfish.pod:955
21254 #, no-wrap
21255 msgid ""
21256 " guestfish -N fs:vfat:32M -m /dev/sda1\n"
21257 "\n"
21258 msgstr ""
21259
21260 #. type: textblock
21261 #: ../fish/guestfish.pod:957
21262 msgid "Create a blank 200MB disk:"
21263 msgstr ""
21264
21265 #. type: verbatim
21266 #: ../fish/guestfish.pod:959
21267 #, no-wrap
21268 msgid ""
21269 " guestfish -N disk:200M\n"
21270 "\n"
21271 msgstr ""
21272
21273 #. type: =head1
21274 #: ../fish/guestfish.pod:961
21275 msgid "PROGRESS BARS"
21276 msgstr ""
21277
21278 #. type: textblock
21279 #: ../fish/guestfish.pod:963
21280 msgid ""
21281 "Some (not all) long-running commands send progress notification messages as "
21282 "they are running.  Guestfish turns these messages into progress bars."
21283 msgstr ""
21284
21285 #. type: textblock
21286 #: ../fish/guestfish.pod:967
21287 msgid ""
21288 "When a command that supports progress bars takes longer than two seconds to "
21289 "run, and if progress bars are enabled, then you will see one appearing below "
21290 "the command:"
21291 msgstr ""
21292
21293 #. type: verbatim
21294 #: ../fish/guestfish.pod:971
21295 #, no-wrap
21296 msgid ""
21297 " ><fs> copy-size /large-file /another-file 2048M\n"
21298 " / 10% [#####-----------------------------------------] 00:30\n"
21299 "\n"
21300 msgstr ""
21301
21302 #. type: textblock
21303 #: ../fish/guestfish.pod:974
21304 msgid ""
21305 "The spinner on the left hand side moves round once for every progress "
21306 "notification received from the backend.  This is a (reasonably) golden "
21307 "assurance that the command is \"doing something\" even if the progress bar "
21308 "is not moving, because the command is able to send the progress "
21309 "notifications.  When the bar reaches 100% and the command finishes, the "
21310 "spinner disappears."
21311 msgstr ""
21312
21313 #. type: textblock
21314 #: ../fish/guestfish.pod:981
21315 msgid ""
21316 "Progress bars are enabled by default when guestfish is used interactively.  "
21317 "You can enable them even for non-interactive modes using I<--progress-bars>, "
21318 "and you can disable them completely using I<--no-progress-bars>."
21319 msgstr ""
21320
21321 #. type: =head1
21322 #: ../fish/guestfish.pod:986
21323 msgid "GUESTFISH COMMANDS"
21324 msgstr ""
21325
21326 #. type: textblock
21327 #: ../fish/guestfish.pod:988
21328 msgid ""
21329 "The commands in this section are guestfish convenience commands, in other "
21330 "words, they are not part of the L<guestfs(3)> API."
21331 msgstr ""
21332
21333 #. type: =head2
21334 #: ../fish/guestfish.pod:991
21335 msgid "help"
21336 msgstr ""
21337
21338 #. type: verbatim
21339 #: ../fish/guestfish.pod:993
21340 #, no-wrap
21341 msgid ""
21342 " help\n"
21343 " help cmd\n"
21344 "\n"
21345 msgstr ""
21346
21347 #. type: textblock
21348 #: ../fish/guestfish.pod:996
21349 msgid "Without any parameter, this provides general help."
21350 msgstr ""
21351
21352 #. type: textblock
21353 #: ../fish/guestfish.pod:998
21354 msgid "With a C<cmd> parameter, this displays detailed help for that command."
21355 msgstr ""
21356
21357 #. type: =head2
21358 #: ../fish/guestfish.pod:1000
21359 msgid "quit | exit"
21360 msgstr ""
21361
21362 #. type: textblock
21363 #: ../fish/guestfish.pod:1002
21364 msgid "This exits guestfish.  You can also use C<^D> key."
21365 msgstr ""
21366
21367 #. type: textblock
21368 #: ../fish/guestfish.pod:1004
21369 msgid "@FISH_COMMANDS@"
21370 msgstr ""
21371
21372 #. type: =head1
21373 #: ../fish/guestfish.pod:1006
21374 msgid "COMMANDS"
21375 msgstr ""
21376
21377 #. type: =head1
21378 #: ../fish/guestfish.pod:1010 ../test-tool/libguestfs-test-tool.pod:77
21379 msgid "EXIT CODE"
21380 msgstr ""
21381
21382 #. type: textblock
21383 #: ../fish/guestfish.pod:1012
21384 msgid ""
21385 "guestfish returns 0 if the commands completed without error, or 1 if there "
21386 "was an error."
21387 msgstr ""
21388
21389 #. type: =item
21390 #: ../fish/guestfish.pod:1019
21391 msgid "EDITOR"
21392 msgstr ""
21393
21394 #. type: textblock
21395 #: ../fish/guestfish.pod:1021
21396 msgid ""
21397 "The C<edit> command uses C<$EDITOR> as the editor.  If not set, it uses "
21398 "C<vi>."
21399 msgstr ""
21400
21401 #. type: =item
21402 #: ../fish/guestfish.pod:1024
21403 msgid "GUESTFISH_PID"
21404 msgstr ""
21405
21406 #. type: textblock
21407 #: ../fish/guestfish.pod:1026
21408 msgid ""
21409 "Used with the I<--remote> option to specify the remote guestfish process to "
21410 "control.  See section L</REMOTE CONTROL GUESTFISH OVER A SOCKET>."
21411 msgstr ""
21412
21413 #. type: =item
21414 #: ../fish/guestfish.pod:1030
21415 msgid "HEXEDITOR"
21416 msgstr ""
21417
21418 #. type: textblock
21419 #: ../fish/guestfish.pod:1032
21420 msgid ""
21421 "The L</hexedit> command uses C<$HEXEDITOR> as the external hex editor.  If "
21422 "not specified, the external L<hexedit(1)> program is used."
21423 msgstr ""
21424
21425 #. type: =item
21426 #: ../fish/guestfish.pod:1036
21427 msgid "HOME"
21428 msgstr ""
21429
21430 #. type: textblock
21431 #: ../fish/guestfish.pod:1038
21432 msgid ""
21433 "If compiled with GNU readline support, various files in the home directory "
21434 "can be used.  See L</FILES>."
21435 msgstr ""
21436
21437 #. type: textblock
21438 #: ../fish/guestfish.pod:1047
21439 msgid ""
21440 "Set C<LIBGUESTFS_DEBUG=1> to enable verbose messages.  This has the same "
21441 "effect as using the B<-v> option."
21442 msgstr ""
21443
21444 #. type: textblock
21445 #: ../fish/guestfish.pod:1059
21446 msgid ""
21447 "Set the path that guestfish uses to search for kernel and initrd.img.  See "
21448 "the discussion of paths in L<guestfs(3)>."
21449 msgstr ""
21450
21451 #. type: textblock
21452 #: ../fish/guestfish.pod:1070
21453 msgid "Set C<LIBGUESTFS_TRACE=1> to enable command traces."
21454 msgstr ""
21455
21456 #. type: =item
21457 #: ../fish/guestfish.pod:1072
21458 msgid "PAGER"
21459 msgstr ""
21460
21461 #. type: textblock
21462 #: ../fish/guestfish.pod:1074
21463 msgid ""
21464 "The C<more> command uses C<$PAGER> as the pager.  If not set, it uses "
21465 "C<more>."
21466 msgstr ""
21467
21468 #. type: =head1
21469 #: ../fish/guestfish.pod:1090 ../fuse/guestmount.pod:252
21470 msgid "FILES"
21471 msgstr ""
21472
21473 #. type: =item
21474 #: ../fish/guestfish.pod:1094 ../fuse/guestmount.pod:256
21475 msgid "$HOME/.libguestfs-tools.rc"
21476 msgstr ""
21477
21478 #. type: =item
21479 #: ../fish/guestfish.pod:1096 ../fuse/guestmount.pod:258
21480 msgid "/etc/libguestfs-tools.conf"
21481 msgstr ""
21482
21483 #. type: textblock
21484 #: ../fish/guestfish.pod:1098 ../fuse/guestmount.pod:260
21485 msgid ""
21486 "This configuration file controls the default read-only or read-write mode "
21487 "(I<--ro> or I<--rw>)."
21488 msgstr ""
21489
21490 #. type: textblock
21491 #: ../fish/guestfish.pod:1101
21492 msgid "See L</OPENING DISKS FOR READ AND WRITE>."
21493 msgstr ""
21494
21495 #. type: =item
21496 #: ../fish/guestfish.pod:1103
21497 msgid "$HOME/.guestfish"
21498 msgstr ""
21499
21500 #. type: textblock
21501 #: ../fish/guestfish.pod:1105
21502 msgid ""
21503 "If compiled with GNU readline support, then the command history is saved in "
21504 "this file."
21505 msgstr ""
21506
21507 #. type: =item
21508 #: ../fish/guestfish.pod:1108
21509 msgid "$HOME/.inputrc"
21510 msgstr ""
21511
21512 #. type: =item
21513 #: ../fish/guestfish.pod:1110
21514 msgid "/etc/inputrc"
21515 msgstr ""
21516
21517 #. type: textblock
21518 #: ../fish/guestfish.pod:1112
21519 msgid ""
21520 "If compiled with GNU readline support, then these files can be used to "
21521 "configure readline.  For further information, please see L<readline(3)/"
21522 "INITIALIZATION FILE>."
21523 msgstr ""
21524
21525 #. type: textblock
21526 #: ../fish/guestfish.pod:1116
21527 msgid "To write rules which only apply to guestfish, use:"
21528 msgstr ""
21529
21530 #. type: verbatim
21531 #: ../fish/guestfish.pod:1118
21532 #, no-wrap
21533 msgid ""
21534 " $if guestfish\n"
21535 " ...\n"
21536 " $endif\n"
21537 "\n"
21538 msgstr ""
21539
21540 #. type: textblock
21541 #: ../fish/guestfish.pod:1122
21542 msgid ""
21543 "Variables that you can set in inputrc that change the behaviour of guestfish "
21544 "in useful ways include:"
21545 msgstr ""
21546
21547 #. type: =item
21548 #: ../fish/guestfish.pod:1127
21549 msgid "completion-ignore-case (default: on)"
21550 msgstr ""
21551
21552 #. type: textblock
21553 #: ../fish/guestfish.pod:1129
21554 msgid ""
21555 "By default, guestfish will ignore case when tab-completing paths on the "
21556 "disk.  Use:"
21557 msgstr ""
21558
21559 #. type: verbatim
21560 #: ../fish/guestfish.pod:1132
21561 #, no-wrap
21562 msgid ""
21563 " set completion-ignore-case off\n"
21564 "\n"
21565 msgstr ""
21566
21567 #. type: textblock
21568 #: ../fish/guestfish.pod:1134
21569 msgid "to make guestfish case sensitive."
21570 msgstr ""
21571
21572 #. type: =item
21573 #: ../fish/guestfish.pod:1138
21574 msgid "test1.img"
21575 msgstr ""
21576
21577 #. type: =item
21578 #: ../fish/guestfish.pod:1140
21579 msgid "test2.img (etc)"
21580 msgstr ""
21581
21582 #. type: textblock
21583 #: ../fish/guestfish.pod:1142
21584 msgid ""
21585 "When using the C<-N> or C<--new> option, the prepared disk or filesystem "
21586 "will be created in the file C<test1.img> in the current directory.  The "
21587 "second use of C<-N> will use C<test2.img> and so on.  Any existing file with "
21588 "the same name will be overwritten."
21589 msgstr ""
21590
21591 #. type: textblock
21592 #: ../fish/guestfish.pod:1151
21593 msgid ""
21594 "L<guestfs(3)>, L<http://libguestfs.org/>, L<virt-cat(1)>, L<virt-copy-in(1)"
21595 ">, L<virt-copy-out(1)>, L<virt-df(1)>, L<virt-edit(1)>, L<virt-filesystems(1)"
21596 ">, L<virt-inspector(1)>, L<virt-list-filesystems(1)>, L<virt-list-partitions"
21597 "(1)>, L<virt-ls(1)>, L<virt-make-fs(1)>, L<virt-rescue(1)>, L<virt-resize(1)"
21598 ">, L<virt-tar(1)>, L<virt-tar-in(1)>, L<virt-tar-out(1)>, L<virt-win-reg(1)"
21599 ">, L<hexedit(1)>."
21600 msgstr ""
21601
21602 #. type: textblock
21603 #: ../fish/guestfish.pod:1181 ../test-tool/libguestfs-test-tool.pod:102
21604 #: ../fuse/guestmount.pod:287 ../tools/virt-edit.pl:518
21605 #: ../tools/virt-win-reg.pl:606 ../tools/virt-list-filesystems.pl:210
21606 #: ../tools/virt-tar.pl:309 ../tools/virt-make-fs.pl:572
21607 #: ../tools/virt-list-partitions.pl:277
21608 msgid ""
21609 "This program is free software; you can redistribute it and/or modify it "
21610 "under the terms of the GNU General Public License as published by the Free "
21611 "Software Foundation; either version 2 of the License, or (at your option) "
21612 "any later version."
21613 msgstr ""
21614
21615 #. type: textblock
21616 #: ../fish/guestfish.pod:1186 ../test-tool/libguestfs-test-tool.pod:107
21617 #: ../fuse/guestmount.pod:292 ../tools/virt-edit.pl:523
21618 #: ../tools/virt-win-reg.pl:611 ../tools/virt-list-filesystems.pl:215
21619 #: ../tools/virt-tar.pl:314 ../tools/virt-make-fs.pl:577
21620 #: ../tools/virt-list-partitions.pl:282
21621 msgid ""
21622 "This program is distributed in the hope that it will be useful, but WITHOUT "
21623 "ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or "
21624 "FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for "
21625 "more details."
21626 msgstr ""
21627
21628 #. type: textblock
21629 #: ../fish/guestfish.pod:1191 ../test-tool/libguestfs-test-tool.pod:112
21630 #: ../fuse/guestmount.pod:297 ../tools/virt-edit.pl:528
21631 #: ../tools/virt-win-reg.pl:616 ../tools/virt-list-filesystems.pl:220
21632 #: ../tools/virt-tar.pl:319 ../tools/virt-make-fs.pl:582
21633 #: ../tools/virt-list-partitions.pl:287
21634 msgid ""
21635 "You should have received a copy of the GNU General Public License along with "
21636 "this program; if not, write to the Free Software Foundation, Inc., 675 Mass "
21637 "Ave, Cambridge, MA 02139, USA."
21638 msgstr ""
21639
21640 #. type: =head2
21641 #: ../fish/guestfish-actions.pod:1
21642 msgid "add-cdrom"
21643 msgstr ""
21644
21645 #. type: verbatim
21646 #: ../fish/guestfish-actions.pod:3
21647 #, no-wrap
21648 msgid ""
21649 " add-cdrom filename\n"
21650 "\n"
21651 msgstr ""
21652
21653 #. type: textblock
21654 #: ../fish/guestfish-actions.pod:15
21655 msgid ""
21656 "This call checks for the existence of C<filename>.  This stops you from "
21657 "specifying other types of drive which are supported by qemu such as C<nbd:> "
21658 "and C<http:> URLs.  To specify those, use the general L</config> call "
21659 "instead."
21660 msgstr ""
21661
21662 #. type: textblock
21663 #: ../fish/guestfish-actions.pod:22
21664 msgid ""
21665 "If you just want to add an ISO file (often you use this as an efficient way "
21666 "to transfer large files into the guest), then you should probably use L</add-"
21667 "drive-ro> instead."
21668 msgstr ""
21669
21670 #. type: =head2
21671 #: ../fish/guestfish-actions.pod:35
21672 msgid "add-domain"
21673 msgstr ""
21674
21675 #. type: =head2
21676 #: ../fish/guestfish-actions.pod:37
21677 msgid "domain"
21678 msgstr ""
21679
21680 #. type: verbatim
21681 #: ../fish/guestfish-actions.pod:39
21682 #, no-wrap
21683 msgid ""
21684 " add-domain dom [libvirturi:..] [readonly:..] [iface:..] [live:..]\n"
21685 "\n"
21686 msgstr ""
21687
21688 #. type: textblock
21689 #: ../fish/guestfish-actions.pod:41
21690 msgid ""
21691 "This function adds the disk(s) attached to the named libvirt domain C<dom>.  "
21692 "It works by connecting to libvirt, requesting the domain and domain XML from "
21693 "libvirt, parsing it for disks, and calling L</add-drive-opts> on each one."
21694 msgstr ""
21695
21696 #. type: textblock
21697 #: ../fish/guestfish-actions.pod:71
21698 msgid ""
21699 "The other optional parameters are passed directly through to L</add-drive-"
21700 "opts>."
21701 msgstr ""
21702
21703 #. type: textblock
21704 #: ../fish/guestfish-actions.pod:74 ../fish/guestfish-actions.pod:138
21705 #: ../fish/guestfish-actions.pod:3047
21706 msgid ""
21707 "This command has one or more optional arguments.  See L</OPTIONAL ARGUMENTS>."
21708 msgstr ""
21709
21710 #. type: =head2
21711 #: ../fish/guestfish-actions.pod:76
21712 msgid "add-drive"
21713 msgstr ""
21714
21715 #. type: verbatim
21716 #: ../fish/guestfish-actions.pod:78
21717 #, no-wrap
21718 msgid ""
21719 " add-drive filename\n"
21720 "\n"
21721 msgstr ""
21722
21723 #. type: textblock
21724 #: ../fish/guestfish-actions.pod:80
21725 msgid ""
21726 "This function is the equivalent of calling L</add-drive-opts> with no "
21727 "optional parameters, so the disk is added writable, with the format being "
21728 "detected automatically."
21729 msgstr ""
21730
21731 #. type: textblock
21732 #: ../fish/guestfish-actions.pod:84
21733 msgid ""
21734 "Automatic detection of the format opens you up to a potential security hole "
21735 "when dealing with untrusted raw-format images.  See CVE-2010-3851 and "
21736 "RHBZ#642934.  Specifying the format closes this security hole.  Therefore "
21737 "you should think about replacing calls to this function with calls to L</add-"
21738 "drive-opts>, and specifying the format."
21739 msgstr ""
21740
21741 #. type: =head2
21742 #: ../fish/guestfish-actions.pod:91
21743 msgid "add-drive-opts"
21744 msgstr ""
21745
21746 #. type: =head2
21747 #: ../fish/guestfish-actions.pod:93
21748 msgid "add"
21749 msgstr ""
21750
21751 #. type: verbatim
21752 #: ../fish/guestfish-actions.pod:95
21753 #, no-wrap
21754 msgid ""
21755 " add-drive-opts filename [readonly:..] [format:..] [iface:..]\n"
21756 "\n"
21757 msgstr ""
21758
21759 #. type: textblock
21760 #: ../fish/guestfish-actions.pod:122
21761 msgid ""
21762 "This forces the image format.  If you omit this (or use L</add-drive> or L</"
21763 "add-drive-ro>) then the format is automatically detected.  Possible formats "
21764 "include C<raw> and C<qcow2>."
21765 msgstr ""
21766
21767 #. type: textblock
21768 #: ../fish/guestfish-actions.pod:133
21769 msgid ""
21770 "This rarely-used option lets you emulate the behaviour of the deprecated L</"
21771 "add-drive-with-if> call (q.v.)"
21772 msgstr ""
21773
21774 #. type: =head2
21775 #: ../fish/guestfish-actions.pod:140
21776 msgid "add-drive-ro"
21777 msgstr ""
21778
21779 #. type: =head2
21780 #: ../fish/guestfish-actions.pod:142
21781 msgid "add-ro"
21782 msgstr ""
21783
21784 #. type: verbatim
21785 #: ../fish/guestfish-actions.pod:144
21786 #, no-wrap
21787 msgid ""
21788 " add-drive-ro filename\n"
21789 "\n"
21790 msgstr ""
21791
21792 #. type: textblock
21793 #: ../fish/guestfish-actions.pod:146
21794 msgid ""
21795 "This function is the equivalent of calling L</add-drive-opts> with the "
21796 "optional parameter C<GUESTFS_ADD_DRIVE_OPTS_READONLY> set to 1, so the disk "
21797 "is added read-only, with the format being detected automatically."
21798 msgstr ""
21799
21800 #. type: =head2
21801 #: ../fish/guestfish-actions.pod:151
21802 msgid "add-drive-ro-with-if"
21803 msgstr ""
21804
21805 #. type: verbatim
21806 #: ../fish/guestfish-actions.pod:153
21807 #, no-wrap
21808 msgid ""
21809 " add-drive-ro-with-if filename iface\n"
21810 "\n"
21811 msgstr ""
21812
21813 #. type: textblock
21814 #: ../fish/guestfish-actions.pod:155
21815 msgid ""
21816 "This is the same as L</add-drive-ro> but it allows you to specify the QEMU "
21817 "interface emulation to use at run time."
21818 msgstr ""
21819
21820 #. type: =head2
21821 #: ../fish/guestfish-actions.pod:165
21822 msgid "add-drive-with-if"
21823 msgstr ""
21824
21825 #. type: verbatim
21826 #: ../fish/guestfish-actions.pod:167
21827 #, no-wrap
21828 msgid ""
21829 " add-drive-with-if filename iface\n"
21830 "\n"
21831 msgstr ""
21832
21833 #. type: textblock
21834 #: ../fish/guestfish-actions.pod:169
21835 msgid ""
21836 "This is the same as L</add-drive> but it allows you to specify the QEMU "
21837 "interface emulation to use at run time."
21838 msgstr ""
21839
21840 #. type: =head2
21841 #: ../fish/guestfish-actions.pod:179
21842 msgid "aug-clear"
21843 msgstr ""
21844
21845 #. type: verbatim
21846 #: ../fish/guestfish-actions.pod:181
21847 #, no-wrap
21848 msgid ""
21849 " aug-clear augpath\n"
21850 "\n"
21851 msgstr ""
21852
21853 #. type: =head2
21854 #: ../fish/guestfish-actions.pod:186
21855 msgid "aug-close"
21856 msgstr ""
21857
21858 #. type: verbatim
21859 #: ../fish/guestfish-actions.pod:188
21860 #, no-wrap
21861 msgid ""
21862 " aug-close\n"
21863 "\n"
21864 msgstr ""
21865
21866 #. type: textblock
21867 #: ../fish/guestfish-actions.pod:190
21868 msgid ""
21869 "Close the current Augeas handle and free up any resources used by it.  After "
21870 "calling this, you have to call L</aug-init> again before you can use any "
21871 "other Augeas functions."
21872 msgstr ""
21873
21874 #. type: =head2
21875 #: ../fish/guestfish-actions.pod:195
21876 msgid "aug-defnode"
21877 msgstr ""
21878
21879 #. type: verbatim
21880 #: ../fish/guestfish-actions.pod:197
21881 #, no-wrap
21882 msgid ""
21883 " aug-defnode name expr val\n"
21884 "\n"
21885 msgstr ""
21886
21887 #. type: textblock
21888 #: ../fish/guestfish-actions.pod:202
21889 msgid ""
21890 "If C<expr> evaluates to an empty nodeset, a node is created, equivalent to "
21891 "calling L</aug-set> C<expr>, C<value>.  C<name> will be the nodeset "
21892 "containing that single node."
21893 msgstr ""
21894
21895 #. type: =head2
21896 #: ../fish/guestfish-actions.pod:210
21897 msgid "aug-defvar"
21898 msgstr ""
21899
21900 #. type: verbatim
21901 #: ../fish/guestfish-actions.pod:212
21902 #, no-wrap
21903 msgid ""
21904 " aug-defvar name expr\n"
21905 "\n"
21906 msgstr ""
21907
21908 #. type: =head2
21909 #: ../fish/guestfish-actions.pod:221
21910 msgid "aug-get"
21911 msgstr ""
21912
21913 #. type: verbatim
21914 #: ../fish/guestfish-actions.pod:223
21915 #, no-wrap
21916 msgid ""
21917 " aug-get augpath\n"
21918 "\n"
21919 msgstr ""
21920
21921 #. type: =head2
21922 #: ../fish/guestfish-actions.pod:228
21923 msgid "aug-init"
21924 msgstr ""
21925
21926 #. type: verbatim
21927 #: ../fish/guestfish-actions.pod:230
21928 #, no-wrap
21929 msgid ""
21930 " aug-init root flags\n"
21931 "\n"
21932 msgstr ""
21933
21934 #. type: textblock
21935 #: ../fish/guestfish-actions.pod:236
21936 msgid "You must call this before using any other L</aug-*> commands."
21937 msgstr ""
21938
21939 #. type: textblock
21940 #: ../fish/guestfish-actions.pod:271
21941 msgid "Do not load the tree in L</aug-init>."
21942 msgstr ""
21943
21944 #. type: textblock
21945 #: ../fish/guestfish-actions.pod:275
21946 msgid "To close the handle, you can call L</aug-close>."
21947 msgstr ""
21948
21949 #. type: =head2
21950 #: ../fish/guestfish-actions.pod:279
21951 msgid "aug-insert"
21952 msgstr ""
21953
21954 #. type: verbatim
21955 #: ../fish/guestfish-actions.pod:281
21956 #, no-wrap
21957 msgid ""
21958 " aug-insert augpath label true|false\n"
21959 "\n"
21960 msgstr ""
21961
21962 #. type: =head2
21963 #: ../fish/guestfish-actions.pod:291
21964 msgid "aug-load"
21965 msgstr ""
21966
21967 #. type: verbatim
21968 #: ../fish/guestfish-actions.pod:293
21969 #, no-wrap
21970 msgid ""
21971 " aug-load\n"
21972 "\n"
21973 msgstr ""
21974
21975 #. type: =head2
21976 #: ../fish/guestfish-actions.pod:300
21977 msgid "aug-ls"
21978 msgstr ""
21979
21980 #. type: verbatim
21981 #: ../fish/guestfish-actions.pod:302
21982 #, no-wrap
21983 msgid ""
21984 " aug-ls augpath\n"
21985 "\n"
21986 msgstr ""
21987
21988 #. type: textblock
21989 #: ../fish/guestfish-actions.pod:304
21990 msgid ""
21991 "This is just a shortcut for listing L</aug-match> C<path/*> and sorting the "
21992 "resulting nodes into alphabetical order."
21993 msgstr ""
21994
21995 #. type: =head2
21996 #: ../fish/guestfish-actions.pod:307
21997 msgid "aug-match"
21998 msgstr ""
21999
22000 #. type: verbatim
22001 #: ../fish/guestfish-actions.pod:309
22002 #, no-wrap
22003 msgid ""
22004 " aug-match augpath\n"
22005 "\n"
22006 msgstr ""
22007
22008 #. type: =head2
22009 #: ../fish/guestfish-actions.pod:315
22010 msgid "aug-mv"
22011 msgstr ""
22012
22013 #. type: verbatim
22014 #: ../fish/guestfish-actions.pod:317
22015 #, no-wrap
22016 msgid ""
22017 " aug-mv src dest\n"
22018 "\n"
22019 msgstr ""
22020
22021 #. type: =head2
22022 #: ../fish/guestfish-actions.pod:322
22023 msgid "aug-rm"
22024 msgstr ""
22025
22026 #. type: verbatim
22027 #: ../fish/guestfish-actions.pod:324
22028 #, no-wrap
22029 msgid ""
22030 " aug-rm augpath\n"
22031 "\n"
22032 msgstr ""
22033
22034 #. type: =head2
22035 #: ../fish/guestfish-actions.pod:330
22036 msgid "aug-save"
22037 msgstr ""
22038
22039 #. type: verbatim
22040 #: ../fish/guestfish-actions.pod:332
22041 #, no-wrap
22042 msgid ""
22043 " aug-save\n"
22044 "\n"
22045 msgstr ""
22046
22047 #. type: textblock
22048 #: ../fish/guestfish-actions.pod:336
22049 msgid ""
22050 "The flags which were passed to L</aug-init> affect exactly how files are "
22051 "saved."
22052 msgstr ""
22053
22054 #. type: =head2
22055 #: ../fish/guestfish-actions.pod:339
22056 msgid "aug-set"
22057 msgstr ""
22058
22059 #. type: verbatim
22060 #: ../fish/guestfish-actions.pod:341
22061 #, no-wrap
22062 msgid ""
22063 " aug-set augpath val\n"
22064 "\n"
22065 msgstr ""
22066
22067 #. type: textblock
22068 #: ../fish/guestfish-actions.pod:345
22069 msgid ""
22070 "In the Augeas API, it is possible to clear a node by setting the value to "
22071 "NULL.  Due to an oversight in the libguestfs API you cannot do that with "
22072 "this call.  Instead you must use the L</aug-clear> call."
22073 msgstr ""
22074
22075 #. type: =head2
22076 #: ../fish/guestfish-actions.pod:350
22077 msgid "available"
22078 msgstr ""
22079
22080 #. type: verbatim
22081 #: ../fish/guestfish-actions.pod:352
22082 #, no-wrap
22083 msgid ""
22084 " available 'groups ...'\n"
22085 "\n"
22086 msgstr ""
22087
22088 #. type: textblock
22089 #: ../fish/guestfish-actions.pod:358
22090 msgid ""
22091 "The libguestfs groups, and the functions that those groups correspond to, "
22092 "are listed in L<guestfs(3)/AVAILABILITY>.  You can also fetch this list at "
22093 "runtime by calling L</available-all-groups>."
22094 msgstr ""
22095
22096 #. type: textblock
22097 #: ../fish/guestfish-actions.pod:382
22098 msgid "You must call L</launch> before calling this function."
22099 msgstr ""
22100
22101 #. type: textblock
22102 #: ../fish/guestfish-actions.pod:404
22103 msgid ""
22104 "This call was added in version C<1.0.80>.  In previous versions of "
22105 "libguestfs all you could do would be to speculatively execute a command to "
22106 "find out if the daemon implemented it.  See also L</version>."
22107 msgstr ""
22108
22109 #. type: =head2
22110 #: ../fish/guestfish-actions.pod:411
22111 msgid "available-all-groups"
22112 msgstr ""
22113
22114 #. type: verbatim
22115 #: ../fish/guestfish-actions.pod:413
22116 #, no-wrap
22117 msgid ""
22118 " available-all-groups\n"
22119 "\n"
22120 msgstr ""
22121
22122 #. type: textblock
22123 #: ../fish/guestfish-actions.pod:415
22124 msgid ""
22125 "This command returns a list of all optional groups that this daemon knows "
22126 "about.  Note this returns both supported and unsupported groups.  To find "
22127 "out which ones the daemon can actually support you have to call L</"
22128 "available> on each member of the returned list."
22129 msgstr ""
22130
22131 #. type: textblock
22132 #: ../fish/guestfish-actions.pod:421
22133 msgid "See also L</available> and L<guestfs(3)/AVAILABILITY>."
22134 msgstr ""
22135
22136 #. type: =head2
22137 #: ../fish/guestfish-actions.pod:423
22138 msgid "base64-in"
22139 msgstr ""
22140
22141 #. type: verbatim
22142 #: ../fish/guestfish-actions.pod:425
22143 #, no-wrap
22144 msgid ""
22145 " base64-in (base64file|-) filename\n"
22146 "\n"
22147 msgstr ""
22148
22149 #. type: textblock
22150 #: ../fish/guestfish-actions.pod:430 ../fish/guestfish-actions.pod:439
22151 #: ../fish/guestfish-actions.pod:663 ../fish/guestfish-actions.pod:832
22152 #: ../fish/guestfish-actions.pod:851 ../fish/guestfish-actions.pod:1228
22153 #: ../fish/guestfish-actions.pod:4445 ../fish/guestfish-actions.pod:4457
22154 #: ../fish/guestfish-actions.pod:4468 ../fish/guestfish-actions.pod:4479
22155 #: ../fish/guestfish-actions.pod:4531 ../fish/guestfish-actions.pod:4540
22156 #: ../fish/guestfish-actions.pod:4594 ../fish/guestfish-actions.pod:4617
22157 msgid "Use C<-> instead of a filename to read/write from stdin/stdout."
22158 msgstr ""
22159
22160 #. type: =head2
22161 #: ../fish/guestfish-actions.pod:432
22162 msgid "base64-out"
22163 msgstr ""
22164
22165 #. type: verbatim
22166 #: ../fish/guestfish-actions.pod:434
22167 #, no-wrap
22168 msgid ""
22169 " base64-out filename (base64file|-)\n"
22170 "\n"
22171 msgstr ""
22172
22173 #. type: =head2
22174 #: ../fish/guestfish-actions.pod:441
22175 msgid "blockdev-flushbufs"
22176 msgstr ""
22177
22178 #. type: verbatim
22179 #: ../fish/guestfish-actions.pod:443
22180 #, no-wrap
22181 msgid ""
22182 " blockdev-flushbufs device\n"
22183 "\n"
22184 msgstr ""
22185
22186 #. type: =head2
22187 #: ../fish/guestfish-actions.pod:450
22188 msgid "blockdev-getbsz"
22189 msgstr ""
22190
22191 #. type: verbatim
22192 #: ../fish/guestfish-actions.pod:452
22193 #, no-wrap
22194 msgid ""
22195 " blockdev-getbsz device\n"
22196 "\n"
22197 msgstr ""
22198
22199 #. type: =head2
22200 #: ../fish/guestfish-actions.pod:461
22201 msgid "blockdev-getro"
22202 msgstr ""
22203
22204 #. type: verbatim
22205 #: ../fish/guestfish-actions.pod:463
22206 #, no-wrap
22207 msgid ""
22208 " blockdev-getro device\n"
22209 "\n"
22210 msgstr ""
22211
22212 #. type: =head2
22213 #: ../fish/guestfish-actions.pod:470
22214 msgid "blockdev-getsize64"
22215 msgstr ""
22216
22217 #. type: verbatim
22218 #: ../fish/guestfish-actions.pod:472
22219 #, no-wrap
22220 msgid ""
22221 " blockdev-getsize64 device\n"
22222 "\n"
22223 msgstr ""
22224
22225 #. type: textblock
22226 #: ../fish/guestfish-actions.pod:476
22227 msgid "See also L</blockdev-getsz>."
22228 msgstr ""
22229
22230 #. type: =head2
22231 #: ../fish/guestfish-actions.pod:480
22232 msgid "blockdev-getss"
22233 msgstr ""
22234
22235 #. type: verbatim
22236 #: ../fish/guestfish-actions.pod:482
22237 #, no-wrap
22238 msgid ""
22239 " blockdev-getss device\n"
22240 "\n"
22241 msgstr ""
22242
22243 #. type: textblock
22244 #: ../fish/guestfish-actions.pod:487
22245 msgid ""
22246 "(Note, this is not the size in sectors, use L</blockdev-getsz> for that)."
22247 msgstr ""
22248
22249 #. type: =head2
22250 #: ../fish/guestfish-actions.pod:492
22251 msgid "blockdev-getsz"
22252 msgstr ""
22253
22254 #. type: verbatim
22255 #: ../fish/guestfish-actions.pod:494
22256 #, no-wrap
22257 msgid ""
22258 " blockdev-getsz device\n"
22259 "\n"
22260 msgstr ""
22261
22262 #. type: textblock
22263 #: ../fish/guestfish-actions.pod:499
22264 msgid ""
22265 "See also L</blockdev-getss> for the real sector size of the device, and L</"
22266 "blockdev-getsize64> for the more useful I<size in bytes>."
22267 msgstr ""
22268
22269 #. type: =head2
22270 #: ../fish/guestfish-actions.pod:505
22271 msgid "blockdev-rereadpt"
22272 msgstr ""
22273
22274 #. type: verbatim
22275 #: ../fish/guestfish-actions.pod:507
22276 #, no-wrap
22277 msgid ""
22278 " blockdev-rereadpt device\n"
22279 "\n"
22280 msgstr ""
22281
22282 #. type: =head2
22283 #: ../fish/guestfish-actions.pod:513
22284 msgid "blockdev-setbsz"
22285 msgstr ""
22286
22287 #. type: verbatim
22288 #: ../fish/guestfish-actions.pod:515
22289 #, no-wrap
22290 msgid ""
22291 " blockdev-setbsz device blocksize\n"
22292 "\n"
22293 msgstr ""
22294
22295 #. type: =head2
22296 #: ../fish/guestfish-actions.pod:524
22297 msgid "blockdev-setro"
22298 msgstr ""
22299
22300 #. type: verbatim
22301 #: ../fish/guestfish-actions.pod:526
22302 #, no-wrap
22303 msgid ""
22304 " blockdev-setro device\n"
22305 "\n"
22306 msgstr ""
22307
22308 #. type: =head2
22309 #: ../fish/guestfish-actions.pod:532
22310 msgid "blockdev-setrw"
22311 msgstr ""
22312
22313 #. type: verbatim
22314 #: ../fish/guestfish-actions.pod:534
22315 #, no-wrap
22316 msgid ""
22317 " blockdev-setrw device\n"
22318 "\n"
22319 msgstr ""
22320
22321 #. type: =head2
22322 #: ../fish/guestfish-actions.pod:540
22323 msgid "case-sensitive-path"
22324 msgstr ""
22325
22326 #. type: verbatim
22327 #: ../fish/guestfish-actions.pod:542
22328 #, no-wrap
22329 msgid ""
22330 " case-sensitive-path path\n"
22331 "\n"
22332 msgstr ""
22333
22334 #. type: textblock
22335 #: ../fish/guestfish-actions.pod:566
22336 msgid ""
22337 "Thus L</case-sensitive-path> (\"/Windows/System32\")  might return C<\"/"
22338 "WINDOWS/system32\"> (the exact return value would depend on details of how "
22339 "the directories were originally created under Windows)."
22340 msgstr ""
22341
22342 #. type: textblock
22343 #: ../fish/guestfish-actions.pod:574
22344 msgid "See also L</realpath>."
22345 msgstr ""
22346
22347 #. type: =head2
22348 #: ../fish/guestfish-actions.pod:576
22349 msgid "cat"
22350 msgstr ""
22351
22352 #. type: verbatim
22353 #: ../fish/guestfish-actions.pod:578
22354 #, no-wrap
22355 msgid ""
22356 " cat path\n"
22357 "\n"
22358 msgstr ""
22359
22360 #. type: textblock
22361 #: ../fish/guestfish-actions.pod:582
22362 msgid ""
22363 "Note that this function cannot correctly handle binary files (specifically, "
22364 "files containing C<\\0> character which is treated as end of string).  For "
22365 "those you need to use the L</read-file> or L</download> functions which have "
22366 "a more complex interface."
22367 msgstr ""
22368
22369 #. type: =head2
22370 #: ../fish/guestfish-actions.pod:590
22371 msgid "checksum"
22372 msgstr ""
22373
22374 #. type: verbatim
22375 #: ../fish/guestfish-actions.pod:592
22376 #, no-wrap
22377 msgid ""
22378 " checksum csumtype path\n"
22379 "\n"
22380 msgstr ""
22381
22382 #. type: textblock
22383 #: ../fish/guestfish-actions.pod:635
22384 msgid "To get the checksum for a device, use L</checksum-device>."
22385 msgstr ""
22386
22387 #. type: textblock
22388 #: ../fish/guestfish-actions.pod:637
22389 msgid "To get the checksums for many files, use L</checksums-out>."
22390 msgstr ""
22391
22392 #. type: =head2
22393 #: ../fish/guestfish-actions.pod:639
22394 msgid "checksum-device"
22395 msgstr ""
22396
22397 #. type: verbatim
22398 #: ../fish/guestfish-actions.pod:641
22399 #, no-wrap
22400 msgid ""
22401 " checksum-device csumtype device\n"
22402 "\n"
22403 msgstr ""
22404
22405 #. type: textblock
22406 #: ../fish/guestfish-actions.pod:643
22407 msgid ""
22408 "This call computes the MD5, SHAx or CRC checksum of the contents of the "
22409 "device named C<device>.  For the types of checksums supported see the L</"
22410 "checksum> command."
22411 msgstr ""
22412
22413 #. type: =head2
22414 #: ../fish/guestfish-actions.pod:647
22415 msgid "checksums-out"
22416 msgstr ""
22417
22418 #. type: verbatim
22419 #: ../fish/guestfish-actions.pod:649
22420 #, no-wrap
22421 msgid ""
22422 " checksums-out csumtype directory (sumsfile|-)\n"
22423 "\n"
22424 msgstr ""
22425
22426 #. type: =head2
22427 #: ../fish/guestfish-actions.pod:665
22428 msgid "chmod"
22429 msgstr ""
22430
22431 #. type: verbatim
22432 #: ../fish/guestfish-actions.pod:667
22433 #, no-wrap
22434 msgid ""
22435 " chmod mode path\n"
22436 "\n"
22437 msgstr ""
22438
22439 #. type: =head2
22440 #: ../fish/guestfish-actions.pod:678
22441 msgid "chown"
22442 msgstr ""
22443
22444 #. type: verbatim
22445 #: ../fish/guestfish-actions.pod:680
22446 #, no-wrap
22447 msgid ""
22448 " chown owner group path\n"
22449 "\n"
22450 msgstr ""
22451
22452 #. type: =head2
22453 #: ../fish/guestfish-actions.pod:688
22454 msgid "command"
22455 msgstr ""
22456
22457 #. type: verbatim
22458 #: ../fish/guestfish-actions.pod:690
22459 #, no-wrap
22460 msgid ""
22461 " command 'arguments ...'\n"
22462 "\n"
22463 msgstr ""
22464
22465 #. type: textblock
22466 #: ../fish/guestfish-actions.pod:697
22467 msgid ""
22468 "The single parameter is an argv-style list of arguments.  The first element "
22469 "is the name of the program to run.  Subsequent elements are parameters.  The "
22470 "list must be non-empty (ie. must contain a program name).  Note that the "
22471 "command runs directly, and is I<not> invoked via the shell (see L</sh>)."
22472 msgstr ""
22473
22474 #. type: =head2
22475 #: ../fish/guestfish-actions.pod:725
22476 msgid "command-lines"
22477 msgstr ""
22478
22479 #. type: verbatim
22480 #: ../fish/guestfish-actions.pod:727
22481 #, no-wrap
22482 msgid ""
22483 " command-lines 'arguments ...'\n"
22484 "\n"
22485 msgstr ""
22486
22487 #. type: textblock
22488 #: ../fish/guestfish-actions.pod:729
22489 msgid ""
22490 "This is the same as L</command>, but splits the result into a list of lines."
22491 msgstr ""
22492
22493 #. type: textblock
22494 #: ../fish/guestfish-actions.pod:732
22495 msgid "See also: L</sh-lines>"
22496 msgstr ""
22497
22498 #. type: =head2
22499 #: ../fish/guestfish-actions.pod:737
22500 msgid "config"
22501 msgstr ""
22502
22503 #. type: verbatim
22504 #: ../fish/guestfish-actions.pod:739
22505 #, no-wrap
22506 msgid ""
22507 " config qemuparam qemuvalue\n"
22508 "\n"
22509 msgstr ""
22510
22511 #. type: =head2
22512 #: ../fish/guestfish-actions.pod:750
22513 msgid "copy-size"
22514 msgstr ""
22515
22516 #. type: verbatim
22517 #: ../fish/guestfish-actions.pod:752
22518 #, no-wrap
22519 msgid ""
22520 " copy-size src dest size\n"
22521 "\n"
22522 msgstr ""
22523
22524 #. type: =head2
22525 #: ../fish/guestfish-actions.pod:760
22526 msgid "cp"
22527 msgstr ""
22528
22529 #. type: verbatim
22530 #: ../fish/guestfish-actions.pod:762
22531 #, no-wrap
22532 msgid ""
22533 " cp src dest\n"
22534 "\n"
22535 msgstr ""
22536
22537 #. type: =head2
22538 #: ../fish/guestfish-actions.pod:767
22539 msgid "cp-a"
22540 msgstr ""
22541
22542 #. type: verbatim
22543 #: ../fish/guestfish-actions.pod:769
22544 #, no-wrap
22545 msgid ""
22546 " cp-a src dest\n"
22547 "\n"
22548 msgstr ""
22549
22550 #. type: =head2
22551 #: ../fish/guestfish-actions.pod:774
22552 msgid "dd"
22553 msgstr ""
22554
22555 #. type: verbatim
22556 #: ../fish/guestfish-actions.pod:776
22557 #, no-wrap
22558 msgid ""
22559 " dd src dest\n"
22560 "\n"
22561 msgstr ""
22562
22563 #. type: textblock
22564 #: ../fish/guestfish-actions.pod:783
22565 msgid ""
22566 "If the destination is a device, it must be as large or larger than the "
22567 "source file or device, otherwise the copy will fail.  This command cannot do "
22568 "partial copies (see L</copy-size>)."
22569 msgstr ""
22570
22571 #. type: =head2
22572 #: ../fish/guestfish-actions.pod:787
22573 msgid "df"
22574 msgstr ""
22575
22576 #. type: verbatim
22577 #: ../fish/guestfish-actions.pod:789
22578 #, no-wrap
22579 msgid ""
22580 " df\n"
22581 "\n"
22582 msgstr ""
22583
22584 #. type: textblock
22585 #: ../fish/guestfish-actions.pod:793 ../fish/guestfish-actions.pod:804
22586 msgid ""
22587 "This command is mostly useful for interactive sessions.  It is I<not> "
22588 "intended that you try to parse the output string.  Use L</statvfs> from "
22589 "programs."
22590 msgstr ""
22591
22592 #. type: =head2
22593 #: ../fish/guestfish-actions.pod:797
22594 msgid "df-h"
22595 msgstr ""
22596
22597 #. type: verbatim
22598 #: ../fish/guestfish-actions.pod:799
22599 #, no-wrap
22600 msgid ""
22601 " df-h\n"
22602 "\n"
22603 msgstr ""
22604
22605 #. type: =head2
22606 #: ../fish/guestfish-actions.pod:808
22607 msgid "dmesg"
22608 msgstr ""
22609
22610 #. type: verbatim
22611 #: ../fish/guestfish-actions.pod:810
22612 #, no-wrap
22613 msgid ""
22614 " dmesg\n"
22615 "\n"
22616 msgstr ""
22617
22618 #. type: textblock
22619 #: ../fish/guestfish-actions.pod:816
22620 msgid ""
22621 "Another way to get the same information is to enable verbose messages with "
22622 "L</set-verbose> or by setting the environment variable C<LIBGUESTFS_DEBUG=1> "
22623 "before running the program."
22624 msgstr ""
22625
22626 #. type: =head2
22627 #: ../fish/guestfish-actions.pod:821
22628 msgid "download"
22629 msgstr ""
22630
22631 #. type: verbatim
22632 #: ../fish/guestfish-actions.pod:823
22633 #, no-wrap
22634 msgid ""
22635 " download remotefilename (filename|-)\n"
22636 "\n"
22637 msgstr ""
22638
22639 #. type: textblock
22640 #: ../fish/guestfish-actions.pod:830
22641 msgid "See also L</upload>, L</cat>."
22642 msgstr ""
22643
22644 #. type: =head2
22645 #: ../fish/guestfish-actions.pod:834
22646 msgid "download-offset"
22647 msgstr ""
22648
22649 #. type: verbatim
22650 #: ../fish/guestfish-actions.pod:836
22651 #, no-wrap
22652 msgid ""
22653 " download-offset remotefilename (filename|-) offset size\n"
22654 "\n"
22655 msgstr ""
22656
22657 #. type: textblock
22658 #: ../fish/guestfish-actions.pod:844
22659 msgid ""
22660 "Note that there is no limit on the amount of data that can be downloaded "
22661 "with this call, unlike with L</pread>, and this call always reads the full "
22662 "amount unless an error occurs."
22663 msgstr ""
22664
22665 #. type: textblock
22666 #: ../fish/guestfish-actions.pod:849
22667 msgid "See also L</download>, L</pread>."
22668 msgstr ""
22669
22670 #. type: =head2
22671 #: ../fish/guestfish-actions.pod:853
22672 msgid "drop-caches"
22673 msgstr ""
22674
22675 #. type: verbatim
22676 #: ../fish/guestfish-actions.pod:855
22677 #, no-wrap
22678 msgid ""
22679 " drop-caches whattodrop\n"
22680 "\n"
22681 msgstr ""
22682
22683 #. type: =head2
22684 #: ../fish/guestfish-actions.pod:867
22685 msgid "du"
22686 msgstr ""
22687
22688 #. type: verbatim
22689 #: ../fish/guestfish-actions.pod:869
22690 #, no-wrap
22691 msgid ""
22692 " du path\n"
22693 "\n"
22694 msgstr ""
22695
22696 #. type: =head2
22697 #: ../fish/guestfish-actions.pod:881
22698 msgid "e2fsck-f"
22699 msgstr ""
22700
22701 #. type: verbatim
22702 #: ../fish/guestfish-actions.pod:883
22703 #, no-wrap
22704 msgid ""
22705 " e2fsck-f device\n"
22706 "\n"
22707 msgstr ""
22708
22709 #. type: textblock
22710 #: ../fish/guestfish-actions.pod:889
22711 msgid ""
22712 "This command is only needed because of L</resize2fs> (q.v.).  Normally you "
22713 "should use L</fsck>."
22714 msgstr ""
22715
22716 #. type: =head2
22717 #: ../fish/guestfish-actions.pod:892
22718 msgid "echo-daemon"
22719 msgstr ""
22720
22721 #. type: verbatim
22722 #: ../fish/guestfish-actions.pod:894
22723 #, no-wrap
22724 msgid ""
22725 " echo-daemon 'words ...'\n"
22726 "\n"
22727 msgstr ""
22728
22729 #. type: textblock
22730 #: ../fish/guestfish-actions.pod:901
22731 msgid "See also L</ping-daemon>."
22732 msgstr ""
22733
22734 #. type: =head2
22735 #: ../fish/guestfish-actions.pod:903
22736 msgid "egrep"
22737 msgstr ""
22738
22739 #. type: verbatim
22740 #: ../fish/guestfish-actions.pod:905
22741 #, no-wrap
22742 msgid ""
22743 " egrep regex path\n"
22744 "\n"
22745 msgstr ""
22746
22747 #. type: =head2
22748 #: ../fish/guestfish-actions.pod:913
22749 msgid "egrepi"
22750 msgstr ""
22751
22752 #. type: verbatim
22753 #: ../fish/guestfish-actions.pod:915
22754 #, no-wrap
22755 msgid ""
22756 " egrepi regex path\n"
22757 "\n"
22758 msgstr ""
22759
22760 #. type: =head2
22761 #: ../fish/guestfish-actions.pod:923
22762 msgid "equal"
22763 msgstr ""
22764
22765 #. type: verbatim
22766 #: ../fish/guestfish-actions.pod:925
22767 #, no-wrap
22768 msgid ""
22769 " equal file1 file2\n"
22770 "\n"
22771 msgstr ""
22772
22773 #. type: =head2
22774 #: ../fish/guestfish-actions.pod:932
22775 msgid "exists"
22776 msgstr ""
22777
22778 #. type: verbatim
22779 #: ../fish/guestfish-actions.pod:934
22780 #, no-wrap
22781 msgid ""
22782 " exists path\n"
22783 "\n"
22784 msgstr ""
22785
22786 #. type: textblock
22787 #: ../fish/guestfish-actions.pod:939
22788 msgid "See also L</is-file>, L</is-dir>, L</stat>."
22789 msgstr ""
22790
22791 #. type: =head2
22792 #: ../fish/guestfish-actions.pod:941
22793 msgid "fallocate"
22794 msgstr ""
22795
22796 #. type: verbatim
22797 #: ../fish/guestfish-actions.pod:943
22798 #, no-wrap
22799 msgid ""
22800 " fallocate path len\n"
22801 "\n"
22802 msgstr ""
22803
22804 #. type: =head2
22805 #: ../fish/guestfish-actions.pod:960
22806 msgid "fallocate64"
22807 msgstr ""
22808
22809 #. type: verbatim
22810 #: ../fish/guestfish-actions.pod:962
22811 #, no-wrap
22812 msgid ""
22813 " fallocate64 path len\n"
22814 "\n"
22815 msgstr ""
22816
22817 #. type: textblock
22818 #: ../fish/guestfish-actions.pod:968
22819 msgid ""
22820 "Note that this call allocates disk blocks for the file.  To create a sparse "
22821 "file use L</truncate-size> instead."
22822 msgstr ""
22823
22824 #. type: textblock
22825 #: ../fish/guestfish-actions.pod:971
22826 msgid ""
22827 "The deprecated call L</fallocate> does the same, but owing to an oversight "
22828 "it only allowed 30 bit lengths to be specified, effectively limiting the "
22829 "maximum size of files created through that call to 1GB."
22830 msgstr ""
22831
22832 #. type: =head2
22833 #: ../fish/guestfish-actions.pod:980
22834 msgid "fgrep"
22835 msgstr ""
22836
22837 #. type: verbatim
22838 #: ../fish/guestfish-actions.pod:982
22839 #, no-wrap
22840 msgid ""
22841 " fgrep pattern path\n"
22842 "\n"
22843 msgstr ""
22844
22845 #. type: =head2
22846 #: ../fish/guestfish-actions.pod:990
22847 msgid "fgrepi"
22848 msgstr ""
22849
22850 #. type: verbatim
22851 #: ../fish/guestfish-actions.pod:992
22852 #, no-wrap
22853 msgid ""
22854 " fgrepi pattern path\n"
22855 "\n"
22856 msgstr ""
22857
22858 #. type: =head2
22859 #: ../fish/guestfish-actions.pod:1000
22860 msgid "file"
22861 msgstr ""
22862
22863 #. type: verbatim
22864 #: ../fish/guestfish-actions.pod:1002
22865 #, no-wrap
22866 msgid ""
22867 " file path\n"
22868 "\n"
22869 msgstr ""
22870
22871 #. type: textblock
22872 #: ../fish/guestfish-actions.pod:1014
22873 msgid ""
22874 "This command can also be used on C</dev/> devices (and partitions, LV "
22875 "names).  You can for example use this to determine if a device contains a "
22876 "filesystem, although it's usually better to use L</vfs-type>."
22877 msgstr ""
22878
22879 #. type: =head2
22880 #: ../fish/guestfish-actions.pod:1024
22881 msgid "file-architecture"
22882 msgstr ""
22883
22884 #. type: verbatim
22885 #: ../fish/guestfish-actions.pod:1026
22886 #, no-wrap
22887 msgid ""
22888 " file-architecture filename\n"
22889 "\n"
22890 msgstr ""
22891
22892 #. type: =head2
22893 #: ../fish/guestfish-actions.pod:1129
22894 msgid "filesize"
22895 msgstr ""
22896
22897 #. type: verbatim
22898 #: ../fish/guestfish-actions.pod:1131
22899 #, no-wrap
22900 msgid ""
22901 " filesize file\n"
22902 "\n"
22903 msgstr ""
22904
22905 #. type: textblock
22906 #: ../fish/guestfish-actions.pod:1135
22907 msgid ""
22908 "To get other stats about a file, use L</stat>, L</lstat>, L</is-dir>, L</is-"
22909 "file> etc.  To get the size of block devices, use L</blockdev-getsize64>."
22910 msgstr ""
22911
22912 #. type: =head2
22913 #: ../fish/guestfish-actions.pod:1139
22914 msgid "fill"
22915 msgstr ""
22916
22917 #. type: verbatim
22918 #: ../fish/guestfish-actions.pod:1141
22919 #, no-wrap
22920 msgid ""
22921 " fill c len path\n"
22922 "\n"
22923 msgstr ""
22924
22925 #. type: textblock
22926 #: ../fish/guestfish-actions.pod:1147
22927 msgid ""
22928 "To fill a file with zero bytes (sparsely), it is much more efficient to use "
22929 "L</truncate-size>.  To create a file with a pattern of repeating bytes use "
22930 "L</fill-pattern>."
22931 msgstr ""
22932
22933 #. type: =head2
22934 #: ../fish/guestfish-actions.pod:1152
22935 msgid "fill-pattern"
22936 msgstr ""
22937
22938 #. type: verbatim
22939 #: ../fish/guestfish-actions.pod:1154
22940 #, no-wrap
22941 msgid ""
22942 " fill-pattern pattern len path\n"
22943 "\n"
22944 msgstr ""
22945
22946 #. type: textblock
22947 #: ../fish/guestfish-actions.pod:1156
22948 msgid ""
22949 "This function is like L</fill> except that it creates a new file of length "
22950 "C<len> containing the repeating pattern of bytes in C<pattern>.  The pattern "
22951 "is truncated if necessary to ensure the length of the file is exactly C<len> "
22952 "bytes."
22953 msgstr ""
22954
22955 #. type: =head2
22956 #: ../fish/guestfish-actions.pod:1161
22957 msgid "find"
22958 msgstr ""
22959
22960 #. type: verbatim
22961 #: ../fish/guestfish-actions.pod:1163
22962 #, no-wrap
22963 msgid ""
22964 " find directory\n"
22965 "\n"
22966 msgstr ""
22967
22968 #. type: textblock
22969 #: ../fish/guestfish-actions.pod:1177
22970 msgid "then the returned list from L</find> C</tmp> would be 4 elements:"
22971 msgstr ""
22972
22973 #. type: textblock
22974 #: ../fish/guestfish-actions.pod:1190
22975 msgid "See also L</find0>."
22976 msgstr ""
22977
22978 #. type: =head2
22979 #: ../fish/guestfish-actions.pod:1195
22980 msgid "find0"
22981 msgstr ""
22982
22983 #. type: verbatim
22984 #: ../fish/guestfish-actions.pod:1197
22985 #, no-wrap
22986 msgid ""
22987 " find0 directory (files|-)\n"
22988 "\n"
22989 msgstr ""
22990
22991 #. type: textblock
22992 #: ../fish/guestfish-actions.pod:1203
22993 msgid ""
22994 "This command works the same way as L</find> with the following exceptions:"
22995 msgstr ""
22996
22997 #. type: =head2
22998 #: ../fish/guestfish-actions.pod:1230
22999 msgid "findfs-label"
23000 msgstr ""
23001
23002 #. type: verbatim
23003 #: ../fish/guestfish-actions.pod:1232
23004 #, no-wrap
23005 msgid ""
23006 " findfs-label label\n"
23007 "\n"
23008 msgstr ""
23009
23010 #. type: textblock
23011 #: ../fish/guestfish-actions.pod:1238
23012 msgid "To find the label of a filesystem, use L</vfs-label>."
23013 msgstr ""
23014
23015 #. type: =head2
23016 #: ../fish/guestfish-actions.pod:1240
23017 msgid "findfs-uuid"
23018 msgstr ""
23019
23020 #. type: verbatim
23021 #: ../fish/guestfish-actions.pod:1242
23022 #, no-wrap
23023 msgid ""
23024 " findfs-uuid uuid\n"
23025 "\n"
23026 msgstr ""
23027
23028 #. type: textblock
23029 #: ../fish/guestfish-actions.pod:1248
23030 msgid "To find the UUID of a filesystem, use L</vfs-uuid>."
23031 msgstr ""
23032
23033 #. type: =head2
23034 #: ../fish/guestfish-actions.pod:1250
23035 msgid "fsck"
23036 msgstr ""
23037
23038 #. type: verbatim
23039 #: ../fish/guestfish-actions.pod:1252
23040 #, no-wrap
23041 msgid ""
23042 " fsck fstype device\n"
23043 "\n"
23044 msgstr ""
23045
23046 #. type: =head2
23047 #: ../fish/guestfish-actions.pod:1282
23048 msgid "get-append"
23049 msgstr ""
23050
23051 #. type: verbatim
23052 #: ../fish/guestfish-actions.pod:1284
23053 #, no-wrap
23054 msgid ""
23055 " get-append\n"
23056 "\n"
23057 msgstr ""
23058
23059 #. type: =head2
23060 #: ../fish/guestfish-actions.pod:1291
23061 msgid "get-attach-method"
23062 msgstr ""
23063
23064 #. type: verbatim
23065 #: ../fish/guestfish-actions.pod:1293
23066 #, no-wrap
23067 msgid ""
23068 " get-attach-method\n"
23069 "\n"
23070 msgstr ""
23071
23072 #. type: textblock
23073 #: ../fish/guestfish-actions.pod:1295
23074 msgid "Return the current attach method.  See L</set-attach-method>."
23075 msgstr ""
23076
23077 #. type: =head2
23078 #: ../fish/guestfish-actions.pod:1297
23079 msgid "get-autosync"
23080 msgstr ""
23081
23082 #. type: verbatim
23083 #: ../fish/guestfish-actions.pod:1299
23084 #, no-wrap
23085 msgid ""
23086 " get-autosync\n"
23087 "\n"
23088 msgstr ""
23089
23090 #. type: =head2
23091 #: ../fish/guestfish-actions.pod:1303
23092 msgid "get-direct"
23093 msgstr ""
23094
23095 #. type: verbatim
23096 #: ../fish/guestfish-actions.pod:1305
23097 #, no-wrap
23098 msgid ""
23099 " get-direct\n"
23100 "\n"
23101 msgstr ""
23102
23103 #. type: =head2
23104 #: ../fish/guestfish-actions.pod:1309
23105 msgid "get-e2label"
23106 msgstr ""
23107
23108 #. type: verbatim
23109 #: ../fish/guestfish-actions.pod:1311
23110 #, no-wrap
23111 msgid ""
23112 " get-e2label device\n"
23113 "\n"
23114 msgstr ""
23115
23116 #. type: =head2
23117 #: ../fish/guestfish-actions.pod:1323
23118 msgid "get-e2uuid"
23119 msgstr ""
23120
23121 #. type: verbatim
23122 #: ../fish/guestfish-actions.pod:1325
23123 #, no-wrap
23124 msgid ""
23125 " get-e2uuid device\n"
23126 "\n"
23127 msgstr ""
23128
23129 #. type: =head2
23130 #: ../fish/guestfish-actions.pod:1337
23131 msgid "get-memsize"
23132 msgstr ""
23133
23134 #. type: verbatim
23135 #: ../fish/guestfish-actions.pod:1339
23136 #, no-wrap
23137 msgid ""
23138 " get-memsize\n"
23139 "\n"
23140 msgstr ""
23141
23142 #. type: textblock
23143 #: ../fish/guestfish-actions.pod:1344
23144 msgid ""
23145 "If L</set-memsize> was not called on this handle, and if "
23146 "C<LIBGUESTFS_MEMSIZE> was not set, then this returns the compiled-in default "
23147 "value for memsize."
23148 msgstr ""
23149
23150 #. type: =head2
23151 #: ../fish/guestfish-actions.pod:1351
23152 msgid "get-network"
23153 msgstr ""
23154
23155 #. type: verbatim
23156 #: ../fish/guestfish-actions.pod:1353
23157 #, no-wrap
23158 msgid ""
23159 " get-network\n"
23160 "\n"
23161 msgstr ""
23162
23163 #. type: =head2
23164 #: ../fish/guestfish-actions.pod:1357
23165 msgid "get-path"
23166 msgstr ""
23167
23168 #. type: verbatim
23169 #: ../fish/guestfish-actions.pod:1359
23170 #, no-wrap
23171 msgid ""
23172 " get-path\n"
23173 "\n"
23174 msgstr ""
23175
23176 #. type: =head2
23177 #: ../fish/guestfish-actions.pod:1366
23178 msgid "get-pid"
23179 msgstr ""
23180
23181 #. type: =head2
23182 #: ../fish/guestfish-actions.pod:1368
23183 msgid "pid"
23184 msgstr ""
23185
23186 #. type: verbatim
23187 #: ../fish/guestfish-actions.pod:1370
23188 #, no-wrap
23189 msgid ""
23190 " get-pid\n"
23191 "\n"
23192 msgstr ""
23193
23194 #. type: =head2
23195 #: ../fish/guestfish-actions.pod:1377
23196 msgid "get-qemu"
23197 msgstr ""
23198
23199 #. type: verbatim
23200 #: ../fish/guestfish-actions.pod:1379
23201 #, no-wrap
23202 msgid ""
23203 " get-qemu\n"
23204 "\n"
23205 msgstr ""
23206
23207 #. type: =head2
23208 #: ../fish/guestfish-actions.pod:1386
23209 msgid "get-recovery-proc"
23210 msgstr ""
23211
23212 #. type: verbatim
23213 #: ../fish/guestfish-actions.pod:1388
23214 #, no-wrap
23215 msgid ""
23216 " get-recovery-proc\n"
23217 "\n"
23218 msgstr ""
23219
23220 #. type: =head2
23221 #: ../fish/guestfish-actions.pod:1392
23222 msgid "get-selinux"
23223 msgstr ""
23224
23225 #. type: verbatim
23226 #: ../fish/guestfish-actions.pod:1394
23227 #, no-wrap
23228 msgid ""
23229 " get-selinux\n"
23230 "\n"
23231 msgstr ""
23232
23233 #. type: textblock
23234 #: ../fish/guestfish-actions.pod:1396
23235 msgid ""
23236 "This returns the current setting of the selinux flag which is passed to the "
23237 "appliance at boot time.  See L</set-selinux>."
23238 msgstr ""
23239
23240 #. type: =head2
23241 #: ../fish/guestfish-actions.pod:1402
23242 msgid "get-state"
23243 msgstr ""
23244
23245 #. type: verbatim
23246 #: ../fish/guestfish-actions.pod:1404
23247 #, no-wrap
23248 msgid ""
23249 " get-state\n"
23250 "\n"
23251 msgstr ""
23252
23253 #. type: =head2
23254 #: ../fish/guestfish-actions.pod:1411
23255 msgid "get-trace"
23256 msgstr ""
23257
23258 #. type: verbatim
23259 #: ../fish/guestfish-actions.pod:1413
23260 #, no-wrap
23261 msgid ""
23262 " get-trace\n"
23263 "\n"
23264 msgstr ""
23265
23266 #. type: =head2
23267 #: ../fish/guestfish-actions.pod:1417
23268 msgid "get-umask"
23269 msgstr ""
23270
23271 #. type: verbatim
23272 #: ../fish/guestfish-actions.pod:1419
23273 #, no-wrap
23274 msgid ""
23275 " get-umask\n"
23276 "\n"
23277 msgstr ""
23278
23279 #. type: textblock
23280 #: ../fish/guestfish-actions.pod:1421
23281 msgid ""
23282 "Return the current umask.  By default the umask is C<022> unless it has been "
23283 "set by calling L</umask>."
23284 msgstr ""
23285
23286 #. type: =head2
23287 #: ../fish/guestfish-actions.pod:1424
23288 msgid "get-verbose"
23289 msgstr ""
23290
23291 #. type: verbatim
23292 #: ../fish/guestfish-actions.pod:1426
23293 #, no-wrap
23294 msgid ""
23295 " get-verbose\n"
23296 "\n"
23297 msgstr ""
23298
23299 #. type: =head2
23300 #: ../fish/guestfish-actions.pod:1430
23301 msgid "getcon"
23302 msgstr ""
23303
23304 #. type: verbatim
23305 #: ../fish/guestfish-actions.pod:1432
23306 #, no-wrap
23307 msgid ""
23308 " getcon\n"
23309 "\n"
23310 msgstr ""
23311
23312 #. type: textblock
23313 #: ../fish/guestfish-actions.pod:1436
23314 msgid "See the documentation about SELINUX in L<guestfs(3)>, and L</setcon>"
23315 msgstr ""
23316
23317 #. type: =head2
23318 #: ../fish/guestfish-actions.pod:1439
23319 msgid "getxattr"
23320 msgstr ""
23321
23322 #. type: verbatim
23323 #: ../fish/guestfish-actions.pod:1441
23324 #, no-wrap
23325 msgid ""
23326 " getxattr path name\n"
23327 "\n"
23328 msgstr ""
23329
23330 #. type: textblock
23331 #: ../fish/guestfish-actions.pod:1443
23332 msgid ""
23333 "Get a single extended attribute from file C<path> named C<name>.  This call "
23334 "follows symlinks.  If you want to lookup an extended attribute for the "
23335 "symlink itself, use L</lgetxattr>."
23336 msgstr ""
23337
23338 #. type: textblock
23339 #: ../fish/guestfish-actions.pod:1447 ../fish/guestfish-actions.pod:2453
23340 msgid ""
23341 "Normally it is better to get all extended attributes from a file in one go "
23342 "by calling L</getxattrs>.  However some Linux filesystem implementations are "
23343 "buggy and do not provide a way to list out attributes.  For these "
23344 "filesystems (notably ntfs-3g)  you have to know the names of the extended "
23345 "attributes you want in advance and call this function."
23346 msgstr ""
23347
23348 #. type: textblock
23349 #: ../fish/guestfish-actions.pod:1457
23350 msgid "See also: L</getxattrs>, L</lgetxattr>, L<attr(5)>."
23351 msgstr ""
23352
23353 #. type: =head2
23354 #: ../fish/guestfish-actions.pod:1459
23355 msgid "getxattrs"
23356 msgstr ""
23357
23358 #. type: verbatim
23359 #: ../fish/guestfish-actions.pod:1461
23360 #, no-wrap
23361 msgid ""
23362 " getxattrs path\n"
23363 "\n"
23364 msgstr ""
23365
23366 #. type: textblock
23367 #: ../fish/guestfish-actions.pod:1469
23368 msgid "See also: L</lgetxattrs>, L<attr(5)>."
23369 msgstr ""
23370
23371 #. type: =head2
23372 #: ../fish/guestfish-actions.pod:1471
23373 msgid "glob-expand"
23374 msgstr ""
23375
23376 #. type: verbatim
23377 #: ../fish/guestfish-actions.pod:1473
23378 #, no-wrap
23379 msgid ""
23380 " glob-expand pattern\n"
23381 "\n"
23382 msgstr ""
23383
23384 #. type: =head2
23385 #: ../fish/guestfish-actions.pod:1486
23386 msgid "grep"
23387 msgstr ""
23388
23389 #. type: verbatim
23390 #: ../fish/guestfish-actions.pod:1488
23391 #, no-wrap
23392 msgid ""
23393 " grep regex path\n"
23394 "\n"
23395 msgstr ""
23396
23397 #. type: =head2
23398 #: ../fish/guestfish-actions.pod:1496
23399 msgid "grepi"
23400 msgstr ""
23401
23402 #. type: verbatim
23403 #: ../fish/guestfish-actions.pod:1498
23404 #, no-wrap
23405 msgid ""
23406 " grepi regex path\n"
23407 "\n"
23408 msgstr ""
23409
23410 #. type: =head2
23411 #: ../fish/guestfish-actions.pod:1506
23412 msgid "grub-install"
23413 msgstr ""
23414
23415 #. type: verbatim
23416 #: ../fish/guestfish-actions.pod:1508
23417 #, no-wrap
23418 msgid ""
23419 " grub-install root device\n"
23420 "\n"
23421 msgstr ""
23422
23423 #. type: =head2
23424 #: ../fish/guestfish-actions.pod:1524
23425 msgid "head"
23426 msgstr ""
23427
23428 #. type: verbatim
23429 #: ../fish/guestfish-actions.pod:1526
23430 #, no-wrap
23431 msgid ""
23432 " head path\n"
23433 "\n"
23434 msgstr ""
23435
23436 #. type: =head2
23437 #: ../fish/guestfish-actions.pod:1534
23438 msgid "head-n"
23439 msgstr ""
23440
23441 #. type: verbatim
23442 #: ../fish/guestfish-actions.pod:1536
23443 #, no-wrap
23444 msgid ""
23445 " head-n nrlines path\n"
23446 "\n"
23447 msgstr ""
23448
23449 #. type: =head2
23450 #: ../fish/guestfish-actions.pod:1549
23451 msgid "hexdump"
23452 msgstr ""
23453
23454 #. type: verbatim
23455 #: ../fish/guestfish-actions.pod:1551
23456 #, no-wrap
23457 msgid ""
23458 " hexdump path\n"
23459 "\n"
23460 msgstr ""
23461
23462 #. type: =head2
23463 #: ../fish/guestfish-actions.pod:1559
23464 msgid "initrd-cat"
23465 msgstr ""
23466
23467 #. type: verbatim
23468 #: ../fish/guestfish-actions.pod:1561
23469 #, no-wrap
23470 msgid ""
23471 " initrd-cat initrdpath filename\n"
23472 "\n"
23473 msgstr ""
23474
23475 #. type: textblock
23476 #: ../fish/guestfish-actions.pod:1573
23477 msgid "See also L</initrd-list>."
23478 msgstr ""
23479
23480 #. type: =head2
23481 #: ../fish/guestfish-actions.pod:1578
23482 msgid "initrd-list"
23483 msgstr ""
23484
23485 #. type: verbatim
23486 #: ../fish/guestfish-actions.pod:1580
23487 #, no-wrap
23488 msgid ""
23489 " initrd-list path\n"
23490 "\n"
23491 msgstr ""
23492
23493 #. type: =head2
23494 #: ../fish/guestfish-actions.pod:1592
23495 msgid "inotify-add-watch"
23496 msgstr ""
23497
23498 #. type: verbatim
23499 #: ../fish/guestfish-actions.pod:1594
23500 #, no-wrap
23501 msgid ""
23502 " inotify-add-watch path mask\n"
23503 "\n"
23504 msgstr ""
23505
23506 #. type: =head2
23507 #: ../fish/guestfish-actions.pod:1606
23508 msgid "inotify-close"
23509 msgstr ""
23510
23511 #. type: verbatim
23512 #: ../fish/guestfish-actions.pod:1608
23513 #, no-wrap
23514 msgid ""
23515 " inotify-close\n"
23516 "\n"
23517 msgstr ""
23518
23519 #. type: =head2
23520 #: ../fish/guestfish-actions.pod:1614
23521 msgid "inotify-files"
23522 msgstr ""
23523
23524 #. type: verbatim
23525 #: ../fish/guestfish-actions.pod:1616
23526 #, no-wrap
23527 msgid ""
23528 " inotify-files\n"
23529 "\n"
23530 msgstr ""
23531
23532 #. type: textblock
23533 #: ../fish/guestfish-actions.pod:1618
23534 msgid ""
23535 "This function is a helpful wrapper around L</inotify-read> which just "
23536 "returns a list of pathnames of objects that were touched.  The returned "
23537 "pathnames are sorted and deduplicated."
23538 msgstr ""
23539
23540 #. type: =head2
23541 #: ../fish/guestfish-actions.pod:1622
23542 msgid "inotify-init"
23543 msgstr ""
23544
23545 #. type: verbatim
23546 #: ../fish/guestfish-actions.pod:1624
23547 #, no-wrap
23548 msgid ""
23549 " inotify-init maxevents\n"
23550 "\n"
23551 msgstr ""
23552
23553 #. type: textblock
23554 #: ../fish/guestfish-actions.pod:1630
23555 msgid ""
23556 "C<maxevents> is the maximum number of events which will be queued up between "
23557 "calls to L</inotify-read> or L</inotify-files>.  If this is passed as C<0>, "
23558 "then the kernel (or previously set)  default is used.  For Linux 2.6.29 the "
23559 "default was 16384 events.  Beyond this limit, the kernel throws away events, "
23560 "but records the fact that it threw them away by setting a flag "
23561 "C<IN_Q_OVERFLOW> in the returned structure list (see L</inotify-read>)."
23562 msgstr ""
23563
23564 #. type: textblock
23565 #: ../fish/guestfish-actions.pod:1640
23566 msgid ""
23567 "Before any events are generated, you have to add some watches to the "
23568 "internal watch list.  See: L</inotify-add-watch>, L</inotify-rm-watch> and "
23569 "L</inotify-watch-all>."
23570 msgstr ""
23571
23572 #. type: textblock
23573 #: ../fish/guestfish-actions.pod:1646
23574 msgid ""
23575 "Queued up events should be read periodically by calling L</inotify-read> (or "
23576 "L</inotify-files> which is just a helpful wrapper around L</inotify-read>).  "
23577 "If you don't read the events out often enough then you risk the internal "
23578 "queue overflowing."
23579 msgstr ""
23580
23581 #. type: textblock
23582 #: ../fish/guestfish-actions.pod:1653
23583 msgid ""
23584 "The handle should be closed after use by calling L</inotify-close>.  This "
23585 "also removes any watches automatically."
23586 msgstr ""
23587
23588 #. type: =head2
23589 #: ../fish/guestfish-actions.pod:1662
23590 msgid "inotify-read"
23591 msgstr ""
23592
23593 #. type: verbatim
23594 #: ../fish/guestfish-actions.pod:1664
23595 #, no-wrap
23596 msgid ""
23597 " inotify-read\n"
23598 "\n"
23599 msgstr ""
23600
23601 #. type: =head2
23602 #: ../fish/guestfish-actions.pod:1677
23603 msgid "inotify-rm-watch"
23604 msgstr ""
23605
23606 #. type: verbatim
23607 #: ../fish/guestfish-actions.pod:1679
23608 #, no-wrap
23609 msgid ""
23610 " inotify-rm-watch wd\n"
23611 "\n"
23612 msgstr ""
23613
23614 #. type: textblock
23615 #: ../fish/guestfish-actions.pod:1681
23616 msgid "Remove a previously defined inotify watch.  See L</inotify-add-watch>."
23617 msgstr ""
23618
23619 #. type: =head2
23620 #: ../fish/guestfish-actions.pod:1684
23621 msgid "inspect-get-arch"
23622 msgstr ""
23623
23624 #. type: verbatim
23625 #: ../fish/guestfish-actions.pod:1686
23626 #, no-wrap
23627 msgid ""
23628 " inspect-get-arch root\n"
23629 "\n"
23630 msgstr ""
23631
23632 #. type: textblock
23633 #: ../fish/guestfish-actions.pod:1688 ../fish/guestfish-actions.pod:1704
23634 #: ../fish/guestfish-actions.pod:1790 ../fish/guestfish-actions.pod:1826
23635 #: ../fish/guestfish-actions.pod:1844 ../fish/guestfish-actions.pod:1878
23636 #: ../fish/guestfish-actions.pod:1893 ../fish/guestfish-actions.pod:1914
23637 #: ../fish/guestfish-actions.pod:1929 ../fish/guestfish-actions.pod:1962
23638 #: ../fish/guestfish-actions.pod:1984 ../fish/guestfish-actions.pod:2008
23639 #: ../fish/guestfish-actions.pod:2025 ../fish/guestfish-actions.pod:2068
23640 #: ../fish/guestfish-actions.pod:2103 ../fish/guestfish-actions.pod:2119
23641 #: ../fish/guestfish-actions.pod:2135 ../fish/guestfish-actions.pod:2148
23642 #: ../fish/guestfish-actions.pod:2161 ../fish/guestfish-actions.pod:2176
23643 msgid ""
23644 "This function should only be called with a root device string as returned by "
23645 "L</inspect-os>."
23646 msgstr ""
23647
23648 #. type: textblock
23649 #: ../fish/guestfish-actions.pod:1691
23650 msgid ""
23651 "This returns the architecture of the inspected operating system.  The "
23652 "possible return values are listed under L</file-architecture>."
23653 msgstr ""
23654
23655 #. type: =head2
23656 #: ../fish/guestfish-actions.pod:1700
23657 msgid "inspect-get-distro"
23658 msgstr ""
23659
23660 #. type: verbatim
23661 #: ../fish/guestfish-actions.pod:1702
23662 #, no-wrap
23663 msgid ""
23664 " inspect-get-distro root\n"
23665 "\n"
23666 msgstr ""
23667
23668 #. type: =head2
23669 #: ../fish/guestfish-actions.pod:1786
23670 msgid "inspect-get-drive-mappings"
23671 msgstr ""
23672
23673 #. type: verbatim
23674 #: ../fish/guestfish-actions.pod:1788
23675 #, no-wrap
23676 msgid ""
23677 " inspect-get-drive-mappings root\n"
23678 "\n"
23679 msgstr ""
23680
23681 #. type: textblock
23682 #: ../fish/guestfish-actions.pod:1818
23683 msgid ""
23684 "Please read L<guestfs(3)/INSPECTION> for more details.  See also L</inspect-"
23685 "get-mountpoints>, L</inspect-get-filesystems>."
23686 msgstr ""
23687
23688 #. type: =head2
23689 #: ../fish/guestfish-actions.pod:1822
23690 msgid "inspect-get-filesystems"
23691 msgstr ""
23692
23693 #. type: verbatim
23694 #: ../fish/guestfish-actions.pod:1824
23695 #, no-wrap
23696 msgid ""
23697 " inspect-get-filesystems root\n"
23698 "\n"
23699 msgstr ""
23700
23701 #. type: textblock
23702 #: ../fish/guestfish-actions.pod:1837
23703 msgid ""
23704 "Please read L<guestfs(3)/INSPECTION> for more details.  See also L</inspect-"
23705 "get-mountpoints>."
23706 msgstr ""
23707
23708 #. type: =head2
23709 #: ../fish/guestfish-actions.pod:1840
23710 msgid "inspect-get-format"
23711 msgstr ""
23712
23713 #. type: verbatim
23714 #: ../fish/guestfish-actions.pod:1842
23715 #, no-wrap
23716 msgid ""
23717 " inspect-get-format root\n"
23718 "\n"
23719 msgstr ""
23720
23721 #. type: =head2
23722 #: ../fish/guestfish-actions.pod:1874
23723 msgid "inspect-get-hostname"
23724 msgstr ""
23725
23726 #. type: verbatim
23727 #: ../fish/guestfish-actions.pod:1876
23728 #, no-wrap
23729 msgid ""
23730 " inspect-get-hostname root\n"
23731 "\n"
23732 msgstr ""
23733
23734 #. type: =head2
23735 #: ../fish/guestfish-actions.pod:1889
23736 msgid "inspect-get-major-version"
23737 msgstr ""
23738
23739 #. type: verbatim
23740 #: ../fish/guestfish-actions.pod:1891
23741 #, no-wrap
23742 msgid ""
23743 " inspect-get-major-version root\n"
23744 "\n"
23745 msgstr ""
23746
23747 #. type: =head2
23748 #: ../fish/guestfish-actions.pod:1910
23749 msgid "inspect-get-minor-version"
23750 msgstr ""
23751
23752 #. type: verbatim
23753 #: ../fish/guestfish-actions.pod:1912
23754 #, no-wrap
23755 msgid ""
23756 " inspect-get-minor-version root\n"
23757 "\n"
23758 msgstr ""
23759
23760 #. type: textblock
23761 #: ../fish/guestfish-actions.pod:1922
23762 msgid ""
23763 "Please read L<guestfs(3)/INSPECTION> for more details.  See also L</inspect-"
23764 "get-major-version>."
23765 msgstr ""
23766
23767 #. type: =head2
23768 #: ../fish/guestfish-actions.pod:1925
23769 msgid "inspect-get-mountpoints"
23770 msgstr ""
23771
23772 #. type: verbatim
23773 #: ../fish/guestfish-actions.pod:1927
23774 #, no-wrap
23775 msgid ""
23776 " inspect-get-mountpoints root\n"
23777 "\n"
23778 msgstr ""
23779
23780 #. type: textblock
23781 #: ../fish/guestfish-actions.pod:1949
23782 msgid ""
23783 "For operating systems like Windows which still use drive letters, this call "
23784 "will only return an entry for the first drive \"mounted on\" C</>.  For "
23785 "information about the mapping of drive letters to partitions, see L</inspect-"
23786 "get-drive-mappings>."
23787 msgstr ""
23788
23789 #. type: textblock
23790 #: ../fish/guestfish-actions.pod:1955
23791 msgid ""
23792 "Please read L<guestfs(3)/INSPECTION> for more details.  See also L</inspect-"
23793 "get-filesystems>."
23794 msgstr ""
23795
23796 #. type: =head2
23797 #: ../fish/guestfish-actions.pod:1958
23798 msgid "inspect-get-package-format"
23799 msgstr ""
23800
23801 #. type: verbatim
23802 #: ../fish/guestfish-actions.pod:1960
23803 #, no-wrap
23804 msgid ""
23805 " inspect-get-package-format root\n"
23806 "\n"
23807 msgstr ""
23808
23809 #. type: textblock
23810 #: ../fish/guestfish-actions.pod:1965
23811 msgid ""
23812 "This function and L</inspect-get-package-management> return the package "
23813 "format and package management tool used by the inspected operating system.  "
23814 "For example for Fedora these functions would return C<rpm> (package format) "
23815 "and C<yum> (package management)."
23816 msgstr ""
23817
23818 #. type: =head2
23819 #: ../fish/guestfish-actions.pod:1980
23820 msgid "inspect-get-package-management"
23821 msgstr ""
23822
23823 #. type: verbatim
23824 #: ../fish/guestfish-actions.pod:1982
23825 #, no-wrap
23826 msgid ""
23827 " inspect-get-package-management root\n"
23828 "\n"
23829 msgstr ""
23830
23831 #. type: textblock
23832 #: ../fish/guestfish-actions.pod:1987
23833 msgid ""
23834 "L</inspect-get-package-format> and this function return the package format "
23835 "and package management tool used by the inspected operating system.  For "
23836 "example for Fedora these functions would return C<rpm> (package format) and "
23837 "C<yum> (package management)."
23838 msgstr ""
23839
23840 #. type: =head2
23841 #: ../fish/guestfish-actions.pod:2004
23842 msgid "inspect-get-product-name"
23843 msgstr ""
23844
23845 #. type: verbatim
23846 #: ../fish/guestfish-actions.pod:2006
23847 #, no-wrap
23848 msgid ""
23849 " inspect-get-product-name root\n"
23850 "\n"
23851 msgstr ""
23852
23853 #. type: =head2
23854 #: ../fish/guestfish-actions.pod:2021
23855 msgid "inspect-get-product-variant"
23856 msgstr ""
23857
23858 #. type: verbatim
23859 #: ../fish/guestfish-actions.pod:2023
23860 #, no-wrap
23861 msgid ""
23862 " inspect-get-product-variant root\n"
23863 "\n"
23864 msgstr ""
23865
23866 #. type: textblock
23867 #: ../fish/guestfish-actions.pod:2047
23868 msgid ""
23869 "Please read L<guestfs(3)/INSPECTION> for more details.  See also L</inspect-"
23870 "get-product-name>, L</inspect-get-major-version>."
23871 msgstr ""
23872
23873 #. type: =head2
23874 #: ../fish/guestfish-actions.pod:2051
23875 msgid "inspect-get-roots"
23876 msgstr ""
23877
23878 #. type: verbatim
23879 #: ../fish/guestfish-actions.pod:2053
23880 #, no-wrap
23881 msgid ""
23882 " inspect-get-roots\n"
23883 "\n"
23884 msgstr ""
23885
23886 #. type: textblock
23887 #: ../fish/guestfish-actions.pod:2055
23888 msgid ""
23889 "This function is a convenient way to get the list of root devices, as "
23890 "returned from a previous call to L</inspect-os>, but without redoing the "
23891 "whole inspection process."
23892 msgstr ""
23893
23894 #. type: textblock
23895 #: ../fish/guestfish-actions.pod:2059
23896 msgid ""
23897 "This returns an empty list if either no root devices were found or the "
23898 "caller has not called L</inspect-os>."
23899 msgstr ""
23900
23901 #. type: =head2
23902 #: ../fish/guestfish-actions.pod:2064
23903 msgid "inspect-get-type"
23904 msgstr ""
23905
23906 #. type: verbatim
23907 #: ../fish/guestfish-actions.pod:2066
23908 #, no-wrap
23909 msgid ""
23910 " inspect-get-type root\n"
23911 "\n"
23912 msgstr ""
23913
23914 #. type: =head2
23915 #: ../fish/guestfish-actions.pod:2099
23916 msgid "inspect-get-windows-current-control-set"
23917 msgstr ""
23918
23919 #. type: verbatim
23920 #: ../fish/guestfish-actions.pod:2101
23921 #, no-wrap
23922 msgid ""
23923 " inspect-get-windows-current-control-set root\n"
23924 "\n"
23925 msgstr ""
23926
23927 #. type: =head2
23928 #: ../fish/guestfish-actions.pod:2115
23929 msgid "inspect-get-windows-systemroot"
23930 msgstr ""
23931
23932 #. type: verbatim
23933 #: ../fish/guestfish-actions.pod:2117
23934 #, no-wrap
23935 msgid ""
23936 " inspect-get-windows-systemroot root\n"
23937 "\n"
23938 msgstr ""
23939
23940 #. type: =head2
23941 #: ../fish/guestfish-actions.pod:2131
23942 msgid "inspect-is-live"
23943 msgstr ""
23944
23945 #. type: verbatim
23946 #: ../fish/guestfish-actions.pod:2133
23947 #, no-wrap
23948 msgid ""
23949 " inspect-is-live root\n"
23950 "\n"
23951 msgstr ""
23952
23953 #. type: textblock
23954 #: ../fish/guestfish-actions.pod:2138
23955 msgid ""
23956 "If L</inspect-get-format> returns C<installer> (this is an install disk), "
23957 "then this returns true if a live image was detected on the disk."
23958 msgstr ""
23959
23960 #. type: =head2
23961 #: ../fish/guestfish-actions.pod:2144
23962 msgid "inspect-is-multipart"
23963 msgstr ""
23964
23965 #. type: verbatim
23966 #: ../fish/guestfish-actions.pod:2146
23967 #, no-wrap
23968 msgid ""
23969 " inspect-is-multipart root\n"
23970 "\n"
23971 msgstr ""
23972
23973 #. type: textblock
23974 #: ../fish/guestfish-actions.pod:2151
23975 msgid ""
23976 "If L</inspect-get-format> returns C<installer> (this is an install disk), "
23977 "then this returns true if the disk is part of a set."
23978 msgstr ""
23979
23980 #. type: =head2
23981 #: ../fish/guestfish-actions.pod:2157
23982 msgid "inspect-is-netinst"
23983 msgstr ""
23984
23985 #. type: verbatim
23986 #: ../fish/guestfish-actions.pod:2159
23987 #, no-wrap
23988 msgid ""
23989 " inspect-is-netinst root\n"
23990 "\n"
23991 msgstr ""
23992
23993 #. type: textblock
23994 #: ../fish/guestfish-actions.pod:2164
23995 msgid ""
23996 "If L</inspect-get-format> returns C<installer> (this is an install disk), "
23997 "then this returns true if the disk is a network installer, ie. not a self-"
23998 "contained install CD but one which is likely to require network access to "
23999 "complete the install."
24000 msgstr ""
24001
24002 #. type: =head2
24003 #: ../fish/guestfish-actions.pod:2172
24004 msgid "inspect-list-applications"
24005 msgstr ""
24006
24007 #. type: verbatim
24008 #: ../fish/guestfish-actions.pod:2174
24009 #, no-wrap
24010 msgid ""
24011 " inspect-list-applications root\n"
24012 "\n"
24013 msgstr ""
24014
24015 #. type: textblock
24016 #: ../fish/guestfish-actions.pod:2181
24017 msgid ""
24018 "I<Note:> This call works differently from other parts of the inspection "
24019 "API.  You have to call L</inspect-os>, then L</inspect-get-mountpoints>, "
24020 "then mount up the disks, before calling this.  Listing applications is a "
24021 "significantly more difficult operation which requires access to the full "
24022 "filesystem.  Also note that unlike the other L</inspect-get-*> calls which "
24023 "are just returning data cached in the libguestfs handle, this call actually "
24024 "reads parts of the mounted filesystems during the call."
24025 msgstr ""
24026
24027 #. type: =head2
24028 #: ../fish/guestfish-actions.pod:2271
24029 msgid "inspect-os"
24030 msgstr ""
24031
24032 #. type: verbatim
24033 #: ../fish/guestfish-actions.pod:2273
24034 #, no-wrap
24035 msgid ""
24036 " inspect-os\n"
24037 "\n"
24038 msgstr ""
24039
24040 #. type: textblock
24041 #: ../fish/guestfish-actions.pod:2288
24042 msgid ""
24043 "You can pass the root string(s) returned to other L</inspect-get-*> "
24044 "functions in order to query further information about each operating system, "
24045 "such as the name and version."
24046 msgstr ""
24047
24048 #. type: textblock
24049 #: ../fish/guestfish-actions.pod:2293
24050 msgid ""
24051 "This function uses other libguestfs features such as L</mount-ro> and L</"
24052 "umount-all> in order to mount and unmount filesystems and look at the "
24053 "contents.  This should be called with no disks currently mounted.  The "
24054 "function may also use Augeas, so any existing Augeas handle will be closed."
24055 msgstr ""
24056
24057 #. type: textblock
24058 #: ../fish/guestfish-actions.pod:2305 ../fish/guestfish-actions.pod:2481
24059 #: ../fish/guestfish-actions.pod:2527
24060 msgid "See also L</list-filesystems>."
24061 msgstr ""
24062
24063 #. type: =head2
24064 #: ../fish/guestfish-actions.pod:2307
24065 msgid "is-blockdev"
24066 msgstr ""
24067
24068 #. type: verbatim
24069 #: ../fish/guestfish-actions.pod:2309
24070 #, no-wrap
24071 msgid ""
24072 " is-blockdev path\n"
24073 "\n"
24074 msgstr ""
24075
24076 #. type: textblock
24077 #: ../fish/guestfish-actions.pod:2314 ../fish/guestfish-actions.pod:2332
24078 #: ../fish/guestfish-actions.pod:2351 ../fish/guestfish-actions.pod:2360
24079 #: ../fish/guestfish-actions.pod:2370 ../fish/guestfish-actions.pod:2404
24080 #: ../fish/guestfish-actions.pod:2413
24081 msgid "See also L</stat>."
24082 msgstr ""
24083
24084 #. type: =head2
24085 #: ../fish/guestfish-actions.pod:2316
24086 msgid "is-busy"
24087 msgstr ""
24088
24089 #. type: verbatim
24090 #: ../fish/guestfish-actions.pod:2318
24091 #, no-wrap
24092 msgid ""
24093 " is-busy\n"
24094 "\n"
24095 msgstr ""
24096
24097 #. type: =head2
24098 #: ../fish/guestfish-actions.pod:2325
24099 msgid "is-chardev"
24100 msgstr ""
24101
24102 #. type: verbatim
24103 #: ../fish/guestfish-actions.pod:2327
24104 #, no-wrap
24105 msgid ""
24106 " is-chardev path\n"
24107 "\n"
24108 msgstr ""
24109
24110 #. type: =head2
24111 #: ../fish/guestfish-actions.pod:2334
24112 msgid "is-config"
24113 msgstr ""
24114
24115 #. type: verbatim
24116 #: ../fish/guestfish-actions.pod:2336
24117 #, no-wrap
24118 msgid ""
24119 " is-config\n"
24120 "\n"
24121 msgstr ""
24122
24123 #. type: =head2
24124 #: ../fish/guestfish-actions.pod:2343
24125 msgid "is-dir"
24126 msgstr ""
24127
24128 #. type: verbatim
24129 #: ../fish/guestfish-actions.pod:2345
24130 #, no-wrap
24131 msgid ""
24132 " is-dir path\n"
24133 "\n"
24134 msgstr ""
24135
24136 #. type: =head2
24137 #: ../fish/guestfish-actions.pod:2353
24138 msgid "is-fifo"
24139 msgstr ""
24140
24141 #. type: verbatim
24142 #: ../fish/guestfish-actions.pod:2355
24143 #, no-wrap
24144 msgid ""
24145 " is-fifo path\n"
24146 "\n"
24147 msgstr ""
24148
24149 #. type: =head2
24150 #: ../fish/guestfish-actions.pod:2362
24151 msgid "is-file"
24152 msgstr ""
24153
24154 #. type: verbatim
24155 #: ../fish/guestfish-actions.pod:2364
24156 #, no-wrap
24157 msgid ""
24158 " is-file path\n"
24159 "\n"
24160 msgstr ""
24161
24162 #. type: =head2
24163 #: ../fish/guestfish-actions.pod:2372
24164 msgid "is-launching"
24165 msgstr ""
24166
24167 #. type: verbatim
24168 #: ../fish/guestfish-actions.pod:2374
24169 #, no-wrap
24170 msgid ""
24171 " is-launching\n"
24172 "\n"
24173 msgstr ""
24174
24175 #. type: =head2
24176 #: ../fish/guestfish-actions.pod:2381
24177 msgid "is-lv"
24178 msgstr ""
24179
24180 #. type: verbatim
24181 #: ../fish/guestfish-actions.pod:2383
24182 #, no-wrap
24183 msgid ""
24184 " is-lv device\n"
24185 "\n"
24186 msgstr ""
24187
24188 #. type: =head2
24189 #: ../fish/guestfish-actions.pod:2388
24190 msgid "is-ready"
24191 msgstr ""
24192
24193 #. type: verbatim
24194 #: ../fish/guestfish-actions.pod:2390
24195 #, no-wrap
24196 msgid ""
24197 " is-ready\n"
24198 "\n"
24199 msgstr ""
24200
24201 #. type: =head2
24202 #: ../fish/guestfish-actions.pod:2397
24203 msgid "is-socket"
24204 msgstr ""
24205
24206 #. type: verbatim
24207 #: ../fish/guestfish-actions.pod:2399
24208 #, no-wrap
24209 msgid ""
24210 " is-socket path\n"
24211 "\n"
24212 msgstr ""
24213
24214 #. type: =head2
24215 #: ../fish/guestfish-actions.pod:2406
24216 msgid "is-symlink"
24217 msgstr ""
24218
24219 #. type: verbatim
24220 #: ../fish/guestfish-actions.pod:2408
24221 #, no-wrap
24222 msgid ""
24223 " is-symlink path\n"
24224 "\n"
24225 msgstr ""
24226
24227 #. type: =head2
24228 #: ../fish/guestfish-actions.pod:2415
24229 msgid "kill-subprocess"
24230 msgstr ""
24231
24232 #. type: verbatim
24233 #: ../fish/guestfish-actions.pod:2417
24234 #, no-wrap
24235 msgid ""
24236 " kill-subprocess\n"
24237 "\n"
24238 msgstr ""
24239
24240 #. type: =head2
24241 #: ../fish/guestfish-actions.pod:2421
24242 msgid "launch"
24243 msgstr ""
24244
24245 #. type: =head2
24246 #: ../fish/guestfish-actions.pod:2423
24247 msgid "run"
24248 msgstr ""
24249
24250 #. type: verbatim
24251 #: ../fish/guestfish-actions.pod:2425
24252 #, no-wrap
24253 msgid ""
24254 " launch\n"
24255 "\n"
24256 msgstr ""
24257
24258 #. type: =head2
24259 #: ../fish/guestfish-actions.pod:2433
24260 msgid "lchown"
24261 msgstr ""
24262
24263 #. type: verbatim
24264 #: ../fish/guestfish-actions.pod:2435
24265 #, no-wrap
24266 msgid ""
24267 " lchown owner group path\n"
24268 "\n"
24269 msgstr ""
24270
24271 #. type: textblock
24272 #: ../fish/guestfish-actions.pod:2437
24273 msgid ""
24274 "Change the file owner to C<owner> and group to C<group>.  This is like L</"
24275 "chown> but if C<path> is a symlink then the link itself is changed, not the "
24276 "target."
24277 msgstr ""
24278
24279 #. type: =head2
24280 #: ../fish/guestfish-actions.pod:2445
24281 msgid "lgetxattr"
24282 msgstr ""
24283
24284 #. type: verbatim
24285 #: ../fish/guestfish-actions.pod:2447
24286 #, no-wrap
24287 msgid ""
24288 " lgetxattr path name\n"
24289 "\n"
24290 msgstr ""
24291
24292 #. type: textblock
24293 #: ../fish/guestfish-actions.pod:2463
24294 msgid "See also: L</lgetxattrs>, L</getxattr>, L<attr(5)>."
24295 msgstr ""
24296
24297 #. type: =head2
24298 #: ../fish/guestfish-actions.pod:2465
24299 msgid "lgetxattrs"
24300 msgstr ""
24301
24302 #. type: verbatim
24303 #: ../fish/guestfish-actions.pod:2467
24304 #, no-wrap
24305 msgid ""
24306 " lgetxattrs path\n"
24307 "\n"
24308 msgstr ""
24309
24310 #. type: textblock
24311 #: ../fish/guestfish-actions.pod:2469
24312 msgid ""
24313 "This is the same as L</getxattrs>, but if C<path> is a symbolic link, then "
24314 "it returns the extended attributes of the link itself."
24315 msgstr ""
24316
24317 #. type: =head2
24318 #: ../fish/guestfish-actions.pod:2473
24319 msgid "list-devices"
24320 msgstr ""
24321
24322 #. type: verbatim
24323 #: ../fish/guestfish-actions.pod:2475
24324 #, no-wrap
24325 msgid ""
24326 " list-devices\n"
24327 "\n"
24328 msgstr ""
24329
24330 #. type: =head2
24331 #: ../fish/guestfish-actions.pod:2483
24332 msgid "list-filesystems"
24333 msgstr ""
24334
24335 #. type: verbatim
24336 #: ../fish/guestfish-actions.pod:2485
24337 #, no-wrap
24338 msgid ""
24339 " list-filesystems\n"
24340 "\n"
24341 msgstr ""
24342
24343 #. type: textblock
24344 #: ../fish/guestfish-actions.pod:2504
24345 msgid ""
24346 "This command runs other libguestfs commands, which might include L</mount> "
24347 "and L</umount>, and therefore you should use this soon after launch and only "
24348 "when nothing is mounted."
24349 msgstr ""
24350
24351 #. type: textblock
24352 #: ../fish/guestfish-actions.pod:2508
24353 msgid ""
24354 "Not all of the filesystems returned will be mountable.  In particular, swap "
24355 "partitions are returned in the list.  Also this command does not check that "
24356 "each filesystem found is valid and mountable, and some filesystems might be "
24357 "mountable but require special options.  Filesystems may not all belong to a "
24358 "single logical operating system (use L</inspect-os> to look for OSes)."
24359 msgstr ""
24360
24361 #. type: =head2
24362 #: ../fish/guestfish-actions.pod:2516
24363 msgid "list-partitions"
24364 msgstr ""
24365
24366 #. type: verbatim
24367 #: ../fish/guestfish-actions.pod:2518
24368 #, no-wrap
24369 msgid ""
24370 " list-partitions\n"
24371 "\n"
24372 msgstr ""
24373
24374 #. type: textblock
24375 #: ../fish/guestfish-actions.pod:2524
24376 msgid ""
24377 "This does not return logical volumes.  For that you will need to call L</"
24378 "lvs>."
24379 msgstr ""
24380
24381 #. type: =head2
24382 #: ../fish/guestfish-actions.pod:2529
24383 msgid "ll"
24384 msgstr ""
24385
24386 #. type: verbatim
24387 #: ../fish/guestfish-actions.pod:2531
24388 #, no-wrap
24389 msgid ""
24390 " ll directory\n"
24391 "\n"
24392 msgstr ""
24393
24394 #. type: =head2
24395 #: ../fish/guestfish-actions.pod:2539
24396 msgid "ln"
24397 msgstr ""
24398
24399 #. type: verbatim
24400 #: ../fish/guestfish-actions.pod:2541
24401 #, no-wrap
24402 msgid ""
24403 " ln target linkname\n"
24404 "\n"
24405 msgstr ""
24406
24407 #. type: =head2
24408 #: ../fish/guestfish-actions.pod:2545
24409 msgid "ln-f"
24410 msgstr ""
24411
24412 #. type: verbatim
24413 #: ../fish/guestfish-actions.pod:2547
24414 #, no-wrap
24415 msgid ""
24416 " ln-f target linkname\n"
24417 "\n"
24418 msgstr ""
24419
24420 #. type: =head2
24421 #: ../fish/guestfish-actions.pod:2552
24422 msgid "ln-s"
24423 msgstr ""
24424
24425 #. type: verbatim
24426 #: ../fish/guestfish-actions.pod:2554
24427 #, no-wrap
24428 msgid ""
24429 " ln-s target linkname\n"
24430 "\n"
24431 msgstr ""
24432
24433 #. type: =head2
24434 #: ../fish/guestfish-actions.pod:2558
24435 msgid "ln-sf"
24436 msgstr ""
24437
24438 #. type: verbatim
24439 #: ../fish/guestfish-actions.pod:2560
24440 #, no-wrap
24441 msgid ""
24442 " ln-sf target linkname\n"
24443 "\n"
24444 msgstr ""
24445
24446 #. type: =head2
24447 #: ../fish/guestfish-actions.pod:2565
24448 msgid "lremovexattr"
24449 msgstr ""
24450
24451 #. type: verbatim
24452 #: ../fish/guestfish-actions.pod:2567
24453 #, no-wrap
24454 msgid ""
24455 " lremovexattr xattr path\n"
24456 "\n"
24457 msgstr ""
24458
24459 #. type: textblock
24460 #: ../fish/guestfish-actions.pod:2569
24461 msgid ""
24462 "This is the same as L</removexattr>, but if C<path> is a symbolic link, then "
24463 "it removes an extended attribute of the link itself."
24464 msgstr ""
24465
24466 #. type: =head2
24467 #: ../fish/guestfish-actions.pod:2573
24468 msgid "ls"
24469 msgstr ""
24470
24471 #. type: verbatim
24472 #: ../fish/guestfish-actions.pod:2575
24473 #, no-wrap
24474 msgid ""
24475 " ls directory\n"
24476 "\n"
24477 msgstr ""
24478
24479 #. type: textblock
24480 #: ../fish/guestfish-actions.pod:2581
24481 msgid ""
24482 "This command is mostly useful for interactive sessions.  Programs should "
24483 "probably use L</readdir> instead."
24484 msgstr ""
24485
24486 #. type: =head2
24487 #: ../fish/guestfish-actions.pod:2584
24488 msgid "lsetxattr"
24489 msgstr ""
24490
24491 #. type: verbatim
24492 #: ../fish/guestfish-actions.pod:2586
24493 #, no-wrap
24494 msgid ""
24495 " lsetxattr xattr val vallen path\n"
24496 "\n"
24497 msgstr ""
24498
24499 #. type: textblock
24500 #: ../fish/guestfish-actions.pod:2588
24501 msgid ""
24502 "This is the same as L</setxattr>, but if C<path> is a symbolic link, then it "
24503 "sets an extended attribute of the link itself."
24504 msgstr ""
24505
24506 #. type: =head2
24507 #: ../fish/guestfish-actions.pod:2592
24508 msgid "lstat"
24509 msgstr ""
24510
24511 #. type: verbatim
24512 #: ../fish/guestfish-actions.pod:2594
24513 #, no-wrap
24514 msgid ""
24515 " lstat path\n"
24516 "\n"
24517 msgstr ""
24518
24519 #. type: textblock
24520 #: ../fish/guestfish-actions.pod:2598
24521 msgid ""
24522 "This is the same as L</stat> except that if C<path> is a symbolic link, then "
24523 "the link is stat-ed, not the file it refers to."
24524 msgstr ""
24525
24526 #. type: =head2
24527 #: ../fish/guestfish-actions.pod:2604
24528 msgid "lstatlist"
24529 msgstr ""
24530
24531 #. type: verbatim
24532 #: ../fish/guestfish-actions.pod:2606
24533 #, no-wrap
24534 msgid ""
24535 " lstatlist path 'names ...'\n"
24536 "\n"
24537 msgstr ""
24538
24539 #. type: textblock
24540 #: ../fish/guestfish-actions.pod:2608
24541 msgid ""
24542 "This call allows you to perform the L</lstat> operation on multiple files, "
24543 "where all files are in the directory C<path>.  C<names> is the list of files "
24544 "from this directory."
24545 msgstr ""
24546
24547 #. type: textblock
24548 #: ../fish/guestfish-actions.pod:2617
24549 msgid ""
24550 "This call is intended for programs that want to efficiently list a directory "
24551 "contents without making many round-trips.  See also L</lxattrlist> for a "
24552 "similarly efficient call for getting extended attributes.  Very long "
24553 "directory listings might cause the protocol message size to be exceeded, "
24554 "causing this call to fail.  The caller must split up such requests into "
24555 "smaller groups of names."
24556 msgstr ""
24557
24558 #. type: =head2
24559 #: ../fish/guestfish-actions.pod:2625
24560 msgid "luks-add-key"
24561 msgstr ""
24562
24563 #. type: verbatim
24564 #: ../fish/guestfish-actions.pod:2627
24565 #, no-wrap
24566 msgid ""
24567 " luks-add-key device keyslot\n"
24568 "\n"
24569 msgstr ""
24570
24571 #. type: textblock
24572 #: ../fish/guestfish-actions.pod:2634
24573 msgid ""
24574 "Note that if C<keyslot> already contains a key, then this command will "
24575 "fail.  You have to use L</luks-kill-slot> first to remove that key."
24576 msgstr ""
24577
24578 #. type: textblock
24579 #: ../fish/guestfish-actions.pod:2638 ../fish/guestfish-actions.pod:2660
24580 #: ../fish/guestfish-actions.pod:2673 ../fish/guestfish-actions.pod:2687
24581 #: ../fish/guestfish-actions.pod:2710 ../fish/guestfish-actions.pod:2720
24582 msgid ""
24583 "This command has one or more key or passphrase parameters.  Guestfish will "
24584 "prompt for these separately."
24585 msgstr ""
24586
24587 #. type: =head2
24588 #: ../fish/guestfish-actions.pod:2641
24589 msgid "luks-close"
24590 msgstr ""
24591
24592 #. type: verbatim
24593 #: ../fish/guestfish-actions.pod:2643
24594 #, no-wrap
24595 msgid ""
24596 " luks-close device\n"
24597 "\n"
24598 msgstr ""
24599
24600 #. type: textblock
24601 #: ../fish/guestfish-actions.pod:2645
24602 msgid ""
24603 "This closes a LUKS device that was created earlier by L</luks-open> or L</"
24604 "luks-open-ro>.  The C<device> parameter must be the name of the LUKS mapping "
24605 "device (ie. C</dev/mapper/mapname>) and I<not> the name of the underlying "
24606 "block device."
24607 msgstr ""
24608
24609 #. type: =head2
24610 #: ../fish/guestfish-actions.pod:2651
24611 msgid "luks-format"
24612 msgstr ""
24613
24614 #. type: verbatim
24615 #: ../fish/guestfish-actions.pod:2653
24616 #, no-wrap
24617 msgid ""
24618 " luks-format device keyslot\n"
24619 "\n"
24620 msgstr ""
24621
24622 #. type: =head2
24623 #: ../fish/guestfish-actions.pod:2666
24624 msgid "luks-format-cipher"
24625 msgstr ""
24626
24627 #. type: verbatim
24628 #: ../fish/guestfish-actions.pod:2668
24629 #, no-wrap
24630 msgid ""
24631 " luks-format-cipher device keyslot cipher\n"
24632 "\n"
24633 msgstr ""
24634
24635 #. type: textblock
24636 #: ../fish/guestfish-actions.pod:2670
24637 msgid ""
24638 "This command is the same as L</luks-format> but it also allows you to set "
24639 "the C<cipher> used."
24640 msgstr ""
24641
24642 #. type: =head2
24643 #: ../fish/guestfish-actions.pod:2679
24644 msgid "luks-kill-slot"
24645 msgstr ""
24646
24647 #. type: verbatim
24648 #: ../fish/guestfish-actions.pod:2681
24649 #, no-wrap
24650 msgid ""
24651 " luks-kill-slot device keyslot\n"
24652 "\n"
24653 msgstr ""
24654
24655 #. type: =head2
24656 #: ../fish/guestfish-actions.pod:2690
24657 msgid "luks-open"
24658 msgstr ""
24659
24660 #. type: verbatim
24661 #: ../fish/guestfish-actions.pod:2692
24662 #, no-wrap
24663 msgid ""
24664 " luks-open device mapname\n"
24665 "\n"
24666 msgstr ""
24667
24668 #. type: textblock
24669 #: ../fish/guestfish-actions.pod:2706
24670 msgid ""
24671 "If this block device contains LVM volume groups, then calling L</vgscan> "
24672 "followed by L</vg-activate-all> will make them visible."
24673 msgstr ""
24674
24675 #. type: =head2
24676 #: ../fish/guestfish-actions.pod:2713
24677 msgid "luks-open-ro"
24678 msgstr ""
24679
24680 #. type: verbatim
24681 #: ../fish/guestfish-actions.pod:2715
24682 #, no-wrap
24683 msgid ""
24684 " luks-open-ro device mapname\n"
24685 "\n"
24686 msgstr ""
24687
24688 #. type: textblock
24689 #: ../fish/guestfish-actions.pod:2717
24690 msgid ""
24691 "This is the same as L</luks-open> except that a read-only mapping is created."
24692 msgstr ""
24693
24694 #. type: =head2
24695 #: ../fish/guestfish-actions.pod:2723
24696 msgid "lvcreate"
24697 msgstr ""
24698
24699 #. type: verbatim
24700 #: ../fish/guestfish-actions.pod:2725
24701 #, no-wrap
24702 msgid ""
24703 " lvcreate logvol volgroup mbytes\n"
24704 "\n"
24705 msgstr ""
24706
24707 #. type: =head2
24708 #: ../fish/guestfish-actions.pod:2730
24709 msgid "lvm-canonical-lv-name"
24710 msgstr ""
24711
24712 #. type: verbatim
24713 #: ../fish/guestfish-actions.pod:2732
24714 #, no-wrap
24715 msgid ""
24716 " lvm-canonical-lv-name lvname\n"
24717 "\n"
24718 msgstr ""
24719
24720 #. type: textblock
24721 #: ../fish/guestfish-actions.pod:2741
24722 msgid "See also L</is-lv>."
24723 msgstr ""
24724
24725 #. type: =head2
24726 #: ../fish/guestfish-actions.pod:2743
24727 msgid "lvm-clear-filter"
24728 msgstr ""
24729
24730 #. type: verbatim
24731 #: ../fish/guestfish-actions.pod:2745
24732 #, no-wrap
24733 msgid ""
24734 " lvm-clear-filter\n"
24735 "\n"
24736 msgstr ""
24737
24738 #. type: textblock
24739 #: ../fish/guestfish-actions.pod:2747
24740 msgid ""
24741 "This undoes the effect of L</lvm-set-filter>.  LVM will be able to see every "
24742 "block device."
24743 msgstr ""
24744
24745 #. type: =head2
24746 #: ../fish/guestfish-actions.pod:2753
24747 msgid "lvm-remove-all"
24748 msgstr ""
24749
24750 #. type: verbatim
24751 #: ../fish/guestfish-actions.pod:2755
24752 #, no-wrap
24753 msgid ""
24754 " lvm-remove-all\n"
24755 "\n"
24756 msgstr ""
24757
24758 #. type: =head2
24759 #: ../fish/guestfish-actions.pod:2763
24760 msgid "lvm-set-filter"
24761 msgstr ""
24762
24763 #. type: verbatim
24764 #: ../fish/guestfish-actions.pod:2765
24765 #, no-wrap
24766 msgid ""
24767 " lvm-set-filter 'devices ...'\n"
24768 "\n"
24769 msgstr ""
24770
24771 #. type: =head2
24772 #: ../fish/guestfish-actions.pod:2790
24773 msgid "lvremove"
24774 msgstr ""
24775
24776 #. type: verbatim
24777 #: ../fish/guestfish-actions.pod:2792
24778 #, no-wrap
24779 msgid ""
24780 " lvremove device\n"
24781 "\n"
24782 msgstr ""
24783
24784 #. type: =head2
24785 #: ../fish/guestfish-actions.pod:2800
24786 msgid "lvrename"
24787 msgstr ""
24788
24789 #. type: verbatim
24790 #: ../fish/guestfish-actions.pod:2802
24791 #, no-wrap
24792 msgid ""
24793 " lvrename logvol newlogvol\n"
24794 "\n"
24795 msgstr ""
24796
24797 #. type: =head2
24798 #: ../fish/guestfish-actions.pod:2806
24799 msgid "lvresize"
24800 msgstr ""
24801
24802 #. type: verbatim
24803 #: ../fish/guestfish-actions.pod:2808
24804 #, no-wrap
24805 msgid ""
24806 " lvresize device mbytes\n"
24807 "\n"
24808 msgstr ""
24809
24810 #. type: =head2
24811 #: ../fish/guestfish-actions.pod:2814
24812 msgid "lvresize-free"
24813 msgstr ""
24814
24815 #. type: verbatim
24816 #: ../fish/guestfish-actions.pod:2816
24817 #, no-wrap
24818 msgid ""
24819 " lvresize-free lv percent\n"
24820 "\n"
24821 msgstr ""
24822
24823 #. type: =head2
24824 #: ../fish/guestfish-actions.pod:2824
24825 msgid "lvs"
24826 msgstr ""
24827
24828 #. type: verbatim
24829 #: ../fish/guestfish-actions.pod:2826
24830 #, no-wrap
24831 msgid ""
24832 " lvs\n"
24833 "\n"
24834 msgstr ""
24835
24836 #. type: textblock
24837 #: ../fish/guestfish-actions.pod:2834
24838 msgid "See also L</lvs-full>, L</list-filesystems>."
24839 msgstr ""
24840
24841 #. type: =head2
24842 #: ../fish/guestfish-actions.pod:2836
24843 msgid "lvs-full"
24844 msgstr ""
24845
24846 #. type: verbatim
24847 #: ../fish/guestfish-actions.pod:2838
24848 #, no-wrap
24849 msgid ""
24850 " lvs-full\n"
24851 "\n"
24852 msgstr ""
24853
24854 #. type: =head2
24855 #: ../fish/guestfish-actions.pod:2843
24856 msgid "lvuuid"
24857 msgstr ""
24858
24859 #. type: verbatim
24860 #: ../fish/guestfish-actions.pod:2845
24861 #, no-wrap
24862 msgid ""
24863 " lvuuid device\n"
24864 "\n"
24865 msgstr ""
24866
24867 #. type: =head2
24868 #: ../fish/guestfish-actions.pod:2849
24869 msgid "lxattrlist"
24870 msgstr ""
24871
24872 #. type: verbatim
24873 #: ../fish/guestfish-actions.pod:2851
24874 #, no-wrap
24875 msgid ""
24876 " lxattrlist path 'names ...'\n"
24877 "\n"
24878 msgstr ""
24879
24880 #. type: textblock
24881 #: ../fish/guestfish-actions.pod:2867
24882 msgid ""
24883 "This call is intended for programs that want to efficiently list a directory "
24884 "contents without making many round-trips.  See also L</lstatlist> for a "
24885 "similarly efficient call for getting standard stats.  Very long directory "
24886 "listings might cause the protocol message size to be exceeded, causing this "
24887 "call to fail.  The caller must split up such requests into smaller groups of "
24888 "names."
24889 msgstr ""
24890
24891 #. type: =head2
24892 #: ../fish/guestfish-actions.pod:2875
24893 msgid "mkdir"
24894 msgstr ""
24895
24896 #. type: verbatim
24897 #: ../fish/guestfish-actions.pod:2877
24898 #, no-wrap
24899 msgid ""
24900 " mkdir path\n"
24901 "\n"
24902 msgstr ""
24903
24904 #. type: =head2
24905 #: ../fish/guestfish-actions.pod:2881
24906 msgid "mkdir-mode"
24907 msgstr ""
24908
24909 #. type: verbatim
24910 #: ../fish/guestfish-actions.pod:2883
24911 #, no-wrap
24912 msgid ""
24913 " mkdir-mode path mode\n"
24914 "\n"
24915 msgstr ""
24916
24917 #. type: textblock
24918 #: ../fish/guestfish-actions.pod:2892
24919 msgid "See also L</mkdir>, L</umask>"
24920 msgstr ""
24921
24922 #. type: =head2
24923 #: ../fish/guestfish-actions.pod:2894
24924 msgid "mkdir-p"
24925 msgstr ""
24926
24927 #. type: verbatim
24928 #: ../fish/guestfish-actions.pod:2896
24929 #, no-wrap
24930 msgid ""
24931 " mkdir-p path\n"
24932 "\n"
24933 msgstr ""
24934
24935 #. type: =head2
24936 #: ../fish/guestfish-actions.pod:2901
24937 msgid "mkdtemp"
24938 msgstr ""
24939
24940 #. type: verbatim
24941 #: ../fish/guestfish-actions.pod:2903
24942 #, no-wrap
24943 msgid ""
24944 " mkdtemp template\n"
24945 "\n"
24946 msgstr ""
24947
24948 #. type: =head2
24949 #: ../fish/guestfish-actions.pod:2924
24950 msgid "mke2fs-J"
24951 msgstr ""
24952
24953 #. type: verbatim
24954 #: ../fish/guestfish-actions.pod:2926
24955 #, no-wrap
24956 msgid ""
24957 " mke2fs-J fstype blocksize device journal\n"
24958 "\n"
24959 msgstr ""
24960
24961 #. type: textblock
24962 #: ../fish/guestfish-actions.pod:2934
24963 msgid "See also L</mke2journal>."
24964 msgstr ""
24965
24966 #. type: =head2
24967 #: ../fish/guestfish-actions.pod:2936
24968 msgid "mke2fs-JL"
24969 msgstr ""
24970
24971 #. type: verbatim
24972 #: ../fish/guestfish-actions.pod:2938
24973 #, no-wrap
24974 msgid ""
24975 " mke2fs-JL fstype blocksize device label\n"
24976 "\n"
24977 msgstr ""
24978
24979 #. type: textblock
24980 #: ../fish/guestfish-actions.pod:2943
24981 msgid "See also L</mke2journal-L>."
24982 msgstr ""
24983
24984 #. type: =head2
24985 #: ../fish/guestfish-actions.pod:2945
24986 msgid "mke2fs-JU"
24987 msgstr ""
24988
24989 #. type: verbatim
24990 #: ../fish/guestfish-actions.pod:2947
24991 #, no-wrap
24992 msgid ""
24993 " mke2fs-JU fstype blocksize device uuid\n"
24994 "\n"
24995 msgstr ""
24996
24997 #. type: textblock
24998 #: ../fish/guestfish-actions.pod:2952
24999 msgid "See also L</mke2journal-U>."
25000 msgstr ""
25001
25002 #. type: =head2
25003 #: ../fish/guestfish-actions.pod:2954
25004 msgid "mke2journal"
25005 msgstr ""
25006
25007 #. type: verbatim
25008 #: ../fish/guestfish-actions.pod:2956
25009 #, no-wrap
25010 msgid ""
25011 " mke2journal blocksize device\n"
25012 "\n"
25013 msgstr ""
25014
25015 #. type: =head2
25016 #: ../fish/guestfish-actions.pod:2963
25017 msgid "mke2journal-L"
25018 msgstr ""
25019
25020 #. type: verbatim
25021 #: ../fish/guestfish-actions.pod:2965
25022 #, no-wrap
25023 msgid ""
25024 " mke2journal-L blocksize label device\n"
25025 "\n"
25026 msgstr ""
25027
25028 #. type: =head2
25029 #: ../fish/guestfish-actions.pod:2969
25030 msgid "mke2journal-U"
25031 msgstr ""
25032
25033 #. type: verbatim
25034 #: ../fish/guestfish-actions.pod:2971
25035 #, no-wrap
25036 msgid ""
25037 " mke2journal-U blocksize uuid device\n"
25038 "\n"
25039 msgstr ""
25040
25041 #. type: =head2
25042 #: ../fish/guestfish-actions.pod:2975
25043 msgid "mkfifo"
25044 msgstr ""
25045
25046 #. type: verbatim
25047 #: ../fish/guestfish-actions.pod:2977
25048 #, no-wrap
25049 msgid ""
25050 " mkfifo mode path\n"
25051 "\n"
25052 msgstr ""
25053
25054 #. type: textblock
25055 #: ../fish/guestfish-actions.pod:2979
25056 msgid ""
25057 "This call creates a FIFO (named pipe) called C<path> with mode C<mode>.  It "
25058 "is just a convenient wrapper around L</mknod>."
25059 msgstr ""
25060
25061 #. type: =head2
25062 #: ../fish/guestfish-actions.pod:2985
25063 msgid "mkfs"
25064 msgstr ""
25065
25066 #. type: verbatim
25067 #: ../fish/guestfish-actions.pod:2987
25068 #, no-wrap
25069 msgid ""
25070 " mkfs fstype device\n"
25071 "\n"
25072 msgstr ""
25073
25074 #. type: =head2
25075 #: ../fish/guestfish-actions.pod:2993
25076 msgid "mkfs-b"
25077 msgstr ""
25078
25079 #. type: verbatim
25080 #: ../fish/guestfish-actions.pod:2995
25081 #, no-wrap
25082 msgid ""
25083 " mkfs-b fstype blocksize device\n"
25084 "\n"
25085 msgstr ""
25086
25087 #. type: textblock
25088 #: ../fish/guestfish-actions.pod:2997
25089 msgid ""
25090 "This call is similar to L</mkfs>, but it allows you to control the block "
25091 "size of the resulting filesystem.  Supported block sizes depend on the "
25092 "filesystem type, but typically they are C<1024>, C<2048> or C<4096> only."
25093 msgstr ""
25094
25095 #. type: =head2
25096 #: ../fish/guestfish-actions.pod:3012
25097 msgid "mkfs-opts"
25098 msgstr ""
25099
25100 #. type: verbatim
25101 #: ../fish/guestfish-actions.pod:3014
25102 #, no-wrap
25103 msgid ""
25104 " mkfs-opts fstype device [blocksize:..] [features:..]\n"
25105 "\n"
25106 msgstr ""
25107
25108 #. type: =head2
25109 #: ../fish/guestfish-actions.pod:3049
25110 msgid "mkmountpoint"
25111 msgstr ""
25112
25113 #. type: verbatim
25114 #: ../fish/guestfish-actions.pod:3051
25115 #, no-wrap
25116 msgid ""
25117 " mkmountpoint exemptpath\n"
25118 "\n"
25119 msgstr ""
25120
25121 #. type: textblock
25122 #: ../fish/guestfish-actions.pod:3053
25123 msgid ""
25124 "L</mkmountpoint> and L</rmmountpoint> are specialized calls that can be used "
25125 "to create extra mountpoints before mounting the first filesystem."
25126 msgstr ""
25127
25128 #. type: textblock
25129 #: ../fish/guestfish-actions.pod:3077
25130 msgid ""
25131 "L</mkmountpoint> is not compatible with L</umount-all>.  You may get "
25132 "unexpected errors if you try to mix these calls.  It is safest to manually "
25133 "unmount filesystems and remove mountpoints after use."
25134 msgstr ""
25135
25136 #. type: textblock
25137 #: ../fish/guestfish-actions.pod:3081
25138 msgid ""
25139 "L</umount-all> unmounts filesystems by sorting the paths longest first, so "
25140 "for this to work for manual mountpoints, you must ensure that the innermost "
25141 "mountpoints have the longest pathnames, as in the example code above."
25142 msgstr ""
25143
25144 #. type: textblock
25145 #: ../fish/guestfish-actions.pod:3088
25146 msgid ""
25147 "Autosync [see L</set-autosync>, this is set by default on handles] can cause "
25148 "L</umount-all> to be called when the handle is closed which can also trigger "
25149 "these issues."
25150 msgstr ""
25151
25152 #. type: =head2
25153 #: ../fish/guestfish-actions.pod:3092
25154 msgid "mknod"
25155 msgstr ""
25156
25157 #. type: verbatim
25158 #: ../fish/guestfish-actions.pod:3094
25159 #, no-wrap
25160 msgid ""
25161 " mknod mode devmajor devminor path\n"
25162 "\n"
25163 msgstr ""
25164
25165 #. type: textblock
25166 #: ../fish/guestfish-actions.pod:3104
25167 msgid ""
25168 "Note that, just like L<mknod(2)>, the mode must be bitwise OR'd with "
25169 "S_IFBLK, S_IFCHR, S_IFIFO or S_IFSOCK (otherwise this call just creates a "
25170 "regular file).  These constants are available in the standard Linux header "
25171 "files, or you can use L</mknod-b>, L</mknod-c> or L</mkfifo> which are "
25172 "wrappers around this command which bitwise OR in the appropriate constant "
25173 "for you."
25174 msgstr ""
25175
25176 #. type: =head2
25177 #: ../fish/guestfish-actions.pod:3114
25178 msgid "mknod-b"
25179 msgstr ""
25180
25181 #. type: verbatim
25182 #: ../fish/guestfish-actions.pod:3116
25183 #, no-wrap
25184 msgid ""
25185 " mknod-b mode devmajor devminor path\n"
25186 "\n"
25187 msgstr ""
25188
25189 #. type: textblock
25190 #: ../fish/guestfish-actions.pod:3118
25191 msgid ""
25192 "This call creates a block device node called C<path> with mode C<mode> and "
25193 "device major/minor C<devmajor> and C<devminor>.  It is just a convenient "
25194 "wrapper around L</mknod>."
25195 msgstr ""
25196
25197 #. type: =head2
25198 #: ../fish/guestfish-actions.pod:3124
25199 msgid "mknod-c"
25200 msgstr ""
25201
25202 #. type: verbatim
25203 #: ../fish/guestfish-actions.pod:3126
25204 #, no-wrap
25205 msgid ""
25206 " mknod-c mode devmajor devminor path\n"
25207 "\n"
25208 msgstr ""
25209
25210 #. type: textblock
25211 #: ../fish/guestfish-actions.pod:3128
25212 msgid ""
25213 "This call creates a char device node called C<path> with mode C<mode> and "
25214 "device major/minor C<devmajor> and C<devminor>.  It is just a convenient "
25215 "wrapper around L</mknod>."
25216 msgstr ""
25217
25218 #. type: =head2
25219 #: ../fish/guestfish-actions.pod:3134
25220 msgid "mkswap"
25221 msgstr ""
25222
25223 #. type: verbatim
25224 #: ../fish/guestfish-actions.pod:3136
25225 #, no-wrap
25226 msgid ""
25227 " mkswap device\n"
25228 "\n"
25229 msgstr ""
25230
25231 #. type: =head2
25232 #: ../fish/guestfish-actions.pod:3140
25233 msgid "mkswap-L"
25234 msgstr ""
25235
25236 #. type: verbatim
25237 #: ../fish/guestfish-actions.pod:3142
25238 #, no-wrap
25239 msgid ""
25240 " mkswap-L label device\n"
25241 "\n"
25242 msgstr ""
25243
25244 #. type: =head2
25245 #: ../fish/guestfish-actions.pod:3150
25246 msgid "mkswap-U"
25247 msgstr ""
25248
25249 #. type: verbatim
25250 #: ../fish/guestfish-actions.pod:3152
25251 #, no-wrap
25252 msgid ""
25253 " mkswap-U uuid device\n"
25254 "\n"
25255 msgstr ""
25256
25257 #. type: =head2
25258 #: ../fish/guestfish-actions.pod:3156
25259 msgid "mkswap-file"
25260 msgstr ""
25261
25262 #. type: verbatim
25263 #: ../fish/guestfish-actions.pod:3158
25264 #, no-wrap
25265 msgid ""
25266 " mkswap-file path\n"
25267 "\n"
25268 msgstr ""
25269
25270 #. type: textblock
25271 #: ../fish/guestfish-actions.pod:3162
25272 msgid ""
25273 "This command just writes a swap file signature to an existing file.  To "
25274 "create the file itself, use something like L</fallocate>."
25275 msgstr ""
25276
25277 #. type: =head2
25278 #: ../fish/guestfish-actions.pod:3165
25279 msgid "modprobe"
25280 msgstr ""
25281
25282 #. type: verbatim
25283 #: ../fish/guestfish-actions.pod:3167
25284 #, no-wrap
25285 msgid ""
25286 " modprobe modulename\n"
25287 "\n"
25288 msgstr ""
25289
25290 #. type: =head2
25291 #: ../fish/guestfish-actions.pod:3174
25292 msgid "mount"
25293 msgstr ""
25294
25295 #. type: verbatim
25296 #: ../fish/guestfish-actions.pod:3176
25297 #, no-wrap
25298 msgid ""
25299 " mount device mountpoint\n"
25300 "\n"
25301 msgstr ""
25302
25303 #. type: textblock
25304 #: ../fish/guestfish-actions.pod:3192
25305 msgid ""
25306 "B<Important note:> When you use this call, the filesystem options C<sync> "
25307 "and C<noatime> are set implicitly.  This was originally done because we "
25308 "thought it would improve reliability, but it turns out that I<-o sync> has a "
25309 "very large negative performance impact and negligible effect on "
25310 "reliability.  Therefore we recommend that you avoid using L</mount> in any "
25311 "code that needs performance, and instead use L</mount-options> (use an empty "
25312 "string for the first parameter if you don't want any options)."
25313 msgstr ""
25314
25315 #. type: =head2
25316 #: ../fish/guestfish-actions.pod:3202
25317 msgid "mount-loop"
25318 msgstr ""
25319
25320 #. type: verbatim
25321 #: ../fish/guestfish-actions.pod:3204
25322 #, no-wrap
25323 msgid ""
25324 " mount-loop file mountpoint\n"
25325 "\n"
25326 msgstr ""
25327
25328 #. type: =head2
25329 #: ../fish/guestfish-actions.pod:3210
25330 msgid "mount-options"
25331 msgstr ""
25332
25333 #. type: verbatim
25334 #: ../fish/guestfish-actions.pod:3212
25335 #, no-wrap
25336 msgid ""
25337 " mount-options options device mountpoint\n"
25338 "\n"
25339 msgstr ""
25340
25341 #. type: textblock
25342 #: ../fish/guestfish-actions.pod:3214
25343 msgid ""
25344 "This is the same as the L</mount> command, but it allows you to set the "
25345 "mount options as for the L<mount(8)> I<-o> flag."
25346 msgstr ""
25347
25348 #. type: =head2
25349 #: ../fish/guestfish-actions.pod:3222
25350 msgid "mount-ro"
25351 msgstr ""
25352
25353 #. type: verbatim
25354 #: ../fish/guestfish-actions.pod:3224
25355 #, no-wrap
25356 msgid ""
25357 " mount-ro device mountpoint\n"
25358 "\n"
25359 msgstr ""
25360
25361 #. type: textblock
25362 #: ../fish/guestfish-actions.pod:3226
25363 msgid ""
25364 "This is the same as the L</mount> command, but it mounts the filesystem with "
25365 "the read-only (I<-o ro>) flag."
25366 msgstr ""
25367
25368 #. type: =head2
25369 #: ../fish/guestfish-actions.pod:3229
25370 msgid "mount-vfs"
25371 msgstr ""
25372
25373 #. type: verbatim
25374 #: ../fish/guestfish-actions.pod:3231
25375 #, no-wrap
25376 msgid ""
25377 " mount-vfs options vfstype device mountpoint\n"
25378 "\n"
25379 msgstr ""
25380
25381 #. type: textblock
25382 #: ../fish/guestfish-actions.pod:3233
25383 msgid ""
25384 "This is the same as the L</mount> command, but it allows you to set both the "
25385 "mount options and the vfstype as for the L<mount(8)> I<-o> and I<-t> flags."
25386 msgstr ""
25387
25388 #. type: =head2
25389 #: ../fish/guestfish-actions.pod:3237
25390 msgid "mountpoints"
25391 msgstr ""
25392
25393 #. type: verbatim
25394 #: ../fish/guestfish-actions.pod:3239
25395 #, no-wrap
25396 msgid ""
25397 " mountpoints\n"
25398 "\n"
25399 msgstr ""
25400
25401 #. type: textblock
25402 #: ../fish/guestfish-actions.pod:3241
25403 msgid ""
25404 "This call is similar to L</mounts>.  That call returns a list of devices.  "
25405 "This one returns a hash table (map) of device name to directory where the "
25406 "device is mounted."
25407 msgstr ""
25408
25409 #. type: =head2
25410 #: ../fish/guestfish-actions.pod:3245
25411 msgid "mounts"
25412 msgstr ""
25413
25414 #. type: verbatim
25415 #: ../fish/guestfish-actions.pod:3247
25416 #, no-wrap
25417 msgid ""
25418 " mounts\n"
25419 "\n"
25420 msgstr ""
25421
25422 #. type: textblock
25423 #: ../fish/guestfish-actions.pod:3254
25424 msgid "See also: L</mountpoints>"
25425 msgstr ""
25426
25427 #. type: =head2
25428 #: ../fish/guestfish-actions.pod:3256
25429 msgid "mv"
25430 msgstr ""
25431
25432 #. type: verbatim
25433 #: ../fish/guestfish-actions.pod:3258
25434 #, no-wrap
25435 msgid ""
25436 " mv src dest\n"
25437 "\n"
25438 msgstr ""
25439
25440 #. type: =head2
25441 #: ../fish/guestfish-actions.pod:3263
25442 msgid "ntfs-3g-probe"
25443 msgstr ""
25444
25445 #. type: verbatim
25446 #: ../fish/guestfish-actions.pod:3265
25447 #, no-wrap
25448 msgid ""
25449 " ntfs-3g-probe true|false device\n"
25450 "\n"
25451 msgstr ""
25452
25453 #. type: =head2
25454 #: ../fish/guestfish-actions.pod:3279
25455 msgid "ntfsresize"
25456 msgstr ""
25457
25458 #. type: verbatim
25459 #: ../fish/guestfish-actions.pod:3281
25460 #, no-wrap
25461 msgid ""
25462 " ntfsresize device\n"
25463 "\n"
25464 msgstr ""
25465
25466 #. type: =head2
25467 #: ../fish/guestfish-actions.pod:3287
25468 msgid "ntfsresize-size"
25469 msgstr ""
25470
25471 #. type: verbatim
25472 #: ../fish/guestfish-actions.pod:3289
25473 #, no-wrap
25474 msgid ""
25475 " ntfsresize-size device size\n"
25476 "\n"
25477 msgstr ""
25478
25479 #. type: textblock
25480 #: ../fish/guestfish-actions.pod:3291
25481 msgid ""
25482 "This command is the same as L</ntfsresize> except that it allows you to "
25483 "specify the new size (in bytes) explicitly."
25484 msgstr ""
25485
25486 #. type: =head2
25487 #: ../fish/guestfish-actions.pod:3294
25488 msgid "part-add"
25489 msgstr ""
25490
25491 #. type: verbatim
25492 #: ../fish/guestfish-actions.pod:3296
25493 #, no-wrap
25494 msgid ""
25495 " part-add device prlogex startsect endsect\n"
25496 "\n"
25497 msgstr ""
25498
25499 #. type: textblock
25500 #: ../fish/guestfish-actions.pod:3298
25501 msgid ""
25502 "This command adds a partition to C<device>.  If there is no partition table "
25503 "on the device, call L</part-init> first."
25504 msgstr ""
25505
25506 #. type: textblock
25507 #: ../fish/guestfish-actions.pod:3310
25508 msgid ""
25509 "Creating a partition which covers the whole disk is not so easy.  Use L</"
25510 "part-disk> to do that."
25511 msgstr ""
25512
25513 #. type: =head2
25514 #: ../fish/guestfish-actions.pod:3313
25515 msgid "part-del"
25516 msgstr ""
25517
25518 #. type: verbatim
25519 #: ../fish/guestfish-actions.pod:3315
25520 #, no-wrap
25521 msgid ""
25522 " part-del device partnum\n"
25523 "\n"
25524 msgstr ""
25525
25526 #. type: =head2
25527 #: ../fish/guestfish-actions.pod:3323
25528 msgid "part-disk"
25529 msgstr ""
25530
25531 #. type: verbatim
25532 #: ../fish/guestfish-actions.pod:3325
25533 #, no-wrap
25534 msgid ""
25535 " part-disk device parttype\n"
25536 "\n"
25537 msgstr ""
25538
25539 #. type: textblock
25540 #: ../fish/guestfish-actions.pod:3327
25541 msgid ""
25542 "This command is simply a combination of L</part-init> followed by L</part-"
25543 "add> to create a single primary partition covering the whole disk."
25544 msgstr ""
25545
25546 #. type: textblock
25547 #: ../fish/guestfish-actions.pod:3331
25548 msgid ""
25549 "C<parttype> is the partition table type, usually C<mbr> or C<gpt>, but other "
25550 "possible values are described in L</part-init>."
25551 msgstr ""
25552
25553 #. type: =head2
25554 #: ../fish/guestfish-actions.pod:3337
25555 msgid "part-get-bootable"
25556 msgstr ""
25557
25558 #. type: verbatim
25559 #: ../fish/guestfish-actions.pod:3339
25560 #, no-wrap
25561 msgid ""
25562 " part-get-bootable device partnum\n"
25563 "\n"
25564 msgstr ""
25565
25566 #. type: textblock
25567 #: ../fish/guestfish-actions.pod:3344
25568 msgid "See also L</part-set-bootable>."
25569 msgstr ""
25570
25571 #. type: =head2
25572 #: ../fish/guestfish-actions.pod:3346
25573 msgid "part-get-mbr-id"
25574 msgstr ""
25575
25576 #. type: verbatim
25577 #: ../fish/guestfish-actions.pod:3348
25578 #, no-wrap
25579 msgid ""
25580 " part-get-mbr-id device partnum\n"
25581 "\n"
25582 msgstr ""
25583
25584 #. type: textblock
25585 #: ../fish/guestfish-actions.pod:3353 ../fish/guestfish-actions.pod:3491
25586 msgid ""
25587 "Note that only MBR (old DOS-style) partitions have type bytes.  You will get "
25588 "undefined results for other partition table types (see L</part-get-"
25589 "parttype>)."
25590 msgstr ""
25591
25592 #. type: =head2
25593 #: ../fish/guestfish-actions.pod:3357
25594 msgid "part-get-parttype"
25595 msgstr ""
25596
25597 #. type: verbatim
25598 #: ../fish/guestfish-actions.pod:3359
25599 #, no-wrap
25600 msgid ""
25601 " part-get-parttype device\n"
25602 "\n"
25603 msgstr ""
25604
25605 #. type: textblock
25606 #: ../fish/guestfish-actions.pod:3364
25607 msgid ""
25608 "Common return values include: C<msdos> (a DOS/Windows style MBR partition "
25609 "table), C<gpt> (a GPT/EFI-style partition table).  Other values are "
25610 "possible, although unusual.  See L</part-init> for a full list."
25611 msgstr ""
25612
25613 #. type: =head2
25614 #: ../fish/guestfish-actions.pod:3369
25615 msgid "part-init"
25616 msgstr ""
25617
25618 #. type: verbatim
25619 #: ../fish/guestfish-actions.pod:3371
25620 #, no-wrap
25621 msgid ""
25622 " part-init device parttype\n"
25623 "\n"
25624 msgstr ""
25625
25626 #. type: textblock
25627 #: ../fish/guestfish-actions.pod:3377
25628 msgid ""
25629 "Initially there are no partitions.  Following this, you should call L</part-"
25630 "add> for each partition required."
25631 msgstr ""
25632
25633 #. type: =head2
25634 #: ../fish/guestfish-actions.pod:3440
25635 msgid "part-list"
25636 msgstr ""
25637
25638 #. type: verbatim
25639 #: ../fish/guestfish-actions.pod:3442
25640 #, no-wrap
25641 msgid ""
25642 " part-list device\n"
25643 "\n"
25644 msgstr ""
25645
25646 #. type: textblock
25647 #: ../fish/guestfish-actions.pod:3457
25648 msgid ""
25649 "Start of the partition I<in bytes>.  To get sectors you have to divide by "
25650 "the device's sector size, see L</blockdev-getss>."
25651 msgstr ""
25652
25653 #. type: =head2
25654 #: ../fish/guestfish-actions.pod:3470
25655 msgid "part-set-bootable"
25656 msgstr ""
25657
25658 #. type: verbatim
25659 #: ../fish/guestfish-actions.pod:3472
25660 #, no-wrap
25661 msgid ""
25662 " part-set-bootable device partnum true|false\n"
25663 "\n"
25664 msgstr ""
25665
25666 #. type: =head2
25667 #: ../fish/guestfish-actions.pod:3481
25668 msgid "part-set-mbr-id"
25669 msgstr ""
25670
25671 #. type: verbatim
25672 #: ../fish/guestfish-actions.pod:3483
25673 #, no-wrap
25674 msgid ""
25675 " part-set-mbr-id device partnum idbyte\n"
25676 "\n"
25677 msgstr ""
25678
25679 #. type: =head2
25680 #: ../fish/guestfish-actions.pod:3495
25681 msgid "part-set-name"
25682 msgstr ""
25683
25684 #. type: verbatim
25685 #: ../fish/guestfish-actions.pod:3497
25686 #, no-wrap
25687 msgid ""
25688 " part-set-name device partnum name\n"
25689 "\n"
25690 msgstr ""
25691
25692 #. type: =head2
25693 #: ../fish/guestfish-actions.pod:3505
25694 msgid "part-to-dev"
25695 msgstr ""
25696
25697 #. type: verbatim
25698 #: ../fish/guestfish-actions.pod:3507
25699 #, no-wrap
25700 msgid ""
25701 " part-to-dev partition\n"
25702 "\n"
25703 msgstr ""
25704
25705 #. type: textblock
25706 #: ../fish/guestfish-actions.pod:3513
25707 msgid ""
25708 "The named partition must exist, for example as a string returned from L</"
25709 "list-partitions>."
25710 msgstr ""
25711
25712 #. type: =head2
25713 #: ../fish/guestfish-actions.pod:3516
25714 msgid "ping-daemon"
25715 msgstr ""
25716
25717 #. type: verbatim
25718 #: ../fish/guestfish-actions.pod:3518
25719 #, no-wrap
25720 msgid ""
25721 " ping-daemon\n"
25722 "\n"
25723 msgstr ""
25724
25725 #. type: =head2
25726 #: ../fish/guestfish-actions.pod:3525
25727 msgid "pread"
25728 msgstr ""
25729
25730 #. type: verbatim
25731 #: ../fish/guestfish-actions.pod:3527
25732 #, no-wrap
25733 msgid ""
25734 " pread path count offset\n"
25735 "\n"
25736 msgstr ""
25737
25738 #. type: textblock
25739 #: ../fish/guestfish-actions.pod:3535
25740 msgid "See also L</pwrite>, L</pread-device>."
25741 msgstr ""
25742
25743 #. type: =head2
25744 #: ../fish/guestfish-actions.pod:3540
25745 msgid "pread-device"
25746 msgstr ""
25747
25748 #. type: verbatim
25749 #: ../fish/guestfish-actions.pod:3542
25750 #, no-wrap
25751 msgid ""
25752 " pread-device device count offset\n"
25753 "\n"
25754 msgstr ""
25755
25756 #. type: textblock
25757 #: ../fish/guestfish-actions.pod:3550
25758 msgid "See also L</pread>."
25759 msgstr ""
25760
25761 #. type: =head2
25762 #: ../fish/guestfish-actions.pod:3555
25763 msgid "pvcreate"
25764 msgstr ""
25765
25766 #. type: verbatim
25767 #: ../fish/guestfish-actions.pod:3557
25768 #, no-wrap
25769 msgid ""
25770 " pvcreate device\n"
25771 "\n"
25772 msgstr ""
25773
25774 #. type: =head2
25775 #: ../fish/guestfish-actions.pod:3563
25776 msgid "pvremove"
25777 msgstr ""
25778
25779 #. type: verbatim
25780 #: ../fish/guestfish-actions.pod:3565
25781 #, no-wrap
25782 msgid ""
25783 " pvremove device\n"
25784 "\n"
25785 msgstr ""
25786
25787 #. type: =head2
25788 #: ../fish/guestfish-actions.pod:3574
25789 msgid "pvresize"
25790 msgstr ""
25791
25792 #. type: verbatim
25793 #: ../fish/guestfish-actions.pod:3576
25794 #, no-wrap
25795 msgid ""
25796 " pvresize device\n"
25797 "\n"
25798 msgstr ""
25799
25800 #. type: =head2
25801 #: ../fish/guestfish-actions.pod:3581
25802 msgid "pvresize-size"
25803 msgstr ""
25804
25805 #. type: verbatim
25806 #: ../fish/guestfish-actions.pod:3583
25807 #, no-wrap
25808 msgid ""
25809 " pvresize-size device size\n"
25810 "\n"
25811 msgstr ""
25812
25813 #. type: textblock
25814 #: ../fish/guestfish-actions.pod:3585
25815 msgid ""
25816 "This command is the same as L</pvresize> except that it allows you to "
25817 "specify the new size (in bytes) explicitly."
25818 msgstr ""
25819
25820 #. type: =head2
25821 #: ../fish/guestfish-actions.pod:3588
25822 msgid "pvs"
25823 msgstr ""
25824
25825 #. type: verbatim
25826 #: ../fish/guestfish-actions.pod:3590
25827 #, no-wrap
25828 msgid ""
25829 " pvs\n"
25830 "\n"
25831 msgstr ""
25832
25833 #. type: textblock
25834 #: ../fish/guestfish-actions.pod:3598
25835 msgid "See also L</pvs-full>."
25836 msgstr ""
25837
25838 #. type: =head2
25839 #: ../fish/guestfish-actions.pod:3600
25840 msgid "pvs-full"
25841 msgstr ""
25842
25843 #. type: verbatim
25844 #: ../fish/guestfish-actions.pod:3602
25845 #, no-wrap
25846 msgid ""
25847 " pvs-full\n"
25848 "\n"
25849 msgstr ""
25850
25851 #. type: =head2
25852 #: ../fish/guestfish-actions.pod:3607
25853 msgid "pvuuid"
25854 msgstr ""
25855
25856 #. type: verbatim
25857 #: ../fish/guestfish-actions.pod:3609
25858 #, no-wrap
25859 msgid ""
25860 " pvuuid device\n"
25861 "\n"
25862 msgstr ""
25863
25864 #. type: =head2
25865 #: ../fish/guestfish-actions.pod:3613
25866 msgid "pwrite"
25867 msgstr ""
25868
25869 #. type: verbatim
25870 #: ../fish/guestfish-actions.pod:3615
25871 #, no-wrap
25872 msgid ""
25873 " pwrite path content offset\n"
25874 "\n"
25875 msgstr ""
25876
25877 #. type: textblock
25878 #: ../fish/guestfish-actions.pod:3626
25879 msgid "See also L</pread>, L</pwrite-device>."
25880 msgstr ""
25881
25882 #. type: =head2
25883 #: ../fish/guestfish-actions.pod:3631
25884 msgid "pwrite-device"
25885 msgstr ""
25886
25887 #. type: verbatim
25888 #: ../fish/guestfish-actions.pod:3633
25889 #, no-wrap
25890 msgid ""
25891 " pwrite-device device content offset\n"
25892 "\n"
25893 msgstr ""
25894
25895 #. type: textblock
25896 #: ../fish/guestfish-actions.pod:3643
25897 msgid "See also L</pwrite>."
25898 msgstr ""
25899
25900 #. type: =head2
25901 #: ../fish/guestfish-actions.pod:3648
25902 msgid "read-file"
25903 msgstr ""
25904
25905 #. type: verbatim
25906 #: ../fish/guestfish-actions.pod:3650
25907 #, no-wrap
25908 msgid ""
25909 " read-file path\n"
25910 "\n"
25911 msgstr ""
25912
25913 #. type: textblock
25914 #: ../fish/guestfish-actions.pod:3655
25915 msgid ""
25916 "Unlike L</cat>, this function can correctly handle files that contain "
25917 "embedded ASCII NUL characters.  However unlike L</download>, this function "
25918 "is limited in the total size of file that can be handled."
25919 msgstr ""
25920
25921 #. type: =head2
25922 #: ../fish/guestfish-actions.pod:3663
25923 msgid "read-lines"
25924 msgstr ""
25925
25926 #. type: verbatim
25927 #: ../fish/guestfish-actions.pod:3665
25928 #, no-wrap
25929 msgid ""
25930 " read-lines path\n"
25931 "\n"
25932 msgstr ""
25933
25934 #. type: textblock
25935 #: ../fish/guestfish-actions.pod:3672
25936 msgid ""
25937 "Note that this function cannot correctly handle binary files (specifically, "
25938 "files containing C<\\0> character which is treated as end of line).  For "
25939 "those you need to use the L</read-file> function which has a more complex "
25940 "interface."
25941 msgstr ""
25942
25943 #. type: =head2
25944 #: ../fish/guestfish-actions.pod:3677
25945 msgid "readdir"
25946 msgstr ""
25947
25948 #. type: verbatim
25949 #: ../fish/guestfish-actions.pod:3679
25950 #, no-wrap
25951 msgid ""
25952 " readdir dir\n"
25953 "\n"
25954 msgstr ""
25955
25956 #. type: textblock
25957 #: ../fish/guestfish-actions.pod:3731
25958 msgid ""
25959 "This function is primarily intended for use by programs.  To get a simple "
25960 "list of names, use L</ls>.  To get a printable directory for human "
25961 "consumption, use L</ll>."
25962 msgstr ""
25963
25964 #. type: =head2
25965 #: ../fish/guestfish-actions.pod:3735
25966 msgid "readlink"
25967 msgstr ""
25968
25969 #. type: verbatim
25970 #: ../fish/guestfish-actions.pod:3737
25971 #, no-wrap
25972 msgid ""
25973 " readlink path\n"
25974 "\n"
25975 msgstr ""
25976
25977 #. type: =head2
25978 #: ../fish/guestfish-actions.pod:3741
25979 msgid "readlinklist"
25980 msgstr ""
25981
25982 #. type: verbatim
25983 #: ../fish/guestfish-actions.pod:3743
25984 #, no-wrap
25985 msgid ""
25986 " readlinklist path 'names ...'\n"
25987 "\n"
25988 msgstr ""
25989
25990 #. type: =head2
25991 #: ../fish/guestfish-actions.pod:3767
25992 msgid "realpath"
25993 msgstr ""
25994
25995 #. type: verbatim
25996 #: ../fish/guestfish-actions.pod:3769
25997 #, no-wrap
25998 msgid ""
25999 " realpath path\n"
26000 "\n"
26001 msgstr ""
26002
26003 #. type: =head2
26004 #: ../fish/guestfish-actions.pod:3774
26005 msgid "removexattr"
26006 msgstr ""
26007
26008 #. type: verbatim
26009 #: ../fish/guestfish-actions.pod:3776
26010 #, no-wrap
26011 msgid ""
26012 " removexattr xattr path\n"
26013 "\n"
26014 msgstr ""
26015
26016 #. type: textblock
26017 #: ../fish/guestfish-actions.pod:3781
26018 msgid "See also: L</lremovexattr>, L<attr(5)>."
26019 msgstr ""
26020
26021 #. type: =head2
26022 #: ../fish/guestfish-actions.pod:3783
26023 msgid "resize2fs"
26024 msgstr ""
26025
26026 #. type: verbatim
26027 #: ../fish/guestfish-actions.pod:3785
26028 #, no-wrap
26029 msgid ""
26030 " resize2fs device\n"
26031 "\n"
26032 msgstr ""
26033
26034 #. type: textblock
26035 #: ../fish/guestfish-actions.pod:3790
26036 msgid ""
26037 "I<Note:> It is sometimes required that you run L</e2fsck-f> on the C<device> "
26038 "before calling this command.  For unknown reasons C<resize2fs> sometimes "
26039 "gives an error about this and sometimes not.  In any case, it is always safe "
26040 "to call L</e2fsck-f> before calling this function."
26041 msgstr ""
26042
26043 #. type: =head2
26044 #: ../fish/guestfish-actions.pod:3796
26045 msgid "resize2fs-M"
26046 msgstr ""
26047
26048 #. type: verbatim
26049 #: ../fish/guestfish-actions.pod:3798
26050 #, no-wrap
26051 msgid ""
26052 " resize2fs-M device\n"
26053 "\n"
26054 msgstr ""
26055
26056 #. type: textblock
26057 #: ../fish/guestfish-actions.pod:3800
26058 msgid ""
26059 "This command is the same as L</resize2fs>, but the filesystem is resized to "
26060 "its minimum size.  This works like the C<-M> option to the C<resize2fs> "
26061 "command."
26062 msgstr ""
26063
26064 #. type: textblock
26065 #: ../fish/guestfish-actions.pod:3804
26066 msgid ""
26067 "To get the resulting size of the filesystem you should call L</tune2fs-l> "
26068 "and read the C<Block size> and C<Block count> values.  These two numbers, "
26069 "multiplied together, give the resulting size of the minimal filesystem in "
26070 "bytes."
26071 msgstr ""
26072
26073 #. type: =head2
26074 #: ../fish/guestfish-actions.pod:3809
26075 msgid "resize2fs-size"
26076 msgstr ""
26077
26078 #. type: verbatim
26079 #: ../fish/guestfish-actions.pod:3811
26080 #, no-wrap
26081 msgid ""
26082 " resize2fs-size device size\n"
26083 "\n"
26084 msgstr ""
26085
26086 #. type: textblock
26087 #: ../fish/guestfish-actions.pod:3813
26088 msgid ""
26089 "This command is the same as L</resize2fs> except that it allows you to "
26090 "specify the new size (in bytes) explicitly."
26091 msgstr ""
26092
26093 #. type: =head2
26094 #: ../fish/guestfish-actions.pod:3816
26095 msgid "rm"
26096 msgstr ""
26097
26098 #. type: verbatim
26099 #: ../fish/guestfish-actions.pod:3818
26100 #, no-wrap
26101 msgid ""
26102 " rm path\n"
26103 "\n"
26104 msgstr ""
26105
26106 #. type: =head2
26107 #: ../fish/guestfish-actions.pod:3822
26108 msgid "rm-rf"
26109 msgstr ""
26110
26111 #. type: verbatim
26112 #: ../fish/guestfish-actions.pod:3824
26113 #, no-wrap
26114 msgid ""
26115 " rm-rf path\n"
26116 "\n"
26117 msgstr ""
26118
26119 #. type: =head2
26120 #: ../fish/guestfish-actions.pod:3830
26121 msgid "rmdir"
26122 msgstr ""
26123
26124 #. type: verbatim
26125 #: ../fish/guestfish-actions.pod:3832
26126 #, no-wrap
26127 msgid ""
26128 " rmdir path\n"
26129 "\n"
26130 msgstr ""
26131
26132 #. type: =head2
26133 #: ../fish/guestfish-actions.pod:3836
26134 msgid "rmmountpoint"
26135 msgstr ""
26136
26137 #. type: verbatim
26138 #: ../fish/guestfish-actions.pod:3838
26139 #, no-wrap
26140 msgid ""
26141 " rmmountpoint exemptpath\n"
26142 "\n"
26143 msgstr ""
26144
26145 #. type: textblock
26146 #: ../fish/guestfish-actions.pod:3840
26147 msgid ""
26148 "This calls removes a mountpoint that was previously created with L</"
26149 "mkmountpoint>.  See L</mkmountpoint> for full details."
26150 msgstr ""
26151
26152 #. type: =head2
26153 #: ../fish/guestfish-actions.pod:3844
26154 msgid "scrub-device"
26155 msgstr ""
26156
26157 #. type: verbatim
26158 #: ../fish/guestfish-actions.pod:3846
26159 #, no-wrap
26160 msgid ""
26161 " scrub-device device\n"
26162 "\n"
26163 msgstr ""
26164
26165 #. type: =head2
26166 #: ../fish/guestfish-actions.pod:3857
26167 msgid "scrub-file"
26168 msgstr ""
26169
26170 #. type: verbatim
26171 #: ../fish/guestfish-actions.pod:3859
26172 #, no-wrap
26173 msgid ""
26174 " scrub-file file\n"
26175 "\n"
26176 msgstr ""
26177
26178 #. type: =head2
26179 #: ../fish/guestfish-actions.pod:3869
26180 msgid "scrub-freespace"
26181 msgstr ""
26182
26183 #. type: verbatim
26184 #: ../fish/guestfish-actions.pod:3871
26185 #, no-wrap
26186 msgid ""
26187 " scrub-freespace dir\n"
26188 "\n"
26189 msgstr ""
26190
26191 #. type: textblock
26192 #: ../fish/guestfish-actions.pod:3873
26193 msgid ""
26194 "This command creates the directory C<dir> and then fills it with files until "
26195 "the filesystem is full, and scrubs the files as for L</scrub-file>, and "
26196 "deletes them.  The intention is to scrub any free space on the partition "
26197 "containing C<dir>."
26198 msgstr ""
26199
26200 #. type: =head2
26201 #: ../fish/guestfish-actions.pod:3882
26202 msgid "set-append"
26203 msgstr ""
26204
26205 #. type: =head2
26206 #: ../fish/guestfish-actions.pod:3884
26207 msgid "append"
26208 msgstr ""
26209
26210 #. type: verbatim
26211 #: ../fish/guestfish-actions.pod:3886
26212 #, no-wrap
26213 msgid ""
26214 " set-append append\n"
26215 "\n"
26216 msgstr ""
26217
26218 #. type: =head2
26219 #: ../fish/guestfish-actions.pod:3897
26220 msgid "set-attach-method"
26221 msgstr ""
26222
26223 #. type: =head2
26224 #: ../fish/guestfish-actions.pod:3899
26225 msgid "attach-method"
26226 msgstr ""
26227
26228 #. type: verbatim
26229 #: ../fish/guestfish-actions.pod:3901
26230 #, no-wrap
26231 msgid ""
26232 " set-attach-method attachmethod\n"
26233 "\n"
26234 msgstr ""
26235
26236 #. type: =head2
26237 #: ../fish/guestfish-actions.pod:3923
26238 msgid "set-autosync"
26239 msgstr ""
26240
26241 #. type: =head2
26242 #: ../fish/guestfish-actions.pod:3925
26243 msgid "autosync"
26244 msgstr ""
26245
26246 #. type: verbatim
26247 #: ../fish/guestfish-actions.pod:3927
26248 #, no-wrap
26249 msgid ""
26250 " set-autosync true|false\n"
26251 "\n"
26252 msgstr ""
26253
26254 #. type: =head2
26255 #: ../fish/guestfish-actions.pod:3937
26256 msgid "set-direct"
26257 msgstr ""
26258
26259 #. type: =head2
26260 #: ../fish/guestfish-actions.pod:3939
26261 msgid "direct"
26262 msgstr ""
26263
26264 #. type: verbatim
26265 #: ../fish/guestfish-actions.pod:3941
26266 #, no-wrap
26267 msgid ""
26268 " set-direct true|false\n"
26269 "\n"
26270 msgstr ""
26271
26272 #. type: textblock
26273 #: ../fish/guestfish-actions.pod:3947
26274 msgid ""
26275 "One consequence of this is that log messages aren't caught by the library "
26276 "and handled by L</set-log-message-callback>, but go straight to stdout."
26277 msgstr ""
26278
26279 #. type: =head2
26280 #: ../fish/guestfish-actions.pod:3956
26281 msgid "set-e2label"
26282 msgstr ""
26283
26284 #. type: verbatim
26285 #: ../fish/guestfish-actions.pod:3958
26286 #, no-wrap
26287 msgid ""
26288 " set-e2label device label\n"
26289 "\n"
26290 msgstr ""
26291
26292 #. type: textblock
26293 #: ../fish/guestfish-actions.pod:3964
26294 msgid ""
26295 "You can use either L</tune2fs-l> or L</get-e2label> to return the existing "
26296 "label on a filesystem."
26297 msgstr ""
26298
26299 #. type: =head2
26300 #: ../fish/guestfish-actions.pod:3967
26301 msgid "set-e2uuid"
26302 msgstr ""
26303
26304 #. type: verbatim
26305 #: ../fish/guestfish-actions.pod:3969
26306 #, no-wrap
26307 msgid ""
26308 " set-e2uuid device uuid\n"
26309 "\n"
26310 msgstr ""
26311
26312 #. type: textblock
26313 #: ../fish/guestfish-actions.pod:3976
26314 msgid ""
26315 "You can use either L</tune2fs-l> or L</get-e2uuid> to return the existing "
26316 "UUID of a filesystem."
26317 msgstr ""
26318
26319 #. type: =head2
26320 #: ../fish/guestfish-actions.pod:3979
26321 msgid "set-memsize"
26322 msgstr ""
26323
26324 #. type: =head2
26325 #: ../fish/guestfish-actions.pod:3981
26326 msgid "memsize"
26327 msgstr ""
26328
26329 #. type: verbatim
26330 #: ../fish/guestfish-actions.pod:3983
26331 #, no-wrap
26332 msgid ""
26333 " set-memsize memsize\n"
26334 "\n"
26335 msgstr ""
26336
26337 #. type: textblock
26338 #: ../fish/guestfish-actions.pod:3985
26339 msgid ""
26340 "This sets the memory size in megabytes allocated to the qemu subprocess.  "
26341 "This only has any effect if called before L</launch>."
26342 msgstr ""
26343
26344 #. type: =head2
26345 #: ../fish/guestfish-actions.pod:3996
26346 msgid "set-network"
26347 msgstr ""
26348
26349 #. type: =head2
26350 #: ../fish/guestfish-actions.pod:3998
26351 msgid "network"
26352 msgstr ""
26353
26354 #. type: verbatim
26355 #: ../fish/guestfish-actions.pod:4000
26356 #, no-wrap
26357 msgid ""
26358 " set-network true|false\n"
26359 "\n"
26360 msgstr ""
26361
26362 #. type: textblock
26363 #: ../fish/guestfish-actions.pod:4008
26364 msgid ""
26365 "You must call this before calling L</launch>, otherwise it has no effect."
26366 msgstr ""
26367
26368 #. type: =head2
26369 #: ../fish/guestfish-actions.pod:4011
26370 msgid "set-path"
26371 msgstr ""
26372
26373 #. type: =head2
26374 #: ../fish/guestfish-actions.pod:4013
26375 msgid "path"
26376 msgstr ""
26377
26378 #. type: verbatim
26379 #: ../fish/guestfish-actions.pod:4015
26380 #, no-wrap
26381 msgid ""
26382 " set-path searchpath\n"
26383 "\n"
26384 msgstr ""
26385
26386 #. type: =head2
26387 #: ../fish/guestfish-actions.pod:4024
26388 msgid "set-qemu"
26389 msgstr ""
26390
26391 #. type: =head2
26392 #: ../fish/guestfish-actions.pod:4026
26393 msgid "qemu"
26394 msgstr ""
26395
26396 #. type: verbatim
26397 #: ../fish/guestfish-actions.pod:4028
26398 #, no-wrap
26399 msgid ""
26400 " set-qemu qemu\n"
26401 "\n"
26402 msgstr ""
26403
26404 #. type: =head2
26405 #: ../fish/guestfish-actions.pod:4048
26406 msgid "set-recovery-proc"
26407 msgstr ""
26408
26409 #. type: =head2
26410 #: ../fish/guestfish-actions.pod:4050
26411 msgid "recovery-proc"
26412 msgstr ""
26413
26414 #. type: verbatim
26415 #: ../fish/guestfish-actions.pod:4052
26416 #, no-wrap
26417 msgid ""
26418 " set-recovery-proc true|false\n"
26419 "\n"
26420 msgstr ""
26421
26422 #. type: textblock
26423 #: ../fish/guestfish-actions.pod:4054
26424 msgid ""
26425 "If this is called with the parameter C<false> then L</launch> does not "
26426 "create a recovery process.  The purpose of the recovery process is to stop "
26427 "runaway qemu processes in the case where the main program aborts abruptly."
26428 msgstr ""
26429
26430 #. type: textblock
26431 #: ../fish/guestfish-actions.pod:4059
26432 msgid ""
26433 "This only has any effect if called before L</launch>, and the default is "
26434 "true."
26435 msgstr ""
26436
26437 #. type: =head2
26438 #: ../fish/guestfish-actions.pod:4068
26439 msgid "set-selinux"
26440 msgstr ""
26441
26442 #. type: =head2
26443 #: ../fish/guestfish-actions.pod:4070
26444 msgid "selinux"
26445 msgstr ""
26446
26447 #. type: verbatim
26448 #: ../fish/guestfish-actions.pod:4072
26449 #, no-wrap
26450 msgid ""
26451 " set-selinux true|false\n"
26452 "\n"
26453 msgstr ""
26454
26455 #. type: =head2
26456 #: ../fish/guestfish-actions.pod:4083
26457 msgid "set-trace"
26458 msgstr ""
26459
26460 #. type: =head2
26461 #: ../fish/guestfish-actions.pod:4085
26462 msgid "trace"
26463 msgstr ""
26464
26465 #. type: verbatim
26466 #: ../fish/guestfish-actions.pod:4087
26467 #, no-wrap
26468 msgid ""
26469 " set-trace true|false\n"
26470 "\n"
26471 msgstr ""
26472
26473 #. type: textblock
26474 #: ../fish/guestfish-actions.pod:4099
26475 msgid ""
26476 "Trace messages are normally sent to C<stderr>, unless you register a "
26477 "callback to send them somewhere else (see L</set-event-callback>)."
26478 msgstr ""
26479
26480 #. type: =head2
26481 #: ../fish/guestfish-actions.pod:4103
26482 msgid "set-verbose"
26483 msgstr ""
26484
26485 #. type: =head2
26486 #: ../fish/guestfish-actions.pod:4105
26487 msgid "verbose"
26488 msgstr ""
26489
26490 #. type: verbatim
26491 #: ../fish/guestfish-actions.pod:4107
26492 #, no-wrap
26493 msgid ""
26494 " set-verbose true|false\n"
26495 "\n"
26496 msgstr ""
26497
26498 #. type: textblock
26499 #: ../fish/guestfish-actions.pod:4114
26500 msgid ""
26501 "Verbose messages are normally sent to C<stderr>, unless you register a "
26502 "callback to send them somewhere else (see L</set-event-callback>)."
26503 msgstr ""
26504
26505 #. type: =head2
26506 #: ../fish/guestfish-actions.pod:4118
26507 msgid "setcon"
26508 msgstr ""
26509
26510 #. type: verbatim
26511 #: ../fish/guestfish-actions.pod:4120
26512 #, no-wrap
26513 msgid ""
26514 " setcon context\n"
26515 "\n"
26516 msgstr ""
26517
26518 #. type: =head2
26519 #: ../fish/guestfish-actions.pod:4127
26520 msgid "setxattr"
26521 msgstr ""
26522
26523 #. type: verbatim
26524 #: ../fish/guestfish-actions.pod:4129
26525 #, no-wrap
26526 msgid ""
26527 " setxattr xattr val vallen path\n"
26528 "\n"
26529 msgstr ""
26530
26531 #. type: textblock
26532 #: ../fish/guestfish-actions.pod:4135
26533 msgid "See also: L</lsetxattr>, L<attr(5)>."
26534 msgstr ""
26535
26536 #. type: =head2
26537 #: ../fish/guestfish-actions.pod:4137
26538 msgid "sfdisk"
26539 msgstr ""
26540
26541 #. type: verbatim
26542 #: ../fish/guestfish-actions.pod:4139
26543 #, no-wrap
26544 msgid ""
26545 " sfdisk device cyls heads sectors 'lines ...'\n"
26546 "\n"
26547 msgstr ""
26548
26549 #. type: textblock
26550 #: ../fish/guestfish-actions.pod:4161
26551 msgid "See also: L</sfdisk-l>, L</sfdisk-N>, L</part-init>"
26552 msgstr ""
26553
26554 #. type: =head2
26555 #: ../fish/guestfish-actions.pod:4167
26556 msgid "sfdiskM"
26557 msgstr ""
26558
26559 #. type: verbatim
26560 #: ../fish/guestfish-actions.pod:4169
26561 #, no-wrap
26562 msgid ""
26563 " sfdiskM device 'lines ...'\n"
26564 "\n"
26565 msgstr ""
26566
26567 #. type: textblock
26568 #: ../fish/guestfish-actions.pod:4171
26569 msgid ""
26570 "This is a simplified interface to the L</sfdisk> command, where partition "
26571 "sizes are specified in megabytes only (rounded to the nearest cylinder) and "
26572 "you don't need to specify the cyls, heads and sectors parameters which were "
26573 "rarely if ever used anyway."
26574 msgstr ""
26575
26576 #. type: textblock
26577 #: ../fish/guestfish-actions.pod:4177
26578 msgid "See also: L</sfdisk>, the L<sfdisk(8)> manpage and L</part-disk>"
26579 msgstr ""
26580
26581 #. type: =head2
26582 #: ../fish/guestfish-actions.pod:4183
26583 msgid "sfdisk-N"
26584 msgstr ""
26585
26586 #. type: verbatim
26587 #: ../fish/guestfish-actions.pod:4185
26588 #, no-wrap
26589 msgid ""
26590 " sfdisk-N device partnum cyls heads sectors line\n"
26591 "\n"
26592 msgstr ""
26593
26594 #. type: textblock
26595 #: ../fish/guestfish-actions.pod:4190
26596 msgid ""
26597 "For other parameters, see L</sfdisk>.  You should usually pass C<0> for the "
26598 "cyls/heads/sectors parameters."
26599 msgstr ""
26600
26601 #. type: textblock
26602 #: ../fish/guestfish-actions.pod:4193
26603 msgid "See also: L</part-add>"
26604 msgstr ""
26605
26606 #. type: =head2
26607 #: ../fish/guestfish-actions.pod:4198
26608 msgid "sfdisk-disk-geometry"
26609 msgstr ""
26610
26611 #. type: verbatim
26612 #: ../fish/guestfish-actions.pod:4200
26613 #, no-wrap
26614 msgid ""
26615 " sfdisk-disk-geometry device\n"
26616 "\n"
26617 msgstr ""
26618
26619 #. type: textblock
26620 #: ../fish/guestfish-actions.pod:4202
26621 msgid ""
26622 "This displays the disk geometry of C<device> read from the partition table.  "
26623 "Especially in the case where the underlying block device has been resized, "
26624 "this can be different from the kernel's idea of the geometry (see L</sfdisk-"
26625 "kernel-geometry>)."
26626 msgstr ""
26627
26628 #. type: =head2
26629 #: ../fish/guestfish-actions.pod:4210
26630 msgid "sfdisk-kernel-geometry"
26631 msgstr ""
26632
26633 #. type: verbatim
26634 #: ../fish/guestfish-actions.pod:4212
26635 #, no-wrap
26636 msgid ""
26637 " sfdisk-kernel-geometry device\n"
26638 "\n"
26639 msgstr ""
26640
26641 #. type: =head2
26642 #: ../fish/guestfish-actions.pod:4219
26643 msgid "sfdisk-l"
26644 msgstr ""
26645
26646 #. type: verbatim
26647 #: ../fish/guestfish-actions.pod:4221
26648 #, no-wrap
26649 msgid ""
26650 " sfdisk-l device\n"
26651 "\n"
26652 msgstr ""
26653
26654 #. type: textblock
26655 #: ../fish/guestfish-actions.pod:4227
26656 msgid "See also: L</part-list>"
26657 msgstr ""
26658
26659 #. type: =head2
26660 #: ../fish/guestfish-actions.pod:4229
26661 msgid "sh"
26662 msgstr ""
26663
26664 #. type: verbatim
26665 #: ../fish/guestfish-actions.pod:4231
26666 #, no-wrap
26667 msgid ""
26668 " sh command\n"
26669 "\n"
26670 msgstr ""
26671
26672 #. type: textblock
26673 #: ../fish/guestfish-actions.pod:4236
26674 msgid "This is like L</command>, but passes the command to:"
26675 msgstr ""
26676
26677 #. type: textblock
26678 #: ../fish/guestfish-actions.pod:4244
26679 msgid "All the provisos about L</command> apply to this call."
26680 msgstr ""
26681
26682 #. type: =head2
26683 #: ../fish/guestfish-actions.pod:4246
26684 msgid "sh-lines"
26685 msgstr ""
26686
26687 #. type: verbatim
26688 #: ../fish/guestfish-actions.pod:4248
26689 #, no-wrap
26690 msgid ""
26691 " sh-lines command\n"
26692 "\n"
26693 msgstr ""
26694
26695 #. type: textblock
26696 #: ../fish/guestfish-actions.pod:4250
26697 msgid "This is the same as L</sh>, but splits the result into a list of lines."
26698 msgstr ""
26699
26700 #. type: textblock
26701 #: ../fish/guestfish-actions.pod:4253
26702 msgid "See also: L</command-lines>"
26703 msgstr ""
26704
26705 #. type: =head2
26706 #: ../fish/guestfish-actions.pod:4255
26707 msgid "sleep"
26708 msgstr ""
26709
26710 #. type: verbatim
26711 #: ../fish/guestfish-actions.pod:4257
26712 #, no-wrap
26713 msgid ""
26714 " sleep secs\n"
26715 "\n"
26716 msgstr ""
26717
26718 #. type: =head2
26719 #: ../fish/guestfish-actions.pod:4261
26720 msgid "stat"
26721 msgstr ""
26722
26723 #. type: verbatim
26724 #: ../fish/guestfish-actions.pod:4263
26725 #, no-wrap
26726 msgid ""
26727 " stat path\n"
26728 "\n"
26729 msgstr ""
26730
26731 #. type: =head2
26732 #: ../fish/guestfish-actions.pod:4269
26733 msgid "statvfs"
26734 msgstr ""
26735
26736 #. type: verbatim
26737 #: ../fish/guestfish-actions.pod:4271
26738 #, no-wrap
26739 msgid ""
26740 " statvfs path\n"
26741 "\n"
26742 msgstr ""
26743
26744 #. type: =head2
26745 #: ../fish/guestfish-actions.pod:4279
26746 msgid "strings"
26747 msgstr ""
26748
26749 #. type: verbatim
26750 #: ../fish/guestfish-actions.pod:4281
26751 #, no-wrap
26752 msgid ""
26753 " strings path\n"
26754 "\n"
26755 msgstr ""
26756
26757 #. type: =head2
26758 #: ../fish/guestfish-actions.pod:4289
26759 msgid "strings-e"
26760 msgstr ""
26761
26762 #. type: verbatim
26763 #: ../fish/guestfish-actions.pod:4291
26764 #, no-wrap
26765 msgid ""
26766 " strings-e encoding path\n"
26767 "\n"
26768 msgstr ""
26769
26770 #. type: textblock
26771 #: ../fish/guestfish-actions.pod:4293
26772 msgid ""
26773 "This is like the L</strings> command, but allows you to specify the encoding "
26774 "of strings that are looked for in the source file C<path>."
26775 msgstr ""
26776
26777 #. type: textblock
26778 #: ../fish/guestfish-actions.pod:4303
26779 msgid ""
26780 "Single 7-bit-byte characters like ASCII and the ASCII-compatible parts of "
26781 "ISO-8859-X (this is what L</strings> uses)."
26782 msgstr ""
26783
26784 #. type: =head2
26785 #: ../fish/guestfish-actions.pod:4335
26786 msgid "swapoff-device"
26787 msgstr ""
26788
26789 #. type: verbatim
26790 #: ../fish/guestfish-actions.pod:4337
26791 #, no-wrap
26792 msgid ""
26793 " swapoff-device device\n"
26794 "\n"
26795 msgstr ""
26796
26797 #. type: textblock
26798 #: ../fish/guestfish-actions.pod:4339
26799 msgid ""
26800 "This command disables the libguestfs appliance swap device or partition "
26801 "named C<device>.  See L</swapon-device>."
26802 msgstr ""
26803
26804 #. type: =head2
26805 #: ../fish/guestfish-actions.pod:4343
26806 msgid "swapoff-file"
26807 msgstr ""
26808
26809 #. type: verbatim
26810 #: ../fish/guestfish-actions.pod:4345
26811 #, no-wrap
26812 msgid ""
26813 " swapoff-file file\n"
26814 "\n"
26815 msgstr ""
26816
26817 #. type: =head2
26818 #: ../fish/guestfish-actions.pod:4349
26819 msgid "swapoff-label"
26820 msgstr ""
26821
26822 #. type: verbatim
26823 #: ../fish/guestfish-actions.pod:4351
26824 #, no-wrap
26825 msgid ""
26826 " swapoff-label label\n"
26827 "\n"
26828 msgstr ""
26829
26830 #. type: =head2
26831 #: ../fish/guestfish-actions.pod:4356
26832 msgid "swapoff-uuid"
26833 msgstr ""
26834
26835 #. type: verbatim
26836 #: ../fish/guestfish-actions.pod:4358
26837 #, no-wrap
26838 msgid ""
26839 " swapoff-uuid uuid\n"
26840 "\n"
26841 msgstr ""
26842
26843 #. type: =head2
26844 #: ../fish/guestfish-actions.pod:4363
26845 msgid "swapon-device"
26846 msgstr ""
26847
26848 #. type: verbatim
26849 #: ../fish/guestfish-actions.pod:4365
26850 #, no-wrap
26851 msgid ""
26852 " swapon-device device\n"
26853 "\n"
26854 msgstr ""
26855
26856 #. type: textblock
26857 #: ../fish/guestfish-actions.pod:4367
26858 msgid ""
26859 "This command enables the libguestfs appliance to use the swap device or "
26860 "partition named C<device>.  The increased memory is made available for all "
26861 "commands, for example those run using L</command> or L</sh>."
26862 msgstr ""
26863
26864 #. type: =head2
26865 #: ../fish/guestfish-actions.pod:4379
26866 msgid "swapon-file"
26867 msgstr ""
26868
26869 #. type: verbatim
26870 #: ../fish/guestfish-actions.pod:4381
26871 #, no-wrap
26872 msgid ""
26873 " swapon-file file\n"
26874 "\n"
26875 msgstr ""
26876
26877 #. type: textblock
26878 #: ../fish/guestfish-actions.pod:4383
26879 msgid ""
26880 "This command enables swap to a file.  See L</swapon-device> for other notes."
26881 msgstr ""
26882
26883 #. type: =head2
26884 #: ../fish/guestfish-actions.pod:4386
26885 msgid "swapon-label"
26886 msgstr ""
26887
26888 #. type: verbatim
26889 #: ../fish/guestfish-actions.pod:4388
26890 #, no-wrap
26891 msgid ""
26892 " swapon-label label\n"
26893 "\n"
26894 msgstr ""
26895
26896 #. type: textblock
26897 #: ../fish/guestfish-actions.pod:4390
26898 msgid ""
26899 "This command enables swap to a labeled swap partition.  See L</swapon-"
26900 "device> for other notes."
26901 msgstr ""
26902
26903 #. type: =head2
26904 #: ../fish/guestfish-actions.pod:4393
26905 msgid "swapon-uuid"
26906 msgstr ""
26907
26908 #. type: verbatim
26909 #: ../fish/guestfish-actions.pod:4395
26910 #, no-wrap
26911 msgid ""
26912 " swapon-uuid uuid\n"
26913 "\n"
26914 msgstr ""
26915
26916 #. type: textblock
26917 #: ../fish/guestfish-actions.pod:4397
26918 msgid ""
26919 "This command enables swap to a swap partition with the given UUID.  See L</"
26920 "swapon-device> for other notes."
26921 msgstr ""
26922
26923 #. type: =head2
26924 #: ../fish/guestfish-actions.pod:4400
26925 msgid "sync"
26926 msgstr ""
26927
26928 #. type: verbatim
26929 #: ../fish/guestfish-actions.pod:4402
26930 #, no-wrap
26931 msgid ""
26932 " sync\n"
26933 "\n"
26934 msgstr ""
26935
26936 #. type: =head2
26937 #: ../fish/guestfish-actions.pod:4410
26938 msgid "tail"
26939 msgstr ""
26940
26941 #. type: verbatim
26942 #: ../fish/guestfish-actions.pod:4412
26943 #, no-wrap
26944 msgid ""
26945 " tail path\n"
26946 "\n"
26947 msgstr ""
26948
26949 #. type: =head2
26950 #: ../fish/guestfish-actions.pod:4420
26951 msgid "tail-n"
26952 msgstr ""
26953
26954 #. type: verbatim
26955 #: ../fish/guestfish-actions.pod:4422
26956 #, no-wrap
26957 msgid ""
26958 " tail-n nrlines path\n"
26959 "\n"
26960 msgstr ""
26961
26962 #. type: =head2
26963 #: ../fish/guestfish-actions.pod:4435
26964 msgid "tar-in"
26965 msgstr ""
26966
26967 #. type: verbatim
26968 #: ../fish/guestfish-actions.pod:4437
26969 #, no-wrap
26970 msgid ""
26971 " tar-in (tarfile|-) directory\n"
26972 "\n"
26973 msgstr ""
26974
26975 #. type: textblock
26976 #: ../fish/guestfish-actions.pod:4442
26977 msgid "To upload a compressed tarball, use L</tgz-in> or L</txz-in>."
26978 msgstr ""
26979
26980 #. type: =head2
26981 #: ../fish/guestfish-actions.pod:4447
26982 msgid "tar-out"
26983 msgstr ""
26984
26985 #. type: verbatim
26986 #: ../fish/guestfish-actions.pod:4449
26987 #, no-wrap
26988 msgid ""
26989 " tar-out directory (tarfile|-)\n"
26990 "\n"
26991 msgstr ""
26992
26993 #. type: textblock
26994 #: ../fish/guestfish-actions.pod:4454
26995 msgid "To download a compressed tarball, use L</tgz-out> or L</txz-out>."
26996 msgstr ""
26997
26998 #. type: =head2
26999 #: ../fish/guestfish-actions.pod:4459
27000 msgid "tgz-in"
27001 msgstr ""
27002
27003 #. type: verbatim
27004 #: ../fish/guestfish-actions.pod:4461
27005 #, no-wrap
27006 msgid ""
27007 " tgz-in (tarball|-) directory\n"
27008 "\n"
27009 msgstr ""
27010
27011 #. type: textblock
27012 #: ../fish/guestfish-actions.pod:4466
27013 msgid "To upload an uncompressed tarball, use L</tar-in>."
27014 msgstr ""
27015
27016 #. type: =head2
27017 #: ../fish/guestfish-actions.pod:4470
27018 msgid "tgz-out"
27019 msgstr ""
27020
27021 #. type: verbatim
27022 #: ../fish/guestfish-actions.pod:4472
27023 #, no-wrap
27024 msgid ""
27025 " tgz-out directory (tarball|-)\n"
27026 "\n"
27027 msgstr ""
27028
27029 #. type: textblock
27030 #: ../fish/guestfish-actions.pod:4477
27031 msgid "To download an uncompressed tarball, use L</tar-out>."
27032 msgstr ""
27033
27034 #. type: =head2
27035 #: ../fish/guestfish-actions.pod:4481
27036 msgid "touch"
27037 msgstr ""
27038
27039 #. type: verbatim
27040 #: ../fish/guestfish-actions.pod:4483
27041 #, no-wrap
27042 msgid ""
27043 " touch path\n"
27044 "\n"
27045 msgstr ""
27046
27047 #. type: =head2
27048 #: ../fish/guestfish-actions.pod:4492
27049 msgid "truncate"
27050 msgstr ""
27051
27052 #. type: verbatim
27053 #: ../fish/guestfish-actions.pod:4494
27054 #, no-wrap
27055 msgid ""
27056 " truncate path\n"
27057 "\n"
27058 msgstr ""
27059
27060 #. type: =head2
27061 #: ../fish/guestfish-actions.pod:4499
27062 msgid "truncate-size"
27063 msgstr ""
27064
27065 #. type: verbatim
27066 #: ../fish/guestfish-actions.pod:4501
27067 #, no-wrap
27068 msgid ""
27069 " truncate-size path size\n"
27070 "\n"
27071 msgstr ""
27072
27073 #. type: textblock
27074 #: ../fish/guestfish-actions.pod:4506
27075 msgid ""
27076 "If the current file size is less than C<size> then the file is extended to "
27077 "the required size with zero bytes.  This creates a sparse file (ie. disk "
27078 "blocks are not allocated for the file until you write to it).  To create a "
27079 "non-sparse file of zeroes, use L</fallocate64> instead."
27080 msgstr ""
27081
27082 #. type: =head2
27083 #: ../fish/guestfish-actions.pod:4512
27084 msgid "tune2fs-l"
27085 msgstr ""
27086
27087 #. type: verbatim
27088 #: ../fish/guestfish-actions.pod:4514
27089 #, no-wrap
27090 msgid ""
27091 " tune2fs-l device\n"
27092 "\n"
27093 msgstr ""
27094
27095 #. type: =head2
27096 #: ../fish/guestfish-actions.pod:4524
27097 msgid "txz-in"
27098 msgstr ""
27099
27100 #. type: verbatim
27101 #: ../fish/guestfish-actions.pod:4526
27102 #, no-wrap
27103 msgid ""
27104 " txz-in (tarball|-) directory\n"
27105 "\n"
27106 msgstr ""
27107
27108 #. type: =head2
27109 #: ../fish/guestfish-actions.pod:4533
27110 msgid "txz-out"
27111 msgstr ""
27112
27113 #. type: verbatim
27114 #: ../fish/guestfish-actions.pod:4535
27115 #, no-wrap
27116 msgid ""
27117 " txz-out directory (tarball|-)\n"
27118 "\n"
27119 msgstr ""
27120
27121 #. type: =head2
27122 #: ../fish/guestfish-actions.pod:4542
27123 msgid "umask"
27124 msgstr ""
27125
27126 #. type: verbatim
27127 #: ../fish/guestfish-actions.pod:4544
27128 #, no-wrap
27129 msgid ""
27130 " umask mask\n"
27131 "\n"
27132 msgstr ""
27133
27134 #. type: textblock
27135 #: ../fish/guestfish-actions.pod:4558
27136 msgid "See also L</get-umask>, L<umask(2)>, L</mknod>, L</mkdir>."
27137 msgstr ""
27138
27139 #. type: =head2
27140 #: ../fish/guestfish-actions.pod:4563
27141 msgid "umount"
27142 msgstr ""
27143
27144 #. type: =head2
27145 #: ../fish/guestfish-actions.pod:4565
27146 msgid "unmount"
27147 msgstr ""
27148
27149 #. type: verbatim
27150 #: ../fish/guestfish-actions.pod:4567
27151 #, no-wrap
27152 msgid ""
27153 " umount pathordevice\n"
27154 "\n"
27155 msgstr ""
27156
27157 #. type: =head2
27158 #: ../fish/guestfish-actions.pod:4573
27159 msgid "umount-all"
27160 msgstr ""
27161
27162 #. type: =head2
27163 #: ../fish/guestfish-actions.pod:4575
27164 msgid "unmount-all"
27165 msgstr ""
27166
27167 #. type: verbatim
27168 #: ../fish/guestfish-actions.pod:4577
27169 #, no-wrap
27170 msgid ""
27171 " umount-all\n"
27172 "\n"
27173 msgstr ""
27174
27175 #. type: =head2
27176 #: ../fish/guestfish-actions.pod:4583
27177 msgid "upload"
27178 msgstr ""
27179
27180 #. type: verbatim
27181 #: ../fish/guestfish-actions.pod:4585
27182 #, no-wrap
27183 msgid ""
27184 " upload (filename|-) remotefilename\n"
27185 "\n"
27186 msgstr ""
27187
27188 #. type: textblock
27189 #: ../fish/guestfish-actions.pod:4592
27190 msgid "See also L</download>."
27191 msgstr ""
27192
27193 #. type: =head2
27194 #: ../fish/guestfish-actions.pod:4596
27195 msgid "upload-offset"
27196 msgstr ""
27197
27198 #. type: verbatim
27199 #: ../fish/guestfish-actions.pod:4598
27200 #, no-wrap
27201 msgid ""
27202 " upload-offset (filename|-) remotefilename offset\n"
27203 "\n"
27204 msgstr ""
27205
27206 #. type: textblock
27207 #: ../fish/guestfish-actions.pod:4610
27208 msgid ""
27209 "Note that there is no limit on the amount of data that can be uploaded with "
27210 "this call, unlike with L</pwrite>, and this call always writes the full "
27211 "amount unless an error occurs."
27212 msgstr ""
27213
27214 #. type: textblock
27215 #: ../fish/guestfish-actions.pod:4615
27216 msgid "See also L</upload>, L</pwrite>."
27217 msgstr ""
27218
27219 #. type: =head2
27220 #: ../fish/guestfish-actions.pod:4619
27221 msgid "utimens"
27222 msgstr ""
27223
27224 #. type: verbatim
27225 #: ../fish/guestfish-actions.pod:4621
27226 #, no-wrap
27227 msgid ""
27228 " utimens path atsecs atnsecs mtsecs mtnsecs\n"
27229 "\n"
27230 msgstr ""
27231
27232 #. type: =head2
27233 #: ../fish/guestfish-actions.pod:4640
27234 msgid "version"
27235 msgstr ""
27236
27237 #. type: verbatim
27238 #: ../fish/guestfish-actions.pod:4642
27239 #, no-wrap
27240 msgid ""
27241 " version\n"
27242 "\n"
27243 msgstr ""
27244
27245 #. type: textblock
27246 #: ../fish/guestfish-actions.pod:4669
27247 msgid ""
27248 "I<Note:> Don't use this call to test for availability of features.  In "
27249 "enterprise distributions we backport features from later versions into "
27250 "earlier versions, making this an unreliable way to test for features.  Use "
27251 "L</available> instead."
27252 msgstr ""
27253
27254 #. type: =head2
27255 #: ../fish/guestfish-actions.pod:4675
27256 msgid "vfs-label"
27257 msgstr ""
27258
27259 #. type: verbatim
27260 #: ../fish/guestfish-actions.pod:4677
27261 #, no-wrap
27262 msgid ""
27263 " vfs-label device\n"
27264 "\n"
27265 msgstr ""
27266
27267 #. type: textblock
27268 #: ../fish/guestfish-actions.pod:4684
27269 msgid "To find a filesystem from the label, use L</findfs-label>."
27270 msgstr ""
27271
27272 #. type: =head2
27273 #: ../fish/guestfish-actions.pod:4686
27274 msgid "vfs-type"
27275 msgstr ""
27276
27277 #. type: verbatim
27278 #: ../fish/guestfish-actions.pod:4688
27279 #, no-wrap
27280 msgid ""
27281 " vfs-type device\n"
27282 "\n"
27283 msgstr ""
27284
27285 #. type: =head2
27286 #: ../fish/guestfish-actions.pod:4698
27287 msgid "vfs-uuid"
27288 msgstr ""
27289
27290 #. type: verbatim
27291 #: ../fish/guestfish-actions.pod:4700
27292 #, no-wrap
27293 msgid ""
27294 " vfs-uuid device\n"
27295 "\n"
27296 msgstr ""
27297
27298 #. type: textblock
27299 #: ../fish/guestfish-actions.pod:4707
27300 msgid "To find a filesystem from the UUID, use L</findfs-uuid>."
27301 msgstr ""
27302
27303 #. type: =head2
27304 #: ../fish/guestfish-actions.pod:4709
27305 msgid "vg-activate"
27306 msgstr ""
27307
27308 #. type: verbatim
27309 #: ../fish/guestfish-actions.pod:4711
27310 #, no-wrap
27311 msgid ""
27312 " vg-activate true|false 'volgroups ...'\n"
27313 "\n"
27314 msgstr ""
27315
27316 #. type: =head2
27317 #: ../fish/guestfish-actions.pod:4724
27318 msgid "vg-activate-all"
27319 msgstr ""
27320
27321 #. type: verbatim
27322 #: ../fish/guestfish-actions.pod:4726
27323 #, no-wrap
27324 msgid ""
27325 " vg-activate-all true|false\n"
27326 "\n"
27327 msgstr ""
27328
27329 #. type: =head2
27330 #: ../fish/guestfish-actions.pod:4736
27331 msgid "vgcreate"
27332 msgstr ""
27333
27334 #. type: verbatim
27335 #: ../fish/guestfish-actions.pod:4738
27336 #, no-wrap
27337 msgid ""
27338 " vgcreate volgroup 'physvols ...'\n"
27339 "\n"
27340 msgstr ""
27341
27342 #. type: =head2
27343 #: ../fish/guestfish-actions.pod:4743
27344 msgid "vglvuuids"
27345 msgstr ""
27346
27347 #. type: verbatim
27348 #: ../fish/guestfish-actions.pod:4745
27349 #, no-wrap
27350 msgid ""
27351 " vglvuuids vgname\n"
27352 "\n"
27353 msgstr ""
27354
27355 #. type: textblock
27356 #: ../fish/guestfish-actions.pod:4750
27357 msgid ""
27358 "You can use this along with L</lvs> and L</lvuuid> calls to associate "
27359 "logical volumes and volume groups."
27360 msgstr ""
27361
27362 #. type: textblock
27363 #: ../fish/guestfish-actions.pod:4753
27364 msgid "See also L</vgpvuuids>."
27365 msgstr ""
27366
27367 #. type: =head2
27368 #: ../fish/guestfish-actions.pod:4755
27369 msgid "vgpvuuids"
27370 msgstr ""
27371
27372 #. type: verbatim
27373 #: ../fish/guestfish-actions.pod:4757
27374 #, no-wrap
27375 msgid ""
27376 " vgpvuuids vgname\n"
27377 "\n"
27378 msgstr ""
27379
27380 #. type: textblock
27381 #: ../fish/guestfish-actions.pod:4762
27382 msgid ""
27383 "You can use this along with L</pvs> and L</pvuuid> calls to associate "
27384 "physical volumes and volume groups."
27385 msgstr ""
27386
27387 #. type: textblock
27388 #: ../fish/guestfish-actions.pod:4765
27389 msgid "See also L</vglvuuids>."
27390 msgstr ""
27391
27392 #. type: =head2
27393 #: ../fish/guestfish-actions.pod:4767
27394 msgid "vgremove"
27395 msgstr ""
27396
27397 #. type: verbatim
27398 #: ../fish/guestfish-actions.pod:4769
27399 #, no-wrap
27400 msgid ""
27401 " vgremove vgname\n"
27402 "\n"
27403 msgstr ""
27404
27405 #. type: =head2
27406 #: ../fish/guestfish-actions.pod:4776
27407 msgid "vgrename"
27408 msgstr ""
27409
27410 #. type: verbatim
27411 #: ../fish/guestfish-actions.pod:4778
27412 #, no-wrap
27413 msgid ""
27414 " vgrename volgroup newvolgroup\n"
27415 "\n"
27416 msgstr ""
27417
27418 #. type: =head2
27419 #: ../fish/guestfish-actions.pod:4782
27420 msgid "vgs"
27421 msgstr ""
27422
27423 #. type: verbatim
27424 #: ../fish/guestfish-actions.pod:4784
27425 #, no-wrap
27426 msgid ""
27427 " vgs\n"
27428 "\n"
27429 msgstr ""
27430
27431 #. type: textblock
27432 #: ../fish/guestfish-actions.pod:4792
27433 msgid "See also L</vgs-full>."
27434 msgstr ""
27435
27436 #. type: =head2
27437 #: ../fish/guestfish-actions.pod:4794
27438 msgid "vgs-full"
27439 msgstr ""
27440
27441 #. type: verbatim
27442 #: ../fish/guestfish-actions.pod:4796
27443 #, no-wrap
27444 msgid ""
27445 " vgs-full\n"
27446 "\n"
27447 msgstr ""
27448
27449 #. type: =head2
27450 #: ../fish/guestfish-actions.pod:4801
27451 msgid "vgscan"
27452 msgstr ""
27453
27454 #. type: verbatim
27455 #: ../fish/guestfish-actions.pod:4803
27456 #, no-wrap
27457 msgid ""
27458 " vgscan\n"
27459 "\n"
27460 msgstr ""
27461
27462 #. type: =head2
27463 #: ../fish/guestfish-actions.pod:4808
27464 msgid "vguuid"
27465 msgstr ""
27466
27467 #. type: verbatim
27468 #: ../fish/guestfish-actions.pod:4810
27469 #, no-wrap
27470 msgid ""
27471 " vguuid vgname\n"
27472 "\n"
27473 msgstr ""
27474
27475 #. type: =head2
27476 #: ../fish/guestfish-actions.pod:4814
27477 msgid "wc-c"
27478 msgstr ""
27479
27480 #. type: verbatim
27481 #: ../fish/guestfish-actions.pod:4816
27482 #, no-wrap
27483 msgid ""
27484 " wc-c path\n"
27485 "\n"
27486 msgstr ""
27487
27488 #. type: =head2
27489 #: ../fish/guestfish-actions.pod:4821
27490 msgid "wc-l"
27491 msgstr ""
27492
27493 #. type: verbatim
27494 #: ../fish/guestfish-actions.pod:4823
27495 #, no-wrap
27496 msgid ""
27497 " wc-l path\n"
27498 "\n"
27499 msgstr ""
27500
27501 #. type: =head2
27502 #: ../fish/guestfish-actions.pod:4828
27503 msgid "wc-w"
27504 msgstr ""
27505
27506 #. type: verbatim
27507 #: ../fish/guestfish-actions.pod:4830
27508 #, no-wrap
27509 msgid ""
27510 " wc-w path\n"
27511 "\n"
27512 msgstr ""
27513
27514 #. type: =head2
27515 #: ../fish/guestfish-actions.pod:4835
27516 msgid "write"
27517 msgstr ""
27518
27519 #. type: verbatim
27520 #: ../fish/guestfish-actions.pod:4837
27521 #, no-wrap
27522 msgid ""
27523 " write path content\n"
27524 "\n"
27525 msgstr ""
27526
27527 #. type: =head2
27528 #: ../fish/guestfish-actions.pod:4845
27529 msgid "write-file"
27530 msgstr ""
27531
27532 #. type: verbatim
27533 #: ../fish/guestfish-actions.pod:4847
27534 #, no-wrap
27535 msgid ""
27536 " write-file path content size\n"
27537 "\n"
27538 msgstr ""
27539
27540 #. type: =head2
27541 #: ../fish/guestfish-actions.pod:4870
27542 msgid "zegrep"
27543 msgstr ""
27544
27545 #. type: verbatim
27546 #: ../fish/guestfish-actions.pod:4872
27547 #, no-wrap
27548 msgid ""
27549 " zegrep regex path\n"
27550 "\n"
27551 msgstr ""
27552
27553 #. type: =head2
27554 #: ../fish/guestfish-actions.pod:4880
27555 msgid "zegrepi"
27556 msgstr ""
27557
27558 #. type: verbatim
27559 #: ../fish/guestfish-actions.pod:4882
27560 #, no-wrap
27561 msgid ""
27562 " zegrepi regex path\n"
27563 "\n"
27564 msgstr ""
27565
27566 #. type: =head2
27567 #: ../fish/guestfish-actions.pod:4890
27568 msgid "zero"
27569 msgstr ""
27570
27571 #. type: verbatim
27572 #: ../fish/guestfish-actions.pod:4892
27573 #, no-wrap
27574 msgid ""
27575 " zero device\n"
27576 "\n"
27577 msgstr ""
27578
27579 #. type: textblock
27580 #: ../fish/guestfish-actions.pod:4900
27581 msgid "See also: L</zero-device>, L</scrub-device>."
27582 msgstr ""
27583
27584 #. type: =head2
27585 #: ../fish/guestfish-actions.pod:4902
27586 msgid "zero-device"
27587 msgstr ""
27588
27589 #. type: verbatim
27590 #: ../fish/guestfish-actions.pod:4904
27591 #, no-wrap
27592 msgid ""
27593 " zero-device device\n"
27594 "\n"
27595 msgstr ""
27596
27597 #. type: textblock
27598 #: ../fish/guestfish-actions.pod:4906
27599 msgid ""
27600 "This command writes zeroes over the entire C<device>.  Compare with L</zero> "
27601 "which just zeroes the first few blocks of a device."
27602 msgstr ""
27603
27604 #. type: =head2
27605 #: ../fish/guestfish-actions.pod:4913
27606 msgid "zerofree"
27607 msgstr ""
27608
27609 #. type: verbatim
27610 #: ../fish/guestfish-actions.pod:4915
27611 #, no-wrap
27612 msgid ""
27613 " zerofree device\n"
27614 "\n"
27615 msgstr ""
27616
27617 #. type: =head2
27618 #: ../fish/guestfish-actions.pod:4928
27619 msgid "zfgrep"
27620 msgstr ""
27621
27622 #. type: verbatim
27623 #: ../fish/guestfish-actions.pod:4930
27624 #, no-wrap
27625 msgid ""
27626 " zfgrep pattern path\n"
27627 "\n"
27628 msgstr ""
27629
27630 #. type: =head2
27631 #: ../fish/guestfish-actions.pod:4938
27632 msgid "zfgrepi"
27633 msgstr ""
27634
27635 #. type: verbatim
27636 #: ../fish/guestfish-actions.pod:4940
27637 #, no-wrap
27638 msgid ""
27639 " zfgrepi pattern path\n"
27640 "\n"
27641 msgstr ""
27642
27643 #. type: =head2
27644 #: ../fish/guestfish-actions.pod:4948
27645 msgid "zfile"
27646 msgstr ""
27647
27648 #. type: verbatim
27649 #: ../fish/guestfish-actions.pod:4950
27650 #, no-wrap
27651 msgid ""
27652 " zfile meth path\n"
27653 "\n"
27654 msgstr ""
27655
27656 #. type: textblock
27657 #: ../fish/guestfish-actions.pod:4957
27658 msgid ""
27659 "Since 1.0.63, use L</file> instead which can now process compressed files."
27660 msgstr ""
27661
27662 #. type: =head2
27663 #: ../fish/guestfish-actions.pod:4967
27664 msgid "zgrep"
27665 msgstr ""
27666
27667 #. type: verbatim
27668 #: ../fish/guestfish-actions.pod:4969
27669 #, no-wrap
27670 msgid ""
27671 " zgrep regex path\n"
27672 "\n"
27673 msgstr ""
27674
27675 #. type: =head2
27676 #: ../fish/guestfish-actions.pod:4977
27677 msgid "zgrepi"
27678 msgstr ""
27679
27680 #. type: verbatim
27681 #: ../fish/guestfish-actions.pod:4979
27682 #, no-wrap
27683 msgid ""
27684 " zgrepi regex path\n"
27685 "\n"
27686 msgstr ""
27687
27688 #. type: =head2
27689 #: ../fish/guestfish-commands.pod:1
27690 msgid "alloc"
27691 msgstr ""
27692
27693 #. type: =head2
27694 #: ../fish/guestfish-commands.pod:3
27695 msgid "allocate"
27696 msgstr ""
27697
27698 #. type: verbatim
27699 #: ../fish/guestfish-commands.pod:5
27700 #, no-wrap
27701 msgid ""
27702 " alloc filename size\n"
27703 "\n"
27704 msgstr ""
27705
27706 #. type: textblock
27707 #: ../fish/guestfish-commands.pod:7
27708 msgid ""
27709 "This creates an empty (zeroed) file of the given size, and then adds so it "
27710 "can be further examined."
27711 msgstr ""
27712
27713 #. type: textblock
27714 #: ../fish/guestfish-commands.pod:10 ../fish/guestfish-commands.pod:168
27715 msgid "For more advanced image creation, see L<qemu-img(1)> utility."
27716 msgstr ""
27717
27718 #. type: textblock
27719 #: ../fish/guestfish-commands.pod:12 ../fish/guestfish-commands.pod:170
27720 msgid "Size can be specified using standard suffixes, eg. C<1M>."
27721 msgstr ""
27722
27723 #. type: textblock
27724 #: ../fish/guestfish-commands.pod:14
27725 msgid ""
27726 "To create a sparse file, use L</sparse> instead.  To create a prepared disk "
27727 "image, see L</PREPARED DISK IMAGES>."
27728 msgstr ""
27729
27730 #. type: =head2
27731 #: ../fish/guestfish-commands.pod:17
27732 msgid "copy-in"
27733 msgstr ""
27734
27735 #. type: verbatim
27736 #: ../fish/guestfish-commands.pod:19
27737 #, no-wrap
27738 msgid ""
27739 " copy-in local [local ...] /remotedir\n"
27740 "\n"
27741 msgstr ""
27742
27743 #. type: textblock
27744 #: ../fish/guestfish-commands.pod:21
27745 msgid ""
27746 "C<copy-in> copies local files or directories recursively into the disk "
27747 "image, placing them in the directory called C</remotedir> (which must "
27748 "exist).  This guestfish meta-command turns into a sequence of L</tar-in> and "
27749 "other commands as necessary."
27750 msgstr ""
27751
27752 #. type: textblock
27753 #: ../fish/guestfish-commands.pod:26
27754 msgid ""
27755 "Multiple local files and directories can be specified, but the last "
27756 "parameter must always be a remote directory.  Wildcards cannot be used."
27757 msgstr ""
27758
27759 #. type: =head2
27760 #: ../fish/guestfish-commands.pod:30
27761 msgid "copy-out"
27762 msgstr ""
27763
27764 #. type: verbatim
27765 #: ../fish/guestfish-commands.pod:32
27766 #, no-wrap
27767 msgid ""
27768 " copy-out remote [remote ...] localdir\n"
27769 "\n"
27770 msgstr ""
27771
27772 #. type: textblock
27773 #: ../fish/guestfish-commands.pod:34
27774 msgid ""
27775 "C<copy-out> copies remote files or directories recursively out of the disk "
27776 "image, placing them on the host disk in a local directory called C<localdir> "
27777 "(which must exist).  This guestfish meta-command turns into a sequence of L</"
27778 "download>, L</tar-out> and other commands as necessary."
27779 msgstr ""
27780
27781 #. type: textblock
27782 #: ../fish/guestfish-commands.pod:40
27783 msgid ""
27784 "Multiple remote files and directories can be specified, but the last "
27785 "parameter must always be a local directory.  To download to the current "
27786 "directory, use C<.> as in:"
27787 msgstr ""
27788
27789 #. type: verbatim
27790 #: ../fish/guestfish-commands.pod:44
27791 #, no-wrap
27792 msgid ""
27793 " copy-out /home .\n"
27794 "\n"
27795 msgstr ""
27796
27797 #. type: textblock
27798 #: ../fish/guestfish-commands.pod:46
27799 msgid ""
27800 "Wildcards cannot be used in the ordinary command, but you can use them with "
27801 "the help of L</glob> like this:"
27802 msgstr ""
27803
27804 #. type: verbatim
27805 #: ../fish/guestfish-commands.pod:49
27806 #, no-wrap
27807 msgid ""
27808 " glob copy-out /home/* .\n"
27809 "\n"
27810 msgstr ""
27811
27812 #. type: =head2
27813 #: ../fish/guestfish-commands.pod:51
27814 msgid "echo"
27815 msgstr ""
27816
27817 #. type: verbatim
27818 #: ../fish/guestfish-commands.pod:53
27819 #, no-wrap
27820 msgid ""
27821 " echo [params ...]\n"
27822 "\n"
27823 msgstr ""
27824
27825 #. type: textblock
27826 #: ../fish/guestfish-commands.pod:55
27827 msgid "This echos the parameters to the terminal."
27828 msgstr ""
27829
27830 #. type: =head2
27831 #: ../fish/guestfish-commands.pod:57
27832 msgid "edit"
27833 msgstr ""
27834
27835 #. type: =head2
27836 #: ../fish/guestfish-commands.pod:59
27837 msgid "vi"
27838 msgstr ""
27839
27840 #. type: =head2
27841 #: ../fish/guestfish-commands.pod:61
27842 msgid "emacs"
27843 msgstr ""
27844
27845 #. type: verbatim
27846 #: ../fish/guestfish-commands.pod:63
27847 #, no-wrap
27848 msgid ""
27849 " edit filename\n"
27850 "\n"
27851 msgstr ""
27852
27853 #. type: textblock
27854 #: ../fish/guestfish-commands.pod:65
27855 msgid ""
27856 "This is used to edit a file.  It downloads the file, edits it locally using "
27857 "your editor, then uploads the result."
27858 msgstr ""
27859
27860 #. type: textblock
27861 #: ../fish/guestfish-commands.pod:68
27862 msgid ""
27863 "The editor is C<$EDITOR>.  However if you use the alternate commands C<vi> "
27864 "or C<emacs> you will get those corresponding editors."
27865 msgstr ""
27866
27867 #. type: =head2
27868 #: ../fish/guestfish-commands.pod:72
27869 msgid "glob"
27870 msgstr ""
27871
27872 #. type: verbatim
27873 #: ../fish/guestfish-commands.pod:74
27874 #, no-wrap
27875 msgid ""
27876 " glob command args...\n"
27877 "\n"
27878 msgstr ""
27879
27880 #. type: textblock
27881 #: ../fish/guestfish-commands.pod:76
27882 msgid ""
27883 "Expand wildcards in any paths in the args list, and run C<command> "
27884 "repeatedly on each matching path."
27885 msgstr ""
27886
27887 #. type: textblock
27888 #: ../fish/guestfish-commands.pod:79
27889 msgid "See L</WILDCARDS AND GLOBBING>."
27890 msgstr ""
27891
27892 #. type: =head2
27893 #: ../fish/guestfish-commands.pod:81
27894 msgid "hexedit"
27895 msgstr ""
27896
27897 #. type: verbatim
27898 #: ../fish/guestfish-commands.pod:83
27899 #, no-wrap
27900 msgid ""
27901 " hexedit <filename|device>\n"
27902 " hexedit <filename|device> <max>\n"
27903 " hexedit <filename|device> <start> <max>\n"
27904 "\n"
27905 msgstr ""
27906
27907 #. type: textblock
27908 #: ../fish/guestfish-commands.pod:87
27909 msgid ""
27910 "Use hexedit (a hex editor) to edit all or part of a binary file or block "
27911 "device."
27912 msgstr ""
27913
27914 #. type: textblock
27915 #: ../fish/guestfish-commands.pod:90
27916 msgid ""
27917 "This command works by downloading potentially the whole file or device, "
27918 "editing it locally, then uploading it.  If the file or device is large, you "
27919 "have to specify which part you wish to edit by using C<max> and/or C<start> "
27920 "C<max> parameters.  C<start> and C<max> are specified in bytes, with the "
27921 "usual modifiers allowed such as C<1M> (1 megabyte)."
27922 msgstr ""
27923
27924 #. type: textblock
27925 #: ../fish/guestfish-commands.pod:97
27926 msgid "For example to edit the first few sectors of a disk you might do:"
27927 msgstr ""
27928
27929 #. type: verbatim
27930 #: ../fish/guestfish-commands.pod:100
27931 #, no-wrap
27932 msgid ""
27933 " hexedit /dev/sda 1M\n"
27934 "\n"
27935 msgstr ""
27936
27937 #. type: textblock
27938 #: ../fish/guestfish-commands.pod:102
27939 msgid ""
27940 "which would allow you to edit anywhere within the first megabyte of the disk."
27941 msgstr ""
27942
27943 #. type: textblock
27944 #: ../fish/guestfish-commands.pod:105
27945 msgid "To edit the superblock of an ext2 filesystem on C</dev/sda1>, do:"
27946 msgstr ""
27947
27948 #. type: verbatim
27949 #: ../fish/guestfish-commands.pod:107
27950 #, no-wrap
27951 msgid ""
27952 " hexedit /dev/sda1 0x400 0x400\n"
27953 "\n"
27954 msgstr ""
27955
27956 #. type: textblock
27957 #: ../fish/guestfish-commands.pod:109
27958 msgid "(assuming the superblock is in the standard location)."
27959 msgstr ""
27960
27961 #. type: textblock
27962 #: ../fish/guestfish-commands.pod:111
27963 msgid ""
27964 "This command requires the external L<hexedit(1)> program.  You can specify "
27965 "another program to use by setting the C<HEXEDITOR> environment variable."
27966 msgstr ""
27967
27968 #. type: textblock
27969 #: ../fish/guestfish-commands.pod:115
27970 msgid "See also L</hexdump>."
27971 msgstr ""
27972
27973 #. type: =head2
27974 #: ../fish/guestfish-commands.pod:117
27975 msgid "lcd"
27976 msgstr ""
27977
27978 #. type: verbatim
27979 #: ../fish/guestfish-commands.pod:119
27980 #, no-wrap
27981 msgid ""
27982 " lcd directory\n"
27983 "\n"
27984 msgstr ""
27985
27986 #. type: textblock
27987 #: ../fish/guestfish-commands.pod:121
27988 msgid ""
27989 "Change the local directory, ie. the current directory of guestfish itself."
27990 msgstr ""
27991
27992 #. type: textblock
27993 #: ../fish/guestfish-commands.pod:124
27994 msgid "Note that C<!cd> won't do what you might expect."
27995 msgstr ""
27996
27997 #. type: =head2
27998 #: ../fish/guestfish-commands.pod:126
27999 msgid "man"
28000 msgstr ""
28001
28002 #. type: =head2
28003 #: ../fish/guestfish-commands.pod:128
28004 msgid "manual"
28005 msgstr ""
28006
28007 #. type: verbatim
28008 #: ../fish/guestfish-commands.pod:130
28009 #, no-wrap
28010 msgid ""
28011 "  man\n"
28012 "\n"
28013 msgstr ""
28014
28015 #. type: textblock
28016 #: ../fish/guestfish-commands.pod:132
28017 msgid "Opens the manual page for guestfish."
28018 msgstr ""
28019
28020 #. type: =head2
28021 #: ../fish/guestfish-commands.pod:134
28022 msgid "more"
28023 msgstr ""
28024
28025 #. type: =head2
28026 #: ../fish/guestfish-commands.pod:136
28027 msgid "less"
28028 msgstr ""
28029
28030 #. type: verbatim
28031 #: ../fish/guestfish-commands.pod:138
28032 #, no-wrap
28033 msgid ""
28034 " more filename\n"
28035 "\n"
28036 msgstr ""
28037
28038 #. type: verbatim
28039 #: ../fish/guestfish-commands.pod:140
28040 #, no-wrap
28041 msgid ""
28042 " less filename\n"
28043 "\n"
28044 msgstr ""
28045
28046 #. type: textblock
28047 #: ../fish/guestfish-commands.pod:142
28048 msgid "This is used to view a file."
28049 msgstr ""
28050
28051 #. type: textblock
28052 #: ../fish/guestfish-commands.pod:144
28053 msgid ""
28054 "The default viewer is C<$PAGER>.  However if you use the alternate command "
28055 "C<less> you will get the C<less> command specifically."
28056 msgstr ""
28057
28058 #. type: =head2
28059 #: ../fish/guestfish-commands.pod:147
28060 msgid "reopen"
28061 msgstr ""
28062
28063 #. type: verbatim
28064 #: ../fish/guestfish-commands.pod:149
28065 #, no-wrap
28066 msgid ""
28067 "  reopen\n"
28068 "\n"
28069 msgstr ""
28070
28071 #. type: textblock
28072 #: ../fish/guestfish-commands.pod:151
28073 msgid ""
28074 "Close and reopen the libguestfs handle.  It is not necessary to use this "
28075 "normally, because the handle is closed properly when guestfish exits.  "
28076 "However this is occasionally useful for testing."
28077 msgstr ""
28078
28079 #. type: =head2
28080 #: ../fish/guestfish-commands.pod:155
28081 msgid "sparse"
28082 msgstr ""
28083
28084 #. type: verbatim
28085 #: ../fish/guestfish-commands.pod:157
28086 #, no-wrap
28087 msgid ""
28088 " sparse filename size\n"
28089 "\n"
28090 msgstr ""
28091
28092 #. type: textblock
28093 #: ../fish/guestfish-commands.pod:159
28094 msgid ""
28095 "This creates an empty sparse file of the given size, and then adds so it can "
28096 "be further examined."
28097 msgstr ""
28098
28099 #. type: textblock
28100 #: ../fish/guestfish-commands.pod:162
28101 msgid ""
28102 "In all respects it works the same as the L</alloc> command, except that the "
28103 "image file is allocated sparsely, which means that disk blocks are not "
28104 "assigned to the file until they are needed.  Sparse disk files only use "
28105 "space when written to, but they are slower and there is a danger you could "
28106 "run out of real disk space during a write operation."
28107 msgstr ""
28108
28109 #. type: =head2
28110 #: ../fish/guestfish-commands.pod:172
28111 msgid "supported"
28112 msgstr ""
28113
28114 #. type: verbatim
28115 #: ../fish/guestfish-commands.pod:174
28116 #, no-wrap
28117 msgid ""
28118 " supported\n"
28119 "\n"
28120 msgstr ""
28121
28122 #. type: textblock
28123 #: ../fish/guestfish-commands.pod:176
28124 msgid ""
28125 "This command returns a list of the optional groups known to the daemon, and "
28126 "indicates which ones are supported by this build of the libguestfs appliance."
28127 msgstr ""
28128
28129 #. type: textblock
28130 #: ../fish/guestfish-commands.pod:180
28131 msgid "See also L<guestfs(3)/AVAILABILITY>."
28132 msgstr ""
28133
28134 #. type: =head2
28135 #: ../fish/guestfish-commands.pod:182
28136 msgid "time"
28137 msgstr ""
28138
28139 #. type: verbatim
28140 #: ../fish/guestfish-commands.pod:184
28141 #, no-wrap
28142 msgid ""
28143 " time command args...\n"
28144 "\n"
28145 msgstr ""
28146
28147 #. type: textblock
28148 #: ../fish/guestfish-commands.pod:186
28149 msgid ""
28150 "Run the command as usual, but print the elapsed time afterwards.  This can "
28151 "be useful for benchmarking operations."
28152 msgstr ""
28153
28154 #. type: textblock
28155 #: ../test-tool/libguestfs-test-tool.pod:5
28156 msgid "libguestfs-test-tool - End user tests for libguestfs"
28157 msgstr ""
28158
28159 #. type: verbatim
28160 #: ../test-tool/libguestfs-test-tool.pod:9
28161 #, no-wrap
28162 msgid ""
28163 " libguestfs-test-tool [--options]\n"
28164 "\n"
28165 msgstr ""
28166
28167 #. type: textblock
28168 #: ../test-tool/libguestfs-test-tool.pod:13
28169 msgid ""
28170 "libguestfs-test-tool is a test program shipped with libguestfs to end users "
28171 "and developers, to allow them to check basic libguestfs functionality is "
28172 "working.  This is needed because libguestfs occasionally breaks for reasons "
28173 "beyond our control: usually because of changes in the underlying qemu or "
28174 "kernel packages, or the host environment."
28175 msgstr ""
28176
28177 #. type: textblock
28178 #: ../test-tool/libguestfs-test-tool.pod:20
28179 msgid "If you suspect a problem in libguestfs, then just run:"
28180 msgstr ""
28181
28182 #. type: verbatim
28183 #: ../test-tool/libguestfs-test-tool.pod:22
28184 #, no-wrap
28185 msgid ""
28186 " libguestfs-test-tool\n"
28187 "\n"
28188 msgstr ""
28189
28190 #. type: textblock
28191 #: ../test-tool/libguestfs-test-tool.pod:24
28192 msgid "It will print lots of diagnostic messages."
28193 msgstr ""
28194
28195 #. type: textblock
28196 #: ../test-tool/libguestfs-test-tool.pod:26
28197 msgid "If it runs to completion successfully, you will see this near the end:"
28198 msgstr ""
28199
28200 #. type: verbatim
28201 #: ../test-tool/libguestfs-test-tool.pod:28
28202 #, no-wrap
28203 msgid ""
28204 " ===== TEST FINISHED OK =====\n"
28205 "\n"
28206 msgstr ""
28207
28208 #. type: textblock
28209 #: ../test-tool/libguestfs-test-tool.pod:30
28210 msgid "and the test tool will exit with code 0."
28211 msgstr ""
28212
28213 #. type: textblock
28214 #: ../test-tool/libguestfs-test-tool.pod:32
28215 msgid ""
28216 "If it fails (and/or exits with non-zero error code), please paste the "
28217 "B<complete, unedited> output of the test tool into a bug report.  More "
28218 "information about reporting bugs can be found on the L<http://libguestfs.org/"
28219 "> website."
28220 msgstr ""
28221
28222 #. type: =item
28223 #: ../test-tool/libguestfs-test-tool.pod:41
28224 msgid "I<--help>"
28225 msgstr ""
28226
28227 #. type: textblock
28228 #: ../test-tool/libguestfs-test-tool.pod:43
28229 msgid "Display short usage information and exit."
28230 msgstr ""
28231
28232 #. type: =item
28233 #: ../test-tool/libguestfs-test-tool.pod:45
28234 msgid "I<--qemu qemu_binary>"
28235 msgstr ""
28236
28237 #. type: textblock
28238 #: ../test-tool/libguestfs-test-tool.pod:47
28239 msgid ""
28240 "If you have downloaded another qemu binary, point this option at the full "
28241 "path of the binary to try it."
28242 msgstr ""
28243
28244 #. type: =item
28245 #: ../test-tool/libguestfs-test-tool.pod:50
28246 msgid "I<--qemudir qemu_source_dir>"
28247 msgstr ""
28248
28249 #. type: textblock
28250 #: ../test-tool/libguestfs-test-tool.pod:52
28251 msgid ""
28252 "If you have compiled qemu from source, point this option at the source "
28253 "directory to try it."
28254 msgstr ""
28255
28256 #. type: =item
28257 #: ../test-tool/libguestfs-test-tool.pod:55
28258 msgid "I<--timeout N>"
28259 msgstr ""
28260
28261 #. type: textblock
28262 #: ../test-tool/libguestfs-test-tool.pod:57
28263 msgid ""
28264 "Set the launch timeout to C<N> seconds.  The default is 120 seconds which "
28265 "does not usually need to be adjusted unless your machine is very slow."
28266 msgstr ""
28267
28268 #. type: =head1
28269 #: ../test-tool/libguestfs-test-tool.pod:63
28270 msgid "TRYING OUT A DIFFERENT VERSION OF QEMU"
28271 msgstr ""
28272
28273 #. type: textblock
28274 #: ../test-tool/libguestfs-test-tool.pod:65
28275 msgid ""
28276 "If you have compiled another version of qemu from source and would like to "
28277 "try that, then you can use the I<--qemudir> option to point to the qemu "
28278 "source directory."
28279 msgstr ""
28280
28281 #. type: textblock
28282 #: ../test-tool/libguestfs-test-tool.pod:69
28283 msgid ""
28284 "If you have downloaded a qemu binary from somewhere, use the I<--qemu> "
28285 "option to point to the binary."
28286 msgstr ""
28287
28288 #. type: textblock
28289 #: ../test-tool/libguestfs-test-tool.pod:72
28290 msgid ""
28291 "When using an alternate qemu with libguestfs, usually you would need to "
28292 "write a qemu wrapper script (see section I<QEMU WRAPPERS> in L<guestfs(3)"
28293 ">).  libguestfs-test-tool writes a temporary qemu wrapper script when you "
28294 "use either of the I<--qemudir> or I<--qemu> options."
28295 msgstr ""
28296
28297 #. type: textblock
28298 #: ../test-tool/libguestfs-test-tool.pod:79
28299 msgid ""
28300 "libguestfs-test-tool returns I<0> if the tests completed without error, or "
28301 "I<1> if there was an error."
28302 msgstr ""
28303
28304 #. type: textblock
28305 #: ../test-tool/libguestfs-test-tool.pod:84
28306 msgid ""
28307 "For the full list of environment variables which may affect libguestfs, "
28308 "please see the L<guestfs(3)> manual page."
28309 msgstr ""
28310
28311 #. type: textblock
28312 #: ../test-tool/libguestfs-test-tool.pod:89
28313 msgid "L<guestfs(3)>, L<http://libguestfs.org/>, L<http://qemu.org/>."
28314 msgstr ""
28315
28316 #. type: textblock
28317 #: ../fuse/guestmount.pod:5
28318 msgid ""
28319 "guestmount - Mount a guest filesystem on the host using FUSE and libguestfs"
28320 msgstr ""
28321
28322 #. type: verbatim
28323 #: ../fuse/guestmount.pod:9
28324 #, no-wrap
28325 msgid ""
28326 " guestmount [--options] -a disk.img -m device [--ro] mountpoint\n"
28327 "\n"
28328 msgstr ""
28329
28330 #. type: verbatim
28331 #: ../fuse/guestmount.pod:11
28332 #, no-wrap
28333 msgid ""
28334 " guestmount [--options] -a disk.img -i [--ro] mountpoint\n"
28335 "\n"
28336 msgstr ""
28337
28338 #. type: verbatim
28339 #: ../fuse/guestmount.pod:13
28340 #, no-wrap
28341 msgid ""
28342 " guestmount [--options] -d Guest -i [--ro] mountpoint\n"
28343 "\n"
28344 msgstr ""
28345
28346 #. type: textblock
28347 #: ../fuse/guestmount.pod:17
28348 msgid ""
28349 "You must I<not> use C<guestmount> in read-write mode on live virtual "
28350 "machines.  If you do this, you risk disk corruption in the VM."
28351 msgstr ""
28352
28353 #. type: textblock
28354 #: ../fuse/guestmount.pod:22
28355 msgid ""
28356 "The guestmount program can be used to mount virtual machine filesystems and "
28357 "other disk images on the host.  It uses libguestfs for access to the guest "
28358 "filesystem, and FUSE (the \"filesystem in userspace\") to make it appear as "
28359 "a mountable device."
28360 msgstr ""
28361
28362 #. type: textblock
28363 #: ../fuse/guestmount.pod:27
28364 msgid ""
28365 "Along with other options, you have to give at least one device (I<-a> "
28366 "option) or libvirt domain (I<-d> option), and at least one mountpoint (I<-m> "
28367 "option) or use the I<-i> inspection option.  How this works is better "
28368 "explained in the L<guestfish(1)> manual page, or by looking at the examples "
28369 "below."
28370 msgstr ""
28371
28372 #. type: textblock
28373 #: ../fuse/guestmount.pod:33
28374 msgid ""
28375 "FUSE lets you mount filesystems as non-root.  The mountpoint must be owned "
28376 "by you, and the filesystem will not be visible to any other users unless you "
28377 "make certain global configuration changes to C</etc/fuse.conf>.  To unmount "
28378 "the filesystem, use the C<fusermount -u> command."
28379 msgstr ""
28380
28381 #. type: textblock
28382 #: ../fuse/guestmount.pod:41
28383 msgid ""
28384 "For a typical Windows guest which has its main filesystem on the first "
28385 "partition:"
28386 msgstr ""
28387
28388 #. type: verbatim
28389 #: ../fuse/guestmount.pod:44
28390 #, no-wrap
28391 msgid ""
28392 " guestmount -a windows.img -m /dev/sda1 --ro /mnt\n"
28393 "\n"
28394 msgstr ""
28395
28396 #. type: textblock
28397 #: ../fuse/guestmount.pod:46
28398 msgid ""
28399 "For a typical Linux guest which has a /boot filesystem on the first "
28400 "partition, and the root filesystem on a logical volume:"
28401 msgstr ""
28402
28403 #. type: verbatim
28404 #: ../fuse/guestmount.pod:49
28405 #, no-wrap
28406 msgid ""
28407 " guestmount -a linux.img -m /dev/VG/LV -m /dev/sda1:/boot --ro /mnt\n"
28408 "\n"
28409 msgstr ""
28410
28411 #. type: textblock
28412 #: ../fuse/guestmount.pod:51
28413 msgid "To get libguestfs to detect guest mountpoints for you:"
28414 msgstr ""
28415
28416 #. type: verbatim
28417 #: ../fuse/guestmount.pod:53
28418 #, no-wrap
28419 msgid ""
28420 " guestmount -a guest.img -i --ro /mnt\n"
28421 "\n"
28422 msgstr ""
28423
28424 #. type: textblock
28425 #: ../fuse/guestmount.pod:55
28426 msgid "For a libvirt guest called \"Guest\" you could do:"
28427 msgstr ""
28428
28429 #. type: verbatim
28430 #: ../fuse/guestmount.pod:57
28431 #, no-wrap
28432 msgid ""
28433 " guestmount -d Guest -i --ro /mnt\n"
28434 "\n"
28435 msgstr ""
28436
28437 #. type: textblock
28438 #: ../fuse/guestmount.pod:59
28439 msgid ""
28440 "If you don't know what filesystems are contained in a guest or disk image, "
28441 "use L<virt-filesystems(1)> first:"
28442 msgstr ""
28443
28444 #. type: verbatim
28445 #: ../fuse/guestmount.pod:62
28446 #, no-wrap
28447 msgid ""
28448 " virt-filesystems MyGuest\n"
28449 "\n"
28450 msgstr ""
28451
28452 #. type: textblock
28453 #: ../fuse/guestmount.pod:64
28454 msgid ""
28455 "If you want to trace the libguestfs calls but without excessive debugging "
28456 "information, we recommend:"
28457 msgstr ""
28458
28459 #. type: verbatim
28460 #: ../fuse/guestmount.pod:67
28461 #, no-wrap
28462 msgid ""
28463 " guestmount [...] --trace /mnt\n"
28464 "\n"
28465 msgstr ""
28466
28467 #. type: textblock
28468 #: ../fuse/guestmount.pod:69
28469 msgid "If you want to debug the program, we recommend:"
28470 msgstr ""
28471
28472 #. type: verbatim
28473 #: ../fuse/guestmount.pod:71
28474 #, no-wrap
28475 msgid ""
28476 " guestmount [...] --trace --verbose /mnt\n"
28477 "\n"
28478 msgstr ""
28479
28480 #. type: =item
28481 #: ../fuse/guestmount.pod:77
28482 msgid "B<-a image> | B<--add image>"
28483 msgstr ""
28484
28485 #. type: textblock
28486 #: ../fuse/guestmount.pod:79
28487 msgid "Add a block device or virtual machine image."
28488 msgstr ""
28489
28490 #. type: =item
28491 #: ../fuse/guestmount.pod:84
28492 msgid "B<-c URI> | B<--connect URI>"
28493 msgstr ""
28494
28495 #. type: =item
28496 #: ../fuse/guestmount.pod:90
28497 msgid "B<-d libvirt-domain> | B<--domain libvirt-domain>"
28498 msgstr ""
28499
28500 #. type: =item
28501 #: ../fuse/guestmount.pod:96
28502 msgid "B<--dir-cache-timeout N>"
28503 msgstr ""
28504
28505 #. type: textblock
28506 #: ../fuse/guestmount.pod:98
28507 msgid ""
28508 "Set the readdir cache timeout to I<N> seconds, the default being 60 "
28509 "seconds.  The readdir cache [actually, there are several semi-independent "
28510 "caches] is populated after a readdir(2) call with the stat and extended "
28511 "attributes of the files in the directory, in anticipation that they will be "
28512 "requested soon after."
28513 msgstr ""
28514
28515 #. type: textblock
28516 #: ../fuse/guestmount.pod:104
28517 msgid ""
28518 "There is also a different attribute cache implemented by FUSE (see the FUSE "
28519 "option I<-o attr_timeout>), but the FUSE cache does not anticipate future "
28520 "requests, only cache existing ones."
28521 msgstr ""
28522
28523 #. type: =item
28524 #: ../fuse/guestmount.pod:115
28525 msgid "B<--format=raw|qcow2|..> | B<--format>"
28526 msgstr ""
28527
28528 #. type: textblock
28529 #: ../fuse/guestmount.pod:122
28530 msgid ""
28531 "If you have untrusted raw-format guest disk images, you should use this "
28532 "option to specify the disk format.  This avoids a possible security problem "
28533 "with malicious guests (CVE-2010-3851).  See also L<guestfs(3)/"
28534 "guestfs_add_drive_opts>."
28535 msgstr ""
28536
28537 #. type: =item
28538 #: ../fuse/guestmount.pod:127
28539 msgid "B<--fuse-help>"
28540 msgstr ""
28541
28542 #. type: textblock
28543 #: ../fuse/guestmount.pod:129
28544 msgid "Display help on special FUSE options (see I<-o> below)."
28545 msgstr ""
28546
28547 #. type: textblock
28548 #: ../fuse/guestmount.pod:133
28549 msgid "Display brief help and exit."
28550 msgstr ""
28551
28552 #. type: =item
28553 #: ../fuse/guestmount.pod:135
28554 msgid "B<-i> | B<--inspector>"
28555 msgstr ""
28556
28557 #. type: textblock
28558 #: ../fuse/guestmount.pod:155
28559 msgid ""
28560 "Mount the named partition or logical volume on the given mountpoint B<in the "
28561 "guest> (this has nothing to do with mountpoints in the host)."
28562 msgstr ""
28563
28564 #. type: textblock
28565 #: ../fuse/guestmount.pod:158
28566 msgid ""
28567 "If the mountpoint is omitted, it defaults to C</>.  You have to mount "
28568 "something on C</>."
28569 msgstr ""
28570
28571 #. type: =item
28572 #: ../fuse/guestmount.pod:171
28573 msgid "B<-n> | B<--no-sync>"
28574 msgstr ""
28575
28576 #. type: textblock
28577 #: ../fuse/guestmount.pod:173
28578 msgid ""
28579 "By default, we attempt to sync the guest disk when the FUSE mountpoint is "
28580 "unmounted.  If you specify this option, then we don't attempt to sync the "
28581 "disk.  See the discussion of autosync in the L<guestfs(3)> manpage."
28582 msgstr ""
28583
28584 #. type: =item
28585 #: ../fuse/guestmount.pod:178
28586 msgid "B<-o option> | B<--option option>"
28587 msgstr ""
28588
28589 #. type: textblock
28590 #: ../fuse/guestmount.pod:180
28591 msgid "Pass extra options to FUSE."
28592 msgstr ""
28593
28594 #. type: textblock
28595 #: ../fuse/guestmount.pod:182
28596 msgid ""
28597 "To get a list of all the extra options supported by FUSE, use the command "
28598 "below.  Note that only the FUSE I<-o> options can be passed, and only some "
28599 "of them are a good idea."
28600 msgstr ""
28601
28602 #. type: verbatim
28603 #: ../fuse/guestmount.pod:186
28604 #, no-wrap
28605 msgid ""
28606 " guestmount --fuse-help\n"
28607 "\n"
28608 msgstr ""
28609
28610 #. type: textblock
28611 #: ../fuse/guestmount.pod:188
28612 msgid "Some potentially useful FUSE options:"
28613 msgstr ""
28614
28615 #. type: =item
28616 #: ../fuse/guestmount.pod:192
28617 msgid "B<-o allow_other>"
28618 msgstr ""
28619
28620 #. type: textblock
28621 #: ../fuse/guestmount.pod:194
28622 msgid "Allow other users to see the filesystem."
28623 msgstr ""
28624
28625 #. type: =item
28626 #: ../fuse/guestmount.pod:196
28627 msgid "B<-o attr_timeout=N>"
28628 msgstr ""
28629
28630 #. type: textblock
28631 #: ../fuse/guestmount.pod:198
28632 msgid "Enable attribute caching by FUSE, and set the timeout to I<N> seconds."
28633 msgstr ""
28634
28635 #. type: =item
28636 #: ../fuse/guestmount.pod:200
28637 msgid "B<-o kernel_cache>"
28638 msgstr ""
28639
28640 #. type: textblock
28641 #: ../fuse/guestmount.pod:202
28642 msgid ""
28643 "Allow the kernel to cache files (reduces the number of reads that have to go "
28644 "through the L<guestfs(3)> API).  This is generally a good idea if you can "
28645 "afford the extra memory usage."
28646 msgstr ""
28647
28648 #. type: =item
28649 #: ../fuse/guestmount.pod:206
28650 msgid "B<-o uid=N> B<-o gid=N>"
28651 msgstr ""
28652
28653 #. type: textblock
28654 #: ../fuse/guestmount.pod:208
28655 msgid ""
28656 "Use these options to map all UIDs and GIDs inside the guest filesystem to "
28657 "the chosen values."
28658 msgstr ""
28659
28660 #. type: =item
28661 #: ../fuse/guestmount.pod:213
28662 msgid "B<-r> | B<--ro>"
28663 msgstr ""
28664
28665 #. type: textblock
28666 #: ../fuse/guestmount.pod:215
28667 msgid ""
28668 "Add devices and mount everything read-only.  Also disallow writes and make "
28669 "the disk appear read-only to FUSE."
28670 msgstr ""
28671
28672 #. type: textblock
28673 #: ../fuse/guestmount.pod:218
28674 msgid ""
28675 "This is highly recommended if you are not going to edit the guest disk.  If "
28676 "the guest is running and this option is I<not> supplied, then there is a "
28677 "strong risk of disk corruption in the guest.  We try to prevent this from "
28678 "happening, but it is not always possible."
28679 msgstr ""
28680
28681 #. type: textblock
28682 #: ../fuse/guestmount.pod:223
28683 msgid "See also L<guestfish(1)/OPENING DISKS FOR READ AND WRITE>."
28684 msgstr ""
28685
28686 #. type: textblock
28687 #: ../fuse/guestmount.pod:227
28688 msgid "Enable SELinux support for the guest."
28689 msgstr ""
28690
28691 #. type: =item
28692 #: ../fuse/guestmount.pod:229
28693 msgid "B<-v> | B<--verbose>"
28694 msgstr ""
28695
28696 #. type: textblock
28697 #: ../fuse/guestmount.pod:231
28698 msgid "Enable verbose messages from underlying libguestfs."
28699 msgstr ""
28700
28701 #. type: =item
28702 #: ../fuse/guestmount.pod:233
28703 msgid "B<-V> | B<--version>"
28704 msgstr ""
28705
28706 #. type: textblock
28707 #: ../fuse/guestmount.pod:235
28708 msgid "Display the program version and exit."
28709 msgstr ""
28710
28711 #. type: =item
28712 #: ../fuse/guestmount.pod:237
28713 msgid "B<-w> | B<--rw>"
28714 msgstr ""
28715
28716 #. type: textblock
28717 #: ../fuse/guestmount.pod:242 ../fuse/guestmount.pod:263
28718 msgid "See L<guestfish(1)/OPENING DISKS FOR READ AND WRITE>."
28719 msgstr ""
28720
28721 #. type: =item
28722 #: ../fuse/guestmount.pod:244
28723 msgid "B<-x> | B<--trace>"
28724 msgstr ""
28725
28726 #. type: textblock
28727 #: ../fuse/guestmount.pod:246
28728 msgid "Trace libguestfs calls and entry into each FUSE function."
28729 msgstr ""
28730
28731 #. type: textblock
28732 #: ../fuse/guestmount.pod:248
28733 msgid "This also stops the daemon from forking into the background."
28734 msgstr ""
28735
28736 #. type: textblock
28737 #: ../fuse/guestmount.pod:269
28738 msgid ""
28739 "L<guestfish(1)>, L<virt-inspector(1)>, L<virt-cat(1)>, L<virt-edit(1)>, "
28740 "L<virt-tar(1)>, L<guestfs(3)>, L<http://libguestfs.org/>, L<http://fuse.sf."
28741 "net/>."
28742 msgstr ""
28743
28744 #. type: textblock
28745 #: ../fuse/guestmount.pod:284
28746 msgid "Copyright (C) 2009-2010 Red Hat Inc.  L<http://libguestfs.org/>"
28747 msgstr ""
28748
28749 #. type: textblock
28750 #: ../tools/virt-edit.pl:34
28751 msgid "virt-edit - Edit a file in a virtual machine"
28752 msgstr ""
28753
28754 #. type: verbatim
28755 #: ../tools/virt-edit.pl:38
28756 #, no-wrap
28757 msgid ""
28758 " virt-edit [--options] domname file\n"
28759 "\n"
28760 msgstr ""
28761
28762 #. type: verbatim
28763 #: ../tools/virt-edit.pl:40
28764 #, no-wrap
28765 msgid ""
28766 " virt-edit [--options] disk.img [disk.img ...] file\n"
28767 "\n"
28768 msgstr ""
28769
28770 #. type: verbatim
28771 #: ../tools/virt-edit.pl:42
28772 #, no-wrap
28773 msgid ""
28774 " virt-edit [domname|disk.img] file -e 'expr'\n"
28775 "\n"
28776 msgstr ""
28777
28778 #. type: textblock
28779 #: ../tools/virt-edit.pl:46
28780 msgid ""
28781 "You must I<not> use C<virt-edit> on live virtual machines.  If you do this, "
28782 "you risk disk corruption in the VM.  C<virt-edit> tries to stop you from "
28783 "doing this, but doesn't catch all cases."
28784 msgstr ""
28785
28786 #. type: textblock
28787 #: ../tools/virt-edit.pl:52
28788 msgid ""
28789 "C<virt-edit> is a command line tool to edit C<file> where C<file> exists in "
28790 "the named virtual machine (or disk image)."
28791 msgstr ""
28792
28793 #. type: textblock
28794 #: ../tools/virt-edit.pl:55
28795 msgid "If you want to just view a file, use L<virt-cat(1)>."
28796 msgstr ""
28797
28798 #. type: textblock
28799 #: ../tools/virt-edit.pl:57
28800 msgid ""
28801 "For more complex cases you should look at the L<guestfish(1)> tool (see L</"
28802 "USING GUESTFISH> below)."
28803 msgstr ""
28804
28805 #. type: textblock
28806 #: ../tools/virt-edit.pl:60
28807 msgid ""
28808 "C<virt-edit> cannot be used to create a new file, nor to edit multiple "
28809 "files.  L<guestfish(1)> can do that and much more."
28810 msgstr ""
28811
28812 #. type: textblock
28813 #: ../tools/virt-edit.pl:65
28814 msgid "Edit the named files interactively:"
28815 msgstr ""
28816
28817 #. type: verbatim
28818 #: ../tools/virt-edit.pl:67
28819 #, no-wrap
28820 msgid ""
28821 " virt-edit mydomain /boot/grub/grub.conf\n"
28822 "\n"
28823 msgstr ""
28824
28825 #. type: verbatim
28826 #: ../tools/virt-edit.pl:69
28827 #, no-wrap
28828 msgid ""
28829 " virt-edit mydomain /etc/passwd\n"
28830 "\n"
28831 msgstr ""
28832
28833 #. type: textblock
28834 #: ../tools/virt-edit.pl:71
28835 msgid "For Windows guests, some Windows paths are understood:"
28836 msgstr ""
28837
28838 #. type: verbatim
28839 #: ../tools/virt-edit.pl:73
28840 #, no-wrap
28841 msgid ""
28842 " virt-edit mywindomain 'c:\\autoexec.bat'\n"
28843 "\n"
28844 msgstr ""
28845
28846 #. type: textblock
28847 #: ../tools/virt-edit.pl:75
28848 msgid ""
28849 "You can also edit files non-interactively (see L</NON-INTERACTIVE EDITING> "
28850 "below).  To change the init default level to 5:"
28851 msgstr ""
28852
28853 #. type: verbatim
28854 #: ../tools/virt-edit.pl:79
28855 #, no-wrap
28856 msgid ""
28857 " virt-edit mydomain /etc/inittab -e 's/^id:.*/id:5:initdefault:/'\n"
28858 "\n"
28859 msgstr ""
28860
28861 #. type: textblock
28862 #: ../tools/virt-edit.pl:91 ../tools/virt-win-reg.pl:106
28863 #: ../tools/virt-list-filesystems.pl:63 ../tools/virt-tar.pl:113
28864 #: ../tools/virt-make-fs.pl:163 ../tools/virt-list-partitions.pl:64
28865 msgid "Display brief help."
28866 msgstr ""
28867
28868 #. type: textblock
28869 #: ../tools/virt-edit.pl:99 ../tools/virt-win-reg.pl:114
28870 #: ../tools/virt-list-filesystems.pl:71 ../tools/virt-tar.pl:121
28871 #: ../tools/virt-make-fs.pl:171 ../tools/virt-list-partitions.pl:72
28872 msgid "Display version number and exit."
28873 msgstr ""
28874
28875 #. type: =item
28876 #: ../tools/virt-edit.pl:105
28877 msgid "B<--backup extension> | B<-b extension>"
28878 msgstr ""
28879
28880 #. type: textblock
28881 #: ../tools/virt-edit.pl:107
28882 msgid ""
28883 "Create a backup of the original file I<in the guest disk image>.  The backup "
28884 "has the original filename with C<extension> added."
28885 msgstr ""
28886
28887 #. type: textblock
28888 #: ../tools/virt-edit.pl:110
28889 msgid ""
28890 "Usually the first character of C<extension> would be a dot C<.> so you would "
28891 "write:"
28892 msgstr ""
28893
28894 #. type: verbatim
28895 #: ../tools/virt-edit.pl:113
28896 #, no-wrap
28897 msgid ""
28898 " virt-edit -b .orig [etc]\n"
28899 "\n"
28900 msgstr ""
28901
28902 #. type: textblock
28903 #: ../tools/virt-edit.pl:115
28904 msgid "By default, no backup file is made."
28905 msgstr ""
28906
28907 #. type: =item
28908 #: ../tools/virt-edit.pl:121 ../tools/virt-win-reg.pl:128
28909 #: ../tools/virt-list-filesystems.pl:77 ../tools/virt-tar.pl:127
28910 #: ../tools/virt-list-partitions.pl:78
28911 msgid "B<--connect URI> | B<-c URI>"
28912 msgstr ""
28913
28914 #. type: textblock
28915 #: ../tools/virt-edit.pl:123 ../tools/virt-win-reg.pl:130
28916 #: ../tools/virt-list-filesystems.pl:79 ../tools/virt-tar.pl:129
28917 #: ../tools/virt-list-partitions.pl:80
28918 msgid ""
28919 "If using libvirt, connect to the given I<URI>.  If omitted, then we connect "
28920 "to the default libvirt hypervisor."
28921 msgstr ""
28922
28923 #. type: textblock
28924 #: ../tools/virt-edit.pl:126 ../tools/virt-win-reg.pl:133
28925 #: ../tools/virt-list-filesystems.pl:82 ../tools/virt-tar.pl:132
28926 #: ../tools/virt-list-partitions.pl:83
28927 msgid ""
28928 "If you specify guest block devices directly, then libvirt is not used at all."
28929 msgstr ""
28930
28931 #. type: =item
28932 #: ../tools/virt-edit.pl:133 ../tools/virt-win-reg.pl:140
28933 #: ../tools/virt-list-filesystems.pl:89 ../tools/virt-tar.pl:139
28934 #: ../tools/virt-list-partitions.pl:90
28935 msgid "B<--format> raw"
28936 msgstr ""
28937
28938 #. type: textblock
28939 #: ../tools/virt-edit.pl:135 ../tools/virt-win-reg.pl:142
28940 #: ../tools/virt-list-filesystems.pl:91 ../tools/virt-tar.pl:141
28941 #: ../tools/virt-list-partitions.pl:92
28942 msgid ""
28943 "Specify the format of disk images given on the command line.  If this is "
28944 "omitted then the format is autodetected from the content of the disk image."
28945 msgstr ""
28946
28947 #. type: textblock
28948 #: ../tools/virt-edit.pl:139 ../tools/virt-win-reg.pl:146
28949 #: ../tools/virt-list-filesystems.pl:95 ../tools/virt-tar.pl:145
28950 #: ../tools/virt-list-partitions.pl:96
28951 msgid ""
28952 "If disk images are requested from libvirt, then this program asks libvirt "
28953 "for this information.  In this case, the value of the format parameter is "
28954 "ignored."
28955 msgstr ""
28956
28957 #. type: textblock
28958 #: ../tools/virt-edit.pl:143 ../tools/virt-win-reg.pl:150
28959 #: ../tools/virt-list-filesystems.pl:99 ../tools/virt-tar.pl:149
28960 #: ../tools/virt-list-partitions.pl:100
28961 msgid ""
28962 "If working with untrusted raw-format guest disk images, you should ensure "
28963 "the format is always specified."
28964 msgstr ""
28965
28966 #. type: =item
28967 #: ../tools/virt-edit.pl:150
28968 msgid "B<--expr EXPR> | B<-e EXPR>"
28969 msgstr ""
28970
28971 #. type: textblock
28972 #: ../tools/virt-edit.pl:152
28973 msgid ""
28974 "Instead of launching the external editor, non-interactively apply the Perl "
28975 "expression C<EXPR> to each line in the file.  See L</NON-INTERACTIVE "
28976 "EDITING> below."
28977 msgstr ""
28978
28979 #. type: textblock
28980 #: ../tools/virt-edit.pl:156
28981 msgid ""
28982 "Be careful to properly quote the expression to prevent it from being altered "
28983 "by the shell."
28984 msgstr ""
28985
28986 #. type: =head1
28987 #: ../tools/virt-edit.pl:280
28988 msgid "NON-INTERACTIVE EDITING"
28989 msgstr ""
28990
28991 #. type: textblock
28992 #: ../tools/virt-edit.pl:282
28993 msgid ""
28994 "C<virt-edit> normally calls out to C<$EDITOR> (or vi) so the system "
28995 "administrator can interactively edit the file."
28996 msgstr ""
28997
28998 #. type: textblock
28999 #: ../tools/virt-edit.pl:285
29000 msgid ""
29001 "There are two ways also to use C<virt-edit> from scripts in order to make "
29002 "automated edits to files.  (Note that although you I<can> use C<virt-edit> "
29003 "like this, it's less error-prone to write scripts directly using the "
29004 "libguestfs API and Augeas for configuration file editing.)"
29005 msgstr ""
29006
29007 #. type: textblock
29008 #: ../tools/virt-edit.pl:291
29009 msgid ""
29010 "The first method is to temporarily set C<$EDITOR> to any script or program "
29011 "you want to run.  The script is invoked as C<$EDITOR tmpfile> and it should "
29012 "update C<tmpfile> in place however it likes."
29013 msgstr ""
29014
29015 #. type: textblock
29016 #: ../tools/virt-edit.pl:295
29017 msgid ""
29018 "The second method is to use the C<-e> parameter of C<virt-edit> to run a "
29019 "short Perl snippet in the style of L<sed(1)>.  For example to replace all "
29020 "instances of C<foo> with C<bar> in a file:"
29021 msgstr ""
29022
29023 #. type: verbatim
29024 #: ../tools/virt-edit.pl:299
29025 #, no-wrap
29026 msgid ""
29027 " virt-edit domname filename -e 's/foo/bar/'\n"
29028 "\n"
29029 msgstr ""
29030
29031 #. type: textblock
29032 #: ../tools/virt-edit.pl:301
29033 msgid ""
29034 "The full power of Perl regular expressions can be used (see L<perlre(1)>).  "
29035 "For example to delete root's password you could do:"
29036 msgstr ""
29037
29038 #. type: verbatim
29039 #: ../tools/virt-edit.pl:304
29040 #, no-wrap
29041 msgid ""
29042 " virt-edit domname /etc/passwd -e 's/^root:.*?:/root::/'\n"
29043 "\n"
29044 msgstr ""
29045
29046 #. type: textblock
29047 #: ../tools/virt-edit.pl:306
29048 msgid ""
29049 "What really happens is that the snippet is evaluated as a Perl expression "
29050 "for each line of the file.  The line, including the final C<\\n>, is passed "
29051 "in C<$_> and the expression should update C<$_> or leave it unchanged."
29052 msgstr ""
29053
29054 #. type: textblock
29055 #: ../tools/virt-edit.pl:311
29056 msgid ""
29057 "To delete a line, set C<$_> to the empty string.  For example, to delete the "
29058 "C<apache> user account from the password file you can do:"
29059 msgstr ""
29060
29061 #. type: verbatim
29062 #: ../tools/virt-edit.pl:314
29063 #, no-wrap
29064 msgid ""
29065 " virt-edit mydomain /etc/passwd -e '$_ = \"\" if /^apache:/'\n"
29066 "\n"
29067 msgstr ""
29068
29069 #. type: textblock
29070 #: ../tools/virt-edit.pl:316
29071 msgid ""
29072 "To insert a line, prepend or append it to C<$_>.  However appending lines to "
29073 "the end of the file is rather difficult this way since there is no concept "
29074 "of \"last line of the file\" - your expression just doesn't get called "
29075 "again.  You might want to use the first method (setting C<$EDITOR>) if you "
29076 "want to do this."
29077 msgstr ""
29078
29079 #. type: textblock
29080 #: ../tools/virt-edit.pl:322
29081 msgid ""
29082 "The variable C<$lineno> contains the current line number.  As is "
29083 "traditional, the first line in the file is number C<1>."
29084 msgstr ""
29085
29086 #. type: textblock
29087 #: ../tools/virt-edit.pl:325
29088 msgid ""
29089 "The return value from the expression is ignored, but the expression may call "
29090 "C<die> in order to abort the whole program, leaving the original file "
29091 "untouched."
29092 msgstr ""
29093
29094 #. type: textblock
29095 #: ../tools/virt-edit.pl:329
29096 msgid ""
29097 "Remember when matching the end of a line that C<$_> may contain the final C<"
29098 "\\n>, or (for DOS files) C<\\r\\n>, or if the file does not end with a "
29099 "newline then neither of these.  Thus to match or substitute some text at the "
29100 "end of a line, use this regular expression:"
29101 msgstr ""
29102
29103 #. type: verbatim
29104 #: ../tools/virt-edit.pl:334
29105 #, no-wrap
29106 msgid ""
29107 " /some text(\\r?\\n)?$/\n"
29108 "\n"
29109 msgstr ""
29110
29111 #. type: textblock
29112 #: ../tools/virt-edit.pl:336
29113 msgid ""
29114 "Alternately, use the perl C<chomp> function, being careful not to chomp C<"
29115 "$_> itself (since that would remove all newlines from the file):"
29116 msgstr ""
29117
29118 #. type: verbatim
29119 #: ../tools/virt-edit.pl:340
29120 #, no-wrap
29121 msgid ""
29122 " my $m = $_; chomp $m; $m =~ /some text$/\n"
29123 "\n"
29124 msgstr ""
29125
29126 #. type: textblock
29127 #: ../tools/virt-edit.pl:344
29128 msgid ""
29129 "C<virt-edit> has a limited ability to understand Windows drive letters and "
29130 "paths (eg. C<E:\\foo\\bar.txt>)."
29131 msgstr ""
29132
29133 #. type: textblock
29134 #: ../tools/virt-edit.pl:347
29135 msgid "If and only if the guest is running Windows then:"
29136 msgstr ""
29137
29138 #. type: textblock
29139 #: ../tools/virt-edit.pl:353
29140 msgid ""
29141 "Drive letter prefixes like C<C:> are resolved against the Windows Registry "
29142 "to the correct filesystem."
29143 msgstr ""
29144
29145 #. type: textblock
29146 #: ../tools/virt-edit.pl:358
29147 msgid ""
29148 "Any backslash (C<\\>) characters in the path are replaced with forward "
29149 "slashes so that libguestfs can process it."
29150 msgstr ""
29151
29152 #. type: textblock
29153 #: ../tools/virt-edit.pl:363
29154 msgid ""
29155 "The path is resolved case insensitively to locate the file that should be "
29156 "edited."
29157 msgstr ""
29158
29159 #. type: textblock
29160 #: ../tools/virt-edit.pl:368
29161 msgid "There are some known shortcomings:"
29162 msgstr ""
29163
29164 #. type: textblock
29165 #: ../tools/virt-edit.pl:374
29166 msgid "Some NTFS symbolic links may not be followed correctly."
29167 msgstr ""
29168
29169 #. type: textblock
29170 #: ../tools/virt-edit.pl:378
29171 msgid "NTFS junction points that cross filesystems are not followed."
29172 msgstr ""
29173
29174 #. type: =head1
29175 #: ../tools/virt-edit.pl:435
29176 msgid "USING GUESTFISH"
29177 msgstr ""
29178
29179 #. type: textblock
29180 #: ../tools/virt-edit.pl:437
29181 msgid ""
29182 "L<guestfish(1)> is a more powerful, lower level tool which you can use when "
29183 "C<virt-edit> doesn't work."
29184 msgstr ""
29185
29186 #. type: textblock
29187 #: ../tools/virt-edit.pl:440
29188 msgid "Using C<virt-edit> is approximately equivalent to doing:"
29189 msgstr ""
29190
29191 #. type: verbatim
29192 #: ../tools/virt-edit.pl:442
29193 #, no-wrap
29194 msgid ""
29195 " guestfish --rw -i -d domname edit /file\n"
29196 "\n"
29197 msgstr ""
29198
29199 #. type: textblock
29200 #: ../tools/virt-edit.pl:444
29201 msgid ""
29202 "where C<domname> is the name of the libvirt guest, and C</file> is the full "
29203 "path to the file."
29204 msgstr ""
29205
29206 #. type: textblock
29207 #: ../tools/virt-edit.pl:447
29208 msgid ""
29209 "The command above uses libguestfs's guest inspection feature and so does not "
29210 "work on guests that libguestfs cannot inspect, or on things like arbitrary "
29211 "disk images that don't contain guests.  To edit a file on a disk image "
29212 "directly, use:"
29213 msgstr ""
29214
29215 #. type: verbatim
29216 #: ../tools/virt-edit.pl:452
29217 #, no-wrap
29218 msgid ""
29219 " guestfish --rw -a disk.img -m /dev/sda1 edit /file\n"
29220 "\n"
29221 msgstr ""
29222
29223 #. type: textblock
29224 #: ../tools/virt-edit.pl:454
29225 msgid ""
29226 "where C<disk.img> is the disk image, C</dev/sda1> is the filesystem within "
29227 "the disk image to edit, and C</file> is the full path to the file."
29228 msgstr ""
29229
29230 #. type: textblock
29231 #: ../tools/virt-edit.pl:458
29232 msgid ""
29233 "C<virt-edit> cannot create new files.  Use the guestfish commands C<touch>, "
29234 "C<write> or C<upload> instead:"
29235 msgstr ""
29236
29237 #. type: verbatim
29238 #: ../tools/virt-edit.pl:461
29239 #, no-wrap
29240 msgid ""
29241 " guestfish --rw -i -d domname touch /newfile\n"
29242 "\n"
29243 msgstr ""
29244
29245 #. type: verbatim
29246 #: ../tools/virt-edit.pl:463
29247 #, no-wrap
29248 msgid ""
29249 " guestfish --rw -i -d domname write /newfile \"new content\"\n"
29250 "\n"
29251 msgstr ""
29252
29253 #. type: verbatim
29254 #: ../tools/virt-edit.pl:465
29255 #, no-wrap
29256 msgid ""
29257 " guestfish --rw -i -d domname upload localfile /newfile\n"
29258 "\n"
29259 msgstr ""
29260
29261 #. type: textblock
29262 #: ../tools/virt-edit.pl:467
29263 msgid ""
29264 "C<virt-edit> cannot edit multiple files, but guestfish can do it like this:"
29265 msgstr ""
29266
29267 #. type: verbatim
29268 #: ../tools/virt-edit.pl:470
29269 #, no-wrap
29270 msgid ""
29271 " guestfish --rw -i -d domname edit /file1 : edit /file2\n"
29272 "\n"
29273 msgstr ""
29274
29275 #. type: =item
29276 #: ../tools/virt-edit.pl:480
29277 msgid "C<EDITOR>"
29278 msgstr ""
29279
29280 #. type: textblock
29281 #: ../tools/virt-edit.pl:482
29282 msgid ""
29283 "If set, this string is used as the editor.  It may contain arguments, eg. C<"
29284 "\"emacs -nw\">"
29285 msgstr ""
29286
29287 #. type: textblock
29288 #: ../tools/virt-edit.pl:485
29289 msgid "If not set, C<vi> is used."
29290 msgstr ""
29291
29292 #. type: =head1
29293 #: ../tools/virt-edit.pl:489 ../tools/virt-win-reg.pl:559
29294 #: ../tools/virt-list-filesystems.pl:182 ../tools/virt-tar.pl:279
29295 #: ../tools/virt-make-fs.pl:532 ../tools/virt-list-partitions.pl:250
29296 msgid "SHELL QUOTING"
29297 msgstr ""
29298
29299 #. type: textblock
29300 #: ../tools/virt-edit.pl:491 ../tools/virt-win-reg.pl:567
29301 #: ../tools/virt-list-filesystems.pl:184 ../tools/virt-tar.pl:281
29302 #: ../tools/virt-make-fs.pl:534 ../tools/virt-list-partitions.pl:252
29303 msgid ""
29304 "Libvirt guest names can contain arbitrary characters, some of which have "
29305 "meaning to the shell such as C<#> and space.  You may need to quote or "
29306 "escape these characters on the command line.  See the shell manual page L<sh"
29307 "(1)> for details."
29308 msgstr ""
29309
29310 #. type: textblock
29311 #: ../tools/virt-edit.pl:498
29312 msgid ""
29313 "L<guestfs(3)>, L<guestfish(1)>, L<virt-cat(1)>, L<virt-copy-in(1)>, L<virt-"
29314 "tar-in(1)>, L<Sys::Guestfs(3)>, L<Sys::Guestfs::Lib(3)>, L<Sys::Virt(3)>, "
29315 "L<http://libguestfs.org/>, L<perl(1)>, L<perlre(1)>."
29316 msgstr ""
29317
29318 #. type: =head1
29319 #: ../tools/virt-edit.pl:510 ../tools/virt-win-reg.pl:598
29320 #: ../tools/virt-list-filesystems.pl:202 ../tools/virt-tar.pl:301
29321 #: ../tools/virt-make-fs.pl:564 ../tools/virt-list-partitions.pl:269
29322 msgid "AUTHOR"
29323 msgstr ""
29324
29325 #. type: textblock
29326 #: ../tools/virt-edit.pl:512 ../tools/virt-win-reg.pl:600
29327 #: ../tools/virt-list-filesystems.pl:204 ../tools/virt-tar.pl:303
29328 #: ../tools/virt-make-fs.pl:566 ../tools/virt-list-partitions.pl:271
29329 msgid "Richard W.M. Jones L<http://people.redhat.com/~rjones/>"
29330 msgstr ""
29331
29332 #. type: textblock
29333 #: ../tools/virt-edit.pl:516
29334 msgid "Copyright (C) 2009-2011 Red Hat Inc."
29335 msgstr ""
29336
29337 #. type: textblock
29338 #: ../tools/virt-win-reg.pl:37
29339 msgid ""
29340 "virt-win-reg - Export and merge Windows Registry entries from a Windows guest"
29341 msgstr ""
29342
29343 #. type: verbatim
29344 #: ../tools/virt-win-reg.pl:41
29345 #, no-wrap
29346 msgid ""
29347 " virt-win-reg domname 'HKLM\\Path\\To\\Subkey'\n"
29348 "\n"
29349 msgstr ""
29350
29351 #. type: verbatim
29352 #: ../tools/virt-win-reg.pl:43
29353 #, no-wrap
29354 msgid ""
29355 " virt-win-reg domname 'HKLM\\Path\\To\\Subkey' name\n"
29356 "\n"
29357 msgstr ""
29358
29359 #. type: verbatim
29360 #: ../tools/virt-win-reg.pl:45
29361 #, no-wrap
29362 msgid ""
29363 " virt-win-reg domname 'HKLM\\Path\\To\\Subkey' @\n"
29364 "\n"
29365 msgstr ""
29366
29367 #. type: verbatim
29368 #: ../tools/virt-win-reg.pl:47
29369 #, no-wrap
29370 msgid ""
29371 " virt-win-reg --merge domname [input.reg ...]\n"
29372 "\n"
29373 msgstr ""
29374
29375 #. type: verbatim
29376 #: ../tools/virt-win-reg.pl:49
29377 #, no-wrap
29378 msgid ""
29379 " virt-win-reg [--options] disk.img ... # instead of domname\n"
29380 "\n"
29381 msgstr ""
29382
29383 #. type: textblock
29384 #: ../tools/virt-win-reg.pl:53
29385 msgid ""
29386 "You must I<not> use C<virt-win-reg> with the C<--merge> option on live "
29387 "virtual machines.  If you do this, you I<will> get irreversible disk "
29388 "corruption in the VM.  C<virt-win-reg> tries to stop you from doing this, "
29389 "but doesn't catch all cases."
29390 msgstr ""
29391
29392 #. type: textblock
29393 #: ../tools/virt-win-reg.pl:58
29394 msgid ""
29395 "Modifying the Windows Registry is an inherently risky operation.  The format "
29396 "is deliberately obscure and undocumented, and Registry changes can leave the "
29397 "system unbootable.  Therefore when using the C<--merge> option, make sure "
29398 "you have a reliable backup first."
29399 msgstr ""
29400
29401 #. type: textblock
29402 #: ../tools/virt-win-reg.pl:65
29403 msgid ""
29404 "This program can export and merge Windows Registry entries from a Windows "
29405 "guest."
29406 msgstr ""
29407
29408 #. type: textblock
29409 #: ../tools/virt-win-reg.pl:68
29410 msgid ""
29411 "The first parameter is the libvirt guest name or the raw disk image of a "
29412 "Windows guest."
29413 msgstr ""
29414
29415 #. type: textblock
29416 #: ../tools/virt-win-reg.pl:71
29417 msgid ""
29418 "If C<--merge> is I<not> specified, then the chosen registry key is displayed/"
29419 "exported (recursively).  For example:"
29420 msgstr ""
29421
29422 #. type: verbatim
29423 #: ../tools/virt-win-reg.pl:74
29424 #, no-wrap
29425 msgid ""
29426 " $ virt-win-reg Windows7 'HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft'\n"
29427 "\n"
29428 msgstr ""
29429
29430 #. type: textblock
29431 #: ../tools/virt-win-reg.pl:76
29432 msgid ""
29433 "You can also display single values from within registry keys, for example:"
29434 msgstr ""
29435
29436 #. type: verbatim
29437 #: ../tools/virt-win-reg.pl:79
29438 #, no-wrap
29439 msgid ""
29440 " $ cvkey='HKLM\\SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion'\n"
29441 " $ virt-win-reg Windows7 $cvkey ProductName\n"
29442 " Windows 7 Enterprise\n"
29443 "\n"
29444 msgstr ""
29445
29446 #. type: textblock
29447 #: ../tools/virt-win-reg.pl:83
29448 msgid ""
29449 "With C<--merge>, you can merge a textual regedit file into the Windows "
29450 "Registry:"
29451 msgstr ""
29452
29453 #. type: verbatim
29454 #: ../tools/virt-win-reg.pl:86
29455 #, no-wrap
29456 msgid ""
29457 " $ virt-win-reg --merge Windows7 changes.reg\n"
29458 "\n"
29459 msgstr ""
29460
29461 #. type: =head1
29462 #: ../tools/virt-win-reg.pl:88 ../tools/virt-tar.pl:45
29463 msgid "NOTE"
29464 msgstr ""
29465
29466 #. type: textblock
29467 #: ../tools/virt-win-reg.pl:90
29468 msgid ""
29469 "This program is only meant for simple access to the registry.  If you want "
29470 "to do complicated things with the registry, we suggest you download the "
29471 "Registry hive files from the guest using L<libguestfs(3)> or L<guestfish(1)> "
29472 "and access them locally, eg. using L<hivex(3)>, L<hivexsh(1)> or "
29473 "L<hivexregedit(1)>."
29474 msgstr ""
29475
29476 #. type: =item
29477 #: ../tools/virt-win-reg.pl:120 ../tools/virt-make-fs.pl:177
29478 msgid "B<--debug>"
29479 msgstr ""
29480
29481 #. type: textblock
29482 #: ../tools/virt-win-reg.pl:122
29483 msgid "Enable debugging messages."
29484 msgstr ""
29485
29486 #. type: =item
29487 #: ../tools/virt-win-reg.pl:157
29488 msgid "B<--merge>"
29489 msgstr ""
29490
29491 #. type: textblock
29492 #: ../tools/virt-win-reg.pl:159
29493 msgid ""
29494 "In merge mode, this merges a textual regedit file into the Windows Registry "
29495 "of the virtual machine.  If this flag is I<not> given then virt-win-reg "
29496 "displays or exports Registry entries instead."
29497 msgstr ""
29498
29499 #. type: textblock
29500 #: ../tools/virt-win-reg.pl:163
29501 msgid ""
29502 "Note that C<--merge> is I<unsafe> to use on live virtual machines, and will "
29503 "result in disk corruption.  However exporting (without this flag)  is always "
29504 "safe."
29505 msgstr ""
29506
29507 #. type: =item
29508 #: ../tools/virt-win-reg.pl:171
29509 msgid "B<--encoding> UTF-16LE|ASCII"
29510 msgstr ""
29511
29512 #. type: textblock
29513 #: ../tools/virt-win-reg.pl:173
29514 msgid ""
29515 "When merging (only), you may need to specify the encoding for strings to be "
29516 "used in the hive file.  This is explained in detail in L<Win::Hivex::Regedit"
29517 "(3)/ENCODING STRINGS>."
29518 msgstr ""
29519
29520 #. type: textblock
29521 #: ../tools/virt-win-reg.pl:177
29522 msgid ""
29523 "The default is to use UTF-16LE, which should work with recent versions of "
29524 "Windows."
29525 msgstr ""
29526
29527 #. type: =head1
29528 #: ../tools/virt-win-reg.pl:402
29529 msgid "SUPPORTED SYSTEMS"
29530 msgstr ""
29531
29532 #. type: textblock
29533 #: ../tools/virt-win-reg.pl:404
29534 msgid ""
29535 "The program currently supports Windows NT-derived guests starting with "
29536 "Windows XP through to at least Windows 7."
29537 msgstr ""
29538
29539 #. type: textblock
29540 #: ../tools/virt-win-reg.pl:407
29541 msgid ""
29542 "Registry support is done for C<HKEY_LOCAL_MACHINE\\SAM>, C<HKEY_LOCAL_MACHINE"
29543 "\\SECURITY>, C<HKEY_LOCAL_MACHINE\\SOFTWARE>, C<HKEY_LOCAL_MACHINE\\SYSTEM> "
29544 "and C<HKEY_USERS\\.DEFAULT>."
29545 msgstr ""
29546
29547 #. type: textblock
29548 #: ../tools/virt-win-reg.pl:411
29549 msgid ""
29550 "You can use C<HKLM> as a shorthand for C<HKEY_LOCAL_MACHINE>, and C<HKU> for "
29551 "C<HKEY_USERS>."
29552 msgstr ""
29553
29554 #. type: textblock
29555 #: ../tools/virt-win-reg.pl:414
29556 msgid ""
29557 "C<HKEY_USERS\\$SID> and C<HKEY_CURRENT_USER> are B<not> supported at this "
29558 "time."
29559 msgstr ""
29560
29561 #. type: =head1
29562 #: ../tools/virt-win-reg.pl:417
29563 msgid "ENCODING"
29564 msgstr ""
29565
29566 #. type: textblock
29567 #: ../tools/virt-win-reg.pl:419
29568 msgid ""
29569 "C<virt-win-reg> expects that regedit files have already been reencoded in "
29570 "the local encoding.  Usually on Linux hosts, this means UTF-8 with Unix-"
29571 "style line endings.  Since Windows regedit files are often in UTF-16LE with "
29572 "Windows-style line endings, you may need to reencode the whole file before "
29573 "or after processing."
29574 msgstr ""
29575
29576 #. type: textblock
29577 #: ../tools/virt-win-reg.pl:425
29578 msgid ""
29579 "To reencode a file from Windows format to Linux (before processing it with "
29580 "the C<--merge> option), you would do something like this:"
29581 msgstr ""
29582
29583 #. type: verbatim
29584 #: ../tools/virt-win-reg.pl:428
29585 #, no-wrap
29586 msgid ""
29587 " iconv -f utf-16le -t utf-8 < win.reg | dos2unix > linux.reg\n"
29588 "\n"
29589 msgstr ""
29590
29591 #. type: textblock
29592 #: ../tools/virt-win-reg.pl:430
29593 msgid ""
29594 "To go in the opposite direction, after exporting and before sending the file "
29595 "to a Windows user, do something like this:"
29596 msgstr ""
29597
29598 #. type: verbatim
29599 #: ../tools/virt-win-reg.pl:433
29600 #, no-wrap
29601 msgid ""
29602 " unix2dos linux.reg | iconv -f utf-8 -t utf-16le > win.reg\n"
29603 "\n"
29604 msgstr ""
29605
29606 #. type: textblock
29607 #: ../tools/virt-win-reg.pl:435
29608 msgid "For more information about encoding, see L<Win::Hivex::Regedit(3)>."
29609 msgstr ""
29610
29611 #. type: textblock
29612 #: ../tools/virt-win-reg.pl:437
29613 msgid ""
29614 "If you are unsure about the current encoding, use the L<file(1)> command.  "
29615 "Recent versions of Windows regedit.exe produce a UTF-16LE file with Windows-"
29616 "style (CRLF) line endings, like this:"
29617 msgstr ""
29618
29619 #. type: verbatim
29620 #: ../tools/virt-win-reg.pl:441
29621 #, no-wrap
29622 msgid ""
29623 " $ file software.reg\n"
29624 " software.reg: Little-endian UTF-16 Unicode text, with very long lines,\n"
29625 " with CRLF line terminators\n"
29626 "\n"
29627 msgstr ""
29628
29629 #. type: textblock
29630 #: ../tools/virt-win-reg.pl:445
29631 msgid "This file would need conversion before you could C<--merge> it."
29632 msgstr ""
29633
29634 #. type: =head1
29635 #: ../tools/virt-win-reg.pl:447
29636 msgid "CurrentControlSet etc."
29637 msgstr ""
29638
29639 #. type: textblock
29640 #: ../tools/virt-win-reg.pl:449
29641 msgid ""
29642 "Registry keys like C<CurrentControlSet> don't really exist in the Windows "
29643 "Registry at the level of the hive file, and therefore you cannot modify "
29644 "these."
29645 msgstr ""
29646
29647 #. type: textblock
29648 #: ../tools/virt-win-reg.pl:453
29649 msgid ""
29650 "C<CurrentControlSet> is usually an alias for C<ControlSet001>.  In some "
29651 "circumstances it might refer to another control set.  The way to find out is "
29652 "to look at the C<HKLM\\SYSTEM\\Select> key:"
29653 msgstr ""
29654
29655 #. type: verbatim
29656 #: ../tools/virt-win-reg.pl:457
29657 #, no-wrap
29658 msgid ""
29659 " # virt-win-reg WindowsGuest 'HKLM\\SYSTEM\\Select'\n"
29660 " [HKEY_LOCAL_MACHINE\\SYSTEM\\Select]\n"
29661 " \"Current\"=dword:00000001\n"
29662 " \"Default\"=dword:00000001\n"
29663 " \"Failed\"=dword:00000000\n"
29664 " \"LastKnownGood\"=dword:00000002\n"
29665 "\n"
29666 msgstr ""
29667
29668 #. type: textblock
29669 #: ../tools/virt-win-reg.pl:464
29670 msgid "\"Current\" is the one which Windows will choose when it boots."
29671 msgstr ""
29672
29673 #. type: textblock
29674 #: ../tools/virt-win-reg.pl:466
29675 msgid ""
29676 "Similarly, other C<Current...> keys in the path may need to be replaced."
29677 msgstr ""
29678
29679 #. type: =head1
29680 #: ../tools/virt-win-reg.pl:469
29681 msgid "WINDOWS TIPS"
29682 msgstr ""
29683
29684 #. type: textblock
29685 #: ../tools/virt-win-reg.pl:471
29686 msgid ""
29687 "Note that some of these tips modify the guest disk image.  The guest I<must> "
29688 "be shut off, else you will get disk corruption."
29689 msgstr ""
29690
29691 #. type: =head2
29692 #: ../tools/virt-win-reg.pl:474
29693 msgid "RUNNING A BATCH SCRIPT WHEN A USER LOGS IN"
29694 msgstr ""
29695
29696 #. type: textblock
29697 #: ../tools/virt-win-reg.pl:476
29698 msgid ""
29699 "Prepare a DOS batch script, VBScript or executable.  Upload this using "
29700 "L<guestfish(1)>.  For this example the script is called C<test.bat> and it "
29701 "is uploaded into C<C:\\>:"
29702 msgstr ""
29703
29704 #. type: verbatim
29705 #: ../tools/virt-win-reg.pl:480
29706 #, no-wrap
29707 msgid ""
29708 " guestfish -i -d WindowsGuest upload test.bat /test.bat\n"
29709 "\n"
29710 msgstr ""
29711
29712 #. type: textblock
29713 #: ../tools/virt-win-reg.pl:482
29714 msgid "Prepare a regedit file containing the registry change:"
29715 msgstr ""
29716
29717 #. type: verbatim
29718 #: ../tools/virt-win-reg.pl:484
29719 #, no-wrap
29720 msgid ""
29721 " cat > test.reg <<'EOF'\n"
29722 " [HKLM\\Software\\Microsoft\\Windows\\CurrentVersion\\RunOnce]\n"
29723 " \"Test\"=\"c:\\\\test.bat\"\n"
29724 " EOF\n"
29725 "\n"
29726 msgstr ""
29727
29728 #. type: textblock
29729 #: ../tools/virt-win-reg.pl:489
29730 msgid ""
29731 "In this example we use the key C<RunOnce> which means that the script will "
29732 "run precisely once when the first user logs in.  If you want it to run every "
29733 "time a user logs in, replace C<RunOnce> with C<Run>."
29734 msgstr ""
29735
29736 #. type: textblock
29737 #: ../tools/virt-win-reg.pl:493
29738 msgid "Now update the registry:"
29739 msgstr ""
29740
29741 #. type: verbatim
29742 #: ../tools/virt-win-reg.pl:495
29743 #, no-wrap
29744 msgid ""
29745 " virt-win-reg --merge WindowsGuest test.reg\n"
29746 "\n"
29747 msgstr ""
29748
29749 #. type: =head2
29750 #: ../tools/virt-win-reg.pl:497
29751 msgid "INSTALLING A SERVICE"
29752 msgstr ""
29753
29754 #. type: textblock
29755 #: ../tools/virt-win-reg.pl:499
29756 msgid ""
29757 "This section assumes you are familiar with Windows services, and you either "
29758 "have a program which handles the Windows Service Control Protocol directly "
29759 "or you want to run any program using a service wrapper like SrvAny or the "
29760 "free RHSrvAny."
29761 msgstr ""
29762
29763 #. type: textblock
29764 #: ../tools/virt-win-reg.pl:504
29765 msgid ""
29766 "First upload the program and optionally the service wrapper.  In this case "
29767 "the test program is called C<test.exe> and we are using the RHSrvAny wrapper:"
29768 msgstr ""
29769
29770 #. type: verbatim
29771 #: ../tools/virt-win-reg.pl:508
29772 #, no-wrap
29773 msgid ""
29774 " guestfish -i -d WindowsGuest <<EOF\n"
29775 "   upload rhsrvany.exe /rhsrvany.exe\n"
29776 "   upload test.exe /test.exe\n"
29777 " EOF\n"
29778 "\n"
29779 msgstr ""
29780
29781 #. type: textblock
29782 #: ../tools/virt-win-reg.pl:513
29783 msgid ""
29784 "Prepare a regedit file containing the registry changes.  In this example, "
29785 "the first registry change is needed for the service itself or the service "
29786 "wrapper (if used).  The second registry change is only needed because I am "
29787 "using the RHSrvAny service wrapper."
29788 msgstr ""
29789
29790 #. type: verbatim
29791 #: ../tools/virt-win-reg.pl:518
29792 #, no-wrap
29793 msgid ""
29794 " cat > service.reg <<'EOF'\n"
29795 " [HKLM\\SYSTEM\\ControlSet001\\services\\RHSrvAny]\n"
29796 " \"Type\"=dword:00000010\n"
29797 " \"Start\"=dword:00000002\n"
29798 " \"ErrorControl\"=dword:00000001\n"
29799 " \"ImagePath\"=\"c:\\\\rhsrvany.exe\"\n"
29800 " \"DisplayName\"=\"RHSrvAny\"\n"
29801 " \"ObjectName\"=\"NetworkService\"\n"
29802 " \n"
29803 msgstr ""
29804
29805 #. type: verbatim
29806 #: ../tools/virt-win-reg.pl:527
29807 #, no-wrap
29808 msgid ""
29809 " [HKLM\\SYSTEM\\ControlSet001\\services\\RHSrvAny\\Parameters]\n"
29810 " \"CommandLine\"=\"c:\\\\test.exe\"\n"
29811 " \"PWD\"=\"c:\\\\Temp\"\n"
29812 " EOF\n"
29813 "\n"
29814 msgstr ""
29815
29816 #. type: textblock
29817 #: ../tools/virt-win-reg.pl:538
29818 msgid ""
29819 "For use of C<ControlSet001> see the section above in this manual page.  You "
29820 "may need to adjust this according to the control set that is in use by the "
29821 "guest."
29822 msgstr ""
29823
29824 #. type: textblock
29825 #: ../tools/virt-win-reg.pl:544
29826 msgid ""
29827 "C<\"ObjectName\"> controls the privileges that the service will have.  An "
29828 "alternative is C<\"ObjectName\"=\"LocalSystem\"> which would be the most "
29829 "privileged account."
29830 msgstr ""
29831
29832 #. type: textblock
29833 #: ../tools/virt-win-reg.pl:550
29834 msgid ""
29835 "For the meaning of the magic numbers, see this Microsoft KB article: "
29836 "L<http://support.microsoft.com/kb/103000>."
29837 msgstr ""
29838
29839 #. type: textblock
29840 #: ../tools/virt-win-reg.pl:555
29841 msgid "Update the registry:"
29842 msgstr ""
29843
29844 #. type: verbatim
29845 #: ../tools/virt-win-reg.pl:557
29846 #, no-wrap
29847 msgid ""
29848 " virt-win-reg --merge WindowsGuest service.reg\n"
29849 "\n"
29850 msgstr ""
29851
29852 #. type: textblock
29853 #: ../tools/virt-win-reg.pl:561
29854 msgid ""
29855 "Be careful when passing parameters containing C<\\> (backslash) in the "
29856 "shell.  Usually you will have to use 'single quotes' or double backslashes "
29857 "(but not both) to protect them from the shell."
29858 msgstr ""
29859
29860 #. type: textblock
29861 #: ../tools/virt-win-reg.pl:565
29862 msgid "Paths and value names are case-insensitive."
29863 msgstr ""
29864
29865 #. type: textblock
29866 #: ../tools/virt-win-reg.pl:574
29867 msgid ""
29868 "L<hivex(3)>, L<hivexsh(1)>, L<hivexregedit(1)>, L<guestfs(3)>, L<guestfish(1)"
29869 ">, L<virt-cat(1)>, L<Sys::Guestfs(3)>, L<Sys::Guestfs::Lib(3)>, L<Win::Hivex"
29870 "(3)>, L<Win::Hivex::Regedit(3)>, L<Sys::Virt(3)>, L<http://libguestfs.org/>."
29871 msgstr ""
29872
29873 #. type: textblock
29874 #: ../tools/virt-win-reg.pl:589 ../tools/virt-make-fs.pl:555
29875 msgid ""
29876 "When reporting bugs, please enable debugging and capture the I<complete> "
29877 "output:"
29878 msgstr ""
29879
29880 #. type: verbatim
29881 #: ../tools/virt-win-reg.pl:592
29882 #, no-wrap
29883 msgid ""
29884 " export LIBGUESTFS_DEBUG=1\n"
29885 " virt-win-reg --debug [... rest ...] > /tmp/virt-win-reg.log 2>&1\n"
29886 "\n"
29887 msgstr ""
29888
29889 #. type: textblock
29890 #: ../tools/virt-win-reg.pl:595
29891 msgid ""
29892 "Attach /tmp/virt-win-reg.log to a new bug report at L<https://bugzilla."
29893 "redhat.com/>"
29894 msgstr ""
29895
29896 #. type: textblock
29897 #: ../tools/virt-win-reg.pl:604 ../tools/virt-make-fs.pl:570
29898 msgid "Copyright (C) 2010 Red Hat Inc."
29899 msgstr ""
29900
29901 #. type: textblock
29902 #: ../tools/virt-list-filesystems.pl:32
29903 msgid ""
29904 "virt-list-filesystems - List filesystems in a virtual machine or disk image"
29905 msgstr ""
29906
29907 #. type: verbatim
29908 #: ../tools/virt-list-filesystems.pl:36
29909 #, no-wrap
29910 msgid ""
29911 " virt-list-filesystems [--options] domname\n"
29912 "\n"
29913 msgstr ""
29914
29915 #. type: verbatim
29916 #: ../tools/virt-list-filesystems.pl:38
29917 #, no-wrap
29918 msgid ""
29919 " virt-list-filesystems [--options] disk.img [disk.img ...]\n"
29920 "\n"
29921 msgstr ""
29922
29923 #. type: textblock
29924 #: ../tools/virt-list-filesystems.pl:42 ../tools/virt-list-partitions.pl:42
29925 msgid ""
29926 "This tool is obsolete.  Use L<virt-filesystems(1)> as a more flexible "
29927 "replacement."
29928 msgstr ""
29929
29930 #. type: textblock
29931 #: ../tools/virt-list-filesystems.pl:45
29932 msgid ""
29933 "C<virt-list-filesystems> is a command line tool to list the filesystems that "
29934 "are contained in a virtual machine or disk image."
29935 msgstr ""
29936
29937 #. type: textblock
29938 #: ../tools/virt-list-filesystems.pl:49
29939 msgid ""
29940 "C<virt-list-filesystems> is just a simple wrapper around L<libguestfs(3)> "
29941 "functionality.  For more complex cases you should look at the L<guestfish(1)"
29942 "> tool."
29943 msgstr ""
29944
29945 #. type: =item
29946 #: ../tools/virt-list-filesystems.pl:106 ../tools/virt-list-partitions.pl:115
29947 msgid "B<-l> | B<--long>"
29948 msgstr ""
29949
29950 #. type: textblock
29951 #: ../tools/virt-list-filesystems.pl:108
29952 msgid ""
29953 "With this option, C<virt-list-filesystems> displays the type of each "
29954 "filesystem too (where \"type\" means C<ext3>, C<xfs> etc.)"
29955 msgstr ""
29956
29957 #. type: =item
29958 #: ../tools/virt-list-filesystems.pl:115
29959 msgid "B<-a> | B<--all>"
29960 msgstr ""
29961
29962 #. type: textblock
29963 #: ../tools/virt-list-filesystems.pl:117
29964 msgid ""
29965 "Normally we only show mountable filesystems.  If this option is given then "
29966 "swap devices are shown too."
29967 msgstr ""
29968
29969 #. type: textblock
29970 #: ../tools/virt-list-filesystems.pl:191
29971 msgid ""
29972 "L<guestfs(3)>, L<guestfish(1)>, L<virt-cat(1)>, L<virt-tar(1)>, L<virt-"
29973 "filesystems(1)>, L<virt-list-partitions(1)>, L<Sys::Guestfs(3)>, L<Sys::"
29974 "Guestfs::Lib(3)>, L<Sys::Virt(3)>, L<http://libguestfs.org/>."
29975 msgstr ""
29976
29977 #. type: textblock
29978 #: ../tools/virt-list-filesystems.pl:208 ../tools/virt-tar.pl:307
29979 msgid "Copyright (C) 2009 Red Hat Inc."
29980 msgstr ""
29981
29982 #. type: textblock
29983 #: ../tools/virt-tar.pl:33
29984 msgid "virt-tar - Extract or upload files to a virtual machine"
29985 msgstr ""
29986
29987 #. type: verbatim
29988 #: ../tools/virt-tar.pl:37
29989 #, no-wrap
29990 msgid ""
29991 " virt-tar [--options] -x domname directory tarball\n"
29992 "\n"
29993 msgstr ""
29994
29995 #. type: verbatim
29996 #: ../tools/virt-tar.pl:39
29997 #, no-wrap
29998 msgid ""
29999 " virt-tar [--options] -u domname tarball directory\n"
30000 "\n"
30001 msgstr ""
30002
30003 #. type: verbatim
30004 #: ../tools/virt-tar.pl:41
30005 #, no-wrap
30006 msgid ""
30007 " virt-tar [--options] disk.img [disk.img ...] -x directory tarball\n"
30008 "\n"
30009 msgstr ""
30010
30011 #. type: verbatim
30012 #: ../tools/virt-tar.pl:43
30013 #, no-wrap
30014 msgid ""
30015 " virt-tar [--options] disk.img [disk.img ...] -u tarball directory\n"
30016 "\n"
30017 msgstr ""
30018
30019 #. type: textblock
30020 #: ../tools/virt-tar.pl:47
30021 msgid ""
30022 "This tool is obsolete.  Use L<virt-copy-in(1)>, L<virt-copy-out(1)>, L<virt-"
30023 "tar-in(1)>, L<virt-tar-out(1)> as replacements."
30024 msgstr ""
30025
30026 #. type: textblock
30027 #: ../tools/virt-tar.pl:52
30028 msgid "Download C</home> from the VM into a local tarball:"
30029 msgstr ""
30030
30031 #. type: verbatim
30032 #: ../tools/virt-tar.pl:54
30033 #, no-wrap
30034 msgid ""
30035 " virt-tar -x domname /home home.tar\n"
30036 "\n"
30037 msgstr ""
30038
30039 #. type: verbatim
30040 #: ../tools/virt-tar.pl:56
30041 #, no-wrap
30042 msgid ""
30043 " virt-tar -zx domname /home home.tar.gz\n"
30044 "\n"
30045 msgstr ""
30046
30047 #. type: textblock
30048 #: ../tools/virt-tar.pl:58
30049 msgid "Upload a local tarball and unpack it inside C</tmp> in the VM:"
30050 msgstr ""
30051
30052 #. type: verbatim
30053 #: ../tools/virt-tar.pl:60
30054 #, no-wrap
30055 msgid ""
30056 " virt-tar -u domname uploadstuff.tar /tmp\n"
30057 "\n"
30058 msgstr ""
30059
30060 #. type: verbatim
30061 #: ../tools/virt-tar.pl:62
30062 #, no-wrap
30063 msgid ""
30064 " virt-tar -zu domname uploadstuff.tar.gz /tmp\n"
30065 "\n"
30066 msgstr ""
30067
30068 #. type: textblock
30069 #: ../tools/virt-tar.pl:66
30070 msgid ""
30071 "You must I<not> use C<virt-tar> with the C<-u> option (upload) on live "
30072 "virtual machines.  If you do this, you risk disk corruption in the VM.  "
30073 "C<virt-tar> tries to stop you from doing this, but doesn't catch all cases."
30074 msgstr ""
30075
30076 #. type: textblock
30077 #: ../tools/virt-tar.pl:71
30078 msgid ""
30079 "You can use C<-x> (extract) on live virtual machines, but you might get "
30080 "inconsistent results or errors if there is filesystem activity inside the "
30081 "VM.  If the live VM is synched and quiescent, then C<virt-tar> will usually "
30082 "work, but the only way to guarantee consistent results is if the virtual "
30083 "machine is shut down."
30084 msgstr ""
30085
30086 #. type: textblock
30087 #: ../tools/virt-tar.pl:79
30088 msgid ""
30089 "C<virt-tar> is a general purpose archive tool for downloading and uploading "
30090 "parts of a guest filesystem.  There are many possibilities: making backups, "
30091 "uploading data files, snooping on guest activity, fixing or customizing "
30092 "guests, etc."
30093 msgstr ""
30094
30095 #. type: textblock
30096 #: ../tools/virt-tar.pl:84
30097 msgid ""
30098 "If you want to just view a single file, use L<virt-cat(1)>.  If you just "
30099 "want to edit a single file, use L<virt-edit(1)>.  For more complex cases you "
30100 "should look at the L<guestfish(1)> tool."
30101 msgstr ""
30102
30103 #. type: textblock
30104 #: ../tools/virt-tar.pl:88
30105 msgid ""
30106 "There are two modes of operation: C<-x> (eXtract) downloads a directory and "
30107 "its contents (recursively) from the virtual machine into a local tarball.  "
30108 "C<-u> uploads from a local tarball, unpacking it into a directory inside the "
30109 "virtual machine.  You cannot use these two options together."
30110 msgstr ""
30111
30112 #. type: textblock
30113 #: ../tools/virt-tar.pl:94
30114 msgid ""
30115 "In addition, you may need to use the C<-z> (gZip) option to enable "
30116 "compression.  When uploading, you have to specify C<-z> if the upload file "
30117 "is compressed because virt-tar won't detect this on its own."
30118 msgstr ""
30119
30120 #. type: textblock
30121 #: ../tools/virt-tar.pl:98
30122 msgid ""
30123 "C<virt-tar> can only handle tar (optionally gzipped) format tarballs.  For "
30124 "example it cannot do PKZip files or bzip2 compression.  If you want that "
30125 "then you'll have to rebuild the tarballs yourself.  (This is a limitation of "
30126 "the L<libguestfs(3)> API)."
30127 msgstr ""
30128
30129 #. type: =item
30130 #: ../tools/virt-tar.pl:156
30131 msgid "B<-x> | B<--extract> | B<--download>"
30132 msgstr ""
30133
30134 #. type: =item
30135 #: ../tools/virt-tar.pl:158
30136 msgid "B<-u> | B<--upload>"
30137 msgstr ""
30138
30139 #. type: textblock
30140 #: ../tools/virt-tar.pl:160
30141 msgid ""
30142 "Use C<-x> to extract (download) a directory from a virtual machine to a "
30143 "local tarball."
30144 msgstr ""
30145
30146 #. type: textblock
30147 #: ../tools/virt-tar.pl:163
30148 msgid ""
30149 "Use C<-u> to upload and unpack from a local tarball into a virtual machine.  "
30150 "Please read the L</WARNING> section above before using this option."
30151 msgstr ""
30152
30153 #. type: textblock
30154 #: ../tools/virt-tar.pl:167
30155 msgid "You must specify exactly one of these options."
30156 msgstr ""
30157
30158 #. type: =item
30159 #: ../tools/virt-tar.pl:173
30160 msgid "B<-z> | B<--gzip>"
30161 msgstr ""
30162
30163 #. type: textblock
30164 #: ../tools/virt-tar.pl:175
30165 msgid "Specify that the input or output tarball is gzip-compressed."
30166 msgstr ""
30167
30168 #. type: textblock
30169 #: ../tools/virt-tar.pl:288
30170 msgid ""
30171 "L<guestfs(3)>, L<guestfish(1)>, L<virt-cat(1)>, L<virt-edit(1)>, L<virt-copy-"
30172 "in(1)>, L<virt-copy-out(1)>, L<virt-tar-in(1)>, L<virt-tar-out(1)>, L<Sys::"
30173 "Guestfs(3)>, L<Sys::Guestfs::Lib(3)>, L<Sys::Virt(3)>, L<http://libguestfs."
30174 "org/>."
30175 msgstr ""
30176
30177 #. type: textblock
30178 #: ../tools/virt-make-fs.pl:37
30179 msgid "virt-make-fs - Make a filesystem from a tar archive or files"
30180 msgstr ""
30181
30182 #. type: verbatim
30183 #: ../tools/virt-make-fs.pl:41
30184 #, no-wrap
30185 msgid ""
30186 " virt-make-fs [--options] input.tar output.img\n"
30187 "\n"
30188 msgstr ""
30189
30190 #. type: verbatim
30191 #: ../tools/virt-make-fs.pl:43
30192 #, no-wrap
30193 msgid ""
30194 " virt-make-fs [--options] input.tar.gz output.img\n"
30195 "\n"
30196 msgstr ""
30197
30198 #. type: verbatim
30199 #: ../tools/virt-make-fs.pl:45
30200 #, no-wrap
30201 msgid ""
30202 " virt-make-fs [--options] directory output.img\n"
30203 "\n"
30204 msgstr ""
30205
30206 #. type: textblock
30207 #: ../tools/virt-make-fs.pl:49
30208 msgid ""
30209 "Virt-make-fs is a command line tool for creating a filesystem from a tar "
30210 "archive or some files in a directory.  It is similar to tools like L<mkisofs"
30211 "(1)>, L<genisoimage(1)> and L<mksquashfs(1)>.  Unlike those tools, it can "
30212 "create common filesystem types like ext2/3 or NTFS, which can be useful if "
30213 "you want to attach these filesystems to existing virtual machines (eg. to "
30214 "import large amounts of read-only data to a VM)."
30215 msgstr ""
30216
30217 #. type: textblock
30218 #: ../tools/virt-make-fs.pl:57
30219 msgid "Basic usage is:"
30220 msgstr ""
30221
30222 #. type: verbatim
30223 #: ../tools/virt-make-fs.pl:59
30224 #, no-wrap
30225 msgid ""
30226 " virt-make-fs input output\n"
30227 "\n"
30228 msgstr ""
30229
30230 #. type: textblock
30231 #: ../tools/virt-make-fs.pl:61
30232 msgid ""
30233 "where C<input> is either a directory containing files that you want to add, "
30234 "or a tar archive (either uncompressed tar or gzip-compressed tar); and "
30235 "C<output> is a disk image.  The input type is detected automatically.  The "
30236 "output disk image defaults to a raw ext2 image unless you specify extra "
30237 "flags (see L</OPTIONS> below)."
30238 msgstr ""
30239
30240 #. type: =head2
30241 #: ../tools/virt-make-fs.pl:67
30242 msgid "EXTRA SPACE"
30243 msgstr ""
30244
30245 #. type: textblock
30246 #: ../tools/virt-make-fs.pl:69
30247 msgid ""
30248 "Unlike formats such as tar and squashfs, a filesystem does not \"just fit\" "
30249 "the files that it contains, but might have extra space.  Depending on how "
30250 "you are going to use the output, you might think this extra space is wasted "
30251 "and want to minimize it, or you might want to leave space so that more files "
30252 "can be added later.  Virt-make-fs defaults to minimizing the extra space, "
30253 "but you can use the C<--size> flag to leave space in the filesystem if you "
30254 "want it."
30255 msgstr ""
30256
30257 #. type: textblock
30258 #: ../tools/virt-make-fs.pl:77
30259 msgid ""
30260 "An alternative way to leave extra space but not make the output image any "
30261 "bigger is to use an alternative disk image format (instead of the default "
30262 "\"raw\" format).  Using C<--format=qcow2> will use the native QEmu/KVM qcow2 "
30263 "image format (check your hypervisor supports this before using it).  This "
30264 "allows you to choose a large C<--size> but the extra space won't actually be "
30265 "allocated in the image until you try to store something in it."
30266 msgstr ""
30267
30268 #. type: textblock
30269 #: ../tools/virt-make-fs.pl:85
30270 msgid ""
30271 "Don't forget that you can also use local commands including L<resize2fs(8)> "
30272 "and L<virt-resize(1)> to resize existing filesystems, or rerun virt-make-fs "
30273 "to build another image from scratch."
30274 msgstr ""
30275
30276 #. type: =head3
30277 #: ../tools/virt-make-fs.pl:89 ../tools/virt-make-fs.pl:123
30278 #: ../tools/virt-make-fs.pl:142
30279 msgid "EXAMPLE"
30280 msgstr ""
30281
30282 #. type: verbatim
30283 #: ../tools/virt-make-fs.pl:91
30284 #, no-wrap
30285 msgid ""
30286 " virt-make-fs --format=qcow2 --size=+200M input output.img\n"
30287 "\n"
30288 msgstr ""
30289
30290 #. type: =head2
30291 #: ../tools/virt-make-fs.pl:93
30292 msgid "FILESYSTEM TYPE"
30293 msgstr ""
30294
30295 #. type: textblock
30296 #: ../tools/virt-make-fs.pl:95
30297 msgid ""
30298 "The default filesystem type is C<ext2>.  Just about any filesystem type that "
30299 "libguestfs supports can be used (but I<not> read-only formats like "
30300 "ISO9660).  Here are some of the more common choices:"
30301 msgstr ""
30302
30303 #. type: =item
30304 #: ../tools/virt-make-fs.pl:101
30305 msgid "I<ext3>"
30306 msgstr ""
30307
30308 #. type: textblock
30309 #: ../tools/virt-make-fs.pl:103
30310 msgid ""
30311 "Note that ext3 filesystems contain a journal, typically 1-32 MB in size.  If "
30312 "you are not going to use the filesystem in a way that requires the journal, "
30313 "then this is just wasted overhead."
30314 msgstr ""
30315
30316 #. type: =item
30317 #: ../tools/virt-make-fs.pl:107
30318 msgid "I<ntfs> or I<vfat>"
30319 msgstr ""
30320
30321 #. type: textblock
30322 #: ../tools/virt-make-fs.pl:109
30323 msgid "Useful if exporting data to a Windows guest."
30324 msgstr ""
30325
30326 #. type: textblock
30327 #: ../tools/virt-make-fs.pl:111
30328 msgid ""
30329 "I<Note for vfat>: The tar archive or local directory must only contain files "
30330 "which are owned by root (ie. UID:GID = 0:0).  The reason is that the tar "
30331 "program running within libguestfs is unable to change the ownership of non-"
30332 "root files, since vfat itself does not support this."
30333 msgstr ""
30334
30335 #. type: =item
30336 #: ../tools/virt-make-fs.pl:116
30337 msgid "I<minix>"
30338 msgstr ""
30339
30340 #. type: textblock
30341 #: ../tools/virt-make-fs.pl:118
30342 msgid ""
30343 "Lower overhead than C<ext2>, but certain limitations on filename length and "
30344 "total filesystem size."
30345 msgstr ""
30346
30347 #. type: verbatim
30348 #: ../tools/virt-make-fs.pl:125
30349 #, no-wrap
30350 msgid ""
30351 " virt-make-fs --type=minix input minixfs.img\n"
30352 "\n"
30353 msgstr ""
30354
30355 #. type: =head2
30356 #: ../tools/virt-make-fs.pl:127
30357 msgid "TO PARTITION OR NOT TO PARTITION"
30358 msgstr ""
30359
30360 #. type: textblock
30361 #: ../tools/virt-make-fs.pl:129
30362 msgid "Optionally virt-make-fs can add a partition table to the output disk."
30363 msgstr ""
30364
30365 #. type: textblock
30366 #: ../tools/virt-make-fs.pl:131
30367 msgid ""
30368 "Adding a partition can make the disk image more compatible with certain "
30369 "virtualized operating systems which don't expect to see a filesystem "
30370 "directly located on a block device (Linux doesn't care and will happily "
30371 "handle both types)."
30372 msgstr ""
30373
30374 #. type: textblock
30375 #: ../tools/virt-make-fs.pl:136
30376 msgid ""
30377 "On the other hand, if you have a partition table then the output image is no "
30378 "longer a straight filesystem.  For example you cannot run L<fsck(8)> "
30379 "directly on a partitioned disk image.  (However libguestfs tools such as "
30380 "L<guestfish(1)> and L<virt-resize(1)> can still be used)."
30381 msgstr ""
30382
30383 #. type: textblock
30384 #: ../tools/virt-make-fs.pl:144
30385 msgid "Add an MBR partition:"
30386 msgstr ""
30387
30388 #. type: verbatim
30389 #: ../tools/virt-make-fs.pl:146
30390 #, no-wrap
30391 msgid ""
30392 " virt-make-fs --partition -- input disk.img\n"
30393 "\n"
30394 msgstr ""
30395
30396 #. type: textblock
30397 #: ../tools/virt-make-fs.pl:148
30398 msgid ""
30399 "If the output disk image could be terabyte-sized or larger, it's better to "
30400 "use an EFI/GPT-compatible partition table:"
30401 msgstr ""
30402
30403 #. type: verbatim
30404 #: ../tools/virt-make-fs.pl:151
30405 #, no-wrap
30406 msgid ""
30407 " virt-make-fs --partition=gpt --size=+4T --format=qcow2 input disk.img\n"
30408 "\n"
30409 msgstr ""
30410
30411 #. type: textblock
30412 #: ../tools/virt-make-fs.pl:179
30413 msgid "Enable debugging information."
30414 msgstr ""
30415
30416 #. type: =item
30417 #: ../tools/virt-make-fs.pl:185
30418 msgid "B<--size=E<lt>NE<gt>>"
30419 msgstr ""
30420
30421 #. type: =item
30422 #: ../tools/virt-make-fs.pl:187
30423 msgid "B<--size=+E<lt>NE<gt>>"
30424 msgstr ""
30425
30426 #. type: =item
30427 #: ../tools/virt-make-fs.pl:189
30428 msgid "B<-s E<lt>NE<gt>>"
30429 msgstr ""
30430
30431 #. type: =item
30432 #: ../tools/virt-make-fs.pl:191
30433 msgid "B<-s +E<lt>NE<gt>>"
30434 msgstr ""
30435
30436 #. type: textblock
30437 #: ../tools/virt-make-fs.pl:193
30438 msgid ""
30439 "Use the C<--size> (or C<-s>) option to choose the size of the output image."
30440 msgstr ""
30441
30442 #. type: textblock
30443 #: ../tools/virt-make-fs.pl:196
30444 msgid ""
30445 "If this option is I<not> given, then the output image will be just large "
30446 "enough to contain all the files, with not much wasted space."
30447 msgstr ""
30448
30449 #. type: textblock
30450 #: ../tools/virt-make-fs.pl:199
30451 msgid ""
30452 "To choose a fixed size output disk, specify an absolute number followed by b/"
30453 "K/M/G/T/P/E to mean bytes, Kilobytes, Megabytes, Gigabytes, Terabytes, "
30454 "Petabytes or Exabytes.  This must be large enough to contain all the input "
30455 "files, else you will get an error."
30456 msgstr ""
30457
30458 #. type: textblock
30459 #: ../tools/virt-make-fs.pl:204
30460 msgid ""
30461 "To leave extra space, specify C<+> (plus sign) and a number followed by b/K/"
30462 "M/G/T/P/E to mean bytes, Kilobytes, Megabytes, Gigabytes, Terabytes, "
30463 "Petabytes or Exabytes.  For example: C<--size=+200M> means enough space for "
30464 "the input files, and (approximately) an extra 200 MB free space."
30465 msgstr ""
30466
30467 #. type: textblock
30468 #: ../tools/virt-make-fs.pl:210
30469 msgid ""
30470 "Note that virt-make-fs estimates free space, and therefore will not produce "
30471 "filesystems containing precisely the free space requested.  (It is much more "
30472 "expensive and time-consuming to produce a filesystem which has precisely the "
30473 "desired free space)."
30474 msgstr ""
30475
30476 #. type: =item
30477 #: ../tools/virt-make-fs.pl:219
30478 msgid "B<--format=E<lt>fmtE<gt>>"
30479 msgstr ""
30480
30481 #. type: =item
30482 #: ../tools/virt-make-fs.pl:221
30483 msgid "B<-F E<lt>fmtE<gt>>"
30484 msgstr ""
30485
30486 #. type: textblock
30487 #: ../tools/virt-make-fs.pl:223
30488 msgid "Choose the output disk image format."
30489 msgstr ""
30490
30491 #. type: textblock
30492 #: ../tools/virt-make-fs.pl:225
30493 msgid "The default is C<raw> (raw disk image)."
30494 msgstr ""
30495
30496 #. type: textblock
30497 #: ../tools/virt-make-fs.pl:227
30498 msgid ""
30499 "For other choices, see the L<qemu-img(1)> manpage.  The only other choice "
30500 "that would really make sense here is C<qcow2>."
30501 msgstr ""
30502
30503 #. type: =item
30504 #: ../tools/virt-make-fs.pl:234
30505 msgid "B<--type=E<lt>fsE<gt>>"
30506 msgstr ""
30507
30508 #. type: =item
30509 #: ../tools/virt-make-fs.pl:236
30510 msgid "B<-t E<lt>fsE<gt>>"
30511 msgstr ""
30512
30513 #. type: textblock
30514 #: ../tools/virt-make-fs.pl:238
30515 msgid "Choose the output filesystem type."
30516 msgstr ""
30517
30518 #. type: textblock
30519 #: ../tools/virt-make-fs.pl:240
30520 msgid "The default is C<ext2>."
30521 msgstr ""
30522
30523 #. type: textblock
30524 #: ../tools/virt-make-fs.pl:242
30525 msgid ""
30526 "Any filesystem which is supported read-write by libguestfs can be used here."
30527 msgstr ""
30528
30529 #. type: =item
30530 #: ../tools/virt-make-fs.pl:249
30531 msgid "B<--partition>"
30532 msgstr ""
30533
30534 #. type: =item
30535 #: ../tools/virt-make-fs.pl:251
30536 msgid "B<--partition=E<lt>parttypeE<gt>>"
30537 msgstr ""
30538
30539 #. type: textblock
30540 #: ../tools/virt-make-fs.pl:253
30541 msgid ""
30542 "If specified, this flag adds an MBR partition table to the output disk image."
30543 msgstr ""
30544
30545 #. type: textblock
30546 #: ../tools/virt-make-fs.pl:256
30547 msgid ""
30548 "You can change the partition table type, eg. C<--partition=gpt> for large "
30549 "disks."
30550 msgstr ""
30551
30552 #. type: textblock
30553 #: ../tools/virt-make-fs.pl:259
30554 msgid ""
30555 "Note that if you just use a lonesome C<--partition>, the Perl option parser "
30556 "might consider the next parameter to be the partition type.  For example:"
30557 msgstr ""
30558
30559 #. type: verbatim
30560 #: ../tools/virt-make-fs.pl:263
30561 #, no-wrap
30562 msgid ""
30563 " virt-make-fs --partition input.tar ...\n"
30564 "\n"
30565 msgstr ""
30566
30567 #. type: textblock
30568 #: ../tools/virt-make-fs.pl:265
30569 msgid ""
30570 "would cause virt-make-fs to think you wanted to use a partition type of "
30571 "C<input.tar> which is completely wrong.  To avoid this, use C<--> (a double "
30572 "dash) between options and the input file argument:"
30573 msgstr ""
30574
30575 #. type: verbatim
30576 #: ../tools/virt-make-fs.pl:269
30577 #, no-wrap
30578 msgid ""
30579 " virt-make-fs --partition -- input.tar ...\n"
30580 "\n"
30581 msgstr ""
30582
30583 #. type: textblock
30584 #: ../tools/virt-make-fs.pl:541
30585 msgid ""
30586 "L<guestfish(1)>, L<virt-resize(1)>, L<virt-tar-in(1)>, L<mkisofs(1)>, "
30587 "L<genisoimage(1)>, L<mksquashfs(1)>, L<mke2fs(8)>, L<resize2fs(8)>, L<guestfs"
30588 "(3)>, L<Sys::Guestfs(3)>, L<http://libguestfs.org/>."
30589 msgstr ""
30590
30591 #. type: verbatim
30592 #: ../tools/virt-make-fs.pl:558
30593 #, no-wrap
30594 msgid ""
30595 " export LIBGUESTFS_DEBUG=1\n"
30596 " virt-make-fs --debug [...] > /tmp/virt-make-fs.log 2>&1\n"
30597 "\n"
30598 msgstr ""
30599
30600 #. type: textblock
30601 #: ../tools/virt-make-fs.pl:561
30602 msgid ""
30603 "Attach /tmp/virt-make-fs.log to a new bug report at L<https://bugzilla."
30604 "redhat.com/>"
30605 msgstr ""
30606
30607 #. type: textblock
30608 #: ../tools/virt-list-partitions.pl:32
30609 msgid ""
30610 "virt-list-partitions - List partitions in a virtual machine or disk image"
30611 msgstr ""
30612
30613 #. type: verbatim
30614 #: ../tools/virt-list-partitions.pl:36
30615 #, no-wrap
30616 msgid ""
30617 " virt-list-partitions [--options] domname\n"
30618 "\n"
30619 msgstr ""
30620
30621 #. type: verbatim
30622 #: ../tools/virt-list-partitions.pl:38
30623 #, no-wrap
30624 msgid ""
30625 " virt-list-partitions [--options] disk.img [disk.img ...]\n"
30626 "\n"
30627 msgstr ""
30628
30629 #. type: textblock
30630 #: ../tools/virt-list-partitions.pl:45
30631 msgid ""
30632 "C<virt-list-partitions> is a command line tool to list the partitions that "
30633 "are contained in a virtual machine or disk image.  It is mainly useful as a "
30634 "first step to using L<virt-resize(1)>."
30635 msgstr ""
30636
30637 #. type: textblock
30638 #: ../tools/virt-list-partitions.pl:50
30639 msgid ""
30640 "C<virt-list-partitions> is just a simple wrapper around L<libguestfs(3)> "
30641 "functionality.  For more complex cases you should look at the L<guestfish(1)"
30642 "> tool."
30643 msgstr ""
30644
30645 #. type: =item
30646 #: ../tools/virt-list-partitions.pl:107
30647 msgid "B<-h> | B<--human-readable>"
30648 msgstr ""
30649
30650 #. type: textblock
30651 #: ../tools/virt-list-partitions.pl:109
30652 msgid "Show sizes in human-readable form (eg. \"1G\")."
30653 msgstr ""
30654
30655 #. type: textblock
30656 #: ../tools/virt-list-partitions.pl:117
30657 msgid ""
30658 "With this option, C<virt-list-partitions> displays the type and size of each "
30659 "partition too (where \"type\" means C<ext3>, C<pv> etc.)"
30660 msgstr ""
30661
30662 #. type: =item
30663 #: ../tools/virt-list-partitions.pl:124
30664 msgid "B<-t> | B<--total>"
30665 msgstr ""
30666
30667 #. type: textblock
30668 #: ../tools/virt-list-partitions.pl:126
30669 msgid ""
30670 "Display the total size of each block device (as a separate row or rows)."
30671 msgstr ""
30672
30673 #. type: textblock
30674 #: ../tools/virt-list-partitions.pl:259
30675 msgid ""
30676 "L<guestfs(3)>, L<guestfish(1)>, L<virt-filesystems(1)>, L<virt-list-"
30677 "filesystems(1)>, L<virt-resize(1)>, L<Sys::Guestfs(3)>, L<Sys::Guestfs::Lib"
30678 "(3)>, L<Sys::Virt(3)>, L<http://libguestfs.org/>."
30679 msgstr ""
30680
30681 #. type: textblock
30682 #: ../tools/virt-list-partitions.pl:275
30683 msgid "Copyright (C) 2009-2010 Red Hat Inc."
30684 msgstr ""